devices/e1000e/netdev-2.6.32-ethercat.c
changeset 2131 2cefec773772
child 2421 bc2d4bf9cbe5
child 2589 2b9c78543663
equal deleted inserted replaced
2130:625d87822620 2131:2cefec773772
       
     1 /*******************************************************************************
       
     2 
       
     3   Intel PRO/1000 Linux driver
       
     4   Copyright(c) 1999 - 2008 Intel Corporation.
       
     5 
       
     6   This program is free software; you can redistribute it and/or modify it
       
     7   under the terms and conditions of the GNU General Public License,
       
     8   version 2, as published by the Free Software Foundation.
       
     9 
       
    10   This program is distributed in the hope it will be useful, but WITHOUT
       
    11   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    12   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
       
    13   more details.
       
    14 
       
    15   You should have received a copy of the GNU General Public License along with
       
    16   this program; if not, write to the Free Software Foundation, Inc.,
       
    17   51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
       
    18 
       
    19   The full GNU General Public License is included in this distribution in
       
    20   the file called "COPYING".
       
    21 
       
    22   Contact Information:
       
    23   Linux NICS <linux.nics@intel.com>
       
    24   e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
       
    25   Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
       
    26 
       
    27 *******************************************************************************/
       
    28 
       
    29 #include <linux/module.h>
       
    30 #include <linux/types.h>
       
    31 #include <linux/init.h>
       
    32 #include <linux/pci.h>
       
    33 #include <linux/vmalloc.h>
       
    34 #include <linux/pagemap.h>
       
    35 #include <linux/delay.h>
       
    36 #include <linux/netdevice.h>
       
    37 #include <linux/tcp.h>
       
    38 #include <linux/ipv6.h>
       
    39 #include <net/checksum.h>
       
    40 #include <net/ip6_checksum.h>
       
    41 #include <linux/mii.h>
       
    42 #include <linux/ethtool.h>
       
    43 #include <linux/if_vlan.h>
       
    44 #include <linux/cpu.h>
       
    45 #include <linux/smp.h>
       
    46 #include <linux/pm_qos_params.h>
       
    47 #include <linux/aer.h>
       
    48 
       
    49 #include "e1000-2.6.32-ethercat.h"
       
    50 
       
    51 #define DRV_VERSION "1.0.2-k2(ethercat)"
       
    52 char e1000e_driver_name[] = "ec_e1000e";
       
    53 const char e1000e_driver_version[] = DRV_VERSION;
       
    54 
       
    55 static const struct e1000_info *e1000_info_tbl[] = {
       
    56 	[board_82571]		= &e1000_82571_info,
       
    57 	[board_82572]		= &e1000_82572_info,
       
    58 	[board_82573]		= &e1000_82573_info,
       
    59 	[board_82574]		= &e1000_82574_info,
       
    60 	[board_82583]		= &e1000_82583_info,
       
    61 	[board_80003es2lan]	= &e1000_es2_info,
       
    62 	[board_ich8lan]		= &e1000_ich8_info,
       
    63 	[board_ich9lan]		= &e1000_ich9_info,
       
    64 	[board_ich10lan]	= &e1000_ich10_info,
       
    65 	[board_pchlan]		= &e1000_pch_info,
       
    66 };
       
    67 
       
    68 #ifdef DEBUG
       
    69 /**
       
    70  * e1000_get_hw_dev_name - return device name string
       
    71  * used by hardware layer to print debugging information
       
    72  **/
       
    73 char *e1000e_get_hw_dev_name(struct e1000_hw *hw)
       
    74 {
       
    75 	return hw->adapter->netdev->name;
       
    76 }
       
    77 #endif
       
    78 
       
    79 /**
       
    80  * e1000_desc_unused - calculate if we have unused descriptors
       
    81  **/
       
    82 static int e1000_desc_unused(struct e1000_ring *ring)
       
    83 {
       
    84 	if (ring->next_to_clean > ring->next_to_use)
       
    85 		return ring->next_to_clean - ring->next_to_use - 1;
       
    86 
       
    87 	return ring->count + ring->next_to_clean - ring->next_to_use - 1;
       
    88 }
       
    89 
       
    90 /**
       
    91  * e1000_receive_skb - helper function to handle Rx indications
       
    92  * @adapter: board private structure
       
    93  * @status: descriptor status field as written by hardware
       
    94  * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
       
    95  * @skb: pointer to sk_buff to be indicated to stack
       
    96  **/
       
    97 static void e1000_receive_skb(struct e1000_adapter *adapter,
       
    98 			      struct net_device *netdev,
       
    99 			      struct sk_buff *skb,
       
   100 			      u8 status, __le16 vlan)
       
   101 {
       
   102 	skb->protocol = eth_type_trans(skb, netdev);
       
   103 
       
   104 	if (adapter->vlgrp && (status & E1000_RXD_STAT_VP))
       
   105 		vlan_gro_receive(&adapter->napi, adapter->vlgrp,
       
   106 				 le16_to_cpu(vlan), skb);
       
   107 	else
       
   108 		napi_gro_receive(&adapter->napi, skb);
       
   109 }
       
   110 
       
   111 /**
       
   112  * e1000_rx_checksum - Receive Checksum Offload for 82543
       
   113  * @adapter:     board private structure
       
   114  * @status_err:  receive descriptor status and error fields
       
   115  * @csum:	receive descriptor csum field
       
   116  * @sk_buff:     socket buffer with received data
       
   117  **/
       
   118 static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
       
   119 			      u32 csum, struct sk_buff *skb)
       
   120 {
       
   121 	u16 status = (u16)status_err;
       
   122 	u8 errors = (u8)(status_err >> 24);
       
   123 	skb->ip_summed = CHECKSUM_NONE;
       
   124 
       
   125 	/* Ignore Checksum bit is set */
       
   126 	if (status & E1000_RXD_STAT_IXSM)
       
   127 		return;
       
   128 	/* TCP/UDP checksum error bit is set */
       
   129 	if (errors & E1000_RXD_ERR_TCPE) {
       
   130 		/* let the stack verify checksum errors */
       
   131 		adapter->hw_csum_err++;
       
   132 		return;
       
   133 	}
       
   134 
       
   135 	/* TCP/UDP Checksum has not been calculated */
       
   136 	if (!(status & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)))
       
   137 		return;
       
   138 
       
   139 	/* It must be a TCP or UDP packet with a valid checksum */
       
   140 	if (status & E1000_RXD_STAT_TCPCS) {
       
   141 		/* TCP checksum is good */
       
   142 		skb->ip_summed = CHECKSUM_UNNECESSARY;
       
   143 	} else {
       
   144 		/*
       
   145 		 * IP fragment with UDP payload
       
   146 		 * Hardware complements the payload checksum, so we undo it
       
   147 		 * and then put the value in host order for further stack use.
       
   148 		 */
       
   149 		__sum16 sum = (__force __sum16)htons(csum);
       
   150 		skb->csum = csum_unfold(~sum);
       
   151 		skb->ip_summed = CHECKSUM_COMPLETE;
       
   152 	}
       
   153 	adapter->hw_csum_good++;
       
   154 }
       
   155 
       
   156 /**
       
   157  * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
       
   158  * @adapter: address of board private structure
       
   159  **/
       
   160 static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
       
   161 				   int cleaned_count)
       
   162 {
       
   163 	struct net_device *netdev = adapter->netdev;
       
   164 	struct pci_dev *pdev = adapter->pdev;
       
   165 	struct e1000_ring *rx_ring = adapter->rx_ring;
       
   166 	struct e1000_rx_desc *rx_desc;
       
   167 	struct e1000_buffer *buffer_info;
       
   168 	struct sk_buff *skb;
       
   169 	unsigned int i;
       
   170 	unsigned int bufsz = adapter->rx_buffer_len + NET_IP_ALIGN;
       
   171 
       
   172 	i = rx_ring->next_to_use;
       
   173 	buffer_info = &rx_ring->buffer_info[i];
       
   174 
       
   175 	while (cleaned_count--) {
       
   176 		skb = buffer_info->skb;
       
   177 		if (skb) {
       
   178 			skb_trim(skb, 0);
       
   179 			goto map_skb;
       
   180 		}
       
   181 
       
   182 		skb = netdev_alloc_skb(netdev, bufsz);
       
   183 		if (!skb) {
       
   184 			/* Better luck next round */
       
   185 			adapter->alloc_rx_buff_failed++;
       
   186 			break;
       
   187 		}
       
   188 
       
   189 		/*
       
   190 		 * Make buffer alignment 2 beyond a 16 byte boundary
       
   191 		 * this will result in a 16 byte aligned IP header after
       
   192 		 * the 14 byte MAC header is removed
       
   193 		 */
       
   194 		skb_reserve(skb, NET_IP_ALIGN);
       
   195 
       
   196 		buffer_info->skb = skb;
       
   197 map_skb:
       
   198 		buffer_info->dma = pci_map_single(pdev, skb->data,
       
   199 						  adapter->rx_buffer_len,
       
   200 						  PCI_DMA_FROMDEVICE);
       
   201 		if (pci_dma_mapping_error(pdev, buffer_info->dma)) {
       
   202 			dev_err(&pdev->dev, "RX DMA map failed\n");
       
   203 			adapter->rx_dma_failed++;
       
   204 			break;
       
   205 		}
       
   206 
       
   207 		rx_desc = E1000_RX_DESC(*rx_ring, i);
       
   208 		rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
       
   209 
       
   210 		i++;
       
   211 		if (i == rx_ring->count)
       
   212 			i = 0;
       
   213 		buffer_info = &rx_ring->buffer_info[i];
       
   214 	}
       
   215 
       
   216 	if (rx_ring->next_to_use != i) {
       
   217 		rx_ring->next_to_use = i;
       
   218 		if (i-- == 0)
       
   219 			i = (rx_ring->count - 1);
       
   220 
       
   221 		/*
       
   222 		 * Force memory writes to complete before letting h/w
       
   223 		 * know there are new descriptors to fetch.  (Only
       
   224 		 * applicable for weak-ordered memory model archs,
       
   225 		 * such as IA-64).
       
   226 		 */
       
   227 		wmb();
       
   228 		writel(i, adapter->hw.hw_addr + rx_ring->tail);
       
   229 	}
       
   230 }
       
   231 
       
   232 /**
       
   233  * e1000_alloc_rx_buffers_ps - Replace used receive buffers; packet split
       
   234  * @adapter: address of board private structure
       
   235  **/
       
   236 static void e1000_alloc_rx_buffers_ps(struct e1000_adapter *adapter,
       
   237 				      int cleaned_count)
       
   238 {
       
   239 	struct net_device *netdev = adapter->netdev;
       
   240 	struct pci_dev *pdev = adapter->pdev;
       
   241 	union e1000_rx_desc_packet_split *rx_desc;
       
   242 	struct e1000_ring *rx_ring = adapter->rx_ring;
       
   243 	struct e1000_buffer *buffer_info;
       
   244 	struct e1000_ps_page *ps_page;
       
   245 	struct sk_buff *skb;
       
   246 	unsigned int i, j;
       
   247 
       
   248 	i = rx_ring->next_to_use;
       
   249 	buffer_info = &rx_ring->buffer_info[i];
       
   250 
       
   251 	while (cleaned_count--) {
       
   252 		rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
       
   253 
       
   254 		for (j = 0; j < PS_PAGE_BUFFERS; j++) {
       
   255 			ps_page = &buffer_info->ps_pages[j];
       
   256 			if (j >= adapter->rx_ps_pages) {
       
   257 				/* all unused desc entries get hw null ptr */
       
   258 				rx_desc->read.buffer_addr[j+1] = ~cpu_to_le64(0);
       
   259 				continue;
       
   260 			}
       
   261 			if (!ps_page->page) {
       
   262 				ps_page->page = alloc_page(GFP_ATOMIC);
       
   263 				if (!ps_page->page) {
       
   264 					adapter->alloc_rx_buff_failed++;
       
   265 					goto no_buffers;
       
   266 				}
       
   267 				ps_page->dma = pci_map_page(pdev,
       
   268 						   ps_page->page,
       
   269 						   0, PAGE_SIZE,
       
   270 						   PCI_DMA_FROMDEVICE);
       
   271 				if (pci_dma_mapping_error(pdev, ps_page->dma)) {
       
   272 					dev_err(&adapter->pdev->dev,
       
   273 					  "RX DMA page map failed\n");
       
   274 					adapter->rx_dma_failed++;
       
   275 					goto no_buffers;
       
   276 				}
       
   277 			}
       
   278 			/*
       
   279 			 * Refresh the desc even if buffer_addrs
       
   280 			 * didn't change because each write-back
       
   281 			 * erases this info.
       
   282 			 */
       
   283 			rx_desc->read.buffer_addr[j+1] =
       
   284 			     cpu_to_le64(ps_page->dma);
       
   285 		}
       
   286 
       
   287 		skb = netdev_alloc_skb(netdev,
       
   288 				       adapter->rx_ps_bsize0 + NET_IP_ALIGN);
       
   289 
       
   290 		if (!skb) {
       
   291 			adapter->alloc_rx_buff_failed++;
       
   292 			break;
       
   293 		}
       
   294 
       
   295 		/*
       
   296 		 * Make buffer alignment 2 beyond a 16 byte boundary
       
   297 		 * this will result in a 16 byte aligned IP header after
       
   298 		 * the 14 byte MAC header is removed
       
   299 		 */
       
   300 		skb_reserve(skb, NET_IP_ALIGN);
       
   301 
       
   302 		buffer_info->skb = skb;
       
   303 		buffer_info->dma = pci_map_single(pdev, skb->data,
       
   304 						  adapter->rx_ps_bsize0,
       
   305 						  PCI_DMA_FROMDEVICE);
       
   306 		if (pci_dma_mapping_error(pdev, buffer_info->dma)) {
       
   307 			dev_err(&pdev->dev, "RX DMA map failed\n");
       
   308 			adapter->rx_dma_failed++;
       
   309 			/* cleanup skb */
       
   310 			dev_kfree_skb_any(skb);
       
   311 			buffer_info->skb = NULL;
       
   312 			break;
       
   313 		}
       
   314 
       
   315 		rx_desc->read.buffer_addr[0] = cpu_to_le64(buffer_info->dma);
       
   316 
       
   317 		i++;
       
   318 		if (i == rx_ring->count)
       
   319 			i = 0;
       
   320 		buffer_info = &rx_ring->buffer_info[i];
       
   321 	}
       
   322 
       
   323 no_buffers:
       
   324 	if (rx_ring->next_to_use != i) {
       
   325 		rx_ring->next_to_use = i;
       
   326 
       
   327 		if (!(i--))
       
   328 			i = (rx_ring->count - 1);
       
   329 
       
   330 		/*
       
   331 		 * Force memory writes to complete before letting h/w
       
   332 		 * know there are new descriptors to fetch.  (Only
       
   333 		 * applicable for weak-ordered memory model archs,
       
   334 		 * such as IA-64).
       
   335 		 */
       
   336 		wmb();
       
   337 		/*
       
   338 		 * Hardware increments by 16 bytes, but packet split
       
   339 		 * descriptors are 32 bytes...so we increment tail
       
   340 		 * twice as much.
       
   341 		 */
       
   342 		writel(i<<1, adapter->hw.hw_addr + rx_ring->tail);
       
   343 	}
       
   344 }
       
   345 
       
   346 /**
       
   347  * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
       
   348  * @adapter: address of board private structure
       
   349  * @cleaned_count: number of buffers to allocate this pass
       
   350  **/
       
   351 
       
   352 static void e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
       
   353                                          int cleaned_count)
       
   354 {
       
   355 	struct net_device *netdev = adapter->netdev;
       
   356 	struct pci_dev *pdev = adapter->pdev;
       
   357 	struct e1000_rx_desc *rx_desc;
       
   358 	struct e1000_ring *rx_ring = adapter->rx_ring;
       
   359 	struct e1000_buffer *buffer_info;
       
   360 	struct sk_buff *skb;
       
   361 	unsigned int i;
       
   362 	unsigned int bufsz = 256 -
       
   363 	                     16 /* for skb_reserve */ -
       
   364 	                     NET_IP_ALIGN;
       
   365 
       
   366 	i = rx_ring->next_to_use;
       
   367 	buffer_info = &rx_ring->buffer_info[i];
       
   368 
       
   369 	while (cleaned_count--) {
       
   370 		skb = buffer_info->skb;
       
   371 		if (skb) {
       
   372 			skb_trim(skb, 0);
       
   373 			goto check_page;
       
   374 		}
       
   375 
       
   376 		skb = netdev_alloc_skb(netdev, bufsz);
       
   377 		if (unlikely(!skb)) {
       
   378 			/* Better luck next round */
       
   379 			adapter->alloc_rx_buff_failed++;
       
   380 			break;
       
   381 		}
       
   382 
       
   383 		/* Make buffer alignment 2 beyond a 16 byte boundary
       
   384 		 * this will result in a 16 byte aligned IP header after
       
   385 		 * the 14 byte MAC header is removed
       
   386 		 */
       
   387 		skb_reserve(skb, NET_IP_ALIGN);
       
   388 
       
   389 		buffer_info->skb = skb;
       
   390 check_page:
       
   391 		/* allocate a new page if necessary */
       
   392 		if (!buffer_info->page) {
       
   393 			buffer_info->page = alloc_page(GFP_ATOMIC);
       
   394 			if (unlikely(!buffer_info->page)) {
       
   395 				adapter->alloc_rx_buff_failed++;
       
   396 				break;
       
   397 			}
       
   398 		}
       
   399 
       
   400 		if (!buffer_info->dma)
       
   401 			buffer_info->dma = pci_map_page(pdev,
       
   402 			                                buffer_info->page, 0,
       
   403 			                                PAGE_SIZE,
       
   404 			                                PCI_DMA_FROMDEVICE);
       
   405 
       
   406 		rx_desc = E1000_RX_DESC(*rx_ring, i);
       
   407 		rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
       
   408 
       
   409 		if (unlikely(++i == rx_ring->count))
       
   410 			i = 0;
       
   411 		buffer_info = &rx_ring->buffer_info[i];
       
   412 	}
       
   413 
       
   414 	if (likely(rx_ring->next_to_use != i)) {
       
   415 		rx_ring->next_to_use = i;
       
   416 		if (unlikely(i-- == 0))
       
   417 			i = (rx_ring->count - 1);
       
   418 
       
   419 		/* Force memory writes to complete before letting h/w
       
   420 		 * know there are new descriptors to fetch.  (Only
       
   421 		 * applicable for weak-ordered memory model archs,
       
   422 		 * such as IA-64). */
       
   423 		wmb();
       
   424 		writel(i, adapter->hw.hw_addr + rx_ring->tail);
       
   425 	}
       
   426 }
       
   427 
       
   428 /**
       
   429  * e1000_clean_rx_irq - Send received data up the network stack; legacy
       
   430  * @adapter: board private structure
       
   431  *
       
   432  * the return value indicates whether actual cleaning was done, there
       
   433  * is no guarantee that everything was cleaned
       
   434  **/
       
   435 static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
       
   436 			       int *work_done, int work_to_do)
       
   437 {
       
   438 	struct net_device *netdev = adapter->netdev;
       
   439 	struct pci_dev *pdev = adapter->pdev;
       
   440 	struct e1000_ring *rx_ring = adapter->rx_ring;
       
   441 	struct e1000_rx_desc *rx_desc, *next_rxd;
       
   442 	struct e1000_buffer *buffer_info, *next_buffer;
       
   443 	u32 length;
       
   444 	unsigned int i;
       
   445 	int cleaned_count = 0;
       
   446 	bool cleaned = 0;
       
   447 	unsigned int total_rx_bytes = 0, total_rx_packets = 0;
       
   448 
       
   449 	i = rx_ring->next_to_clean;
       
   450 	rx_desc = E1000_RX_DESC(*rx_ring, i);
       
   451 	buffer_info = &rx_ring->buffer_info[i];
       
   452 
       
   453 	while (rx_desc->status & E1000_RXD_STAT_DD) {
       
   454 		struct sk_buff *skb;
       
   455 		u8 status;
       
   456 
       
   457 		if (*work_done >= work_to_do)
       
   458 			break;
       
   459 		(*work_done)++;
       
   460 
       
   461 		status = rx_desc->status;
       
   462 		skb = buffer_info->skb;
       
   463 
       
   464 		if (!adapter->ecdev)
       
   465 			buffer_info->skb = NULL;
       
   466 
       
   467 		prefetch(skb->data - NET_IP_ALIGN);
       
   468 
       
   469 		i++;
       
   470 		if (i == rx_ring->count)
       
   471 			i = 0;
       
   472 		next_rxd = E1000_RX_DESC(*rx_ring, i);
       
   473 		prefetch(next_rxd);
       
   474 
       
   475 		next_buffer = &rx_ring->buffer_info[i];
       
   476 
       
   477 		cleaned = 1;
       
   478 		cleaned_count++;
       
   479 		pci_unmap_single(pdev,
       
   480 				 buffer_info->dma,
       
   481 				 adapter->rx_buffer_len,
       
   482 				 PCI_DMA_FROMDEVICE);
       
   483 		buffer_info->dma = 0;
       
   484 
       
   485 		length = le16_to_cpu(rx_desc->length);
       
   486 
       
   487 		/*
       
   488 		 * !EOP means multiple descriptors were used to store a single
       
   489 		 * packet, if that's the case we need to toss it.  In fact, we
       
   490 		 * need to toss every packet with the EOP bit clear and the
       
   491 		 * next frame that _does_ have the EOP bit set, as it is by
       
   492 		 * definition only a frame fragment
       
   493 		 */
       
   494 		if (unlikely(!(status & E1000_RXD_STAT_EOP)))
       
   495 			adapter->flags2 |= FLAG2_IS_DISCARDING;
       
   496 
       
   497 		if (adapter->flags2 & FLAG2_IS_DISCARDING) {
       
   498 			/* All receives must fit into a single buffer */
       
   499 			e_dbg("%s: Receive packet consumed multiple buffers\n",
       
   500 			      netdev->name);
       
   501 			/* recycle */
       
   502 			buffer_info->skb = skb;
       
   503 			if (status & E1000_RXD_STAT_EOP)
       
   504 				adapter->flags2 &= ~FLAG2_IS_DISCARDING;
       
   505 			goto next_desc;
       
   506 		}
       
   507 
       
   508 		if (!adapter->ecdev && (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK)) {
       
   509 			/* recycle */
       
   510 			buffer_info->skb = skb;
       
   511 			goto next_desc;
       
   512 		}
       
   513 
       
   514 		/* adjust length to remove Ethernet CRC */
       
   515 		if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
       
   516 			length -= 4;
       
   517 
       
   518 		total_rx_bytes += length;
       
   519 		total_rx_packets++;
       
   520 
       
   521 		/*
       
   522 		 * code added for copybreak, this should improve
       
   523 		 * performance for small packets with large amounts
       
   524 		 * of reassembly being done in the stack
       
   525 		 */
       
   526 		if (!adapter->ecdev && length < copybreak) {
       
   527 			struct sk_buff *new_skb =
       
   528 			    netdev_alloc_skb(netdev, length + NET_IP_ALIGN);
       
   529 			if (new_skb) {
       
   530 				skb_reserve(new_skb, NET_IP_ALIGN);
       
   531 				skb_copy_to_linear_data_offset(new_skb,
       
   532 							       -NET_IP_ALIGN,
       
   533 							       (skb->data -
       
   534 								NET_IP_ALIGN),
       
   535 							       (length +
       
   536 								NET_IP_ALIGN));
       
   537 				/* save the skb in buffer_info as good */
       
   538 				buffer_info->skb = skb;
       
   539 				skb = new_skb;
       
   540 			}
       
   541 			/* else just continue with the old one */
       
   542 		}
       
   543 		/* end copybreak code */
       
   544 		skb_put(skb, length);
       
   545 
       
   546 		/* Receive Checksum Offload */
       
   547 		e1000_rx_checksum(adapter,
       
   548 				  (u32)(status) |
       
   549 				  ((u32)(rx_desc->errors) << 24),
       
   550 				  le16_to_cpu(rx_desc->csum), skb);
       
   551 
       
   552 		if (adapter->ecdev) {
       
   553 			ecdev_receive(adapter->ecdev, skb->data, length);
       
   554 			adapter->ec_watchdog_jiffies = jiffies;
       
   555 		} else {
       
   556 			e1000_receive_skb(adapter, netdev, skb,status,rx_desc->special);
       
   557 		}
       
   558 
       
   559 next_desc:
       
   560 		rx_desc->status = 0;
       
   561 
       
   562 		/* return some buffers to hardware, one at a time is too slow */
       
   563 		if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
       
   564 			adapter->alloc_rx_buf(adapter, cleaned_count);
       
   565 			cleaned_count = 0;
       
   566 		}
       
   567 
       
   568 		/* use prefetched values */
       
   569 		rx_desc = next_rxd;
       
   570 		buffer_info = next_buffer;
       
   571 	}
       
   572 	rx_ring->next_to_clean = i;
       
   573 
       
   574 	cleaned_count = e1000_desc_unused(rx_ring);
       
   575 	if (cleaned_count)
       
   576 		adapter->alloc_rx_buf(adapter, cleaned_count);
       
   577 
       
   578 	adapter->total_rx_bytes += total_rx_bytes;
       
   579 	adapter->total_rx_packets += total_rx_packets;
       
   580 	adapter->net_stats.rx_bytes += total_rx_bytes;
       
   581 	adapter->net_stats.rx_packets += total_rx_packets;
       
   582 	return cleaned;
       
   583 }
       
   584 
       
   585 static void e1000_put_txbuf(struct e1000_adapter *adapter,
       
   586 			     struct e1000_buffer *buffer_info)
       
   587 {
       
   588 	if (adapter->ecdev)
       
   589 		return;
       
   590 
       
   591 	buffer_info->dma = 0;
       
   592 	if (buffer_info->skb) {
       
   593 		skb_dma_unmap(&adapter->pdev->dev, buffer_info->skb,
       
   594 		              DMA_TO_DEVICE);
       
   595 		dev_kfree_skb_any(buffer_info->skb);
       
   596 		buffer_info->skb = NULL;
       
   597 	}
       
   598 	buffer_info->time_stamp = 0;
       
   599 }
       
   600 
       
   601 static void e1000_print_tx_hang(struct e1000_adapter *adapter)
       
   602 {
       
   603 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
   604 	unsigned int i = tx_ring->next_to_clean;
       
   605 	unsigned int eop = tx_ring->buffer_info[i].next_to_watch;
       
   606 	struct e1000_tx_desc *eop_desc = E1000_TX_DESC(*tx_ring, eop);
       
   607 
       
   608 	/* detected Tx unit hang */
       
   609 	e_err("Detected Tx Unit Hang:\n"
       
   610 	      "  TDH                  <%x>\n"
       
   611 	      "  TDT                  <%x>\n"
       
   612 	      "  next_to_use          <%x>\n"
       
   613 	      "  next_to_clean        <%x>\n"
       
   614 	      "buffer_info[next_to_clean]:\n"
       
   615 	      "  time_stamp           <%lx>\n"
       
   616 	      "  next_to_watch        <%x>\n"
       
   617 	      "  jiffies              <%lx>\n"
       
   618 	      "  next_to_watch.status <%x>\n",
       
   619 	      readl(adapter->hw.hw_addr + tx_ring->head),
       
   620 	      readl(adapter->hw.hw_addr + tx_ring->tail),
       
   621 	      tx_ring->next_to_use,
       
   622 	      tx_ring->next_to_clean,
       
   623 	      tx_ring->buffer_info[eop].time_stamp,
       
   624 	      eop,
       
   625 	      jiffies,
       
   626 	      eop_desc->upper.fields.status);
       
   627 }
       
   628 
       
   629 /**
       
   630  * e1000_clean_tx_irq - Reclaim resources after transmit completes
       
   631  * @adapter: board private structure
       
   632  *
       
   633  * the return value indicates whether actual cleaning was done, there
       
   634  * is no guarantee that everything was cleaned
       
   635  **/
       
   636 static bool e1000_clean_tx_irq(struct e1000_adapter *adapter)
       
   637 {
       
   638 	struct net_device *netdev = adapter->netdev;
       
   639 	struct e1000_hw *hw = &adapter->hw;
       
   640 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
   641 	struct e1000_tx_desc *tx_desc, *eop_desc;
       
   642 	struct e1000_buffer *buffer_info;
       
   643 	unsigned int i, eop;
       
   644 	unsigned int count = 0;
       
   645 	unsigned int total_tx_bytes = 0, total_tx_packets = 0;
       
   646 
       
   647 	i = tx_ring->next_to_clean;
       
   648 	eop = tx_ring->buffer_info[i].next_to_watch;
       
   649 	eop_desc = E1000_TX_DESC(*tx_ring, eop);
       
   650 
       
   651 	while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
       
   652 	       (count < tx_ring->count)) {
       
   653 		bool cleaned = false;
       
   654 		for (; !cleaned; count++) {
       
   655 			tx_desc = E1000_TX_DESC(*tx_ring, i);
       
   656 			buffer_info = &tx_ring->buffer_info[i];
       
   657 			cleaned = (i == eop);
       
   658 
       
   659 			if (cleaned) {
       
   660 				struct sk_buff *skb = buffer_info->skb;
       
   661 				unsigned int segs, bytecount;
       
   662 				segs = skb_shinfo(skb)->gso_segs ?: 1;
       
   663 				/* multiply data chunks by size of headers */
       
   664 				bytecount = ((segs - 1) * skb_headlen(skb)) +
       
   665 					    skb->len;
       
   666 				total_tx_packets += segs;
       
   667 				total_tx_bytes += bytecount;
       
   668 			}
       
   669 
       
   670 			e1000_put_txbuf(adapter, buffer_info);
       
   671 			tx_desc->upper.data = 0;
       
   672 
       
   673 			i++;
       
   674 			if (i == tx_ring->count)
       
   675 				i = 0;
       
   676 		}
       
   677 
       
   678 		eop = tx_ring->buffer_info[i].next_to_watch;
       
   679 		eop_desc = E1000_TX_DESC(*tx_ring, eop);
       
   680 	}
       
   681 
       
   682 	tx_ring->next_to_clean = i;
       
   683 
       
   684 #define TX_WAKE_THRESHOLD 32
       
   685 	if (!adapter->ecdev && count && netif_carrier_ok(netdev) &&
       
   686 	    e1000_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD) {
       
   687 		/* Make sure that anybody stopping the queue after this
       
   688 		 * sees the new next_to_clean.
       
   689 		 */
       
   690 		smp_mb();
       
   691 
       
   692 		if (netif_queue_stopped(netdev) &&
       
   693 		    !(test_bit(__E1000_DOWN, &adapter->state))) {
       
   694 			netif_wake_queue(netdev);
       
   695 			++adapter->restart_queue;
       
   696 		}
       
   697 	}
       
   698 
       
   699 	if (!adapter->ecdev && adapter->detect_tx_hung) {
       
   700 		/* Detect a transmit hang in hardware, this serializes the
       
   701 		 * check with the clearing of time_stamp and movement of i */
       
   702 		adapter->detect_tx_hung = 0;
       
   703 		if (tx_ring->buffer_info[i].time_stamp &&
       
   704 		    time_after(jiffies, tx_ring->buffer_info[i].time_stamp
       
   705 			       + (adapter->tx_timeout_factor * HZ))
       
   706 		    && !(er32(STATUS) & E1000_STATUS_TXOFF)) {
       
   707 			e1000_print_tx_hang(adapter);
       
   708 			netif_stop_queue(netdev);
       
   709 		}
       
   710 	}
       
   711 	adapter->total_tx_bytes += total_tx_bytes;
       
   712 	adapter->total_tx_packets += total_tx_packets;
       
   713 	adapter->net_stats.tx_bytes += total_tx_bytes;
       
   714 	adapter->net_stats.tx_packets += total_tx_packets;
       
   715 	return (count < tx_ring->count);
       
   716 }
       
   717 
       
   718 /**
       
   719  * e1000_clean_rx_irq_ps - Send received data up the network stack; packet split
       
   720  * @adapter: board private structure
       
   721  *
       
   722  * the return value indicates whether actual cleaning was done, there
       
   723  * is no guarantee that everything was cleaned
       
   724  **/
       
   725 static bool e1000_clean_rx_irq_ps(struct e1000_adapter *adapter,
       
   726 				  int *work_done, int work_to_do)
       
   727 {
       
   728 	union e1000_rx_desc_packet_split *rx_desc, *next_rxd;
       
   729 	struct net_device *netdev = adapter->netdev;
       
   730 	struct pci_dev *pdev = adapter->pdev;
       
   731 	struct e1000_ring *rx_ring = adapter->rx_ring;
       
   732 	struct e1000_buffer *buffer_info, *next_buffer;
       
   733 	struct e1000_ps_page *ps_page;
       
   734 	struct sk_buff *skb;
       
   735 	unsigned int i, j;
       
   736 	u32 length, staterr;
       
   737 	int cleaned_count = 0;
       
   738 	bool cleaned = 0;
       
   739 	unsigned int total_rx_bytes = 0, total_rx_packets = 0;
       
   740 
       
   741 	i = rx_ring->next_to_clean;
       
   742 	rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
       
   743 	staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
       
   744 	buffer_info = &rx_ring->buffer_info[i];
       
   745 
       
   746 	while (staterr & E1000_RXD_STAT_DD) {
       
   747 		if (*work_done >= work_to_do)
       
   748 			break;
       
   749 		(*work_done)++;
       
   750 		skb = buffer_info->skb;
       
   751 
       
   752 		/* in the packet split case this is header only */
       
   753 		prefetch(skb->data - NET_IP_ALIGN);
       
   754 
       
   755 		i++;
       
   756 		if (i == rx_ring->count)
       
   757 			i = 0;
       
   758 		next_rxd = E1000_RX_DESC_PS(*rx_ring, i);
       
   759 		prefetch(next_rxd);
       
   760 
       
   761 		next_buffer = &rx_ring->buffer_info[i];
       
   762 
       
   763 		cleaned = 1;
       
   764 		cleaned_count++;
       
   765 		pci_unmap_single(pdev, buffer_info->dma,
       
   766 				 adapter->rx_ps_bsize0,
       
   767 				 PCI_DMA_FROMDEVICE);
       
   768 		buffer_info->dma = 0;
       
   769 
       
   770 		/* see !EOP comment in other rx routine */
       
   771 		if (!(staterr & E1000_RXD_STAT_EOP))
       
   772 			adapter->flags2 |= FLAG2_IS_DISCARDING;
       
   773 
       
   774 		if (adapter->flags2 & FLAG2_IS_DISCARDING) {
       
   775 			e_dbg("%s: Packet Split buffers didn't pick up the "
       
   776 			      "full packet\n", netdev->name);
       
   777 			if (!adapter->ecdev) {
       
   778 				dev_kfree_skb_irq(skb);
       
   779 			}
       
   780 			if (staterr & E1000_RXD_STAT_EOP)
       
   781 				adapter->flags2 &= ~FLAG2_IS_DISCARDING;
       
   782 			goto next_desc;
       
   783 		}
       
   784 
       
   785 		if (staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) {
       
   786 			if (!adapter->ecdev) {
       
   787 				dev_kfree_skb_irq(skb);
       
   788 			}
       
   789 			goto next_desc;
       
   790 		}
       
   791 
       
   792 		length = le16_to_cpu(rx_desc->wb.middle.length0);
       
   793 
       
   794 		if (!length) {
       
   795 			e_dbg("%s: Last part of the packet spanning multiple "
       
   796 			      "descriptors\n", netdev->name);
       
   797 			if (!adapter->ecdev) {
       
   798 				dev_kfree_skb_irq(skb);
       
   799 			}
       
   800 			goto next_desc;
       
   801 		}
       
   802 
       
   803 		/* Good Receive */
       
   804 		skb_put(skb, length);
       
   805 
       
   806 		{
       
   807 		/*
       
   808 		 * this looks ugly, but it seems compiler issues make it
       
   809 		 * more efficient than reusing j
       
   810 		 */
       
   811 		int l1 = le16_to_cpu(rx_desc->wb.upper.length[0]);
       
   812 
       
   813 		/*
       
   814 		 * page alloc/put takes too long and effects small packet
       
   815 		 * throughput, so unsplit small packets and save the alloc/put
       
   816 		 * only valid in softirq (napi) context to call kmap_*
       
   817 		 */
       
   818 		if (l1 && (l1 <= copybreak) &&
       
   819 		    ((length + l1) <= adapter->rx_ps_bsize0)) {
       
   820 			u8 *vaddr;
       
   821 
       
   822 			ps_page = &buffer_info->ps_pages[0];
       
   823 
       
   824 			/*
       
   825 			 * there is no documentation about how to call
       
   826 			 * kmap_atomic, so we can't hold the mapping
       
   827 			 * very long
       
   828 			 */
       
   829 			pci_dma_sync_single_for_cpu(pdev, ps_page->dma,
       
   830 				PAGE_SIZE, PCI_DMA_FROMDEVICE);
       
   831 			vaddr = kmap_atomic(ps_page->page, KM_SKB_DATA_SOFTIRQ);
       
   832 			memcpy(skb_tail_pointer(skb), vaddr, l1);
       
   833 			kunmap_atomic(vaddr, KM_SKB_DATA_SOFTIRQ);
       
   834 			pci_dma_sync_single_for_device(pdev, ps_page->dma,
       
   835 				PAGE_SIZE, PCI_DMA_FROMDEVICE);
       
   836 
       
   837 			/* remove the CRC */
       
   838 			if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
       
   839 				l1 -= 4;
       
   840 
       
   841 			skb_put(skb, l1);
       
   842 			goto copydone;
       
   843 		} /* if */
       
   844 		}
       
   845 
       
   846 		for (j = 0; j < PS_PAGE_BUFFERS; j++) {
       
   847 			length = le16_to_cpu(rx_desc->wb.upper.length[j]);
       
   848 			if (!length)
       
   849 				break;
       
   850 
       
   851 			ps_page = &buffer_info->ps_pages[j];
       
   852 			pci_unmap_page(pdev, ps_page->dma, PAGE_SIZE,
       
   853 				       PCI_DMA_FROMDEVICE);
       
   854 			ps_page->dma = 0;
       
   855 			skb_fill_page_desc(skb, j, ps_page->page, 0, length);
       
   856 			ps_page->page = NULL;
       
   857 			skb->len += length;
       
   858 			skb->data_len += length;
       
   859 			skb->truesize += length;
       
   860 		}
       
   861 
       
   862 		/* strip the ethernet crc, problem is we're using pages now so
       
   863 		 * this whole operation can get a little cpu intensive
       
   864 		 */
       
   865 		if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
       
   866 			pskb_trim(skb, skb->len - 4);
       
   867 
       
   868 copydone:
       
   869 		total_rx_bytes += skb->len;
       
   870 		total_rx_packets++;
       
   871 
       
   872 		e1000_rx_checksum(adapter, staterr, le16_to_cpu(
       
   873 			rx_desc->wb.lower.hi_dword.csum_ip.csum), skb);
       
   874 
       
   875 		if (rx_desc->wb.upper.header_status &
       
   876 			   cpu_to_le16(E1000_RXDPS_HDRSTAT_HDRSP))
       
   877 			adapter->rx_hdr_split++;
       
   878 
       
   879 		if (adapter->ecdev) {
       
   880 			ecdev_receive(adapter->ecdev, skb->data, length);
       
   881 			adapter->ec_watchdog_jiffies = jiffies;
       
   882 		} else {
       
   883 			e1000_receive_skb(adapter, netdev, skb,
       
   884 					  staterr, rx_desc->wb.middle.vlan);
       
   885 		}
       
   886 
       
   887 next_desc:
       
   888 		rx_desc->wb.middle.status_error &= cpu_to_le32(~0xFF);
       
   889 		if (!adapter->ecdev) buffer_info->skb = NULL;
       
   890 
       
   891 		/* return some buffers to hardware, one at a time is too slow */
       
   892 		if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
       
   893 			adapter->alloc_rx_buf(adapter, cleaned_count);
       
   894 			cleaned_count = 0;
       
   895 		}
       
   896 
       
   897 		/* use prefetched values */
       
   898 		rx_desc = next_rxd;
       
   899 		buffer_info = next_buffer;
       
   900 
       
   901 		staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
       
   902 	}
       
   903 	rx_ring->next_to_clean = i;
       
   904 
       
   905 	cleaned_count = e1000_desc_unused(rx_ring);
       
   906 	if (cleaned_count)
       
   907 		adapter->alloc_rx_buf(adapter, cleaned_count);
       
   908 
       
   909 	adapter->total_rx_bytes += total_rx_bytes;
       
   910 	adapter->total_rx_packets += total_rx_packets;
       
   911 	adapter->net_stats.rx_bytes += total_rx_bytes;
       
   912 	adapter->net_stats.rx_packets += total_rx_packets;
       
   913 	return cleaned;
       
   914 }
       
   915 
       
   916 /**
       
   917  * e1000_consume_page - helper function
       
   918  **/
       
   919 static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
       
   920                                u16 length)
       
   921 {
       
   922 	bi->page = NULL;
       
   923 	skb->len += length;
       
   924 	skb->data_len += length;
       
   925 	skb->truesize += length;
       
   926 }
       
   927 
       
   928 /**
       
   929  * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
       
   930  * @adapter: board private structure
       
   931  *
       
   932  * the return value indicates whether actual cleaning was done, there
       
   933  * is no guarantee that everything was cleaned
       
   934  **/
       
   935 
       
   936 static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
       
   937                                      int *work_done, int work_to_do)
       
   938 {
       
   939 	struct net_device *netdev = adapter->netdev;
       
   940 	struct pci_dev *pdev = adapter->pdev;
       
   941 	struct e1000_ring *rx_ring = adapter->rx_ring;
       
   942 	struct e1000_rx_desc *rx_desc, *next_rxd;
       
   943 	struct e1000_buffer *buffer_info, *next_buffer;
       
   944 	u32 length;
       
   945 	unsigned int i;
       
   946 	int cleaned_count = 0;
       
   947 	bool cleaned = false;
       
   948 	unsigned int total_rx_bytes=0, total_rx_packets=0;
       
   949 
       
   950 	i = rx_ring->next_to_clean;
       
   951 	rx_desc = E1000_RX_DESC(*rx_ring, i);
       
   952 	buffer_info = &rx_ring->buffer_info[i];
       
   953 
       
   954 	while (rx_desc->status & E1000_RXD_STAT_DD) {
       
   955 		struct sk_buff *skb;
       
   956 		u8 status;
       
   957 
       
   958 		if (*work_done >= work_to_do)
       
   959 			break;
       
   960 		(*work_done)++;
       
   961 
       
   962 		status = rx_desc->status;
       
   963 		skb = buffer_info->skb;
       
   964 
       
   965 		if (!adapter->ecdev)
       
   966 			buffer_info->skb = NULL;
       
   967 
       
   968 		++i;
       
   969 		if (i == rx_ring->count)
       
   970 			i = 0;
       
   971 		next_rxd = E1000_RX_DESC(*rx_ring, i);
       
   972 		prefetch(next_rxd);
       
   973 
       
   974 		next_buffer = &rx_ring->buffer_info[i];
       
   975 
       
   976 		cleaned = true;
       
   977 		cleaned_count++;
       
   978 		pci_unmap_page(pdev, buffer_info->dma, PAGE_SIZE,
       
   979 		               PCI_DMA_FROMDEVICE);
       
   980 		buffer_info->dma = 0;
       
   981 
       
   982 		length = le16_to_cpu(rx_desc->length);
       
   983 
       
   984 		/* errors is only valid for DD + EOP descriptors */
       
   985 		if (!adapter->ecdev && unlikely((status & E1000_RXD_STAT_EOP) &&
       
   986 		    (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) {
       
   987 				/* recycle both page and skb */
       
   988 				buffer_info->skb = skb;
       
   989 				/* an error means any chain goes out the window
       
   990 				 * too */
       
   991 				if (rx_ring->rx_skb_top)
       
   992 					dev_kfree_skb(rx_ring->rx_skb_top);
       
   993 				rx_ring->rx_skb_top = NULL;
       
   994 				goto next_desc;
       
   995 		}
       
   996 
       
   997 #define rxtop rx_ring->rx_skb_top
       
   998 		if (!(status & E1000_RXD_STAT_EOP)) {
       
   999 			/* this descriptor is only the beginning (or middle) */
       
  1000 			if (!rxtop) {
       
  1001 				/* this is the beginning of a chain */
       
  1002 				rxtop = skb;
       
  1003 				skb_fill_page_desc(rxtop, 0, buffer_info->page,
       
  1004 				                   0, length);
       
  1005 			} else {
       
  1006 				/* this is the middle of a chain */
       
  1007 				skb_fill_page_desc(rxtop,
       
  1008 				    skb_shinfo(rxtop)->nr_frags,
       
  1009 				    buffer_info->page, 0, length);
       
  1010 				/* re-use the skb, only consumed the page */
       
  1011 				buffer_info->skb = skb;
       
  1012 			}
       
  1013 			e1000_consume_page(buffer_info, rxtop, length);
       
  1014 			goto next_desc;
       
  1015 		} else {
       
  1016 			if (rxtop) {
       
  1017 				/* end of the chain */
       
  1018 				skb_fill_page_desc(rxtop,
       
  1019 				    skb_shinfo(rxtop)->nr_frags,
       
  1020 				    buffer_info->page, 0, length);
       
  1021 				/* re-use the current skb, we only consumed the
       
  1022 				 * page */
       
  1023 				buffer_info->skb = skb;
       
  1024 				skb = rxtop;
       
  1025 				rxtop = NULL;
       
  1026 				e1000_consume_page(buffer_info, skb, length);
       
  1027 			} else {
       
  1028 				/* no chain, got EOP, this buf is the packet
       
  1029 				 * copybreak to save the put_page/alloc_page */
       
  1030 				if (length <= copybreak &&
       
  1031 				    skb_tailroom(skb) >= length) {
       
  1032 					u8 *vaddr;
       
  1033 					vaddr = kmap_atomic(buffer_info->page,
       
  1034 					                   KM_SKB_DATA_SOFTIRQ);
       
  1035 					memcpy(skb_tail_pointer(skb), vaddr,
       
  1036 					       length);
       
  1037 					kunmap_atomic(vaddr,
       
  1038 					              KM_SKB_DATA_SOFTIRQ);
       
  1039 					/* re-use the page, so don't erase
       
  1040 					 * buffer_info->page */
       
  1041 					skb_put(skb, length);
       
  1042 				} else {
       
  1043 					skb_fill_page_desc(skb, 0,
       
  1044 					                   buffer_info->page, 0,
       
  1045 				                           length);
       
  1046 					e1000_consume_page(buffer_info, skb,
       
  1047 					                   length);
       
  1048 				}
       
  1049 			}
       
  1050 		}
       
  1051 
       
  1052 		/* Receive Checksum Offload XXX recompute due to CRC strip? */
       
  1053 		e1000_rx_checksum(adapter,
       
  1054 		                  (u32)(status) |
       
  1055 		                  ((u32)(rx_desc->errors) << 24),
       
  1056 		                  le16_to_cpu(rx_desc->csum), skb);
       
  1057 
       
  1058 		/* probably a little skewed due to removing CRC */
       
  1059 		total_rx_bytes += skb->len;
       
  1060 		total_rx_packets++;
       
  1061 
       
  1062 		/* eth type trans needs skb->data to point to something */
       
  1063 		if (!adapter->ecdev && !pskb_may_pull(skb, ETH_HLEN)) {
       
  1064 			e_err("pskb_may_pull failed.\n");
       
  1065 			dev_kfree_skb(skb);
       
  1066 			goto next_desc;
       
  1067 		}
       
  1068 
       
  1069 		if (adapter->ecdev) {
       
  1070 			ecdev_receive(adapter->ecdev, skb->data, length);
       
  1071 			adapter->ec_watchdog_jiffies = jiffies;
       
  1072 		} else {
       
  1073 			e1000_receive_skb(adapter, netdev, skb, status,
       
  1074 			                  rx_desc->special);
       
  1075 		}
       
  1076 
       
  1077 next_desc:
       
  1078 		rx_desc->status = 0;
       
  1079 
       
  1080 		/* return some buffers to hardware, one at a time is too slow */
       
  1081 		if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
       
  1082 			adapter->alloc_rx_buf(adapter, cleaned_count);
       
  1083 			cleaned_count = 0;
       
  1084 		}
       
  1085 
       
  1086 		/* use prefetched values */
       
  1087 		rx_desc = next_rxd;
       
  1088 		buffer_info = next_buffer;
       
  1089 	}
       
  1090 	rx_ring->next_to_clean = i;
       
  1091 
       
  1092 	cleaned_count = e1000_desc_unused(rx_ring);
       
  1093 	if (cleaned_count)
       
  1094 		adapter->alloc_rx_buf(adapter, cleaned_count);
       
  1095 
       
  1096 	adapter->total_rx_bytes += total_rx_bytes;
       
  1097 	adapter->total_rx_packets += total_rx_packets;
       
  1098 	adapter->net_stats.rx_bytes += total_rx_bytes;
       
  1099 	adapter->net_stats.rx_packets += total_rx_packets;
       
  1100 	return cleaned;
       
  1101 }
       
  1102 
       
  1103 /**
       
  1104  * e1000_clean_rx_ring - Free Rx Buffers per Queue
       
  1105  * @adapter: board private structure
       
  1106  **/
       
  1107 static void e1000_clean_rx_ring(struct e1000_adapter *adapter)
       
  1108 {
       
  1109 	struct e1000_ring *rx_ring = adapter->rx_ring;
       
  1110 	struct e1000_buffer *buffer_info;
       
  1111 	struct e1000_ps_page *ps_page;
       
  1112 	struct pci_dev *pdev = adapter->pdev;
       
  1113 	unsigned int i, j;
       
  1114 
       
  1115 	/* Free all the Rx ring sk_buffs */
       
  1116 	for (i = 0; i < rx_ring->count; i++) {
       
  1117 		buffer_info = &rx_ring->buffer_info[i];
       
  1118 		if (buffer_info->dma) {
       
  1119 			if (adapter->clean_rx == e1000_clean_rx_irq)
       
  1120 				pci_unmap_single(pdev, buffer_info->dma,
       
  1121 						 adapter->rx_buffer_len,
       
  1122 						 PCI_DMA_FROMDEVICE);
       
  1123 			else if (adapter->clean_rx == e1000_clean_jumbo_rx_irq)
       
  1124 				pci_unmap_page(pdev, buffer_info->dma,
       
  1125 				               PAGE_SIZE,
       
  1126 				               PCI_DMA_FROMDEVICE);
       
  1127 			else if (adapter->clean_rx == e1000_clean_rx_irq_ps)
       
  1128 				pci_unmap_single(pdev, buffer_info->dma,
       
  1129 						 adapter->rx_ps_bsize0,
       
  1130 						 PCI_DMA_FROMDEVICE);
       
  1131 			buffer_info->dma = 0;
       
  1132 		}
       
  1133 
       
  1134 		if (buffer_info->page) {
       
  1135 			put_page(buffer_info->page);
       
  1136 			buffer_info->page = NULL;
       
  1137 		}
       
  1138 
       
  1139 		if (buffer_info->skb) {
       
  1140 			dev_kfree_skb(buffer_info->skb);
       
  1141 			buffer_info->skb = NULL;
       
  1142 		}
       
  1143 
       
  1144 		for (j = 0; j < PS_PAGE_BUFFERS; j++) {
       
  1145 			ps_page = &buffer_info->ps_pages[j];
       
  1146 			if (!ps_page->page)
       
  1147 				break;
       
  1148 			pci_unmap_page(pdev, ps_page->dma, PAGE_SIZE,
       
  1149 				       PCI_DMA_FROMDEVICE);
       
  1150 			ps_page->dma = 0;
       
  1151 			put_page(ps_page->page);
       
  1152 			ps_page->page = NULL;
       
  1153 		}
       
  1154 	}
       
  1155 
       
  1156 	/* there also may be some cached data from a chained receive */
       
  1157 	if (rx_ring->rx_skb_top) {
       
  1158 		dev_kfree_skb(rx_ring->rx_skb_top);
       
  1159 		rx_ring->rx_skb_top = NULL;
       
  1160 	}
       
  1161 
       
  1162 	/* Zero out the descriptor ring */
       
  1163 	memset(rx_ring->desc, 0, rx_ring->size);
       
  1164 
       
  1165 	rx_ring->next_to_clean = 0;
       
  1166 	rx_ring->next_to_use = 0;
       
  1167 	adapter->flags2 &= ~FLAG2_IS_DISCARDING;
       
  1168 
       
  1169 	writel(0, adapter->hw.hw_addr + rx_ring->head);
       
  1170 	writel(0, adapter->hw.hw_addr + rx_ring->tail);
       
  1171 }
       
  1172 
       
  1173 static void e1000e_downshift_workaround(struct work_struct *work)
       
  1174 {
       
  1175 	struct e1000_adapter *adapter = container_of(work,
       
  1176 					struct e1000_adapter, downshift_task);
       
  1177 
       
  1178 	e1000e_gig_downshift_workaround_ich8lan(&adapter->hw);
       
  1179 }
       
  1180 
       
  1181 /**
       
  1182  * e1000_intr_msi - Interrupt Handler
       
  1183  * @irq: interrupt number
       
  1184  * @data: pointer to a network interface device structure
       
  1185  **/
       
  1186 static irqreturn_t e1000_intr_msi(int irq, void *data)
       
  1187 {
       
  1188 	struct net_device *netdev = data;
       
  1189 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  1190 	struct e1000_hw *hw = &adapter->hw;
       
  1191 	u32 icr = er32(ICR);
       
  1192 
       
  1193  	if (adapter->ecdev) {
       
  1194  		int ec_work_done = 0;
       
  1195  		adapter->clean_rx(adapter, &ec_work_done, 100);
       
  1196  		e1000_clean_tx_irq(adapter);
       
  1197 		return IRQ_HANDLED;
       
  1198 	}
       
  1199 	/*
       
  1200 	 * read ICR disables interrupts using IAM
       
  1201 	 */
       
  1202 
       
  1203 	if (icr & E1000_ICR_LSC) {
       
  1204 		hw->mac.get_link_status = 1;
       
  1205 		/*
       
  1206 		 * ICH8 workaround-- Call gig speed drop workaround on cable
       
  1207 		 * disconnect (LSC) before accessing any PHY registers
       
  1208 		 */
       
  1209 		if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
       
  1210 		    (!(er32(STATUS) & E1000_STATUS_LU)))
       
  1211 			schedule_work(&adapter->downshift_task);
       
  1212 
       
  1213 		/*
       
  1214 		 * 80003ES2LAN workaround-- For packet buffer work-around on
       
  1215 		 * link down event; disable receives here in the ISR and reset
       
  1216 		 * adapter in watchdog
       
  1217 		 */
       
  1218 		if (netif_carrier_ok(netdev) &&
       
  1219 		    adapter->flags & FLAG_RX_NEEDS_RESTART) {
       
  1220 			/* disable receives */
       
  1221 			u32 rctl = er32(RCTL);
       
  1222 			ew32(RCTL, rctl & ~E1000_RCTL_EN);
       
  1223 			adapter->flags |= FLAG_RX_RESTART_NOW;
       
  1224 		}
       
  1225 		/* guard against interrupt when we're going down */
       
  1226 		if (!test_bit(__E1000_DOWN, &adapter->state))
       
  1227 			mod_timer(&adapter->watchdog_timer, jiffies + 1);
       
  1228 	}
       
  1229 
       
  1230 	if (napi_schedule_prep(&adapter->napi)) {
       
  1231 		adapter->total_tx_bytes = 0;
       
  1232 		adapter->total_tx_packets = 0;
       
  1233 		adapter->total_rx_bytes = 0;
       
  1234 		adapter->total_rx_packets = 0;
       
  1235 		__napi_schedule(&adapter->napi);
       
  1236 	}
       
  1237 
       
  1238 	return IRQ_HANDLED;
       
  1239 }
       
  1240 
       
  1241 /**
       
  1242  * e1000_intr - Interrupt Handler
       
  1243  * @irq: interrupt number
       
  1244  * @data: pointer to a network interface device structure
       
  1245  **/
       
  1246 static irqreturn_t e1000_intr(int irq, void *data)
       
  1247 {
       
  1248 	struct net_device *netdev = data;
       
  1249 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  1250 	struct e1000_hw *hw = &adapter->hw;
       
  1251 	u32 rctl, icr = er32(ICR);
       
  1252 
       
  1253 	if (!icr)
       
  1254 		return IRQ_NONE;  /* Not our interrupt */
       
  1255 
       
  1256 	/*
       
  1257 	 * IMS will not auto-mask if INT_ASSERTED is not set, and if it is
       
  1258 	 * not set, then the adapter didn't send an interrupt
       
  1259 	 */
       
  1260 	if (!adapter->ecdev && !(icr & E1000_ICR_INT_ASSERTED))
       
  1261 		return IRQ_NONE;
       
  1262 
       
  1263 	/*
       
  1264 	 * Interrupt Auto-Mask...upon reading ICR,
       
  1265 	 * interrupts are masked.  No need for the
       
  1266 	 * IMC write
       
  1267 	 */
       
  1268 
       
  1269 	if (!adapter->ecdev && (icr & E1000_ICR_LSC)) {
       
  1270 		hw->mac.get_link_status = 1;
       
  1271 		/*
       
  1272 		 * ICH8 workaround-- Call gig speed drop workaround on cable
       
  1273 		 * disconnect (LSC) before accessing any PHY registers
       
  1274 		 */
       
  1275 		if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
       
  1276 		    (!(er32(STATUS) & E1000_STATUS_LU)))
       
  1277 			schedule_work(&adapter->downshift_task);
       
  1278 
       
  1279 		/*
       
  1280 		 * 80003ES2LAN workaround--
       
  1281 		 * For packet buffer work-around on link down event;
       
  1282 		 * disable receives here in the ISR and
       
  1283 		 * reset adapter in watchdog
       
  1284 		 */
       
  1285 		if (netif_carrier_ok(netdev) &&
       
  1286 		    (adapter->flags & FLAG_RX_NEEDS_RESTART)) {
       
  1287 			/* disable receives */
       
  1288 			rctl = er32(RCTL);
       
  1289 			ew32(RCTL, rctl & ~E1000_RCTL_EN);
       
  1290 			adapter->flags |= FLAG_RX_RESTART_NOW;
       
  1291 		}
       
  1292 		/* guard against interrupt when we're going down */
       
  1293 		if (!test_bit(__E1000_DOWN, &adapter->state))
       
  1294 			mod_timer(&adapter->watchdog_timer, jiffies + 1);
       
  1295 	}
       
  1296 
       
  1297  	if (adapter->ecdev) {
       
  1298  		int ec_work_done = 0;
       
  1299  		adapter->clean_rx(adapter, &ec_work_done, 100);
       
  1300  		e1000_clean_tx_irq(adapter);
       
  1301 		return IRQ_HANDLED;
       
  1302 	}
       
  1303 
       
  1304 	if (napi_schedule_prep(&adapter->napi)) {
       
  1305 		adapter->total_tx_bytes = 0;
       
  1306 		adapter->total_tx_packets = 0;
       
  1307 		adapter->total_rx_bytes = 0;
       
  1308 		adapter->total_rx_packets = 0;
       
  1309 		__napi_schedule(&adapter->napi);
       
  1310 	}
       
  1311 
       
  1312 	return IRQ_HANDLED;
       
  1313 }
       
  1314 
       
  1315 static irqreturn_t e1000_msix_other(int irq, void *data)
       
  1316 {
       
  1317 	struct net_device *netdev = data;
       
  1318 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  1319 	struct e1000_hw *hw = &adapter->hw;
       
  1320 	u32 icr = er32(ICR);
       
  1321 
       
  1322 	if (!(icr & E1000_ICR_INT_ASSERTED)) {
       
  1323 		if (!test_bit(__E1000_DOWN, &adapter->state))
       
  1324 			ew32(IMS, E1000_IMS_OTHER);
       
  1325 		return IRQ_NONE;
       
  1326 	}
       
  1327 
       
  1328 	if (icr & adapter->eiac_mask)
       
  1329 		ew32(ICS, (icr & adapter->eiac_mask));
       
  1330 
       
  1331 	if (icr & E1000_ICR_OTHER) {
       
  1332 		if (!(icr & E1000_ICR_LSC))
       
  1333 			goto no_link_interrupt;
       
  1334 		hw->mac.get_link_status = 1;
       
  1335 		/* guard against interrupt when we're going down */
       
  1336 		if (!adapter->ecdev && !test_bit(__E1000_DOWN, &adapter->state))
       
  1337 			mod_timer(&adapter->watchdog_timer, jiffies + 1);
       
  1338 	}
       
  1339 
       
  1340 no_link_interrupt:
       
  1341 	if (!test_bit(__E1000_DOWN, &adapter->state))
       
  1342 		ew32(IMS, E1000_IMS_LSC | E1000_IMS_OTHER);
       
  1343 
       
  1344 	return IRQ_HANDLED;
       
  1345 }
       
  1346 
       
  1347 
       
  1348 static irqreturn_t e1000_intr_msix_tx(int irq, void *data)
       
  1349 {
       
  1350 	struct net_device *netdev = data;
       
  1351 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  1352 	struct e1000_hw *hw = &adapter->hw;
       
  1353 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  1354 
       
  1355 
       
  1356 	adapter->total_tx_bytes = 0;
       
  1357 	adapter->total_tx_packets = 0;
       
  1358 
       
  1359 	if (!e1000_clean_tx_irq(adapter))
       
  1360 		/* Ring was not completely cleaned, so fire another interrupt */
       
  1361 		ew32(ICS, tx_ring->ims_val);
       
  1362 
       
  1363 	return IRQ_HANDLED;
       
  1364 }
       
  1365 
       
  1366 static irqreturn_t e1000_intr_msix_rx(int irq, void *data)
       
  1367 {
       
  1368 	struct net_device *netdev = data;
       
  1369 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  1370 
       
  1371 	/* Write the ITR value calculated at the end of the
       
  1372 	 * previous interrupt.
       
  1373 	 */
       
  1374 	if (adapter->rx_ring->set_itr) {
       
  1375 		writel(1000000000 / (adapter->rx_ring->itr_val * 256),
       
  1376 		       adapter->hw.hw_addr + adapter->rx_ring->itr_register);
       
  1377 		adapter->rx_ring->set_itr = 0;
       
  1378 	}
       
  1379 
       
  1380  	if (adapter->ecdev) {
       
  1381  		int ec_work_done = 0;
       
  1382  		adapter->clean_rx(adapter, &ec_work_done, 100);
       
  1383 	} else {
       
  1384 		if (napi_schedule_prep(&adapter->napi)) {
       
  1385 			adapter->total_rx_bytes = 0;
       
  1386 			adapter->total_rx_packets = 0;
       
  1387 			__napi_schedule(&adapter->napi);
       
  1388 		}
       
  1389 	}
       
  1390 	return IRQ_HANDLED;
       
  1391 }
       
  1392 
       
  1393 /**
       
  1394  * e1000_configure_msix - Configure MSI-X hardware
       
  1395  *
       
  1396  * e1000_configure_msix sets up the hardware to properly
       
  1397  * generate MSI-X interrupts.
       
  1398  **/
       
  1399 static void e1000_configure_msix(struct e1000_adapter *adapter)
       
  1400 {
       
  1401 	struct e1000_hw *hw = &adapter->hw;
       
  1402 	struct e1000_ring *rx_ring = adapter->rx_ring;
       
  1403 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  1404 	int vector = 0;
       
  1405 	u32 ctrl_ext, ivar = 0;
       
  1406 
       
  1407 	adapter->eiac_mask = 0;
       
  1408 
       
  1409 	/* Workaround issue with spurious interrupts on 82574 in MSI-X mode */
       
  1410 	if (hw->mac.type == e1000_82574) {
       
  1411 		u32 rfctl = er32(RFCTL);
       
  1412 		rfctl |= E1000_RFCTL_ACK_DIS;
       
  1413 		ew32(RFCTL, rfctl);
       
  1414 	}
       
  1415 
       
  1416 #define E1000_IVAR_INT_ALLOC_VALID	0x8
       
  1417 	/* Configure Rx vector */
       
  1418 	rx_ring->ims_val = E1000_IMS_RXQ0;
       
  1419 	adapter->eiac_mask |= rx_ring->ims_val;
       
  1420 	if (rx_ring->itr_val)
       
  1421 		writel(1000000000 / (rx_ring->itr_val * 256),
       
  1422 		       hw->hw_addr + rx_ring->itr_register);
       
  1423 	else
       
  1424 		writel(1, hw->hw_addr + rx_ring->itr_register);
       
  1425 	ivar = E1000_IVAR_INT_ALLOC_VALID | vector;
       
  1426 
       
  1427 	/* Configure Tx vector */
       
  1428 	tx_ring->ims_val = E1000_IMS_TXQ0;
       
  1429 	vector++;
       
  1430 	if (tx_ring->itr_val)
       
  1431 		writel(1000000000 / (tx_ring->itr_val * 256),
       
  1432 		       hw->hw_addr + tx_ring->itr_register);
       
  1433 	else
       
  1434 		writel(1, hw->hw_addr + tx_ring->itr_register);
       
  1435 	adapter->eiac_mask |= tx_ring->ims_val;
       
  1436 	ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 8);
       
  1437 
       
  1438 	/* set vector for Other Causes, e.g. link changes */
       
  1439 	vector++;
       
  1440 	ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 16);
       
  1441 	if (rx_ring->itr_val)
       
  1442 		writel(1000000000 / (rx_ring->itr_val * 256),
       
  1443 		       hw->hw_addr + E1000_EITR_82574(vector));
       
  1444 	else
       
  1445 		writel(1, hw->hw_addr + E1000_EITR_82574(vector));
       
  1446 
       
  1447 	/* Cause Tx interrupts on every write back */
       
  1448 	ivar |= (1 << 31);
       
  1449 
       
  1450 	ew32(IVAR, ivar);
       
  1451 
       
  1452 	/* enable MSI-X PBA support */
       
  1453 	ctrl_ext = er32(CTRL_EXT);
       
  1454 	ctrl_ext |= E1000_CTRL_EXT_PBA_CLR;
       
  1455 
       
  1456 	/* Auto-Mask Other interrupts upon ICR read */
       
  1457 #define E1000_EIAC_MASK_82574   0x01F00000
       
  1458 	ew32(IAM, ~E1000_EIAC_MASK_82574 | E1000_IMS_OTHER);
       
  1459 	ctrl_ext |= E1000_CTRL_EXT_EIAME;
       
  1460 	ew32(CTRL_EXT, ctrl_ext);
       
  1461 	e1e_flush();
       
  1462 }
       
  1463 
       
  1464 void e1000e_reset_interrupt_capability(struct e1000_adapter *adapter)
       
  1465 {
       
  1466 	if (adapter->msix_entries) {
       
  1467 		pci_disable_msix(adapter->pdev);
       
  1468 		kfree(adapter->msix_entries);
       
  1469 		adapter->msix_entries = NULL;
       
  1470 	} else if (adapter->flags & FLAG_MSI_ENABLED) {
       
  1471 		pci_disable_msi(adapter->pdev);
       
  1472 		adapter->flags &= ~FLAG_MSI_ENABLED;
       
  1473 	}
       
  1474 
       
  1475 	return;
       
  1476 }
       
  1477 
       
  1478 /**
       
  1479  * e1000e_set_interrupt_capability - set MSI or MSI-X if supported
       
  1480  *
       
  1481  * Attempt to configure interrupts using the best available
       
  1482  * capabilities of the hardware and kernel.
       
  1483  **/
       
  1484 void e1000e_set_interrupt_capability(struct e1000_adapter *adapter)
       
  1485 {
       
  1486 	int err;
       
  1487 	int numvecs, i;
       
  1488 
       
  1489 
       
  1490 	switch (adapter->int_mode) {
       
  1491 	case E1000E_INT_MODE_MSIX:
       
  1492 		if (adapter->flags & FLAG_HAS_MSIX) {
       
  1493 			numvecs = 3; /* RxQ0, TxQ0 and other */
       
  1494 			adapter->msix_entries = kcalloc(numvecs,
       
  1495 						      sizeof(struct msix_entry),
       
  1496 						      GFP_KERNEL);
       
  1497 			if (adapter->msix_entries) {
       
  1498 				for (i = 0; i < numvecs; i++)
       
  1499 					adapter->msix_entries[i].entry = i;
       
  1500 
       
  1501 				err = pci_enable_msix(adapter->pdev,
       
  1502 						      adapter->msix_entries,
       
  1503 						      numvecs);
       
  1504 				if (err == 0)
       
  1505 					return;
       
  1506 			}
       
  1507 			/* MSI-X failed, so fall through and try MSI */
       
  1508 			e_err("Failed to initialize MSI-X interrupts.  "
       
  1509 			      "Falling back to MSI interrupts.\n");
       
  1510 			e1000e_reset_interrupt_capability(adapter);
       
  1511 		}
       
  1512 		adapter->int_mode = E1000E_INT_MODE_MSI;
       
  1513 		/* Fall through */
       
  1514 	case E1000E_INT_MODE_MSI:
       
  1515 		if (!pci_enable_msi(adapter->pdev)) {
       
  1516 			adapter->flags |= FLAG_MSI_ENABLED;
       
  1517 		} else {
       
  1518 			adapter->int_mode = E1000E_INT_MODE_LEGACY;
       
  1519 			e_err("Failed to initialize MSI interrupts.  Falling "
       
  1520 			      "back to legacy interrupts.\n");
       
  1521 		}
       
  1522 		/* Fall through */
       
  1523 	case E1000E_INT_MODE_LEGACY:
       
  1524 		/* Don't do anything; this is the system default */
       
  1525 		break;
       
  1526 	}
       
  1527 
       
  1528 	return;
       
  1529 }
       
  1530 
       
  1531 /**
       
  1532  * e1000_request_msix - Initialize MSI-X interrupts
       
  1533  *
       
  1534  * e1000_request_msix allocates MSI-X vectors and requests interrupts from the
       
  1535  * kernel.
       
  1536  **/
       
  1537 static int e1000_request_msix(struct e1000_adapter *adapter)
       
  1538 {
       
  1539 	struct net_device *netdev = adapter->netdev;
       
  1540 	int err = 0, vector = 0;
       
  1541 
       
  1542 	if (strlen(netdev->name) < (IFNAMSIZ - 5))
       
  1543 		sprintf(adapter->rx_ring->name, "%s-rx-0", netdev->name);
       
  1544 	else
       
  1545 		memcpy(adapter->rx_ring->name, netdev->name, IFNAMSIZ);
       
  1546 	err = request_irq(adapter->msix_entries[vector].vector,
       
  1547 			  &e1000_intr_msix_rx, 0, adapter->rx_ring->name,
       
  1548 			  netdev);
       
  1549 	if (err)
       
  1550 		goto out;
       
  1551 	adapter->rx_ring->itr_register = E1000_EITR_82574(vector);
       
  1552 	adapter->rx_ring->itr_val = adapter->itr;
       
  1553 	vector++;
       
  1554 
       
  1555 	if (strlen(netdev->name) < (IFNAMSIZ - 5))
       
  1556 		sprintf(adapter->tx_ring->name, "%s-tx-0", netdev->name);
       
  1557 	else
       
  1558 		memcpy(adapter->tx_ring->name, netdev->name, IFNAMSIZ);
       
  1559 	err = request_irq(adapter->msix_entries[vector].vector,
       
  1560 			  &e1000_intr_msix_tx, 0, adapter->tx_ring->name,
       
  1561 			  netdev);
       
  1562 	if (err)
       
  1563 		goto out;
       
  1564 	adapter->tx_ring->itr_register = E1000_EITR_82574(vector);
       
  1565 	adapter->tx_ring->itr_val = adapter->itr;
       
  1566 	vector++;
       
  1567 
       
  1568 	err = request_irq(adapter->msix_entries[vector].vector,
       
  1569 			  &e1000_msix_other, 0, netdev->name, netdev);
       
  1570 	if (err)
       
  1571 		goto out;
       
  1572 
       
  1573 	e1000_configure_msix(adapter);
       
  1574 	return 0;
       
  1575 out:
       
  1576 	return err;
       
  1577 }
       
  1578 
       
  1579 /**
       
  1580  * e1000_request_irq - initialize interrupts
       
  1581  *
       
  1582  * Attempts to configure interrupts using the best available
       
  1583  * capabilities of the hardware and kernel.
       
  1584  **/
       
  1585 static int e1000_request_irq(struct e1000_adapter *adapter)
       
  1586 {
       
  1587 	struct net_device *netdev = adapter->netdev;
       
  1588 	int err;
       
  1589 
       
  1590 	if (adapter->ecdev)
       
  1591 		return 0;
       
  1592 
       
  1593 	if (adapter->msix_entries) {
       
  1594 		err = e1000_request_msix(adapter);
       
  1595 		if (!err)
       
  1596 			return err;
       
  1597 		/* fall back to MSI */
       
  1598 		e1000e_reset_interrupt_capability(adapter);
       
  1599 		adapter->int_mode = E1000E_INT_MODE_MSI;
       
  1600 		e1000e_set_interrupt_capability(adapter);
       
  1601 	}
       
  1602 	if (adapter->flags & FLAG_MSI_ENABLED) {
       
  1603 		err = request_irq(adapter->pdev->irq, &e1000_intr_msi, 0,
       
  1604 				  netdev->name, netdev);
       
  1605 		if (!err)
       
  1606 			return err;
       
  1607 
       
  1608 		/* fall back to legacy interrupt */
       
  1609 		e1000e_reset_interrupt_capability(adapter);
       
  1610 		adapter->int_mode = E1000E_INT_MODE_LEGACY;
       
  1611 	}
       
  1612 
       
  1613 	err = request_irq(adapter->pdev->irq, &e1000_intr, IRQF_SHARED,
       
  1614 			  netdev->name, netdev);
       
  1615 	if (err)
       
  1616 		e_err("Unable to allocate interrupt, Error: %d\n", err);
       
  1617 
       
  1618 	return err;
       
  1619 }
       
  1620 
       
  1621 static void e1000_free_irq(struct e1000_adapter *adapter)
       
  1622 {
       
  1623 	struct net_device *netdev = adapter->netdev;
       
  1624 
       
  1625 	if (adapter->ecdev)
       
  1626 		return;
       
  1627 
       
  1628 	if (adapter->msix_entries) {
       
  1629 		int vector = 0;
       
  1630 
       
  1631 		free_irq(adapter->msix_entries[vector].vector, netdev);
       
  1632 		vector++;
       
  1633 
       
  1634 		free_irq(adapter->msix_entries[vector].vector, netdev);
       
  1635 		vector++;
       
  1636 
       
  1637 		/* Other Causes interrupt vector */
       
  1638 		free_irq(adapter->msix_entries[vector].vector, netdev);
       
  1639 		return;
       
  1640 	}
       
  1641 
       
  1642 	free_irq(adapter->pdev->irq, netdev);
       
  1643 }
       
  1644 
       
  1645 /**
       
  1646  * e1000_irq_disable - Mask off interrupt generation on the NIC
       
  1647  **/
       
  1648 static void e1000_irq_disable(struct e1000_adapter *adapter)
       
  1649 {
       
  1650 	struct e1000_hw *hw = &adapter->hw;
       
  1651 
       
  1652 	if (adapter->ecdev)
       
  1653 		return;
       
  1654 
       
  1655 	ew32(IMC, ~0);
       
  1656 	if (adapter->msix_entries)
       
  1657 		ew32(EIAC_82574, 0);
       
  1658 	e1e_flush();
       
  1659 	synchronize_irq(adapter->pdev->irq);
       
  1660 }
       
  1661 
       
  1662 /**
       
  1663  * e1000_irq_enable - Enable default interrupt generation settings
       
  1664  **/
       
  1665 static void e1000_irq_enable(struct e1000_adapter *adapter)
       
  1666 {
       
  1667 	struct e1000_hw *hw = &adapter->hw;
       
  1668 
       
  1669 	if (adapter->ecdev)
       
  1670 		return;
       
  1671 
       
  1672 	if (adapter->msix_entries) {
       
  1673 		ew32(EIAC_82574, adapter->eiac_mask & E1000_EIAC_MASK_82574);
       
  1674 		ew32(IMS, adapter->eiac_mask | E1000_IMS_OTHER | E1000_IMS_LSC);
       
  1675 	} else {
       
  1676 		ew32(IMS, IMS_ENABLE_MASK);
       
  1677 	}
       
  1678 	e1e_flush();
       
  1679 }
       
  1680 
       
  1681 /**
       
  1682  * e1000_get_hw_control - get control of the h/w from f/w
       
  1683  * @adapter: address of board private structure
       
  1684  *
       
  1685  * e1000_get_hw_control sets {CTRL_EXT|SWSM}:DRV_LOAD bit.
       
  1686  * For ASF and Pass Through versions of f/w this means that
       
  1687  * the driver is loaded. For AMT version (only with 82573)
       
  1688  * of the f/w this means that the network i/f is open.
       
  1689  **/
       
  1690 static void e1000_get_hw_control(struct e1000_adapter *adapter)
       
  1691 {
       
  1692 	struct e1000_hw *hw = &adapter->hw;
       
  1693 	u32 ctrl_ext;
       
  1694 	u32 swsm;
       
  1695 
       
  1696 	/* Let firmware know the driver has taken over */
       
  1697 	if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
       
  1698 		swsm = er32(SWSM);
       
  1699 		ew32(SWSM, swsm | E1000_SWSM_DRV_LOAD);
       
  1700 	} else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
       
  1701 		ctrl_ext = er32(CTRL_EXT);
       
  1702 		ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
       
  1703 	}
       
  1704 }
       
  1705 
       
  1706 /**
       
  1707  * e1000_release_hw_control - release control of the h/w to f/w
       
  1708  * @adapter: address of board private structure
       
  1709  *
       
  1710  * e1000_release_hw_control resets {CTRL_EXT|SWSM}:DRV_LOAD bit.
       
  1711  * For ASF and Pass Through versions of f/w this means that the
       
  1712  * driver is no longer loaded. For AMT version (only with 82573) i
       
  1713  * of the f/w this means that the network i/f is closed.
       
  1714  *
       
  1715  **/
       
  1716 static void e1000_release_hw_control(struct e1000_adapter *adapter)
       
  1717 {
       
  1718 	struct e1000_hw *hw = &adapter->hw;
       
  1719 	u32 ctrl_ext;
       
  1720 	u32 swsm;
       
  1721 
       
  1722 	/* Let firmware taken over control of h/w */
       
  1723 	if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
       
  1724 		swsm = er32(SWSM);
       
  1725 		ew32(SWSM, swsm & ~E1000_SWSM_DRV_LOAD);
       
  1726 	} else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
       
  1727 		ctrl_ext = er32(CTRL_EXT);
       
  1728 		ew32(CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
       
  1729 	}
       
  1730 }
       
  1731 
       
  1732 /**
       
  1733  * @e1000_alloc_ring - allocate memory for a ring structure
       
  1734  **/
       
  1735 static int e1000_alloc_ring_dma(struct e1000_adapter *adapter,
       
  1736 				struct e1000_ring *ring)
       
  1737 {
       
  1738 	struct pci_dev *pdev = adapter->pdev;
       
  1739 
       
  1740 	ring->desc = dma_alloc_coherent(&pdev->dev, ring->size, &ring->dma,
       
  1741 					GFP_KERNEL);
       
  1742 	if (!ring->desc)
       
  1743 		return -ENOMEM;
       
  1744 
       
  1745 	return 0;
       
  1746 }
       
  1747 
       
  1748 /**
       
  1749  * e1000e_setup_tx_resources - allocate Tx resources (Descriptors)
       
  1750  * @adapter: board private structure
       
  1751  *
       
  1752  * Return 0 on success, negative on failure
       
  1753  **/
       
  1754 int e1000e_setup_tx_resources(struct e1000_adapter *adapter)
       
  1755 {
       
  1756 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  1757 	int err = -ENOMEM, size;
       
  1758 
       
  1759 	size = sizeof(struct e1000_buffer) * tx_ring->count;
       
  1760 	tx_ring->buffer_info = vmalloc(size);
       
  1761 	if (!tx_ring->buffer_info)
       
  1762 		goto err;
       
  1763 	memset(tx_ring->buffer_info, 0, size);
       
  1764 
       
  1765 	/* round up to nearest 4K */
       
  1766 	tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc);
       
  1767 	tx_ring->size = ALIGN(tx_ring->size, 4096);
       
  1768 
       
  1769 	err = e1000_alloc_ring_dma(adapter, tx_ring);
       
  1770 	if (err)
       
  1771 		goto err;
       
  1772 
       
  1773 	tx_ring->next_to_use = 0;
       
  1774 	tx_ring->next_to_clean = 0;
       
  1775 
       
  1776 	return 0;
       
  1777 err:
       
  1778 	vfree(tx_ring->buffer_info);
       
  1779 	e_err("Unable to allocate memory for the transmit descriptor ring\n");
       
  1780 	return err;
       
  1781 }
       
  1782 
       
  1783 /**
       
  1784  * e1000e_setup_rx_resources - allocate Rx resources (Descriptors)
       
  1785  * @adapter: board private structure
       
  1786  *
       
  1787  * Returns 0 on success, negative on failure
       
  1788  **/
       
  1789 int e1000e_setup_rx_resources(struct e1000_adapter *adapter)
       
  1790 {
       
  1791 	struct e1000_ring *rx_ring = adapter->rx_ring;
       
  1792 	struct e1000_buffer *buffer_info;
       
  1793 	int i, size, desc_len, err = -ENOMEM;
       
  1794 
       
  1795 	size = sizeof(struct e1000_buffer) * rx_ring->count;
       
  1796 	rx_ring->buffer_info = vmalloc(size);
       
  1797 	if (!rx_ring->buffer_info)
       
  1798 		goto err;
       
  1799 	memset(rx_ring->buffer_info, 0, size);
       
  1800 
       
  1801 	for (i = 0; i < rx_ring->count; i++) {
       
  1802 		buffer_info = &rx_ring->buffer_info[i];
       
  1803 		buffer_info->ps_pages = kcalloc(PS_PAGE_BUFFERS,
       
  1804 						sizeof(struct e1000_ps_page),
       
  1805 						GFP_KERNEL);
       
  1806 		if (!buffer_info->ps_pages)
       
  1807 			goto err_pages;
       
  1808 	}
       
  1809 
       
  1810 	desc_len = sizeof(union e1000_rx_desc_packet_split);
       
  1811 
       
  1812 	/* Round up to nearest 4K */
       
  1813 	rx_ring->size = rx_ring->count * desc_len;
       
  1814 	rx_ring->size = ALIGN(rx_ring->size, 4096);
       
  1815 
       
  1816 	err = e1000_alloc_ring_dma(adapter, rx_ring);
       
  1817 	if (err)
       
  1818 		goto err_pages;
       
  1819 
       
  1820 	rx_ring->next_to_clean = 0;
       
  1821 	rx_ring->next_to_use = 0;
       
  1822 	rx_ring->rx_skb_top = NULL;
       
  1823 
       
  1824 	return 0;
       
  1825 
       
  1826 err_pages:
       
  1827 	for (i = 0; i < rx_ring->count; i++) {
       
  1828 		buffer_info = &rx_ring->buffer_info[i];
       
  1829 		kfree(buffer_info->ps_pages);
       
  1830 	}
       
  1831 err:
       
  1832 	vfree(rx_ring->buffer_info);
       
  1833 	e_err("Unable to allocate memory for the transmit descriptor ring\n");
       
  1834 	return err;
       
  1835 }
       
  1836 
       
  1837 /**
       
  1838  * e1000_clean_tx_ring - Free Tx Buffers
       
  1839  * @adapter: board private structure
       
  1840  **/
       
  1841 static void e1000_clean_tx_ring(struct e1000_adapter *adapter)
       
  1842 {
       
  1843 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  1844 	struct e1000_buffer *buffer_info;
       
  1845 	unsigned long size;
       
  1846 	unsigned int i;
       
  1847 
       
  1848 	for (i = 0; i < tx_ring->count; i++) {
       
  1849 		buffer_info = &tx_ring->buffer_info[i];
       
  1850 		e1000_put_txbuf(adapter, buffer_info);
       
  1851 	}
       
  1852 
       
  1853 	size = sizeof(struct e1000_buffer) * tx_ring->count;
       
  1854 	memset(tx_ring->buffer_info, 0, size);
       
  1855 
       
  1856 	memset(tx_ring->desc, 0, tx_ring->size);
       
  1857 
       
  1858 	tx_ring->next_to_use = 0;
       
  1859 	tx_ring->next_to_clean = 0;
       
  1860 
       
  1861 	writel(0, adapter->hw.hw_addr + tx_ring->head);
       
  1862 	writel(0, adapter->hw.hw_addr + tx_ring->tail);
       
  1863 }
       
  1864 
       
  1865 /**
       
  1866  * e1000e_free_tx_resources - Free Tx Resources per Queue
       
  1867  * @adapter: board private structure
       
  1868  *
       
  1869  * Free all transmit software resources
       
  1870  **/
       
  1871 void e1000e_free_tx_resources(struct e1000_adapter *adapter)
       
  1872 {
       
  1873 	struct pci_dev *pdev = adapter->pdev;
       
  1874 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  1875 
       
  1876 	e1000_clean_tx_ring(adapter);
       
  1877 
       
  1878 	vfree(tx_ring->buffer_info);
       
  1879 	tx_ring->buffer_info = NULL;
       
  1880 
       
  1881 	dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
       
  1882 			  tx_ring->dma);
       
  1883 	tx_ring->desc = NULL;
       
  1884 }
       
  1885 
       
  1886 /**
       
  1887  * e1000e_free_rx_resources - Free Rx Resources
       
  1888  * @adapter: board private structure
       
  1889  *
       
  1890  * Free all receive software resources
       
  1891  **/
       
  1892 
       
  1893 void e1000e_free_rx_resources(struct e1000_adapter *adapter)
       
  1894 {
       
  1895 	struct pci_dev *pdev = adapter->pdev;
       
  1896 	struct e1000_ring *rx_ring = adapter->rx_ring;
       
  1897 	int i;
       
  1898 
       
  1899 	e1000_clean_rx_ring(adapter);
       
  1900 
       
  1901 	for (i = 0; i < rx_ring->count; i++) {
       
  1902 		kfree(rx_ring->buffer_info[i].ps_pages);
       
  1903 	}
       
  1904 
       
  1905 	vfree(rx_ring->buffer_info);
       
  1906 	rx_ring->buffer_info = NULL;
       
  1907 
       
  1908 	dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
       
  1909 			  rx_ring->dma);
       
  1910 	rx_ring->desc = NULL;
       
  1911 }
       
  1912 
       
  1913 /**
       
  1914  * e1000_update_itr - update the dynamic ITR value based on statistics
       
  1915  * @adapter: pointer to adapter
       
  1916  * @itr_setting: current adapter->itr
       
  1917  * @packets: the number of packets during this measurement interval
       
  1918  * @bytes: the number of bytes during this measurement interval
       
  1919  *
       
  1920  *      Stores a new ITR value based on packets and byte
       
  1921  *      counts during the last interrupt.  The advantage of per interrupt
       
  1922  *      computation is faster updates and more accurate ITR for the current
       
  1923  *      traffic pattern.  Constants in this function were computed
       
  1924  *      based on theoretical maximum wire speed and thresholds were set based
       
  1925  *      on testing data as well as attempting to minimize response time
       
  1926  *      while increasing bulk throughput.  This functionality is controlled
       
  1927  *      by the InterruptThrottleRate module parameter.
       
  1928  **/
       
  1929 static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
       
  1930 				     u16 itr_setting, int packets,
       
  1931 				     int bytes)
       
  1932 {
       
  1933 	unsigned int retval = itr_setting;
       
  1934 
       
  1935 	if (packets == 0)
       
  1936 		goto update_itr_done;
       
  1937 
       
  1938 	switch (itr_setting) {
       
  1939 	case lowest_latency:
       
  1940 		/* handle TSO and jumbo frames */
       
  1941 		if (bytes/packets > 8000)
       
  1942 			retval = bulk_latency;
       
  1943 		else if ((packets < 5) && (bytes > 512)) {
       
  1944 			retval = low_latency;
       
  1945 		}
       
  1946 		break;
       
  1947 	case low_latency:  /* 50 usec aka 20000 ints/s */
       
  1948 		if (bytes > 10000) {
       
  1949 			/* this if handles the TSO accounting */
       
  1950 			if (bytes/packets > 8000) {
       
  1951 				retval = bulk_latency;
       
  1952 			} else if ((packets < 10) || ((bytes/packets) > 1200)) {
       
  1953 				retval = bulk_latency;
       
  1954 			} else if ((packets > 35)) {
       
  1955 				retval = lowest_latency;
       
  1956 			}
       
  1957 		} else if (bytes/packets > 2000) {
       
  1958 			retval = bulk_latency;
       
  1959 		} else if (packets <= 2 && bytes < 512) {
       
  1960 			retval = lowest_latency;
       
  1961 		}
       
  1962 		break;
       
  1963 	case bulk_latency: /* 250 usec aka 4000 ints/s */
       
  1964 		if (bytes > 25000) {
       
  1965 			if (packets > 35) {
       
  1966 				retval = low_latency;
       
  1967 			}
       
  1968 		} else if (bytes < 6000) {
       
  1969 			retval = low_latency;
       
  1970 		}
       
  1971 		break;
       
  1972 	}
       
  1973 
       
  1974 update_itr_done:
       
  1975 	return retval;
       
  1976 }
       
  1977 
       
  1978 static void e1000_set_itr(struct e1000_adapter *adapter)
       
  1979 {
       
  1980 	struct e1000_hw *hw = &adapter->hw;
       
  1981 	u16 current_itr;
       
  1982 	u32 new_itr = adapter->itr;
       
  1983 
       
  1984 	/* for non-gigabit speeds, just fix the interrupt rate at 4000 */
       
  1985 	if (adapter->link_speed != SPEED_1000) {
       
  1986 		current_itr = 0;
       
  1987 		new_itr = 4000;
       
  1988 		goto set_itr_now;
       
  1989 	}
       
  1990 
       
  1991 	adapter->tx_itr = e1000_update_itr(adapter,
       
  1992 				    adapter->tx_itr,
       
  1993 				    adapter->total_tx_packets,
       
  1994 				    adapter->total_tx_bytes);
       
  1995 	/* conservative mode (itr 3) eliminates the lowest_latency setting */
       
  1996 	if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
       
  1997 		adapter->tx_itr = low_latency;
       
  1998 
       
  1999 	adapter->rx_itr = e1000_update_itr(adapter,
       
  2000 				    adapter->rx_itr,
       
  2001 				    adapter->total_rx_packets,
       
  2002 				    adapter->total_rx_bytes);
       
  2003 	/* conservative mode (itr 3) eliminates the lowest_latency setting */
       
  2004 	if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
       
  2005 		adapter->rx_itr = low_latency;
       
  2006 
       
  2007 	current_itr = max(adapter->rx_itr, adapter->tx_itr);
       
  2008 
       
  2009 	switch (current_itr) {
       
  2010 	/* counts and packets in update_itr are dependent on these numbers */
       
  2011 	case lowest_latency:
       
  2012 		new_itr = 70000;
       
  2013 		break;
       
  2014 	case low_latency:
       
  2015 		new_itr = 20000; /* aka hwitr = ~200 */
       
  2016 		break;
       
  2017 	case bulk_latency:
       
  2018 		new_itr = 4000;
       
  2019 		break;
       
  2020 	default:
       
  2021 		break;
       
  2022 	}
       
  2023 
       
  2024 set_itr_now:
       
  2025 	if (new_itr != adapter->itr) {
       
  2026 		/*
       
  2027 		 * this attempts to bias the interrupt rate towards Bulk
       
  2028 		 * by adding intermediate steps when interrupt rate is
       
  2029 		 * increasing
       
  2030 		 */
       
  2031 		new_itr = new_itr > adapter->itr ?
       
  2032 			     min(adapter->itr + (new_itr >> 2), new_itr) :
       
  2033 			     new_itr;
       
  2034 		adapter->itr = new_itr;
       
  2035 		adapter->rx_ring->itr_val = new_itr;
       
  2036 		if (adapter->msix_entries)
       
  2037 			adapter->rx_ring->set_itr = 1;
       
  2038 		else
       
  2039 			ew32(ITR, 1000000000 / (new_itr * 256));
       
  2040 	}
       
  2041 }
       
  2042 
       
  2043 /**
       
  2044  * e1000_alloc_queues - Allocate memory for all rings
       
  2045  * @adapter: board private structure to initialize
       
  2046  **/
       
  2047 static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
       
  2048 {
       
  2049 	adapter->tx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
       
  2050 	if (!adapter->tx_ring)
       
  2051 		goto err;
       
  2052 
       
  2053 	adapter->rx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
       
  2054 	if (!adapter->rx_ring)
       
  2055 		goto err;
       
  2056 
       
  2057 	return 0;
       
  2058 err:
       
  2059 	e_err("Unable to allocate memory for queues\n");
       
  2060 	kfree(adapter->rx_ring);
       
  2061 	kfree(adapter->tx_ring);
       
  2062 	return -ENOMEM;
       
  2063 }
       
  2064 
       
  2065 /**
       
  2066  * e1000_clean - NAPI Rx polling callback
       
  2067  * @napi: struct associated with this polling callback
       
  2068  * @budget: amount of packets driver is allowed to process this poll
       
  2069  **/
       
  2070 static int e1000_clean(struct napi_struct *napi, int budget)
       
  2071 {
       
  2072 	struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
       
  2073 	struct e1000_hw *hw = &adapter->hw;
       
  2074 	struct net_device *poll_dev = adapter->netdev;
       
  2075 	int tx_cleaned = 1, work_done = 0;
       
  2076 
       
  2077 	adapter = netdev_priv(poll_dev);
       
  2078 
       
  2079 	if (adapter->msix_entries &&
       
  2080 	    !(adapter->rx_ring->ims_val & adapter->tx_ring->ims_val))
       
  2081 		goto clean_rx;
       
  2082 
       
  2083 	tx_cleaned = e1000_clean_tx_irq(adapter);
       
  2084 
       
  2085 clean_rx:
       
  2086 	adapter->clean_rx(adapter, &work_done, budget);
       
  2087 
       
  2088 	if (!tx_cleaned)
       
  2089 		work_done = budget;
       
  2090 
       
  2091 	/* If budget not fully consumed, exit the polling mode */
       
  2092 	if (work_done < budget) {
       
  2093 		if (adapter->itr_setting & 3)
       
  2094 			e1000_set_itr(adapter);
       
  2095 		napi_complete(napi);
       
  2096 		if (!test_bit(__E1000_DOWN, &adapter->state)) {
       
  2097 			if (adapter->msix_entries)
       
  2098 				ew32(IMS, adapter->rx_ring->ims_val);
       
  2099 			else
       
  2100 				e1000_irq_enable(adapter);
       
  2101 		}
       
  2102 	}
       
  2103 
       
  2104 	return work_done;
       
  2105 }
       
  2106 
       
  2107 static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
       
  2108 {
       
  2109 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  2110 	struct e1000_hw *hw = &adapter->hw;
       
  2111 	u32 vfta, index;
       
  2112 
       
  2113 	/* don't update vlan cookie if already programmed */
       
  2114 	if ((adapter->hw.mng_cookie.status &
       
  2115 	     E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
       
  2116 	    (vid == adapter->mng_vlan_id))
       
  2117 		return;
       
  2118 	/* add VID to filter table */
       
  2119 	index = (vid >> 5) & 0x7F;
       
  2120 	vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
       
  2121 	vfta |= (1 << (vid & 0x1F));
       
  2122 	e1000e_write_vfta(hw, index, vfta);
       
  2123 }
       
  2124 
       
  2125 static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
       
  2126 {
       
  2127 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  2128 	struct e1000_hw *hw = &adapter->hw;
       
  2129 	u32 vfta, index;
       
  2130 
       
  2131 	if (!test_bit(__E1000_DOWN, &adapter->state))
       
  2132 		e1000_irq_disable(adapter);
       
  2133 	vlan_group_set_device(adapter->vlgrp, vid, NULL);
       
  2134 
       
  2135 	if (!test_bit(__E1000_DOWN, &adapter->state))
       
  2136 		e1000_irq_enable(adapter);
       
  2137 
       
  2138 	if ((adapter->hw.mng_cookie.status &
       
  2139 	     E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
       
  2140 	    (vid == adapter->mng_vlan_id)) {
       
  2141 		/* release control to f/w */
       
  2142 		e1000_release_hw_control(adapter);
       
  2143 		return;
       
  2144 	}
       
  2145 
       
  2146 	/* remove VID from filter table */
       
  2147 	index = (vid >> 5) & 0x7F;
       
  2148 	vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
       
  2149 	vfta &= ~(1 << (vid & 0x1F));
       
  2150 	e1000e_write_vfta(hw, index, vfta);
       
  2151 }
       
  2152 
       
  2153 static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
       
  2154 {
       
  2155 	struct net_device *netdev = adapter->netdev;
       
  2156 	u16 vid = adapter->hw.mng_cookie.vlan_id;
       
  2157 	u16 old_vid = adapter->mng_vlan_id;
       
  2158 
       
  2159 	if (!adapter->vlgrp)
       
  2160 		return;
       
  2161 
       
  2162 	if (!vlan_group_get_device(adapter->vlgrp, vid)) {
       
  2163 		adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
       
  2164 		if (adapter->hw.mng_cookie.status &
       
  2165 			E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
       
  2166 			e1000_vlan_rx_add_vid(netdev, vid);
       
  2167 			adapter->mng_vlan_id = vid;
       
  2168 		}
       
  2169 
       
  2170 		if ((old_vid != (u16)E1000_MNG_VLAN_NONE) &&
       
  2171 				(vid != old_vid) &&
       
  2172 		    !vlan_group_get_device(adapter->vlgrp, old_vid))
       
  2173 			e1000_vlan_rx_kill_vid(netdev, old_vid);
       
  2174 	} else {
       
  2175 		adapter->mng_vlan_id = vid;
       
  2176 	}
       
  2177 }
       
  2178 
       
  2179 
       
  2180 static void e1000_vlan_rx_register(struct net_device *netdev,
       
  2181 				   struct vlan_group *grp)
       
  2182 {
       
  2183 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  2184 	struct e1000_hw *hw = &adapter->hw;
       
  2185 	u32 ctrl, rctl;
       
  2186 
       
  2187 	if (!test_bit(__E1000_DOWN, &adapter->state))
       
  2188 		e1000_irq_disable(adapter);
       
  2189 	adapter->vlgrp = grp;
       
  2190 
       
  2191 	if (grp) {
       
  2192 		/* enable VLAN tag insert/strip */
       
  2193 		ctrl = er32(CTRL);
       
  2194 		ctrl |= E1000_CTRL_VME;
       
  2195 		ew32(CTRL, ctrl);
       
  2196 
       
  2197 		if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
       
  2198 			/* enable VLAN receive filtering */
       
  2199 			rctl = er32(RCTL);
       
  2200 			rctl &= ~E1000_RCTL_CFIEN;
       
  2201 			ew32(RCTL, rctl);
       
  2202 			e1000_update_mng_vlan(adapter);
       
  2203 		}
       
  2204 	} else {
       
  2205 		/* disable VLAN tag insert/strip */
       
  2206 		ctrl = er32(CTRL);
       
  2207 		ctrl &= ~E1000_CTRL_VME;
       
  2208 		ew32(CTRL, ctrl);
       
  2209 
       
  2210 		if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
       
  2211 			if (adapter->mng_vlan_id !=
       
  2212 			    (u16)E1000_MNG_VLAN_NONE) {
       
  2213 				e1000_vlan_rx_kill_vid(netdev,
       
  2214 						       adapter->mng_vlan_id);
       
  2215 				adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
       
  2216 			}
       
  2217 		}
       
  2218 	}
       
  2219 
       
  2220 	if (!test_bit(__E1000_DOWN, &adapter->state))
       
  2221 		e1000_irq_enable(adapter);
       
  2222 }
       
  2223 
       
  2224 static void e1000_restore_vlan(struct e1000_adapter *adapter)
       
  2225 {
       
  2226 	u16 vid;
       
  2227 
       
  2228 	e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
       
  2229 
       
  2230 	if (!adapter->vlgrp)
       
  2231 		return;
       
  2232 
       
  2233 	for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
       
  2234 		if (!vlan_group_get_device(adapter->vlgrp, vid))
       
  2235 			continue;
       
  2236 		e1000_vlan_rx_add_vid(adapter->netdev, vid);
       
  2237 	}
       
  2238 }
       
  2239 
       
  2240 static void e1000_init_manageability(struct e1000_adapter *adapter)
       
  2241 {
       
  2242 	struct e1000_hw *hw = &adapter->hw;
       
  2243 	u32 manc, manc2h;
       
  2244 
       
  2245 	if (!(adapter->flags & FLAG_MNG_PT_ENABLED))
       
  2246 		return;
       
  2247 
       
  2248 	manc = er32(MANC);
       
  2249 
       
  2250 	/*
       
  2251 	 * enable receiving management packets to the host. this will probably
       
  2252 	 * generate destination unreachable messages from the host OS, but
       
  2253 	 * the packets will be handled on SMBUS
       
  2254 	 */
       
  2255 	manc |= E1000_MANC_EN_MNG2HOST;
       
  2256 	manc2h = er32(MANC2H);
       
  2257 #define E1000_MNG2HOST_PORT_623 (1 << 5)
       
  2258 #define E1000_MNG2HOST_PORT_664 (1 << 6)
       
  2259 	manc2h |= E1000_MNG2HOST_PORT_623;
       
  2260 	manc2h |= E1000_MNG2HOST_PORT_664;
       
  2261 	ew32(MANC2H, manc2h);
       
  2262 	ew32(MANC, manc);
       
  2263 }
       
  2264 
       
  2265 /**
       
  2266  * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
       
  2267  * @adapter: board private structure
       
  2268  *
       
  2269  * Configure the Tx unit of the MAC after a reset.
       
  2270  **/
       
  2271 static void e1000_configure_tx(struct e1000_adapter *adapter)
       
  2272 {
       
  2273 	struct e1000_hw *hw = &adapter->hw;
       
  2274 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  2275 	u64 tdba;
       
  2276 	u32 tdlen, tctl, tipg, tarc;
       
  2277 	u32 ipgr1, ipgr2;
       
  2278 
       
  2279 	/* Setup the HW Tx Head and Tail descriptor pointers */
       
  2280 	tdba = tx_ring->dma;
       
  2281 	tdlen = tx_ring->count * sizeof(struct e1000_tx_desc);
       
  2282 	ew32(TDBAL, (tdba & DMA_BIT_MASK(32)));
       
  2283 	ew32(TDBAH, (tdba >> 32));
       
  2284 	ew32(TDLEN, tdlen);
       
  2285 	ew32(TDH, 0);
       
  2286 	ew32(TDT, 0);
       
  2287 	tx_ring->head = E1000_TDH;
       
  2288 	tx_ring->tail = E1000_TDT;
       
  2289 
       
  2290 	/* Set the default values for the Tx Inter Packet Gap timer */
       
  2291 	tipg = DEFAULT_82543_TIPG_IPGT_COPPER;          /*  8  */
       
  2292 	ipgr1 = DEFAULT_82543_TIPG_IPGR1;               /*  8  */
       
  2293 	ipgr2 = DEFAULT_82543_TIPG_IPGR2;               /*  6  */
       
  2294 
       
  2295 	if (adapter->flags & FLAG_TIPG_MEDIUM_FOR_80003ESLAN)
       
  2296 		ipgr2 = DEFAULT_80003ES2LAN_TIPG_IPGR2; /*  7  */
       
  2297 
       
  2298 	tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
       
  2299 	tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
       
  2300 	ew32(TIPG, tipg);
       
  2301 
       
  2302 	/* Set the Tx Interrupt Delay register */
       
  2303 	ew32(TIDV, adapter->tx_int_delay);
       
  2304 	/* Tx irq moderation */
       
  2305 	ew32(TADV, adapter->tx_abs_int_delay);
       
  2306 
       
  2307 	/* Program the Transmit Control Register */
       
  2308 	tctl = er32(TCTL);
       
  2309 	tctl &= ~E1000_TCTL_CT;
       
  2310 	tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
       
  2311 		(E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
       
  2312 
       
  2313 	if (adapter->flags & FLAG_TARC_SPEED_MODE_BIT) {
       
  2314 		tarc = er32(TARC(0));
       
  2315 		/*
       
  2316 		 * set the speed mode bit, we'll clear it if we're not at
       
  2317 		 * gigabit link later
       
  2318 		 */
       
  2319 #define SPEED_MODE_BIT (1 << 21)
       
  2320 		tarc |= SPEED_MODE_BIT;
       
  2321 		ew32(TARC(0), tarc);
       
  2322 	}
       
  2323 
       
  2324 	/* errata: program both queues to unweighted RR */
       
  2325 	if (adapter->flags & FLAG_TARC_SET_BIT_ZERO) {
       
  2326 		tarc = er32(TARC(0));
       
  2327 		tarc |= 1;
       
  2328 		ew32(TARC(0), tarc);
       
  2329 		tarc = er32(TARC(1));
       
  2330 		tarc |= 1;
       
  2331 		ew32(TARC(1), tarc);
       
  2332 	}
       
  2333 
       
  2334 	/* Setup Transmit Descriptor Settings for eop descriptor */
       
  2335 	adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
       
  2336 
       
  2337 	/* only set IDE if we are delaying interrupts using the timers */
       
  2338 	if (adapter->tx_int_delay)
       
  2339 		adapter->txd_cmd |= E1000_TXD_CMD_IDE;
       
  2340 
       
  2341 	/* enable Report Status bit */
       
  2342 	adapter->txd_cmd |= E1000_TXD_CMD_RS;
       
  2343 
       
  2344 	ew32(TCTL, tctl);
       
  2345 
       
  2346 	e1000e_config_collision_dist(hw);
       
  2347 
       
  2348 	adapter->tx_queue_len = adapter->netdev->tx_queue_len;
       
  2349 }
       
  2350 
       
  2351 /**
       
  2352  * e1000_setup_rctl - configure the receive control registers
       
  2353  * @adapter: Board private structure
       
  2354  **/
       
  2355 #define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
       
  2356 			   (((S) & (PAGE_SIZE - 1)) ? 1 : 0))
       
  2357 static void e1000_setup_rctl(struct e1000_adapter *adapter)
       
  2358 {
       
  2359 	struct e1000_hw *hw = &adapter->hw;
       
  2360 	u32 rctl, rfctl;
       
  2361 	u32 psrctl = 0;
       
  2362 	u32 pages = 0;
       
  2363 
       
  2364 	/* Program MC offset vector base */
       
  2365 	rctl = er32(RCTL);
       
  2366 	rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
       
  2367 	rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
       
  2368 		E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
       
  2369 		(adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
       
  2370 
       
  2371 	/* Do not Store bad packets */
       
  2372 	rctl &= ~E1000_RCTL_SBP;
       
  2373 
       
  2374 	/* Enable Long Packet receive */
       
  2375 	if (adapter->netdev->mtu <= ETH_DATA_LEN)
       
  2376 		rctl &= ~E1000_RCTL_LPE;
       
  2377 	else
       
  2378 		rctl |= E1000_RCTL_LPE;
       
  2379 
       
  2380 	/* Some systems expect that the CRC is included in SMBUS traffic. The
       
  2381 	 * hardware strips the CRC before sending to both SMBUS (BMC) and to
       
  2382 	 * host memory when this is enabled
       
  2383 	 */
       
  2384 	if (adapter->flags2 & FLAG2_CRC_STRIPPING)
       
  2385 		rctl |= E1000_RCTL_SECRC;
       
  2386 
       
  2387 	/* Workaround Si errata on 82577 PHY - configure IPG for jumbos */
       
  2388 	if ((hw->phy.type == e1000_phy_82577) && (rctl & E1000_RCTL_LPE)) {
       
  2389 		u16 phy_data;
       
  2390 
       
  2391 		e1e_rphy(hw, PHY_REG(770, 26), &phy_data);
       
  2392 		phy_data &= 0xfff8;
       
  2393 		phy_data |= (1 << 2);
       
  2394 		e1e_wphy(hw, PHY_REG(770, 26), phy_data);
       
  2395 
       
  2396 		e1e_rphy(hw, 22, &phy_data);
       
  2397 		phy_data &= 0x0fff;
       
  2398 		phy_data |= (1 << 14);
       
  2399 		e1e_wphy(hw, 0x10, 0x2823);
       
  2400 		e1e_wphy(hw, 0x11, 0x0003);
       
  2401 		e1e_wphy(hw, 22, phy_data);
       
  2402 	}
       
  2403 
       
  2404 	/* Setup buffer sizes */
       
  2405 	rctl &= ~E1000_RCTL_SZ_4096;
       
  2406 	rctl |= E1000_RCTL_BSEX;
       
  2407 	switch (adapter->rx_buffer_len) {
       
  2408 	case 2048:
       
  2409 	default:
       
  2410 		rctl |= E1000_RCTL_SZ_2048;
       
  2411 		rctl &= ~E1000_RCTL_BSEX;
       
  2412 		break;
       
  2413 	case 4096:
       
  2414 		rctl |= E1000_RCTL_SZ_4096;
       
  2415 		break;
       
  2416 	case 8192:
       
  2417 		rctl |= E1000_RCTL_SZ_8192;
       
  2418 		break;
       
  2419 	case 16384:
       
  2420 		rctl |= E1000_RCTL_SZ_16384;
       
  2421 		break;
       
  2422 	}
       
  2423 
       
  2424 	/*
       
  2425 	 * 82571 and greater support packet-split where the protocol
       
  2426 	 * header is placed in skb->data and the packet data is
       
  2427 	 * placed in pages hanging off of skb_shinfo(skb)->nr_frags.
       
  2428 	 * In the case of a non-split, skb->data is linearly filled,
       
  2429 	 * followed by the page buffers.  Therefore, skb->data is
       
  2430 	 * sized to hold the largest protocol header.
       
  2431 	 *
       
  2432 	 * allocations using alloc_page take too long for regular MTU
       
  2433 	 * so only enable packet split for jumbo frames
       
  2434 	 *
       
  2435 	 * Using pages when the page size is greater than 16k wastes
       
  2436 	 * a lot of memory, since we allocate 3 pages at all times
       
  2437 	 * per packet.
       
  2438 	 */
       
  2439 	pages = PAGE_USE_COUNT(adapter->netdev->mtu);
       
  2440 	if (!(adapter->flags & FLAG_IS_ICH) && (pages <= 3) &&
       
  2441 	    (PAGE_SIZE <= 16384) && (rctl & E1000_RCTL_LPE))
       
  2442 		adapter->rx_ps_pages = pages;
       
  2443 	else
       
  2444 		adapter->rx_ps_pages = 0;
       
  2445 
       
  2446 	if (adapter->rx_ps_pages) {
       
  2447 		/* Configure extra packet-split registers */
       
  2448 		rfctl = er32(RFCTL);
       
  2449 		rfctl |= E1000_RFCTL_EXTEN;
       
  2450 		/*
       
  2451 		 * disable packet split support for IPv6 extension headers,
       
  2452 		 * because some malformed IPv6 headers can hang the Rx
       
  2453 		 */
       
  2454 		rfctl |= (E1000_RFCTL_IPV6_EX_DIS |
       
  2455 			  E1000_RFCTL_NEW_IPV6_EXT_DIS);
       
  2456 
       
  2457 		ew32(RFCTL, rfctl);
       
  2458 
       
  2459 		/* Enable Packet split descriptors */
       
  2460 		rctl |= E1000_RCTL_DTYP_PS;
       
  2461 
       
  2462 		psrctl |= adapter->rx_ps_bsize0 >>
       
  2463 			E1000_PSRCTL_BSIZE0_SHIFT;
       
  2464 
       
  2465 		switch (adapter->rx_ps_pages) {
       
  2466 		case 3:
       
  2467 			psrctl |= PAGE_SIZE <<
       
  2468 				E1000_PSRCTL_BSIZE3_SHIFT;
       
  2469 		case 2:
       
  2470 			psrctl |= PAGE_SIZE <<
       
  2471 				E1000_PSRCTL_BSIZE2_SHIFT;
       
  2472 		case 1:
       
  2473 			psrctl |= PAGE_SIZE >>
       
  2474 				E1000_PSRCTL_BSIZE1_SHIFT;
       
  2475 			break;
       
  2476 		}
       
  2477 
       
  2478 		ew32(PSRCTL, psrctl);
       
  2479 	}
       
  2480 
       
  2481 	ew32(RCTL, rctl);
       
  2482 	/* just started the receive unit, no need to restart */
       
  2483 	adapter->flags &= ~FLAG_RX_RESTART_NOW;
       
  2484 }
       
  2485 
       
  2486 /**
       
  2487  * e1000_configure_rx - Configure Receive Unit after Reset
       
  2488  * @adapter: board private structure
       
  2489  *
       
  2490  * Configure the Rx unit of the MAC after a reset.
       
  2491  **/
       
  2492 static void e1000_configure_rx(struct e1000_adapter *adapter)
       
  2493 {
       
  2494 	struct e1000_hw *hw = &adapter->hw;
       
  2495 	struct e1000_ring *rx_ring = adapter->rx_ring;
       
  2496 	u64 rdba;
       
  2497 	u32 rdlen, rctl, rxcsum, ctrl_ext;
       
  2498 
       
  2499 	if (adapter->rx_ps_pages) {
       
  2500 		/* this is a 32 byte descriptor */
       
  2501 		rdlen = rx_ring->count *
       
  2502 			sizeof(union e1000_rx_desc_packet_split);
       
  2503 		adapter->clean_rx = e1000_clean_rx_irq_ps;
       
  2504 		adapter->alloc_rx_buf = e1000_alloc_rx_buffers_ps;
       
  2505 	} else if (adapter->netdev->mtu > ETH_FRAME_LEN + ETH_FCS_LEN) {
       
  2506 		rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
       
  2507 		adapter->clean_rx = e1000_clean_jumbo_rx_irq;
       
  2508 		adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
       
  2509 	} else {
       
  2510 		rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
       
  2511 		adapter->clean_rx = e1000_clean_rx_irq;
       
  2512 		adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
       
  2513 	}
       
  2514 
       
  2515 	/* disable receives while setting up the descriptors */
       
  2516 	rctl = er32(RCTL);
       
  2517 	ew32(RCTL, rctl & ~E1000_RCTL_EN);
       
  2518 	e1e_flush();
       
  2519 	msleep(10);
       
  2520 
       
  2521 	/* set the Receive Delay Timer Register */
       
  2522 	ew32(RDTR, adapter->rx_int_delay);
       
  2523 
       
  2524 	/* irq moderation */
       
  2525 	ew32(RADV, adapter->rx_abs_int_delay);
       
  2526 	if (adapter->itr_setting != 0)
       
  2527 		ew32(ITR, 1000000000 / (adapter->itr * 256));
       
  2528 
       
  2529 	ctrl_ext = er32(CTRL_EXT);
       
  2530 	/* Reset delay timers after every interrupt */
       
  2531 	ctrl_ext |= E1000_CTRL_EXT_INT_TIMER_CLR;
       
  2532 	/* Auto-Mask interrupts upon ICR access */
       
  2533 	ctrl_ext |= E1000_CTRL_EXT_IAME;
       
  2534 	ew32(IAM, 0xffffffff);
       
  2535 	ew32(CTRL_EXT, ctrl_ext);
       
  2536 	e1e_flush();
       
  2537 
       
  2538 	/*
       
  2539 	 * Setup the HW Rx Head and Tail Descriptor Pointers and
       
  2540 	 * the Base and Length of the Rx Descriptor Ring
       
  2541 	 */
       
  2542 	rdba = rx_ring->dma;
       
  2543 	ew32(RDBAL, (rdba & DMA_BIT_MASK(32)));
       
  2544 	ew32(RDBAH, (rdba >> 32));
       
  2545 	ew32(RDLEN, rdlen);
       
  2546 	ew32(RDH, 0);
       
  2547 	ew32(RDT, 0);
       
  2548 	rx_ring->head = E1000_RDH;
       
  2549 	rx_ring->tail = E1000_RDT;
       
  2550 
       
  2551 	/* Enable Receive Checksum Offload for TCP and UDP */
       
  2552 	rxcsum = er32(RXCSUM);
       
  2553 	if (adapter->flags & FLAG_RX_CSUM_ENABLED) {
       
  2554 		rxcsum |= E1000_RXCSUM_TUOFL;
       
  2555 
       
  2556 		/*
       
  2557 		 * IPv4 payload checksum for UDP fragments must be
       
  2558 		 * used in conjunction with packet-split.
       
  2559 		 */
       
  2560 		if (adapter->rx_ps_pages)
       
  2561 			rxcsum |= E1000_RXCSUM_IPPCSE;
       
  2562 	} else {
       
  2563 		rxcsum &= ~E1000_RXCSUM_TUOFL;
       
  2564 		/* no need to clear IPPCSE as it defaults to 0 */
       
  2565 	}
       
  2566 	ew32(RXCSUM, rxcsum);
       
  2567 
       
  2568 	/*
       
  2569 	 * Enable early receives on supported devices, only takes effect when
       
  2570 	 * packet size is equal or larger than the specified value (in 8 byte
       
  2571 	 * units), e.g. using jumbo frames when setting to E1000_ERT_2048
       
  2572 	 */
       
  2573 	if ((adapter->flags & FLAG_HAS_ERT) &&
       
  2574 	    (adapter->netdev->mtu > ETH_DATA_LEN)) {
       
  2575 		u32 rxdctl = er32(RXDCTL(0));
       
  2576 		ew32(RXDCTL(0), rxdctl | 0x3);
       
  2577 		ew32(ERT, E1000_ERT_2048 | (1 << 13));
       
  2578 		/*
       
  2579 		 * With jumbo frames and early-receive enabled, excessive
       
  2580 		 * C4->C2 latencies result in dropped transactions.
       
  2581 		 */
       
  2582 		pm_qos_update_requirement(PM_QOS_CPU_DMA_LATENCY,
       
  2583 					  e1000e_driver_name, 55);
       
  2584 	} else {
       
  2585 		pm_qos_update_requirement(PM_QOS_CPU_DMA_LATENCY,
       
  2586 					  e1000e_driver_name,
       
  2587 					  PM_QOS_DEFAULT_VALUE);
       
  2588 	}
       
  2589 
       
  2590 	/* Enable Receives */
       
  2591 	ew32(RCTL, rctl);
       
  2592 }
       
  2593 
       
  2594 /**
       
  2595  *  e1000_update_mc_addr_list - Update Multicast addresses
       
  2596  *  @hw: pointer to the HW structure
       
  2597  *  @mc_addr_list: array of multicast addresses to program
       
  2598  *  @mc_addr_count: number of multicast addresses to program
       
  2599  *  @rar_used_count: the first RAR register free to program
       
  2600  *  @rar_count: total number of supported Receive Address Registers
       
  2601  *
       
  2602  *  Updates the Receive Address Registers and Multicast Table Array.
       
  2603  *  The caller must have a packed mc_addr_list of multicast addresses.
       
  2604  *  The parameter rar_count will usually be hw->mac.rar_entry_count
       
  2605  *  unless there are workarounds that change this.  Currently no func pointer
       
  2606  *  exists and all implementations are handled in the generic version of this
       
  2607  *  function.
       
  2608  **/
       
  2609 static void e1000_update_mc_addr_list(struct e1000_hw *hw, u8 *mc_addr_list,
       
  2610 				      u32 mc_addr_count, u32 rar_used_count,
       
  2611 				      u32 rar_count)
       
  2612 {
       
  2613 	hw->mac.ops.update_mc_addr_list(hw, mc_addr_list, mc_addr_count,
       
  2614 				        rar_used_count, rar_count);
       
  2615 }
       
  2616 
       
  2617 /**
       
  2618  * e1000_set_multi - Multicast and Promiscuous mode set
       
  2619  * @netdev: network interface device structure
       
  2620  *
       
  2621  * The set_multi entry point is called whenever the multicast address
       
  2622  * list or the network interface flags are updated.  This routine is
       
  2623  * responsible for configuring the hardware for proper multicast,
       
  2624  * promiscuous mode, and all-multi behavior.
       
  2625  **/
       
  2626 static void e1000_set_multi(struct net_device *netdev)
       
  2627 {
       
  2628 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  2629 	struct e1000_hw *hw = &adapter->hw;
       
  2630 	struct e1000_mac_info *mac = &hw->mac;
       
  2631 	struct dev_mc_list *mc_ptr;
       
  2632 	u8  *mta_list;
       
  2633 	u32 rctl;
       
  2634 	int i;
       
  2635 
       
  2636 	/* Check for Promiscuous and All Multicast modes */
       
  2637 
       
  2638 	rctl = er32(RCTL);
       
  2639 
       
  2640 	if (netdev->flags & IFF_PROMISC) {
       
  2641 		rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
       
  2642 		rctl &= ~E1000_RCTL_VFE;
       
  2643 	} else {
       
  2644 		if (netdev->flags & IFF_ALLMULTI) {
       
  2645 			rctl |= E1000_RCTL_MPE;
       
  2646 			rctl &= ~E1000_RCTL_UPE;
       
  2647 		} else {
       
  2648 			rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE);
       
  2649 		}
       
  2650 		if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
       
  2651 			rctl |= E1000_RCTL_VFE;
       
  2652 	}
       
  2653 
       
  2654 	ew32(RCTL, rctl);
       
  2655 
       
  2656 	if (netdev->mc_count) {
       
  2657 		mta_list = kmalloc(netdev->mc_count * 6, GFP_ATOMIC);
       
  2658 		if (!mta_list)
       
  2659 			return;
       
  2660 
       
  2661 		/* prepare a packed array of only addresses. */
       
  2662 		mc_ptr = netdev->mc_list;
       
  2663 
       
  2664 		for (i = 0; i < netdev->mc_count; i++) {
       
  2665 			if (!mc_ptr)
       
  2666 				break;
       
  2667 			memcpy(mta_list + (i*ETH_ALEN), mc_ptr->dmi_addr,
       
  2668 			       ETH_ALEN);
       
  2669 			mc_ptr = mc_ptr->next;
       
  2670 		}
       
  2671 
       
  2672 		e1000_update_mc_addr_list(hw, mta_list, i, 1,
       
  2673 					  mac->rar_entry_count);
       
  2674 		kfree(mta_list);
       
  2675 	} else {
       
  2676 		/*
       
  2677 		 * if we're called from probe, we might not have
       
  2678 		 * anything to do here, so clear out the list
       
  2679 		 */
       
  2680 		e1000_update_mc_addr_list(hw, NULL, 0, 1, mac->rar_entry_count);
       
  2681 	}
       
  2682 }
       
  2683 
       
  2684 /**
       
  2685  * e1000_configure - configure the hardware for Rx and Tx
       
  2686  * @adapter: private board structure
       
  2687  **/
       
  2688 static void e1000_configure(struct e1000_adapter *adapter)
       
  2689 {
       
  2690 	e1000_set_multi(adapter->netdev);
       
  2691 
       
  2692 	e1000_restore_vlan(adapter);
       
  2693 	e1000_init_manageability(adapter);
       
  2694 
       
  2695 	e1000_configure_tx(adapter);
       
  2696 	e1000_setup_rctl(adapter);
       
  2697 	e1000_configure_rx(adapter);
       
  2698 
       
  2699 	if (adapter->ecdev) {
       
  2700 		adapter->alloc_rx_buf(adapter, adapter->rx_ring->count);
       
  2701 	} else {
       
  2702 		adapter->alloc_rx_buf(adapter, e1000_desc_unused(adapter->rx_ring));
       
  2703 	}
       
  2704 }
       
  2705 
       
  2706 /**
       
  2707  * e1000e_power_up_phy - restore link in case the phy was powered down
       
  2708  * @adapter: address of board private structure
       
  2709  *
       
  2710  * The phy may be powered down to save power and turn off link when the
       
  2711  * driver is unloaded and wake on lan is not enabled (among others)
       
  2712  * *** this routine MUST be followed by a call to e1000e_reset ***
       
  2713  **/
       
  2714 void e1000e_power_up_phy(struct e1000_adapter *adapter)
       
  2715 {
       
  2716 	u16 mii_reg = 0;
       
  2717 
       
  2718 	/* Just clear the power down bit to wake the phy back up */
       
  2719 	if (adapter->hw.phy.media_type == e1000_media_type_copper) {
       
  2720 		/*
       
  2721 		 * According to the manual, the phy will retain its
       
  2722 		 * settings across a power-down/up cycle
       
  2723 		 */
       
  2724 		e1e_rphy(&adapter->hw, PHY_CONTROL, &mii_reg);
       
  2725 		mii_reg &= ~MII_CR_POWER_DOWN;
       
  2726 		e1e_wphy(&adapter->hw, PHY_CONTROL, mii_reg);
       
  2727 	}
       
  2728 
       
  2729 	adapter->hw.mac.ops.setup_link(&adapter->hw);
       
  2730 }
       
  2731 
       
  2732 /**
       
  2733  * e1000_power_down_phy - Power down the PHY
       
  2734  *
       
  2735  * Power down the PHY so no link is implied when interface is down
       
  2736  * The PHY cannot be powered down is management or WoL is active
       
  2737  */
       
  2738 static void e1000_power_down_phy(struct e1000_adapter *adapter)
       
  2739 {
       
  2740 	struct e1000_hw *hw = &adapter->hw;
       
  2741 	u16 mii_reg;
       
  2742 
       
  2743 	/* WoL is enabled */
       
  2744 	if (adapter->wol)
       
  2745 		return;
       
  2746 
       
  2747 	/* non-copper PHY? */
       
  2748 	if (adapter->hw.phy.media_type != e1000_media_type_copper)
       
  2749 		return;
       
  2750 
       
  2751 	/* reset is blocked because of a SoL/IDER session */
       
  2752 	if (e1000e_check_mng_mode(hw) || e1000_check_reset_block(hw))
       
  2753 		return;
       
  2754 
       
  2755 	/* manageability (AMT) is enabled */
       
  2756 	if (er32(MANC) & E1000_MANC_SMBUS_EN)
       
  2757 		return;
       
  2758 
       
  2759 	/* power down the PHY */
       
  2760 	e1e_rphy(hw, PHY_CONTROL, &mii_reg);
       
  2761 	mii_reg |= MII_CR_POWER_DOWN;
       
  2762 	e1e_wphy(hw, PHY_CONTROL, mii_reg);
       
  2763 	mdelay(1);
       
  2764 }
       
  2765 
       
  2766 /**
       
  2767  * e1000e_reset - bring the hardware into a known good state
       
  2768  *
       
  2769  * This function boots the hardware and enables some settings that
       
  2770  * require a configuration cycle of the hardware - those cannot be
       
  2771  * set/changed during runtime. After reset the device needs to be
       
  2772  * properly configured for Rx, Tx etc.
       
  2773  */
       
  2774 void e1000e_reset(struct e1000_adapter *adapter)
       
  2775 {
       
  2776 	struct e1000_mac_info *mac = &adapter->hw.mac;
       
  2777 	struct e1000_fc_info *fc = &adapter->hw.fc;
       
  2778 	struct e1000_hw *hw = &adapter->hw;
       
  2779 	u32 tx_space, min_tx_space, min_rx_space;
       
  2780 	u32 pba = adapter->pba;
       
  2781 	u16 hwm;
       
  2782 
       
  2783 	/* reset Packet Buffer Allocation to default */
       
  2784 	ew32(PBA, pba);
       
  2785 
       
  2786 	if (adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
       
  2787 		/*
       
  2788 		 * To maintain wire speed transmits, the Tx FIFO should be
       
  2789 		 * large enough to accommodate two full transmit packets,
       
  2790 		 * rounded up to the next 1KB and expressed in KB.  Likewise,
       
  2791 		 * the Rx FIFO should be large enough to accommodate at least
       
  2792 		 * one full receive packet and is similarly rounded up and
       
  2793 		 * expressed in KB.
       
  2794 		 */
       
  2795 		pba = er32(PBA);
       
  2796 		/* upper 16 bits has Tx packet buffer allocation size in KB */
       
  2797 		tx_space = pba >> 16;
       
  2798 		/* lower 16 bits has Rx packet buffer allocation size in KB */
       
  2799 		pba &= 0xffff;
       
  2800 		/*
       
  2801 		 * the Tx fifo also stores 16 bytes of information about the tx
       
  2802 		 * but don't include ethernet FCS because hardware appends it
       
  2803 		 */
       
  2804 		min_tx_space = (adapter->max_frame_size +
       
  2805 				sizeof(struct e1000_tx_desc) -
       
  2806 				ETH_FCS_LEN) * 2;
       
  2807 		min_tx_space = ALIGN(min_tx_space, 1024);
       
  2808 		min_tx_space >>= 10;
       
  2809 		/* software strips receive CRC, so leave room for it */
       
  2810 		min_rx_space = adapter->max_frame_size;
       
  2811 		min_rx_space = ALIGN(min_rx_space, 1024);
       
  2812 		min_rx_space >>= 10;
       
  2813 
       
  2814 		/*
       
  2815 		 * If current Tx allocation is less than the min Tx FIFO size,
       
  2816 		 * and the min Tx FIFO size is less than the current Rx FIFO
       
  2817 		 * allocation, take space away from current Rx allocation
       
  2818 		 */
       
  2819 		if ((tx_space < min_tx_space) &&
       
  2820 		    ((min_tx_space - tx_space) < pba)) {
       
  2821 			pba -= min_tx_space - tx_space;
       
  2822 
       
  2823 			/*
       
  2824 			 * if short on Rx space, Rx wins and must trump tx
       
  2825 			 * adjustment or use Early Receive if available
       
  2826 			 */
       
  2827 			if ((pba < min_rx_space) &&
       
  2828 			    (!(adapter->flags & FLAG_HAS_ERT)))
       
  2829 				/* ERT enabled in e1000_configure_rx */
       
  2830 				pba = min_rx_space;
       
  2831 		}
       
  2832 
       
  2833 		ew32(PBA, pba);
       
  2834 	}
       
  2835 
       
  2836 
       
  2837 	/*
       
  2838 	 * flow control settings
       
  2839 	 *
       
  2840 	 * The high water mark must be low enough to fit one full frame
       
  2841 	 * (or the size used for early receive) above it in the Rx FIFO.
       
  2842 	 * Set it to the lower of:
       
  2843 	 * - 90% of the Rx FIFO size, and
       
  2844 	 * - the full Rx FIFO size minus the early receive size (for parts
       
  2845 	 *   with ERT support assuming ERT set to E1000_ERT_2048), or
       
  2846 	 * - the full Rx FIFO size minus one full frame
       
  2847 	 */
       
  2848 	if (hw->mac.type == e1000_pchlan) {
       
  2849 		/*
       
  2850 		 * Workaround PCH LOM adapter hangs with certain network
       
  2851 		 * loads.  If hangs persist, try disabling Tx flow control.
       
  2852 		 */
       
  2853 		if (adapter->netdev->mtu > ETH_DATA_LEN) {
       
  2854 			fc->high_water = 0x3500;
       
  2855 			fc->low_water  = 0x1500;
       
  2856 		} else {
       
  2857 			fc->high_water = 0x5000;
       
  2858 			fc->low_water  = 0x3000;
       
  2859 		}
       
  2860 	} else {
       
  2861 		if ((adapter->flags & FLAG_HAS_ERT) &&
       
  2862 		    (adapter->netdev->mtu > ETH_DATA_LEN))
       
  2863 			hwm = min(((pba << 10) * 9 / 10),
       
  2864 				  ((pba << 10) - (E1000_ERT_2048 << 3)));
       
  2865 		else
       
  2866 			hwm = min(((pba << 10) * 9 / 10),
       
  2867 				  ((pba << 10) - adapter->max_frame_size));
       
  2868 
       
  2869 		fc->high_water = hwm & E1000_FCRTH_RTH; /* 8-byte granularity */
       
  2870 		fc->low_water = fc->high_water - 8;
       
  2871 	}
       
  2872 
       
  2873 	if (adapter->flags & FLAG_DISABLE_FC_PAUSE_TIME)
       
  2874 		fc->pause_time = 0xFFFF;
       
  2875 	else
       
  2876 		fc->pause_time = E1000_FC_PAUSE_TIME;
       
  2877 	fc->send_xon = 1;
       
  2878 	fc->current_mode = fc->requested_mode;
       
  2879 
       
  2880 	/* Allow time for pending master requests to run */
       
  2881 	mac->ops.reset_hw(hw);
       
  2882 
       
  2883 	/*
       
  2884 	 * For parts with AMT enabled, let the firmware know
       
  2885 	 * that the network interface is in control
       
  2886 	 */
       
  2887 	if (adapter->flags & FLAG_HAS_AMT)
       
  2888 		e1000_get_hw_control(adapter);
       
  2889 
       
  2890 	ew32(WUC, 0);
       
  2891 	if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP)
       
  2892 		e1e_wphy(&adapter->hw, BM_WUC, 0);
       
  2893 
       
  2894 	if (mac->ops.init_hw(hw))
       
  2895 		e_err("Hardware Error\n");
       
  2896 
       
  2897 	/* additional part of the flow-control workaround above */
       
  2898 	if (hw->mac.type == e1000_pchlan)
       
  2899 		ew32(FCRTV_PCH, 0x1000);
       
  2900 
       
  2901 	e1000_update_mng_vlan(adapter);
       
  2902 
       
  2903 	/* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
       
  2904 	ew32(VET, ETH_P_8021Q);
       
  2905 
       
  2906 	e1000e_reset_adaptive(hw);
       
  2907 	e1000_get_phy_info(hw);
       
  2908 
       
  2909 	if ((adapter->flags & FLAG_HAS_SMART_POWER_DOWN) &&
       
  2910 	    !(adapter->flags & FLAG_SMART_POWER_DOWN)) {
       
  2911 		u16 phy_data = 0;
       
  2912 		/*
       
  2913 		 * speed up time to link by disabling smart power down, ignore
       
  2914 		 * the return value of this function because there is nothing
       
  2915 		 * different we would do if it failed
       
  2916 		 */
       
  2917 		e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &phy_data);
       
  2918 		phy_data &= ~IGP02E1000_PM_SPD;
       
  2919 		e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, phy_data);
       
  2920 	}
       
  2921 }
       
  2922 
       
  2923 int e1000e_up(struct e1000_adapter *adapter)
       
  2924 {
       
  2925 	struct e1000_hw *hw = &adapter->hw;
       
  2926 
       
  2927 	/* hardware has been reset, we need to reload some things */
       
  2928 	e1000_configure(adapter);
       
  2929 
       
  2930 	clear_bit(__E1000_DOWN, &adapter->state);
       
  2931 
       
  2932 	if (!adapter->ecdev) 
       
  2933 		napi_enable(&adapter->napi);
       
  2934 
       
  2935 	if (adapter->msix_entries)
       
  2936 		e1000_configure_msix(adapter);
       
  2937 
       
  2938 	if (!adapter->ecdev) {
       
  2939 		e1000_irq_enable(adapter);
       
  2940 
       
  2941 		netif_wake_queue(adapter->netdev);
       
  2942 
       
  2943 		/* fire a link change interrupt to start the watchdog */
       
  2944 		ew32(ICS, E1000_ICS_LSC);
       
  2945 	}
       
  2946 	return 0;
       
  2947 }
       
  2948 
       
  2949 void e1000e_down(struct e1000_adapter *adapter)
       
  2950 {
       
  2951 	struct net_device *netdev = adapter->netdev;
       
  2952 	struct e1000_hw *hw = &adapter->hw;
       
  2953 	u32 tctl, rctl;
       
  2954 
       
  2955 	/*
       
  2956 	 * signal that we're down so the interrupt handler does not
       
  2957 	 * reschedule our watchdog timer
       
  2958 	 */
       
  2959 	set_bit(__E1000_DOWN, &adapter->state);
       
  2960 
       
  2961 	/* disable receives in the hardware */
       
  2962 	rctl = er32(RCTL);
       
  2963 	ew32(RCTL, rctl & ~E1000_RCTL_EN);
       
  2964 	/* flush and sleep below */
       
  2965 
       
  2966 	if (!adapter->ecdev) 
       
  2967 		netif_stop_queue(netdev);
       
  2968 
       
  2969 	/* disable transmits in the hardware */
       
  2970 	tctl = er32(TCTL);
       
  2971 	tctl &= ~E1000_TCTL_EN;
       
  2972 	ew32(TCTL, tctl);
       
  2973 	/* flush both disables and wait for them to finish */
       
  2974 	e1e_flush();
       
  2975 	msleep(10);
       
  2976 
       
  2977 	if (!adapter->ecdev) {
       
  2978 		napi_disable(&adapter->napi);
       
  2979 		e1000_irq_disable(adapter);
       
  2980 
       
  2981 		del_timer_sync(&adapter->watchdog_timer);
       
  2982 		del_timer_sync(&adapter->phy_info_timer);
       
  2983 
       
  2984 		netdev->tx_queue_len = adapter->tx_queue_len;
       
  2985 		netif_carrier_off(netdev);
       
  2986 	}
       
  2987 
       
  2988 	adapter->link_speed = 0;
       
  2989 	adapter->link_duplex = 0;
       
  2990 
       
  2991 	if (!pci_channel_offline(adapter->pdev))
       
  2992 		e1000e_reset(adapter);
       
  2993 	e1000_clean_tx_ring(adapter);
       
  2994 	e1000_clean_rx_ring(adapter);
       
  2995 
       
  2996 	/*
       
  2997 	 * TODO: for power management, we could drop the link and
       
  2998 	 * pci_disable_device here.
       
  2999 	 */
       
  3000 }
       
  3001 
       
  3002 void e1000e_reinit_locked(struct e1000_adapter *adapter)
       
  3003 {
       
  3004 	might_sleep();
       
  3005 	while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
       
  3006 		msleep(1);
       
  3007 	e1000e_down(adapter);
       
  3008 	e1000e_up(adapter);
       
  3009 	clear_bit(__E1000_RESETTING, &adapter->state);
       
  3010 }
       
  3011 
       
  3012 /**
       
  3013  * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
       
  3014  * @adapter: board private structure to initialize
       
  3015  *
       
  3016  * e1000_sw_init initializes the Adapter private data structure.
       
  3017  * Fields are initialized based on PCI device information and
       
  3018  * OS network device settings (MTU size).
       
  3019  **/
       
  3020 static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
       
  3021 {
       
  3022 	struct net_device *netdev = adapter->netdev;
       
  3023 
       
  3024 	adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN;
       
  3025 	adapter->rx_ps_bsize0 = 128;
       
  3026 	adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
       
  3027 	adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN;
       
  3028 
       
  3029 	e1000e_set_interrupt_capability(adapter);
       
  3030 
       
  3031 	if (e1000_alloc_queues(adapter))
       
  3032 		return -ENOMEM;
       
  3033 
       
  3034 	/* Explicitly disable IRQ since the NIC can be in any state. */
       
  3035 	e1000_irq_disable(adapter);
       
  3036 
       
  3037 	set_bit(__E1000_DOWN, &adapter->state);
       
  3038 	return 0;
       
  3039 }
       
  3040 
       
  3041 /**
       
  3042  * e1000_intr_msi_test - Interrupt Handler
       
  3043  * @irq: interrupt number
       
  3044  * @data: pointer to a network interface device structure
       
  3045  **/
       
  3046 static irqreturn_t e1000_intr_msi_test(int irq, void *data)
       
  3047 {
       
  3048 	struct net_device *netdev = data;
       
  3049 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3050 	struct e1000_hw *hw = &adapter->hw;
       
  3051 	u32 icr = er32(ICR);
       
  3052 
       
  3053 	e_dbg("%s: icr is %08X\n", netdev->name, icr);
       
  3054 	if (icr & E1000_ICR_RXSEQ) {
       
  3055 		adapter->flags &= ~FLAG_MSI_TEST_FAILED;
       
  3056 		wmb();
       
  3057 	}
       
  3058 
       
  3059 	return IRQ_HANDLED;
       
  3060 }
       
  3061 
       
  3062 /**
       
  3063  * e1000_test_msi_interrupt - Returns 0 for successful test
       
  3064  * @adapter: board private struct
       
  3065  *
       
  3066  * code flow taken from tg3.c
       
  3067  **/
       
  3068 static int e1000_test_msi_interrupt(struct e1000_adapter *adapter)
       
  3069 {
       
  3070 	struct net_device *netdev = adapter->netdev;
       
  3071 	struct e1000_hw *hw = &adapter->hw;
       
  3072 	int err;
       
  3073 
       
  3074 	/* poll_enable hasn't been called yet, so don't need disable */
       
  3075 	/* clear any pending events */
       
  3076 	er32(ICR);
       
  3077 
       
  3078 	/* free the real vector and request a test handler */
       
  3079 	e1000_free_irq(adapter);
       
  3080 	e1000e_reset_interrupt_capability(adapter);
       
  3081 
       
  3082 	/* Assume that the test fails, if it succeeds then the test
       
  3083 	 * MSI irq handler will unset this flag */
       
  3084 	adapter->flags |= FLAG_MSI_TEST_FAILED;
       
  3085 
       
  3086 	err = pci_enable_msi(adapter->pdev);
       
  3087 	if (err)
       
  3088 		goto msi_test_failed;
       
  3089 
       
  3090 	err = request_irq(adapter->pdev->irq, &e1000_intr_msi_test, 0,
       
  3091 			  netdev->name, netdev);
       
  3092 	if (err) {
       
  3093 		pci_disable_msi(adapter->pdev);
       
  3094 		goto msi_test_failed;
       
  3095 	}
       
  3096 
       
  3097 	wmb();
       
  3098 
       
  3099 	e1000_irq_enable(adapter);
       
  3100 
       
  3101 	/* fire an unusual interrupt on the test handler */
       
  3102 	ew32(ICS, E1000_ICS_RXSEQ);
       
  3103 	e1e_flush();
       
  3104 	msleep(50);
       
  3105 
       
  3106 	e1000_irq_disable(adapter);
       
  3107 
       
  3108 	rmb();
       
  3109 
       
  3110 	if (adapter->flags & FLAG_MSI_TEST_FAILED) {
       
  3111 		adapter->int_mode = E1000E_INT_MODE_LEGACY;
       
  3112 		err = -EIO;
       
  3113 		e_info("MSI interrupt test failed!\n");
       
  3114 	}
       
  3115 
       
  3116 	free_irq(adapter->pdev->irq, netdev);
       
  3117 	pci_disable_msi(adapter->pdev);
       
  3118 
       
  3119 	if (err == -EIO)
       
  3120 		goto msi_test_failed;
       
  3121 
       
  3122 	/* okay so the test worked, restore settings */
       
  3123 	e_dbg("%s: MSI interrupt test succeeded!\n", netdev->name);
       
  3124 msi_test_failed:
       
  3125 	e1000e_set_interrupt_capability(adapter);
       
  3126 	e1000_request_irq(adapter);
       
  3127 	return err;
       
  3128 }
       
  3129 
       
  3130 /**
       
  3131  * e1000_test_msi - Returns 0 if MSI test succeeds or INTx mode is restored
       
  3132  * @adapter: board private struct
       
  3133  *
       
  3134  * code flow taken from tg3.c, called with e1000 interrupts disabled.
       
  3135  **/
       
  3136 static int e1000_test_msi(struct e1000_adapter *adapter)
       
  3137 {
       
  3138 	int err;
       
  3139 	u16 pci_cmd;
       
  3140 
       
  3141 	if (!(adapter->flags & FLAG_MSI_ENABLED))
       
  3142 		return 0;
       
  3143 
       
  3144 	/* disable SERR in case the MSI write causes a master abort */
       
  3145 	pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
       
  3146 	pci_write_config_word(adapter->pdev, PCI_COMMAND,
       
  3147 			      pci_cmd & ~PCI_COMMAND_SERR);
       
  3148 
       
  3149 	err = e1000_test_msi_interrupt(adapter);
       
  3150 
       
  3151 	/* restore previous setting of command word */
       
  3152 	pci_write_config_word(adapter->pdev, PCI_COMMAND, pci_cmd);
       
  3153 
       
  3154 	/* success ! */
       
  3155 	if (!err)
       
  3156 		return 0;
       
  3157 
       
  3158 	/* EIO means MSI test failed */
       
  3159 	if (err != -EIO)
       
  3160 		return err;
       
  3161 
       
  3162 	/* back to INTx mode */
       
  3163 	e_warn("MSI interrupt test failed, using legacy interrupt.\n");
       
  3164 
       
  3165 	e1000_free_irq(adapter);
       
  3166 
       
  3167 	err = e1000_request_irq(adapter);
       
  3168 
       
  3169 	return err;
       
  3170 }
       
  3171 
       
  3172 /**
       
  3173  * e1000_open - Called when a network interface is made active
       
  3174  * @netdev: network interface device structure
       
  3175  *
       
  3176  * Returns 0 on success, negative value on failure
       
  3177  *
       
  3178  * The open entry point is called when a network interface is made
       
  3179  * active by the system (IFF_UP).  At this point all resources needed
       
  3180  * for transmit and receive operations are allocated, the interrupt
       
  3181  * handler is registered with the OS, the watchdog timer is started,
       
  3182  * and the stack is notified that the interface is ready.
       
  3183  **/
       
  3184 static int e1000_open(struct net_device *netdev)
       
  3185 {
       
  3186 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3187 	struct e1000_hw *hw = &adapter->hw;
       
  3188 	int err;
       
  3189 
       
  3190 	/* disallow open during test */
       
  3191 	if (test_bit(__E1000_TESTING, &adapter->state))
       
  3192 		return -EBUSY;
       
  3193 
       
  3194 	if (adapter->ecdev) {
       
  3195 		ecdev_set_link(adapter->ecdev, 0);
       
  3196 	} else {
       
  3197 		netif_carrier_off(netdev);
       
  3198 	}
       
  3199 
       
  3200 	/* allocate transmit descriptors */
       
  3201 	err = e1000e_setup_tx_resources(adapter);
       
  3202 	if (err)
       
  3203 		goto err_setup_tx;
       
  3204 
       
  3205 	/* allocate receive descriptors */
       
  3206 	err = e1000e_setup_rx_resources(adapter);
       
  3207 	if (err)
       
  3208 		goto err_setup_rx;
       
  3209 
       
  3210 	e1000e_power_up_phy(adapter);
       
  3211 
       
  3212 	adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
       
  3213 	if ((adapter->hw.mng_cookie.status &
       
  3214 	     E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
       
  3215 		e1000_update_mng_vlan(adapter);
       
  3216 
       
  3217 	/*
       
  3218 	 * If AMT is enabled, let the firmware know that the network
       
  3219 	 * interface is now open
       
  3220 	 */
       
  3221 	if (adapter->flags & FLAG_HAS_AMT)
       
  3222 		e1000_get_hw_control(adapter);
       
  3223 
       
  3224 	/*
       
  3225 	 * before we allocate an interrupt, we must be ready to handle it.
       
  3226 	 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
       
  3227 	 * as soon as we call pci_request_irq, so we have to setup our
       
  3228 	 * clean_rx handler before we do so.
       
  3229 	 */
       
  3230 	e1000_configure(adapter);
       
  3231 
       
  3232 	err = e1000_request_irq(adapter);
       
  3233 	if (err)
       
  3234 		goto err_req_irq;
       
  3235 
       
  3236 	/*
       
  3237 	 * Work around PCIe errata with MSI interrupts causing some chipsets to
       
  3238 	 * ignore e1000e MSI messages, which means we need to test our MSI
       
  3239 	 * interrupt now
       
  3240 	 */
       
  3241 	if (adapter->int_mode != E1000E_INT_MODE_LEGACY) {
       
  3242 		err = e1000_test_msi(adapter);
       
  3243 		if (err) {
       
  3244 			e_err("Interrupt allocation failed\n");
       
  3245 			goto err_req_irq;
       
  3246 		}
       
  3247 	}
       
  3248 
       
  3249 	/* From here on the code is the same as e1000e_up() */
       
  3250 	clear_bit(__E1000_DOWN, &adapter->state);
       
  3251 
       
  3252 	napi_enable(&adapter->napi);
       
  3253 
       
  3254 	e1000_irq_enable(adapter);
       
  3255 
       
  3256 	netif_start_queue(netdev);
       
  3257 
       
  3258 	/* fire a link status change interrupt to start the watchdog */
       
  3259 	ew32(ICS, E1000_ICS_LSC);
       
  3260 
       
  3261 	return 0;
       
  3262 
       
  3263 err_req_irq:
       
  3264 	e1000_release_hw_control(adapter);
       
  3265 	e1000_power_down_phy(adapter);
       
  3266 	e1000e_free_rx_resources(adapter);
       
  3267 err_setup_rx:
       
  3268 	e1000e_free_tx_resources(adapter);
       
  3269 err_setup_tx:
       
  3270 	e1000e_reset(adapter);
       
  3271 
       
  3272 	return err;
       
  3273 }
       
  3274 
       
  3275 /**
       
  3276  * e1000_close - Disables a network interface
       
  3277  * @netdev: network interface device structure
       
  3278  *
       
  3279  * Returns 0, this is not allowed to fail
       
  3280  *
       
  3281  * The close entry point is called when an interface is de-activated
       
  3282  * by the OS.  The hardware is still under the drivers control, but
       
  3283  * needs to be disabled.  A global MAC reset is issued to stop the
       
  3284  * hardware, and all transmit and receive resources are freed.
       
  3285  **/
       
  3286 static int e1000_close(struct net_device *netdev)
       
  3287 {
       
  3288 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3289 
       
  3290 	WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
       
  3291 	e1000e_down(adapter);
       
  3292 	e1000_power_down_phy(adapter);
       
  3293 	e1000_free_irq(adapter);
       
  3294 
       
  3295 	e1000e_free_tx_resources(adapter);
       
  3296 	e1000e_free_rx_resources(adapter);
       
  3297 
       
  3298 	/*
       
  3299 	 * kill manageability vlan ID if supported, but not if a vlan with
       
  3300 	 * the same ID is registered on the host OS (let 8021q kill it)
       
  3301 	 */
       
  3302 	if ((adapter->hw.mng_cookie.status &
       
  3303 			  E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
       
  3304 	     !(adapter->vlgrp &&
       
  3305 	       vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id)))
       
  3306 		e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
       
  3307 
       
  3308 	/*
       
  3309 	 * If AMT is enabled, let the firmware know that the network
       
  3310 	 * interface is now closed
       
  3311 	 */
       
  3312 	if (adapter->flags & FLAG_HAS_AMT)
       
  3313 		e1000_release_hw_control(adapter);
       
  3314 
       
  3315 	return 0;
       
  3316 }
       
  3317 /**
       
  3318  * e1000_set_mac - Change the Ethernet Address of the NIC
       
  3319  * @netdev: network interface device structure
       
  3320  * @p: pointer to an address structure
       
  3321  *
       
  3322  * Returns 0 on success, negative on failure
       
  3323  **/
       
  3324 static int e1000_set_mac(struct net_device *netdev, void *p)
       
  3325 {
       
  3326 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3327 	struct sockaddr *addr = p;
       
  3328 
       
  3329 	if (!is_valid_ether_addr(addr->sa_data))
       
  3330 		return -EADDRNOTAVAIL;
       
  3331 
       
  3332 	memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
       
  3333 	memcpy(adapter->hw.mac.addr, addr->sa_data, netdev->addr_len);
       
  3334 
       
  3335 	e1000e_rar_set(&adapter->hw, adapter->hw.mac.addr, 0);
       
  3336 
       
  3337 	if (adapter->flags & FLAG_RESET_OVERWRITES_LAA) {
       
  3338 		/* activate the work around */
       
  3339 		e1000e_set_laa_state_82571(&adapter->hw, 1);
       
  3340 
       
  3341 		/*
       
  3342 		 * Hold a copy of the LAA in RAR[14] This is done so that
       
  3343 		 * between the time RAR[0] gets clobbered  and the time it
       
  3344 		 * gets fixed (in e1000_watchdog), the actual LAA is in one
       
  3345 		 * of the RARs and no incoming packets directed to this port
       
  3346 		 * are dropped. Eventually the LAA will be in RAR[0] and
       
  3347 		 * RAR[14]
       
  3348 		 */
       
  3349 		e1000e_rar_set(&adapter->hw,
       
  3350 			      adapter->hw.mac.addr,
       
  3351 			      adapter->hw.mac.rar_entry_count - 1);
       
  3352 	}
       
  3353 
       
  3354 	return 0;
       
  3355 }
       
  3356 
       
  3357 /**
       
  3358  * e1000e_update_phy_task - work thread to update phy
       
  3359  * @work: pointer to our work struct
       
  3360  *
       
  3361  * this worker thread exists because we must acquire a
       
  3362  * semaphore to read the phy, which we could msleep while
       
  3363  * waiting for it, and we can't msleep in a timer.
       
  3364  **/
       
  3365 static void e1000e_update_phy_task(struct work_struct *work)
       
  3366 {
       
  3367 	struct e1000_adapter *adapter = container_of(work,
       
  3368 					struct e1000_adapter, update_phy_task);
       
  3369 	e1000_get_phy_info(&adapter->hw);
       
  3370 }
       
  3371 
       
  3372 /*
       
  3373  * Need to wait a few seconds after link up to get diagnostic information from
       
  3374  * the phy
       
  3375  */
       
  3376 static void e1000_update_phy_info(unsigned long data)
       
  3377 {
       
  3378 	struct e1000_adapter *adapter = (struct e1000_adapter *) data;
       
  3379 	schedule_work(&adapter->update_phy_task);
       
  3380 }
       
  3381 
       
  3382 /**
       
  3383  * e1000e_update_stats - Update the board statistics counters
       
  3384  * @adapter: board private structure
       
  3385  **/
       
  3386 void e1000e_update_stats(struct e1000_adapter *adapter)
       
  3387 {
       
  3388 	struct e1000_hw *hw = &adapter->hw;
       
  3389 	struct pci_dev *pdev = adapter->pdev;
       
  3390 	u16 phy_data;
       
  3391 
       
  3392 	/*
       
  3393 	 * Prevent stats update while adapter is being reset, or if the pci
       
  3394 	 * connection is down.
       
  3395 	 */
       
  3396 	if (adapter->link_speed == 0)
       
  3397 		return;
       
  3398 	if (pci_channel_offline(pdev))
       
  3399 		return;
       
  3400 
       
  3401 	adapter->stats.crcerrs += er32(CRCERRS);
       
  3402 	adapter->stats.gprc += er32(GPRC);
       
  3403 	adapter->stats.gorc += er32(GORCL);
       
  3404 	er32(GORCH); /* Clear gorc */
       
  3405 	adapter->stats.bprc += er32(BPRC);
       
  3406 	adapter->stats.mprc += er32(MPRC);
       
  3407 	adapter->stats.roc += er32(ROC);
       
  3408 
       
  3409 	adapter->stats.mpc += er32(MPC);
       
  3410 	if ((hw->phy.type == e1000_phy_82578) ||
       
  3411 	    (hw->phy.type == e1000_phy_82577)) {
       
  3412 		e1e_rphy(hw, HV_SCC_UPPER, &phy_data);
       
  3413 		e1e_rphy(hw, HV_SCC_LOWER, &phy_data);
       
  3414 		adapter->stats.scc += phy_data;
       
  3415 
       
  3416 		e1e_rphy(hw, HV_ECOL_UPPER, &phy_data);
       
  3417 		e1e_rphy(hw, HV_ECOL_LOWER, &phy_data);
       
  3418 		adapter->stats.ecol += phy_data;
       
  3419 
       
  3420 		e1e_rphy(hw, HV_MCC_UPPER, &phy_data);
       
  3421 		e1e_rphy(hw, HV_MCC_LOWER, &phy_data);
       
  3422 		adapter->stats.mcc += phy_data;
       
  3423 
       
  3424 		e1e_rphy(hw, HV_LATECOL_UPPER, &phy_data);
       
  3425 		e1e_rphy(hw, HV_LATECOL_LOWER, &phy_data);
       
  3426 		adapter->stats.latecol += phy_data;
       
  3427 
       
  3428 		e1e_rphy(hw, HV_DC_UPPER, &phy_data);
       
  3429 		e1e_rphy(hw, HV_DC_LOWER, &phy_data);
       
  3430 		adapter->stats.dc += phy_data;
       
  3431 	} else {
       
  3432 		adapter->stats.scc += er32(SCC);
       
  3433 		adapter->stats.ecol += er32(ECOL);
       
  3434 		adapter->stats.mcc += er32(MCC);
       
  3435 		adapter->stats.latecol += er32(LATECOL);
       
  3436 		adapter->stats.dc += er32(DC);
       
  3437 	}
       
  3438 	adapter->stats.xonrxc += er32(XONRXC);
       
  3439 	adapter->stats.xontxc += er32(XONTXC);
       
  3440 	adapter->stats.xoffrxc += er32(XOFFRXC);
       
  3441 	adapter->stats.xofftxc += er32(XOFFTXC);
       
  3442 	adapter->stats.gptc += er32(GPTC);
       
  3443 	adapter->stats.gotc += er32(GOTCL);
       
  3444 	er32(GOTCH); /* Clear gotc */
       
  3445 	adapter->stats.rnbc += er32(RNBC);
       
  3446 	adapter->stats.ruc += er32(RUC);
       
  3447 
       
  3448 	adapter->stats.mptc += er32(MPTC);
       
  3449 	adapter->stats.bptc += er32(BPTC);
       
  3450 
       
  3451 	/* used for adaptive IFS */
       
  3452 
       
  3453 	hw->mac.tx_packet_delta = er32(TPT);
       
  3454 	adapter->stats.tpt += hw->mac.tx_packet_delta;
       
  3455 	if ((hw->phy.type == e1000_phy_82578) ||
       
  3456 	    (hw->phy.type == e1000_phy_82577)) {
       
  3457 		e1e_rphy(hw, HV_COLC_UPPER, &phy_data);
       
  3458 		e1e_rphy(hw, HV_COLC_LOWER, &phy_data);
       
  3459 		hw->mac.collision_delta = phy_data;
       
  3460 	} else {
       
  3461 		hw->mac.collision_delta = er32(COLC);
       
  3462 	}
       
  3463 	adapter->stats.colc += hw->mac.collision_delta;
       
  3464 
       
  3465 	adapter->stats.algnerrc += er32(ALGNERRC);
       
  3466 	adapter->stats.rxerrc += er32(RXERRC);
       
  3467 	if ((hw->phy.type == e1000_phy_82578) ||
       
  3468 	    (hw->phy.type == e1000_phy_82577)) {
       
  3469 		e1e_rphy(hw, HV_TNCRS_UPPER, &phy_data);
       
  3470 		e1e_rphy(hw, HV_TNCRS_LOWER, &phy_data);
       
  3471 		adapter->stats.tncrs += phy_data;
       
  3472 	} else {
       
  3473 		if ((hw->mac.type != e1000_82574) &&
       
  3474 		    (hw->mac.type != e1000_82583))
       
  3475 			adapter->stats.tncrs += er32(TNCRS);
       
  3476 	}
       
  3477 	adapter->stats.cexterr += er32(CEXTERR);
       
  3478 	adapter->stats.tsctc += er32(TSCTC);
       
  3479 	adapter->stats.tsctfc += er32(TSCTFC);
       
  3480 
       
  3481 	/* Fill out the OS statistics structure */
       
  3482 	adapter->net_stats.multicast = adapter->stats.mprc;
       
  3483 	adapter->net_stats.collisions = adapter->stats.colc;
       
  3484 
       
  3485 	/* Rx Errors */
       
  3486 
       
  3487 	/*
       
  3488 	 * RLEC on some newer hardware can be incorrect so build
       
  3489 	 * our own version based on RUC and ROC
       
  3490 	 */
       
  3491 	adapter->net_stats.rx_errors = adapter->stats.rxerrc +
       
  3492 		adapter->stats.crcerrs + adapter->stats.algnerrc +
       
  3493 		adapter->stats.ruc + adapter->stats.roc +
       
  3494 		adapter->stats.cexterr;
       
  3495 	adapter->net_stats.rx_length_errors = adapter->stats.ruc +
       
  3496 					      adapter->stats.roc;
       
  3497 	adapter->net_stats.rx_crc_errors = adapter->stats.crcerrs;
       
  3498 	adapter->net_stats.rx_frame_errors = adapter->stats.algnerrc;
       
  3499 	adapter->net_stats.rx_missed_errors = adapter->stats.mpc;
       
  3500 
       
  3501 	/* Tx Errors */
       
  3502 	adapter->net_stats.tx_errors = adapter->stats.ecol +
       
  3503 				       adapter->stats.latecol;
       
  3504 	adapter->net_stats.tx_aborted_errors = adapter->stats.ecol;
       
  3505 	adapter->net_stats.tx_window_errors = adapter->stats.latecol;
       
  3506 	adapter->net_stats.tx_carrier_errors = adapter->stats.tncrs;
       
  3507 
       
  3508 	/* Tx Dropped needs to be maintained elsewhere */
       
  3509 
       
  3510 	/* Management Stats */
       
  3511 	adapter->stats.mgptc += er32(MGTPTC);
       
  3512 	adapter->stats.mgprc += er32(MGTPRC);
       
  3513 	adapter->stats.mgpdc += er32(MGTPDC);
       
  3514 }
       
  3515 
       
  3516 /**
       
  3517  * e1000_phy_read_status - Update the PHY register status snapshot
       
  3518  * @adapter: board private structure
       
  3519  **/
       
  3520 static void e1000_phy_read_status(struct e1000_adapter *adapter)
       
  3521 {
       
  3522 	struct e1000_hw *hw = &adapter->hw;
       
  3523 	struct e1000_phy_regs *phy = &adapter->phy_regs;
       
  3524 	int ret_val;
       
  3525 
       
  3526 	if ((er32(STATUS) & E1000_STATUS_LU) &&
       
  3527 	    (adapter->hw.phy.media_type == e1000_media_type_copper)) {
       
  3528 		ret_val  = e1e_rphy(hw, PHY_CONTROL, &phy->bmcr);
       
  3529 		ret_val |= e1e_rphy(hw, PHY_STATUS, &phy->bmsr);
       
  3530 		ret_val |= e1e_rphy(hw, PHY_AUTONEG_ADV, &phy->advertise);
       
  3531 		ret_val |= e1e_rphy(hw, PHY_LP_ABILITY, &phy->lpa);
       
  3532 		ret_val |= e1e_rphy(hw, PHY_AUTONEG_EXP, &phy->expansion);
       
  3533 		ret_val |= e1e_rphy(hw, PHY_1000T_CTRL, &phy->ctrl1000);
       
  3534 		ret_val |= e1e_rphy(hw, PHY_1000T_STATUS, &phy->stat1000);
       
  3535 		ret_val |= e1e_rphy(hw, PHY_EXT_STATUS, &phy->estatus);
       
  3536 		if (ret_val)
       
  3537 			e_warn("Error reading PHY register\n");
       
  3538 	} else {
       
  3539 		/*
       
  3540 		 * Do not read PHY registers if link is not up
       
  3541 		 * Set values to typical power-on defaults
       
  3542 		 */
       
  3543 		phy->bmcr = (BMCR_SPEED1000 | BMCR_ANENABLE | BMCR_FULLDPLX);
       
  3544 		phy->bmsr = (BMSR_100FULL | BMSR_100HALF | BMSR_10FULL |
       
  3545 			     BMSR_10HALF | BMSR_ESTATEN | BMSR_ANEGCAPABLE |
       
  3546 			     BMSR_ERCAP);
       
  3547 		phy->advertise = (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP |
       
  3548 				  ADVERTISE_ALL | ADVERTISE_CSMA);
       
  3549 		phy->lpa = 0;
       
  3550 		phy->expansion = EXPANSION_ENABLENPAGE;
       
  3551 		phy->ctrl1000 = ADVERTISE_1000FULL;
       
  3552 		phy->stat1000 = 0;
       
  3553 		phy->estatus = (ESTATUS_1000_TFULL | ESTATUS_1000_THALF);
       
  3554 	}
       
  3555 }
       
  3556 
       
  3557 static void e1000_print_link_info(struct e1000_adapter *adapter)
       
  3558 {
       
  3559 	struct e1000_hw *hw = &adapter->hw;
       
  3560 	u32 ctrl = er32(CTRL);
       
  3561 
       
  3562 	/* Link status message must follow this format for user tools */
       
  3563 	printk(KERN_INFO "e1000e: %s NIC Link is Up %d Mbps %s, "
       
  3564 	       "Flow Control: %s\n",
       
  3565 	       adapter->netdev->name,
       
  3566 	       adapter->link_speed,
       
  3567 	       (adapter->link_duplex == FULL_DUPLEX) ?
       
  3568 	                        "Full Duplex" : "Half Duplex",
       
  3569 	       ((ctrl & E1000_CTRL_TFCE) && (ctrl & E1000_CTRL_RFCE)) ?
       
  3570 	                        "RX/TX" :
       
  3571 	       ((ctrl & E1000_CTRL_RFCE) ? "RX" :
       
  3572 	       ((ctrl & E1000_CTRL_TFCE) ? "TX" : "None" )));
       
  3573 }
       
  3574 
       
  3575 bool e1000_has_link(struct e1000_adapter *adapter)
       
  3576 {
       
  3577 	struct e1000_hw *hw = &adapter->hw;
       
  3578 	bool link_active = 0;
       
  3579 	s32 ret_val = 0;
       
  3580 
       
  3581 	/*
       
  3582 	 * get_link_status is set on LSC (link status) interrupt or
       
  3583 	 * Rx sequence error interrupt.  get_link_status will stay
       
  3584 	 * false until the check_for_link establishes link
       
  3585 	 * for copper adapters ONLY
       
  3586 	 */
       
  3587 	switch (hw->phy.media_type) {
       
  3588 	case e1000_media_type_copper:
       
  3589 		if (hw->mac.get_link_status) {
       
  3590 			ret_val = hw->mac.ops.check_for_link(hw);
       
  3591 			link_active = !hw->mac.get_link_status;
       
  3592 		} else {
       
  3593 			link_active = 1;
       
  3594 		}
       
  3595 		break;
       
  3596 	case e1000_media_type_fiber:
       
  3597 		ret_val = hw->mac.ops.check_for_link(hw);
       
  3598 		link_active = !!(er32(STATUS) & E1000_STATUS_LU);
       
  3599 		break;
       
  3600 	case e1000_media_type_internal_serdes:
       
  3601 		ret_val = hw->mac.ops.check_for_link(hw);
       
  3602 		link_active = adapter->hw.mac.serdes_has_link;
       
  3603 		break;
       
  3604 	default:
       
  3605 	case e1000_media_type_unknown:
       
  3606 		break;
       
  3607 	}
       
  3608 
       
  3609 	if ((ret_val == E1000_ERR_PHY) && (hw->phy.type == e1000_phy_igp_3) &&
       
  3610 	    (er32(CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
       
  3611 		/* See e1000_kmrn_lock_loss_workaround_ich8lan() */
       
  3612 		e_info("Gigabit has been disabled, downgrading speed\n");
       
  3613 	}
       
  3614 
       
  3615 	return link_active;
       
  3616 }
       
  3617 
       
  3618 static void e1000e_enable_receives(struct e1000_adapter *adapter)
       
  3619 {
       
  3620 	/* make sure the receive unit is started */
       
  3621 	if ((adapter->flags & FLAG_RX_NEEDS_RESTART) &&
       
  3622 	    (adapter->flags & FLAG_RX_RESTART_NOW)) {
       
  3623 		struct e1000_hw *hw = &adapter->hw;
       
  3624 		u32 rctl = er32(RCTL);
       
  3625 		ew32(RCTL, rctl | E1000_RCTL_EN);
       
  3626 		adapter->flags &= ~FLAG_RX_RESTART_NOW;
       
  3627 	}
       
  3628 }
       
  3629 
       
  3630 /**
       
  3631  * e1000_watchdog - Timer Call-back
       
  3632  * @data: pointer to adapter cast into an unsigned long
       
  3633  **/
       
  3634 static void e1000_watchdog(unsigned long data)
       
  3635 {
       
  3636 	struct e1000_adapter *adapter = (struct e1000_adapter *) data;
       
  3637 
       
  3638 	/* Do the rest outside of interrupt context */
       
  3639 	schedule_work(&adapter->watchdog_task);
       
  3640 
       
  3641 	/* TODO: make this use queue_delayed_work() */
       
  3642 }
       
  3643 
       
  3644 static void e1000_watchdog_task(struct work_struct *work)
       
  3645 {
       
  3646 	struct e1000_adapter *adapter = container_of(work,
       
  3647 					struct e1000_adapter, watchdog_task);
       
  3648 	struct net_device *netdev = adapter->netdev;
       
  3649 	struct e1000_mac_info *mac = &adapter->hw.mac;
       
  3650 	struct e1000_phy_info *phy = &adapter->hw.phy;
       
  3651 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  3652 	struct e1000_hw *hw = &adapter->hw;
       
  3653 	u32 link, tctl;
       
  3654 	int tx_pending = 0;
       
  3655 
       
  3656 	link = e1000_has_link(adapter);
       
  3657 	if ((adapter->ecdev && (ecdev_get_link(adapter->ecdev)) && link)
       
  3658 			|| (!adapter->ecdev && (netif_carrier_ok(netdev)) && link)) {
       
  3659 		e1000e_enable_receives(adapter);
       
  3660 		goto link_up;
       
  3661 	}
       
  3662 
       
  3663 	if ((e1000e_enable_tx_pkt_filtering(hw)) &&
       
  3664 	    (adapter->mng_vlan_id != adapter->hw.mng_cookie.vlan_id))
       
  3665 		e1000_update_mng_vlan(adapter);
       
  3666 
       
  3667 	if (link) {
       
  3668 		if ((adapter->ecdev && !ecdev_get_link(adapter->ecdev)) 
       
  3669 				|| (!adapter->ecdev && !netif_carrier_ok(netdev))) {
       
  3670 			bool txb2b = 1;
       
  3671 			/* update snapshot of PHY registers on LSC */
       
  3672 			e1000_phy_read_status(adapter);
       
  3673 			mac->ops.get_link_up_info(&adapter->hw,
       
  3674 						   &adapter->link_speed,
       
  3675 						   &adapter->link_duplex);
       
  3676 			e1000_print_link_info(adapter);
       
  3677 			/*
       
  3678 			 * On supported PHYs, check for duplex mismatch only
       
  3679 			 * if link has autonegotiated at 10/100 half
       
  3680 			 */
       
  3681 			if ((hw->phy.type == e1000_phy_igp_3 ||
       
  3682 			     hw->phy.type == e1000_phy_bm) &&
       
  3683 			    (hw->mac.autoneg == true) &&
       
  3684 			    (adapter->link_speed == SPEED_10 ||
       
  3685 			     adapter->link_speed == SPEED_100) &&
       
  3686 			    (adapter->link_duplex == HALF_DUPLEX)) {
       
  3687 				u16 autoneg_exp;
       
  3688 
       
  3689 				e1e_rphy(hw, PHY_AUTONEG_EXP, &autoneg_exp);
       
  3690 
       
  3691 				if (!(autoneg_exp & NWAY_ER_LP_NWAY_CAPS))
       
  3692 					e_info("Autonegotiated half duplex but"
       
  3693 					       " link partner cannot autoneg. "
       
  3694 					       " Try forcing full duplex if "
       
  3695 					       "link gets many collisions.\n");
       
  3696 			}
       
  3697 
       
  3698 			/*
       
  3699 			 * tweak tx_queue_len according to speed/duplex
       
  3700 			 * and adjust the timeout factor
       
  3701 			 */
       
  3702 			netdev->tx_queue_len = adapter->tx_queue_len;
       
  3703 			adapter->tx_timeout_factor = 1;
       
  3704 			switch (adapter->link_speed) {
       
  3705 			case SPEED_10:
       
  3706 				txb2b = 0;
       
  3707 				netdev->tx_queue_len = 10;
       
  3708 				adapter->tx_timeout_factor = 16;
       
  3709 				break;
       
  3710 			case SPEED_100:
       
  3711 				txb2b = 0;
       
  3712 				netdev->tx_queue_len = 100;
       
  3713 				adapter->tx_timeout_factor = 10;
       
  3714 				break;
       
  3715 			}
       
  3716 
       
  3717 			/*
       
  3718 			 * workaround: re-program speed mode bit after
       
  3719 			 * link-up event
       
  3720 			 */
       
  3721 			if ((adapter->flags & FLAG_TARC_SPEED_MODE_BIT) &&
       
  3722 			    !txb2b) {
       
  3723 				u32 tarc0;
       
  3724 				tarc0 = er32(TARC(0));
       
  3725 				tarc0 &= ~SPEED_MODE_BIT;
       
  3726 				ew32(TARC(0), tarc0);
       
  3727 			}
       
  3728 
       
  3729 			/*
       
  3730 			 * disable TSO for pcie and 10/100 speeds, to avoid
       
  3731 			 * some hardware issues
       
  3732 			 */
       
  3733 			if (!(adapter->flags & FLAG_TSO_FORCE)) {
       
  3734 				switch (adapter->link_speed) {
       
  3735 				case SPEED_10:
       
  3736 				case SPEED_100:
       
  3737 					e_info("10/100 speed: disabling TSO\n");
       
  3738 					netdev->features &= ~NETIF_F_TSO;
       
  3739 					netdev->features &= ~NETIF_F_TSO6;
       
  3740 					break;
       
  3741 				case SPEED_1000:
       
  3742 					netdev->features |= NETIF_F_TSO;
       
  3743 					netdev->features |= NETIF_F_TSO6;
       
  3744 					break;
       
  3745 				default:
       
  3746 					/* oops */
       
  3747 					break;
       
  3748 				}
       
  3749 			}
       
  3750 
       
  3751 			/*
       
  3752 			 * enable transmits in the hardware, need to do this
       
  3753 			 * after setting TARC(0)
       
  3754 			 */
       
  3755 			tctl = er32(TCTL);
       
  3756 			tctl |= E1000_TCTL_EN;
       
  3757 			ew32(TCTL, tctl);
       
  3758 
       
  3759                         /*
       
  3760 			 * Perform any post-link-up configuration before
       
  3761 			 * reporting link up.
       
  3762 			 */
       
  3763 			if (phy->ops.cfg_on_link_up)
       
  3764 				phy->ops.cfg_on_link_up(hw);
       
  3765 
       
  3766 			if (adapter->ecdev)
       
  3767 				ecdev_set_link(adapter->ecdev, 1);
       
  3768 			else 
       
  3769 				netif_carrier_on(netdev);
       
  3770 
       
  3771 			if (!adapter->ecdev && !test_bit(__E1000_DOWN, &adapter->state))
       
  3772 				mod_timer(&adapter->phy_info_timer,
       
  3773 					  round_jiffies(jiffies + 2 * HZ));
       
  3774 		}
       
  3775 	} else {
       
  3776 		if ((adapter->ecdev && ecdev_get_link(adapter->ecdev)) 
       
  3777 				|| (!adapter->ecdev && netif_carrier_ok(netdev))) {
       
  3778 			adapter->link_speed = 0;
       
  3779 			adapter->link_duplex = 0;
       
  3780 			/* Link status message must follow this format */
       
  3781 			printk(KERN_INFO "e1000e: %s NIC Link is Down\n",
       
  3782 			       adapter->netdev->name);
       
  3783 			if (adapter->ecdev)
       
  3784 				ecdev_set_link(adapter->ecdev, 0);
       
  3785 			else
       
  3786 				netif_carrier_off(netdev);
       
  3787 			if (!adapter->ecdev && !test_bit(__E1000_DOWN, &adapter->state))
       
  3788 				mod_timer(&adapter->phy_info_timer,
       
  3789 					  round_jiffies(jiffies + 2 * HZ));
       
  3790 
       
  3791 			if (adapter->flags & FLAG_RX_NEEDS_RESTART)
       
  3792 				schedule_work(&adapter->reset_task);
       
  3793 		}
       
  3794 	}
       
  3795 
       
  3796 link_up:
       
  3797 	e1000e_update_stats(adapter);
       
  3798 
       
  3799 	mac->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
       
  3800 	adapter->tpt_old = adapter->stats.tpt;
       
  3801 	mac->collision_delta = adapter->stats.colc - adapter->colc_old;
       
  3802 	adapter->colc_old = adapter->stats.colc;
       
  3803 
       
  3804 	adapter->gorc = adapter->stats.gorc - adapter->gorc_old;
       
  3805 	adapter->gorc_old = adapter->stats.gorc;
       
  3806 	adapter->gotc = adapter->stats.gotc - adapter->gotc_old;
       
  3807 	adapter->gotc_old = adapter->stats.gotc;
       
  3808 
       
  3809 	e1000e_update_adaptive(&adapter->hw);
       
  3810 
       
  3811 	if ((adapter->ecdev && !ecdev_get_link(adapter->ecdev)) 
       
  3812 			|| (!adapter->ecdev && !netif_carrier_ok(netdev))) {
       
  3813 		tx_pending = (e1000_desc_unused(tx_ring) + 1 <
       
  3814 			       tx_ring->count);
       
  3815 		if (tx_pending) {
       
  3816 			/*
       
  3817 			 * We've lost link, so the controller stops DMA,
       
  3818 			 * but we've got queued Tx work that's never going
       
  3819 			 * to get done, so reset controller to flush Tx.
       
  3820 			 * (Do the reset outside of interrupt context).
       
  3821 			 */
       
  3822 			adapter->tx_timeout_count++;
       
  3823 			schedule_work(&adapter->reset_task);
       
  3824 			/* return immediately since reset is imminent */
       
  3825 			return;
       
  3826 		}
       
  3827 	}
       
  3828 
       
  3829 	/* Cause software interrupt to ensure Rx ring is cleaned */
       
  3830 	if (adapter->msix_entries)
       
  3831 		ew32(ICS, adapter->rx_ring->ims_val);
       
  3832 	else
       
  3833 		ew32(ICS, E1000_ICS_RXDMT0);
       
  3834 
       
  3835 	/* Force detection of hung controller every watchdog period */
       
  3836 	adapter->detect_tx_hung = 1;
       
  3837 
       
  3838 	/*
       
  3839 	 * With 82571 controllers, LAA may be overwritten due to controller
       
  3840 	 * reset from the other port. Set the appropriate LAA in RAR[0]
       
  3841 	 */
       
  3842 	if (e1000e_get_laa_state_82571(hw))
       
  3843 		e1000e_rar_set(hw, adapter->hw.mac.addr, 0);
       
  3844 
       
  3845 	/* Reset the timer */
       
  3846 	if (!adapter->ecdev && !test_bit(__E1000_DOWN, &adapter->state))
       
  3847 		mod_timer(&adapter->watchdog_timer,
       
  3848 			  round_jiffies(jiffies + 2 * HZ));
       
  3849 }
       
  3850 
       
  3851 #define E1000_TX_FLAGS_CSUM		0x00000001
       
  3852 #define E1000_TX_FLAGS_VLAN		0x00000002
       
  3853 #define E1000_TX_FLAGS_TSO		0x00000004
       
  3854 #define E1000_TX_FLAGS_IPV4		0x00000008
       
  3855 #define E1000_TX_FLAGS_VLAN_MASK	0xffff0000
       
  3856 #define E1000_TX_FLAGS_VLAN_SHIFT	16
       
  3857 
       
  3858 static int e1000_tso(struct e1000_adapter *adapter,
       
  3859 		     struct sk_buff *skb)
       
  3860 {
       
  3861 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  3862 	struct e1000_context_desc *context_desc;
       
  3863 	struct e1000_buffer *buffer_info;
       
  3864 	unsigned int i;
       
  3865 	u32 cmd_length = 0;
       
  3866 	u16 ipcse = 0, tucse, mss;
       
  3867 	u8 ipcss, ipcso, tucss, tucso, hdr_len;
       
  3868 	int err;
       
  3869 
       
  3870 	if (skb_is_gso(skb)) {
       
  3871 		if (skb_header_cloned(skb)) {
       
  3872 			err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
       
  3873 			if (err)
       
  3874 				return err;
       
  3875 		}
       
  3876 
       
  3877 		hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
       
  3878 		mss = skb_shinfo(skb)->gso_size;
       
  3879 		if (skb->protocol == htons(ETH_P_IP)) {
       
  3880 			struct iphdr *iph = ip_hdr(skb);
       
  3881 			iph->tot_len = 0;
       
  3882 			iph->check = 0;
       
  3883 			tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
       
  3884 								 iph->daddr, 0,
       
  3885 								 IPPROTO_TCP,
       
  3886 								 0);
       
  3887 			cmd_length = E1000_TXD_CMD_IP;
       
  3888 			ipcse = skb_transport_offset(skb) - 1;
       
  3889 		} else if (skb_shinfo(skb)->gso_type == SKB_GSO_TCPV6) {
       
  3890 			ipv6_hdr(skb)->payload_len = 0;
       
  3891 			tcp_hdr(skb)->check =
       
  3892 				~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
       
  3893 						 &ipv6_hdr(skb)->daddr,
       
  3894 						 0, IPPROTO_TCP, 0);
       
  3895 			ipcse = 0;
       
  3896 		}
       
  3897 		ipcss = skb_network_offset(skb);
       
  3898 		ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
       
  3899 		tucss = skb_transport_offset(skb);
       
  3900 		tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
       
  3901 		tucse = 0;
       
  3902 
       
  3903 		cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
       
  3904 			       E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
       
  3905 
       
  3906 		i = tx_ring->next_to_use;
       
  3907 		context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
       
  3908 		buffer_info = &tx_ring->buffer_info[i];
       
  3909 
       
  3910 		context_desc->lower_setup.ip_fields.ipcss  = ipcss;
       
  3911 		context_desc->lower_setup.ip_fields.ipcso  = ipcso;
       
  3912 		context_desc->lower_setup.ip_fields.ipcse  = cpu_to_le16(ipcse);
       
  3913 		context_desc->upper_setup.tcp_fields.tucss = tucss;
       
  3914 		context_desc->upper_setup.tcp_fields.tucso = tucso;
       
  3915 		context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
       
  3916 		context_desc->tcp_seg_setup.fields.mss     = cpu_to_le16(mss);
       
  3917 		context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
       
  3918 		context_desc->cmd_and_length = cpu_to_le32(cmd_length);
       
  3919 
       
  3920 		buffer_info->time_stamp = jiffies;
       
  3921 		buffer_info->next_to_watch = i;
       
  3922 
       
  3923 		i++;
       
  3924 		if (i == tx_ring->count)
       
  3925 			i = 0;
       
  3926 		tx_ring->next_to_use = i;
       
  3927 
       
  3928 		return 1;
       
  3929 	}
       
  3930 
       
  3931 	return 0;
       
  3932 }
       
  3933 
       
  3934 static bool e1000_tx_csum(struct e1000_adapter *adapter, struct sk_buff *skb)
       
  3935 {
       
  3936 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  3937 	struct e1000_context_desc *context_desc;
       
  3938 	struct e1000_buffer *buffer_info;
       
  3939 	unsigned int i;
       
  3940 	u8 css;
       
  3941 	u32 cmd_len = E1000_TXD_CMD_DEXT;
       
  3942 	__be16 protocol;
       
  3943 
       
  3944 	if (skb->ip_summed != CHECKSUM_PARTIAL)
       
  3945 		return 0;
       
  3946 
       
  3947 	if (skb->protocol == cpu_to_be16(ETH_P_8021Q))
       
  3948 		protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
       
  3949 	else
       
  3950 		protocol = skb->protocol;
       
  3951 
       
  3952 	switch (protocol) {
       
  3953 	case cpu_to_be16(ETH_P_IP):
       
  3954 		if (ip_hdr(skb)->protocol == IPPROTO_TCP)
       
  3955 			cmd_len |= E1000_TXD_CMD_TCP;
       
  3956 		break;
       
  3957 	case cpu_to_be16(ETH_P_IPV6):
       
  3958 		/* XXX not handling all IPV6 headers */
       
  3959 		if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
       
  3960 			cmd_len |= E1000_TXD_CMD_TCP;
       
  3961 		break;
       
  3962 	default:
       
  3963 		if (unlikely(net_ratelimit()))
       
  3964 			e_warn("checksum_partial proto=%x!\n",
       
  3965 			       be16_to_cpu(protocol));
       
  3966 		break;
       
  3967 	}
       
  3968 
       
  3969 	css = skb_transport_offset(skb);
       
  3970 
       
  3971 	i = tx_ring->next_to_use;
       
  3972 	buffer_info = &tx_ring->buffer_info[i];
       
  3973 	context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
       
  3974 
       
  3975 	context_desc->lower_setup.ip_config = 0;
       
  3976 	context_desc->upper_setup.tcp_fields.tucss = css;
       
  3977 	context_desc->upper_setup.tcp_fields.tucso =
       
  3978 				css + skb->csum_offset;
       
  3979 	context_desc->upper_setup.tcp_fields.tucse = 0;
       
  3980 	context_desc->tcp_seg_setup.data = 0;
       
  3981 	context_desc->cmd_and_length = cpu_to_le32(cmd_len);
       
  3982 
       
  3983 	buffer_info->time_stamp = jiffies;
       
  3984 	buffer_info->next_to_watch = i;
       
  3985 
       
  3986 	i++;
       
  3987 	if (i == tx_ring->count)
       
  3988 		i = 0;
       
  3989 	tx_ring->next_to_use = i;
       
  3990 
       
  3991 	return 1;
       
  3992 }
       
  3993 
       
  3994 #define E1000_MAX_PER_TXD	8192
       
  3995 #define E1000_MAX_TXD_PWR	12
       
  3996 
       
  3997 static int e1000_tx_map(struct e1000_adapter *adapter,
       
  3998 			struct sk_buff *skb, unsigned int first,
       
  3999 			unsigned int max_per_txd, unsigned int nr_frags,
       
  4000 			unsigned int mss)
       
  4001 {
       
  4002 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  4003 	struct e1000_buffer *buffer_info;
       
  4004 	unsigned int len = skb_headlen(skb);
       
  4005 	unsigned int offset, size, count = 0, i;
       
  4006 	unsigned int f;
       
  4007 	dma_addr_t *map;
       
  4008 
       
  4009 	i = tx_ring->next_to_use;
       
  4010 
       
  4011 	if (skb_dma_map(&adapter->pdev->dev, skb, DMA_TO_DEVICE)) {
       
  4012 		dev_err(&adapter->pdev->dev, "TX DMA map failed\n");
       
  4013 		adapter->tx_dma_failed++;
       
  4014 		return 0;
       
  4015 	}
       
  4016 
       
  4017 	map = skb_shinfo(skb)->dma_maps;
       
  4018 	offset = 0;
       
  4019 
       
  4020 	while (len) {
       
  4021 		buffer_info = &tx_ring->buffer_info[i];
       
  4022 		size = min(len, max_per_txd);
       
  4023 
       
  4024 		buffer_info->length = size;
       
  4025 		buffer_info->time_stamp = jiffies;
       
  4026 		buffer_info->next_to_watch = i;
       
  4027 		buffer_info->dma = skb_shinfo(skb)->dma_head + offset;
       
  4028 		count++;
       
  4029 
       
  4030 		len -= size;
       
  4031 		offset += size;
       
  4032 
       
  4033 		if (len) {
       
  4034 			i++;
       
  4035 			if (i == tx_ring->count)
       
  4036 				i = 0;
       
  4037 		}
       
  4038 	}
       
  4039 
       
  4040 	for (f = 0; f < nr_frags; f++) {
       
  4041 		struct skb_frag_struct *frag;
       
  4042 
       
  4043 		frag = &skb_shinfo(skb)->frags[f];
       
  4044 		len = frag->size;
       
  4045 		offset = 0;
       
  4046 
       
  4047 		while (len) {
       
  4048 			i++;
       
  4049 			if (i == tx_ring->count)
       
  4050 				i = 0;
       
  4051 
       
  4052 			buffer_info = &tx_ring->buffer_info[i];
       
  4053 			size = min(len, max_per_txd);
       
  4054 
       
  4055 			buffer_info->length = size;
       
  4056 			buffer_info->time_stamp = jiffies;
       
  4057 			buffer_info->next_to_watch = i;
       
  4058 			buffer_info->dma = map[f] + offset;
       
  4059 
       
  4060 			len -= size;
       
  4061 			offset += size;
       
  4062 			count++;
       
  4063 		}
       
  4064 	}
       
  4065 
       
  4066 	tx_ring->buffer_info[i].skb = skb;
       
  4067 	tx_ring->buffer_info[first].next_to_watch = i;
       
  4068 
       
  4069 	return count;
       
  4070 }
       
  4071 
       
  4072 static void e1000_tx_queue(struct e1000_adapter *adapter,
       
  4073 			   int tx_flags, int count)
       
  4074 {
       
  4075 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  4076 	struct e1000_tx_desc *tx_desc = NULL;
       
  4077 	struct e1000_buffer *buffer_info;
       
  4078 	u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
       
  4079 	unsigned int i;
       
  4080 
       
  4081 	if (tx_flags & E1000_TX_FLAGS_TSO) {
       
  4082 		txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
       
  4083 			     E1000_TXD_CMD_TSE;
       
  4084 		txd_upper |= E1000_TXD_POPTS_TXSM << 8;
       
  4085 
       
  4086 		if (tx_flags & E1000_TX_FLAGS_IPV4)
       
  4087 			txd_upper |= E1000_TXD_POPTS_IXSM << 8;
       
  4088 	}
       
  4089 
       
  4090 	if (tx_flags & E1000_TX_FLAGS_CSUM) {
       
  4091 		txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
       
  4092 		txd_upper |= E1000_TXD_POPTS_TXSM << 8;
       
  4093 	}
       
  4094 
       
  4095 	if (tx_flags & E1000_TX_FLAGS_VLAN) {
       
  4096 		txd_lower |= E1000_TXD_CMD_VLE;
       
  4097 		txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
       
  4098 	}
       
  4099 
       
  4100 	i = tx_ring->next_to_use;
       
  4101 
       
  4102 	while (count--) {
       
  4103 		buffer_info = &tx_ring->buffer_info[i];
       
  4104 		tx_desc = E1000_TX_DESC(*tx_ring, i);
       
  4105 		tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
       
  4106 		tx_desc->lower.data =
       
  4107 			cpu_to_le32(txd_lower | buffer_info->length);
       
  4108 		tx_desc->upper.data = cpu_to_le32(txd_upper);
       
  4109 
       
  4110 		i++;
       
  4111 		if (i == tx_ring->count)
       
  4112 			i = 0;
       
  4113 	}
       
  4114 
       
  4115 	tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
       
  4116 
       
  4117 	/*
       
  4118 	 * Force memory writes to complete before letting h/w
       
  4119 	 * know there are new descriptors to fetch.  (Only
       
  4120 	 * applicable for weak-ordered memory model archs,
       
  4121 	 * such as IA-64).
       
  4122 	 */
       
  4123 	wmb();
       
  4124 
       
  4125 	tx_ring->next_to_use = i;
       
  4126 	writel(i, adapter->hw.hw_addr + tx_ring->tail);
       
  4127 	/*
       
  4128 	 * we need this if more than one processor can write to our tail
       
  4129 	 * at a time, it synchronizes IO on IA64/Altix systems
       
  4130 	 */
       
  4131 	mmiowb();
       
  4132 }
       
  4133 
       
  4134 #define MINIMUM_DHCP_PACKET_SIZE 282
       
  4135 static int e1000_transfer_dhcp_info(struct e1000_adapter *adapter,
       
  4136 				    struct sk_buff *skb)
       
  4137 {
       
  4138 	struct e1000_hw *hw =  &adapter->hw;
       
  4139 	u16 length, offset;
       
  4140 
       
  4141 	if (vlan_tx_tag_present(skb)) {
       
  4142 		if (!((vlan_tx_tag_get(skb) == adapter->hw.mng_cookie.vlan_id)
       
  4143 		    && (adapter->hw.mng_cookie.status &
       
  4144 			E1000_MNG_DHCP_COOKIE_STATUS_VLAN)))
       
  4145 			return 0;
       
  4146 	}
       
  4147 
       
  4148 	if (skb->len <= MINIMUM_DHCP_PACKET_SIZE)
       
  4149 		return 0;
       
  4150 
       
  4151 	if (((struct ethhdr *) skb->data)->h_proto != htons(ETH_P_IP))
       
  4152 		return 0;
       
  4153 
       
  4154 	{
       
  4155 		const struct iphdr *ip = (struct iphdr *)((u8 *)skb->data+14);
       
  4156 		struct udphdr *udp;
       
  4157 
       
  4158 		if (ip->protocol != IPPROTO_UDP)
       
  4159 			return 0;
       
  4160 
       
  4161 		udp = (struct udphdr *)((u8 *)ip + (ip->ihl << 2));
       
  4162 		if (ntohs(udp->dest) != 67)
       
  4163 			return 0;
       
  4164 
       
  4165 		offset = (u8 *)udp + 8 - skb->data;
       
  4166 		length = skb->len - offset;
       
  4167 		return e1000e_mng_write_dhcp_info(hw, (u8 *)udp + 8, length);
       
  4168 	}
       
  4169 
       
  4170 	return 0;
       
  4171 }
       
  4172 
       
  4173 static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
       
  4174 {
       
  4175 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4176 
       
  4177 	netif_stop_queue(netdev);
       
  4178 	/*
       
  4179 	 * Herbert's original patch had:
       
  4180 	 *  smp_mb__after_netif_stop_queue();
       
  4181 	 * but since that doesn't exist yet, just open code it.
       
  4182 	 */
       
  4183 	smp_mb();
       
  4184 
       
  4185 	/*
       
  4186 	 * We need to check again in a case another CPU has just
       
  4187 	 * made room available.
       
  4188 	 */
       
  4189 	if (e1000_desc_unused(adapter->tx_ring) < size)
       
  4190 		return -EBUSY;
       
  4191 
       
  4192 	/* A reprieve! */
       
  4193 	netif_start_queue(netdev);
       
  4194 	++adapter->restart_queue;
       
  4195 	return 0;
       
  4196 }
       
  4197 
       
  4198 static int e1000_maybe_stop_tx(struct net_device *netdev, int size)
       
  4199 {
       
  4200 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4201 
       
  4202 	if (e1000_desc_unused(adapter->tx_ring) >= size)
       
  4203 		return 0;
       
  4204 	return __e1000_maybe_stop_tx(netdev, size);
       
  4205 }
       
  4206 
       
  4207 #define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
       
  4208 static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
       
  4209 				    struct net_device *netdev)
       
  4210 {
       
  4211 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4212 	struct e1000_ring *tx_ring = adapter->tx_ring;
       
  4213 	unsigned int first;
       
  4214 	unsigned int max_per_txd = E1000_MAX_PER_TXD;
       
  4215 	unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
       
  4216 	unsigned int tx_flags = 0;
       
  4217 	unsigned int len = skb->len - skb->data_len;
       
  4218 	unsigned int nr_frags;
       
  4219 	unsigned int mss;
       
  4220 	int count = 0;
       
  4221 	int tso;
       
  4222 	unsigned int f;
       
  4223 
       
  4224 	if (test_bit(__E1000_DOWN, &adapter->state)) {
       
  4225 		if (!adapter->ecdev)
       
  4226 			dev_kfree_skb_any(skb);
       
  4227 		return NETDEV_TX_OK;
       
  4228 	}
       
  4229 
       
  4230 	if (skb->len <= 0) {
       
  4231 		if (!adapter->ecdev)
       
  4232 			dev_kfree_skb_any(skb);
       
  4233 		return NETDEV_TX_OK;
       
  4234 	}
       
  4235 
       
  4236 	mss = skb_shinfo(skb)->gso_size;
       
  4237 	/*
       
  4238 	 * The controller does a simple calculation to
       
  4239 	 * make sure there is enough room in the FIFO before
       
  4240 	 * initiating the DMA for each buffer.  The calc is:
       
  4241 	 * 4 = ceil(buffer len/mss).  To make sure we don't
       
  4242 	 * overrun the FIFO, adjust the max buffer len if mss
       
  4243 	 * drops.
       
  4244 	 */
       
  4245 	if (mss) {
       
  4246 		u8 hdr_len;
       
  4247 		max_per_txd = min(mss << 2, max_per_txd);
       
  4248 		max_txd_pwr = fls(max_per_txd) - 1;
       
  4249 
       
  4250 		/*
       
  4251 		 * TSO Workaround for 82571/2/3 Controllers -- if skb->data
       
  4252 		 * points to just header, pull a few bytes of payload from
       
  4253 		 * frags into skb->data
       
  4254 		 */
       
  4255 		hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
       
  4256 		/*
       
  4257 		 * we do this workaround for ES2LAN, but it is un-necessary,
       
  4258 		 * avoiding it could save a lot of cycles
       
  4259 		 */
       
  4260 		if (skb->data_len && (hdr_len == len)) {
       
  4261 			unsigned int pull_size;
       
  4262 
       
  4263 			pull_size = min((unsigned int)4, skb->data_len);
       
  4264 			if (!__pskb_pull_tail(skb, pull_size)) {
       
  4265 				e_err("__pskb_pull_tail failed.\n");
       
  4266 				if (!adapter->ecdev)
       
  4267 					dev_kfree_skb_any(skb);
       
  4268 				return NETDEV_TX_OK;
       
  4269 			}
       
  4270 			len = skb->len - skb->data_len;
       
  4271 		}
       
  4272 	}
       
  4273 
       
  4274 	/* reserve a descriptor for the offload context */
       
  4275 	if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
       
  4276 		count++;
       
  4277 	count++;
       
  4278 
       
  4279 	count += TXD_USE_COUNT(len, max_txd_pwr);
       
  4280 
       
  4281 	nr_frags = skb_shinfo(skb)->nr_frags;
       
  4282 	for (f = 0; f < nr_frags; f++)
       
  4283 		count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size,
       
  4284 				       max_txd_pwr);
       
  4285 
       
  4286 	if (adapter->hw.mac.tx_pkt_filtering)
       
  4287 		e1000_transfer_dhcp_info(adapter, skb);
       
  4288 
       
  4289 	/*
       
  4290 	 * need: count + 2 desc gap to keep tail from touching
       
  4291 	 * head, otherwise try next time
       
  4292 	 */
       
  4293 	if (!adapter->ecdev && e1000_maybe_stop_tx(netdev, count + 2))
       
  4294 		return NETDEV_TX_BUSY;
       
  4295 
       
  4296 	if (adapter->vlgrp && vlan_tx_tag_present(skb)) {
       
  4297 		tx_flags |= E1000_TX_FLAGS_VLAN;
       
  4298 		tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
       
  4299 	}
       
  4300 
       
  4301 	first = tx_ring->next_to_use;
       
  4302 
       
  4303 	tso = e1000_tso(adapter, skb);
       
  4304 	if (tso < 0) {
       
  4305 		if (!adapter->ecdev)
       
  4306 			dev_kfree_skb_any(skb);
       
  4307 		return NETDEV_TX_OK;
       
  4308 	}
       
  4309 
       
  4310 	if (tso)
       
  4311 		tx_flags |= E1000_TX_FLAGS_TSO;
       
  4312 	else if (e1000_tx_csum(adapter, skb))
       
  4313 		tx_flags |= E1000_TX_FLAGS_CSUM;
       
  4314 
       
  4315 	/*
       
  4316 	 * Old method was to assume IPv4 packet by default if TSO was enabled.
       
  4317 	 * 82571 hardware supports TSO capabilities for IPv6 as well...
       
  4318 	 * no longer assume, we must.
       
  4319 	 */
       
  4320 	if (skb->protocol == htons(ETH_P_IP))
       
  4321 		tx_flags |= E1000_TX_FLAGS_IPV4;
       
  4322 
       
  4323 	/* if count is 0 then mapping error has occured */
       
  4324 	count = e1000_tx_map(adapter, skb, first, max_per_txd, nr_frags, mss);
       
  4325 	if (count) {
       
  4326 		e1000_tx_queue(adapter, tx_flags, count);
       
  4327 		/* Make sure there is space in the ring for the next send. */
       
  4328 		if (!adapter->ecdev)
       
  4329 			e1000_maybe_stop_tx(netdev, MAX_SKB_FRAGS + 2);
       
  4330 
       
  4331 	} else {
       
  4332 		if (!adapter->ecdev)
       
  4333 			dev_kfree_skb_any(skb);
       
  4334 		tx_ring->buffer_info[first].time_stamp = 0;
       
  4335 		tx_ring->next_to_use = first;
       
  4336 	}
       
  4337 
       
  4338 	return NETDEV_TX_OK;
       
  4339 }
       
  4340 
       
  4341 /**
       
  4342  * e1000_tx_timeout - Respond to a Tx Hang
       
  4343  * @netdev: network interface device structure
       
  4344  **/
       
  4345 static void e1000_tx_timeout(struct net_device *netdev)
       
  4346 {
       
  4347 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4348 
       
  4349 	/* Do the reset outside of interrupt context */
       
  4350 	adapter->tx_timeout_count++;
       
  4351 	schedule_work(&adapter->reset_task);
       
  4352 }
       
  4353 
       
  4354 static void e1000_reset_task(struct work_struct *work)
       
  4355 {
       
  4356 	struct e1000_adapter *adapter;
       
  4357 	adapter = container_of(work, struct e1000_adapter, reset_task);
       
  4358 
       
  4359 	e1000e_reinit_locked(adapter);
       
  4360 }
       
  4361 
       
  4362 /**
       
  4363  * e1000_get_stats - Get System Network Statistics
       
  4364  * @netdev: network interface device structure
       
  4365  *
       
  4366  * Returns the address of the device statistics structure.
       
  4367  * The statistics are actually updated from the timer callback.
       
  4368  **/
       
  4369 static struct net_device_stats *e1000_get_stats(struct net_device *netdev)
       
  4370 {
       
  4371 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4372 
       
  4373 	/* only return the current stats */
       
  4374 	return &adapter->net_stats;
       
  4375 }
       
  4376 
       
  4377 /**
       
  4378  * e1000_change_mtu - Change the Maximum Transfer Unit
       
  4379  * @netdev: network interface device structure
       
  4380  * @new_mtu: new value for maximum frame size
       
  4381  *
       
  4382  * Returns 0 on success, negative on failure
       
  4383  **/
       
  4384 static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
       
  4385 {
       
  4386 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4387 	int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
       
  4388 
       
  4389 	if (adapter->ecdev)
       
  4390 		return -EBUSY;
       
  4391 
       
  4392 	/* Jumbo frame support */
       
  4393 	if ((max_frame > ETH_FRAME_LEN + ETH_FCS_LEN) &&
       
  4394 	    !(adapter->flags & FLAG_HAS_JUMBO_FRAMES)) {
       
  4395 		e_err("Jumbo Frames not supported.\n");
       
  4396 		return -EINVAL;
       
  4397 	}
       
  4398 
       
  4399 	/* Supported frame sizes */
       
  4400 	if ((new_mtu < ETH_ZLEN + ETH_FCS_LEN + VLAN_HLEN) ||
       
  4401 	    (max_frame > adapter->max_hw_frame_size)) {
       
  4402 		e_err("Unsupported MTU setting\n");
       
  4403 		return -EINVAL;
       
  4404 	}
       
  4405 
       
  4406 	while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
       
  4407 		msleep(1);
       
  4408 	/* e1000e_down -> e1000e_reset dependent on max_frame_size & mtu */
       
  4409 	adapter->max_frame_size = max_frame;
       
  4410 	e_info("changing MTU from %d to %d\n", netdev->mtu, new_mtu);
       
  4411 	netdev->mtu = new_mtu;
       
  4412 	if (netif_running(netdev))
       
  4413 		e1000e_down(adapter);
       
  4414 
       
  4415 	/*
       
  4416 	 * NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
       
  4417 	 * means we reserve 2 more, this pushes us to allocate from the next
       
  4418 	 * larger slab size.
       
  4419 	 * i.e. RXBUFFER_2048 --> size-4096 slab
       
  4420 	 * However with the new *_jumbo_rx* routines, jumbo receives will use
       
  4421 	 * fragmented skbs
       
  4422 	 */
       
  4423 
       
  4424 	if (max_frame <= 2048)
       
  4425 		adapter->rx_buffer_len = 2048;
       
  4426 	else
       
  4427 		adapter->rx_buffer_len = 4096;
       
  4428 
       
  4429 	/* adjust allocation if LPE protects us, and we aren't using SBP */
       
  4430 	if ((max_frame == ETH_FRAME_LEN + ETH_FCS_LEN) ||
       
  4431 	     (max_frame == ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN))
       
  4432 		adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN
       
  4433 					 + ETH_FCS_LEN;
       
  4434 
       
  4435 	if (netif_running(netdev))
       
  4436 		e1000e_up(adapter);
       
  4437 	else
       
  4438 		e1000e_reset(adapter);
       
  4439 
       
  4440 	clear_bit(__E1000_RESETTING, &adapter->state);
       
  4441 
       
  4442 	return 0;
       
  4443 }
       
  4444 
       
  4445 static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
       
  4446 			   int cmd)
       
  4447 {
       
  4448 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4449 	struct mii_ioctl_data *data = if_mii(ifr);
       
  4450 
       
  4451 	if (adapter->hw.phy.media_type != e1000_media_type_copper)
       
  4452 		return -EOPNOTSUPP;
       
  4453 
       
  4454 	switch (cmd) {
       
  4455 	case SIOCGMIIPHY:
       
  4456 		data->phy_id = adapter->hw.phy.addr;
       
  4457 		break;
       
  4458 	case SIOCGMIIREG:
       
  4459 		switch (data->reg_num & 0x1F) {
       
  4460 		case MII_BMCR:
       
  4461 			data->val_out = adapter->phy_regs.bmcr;
       
  4462 			break;
       
  4463 		case MII_BMSR:
       
  4464 			data->val_out = adapter->phy_regs.bmsr;
       
  4465 			break;
       
  4466 		case MII_PHYSID1:
       
  4467 			data->val_out = (adapter->hw.phy.id >> 16);
       
  4468 			break;
       
  4469 		case MII_PHYSID2:
       
  4470 			data->val_out = (adapter->hw.phy.id & 0xFFFF);
       
  4471 			break;
       
  4472 		case MII_ADVERTISE:
       
  4473 			data->val_out = adapter->phy_regs.advertise;
       
  4474 			break;
       
  4475 		case MII_LPA:
       
  4476 			data->val_out = adapter->phy_regs.lpa;
       
  4477 			break;
       
  4478 		case MII_EXPANSION:
       
  4479 			data->val_out = adapter->phy_regs.expansion;
       
  4480 			break;
       
  4481 		case MII_CTRL1000:
       
  4482 			data->val_out = adapter->phy_regs.ctrl1000;
       
  4483 			break;
       
  4484 		case MII_STAT1000:
       
  4485 			data->val_out = adapter->phy_regs.stat1000;
       
  4486 			break;
       
  4487 		case MII_ESTATUS:
       
  4488 			data->val_out = adapter->phy_regs.estatus;
       
  4489 			break;
       
  4490 		default:
       
  4491 			return -EIO;
       
  4492 		}
       
  4493 		break;
       
  4494 	case SIOCSMIIREG:
       
  4495 	default:
       
  4496 		return -EOPNOTSUPP;
       
  4497 	}
       
  4498 	return 0;
       
  4499 }
       
  4500 
       
  4501 static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
       
  4502 {
       
  4503 	switch (cmd) {
       
  4504 	case SIOCGMIIPHY:
       
  4505 	case SIOCGMIIREG:
       
  4506 	case SIOCSMIIREG:
       
  4507 		return e1000_mii_ioctl(netdev, ifr, cmd);
       
  4508 	default:
       
  4509 		return -EOPNOTSUPP;
       
  4510 	}
       
  4511 }
       
  4512 
       
  4513 static int e1000_init_phy_wakeup(struct e1000_adapter *adapter, u32 wufc)
       
  4514 {
       
  4515 	struct e1000_hw *hw = &adapter->hw;
       
  4516 	u32 i, mac_reg;
       
  4517 	u16 phy_reg;
       
  4518 	int retval = 0;
       
  4519 
       
  4520 	/* copy MAC RARs to PHY RARs */
       
  4521 	for (i = 0; i < adapter->hw.mac.rar_entry_count; i++) {
       
  4522 		mac_reg = er32(RAL(i));
       
  4523 		e1e_wphy(hw, BM_RAR_L(i), (u16)(mac_reg & 0xFFFF));
       
  4524 		e1e_wphy(hw, BM_RAR_M(i), (u16)((mac_reg >> 16) & 0xFFFF));
       
  4525 		mac_reg = er32(RAH(i));
       
  4526 		e1e_wphy(hw, BM_RAR_H(i), (u16)(mac_reg & 0xFFFF));
       
  4527 		e1e_wphy(hw, BM_RAR_CTRL(i), (u16)((mac_reg >> 16) & 0xFFFF));
       
  4528 	}
       
  4529 
       
  4530 	/* copy MAC MTA to PHY MTA */
       
  4531 	for (i = 0; i < adapter->hw.mac.mta_reg_count; i++) {
       
  4532 		mac_reg = E1000_READ_REG_ARRAY(hw, E1000_MTA, i);
       
  4533 		e1e_wphy(hw, BM_MTA(i), (u16)(mac_reg & 0xFFFF));
       
  4534 		e1e_wphy(hw, BM_MTA(i) + 1, (u16)((mac_reg >> 16) & 0xFFFF));
       
  4535 	}
       
  4536 
       
  4537 	/* configure PHY Rx Control register */
       
  4538 	e1e_rphy(&adapter->hw, BM_RCTL, &phy_reg);
       
  4539 	mac_reg = er32(RCTL);
       
  4540 	if (mac_reg & E1000_RCTL_UPE)
       
  4541 		phy_reg |= BM_RCTL_UPE;
       
  4542 	if (mac_reg & E1000_RCTL_MPE)
       
  4543 		phy_reg |= BM_RCTL_MPE;
       
  4544 	phy_reg &= ~(BM_RCTL_MO_MASK);
       
  4545 	if (mac_reg & E1000_RCTL_MO_3)
       
  4546 		phy_reg |= (((mac_reg & E1000_RCTL_MO_3) >> E1000_RCTL_MO_SHIFT)
       
  4547 				<< BM_RCTL_MO_SHIFT);
       
  4548 	if (mac_reg & E1000_RCTL_BAM)
       
  4549 		phy_reg |= BM_RCTL_BAM;
       
  4550 	if (mac_reg & E1000_RCTL_PMCF)
       
  4551 		phy_reg |= BM_RCTL_PMCF;
       
  4552 	mac_reg = er32(CTRL);
       
  4553 	if (mac_reg & E1000_CTRL_RFCE)
       
  4554 		phy_reg |= BM_RCTL_RFCE;
       
  4555 	e1e_wphy(&adapter->hw, BM_RCTL, phy_reg);
       
  4556 
       
  4557 	/* enable PHY wakeup in MAC register */
       
  4558 	ew32(WUFC, wufc);
       
  4559 	ew32(WUC, E1000_WUC_PHY_WAKE | E1000_WUC_PME_EN);
       
  4560 
       
  4561 	/* configure and enable PHY wakeup in PHY registers */
       
  4562 	e1e_wphy(&adapter->hw, BM_WUFC, wufc);
       
  4563 	e1e_wphy(&adapter->hw, BM_WUC, E1000_WUC_PME_EN);
       
  4564 
       
  4565 	/* activate PHY wakeup */
       
  4566 	retval = hw->phy.ops.acquire_phy(hw);
       
  4567 	if (retval) {
       
  4568 		e_err("Could not acquire PHY\n");
       
  4569 		return retval;
       
  4570 	}
       
  4571 	e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT,
       
  4572 	                         (BM_WUC_ENABLE_PAGE << IGP_PAGE_SHIFT));
       
  4573 	retval = e1000e_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, &phy_reg);
       
  4574 	if (retval) {
       
  4575 		e_err("Could not read PHY page 769\n");
       
  4576 		goto out;
       
  4577 	}
       
  4578 	phy_reg |= BM_WUC_ENABLE_BIT | BM_WUC_HOST_WU_BIT;
       
  4579 	retval = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg);
       
  4580 	if (retval)
       
  4581 		e_err("Could not set PHY Host Wakeup bit\n");
       
  4582 out:
       
  4583 	hw->phy.ops.release_phy(hw);
       
  4584 
       
  4585 	return retval;
       
  4586 }
       
  4587 
       
  4588 static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake)
       
  4589 {
       
  4590 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4591 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4592 	struct e1000_hw *hw = &adapter->hw;
       
  4593 	u32 ctrl, ctrl_ext, rctl, status;
       
  4594 	u32 wufc = adapter->wol;
       
  4595 	int retval = 0;
       
  4596 
       
  4597 	netif_device_detach(netdev);
       
  4598 
       
  4599 	if (netif_running(netdev)) {
       
  4600 		WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
       
  4601 		e1000e_down(adapter);
       
  4602 		e1000_free_irq(adapter);
       
  4603 	}
       
  4604 	e1000e_reset_interrupt_capability(adapter);
       
  4605 
       
  4606 	retval = pci_save_state(pdev);
       
  4607 	if (retval)
       
  4608 		return retval;
       
  4609 
       
  4610 	status = er32(STATUS);
       
  4611 	if (status & E1000_STATUS_LU)
       
  4612 		wufc &= ~E1000_WUFC_LNKC;
       
  4613 
       
  4614 	if (wufc) {
       
  4615 		e1000_setup_rctl(adapter);
       
  4616 		e1000_set_multi(netdev);
       
  4617 
       
  4618 		/* turn on all-multi mode if wake on multicast is enabled */
       
  4619 		if (wufc & E1000_WUFC_MC) {
       
  4620 			rctl = er32(RCTL);
       
  4621 			rctl |= E1000_RCTL_MPE;
       
  4622 			ew32(RCTL, rctl);
       
  4623 		}
       
  4624 
       
  4625 		ctrl = er32(CTRL);
       
  4626 		/* advertise wake from D3Cold */
       
  4627 		#define E1000_CTRL_ADVD3WUC 0x00100000
       
  4628 		/* phy power management enable */
       
  4629 		#define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
       
  4630 		ctrl |= E1000_CTRL_ADVD3WUC;
       
  4631 		if (!(adapter->flags2 & FLAG2_HAS_PHY_WAKEUP))
       
  4632 			ctrl |= E1000_CTRL_EN_PHY_PWR_MGMT;
       
  4633 		ew32(CTRL, ctrl);
       
  4634 
       
  4635 		if (adapter->hw.phy.media_type == e1000_media_type_fiber ||
       
  4636 		    adapter->hw.phy.media_type ==
       
  4637 		    e1000_media_type_internal_serdes) {
       
  4638 			/* keep the laser running in D3 */
       
  4639 			ctrl_ext = er32(CTRL_EXT);
       
  4640 			ctrl_ext |= E1000_CTRL_EXT_SDP7_DATA;
       
  4641 			ew32(CTRL_EXT, ctrl_ext);
       
  4642 		}
       
  4643 
       
  4644 		if (adapter->flags & FLAG_IS_ICH)
       
  4645 			e1000e_disable_gig_wol_ich8lan(&adapter->hw);
       
  4646 
       
  4647 		/* Allow time for pending master requests to run */
       
  4648 		e1000e_disable_pcie_master(&adapter->hw);
       
  4649 
       
  4650 		if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
       
  4651 			/* enable wakeup by the PHY */
       
  4652 			retval = e1000_init_phy_wakeup(adapter, wufc);
       
  4653 			if (retval)
       
  4654 				return retval;
       
  4655 		} else {
       
  4656 			/* enable wakeup by the MAC */
       
  4657 			ew32(WUFC, wufc);
       
  4658 			ew32(WUC, E1000_WUC_PME_EN);
       
  4659 		}
       
  4660 	} else {
       
  4661 		ew32(WUC, 0);
       
  4662 		ew32(WUFC, 0);
       
  4663 	}
       
  4664 
       
  4665 	*enable_wake = !!wufc;
       
  4666 
       
  4667 	/* make sure adapter isn't asleep if manageability is enabled */
       
  4668 	if ((adapter->flags & FLAG_MNG_PT_ENABLED) ||
       
  4669 	    (hw->mac.ops.check_mng_mode(hw)))
       
  4670 		*enable_wake = true;
       
  4671 
       
  4672 	if (adapter->hw.phy.type == e1000_phy_igp_3)
       
  4673 		e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw);
       
  4674 
       
  4675 	/*
       
  4676 	 * Release control of h/w to f/w.  If f/w is AMT enabled, this
       
  4677 	 * would have already happened in close and is redundant.
       
  4678 	 */
       
  4679 	e1000_release_hw_control(adapter);
       
  4680 
       
  4681 	pci_disable_device(pdev);
       
  4682 
       
  4683 	return 0;
       
  4684 }
       
  4685 
       
  4686 static void e1000_power_off(struct pci_dev *pdev, bool sleep, bool wake)
       
  4687 {
       
  4688 	if (sleep && wake) {
       
  4689 		pci_prepare_to_sleep(pdev);
       
  4690 		return;
       
  4691 	}
       
  4692 
       
  4693 	pci_wake_from_d3(pdev, wake);
       
  4694 	pci_set_power_state(pdev, PCI_D3hot);
       
  4695 }
       
  4696 
       
  4697 static void e1000_complete_shutdown(struct pci_dev *pdev, bool sleep,
       
  4698                                     bool wake)
       
  4699 {
       
  4700 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4701 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4702 
       
  4703 	/*
       
  4704 	 * The pci-e switch on some quad port adapters will report a
       
  4705 	 * correctable error when the MAC transitions from D0 to D3.  To
       
  4706 	 * prevent this we need to mask off the correctable errors on the
       
  4707 	 * downstream port of the pci-e switch.
       
  4708 	 */
       
  4709 	if (adapter->flags & FLAG_IS_QUAD_PORT) {
       
  4710 		struct pci_dev *us_dev = pdev->bus->self;
       
  4711 		int pos = pci_find_capability(us_dev, PCI_CAP_ID_EXP);
       
  4712 		u16 devctl;
       
  4713 
       
  4714 		pci_read_config_word(us_dev, pos + PCI_EXP_DEVCTL, &devctl);
       
  4715 		pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL,
       
  4716 		                      (devctl & ~PCI_EXP_DEVCTL_CERE));
       
  4717 
       
  4718 		e1000_power_off(pdev, sleep, wake);
       
  4719 
       
  4720 		pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, devctl);
       
  4721 	} else {
       
  4722 		e1000_power_off(pdev, sleep, wake);
       
  4723 	}
       
  4724 }
       
  4725 
       
  4726 static void e1000e_disable_l1aspm(struct pci_dev *pdev)
       
  4727 {
       
  4728 	int pos;
       
  4729 	u16 val;
       
  4730 
       
  4731 	/*
       
  4732 	 * 82573 workaround - disable L1 ASPM on mobile chipsets
       
  4733 	 *
       
  4734 	 * L1 ASPM on various mobile (ich7) chipsets do not behave properly
       
  4735 	 * resulting in lost data or garbage information on the pci-e link
       
  4736 	 * level. This could result in (false) bad EEPROM checksum errors,
       
  4737 	 * long ping times (up to 2s) or even a system freeze/hang.
       
  4738 	 *
       
  4739 	 * Unfortunately this feature saves about 1W power consumption when
       
  4740 	 * active.
       
  4741 	 */
       
  4742 	pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
       
  4743 	pci_read_config_word(pdev, pos + PCI_EXP_LNKCTL, &val);
       
  4744 	if (val & 0x2) {
       
  4745 		dev_warn(&pdev->dev, "Disabling L1 ASPM\n");
       
  4746 		val &= ~0x2;
       
  4747 		pci_write_config_word(pdev, pos + PCI_EXP_LNKCTL, val);
       
  4748 	}
       
  4749 }
       
  4750 
       
  4751 #ifdef CONFIG_PM
       
  4752 static int e1000_suspend(struct pci_dev *pdev, pm_message_t state)
       
  4753 {
       
  4754 	int retval;
       
  4755 	bool wake;
       
  4756 
       
  4757 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4758 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4759 
       
  4760 	if (adapter->ecdev)
       
  4761 		return -EBUSY;
       
  4762 
       
  4763 	retval = __e1000_shutdown(pdev, &wake);
       
  4764 	if (!retval)
       
  4765 		e1000_complete_shutdown(pdev, true, wake);
       
  4766 
       
  4767 	return retval;
       
  4768 }
       
  4769 
       
  4770 static int e1000_resume(struct pci_dev *pdev)
       
  4771 {
       
  4772 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4773 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4774 	struct e1000_hw *hw = &adapter->hw;
       
  4775 	u32 err;
       
  4776 
       
  4777 	if (adapter->ecdev)
       
  4778 		return -EBUSY;
       
  4779 
       
  4780 	pci_set_power_state(pdev, PCI_D0);
       
  4781 	pci_restore_state(pdev);
       
  4782 	e1000e_disable_l1aspm(pdev);
       
  4783 
       
  4784 	err = pci_enable_device_mem(pdev);
       
  4785 	if (err) {
       
  4786 		dev_err(&pdev->dev,
       
  4787 			"Cannot enable PCI device from suspend\n");
       
  4788 		return err;
       
  4789 	}
       
  4790 
       
  4791 	pci_set_master(pdev);
       
  4792 
       
  4793 	pci_enable_wake(pdev, PCI_D3hot, 0);
       
  4794 	pci_enable_wake(pdev, PCI_D3cold, 0);
       
  4795 
       
  4796 	e1000e_set_interrupt_capability(adapter);
       
  4797 	if (netif_running(netdev)) {
       
  4798 		err = e1000_request_irq(adapter);
       
  4799 		if (err)
       
  4800 			return err;
       
  4801 	}
       
  4802 
       
  4803 	e1000e_power_up_phy(adapter);
       
  4804 
       
  4805 	/* report the system wakeup cause from S3/S4 */
       
  4806 	if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
       
  4807 		u16 phy_data;
       
  4808 
       
  4809 		e1e_rphy(&adapter->hw, BM_WUS, &phy_data);
       
  4810 		if (phy_data) {
       
  4811 			e_info("PHY Wakeup cause - %s\n",
       
  4812 				phy_data & E1000_WUS_EX ? "Unicast Packet" :
       
  4813 				phy_data & E1000_WUS_MC ? "Multicast Packet" :
       
  4814 				phy_data & E1000_WUS_BC ? "Broadcast Packet" :
       
  4815 				phy_data & E1000_WUS_MAG ? "Magic Packet" :
       
  4816 				phy_data & E1000_WUS_LNKC ? "Link Status "
       
  4817 				" Change" : "other");
       
  4818 		}
       
  4819 		e1e_wphy(&adapter->hw, BM_WUS, ~0);
       
  4820 	} else {
       
  4821 		u32 wus = er32(WUS);
       
  4822 		if (wus) {
       
  4823 			e_info("MAC Wakeup cause - %s\n",
       
  4824 				wus & E1000_WUS_EX ? "Unicast Packet" :
       
  4825 				wus & E1000_WUS_MC ? "Multicast Packet" :
       
  4826 				wus & E1000_WUS_BC ? "Broadcast Packet" :
       
  4827 				wus & E1000_WUS_MAG ? "Magic Packet" :
       
  4828 				wus & E1000_WUS_LNKC ? "Link Status Change" :
       
  4829 				"other");
       
  4830 		}
       
  4831 		ew32(WUS, ~0);
       
  4832 	}
       
  4833 
       
  4834 	e1000e_reset(adapter);
       
  4835 
       
  4836 	e1000_init_manageability(adapter);
       
  4837 
       
  4838 	if (netif_running(netdev))
       
  4839 		e1000e_up(adapter);
       
  4840 
       
  4841 	netif_device_attach(netdev);
       
  4842 
       
  4843 	/*
       
  4844 	 * If the controller has AMT, do not set DRV_LOAD until the interface
       
  4845 	 * is up.  For all other cases, let the f/w know that the h/w is now
       
  4846 	 * under the control of the driver.
       
  4847 	 */
       
  4848 	if (!(adapter->flags & FLAG_HAS_AMT))
       
  4849 		e1000_get_hw_control(adapter);
       
  4850 
       
  4851 	return 0;
       
  4852 }
       
  4853 #endif
       
  4854 
       
  4855 static void e1000_shutdown(struct pci_dev *pdev)
       
  4856 {
       
  4857 	bool wake = false;
       
  4858 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4859 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4860 	
       
  4861 	if (adapter->ecdev)
       
  4862 		return;
       
  4863 
       
  4864 	__e1000_shutdown(pdev, &wake);
       
  4865 
       
  4866 	if (system_state == SYSTEM_POWER_OFF)
       
  4867 		e1000_complete_shutdown(pdev, false, wake);
       
  4868 }
       
  4869 
       
  4870 #ifdef CONFIG_NET_POLL_CONTROLLER
       
  4871 /*
       
  4872  * Polling 'interrupt' - used by things like netconsole to send skbs
       
  4873  * without having to re-enable interrupts. It's not called while
       
  4874  * the interrupt routine is executing.
       
  4875  */
       
  4876 static void e1000_netpoll(struct net_device *netdev)
       
  4877 {
       
  4878 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4879 
       
  4880 	disable_irq(adapter->pdev->irq);
       
  4881 	e1000_intr(adapter->pdev->irq, netdev);
       
  4882 
       
  4883 	enable_irq(adapter->pdev->irq);
       
  4884 }
       
  4885 #endif
       
  4886 
       
  4887 /**
       
  4888  * e1000_io_error_detected - called when PCI error is detected
       
  4889  * @pdev: Pointer to PCI device
       
  4890  * @state: The current pci connection state
       
  4891  *
       
  4892  * This function is called after a PCI bus error affecting
       
  4893  * this device has been detected.
       
  4894  */
       
  4895 static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
       
  4896 						pci_channel_state_t state)
       
  4897 {
       
  4898 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4899 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4900 
       
  4901 	netif_device_detach(netdev);
       
  4902 
       
  4903 	if (state == pci_channel_io_perm_failure)
       
  4904 		return PCI_ERS_RESULT_DISCONNECT;
       
  4905 
       
  4906 	if (netif_running(netdev))
       
  4907 		e1000e_down(adapter);
       
  4908 	pci_disable_device(pdev);
       
  4909 
       
  4910 	/* Request a slot slot reset. */
       
  4911 	return PCI_ERS_RESULT_NEED_RESET;
       
  4912 }
       
  4913 
       
  4914 /**
       
  4915  * e1000_io_slot_reset - called after the pci bus has been reset.
       
  4916  * @pdev: Pointer to PCI device
       
  4917  *
       
  4918  * Restart the card from scratch, as if from a cold-boot. Implementation
       
  4919  * resembles the first-half of the e1000_resume routine.
       
  4920  */
       
  4921 static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
       
  4922 {
       
  4923 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4924 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4925 	struct e1000_hw *hw = &adapter->hw;
       
  4926 	int err;
       
  4927 	pci_ers_result_t result;
       
  4928 
       
  4929 	e1000e_disable_l1aspm(pdev);
       
  4930 	err = pci_enable_device_mem(pdev);
       
  4931 	if (err) {
       
  4932 		dev_err(&pdev->dev,
       
  4933 			"Cannot re-enable PCI device after reset.\n");
       
  4934 		result = PCI_ERS_RESULT_DISCONNECT;
       
  4935 	} else {
       
  4936 		pci_set_master(pdev);
       
  4937 		pci_restore_state(pdev);
       
  4938 
       
  4939 		pci_enable_wake(pdev, PCI_D3hot, 0);
       
  4940 		pci_enable_wake(pdev, PCI_D3cold, 0);
       
  4941 
       
  4942 		e1000e_reset(adapter);
       
  4943 		ew32(WUS, ~0);
       
  4944 		result = PCI_ERS_RESULT_RECOVERED;
       
  4945 	}
       
  4946 
       
  4947 	pci_cleanup_aer_uncorrect_error_status(pdev);
       
  4948 
       
  4949 	return result;
       
  4950 }
       
  4951 
       
  4952 /**
       
  4953  * e1000_io_resume - called when traffic can start flowing again.
       
  4954  * @pdev: Pointer to PCI device
       
  4955  *
       
  4956  * This callback is called when the error recovery driver tells us that
       
  4957  * its OK to resume normal operation. Implementation resembles the
       
  4958  * second-half of the e1000_resume routine.
       
  4959  */
       
  4960 static void e1000_io_resume(struct pci_dev *pdev)
       
  4961 {
       
  4962 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4963 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4964 
       
  4965 	e1000_init_manageability(adapter);
       
  4966 
       
  4967 	if (netif_running(netdev)) {
       
  4968 		if (e1000e_up(adapter)) {
       
  4969 			dev_err(&pdev->dev,
       
  4970 				"can't bring device back up after reset\n");
       
  4971 			return;
       
  4972 		}
       
  4973 	}
       
  4974 
       
  4975 	netif_device_attach(netdev);
       
  4976 
       
  4977 	/*
       
  4978 	 * If the controller has AMT, do not set DRV_LOAD until the interface
       
  4979 	 * is up.  For all other cases, let the f/w know that the h/w is now
       
  4980 	 * under the control of the driver.
       
  4981 	 */
       
  4982 	if (!(adapter->flags & FLAG_HAS_AMT))
       
  4983 		e1000_get_hw_control(adapter);
       
  4984 
       
  4985 }
       
  4986 
       
  4987 static void e1000_print_device_info(struct e1000_adapter *adapter)
       
  4988 {
       
  4989 	struct e1000_hw *hw = &adapter->hw;
       
  4990 	struct net_device *netdev = adapter->netdev;
       
  4991 	u32 pba_num;
       
  4992 
       
  4993 	/* print bus type/speed/width info */
       
  4994 	e_info("(PCI Express:2.5GB/s:%s) %pM\n",
       
  4995 	       /* bus width */
       
  4996 	       ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" :
       
  4997 	        "Width x1"),
       
  4998 	       /* MAC address */
       
  4999 	       netdev->dev_addr);
       
  5000 	e_info("Intel(R) PRO/%s Network Connection\n",
       
  5001 	       (hw->phy.type == e1000_phy_ife) ? "10/100" : "1000");
       
  5002 	e1000e_read_pba_num(hw, &pba_num);
       
  5003 	e_info("MAC: %d, PHY: %d, PBA No: %06x-%03x\n",
       
  5004 	       hw->mac.type, hw->phy.type, (pba_num >> 8), (pba_num & 0xff));
       
  5005 }
       
  5006 
       
  5007 static void e1000_eeprom_checks(struct e1000_adapter *adapter)
       
  5008 {
       
  5009 	struct e1000_hw *hw = &adapter->hw;
       
  5010 	int ret_val;
       
  5011 	u16 buf = 0;
       
  5012 
       
  5013 	if (hw->mac.type != e1000_82573)
       
  5014 		return;
       
  5015 
       
  5016 	ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &buf);
       
  5017 	if (!ret_val && (!(le16_to_cpu(buf) & (1 << 0)))) {
       
  5018 		/* Deep Smart Power Down (DSPD) */
       
  5019 		dev_warn(&adapter->pdev->dev,
       
  5020 			 "Warning: detected DSPD enabled in EEPROM\n");
       
  5021 	}
       
  5022 
       
  5023 	ret_val = e1000_read_nvm(hw, NVM_INIT_3GIO_3, 1, &buf);
       
  5024 	if (!ret_val && (le16_to_cpu(buf) & (3 << 2))) {
       
  5025 		/* ASPM enable */
       
  5026 		dev_warn(&adapter->pdev->dev,
       
  5027 			 "Warning: detected ASPM enabled in EEPROM\n");
       
  5028 	}
       
  5029 }
       
  5030 
       
  5031 static const struct net_device_ops e1000e_netdev_ops = {
       
  5032 	.ndo_open		= e1000_open,
       
  5033 	.ndo_stop		= e1000_close,
       
  5034 	.ndo_start_xmit		= e1000_xmit_frame,
       
  5035 	.ndo_get_stats		= e1000_get_stats,
       
  5036 	.ndo_set_multicast_list	= e1000_set_multi,
       
  5037 	.ndo_set_mac_address	= e1000_set_mac,
       
  5038 	.ndo_change_mtu		= e1000_change_mtu,
       
  5039 	.ndo_do_ioctl		= e1000_ioctl,
       
  5040 	.ndo_tx_timeout		= e1000_tx_timeout,
       
  5041 	.ndo_validate_addr	= eth_validate_addr,
       
  5042 
       
  5043 	.ndo_vlan_rx_register	= e1000_vlan_rx_register,
       
  5044 	.ndo_vlan_rx_add_vid	= e1000_vlan_rx_add_vid,
       
  5045 	.ndo_vlan_rx_kill_vid	= e1000_vlan_rx_kill_vid,
       
  5046 #ifdef CONFIG_NET_POLL_CONTROLLER
       
  5047 	.ndo_poll_controller	= e1000_netpoll,
       
  5048 #endif
       
  5049 };
       
  5050 
       
  5051 /**
       
  5052  * ec_poll - Ethercat poll Routine
       
  5053  * @netdev: net device structure
       
  5054  *
       
  5055  * This function can never fail.
       
  5056  *
       
  5057  **/
       
  5058 void ec_poll(struct net_device *netdev)
       
  5059 {
       
  5060 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  5061 
       
  5062 	if (jiffies - adapter->ec_watchdog_jiffies >= 2 * HZ) {
       
  5063 		e1000_watchdog((unsigned long) adapter);
       
  5064 		adapter->ec_watchdog_jiffies = jiffies;
       
  5065 	}
       
  5066 
       
  5067 #ifdef CONFIG_PCI_MSI
       
  5068 	e1000_intr_msi(0,netdev);
       
  5069 #else
       
  5070 	e1000_intr(0,netdev);
       
  5071 #endif
       
  5072 }
       
  5073 
       
  5074 /**
       
  5075  * e1000_probe - Device Initialization Routine
       
  5076  * @pdev: PCI device information struct
       
  5077  * @ent: entry in e1000_pci_tbl
       
  5078  *
       
  5079  * Returns 0 on success, negative on failure
       
  5080  *
       
  5081  * e1000_probe initializes an adapter identified by a pci_dev structure.
       
  5082  * The OS initialization, configuring of the adapter private structure,
       
  5083  * and a hardware reset occur.
       
  5084  **/
       
  5085 static int __devinit e1000_probe(struct pci_dev *pdev,
       
  5086 				 const struct pci_device_id *ent)
       
  5087 {
       
  5088 	struct net_device *netdev;
       
  5089 	struct e1000_adapter *adapter;
       
  5090 	struct e1000_hw *hw;
       
  5091 	const struct e1000_info *ei = e1000_info_tbl[ent->driver_data];
       
  5092 	resource_size_t mmio_start, mmio_len;
       
  5093 	resource_size_t flash_start, flash_len;
       
  5094 
       
  5095 	static int cards_found;
       
  5096 	int i, err, pci_using_dac;
       
  5097 	u16 eeprom_data = 0;
       
  5098 	u16 eeprom_apme_mask = E1000_EEPROM_APME;
       
  5099 
       
  5100 	e1000e_disable_l1aspm(pdev);
       
  5101 
       
  5102 	err = pci_enable_device_mem(pdev);
       
  5103 	if (err)
       
  5104 		return err;
       
  5105 
       
  5106 	pci_using_dac = 0;
       
  5107 	err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
       
  5108 	if (!err) {
       
  5109 		err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
       
  5110 		if (!err)
       
  5111 			pci_using_dac = 1;
       
  5112 	} else {
       
  5113 		err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
       
  5114 		if (err) {
       
  5115 			err = pci_set_consistent_dma_mask(pdev,
       
  5116 							  DMA_BIT_MASK(32));
       
  5117 			if (err) {
       
  5118 				dev_err(&pdev->dev, "No usable DMA "
       
  5119 					"configuration, aborting\n");
       
  5120 				goto err_dma;
       
  5121 			}
       
  5122 		}
       
  5123 	}
       
  5124 
       
  5125 	err = pci_request_selected_regions_exclusive(pdev,
       
  5126 	                                  pci_select_bars(pdev, IORESOURCE_MEM),
       
  5127 	                                  e1000e_driver_name);
       
  5128 	if (err)
       
  5129 		goto err_pci_reg;
       
  5130 
       
  5131 	/* AER (Advanced Error Reporting) hooks */
       
  5132 	pci_enable_pcie_error_reporting(pdev);
       
  5133 
       
  5134 	pci_set_master(pdev);
       
  5135 	/* PCI config space info */
       
  5136 	err = pci_save_state(pdev);
       
  5137 	if (err)
       
  5138 		goto err_alloc_etherdev;
       
  5139 
       
  5140 	err = -ENOMEM;
       
  5141 	netdev = alloc_etherdev(sizeof(struct e1000_adapter));
       
  5142 	if (!netdev)
       
  5143 		goto err_alloc_etherdev;
       
  5144 
       
  5145 	SET_NETDEV_DEV(netdev, &pdev->dev);
       
  5146 
       
  5147 	pci_set_drvdata(pdev, netdev);
       
  5148 	adapter = netdev_priv(netdev);
       
  5149 	hw = &adapter->hw;
       
  5150 	adapter->netdev = netdev;
       
  5151 	adapter->pdev = pdev;
       
  5152 	adapter->ei = ei;
       
  5153 	adapter->pba = ei->pba;
       
  5154 	adapter->flags = ei->flags;
       
  5155 	adapter->flags2 = ei->flags2;
       
  5156 	adapter->hw.adapter = adapter;
       
  5157 	adapter->hw.mac.type = ei->mac;
       
  5158 	adapter->max_hw_frame_size = ei->max_hw_frame_size;
       
  5159 	adapter->msg_enable = (1 << NETIF_MSG_DRV | NETIF_MSG_PROBE) - 1;
       
  5160 
       
  5161 	mmio_start = pci_resource_start(pdev, 0);
       
  5162 	mmio_len = pci_resource_len(pdev, 0);
       
  5163 
       
  5164 	err = -EIO;
       
  5165 	adapter->hw.hw_addr = ioremap(mmio_start, mmio_len);
       
  5166 	if (!adapter->hw.hw_addr)
       
  5167 		goto err_ioremap;
       
  5168 
       
  5169 	if ((adapter->flags & FLAG_HAS_FLASH) &&
       
  5170 	    (pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
       
  5171 		flash_start = pci_resource_start(pdev, 1);
       
  5172 		flash_len = pci_resource_len(pdev, 1);
       
  5173 		adapter->hw.flash_address = ioremap(flash_start, flash_len);
       
  5174 		if (!adapter->hw.flash_address)
       
  5175 			goto err_flashmap;
       
  5176 	}
       
  5177 
       
  5178 	/* construct the net_device struct */
       
  5179 	netdev->netdev_ops		= &e1000e_netdev_ops;
       
  5180 	e1000e_set_ethtool_ops(netdev);
       
  5181 	netdev->watchdog_timeo		= 5 * HZ;
       
  5182 	netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
       
  5183 	strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
       
  5184 
       
  5185 	netdev->mem_start = mmio_start;
       
  5186 	netdev->mem_end = mmio_start + mmio_len;
       
  5187 
       
  5188 	adapter->bd_number = cards_found++;
       
  5189 
       
  5190 	e1000e_check_options(adapter);
       
  5191 
       
  5192 	/* setup adapter struct */
       
  5193 	err = e1000_sw_init(adapter);
       
  5194 	if (err)
       
  5195 		goto err_sw_init;
       
  5196 
       
  5197 	err = -EIO;
       
  5198 
       
  5199 	memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops));
       
  5200 	memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops));
       
  5201 	memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops));
       
  5202 
       
  5203 	err = ei->get_variants(adapter);
       
  5204 	if (err)
       
  5205 		goto err_hw_init;
       
  5206 
       
  5207 	if ((adapter->flags & FLAG_IS_ICH) &&
       
  5208 	    (adapter->flags & FLAG_READ_ONLY_NVM))
       
  5209 		e1000e_write_protect_nvm_ich8lan(&adapter->hw);
       
  5210 
       
  5211 	hw->mac.ops.get_bus_info(&adapter->hw);
       
  5212 
       
  5213 	adapter->hw.phy.autoneg_wait_to_complete = 0;
       
  5214 
       
  5215 	/* Copper options */
       
  5216 	if (adapter->hw.phy.media_type == e1000_media_type_copper) {
       
  5217 		adapter->hw.phy.mdix = AUTO_ALL_MODES;
       
  5218 		adapter->hw.phy.disable_polarity_correction = 0;
       
  5219 		adapter->hw.phy.ms_type = e1000_ms_hw_default;
       
  5220 	}
       
  5221 
       
  5222 	if (e1000_check_reset_block(&adapter->hw))
       
  5223 		e_info("PHY reset is blocked due to SOL/IDER session.\n");
       
  5224 
       
  5225 	netdev->features = NETIF_F_SG |
       
  5226 			   NETIF_F_HW_CSUM |
       
  5227 			   NETIF_F_HW_VLAN_TX |
       
  5228 			   NETIF_F_HW_VLAN_RX;
       
  5229 
       
  5230 	if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
       
  5231 		netdev->features |= NETIF_F_HW_VLAN_FILTER;
       
  5232 
       
  5233 	netdev->features |= NETIF_F_TSO;
       
  5234 	netdev->features |= NETIF_F_TSO6;
       
  5235 
       
  5236 	netdev->vlan_features |= NETIF_F_TSO;
       
  5237 	netdev->vlan_features |= NETIF_F_TSO6;
       
  5238 	netdev->vlan_features |= NETIF_F_HW_CSUM;
       
  5239 	netdev->vlan_features |= NETIF_F_SG;
       
  5240 
       
  5241 	if (pci_using_dac)
       
  5242 		netdev->features |= NETIF_F_HIGHDMA;
       
  5243 
       
  5244 	if (e1000e_enable_mng_pass_thru(&adapter->hw))
       
  5245 		adapter->flags |= FLAG_MNG_PT_ENABLED;
       
  5246 
       
  5247 	/*
       
  5248 	 * before reading the NVM, reset the controller to
       
  5249 	 * put the device in a known good starting state
       
  5250 	 */
       
  5251 	adapter->hw.mac.ops.reset_hw(&adapter->hw);
       
  5252 
       
  5253 	/*
       
  5254 	 * systems with ASPM and others may see the checksum fail on the first
       
  5255 	 * attempt. Let's give it a few tries
       
  5256 	 */
       
  5257 	for (i = 0;; i++) {
       
  5258 		if (e1000_validate_nvm_checksum(&adapter->hw) >= 0)
       
  5259 			break;
       
  5260 		if (i == 2) {
       
  5261 			e_err("The NVM Checksum Is Not Valid\n");
       
  5262 			err = -EIO;
       
  5263 			goto err_eeprom;
       
  5264 		}
       
  5265 	}
       
  5266 
       
  5267 	e1000_eeprom_checks(adapter);
       
  5268 
       
  5269 	/* copy the MAC address out of the NVM */
       
  5270 	if (e1000e_read_mac_addr(&adapter->hw))
       
  5271 		e_err("NVM Read Error while reading MAC address\n");
       
  5272 
       
  5273 	memcpy(netdev->dev_addr, adapter->hw.mac.addr, netdev->addr_len);
       
  5274 	memcpy(netdev->perm_addr, adapter->hw.mac.addr, netdev->addr_len);
       
  5275 
       
  5276 	if (!is_valid_ether_addr(netdev->perm_addr)) {
       
  5277 		e_err("Invalid MAC Address: %pM\n", netdev->perm_addr);
       
  5278 		err = -EIO;
       
  5279 		goto err_eeprom;
       
  5280 	}
       
  5281 
       
  5282 	init_timer(&adapter->watchdog_timer);
       
  5283 	adapter->watchdog_timer.function = &e1000_watchdog;
       
  5284 	adapter->watchdog_timer.data = (unsigned long) adapter;
       
  5285 
       
  5286 	init_timer(&adapter->phy_info_timer);
       
  5287 	adapter->phy_info_timer.function = &e1000_update_phy_info;
       
  5288 	adapter->phy_info_timer.data = (unsigned long) adapter;
       
  5289 
       
  5290 	INIT_WORK(&adapter->reset_task, e1000_reset_task);
       
  5291 	INIT_WORK(&adapter->watchdog_task, e1000_watchdog_task);
       
  5292 	INIT_WORK(&adapter->downshift_task, e1000e_downshift_workaround);
       
  5293 	INIT_WORK(&adapter->update_phy_task, e1000e_update_phy_task);
       
  5294 
       
  5295 	/* Initialize link parameters. User can change them with ethtool */
       
  5296 	adapter->hw.mac.autoneg = 1;
       
  5297 	adapter->fc_autoneg = 1;
       
  5298 	adapter->hw.fc.requested_mode = e1000_fc_default;
       
  5299 	adapter->hw.fc.current_mode = e1000_fc_default;
       
  5300 	adapter->hw.phy.autoneg_advertised = 0x2f;
       
  5301 
       
  5302 	/* ring size defaults */
       
  5303 	adapter->rx_ring->count = 256;
       
  5304 	adapter->tx_ring->count = 256;
       
  5305 
       
  5306 	/*
       
  5307 	 * Initial Wake on LAN setting - If APM wake is enabled in
       
  5308 	 * the EEPROM, enable the ACPI Magic Packet filter
       
  5309 	 */
       
  5310 	if (adapter->flags & FLAG_APME_IN_WUC) {
       
  5311 		/* APME bit in EEPROM is mapped to WUC.APME */
       
  5312 		eeprom_data = er32(WUC);
       
  5313 		eeprom_apme_mask = E1000_WUC_APME;
       
  5314 		if (eeprom_data & E1000_WUC_PHY_WAKE)
       
  5315 			adapter->flags2 |= FLAG2_HAS_PHY_WAKEUP;
       
  5316 	} else if (adapter->flags & FLAG_APME_IN_CTRL3) {
       
  5317 		if (adapter->flags & FLAG_APME_CHECK_PORT_B &&
       
  5318 		    (adapter->hw.bus.func == 1))
       
  5319 			e1000_read_nvm(&adapter->hw,
       
  5320 				NVM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
       
  5321 		else
       
  5322 			e1000_read_nvm(&adapter->hw,
       
  5323 				NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
       
  5324 	}
       
  5325 
       
  5326 	/* fetch WoL from EEPROM */
       
  5327 	if (eeprom_data & eeprom_apme_mask)
       
  5328 		adapter->eeprom_wol |= E1000_WUFC_MAG;
       
  5329 
       
  5330 	/*
       
  5331 	 * now that we have the eeprom settings, apply the special cases
       
  5332 	 * where the eeprom may be wrong or the board simply won't support
       
  5333 	 * wake on lan on a particular port
       
  5334 	 */
       
  5335 	if (!(adapter->flags & FLAG_HAS_WOL))
       
  5336 		adapter->eeprom_wol = 0;
       
  5337 
       
  5338 	/* initialize the wol settings based on the eeprom settings */
       
  5339 	adapter->wol = adapter->eeprom_wol;
       
  5340 	device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
       
  5341 
       
  5342 	/* save off EEPROM version number */
       
  5343 	e1000_read_nvm(&adapter->hw, 5, 1, &adapter->eeprom_vers);
       
  5344 
       
  5345 	/* reset the hardware with the new settings */
       
  5346 	e1000e_reset(adapter);
       
  5347 
       
  5348 	/*
       
  5349 	 * If the controller has AMT, do not set DRV_LOAD until the interface
       
  5350 	 * is up.  For all other cases, let the f/w know that the h/w is now
       
  5351 	 * under the control of the driver.
       
  5352 	 */
       
  5353 	if (!(adapter->flags & FLAG_HAS_AMT))
       
  5354 		e1000_get_hw_control(adapter);
       
  5355 
       
  5356 	adapter->ecdev = ecdev_offer(netdev,ec_poll,THIS_MODULE);
       
  5357 	if (adapter->ecdev) {
       
  5358 		if (ecdev_open(adapter->ecdev)) {
       
  5359 			ecdev_withdraw(adapter->ecdev);
       
  5360 			goto err_register;
       
  5361 		}
       
  5362 	} else {
       
  5363 		strcpy(netdev->name, "eth%d");
       
  5364 		err = register_netdev(netdev);
       
  5365 		if (err)
       
  5366 			goto err_register;
       
  5367 
       
  5368 		/* carrier off reporting is important to ethtool even BEFORE open */
       
  5369 		netif_carrier_off(netdev);
       
  5370 	}
       
  5371 
       
  5372 	e1000_print_device_info(adapter);
       
  5373 
       
  5374 	return 0;
       
  5375 
       
  5376 err_register:
       
  5377 	if (!(adapter->flags & FLAG_HAS_AMT))
       
  5378 		e1000_release_hw_control(adapter);
       
  5379 err_eeprom:
       
  5380 	if (!e1000_check_reset_block(&adapter->hw))
       
  5381 		e1000_phy_hw_reset(&adapter->hw);
       
  5382 err_hw_init:
       
  5383 
       
  5384 	kfree(adapter->tx_ring);
       
  5385 	kfree(adapter->rx_ring);
       
  5386 err_sw_init:
       
  5387 	if (adapter->hw.flash_address)
       
  5388 		iounmap(adapter->hw.flash_address);
       
  5389 	e1000e_reset_interrupt_capability(adapter);
       
  5390 err_flashmap:
       
  5391 	iounmap(adapter->hw.hw_addr);
       
  5392 err_ioremap:
       
  5393 	free_netdev(netdev);
       
  5394 err_alloc_etherdev:
       
  5395 	pci_release_selected_regions(pdev,
       
  5396 	                             pci_select_bars(pdev, IORESOURCE_MEM));
       
  5397 err_pci_reg:
       
  5398 err_dma:
       
  5399 	pci_disable_device(pdev);
       
  5400 	return err;
       
  5401 }
       
  5402 
       
  5403 /**
       
  5404  * e1000_remove - Device Removal Routine
       
  5405  * @pdev: PCI device information struct
       
  5406  *
       
  5407  * e1000_remove is called by the PCI subsystem to alert the driver
       
  5408  * that it should release a PCI device.  The could be caused by a
       
  5409  * Hot-Plug event, or because the driver is going to be removed from
       
  5410  * memory.
       
  5411  **/
       
  5412 static void __devexit e1000_remove(struct pci_dev *pdev)
       
  5413 {
       
  5414 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  5415 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  5416 
       
  5417 	/*
       
  5418 	 * flush_scheduled work may reschedule our watchdog task, so
       
  5419 	 * explicitly disable watchdog tasks from being rescheduled
       
  5420 	 */
       
  5421 	set_bit(__E1000_DOWN, &adapter->state);
       
  5422 	del_timer_sync(&adapter->watchdog_timer);
       
  5423 	del_timer_sync(&adapter->phy_info_timer);
       
  5424 
       
  5425 	flush_scheduled_work();
       
  5426 
       
  5427 	/*
       
  5428 	 * Release control of h/w to f/w.  If f/w is AMT enabled, this
       
  5429 	 * would have already happened in close and is redundant.
       
  5430 	 */
       
  5431 	e1000_release_hw_control(adapter);
       
  5432 
       
  5433 	if (adapter->ecdev) {
       
  5434 		ecdev_close(adapter->ecdev);
       
  5435 		ecdev_withdraw(adapter->ecdev);
       
  5436 	} else {
       
  5437 		unregister_netdev(netdev);
       
  5438 	}
       
  5439 
       
  5440 	if (!e1000_check_reset_block(&adapter->hw))
       
  5441 		e1000_phy_hw_reset(&adapter->hw);
       
  5442 
       
  5443 	e1000e_reset_interrupt_capability(adapter);
       
  5444 	kfree(adapter->tx_ring);
       
  5445 	kfree(adapter->rx_ring);
       
  5446 
       
  5447 	iounmap(adapter->hw.hw_addr);
       
  5448 	if (adapter->hw.flash_address)
       
  5449 		iounmap(adapter->hw.flash_address);
       
  5450 	pci_release_selected_regions(pdev,
       
  5451 	                             pci_select_bars(pdev, IORESOURCE_MEM));
       
  5452 
       
  5453 	free_netdev(netdev);
       
  5454 
       
  5455 	/* AER disable */
       
  5456 	pci_disable_pcie_error_reporting(pdev);
       
  5457 
       
  5458 	pci_disable_device(pdev);
       
  5459 }
       
  5460 
       
  5461 /* PCI Error Recovery (ERS) */
       
  5462 static struct pci_error_handlers e1000_err_handler = {
       
  5463 	.error_detected = e1000_io_error_detected,
       
  5464 	.slot_reset = e1000_io_slot_reset,
       
  5465 	.resume = e1000_io_resume,
       
  5466 };
       
  5467 
       
  5468 static struct pci_device_id e1000_pci_tbl[] = {
       
  5469 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_COPPER), board_82571 },
       
  5470 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_FIBER), board_82571 },
       
  5471 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER), board_82571 },
       
  5472 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER_LP), board_82571 },
       
  5473 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_FIBER), board_82571 },
       
  5474 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES), board_82571 },
       
  5475 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_DUAL), board_82571 },
       
  5476 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_QUAD), board_82571 },
       
  5477 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82571PT_QUAD_COPPER), board_82571 },
       
  5478 
       
  5479 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI), board_82572 },
       
  5480 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_COPPER), board_82572 },
       
  5481 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_FIBER), board_82572 },
       
  5482 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_SERDES), board_82572 },
       
  5483 
       
  5484 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E), board_82573 },
       
  5485 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E_IAMT), board_82573 },
       
  5486 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82573L), board_82573 },
       
  5487 
       
  5488 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82574L), board_82574 },
       
  5489 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82574LA), board_82574 },
       
  5490 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82583V), board_82583 },
       
  5491 
       
  5492 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_DPT),
       
  5493 	  board_80003es2lan },
       
  5494 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_SPT),
       
  5495 	  board_80003es2lan },
       
  5496 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_DPT),
       
  5497 	  board_80003es2lan },
       
  5498 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_SPT),
       
  5499 	  board_80003es2lan },
       
  5500 
       
  5501 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE), board_ich8lan },
       
  5502 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_G), board_ich8lan },
       
  5503 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_GT), board_ich8lan },
       
  5504 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_AMT), board_ich8lan },
       
  5505 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_C), board_ich8lan },
       
  5506 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M), board_ich8lan },
       
  5507 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M_AMT), board_ich8lan },
       
  5508 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_82567V_3), board_ich8lan },
       
  5509 
       
  5510 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE), board_ich9lan },
       
  5511 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_G), board_ich9lan },
       
  5512 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_GT), board_ich9lan },
       
  5513 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_AMT), board_ich9lan },
       
  5514 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_C), board_ich9lan },
       
  5515 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_BM), board_ich9lan },
       
  5516 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M), board_ich9lan },
       
  5517 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_AMT), board_ich9lan },
       
  5518 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_V), board_ich9lan },
       
  5519 
       
  5520 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LM), board_ich9lan },
       
  5521 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LF), board_ich9lan },
       
  5522 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_V), board_ich9lan },
       
  5523 
       
  5524 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LM), board_ich10lan },
       
  5525 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LF), board_ich10lan },
       
  5526 
       
  5527 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LM), board_pchlan },
       
  5528 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LC), board_pchlan },
       
  5529 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DM), board_pchlan },
       
  5530 	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DC), board_pchlan },
       
  5531 
       
  5532 	{ }	/* terminate list */
       
  5533 };
       
  5534 //MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
       
  5535 
       
  5536 /* PCI Device API Driver */
       
  5537 static struct pci_driver e1000_driver = {
       
  5538 	.name     = e1000e_driver_name,
       
  5539 	.id_table = e1000_pci_tbl,
       
  5540 	.probe    = e1000_probe,
       
  5541 	.remove   = __devexit_p(e1000_remove),
       
  5542 #ifdef CONFIG_PM
       
  5543 	/* Power Management Hooks */
       
  5544 	.suspend  = e1000_suspend,
       
  5545 	.resume   = e1000_resume,
       
  5546 #endif
       
  5547 	.shutdown = e1000_shutdown,
       
  5548 	.err_handler = &e1000_err_handler
       
  5549 };
       
  5550 
       
  5551 /**
       
  5552  * e1000_init_module - Driver Registration Routine
       
  5553  *
       
  5554  * e1000_init_module is the first routine called when the driver is
       
  5555  * loaded. All it does is register with the PCI subsystem.
       
  5556  **/
       
  5557 static int __init e1000_init_module(void)
       
  5558 {
       
  5559 	int ret;
       
  5560 	printk(KERN_INFO "%s: Ethercat-capable Intel(R) PRO/1000 Network Driver - %s\n",
       
  5561 	       e1000e_driver_name, e1000e_driver_version);
       
  5562 	printk(KERN_INFO "%s: Copyright (c) 1999-2008 Intel Corporation.\n",
       
  5563 	       e1000e_driver_name);
       
  5564 	ret = pci_register_driver(&e1000_driver);
       
  5565 	pm_qos_add_requirement(PM_QOS_CPU_DMA_LATENCY, e1000e_driver_name,
       
  5566 			       PM_QOS_DEFAULT_VALUE);
       
  5567 				
       
  5568 	return ret;
       
  5569 }
       
  5570 module_init(e1000_init_module);
       
  5571 
       
  5572 /**
       
  5573  * e1000_exit_module - Driver Exit Cleanup Routine
       
  5574  *
       
  5575  * e1000_exit_module is called just before the driver is removed
       
  5576  * from memory.
       
  5577  **/
       
  5578 static void __exit e1000_exit_module(void)
       
  5579 {
       
  5580 	pci_unregister_driver(&e1000_driver);
       
  5581 	pm_qos_remove_requirement(PM_QOS_CPU_DMA_LATENCY, e1000e_driver_name);
       
  5582 }
       
  5583 module_exit(e1000_exit_module);
       
  5584 
       
  5585 
       
  5586 MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
       
  5587 MODULE_DESCRIPTION("Ethercat-capable Intel(R) PRO/1000 Network Driver");
       
  5588 MODULE_LICENSE("GPL");
       
  5589 MODULE_VERSION(DRV_VERSION);
       
  5590 
       
  5591 /* e1000_main.c */