]> nv-tegra.nvidia Code Review - linux-2.6.git/blob - drivers/net/e1000e/netdev.c
f91f247ed6afa70fbbbe3d5b05d383f74b58bc86
[linux-2.6.git] / drivers / net / e1000e / netdev.c
1 /*******************************************************************************
2
3   Intel PRO/1000 Linux driver
4   Copyright(c) 1999 - 2009 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.h"
50
51 #define DRV_VERSION "1.0.2-k2"
52 char e1000e_driver_name[] = "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 /**
69  * e1000_desc_unused - calculate if we have unused descriptors
70  **/
71 static int e1000_desc_unused(struct e1000_ring *ring)
72 {
73         if (ring->next_to_clean > ring->next_to_use)
74                 return ring->next_to_clean - ring->next_to_use - 1;
75
76         return ring->count + ring->next_to_clean - ring->next_to_use - 1;
77 }
78
79 /**
80  * e1000_receive_skb - helper function to handle Rx indications
81  * @adapter: board private structure
82  * @status: descriptor status field as written by hardware
83  * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
84  * @skb: pointer to sk_buff to be indicated to stack
85  **/
86 static void e1000_receive_skb(struct e1000_adapter *adapter,
87                               struct net_device *netdev,
88                               struct sk_buff *skb,
89                               u8 status, __le16 vlan)
90 {
91         skb->protocol = eth_type_trans(skb, netdev);
92
93         if (adapter->vlgrp && (status & E1000_RXD_STAT_VP))
94                 vlan_gro_receive(&adapter->napi, adapter->vlgrp,
95                                  le16_to_cpu(vlan), skb);
96         else
97                 napi_gro_receive(&adapter->napi, skb);
98 }
99
100 /**
101  * e1000_rx_checksum - Receive Checksum Offload for 82543
102  * @adapter:     board private structure
103  * @status_err:  receive descriptor status and error fields
104  * @csum:       receive descriptor csum field
105  * @sk_buff:     socket buffer with received data
106  **/
107 static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
108                               u32 csum, struct sk_buff *skb)
109 {
110         u16 status = (u16)status_err;
111         u8 errors = (u8)(status_err >> 24);
112         skb->ip_summed = CHECKSUM_NONE;
113
114         /* Ignore Checksum bit is set */
115         if (status & E1000_RXD_STAT_IXSM)
116                 return;
117         /* TCP/UDP checksum error bit is set */
118         if (errors & E1000_RXD_ERR_TCPE) {
119                 /* let the stack verify checksum errors */
120                 adapter->hw_csum_err++;
121                 return;
122         }
123
124         /* TCP/UDP Checksum has not been calculated */
125         if (!(status & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)))
126                 return;
127
128         /* It must be a TCP or UDP packet with a valid checksum */
129         if (status & E1000_RXD_STAT_TCPCS) {
130                 /* TCP checksum is good */
131                 skb->ip_summed = CHECKSUM_UNNECESSARY;
132         } else {
133                 /*
134                  * IP fragment with UDP payload
135                  * Hardware complements the payload checksum, so we undo it
136                  * and then put the value in host order for further stack use.
137                  */
138                 __sum16 sum = (__force __sum16)htons(csum);
139                 skb->csum = csum_unfold(~sum);
140                 skb->ip_summed = CHECKSUM_COMPLETE;
141         }
142         adapter->hw_csum_good++;
143 }
144
145 /**
146  * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
147  * @adapter: address of board private structure
148  **/
149 static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
150                                    int cleaned_count)
151 {
152         struct net_device *netdev = adapter->netdev;
153         struct pci_dev *pdev = adapter->pdev;
154         struct e1000_ring *rx_ring = adapter->rx_ring;
155         struct e1000_rx_desc *rx_desc;
156         struct e1000_buffer *buffer_info;
157         struct sk_buff *skb;
158         unsigned int i;
159         unsigned int bufsz = adapter->rx_buffer_len;
160
161         i = rx_ring->next_to_use;
162         buffer_info = &rx_ring->buffer_info[i];
163
164         while (cleaned_count--) {
165                 skb = buffer_info->skb;
166                 if (skb) {
167                         skb_trim(skb, 0);
168                         goto map_skb;
169                 }
170
171                 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
172                 if (!skb) {
173                         /* Better luck next round */
174                         adapter->alloc_rx_buff_failed++;
175                         break;
176                 }
177
178                 buffer_info->skb = skb;
179 map_skb:
180                 buffer_info->dma = pci_map_single(pdev, skb->data,
181                                                   adapter->rx_buffer_len,
182                                                   PCI_DMA_FROMDEVICE);
183                 if (pci_dma_mapping_error(pdev, buffer_info->dma)) {
184                         dev_err(&pdev->dev, "RX DMA map failed\n");
185                         adapter->rx_dma_failed++;
186                         break;
187                 }
188
189                 rx_desc = E1000_RX_DESC(*rx_ring, i);
190                 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
191
192                 i++;
193                 if (i == rx_ring->count)
194                         i = 0;
195                 buffer_info = &rx_ring->buffer_info[i];
196         }
197
198         if (rx_ring->next_to_use != i) {
199                 rx_ring->next_to_use = i;
200                 if (i-- == 0)
201                         i = (rx_ring->count - 1);
202
203                 /*
204                  * Force memory writes to complete before letting h/w
205                  * know there are new descriptors to fetch.  (Only
206                  * applicable for weak-ordered memory model archs,
207                  * such as IA-64).
208                  */
209                 wmb();
210                 writel(i, adapter->hw.hw_addr + rx_ring->tail);
211         }
212 }
213
214 /**
215  * e1000_alloc_rx_buffers_ps - Replace used receive buffers; packet split
216  * @adapter: address of board private structure
217  **/
218 static void e1000_alloc_rx_buffers_ps(struct e1000_adapter *adapter,
219                                       int cleaned_count)
220 {
221         struct net_device *netdev = adapter->netdev;
222         struct pci_dev *pdev = adapter->pdev;
223         union e1000_rx_desc_packet_split *rx_desc;
224         struct e1000_ring *rx_ring = adapter->rx_ring;
225         struct e1000_buffer *buffer_info;
226         struct e1000_ps_page *ps_page;
227         struct sk_buff *skb;
228         unsigned int i, j;
229
230         i = rx_ring->next_to_use;
231         buffer_info = &rx_ring->buffer_info[i];
232
233         while (cleaned_count--) {
234                 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
235
236                 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
237                         ps_page = &buffer_info->ps_pages[j];
238                         if (j >= adapter->rx_ps_pages) {
239                                 /* all unused desc entries get hw null ptr */
240                                 rx_desc->read.buffer_addr[j+1] = ~cpu_to_le64(0);
241                                 continue;
242                         }
243                         if (!ps_page->page) {
244                                 ps_page->page = alloc_page(GFP_ATOMIC);
245                                 if (!ps_page->page) {
246                                         adapter->alloc_rx_buff_failed++;
247                                         goto no_buffers;
248                                 }
249                                 ps_page->dma = pci_map_page(pdev,
250                                                    ps_page->page,
251                                                    0, PAGE_SIZE,
252                                                    PCI_DMA_FROMDEVICE);
253                                 if (pci_dma_mapping_error(pdev, ps_page->dma)) {
254                                         dev_err(&adapter->pdev->dev,
255                                           "RX DMA page map failed\n");
256                                         adapter->rx_dma_failed++;
257                                         goto no_buffers;
258                                 }
259                         }
260                         /*
261                          * Refresh the desc even if buffer_addrs
262                          * didn't change because each write-back
263                          * erases this info.
264                          */
265                         rx_desc->read.buffer_addr[j+1] =
266                              cpu_to_le64(ps_page->dma);
267                 }
268
269                 skb = netdev_alloc_skb_ip_align(netdev,
270                                                 adapter->rx_ps_bsize0);
271
272                 if (!skb) {
273                         adapter->alloc_rx_buff_failed++;
274                         break;
275                 }
276
277                 buffer_info->skb = skb;
278                 buffer_info->dma = pci_map_single(pdev, skb->data,
279                                                   adapter->rx_ps_bsize0,
280                                                   PCI_DMA_FROMDEVICE);
281                 if (pci_dma_mapping_error(pdev, buffer_info->dma)) {
282                         dev_err(&pdev->dev, "RX DMA map failed\n");
283                         adapter->rx_dma_failed++;
284                         /* cleanup skb */
285                         dev_kfree_skb_any(skb);
286                         buffer_info->skb = NULL;
287                         break;
288                 }
289
290                 rx_desc->read.buffer_addr[0] = cpu_to_le64(buffer_info->dma);
291
292                 i++;
293                 if (i == rx_ring->count)
294                         i = 0;
295                 buffer_info = &rx_ring->buffer_info[i];
296         }
297
298 no_buffers:
299         if (rx_ring->next_to_use != i) {
300                 rx_ring->next_to_use = i;
301
302                 if (!(i--))
303                         i = (rx_ring->count - 1);
304
305                 /*
306                  * Force memory writes to complete before letting h/w
307                  * know there are new descriptors to fetch.  (Only
308                  * applicable for weak-ordered memory model archs,
309                  * such as IA-64).
310                  */
311                 wmb();
312                 /*
313                  * Hardware increments by 16 bytes, but packet split
314                  * descriptors are 32 bytes...so we increment tail
315                  * twice as much.
316                  */
317                 writel(i<<1, adapter->hw.hw_addr + rx_ring->tail);
318         }
319 }
320
321 /**
322  * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
323  * @adapter: address of board private structure
324  * @cleaned_count: number of buffers to allocate this pass
325  **/
326
327 static void e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
328                                          int cleaned_count)
329 {
330         struct net_device *netdev = adapter->netdev;
331         struct pci_dev *pdev = adapter->pdev;
332         struct e1000_rx_desc *rx_desc;
333         struct e1000_ring *rx_ring = adapter->rx_ring;
334         struct e1000_buffer *buffer_info;
335         struct sk_buff *skb;
336         unsigned int i;
337         unsigned int bufsz = 256 - 16 /* for skb_reserve */;
338
339         i = rx_ring->next_to_use;
340         buffer_info = &rx_ring->buffer_info[i];
341
342         while (cleaned_count--) {
343                 skb = buffer_info->skb;
344                 if (skb) {
345                         skb_trim(skb, 0);
346                         goto check_page;
347                 }
348
349                 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
350                 if (unlikely(!skb)) {
351                         /* Better luck next round */
352                         adapter->alloc_rx_buff_failed++;
353                         break;
354                 }
355
356                 buffer_info->skb = skb;
357 check_page:
358                 /* allocate a new page if necessary */
359                 if (!buffer_info->page) {
360                         buffer_info->page = alloc_page(GFP_ATOMIC);
361                         if (unlikely(!buffer_info->page)) {
362                                 adapter->alloc_rx_buff_failed++;
363                                 break;
364                         }
365                 }
366
367                 if (!buffer_info->dma)
368                         buffer_info->dma = pci_map_page(pdev,
369                                                         buffer_info->page, 0,
370                                                         PAGE_SIZE,
371                                                         PCI_DMA_FROMDEVICE);
372
373                 rx_desc = E1000_RX_DESC(*rx_ring, i);
374                 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
375
376                 if (unlikely(++i == rx_ring->count))
377                         i = 0;
378                 buffer_info = &rx_ring->buffer_info[i];
379         }
380
381         if (likely(rx_ring->next_to_use != i)) {
382                 rx_ring->next_to_use = i;
383                 if (unlikely(i-- == 0))
384                         i = (rx_ring->count - 1);
385
386                 /* Force memory writes to complete before letting h/w
387                  * know there are new descriptors to fetch.  (Only
388                  * applicable for weak-ordered memory model archs,
389                  * such as IA-64). */
390                 wmb();
391                 writel(i, adapter->hw.hw_addr + rx_ring->tail);
392         }
393 }
394
395 /**
396  * e1000_clean_rx_irq - Send received data up the network stack; legacy
397  * @adapter: board private structure
398  *
399  * the return value indicates whether actual cleaning was done, there
400  * is no guarantee that everything was cleaned
401  **/
402 static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
403                                int *work_done, int work_to_do)
404 {
405         struct net_device *netdev = adapter->netdev;
406         struct pci_dev *pdev = adapter->pdev;
407         struct e1000_hw *hw = &adapter->hw;
408         struct e1000_ring *rx_ring = adapter->rx_ring;
409         struct e1000_rx_desc *rx_desc, *next_rxd;
410         struct e1000_buffer *buffer_info, *next_buffer;
411         u32 length;
412         unsigned int i;
413         int cleaned_count = 0;
414         bool cleaned = 0;
415         unsigned int total_rx_bytes = 0, total_rx_packets = 0;
416
417         i = rx_ring->next_to_clean;
418         rx_desc = E1000_RX_DESC(*rx_ring, i);
419         buffer_info = &rx_ring->buffer_info[i];
420
421         while (rx_desc->status & E1000_RXD_STAT_DD) {
422                 struct sk_buff *skb;
423                 u8 status;
424
425                 if (*work_done >= work_to_do)
426                         break;
427                 (*work_done)++;
428
429                 status = rx_desc->status;
430                 skb = buffer_info->skb;
431                 buffer_info->skb = NULL;
432
433                 prefetch(skb->data - NET_IP_ALIGN);
434
435                 i++;
436                 if (i == rx_ring->count)
437                         i = 0;
438                 next_rxd = E1000_RX_DESC(*rx_ring, i);
439                 prefetch(next_rxd);
440
441                 next_buffer = &rx_ring->buffer_info[i];
442
443                 cleaned = 1;
444                 cleaned_count++;
445                 pci_unmap_single(pdev,
446                                  buffer_info->dma,
447                                  adapter->rx_buffer_len,
448                                  PCI_DMA_FROMDEVICE);
449                 buffer_info->dma = 0;
450
451                 length = le16_to_cpu(rx_desc->length);
452
453                 /* !EOP means multiple descriptors were used to store a single
454                  * packet, also make sure the frame isn't just CRC only */
455                 if (!(status & E1000_RXD_STAT_EOP) || (length <= 4)) {
456                         /* All receives must fit into a single buffer */
457                         e_dbg("Receive packet consumed multiple buffers\n");
458                         /* recycle */
459                         buffer_info->skb = skb;
460                         goto next_desc;
461                 }
462
463                 if (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK) {
464                         /* recycle */
465                         buffer_info->skb = skb;
466                         goto next_desc;
467                 }
468
469                 /* adjust length to remove Ethernet CRC */
470                 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
471                         length -= 4;
472
473                 total_rx_bytes += length;
474                 total_rx_packets++;
475
476                 /*
477                  * code added for copybreak, this should improve
478                  * performance for small packets with large amounts
479                  * of reassembly being done in the stack
480                  */
481                 if (length < copybreak) {
482                         struct sk_buff *new_skb =
483                             netdev_alloc_skb_ip_align(netdev, length);
484                         if (new_skb) {
485                                 skb_copy_to_linear_data_offset(new_skb,
486                                                                -NET_IP_ALIGN,
487                                                                (skb->data -
488                                                                 NET_IP_ALIGN),
489                                                                (length +
490                                                                 NET_IP_ALIGN));
491                                 /* save the skb in buffer_info as good */
492                                 buffer_info->skb = skb;
493                                 skb = new_skb;
494                         }
495                         /* else just continue with the old one */
496                 }
497                 /* end copybreak code */
498                 skb_put(skb, length);
499
500                 /* Receive Checksum Offload */
501                 e1000_rx_checksum(adapter,
502                                   (u32)(status) |
503                                   ((u32)(rx_desc->errors) << 24),
504                                   le16_to_cpu(rx_desc->csum), skb);
505
506                 e1000_receive_skb(adapter, netdev, skb,status,rx_desc->special);
507
508 next_desc:
509                 rx_desc->status = 0;
510
511                 /* return some buffers to hardware, one at a time is too slow */
512                 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
513                         adapter->alloc_rx_buf(adapter, cleaned_count);
514                         cleaned_count = 0;
515                 }
516
517                 /* use prefetched values */
518                 rx_desc = next_rxd;
519                 buffer_info = next_buffer;
520         }
521         rx_ring->next_to_clean = i;
522
523         cleaned_count = e1000_desc_unused(rx_ring);
524         if (cleaned_count)
525                 adapter->alloc_rx_buf(adapter, cleaned_count);
526
527         adapter->total_rx_bytes += total_rx_bytes;
528         adapter->total_rx_packets += total_rx_packets;
529         netdev->stats.rx_bytes += total_rx_bytes;
530         netdev->stats.rx_packets += total_rx_packets;
531         return cleaned;
532 }
533
534 static void e1000_put_txbuf(struct e1000_adapter *adapter,
535                              struct e1000_buffer *buffer_info)
536 {
537         if (buffer_info->dma) {
538                 if (buffer_info->mapped_as_page)
539                         pci_unmap_page(adapter->pdev, buffer_info->dma,
540                                        buffer_info->length, PCI_DMA_TODEVICE);
541                 else
542                         pci_unmap_single(adapter->pdev, buffer_info->dma,
543                                          buffer_info->length,
544                                          PCI_DMA_TODEVICE);
545                 buffer_info->dma = 0;
546         }
547         if (buffer_info->skb) {
548                 dev_kfree_skb_any(buffer_info->skb);
549                 buffer_info->skb = NULL;
550         }
551         buffer_info->time_stamp = 0;
552 }
553
554 static void e1000_print_hw_hang(struct work_struct *work)
555 {
556         struct e1000_adapter *adapter = container_of(work,
557                                                      struct e1000_adapter,
558                                                      print_hang_task);
559         struct e1000_ring *tx_ring = adapter->tx_ring;
560         unsigned int i = tx_ring->next_to_clean;
561         unsigned int eop = tx_ring->buffer_info[i].next_to_watch;
562         struct e1000_tx_desc *eop_desc = E1000_TX_DESC(*tx_ring, eop);
563         struct e1000_hw *hw = &adapter->hw;
564         u16 phy_status, phy_1000t_status, phy_ext_status;
565         u16 pci_status;
566
567         e1e_rphy(hw, PHY_STATUS, &phy_status);
568         e1e_rphy(hw, PHY_1000T_STATUS, &phy_1000t_status);
569         e1e_rphy(hw, PHY_EXT_STATUS, &phy_ext_status);
570
571         pci_read_config_word(adapter->pdev, PCI_STATUS, &pci_status);
572
573         /* detected Hardware unit hang */
574         e_err("Detected Hardware Unit Hang:\n"
575               "  TDH                  <%x>\n"
576               "  TDT                  <%x>\n"
577               "  next_to_use          <%x>\n"
578               "  next_to_clean        <%x>\n"
579               "buffer_info[next_to_clean]:\n"
580               "  time_stamp           <%lx>\n"
581               "  next_to_watch        <%x>\n"
582               "  jiffies              <%lx>\n"
583               "  next_to_watch.status <%x>\n"
584               "MAC Status             <%x>\n"
585               "PHY Status             <%x>\n"
586               "PHY 1000BASE-T Status  <%x>\n"
587               "PHY Extended Status    <%x>\n"
588               "PCI Status             <%x>\n",
589               readl(adapter->hw.hw_addr + tx_ring->head),
590               readl(adapter->hw.hw_addr + tx_ring->tail),
591               tx_ring->next_to_use,
592               tx_ring->next_to_clean,
593               tx_ring->buffer_info[eop].time_stamp,
594               eop,
595               jiffies,
596               eop_desc->upper.fields.status,
597               er32(STATUS),
598               phy_status,
599               phy_1000t_status,
600               phy_ext_status,
601               pci_status);
602 }
603
604 /**
605  * e1000_clean_tx_irq - Reclaim resources after transmit completes
606  * @adapter: board private structure
607  *
608  * the return value indicates whether actual cleaning was done, there
609  * is no guarantee that everything was cleaned
610  **/
611 static bool e1000_clean_tx_irq(struct e1000_adapter *adapter)
612 {
613         struct net_device *netdev = adapter->netdev;
614         struct e1000_hw *hw = &adapter->hw;
615         struct e1000_ring *tx_ring = adapter->tx_ring;
616         struct e1000_tx_desc *tx_desc, *eop_desc;
617         struct e1000_buffer *buffer_info;
618         unsigned int i, eop;
619         unsigned int count = 0;
620         unsigned int total_tx_bytes = 0, total_tx_packets = 0;
621
622         i = tx_ring->next_to_clean;
623         eop = tx_ring->buffer_info[i].next_to_watch;
624         eop_desc = E1000_TX_DESC(*tx_ring, eop);
625
626         while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
627                (count < tx_ring->count)) {
628                 bool cleaned = false;
629                 for (; !cleaned; count++) {
630                         tx_desc = E1000_TX_DESC(*tx_ring, i);
631                         buffer_info = &tx_ring->buffer_info[i];
632                         cleaned = (i == eop);
633
634                         if (cleaned) {
635                                 struct sk_buff *skb = buffer_info->skb;
636                                 unsigned int segs, bytecount;
637                                 segs = skb_shinfo(skb)->gso_segs ?: 1;
638                                 /* multiply data chunks by size of headers */
639                                 bytecount = ((segs - 1) * skb_headlen(skb)) +
640                                             skb->len;
641                                 total_tx_packets += segs;
642                                 total_tx_bytes += bytecount;
643                         }
644
645                         e1000_put_txbuf(adapter, buffer_info);
646                         tx_desc->upper.data = 0;
647
648                         i++;
649                         if (i == tx_ring->count)
650                                 i = 0;
651                 }
652
653                 eop = tx_ring->buffer_info[i].next_to_watch;
654                 eop_desc = E1000_TX_DESC(*tx_ring, eop);
655         }
656
657         tx_ring->next_to_clean = i;
658
659 #define TX_WAKE_THRESHOLD 32
660         if (count && netif_carrier_ok(netdev) &&
661             e1000_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD) {
662                 /* Make sure that anybody stopping the queue after this
663                  * sees the new next_to_clean.
664                  */
665                 smp_mb();
666
667                 if (netif_queue_stopped(netdev) &&
668                     !(test_bit(__E1000_DOWN, &adapter->state))) {
669                         netif_wake_queue(netdev);
670                         ++adapter->restart_queue;
671                 }
672         }
673
674         if (adapter->detect_tx_hung) {
675                 /*
676                  * Detect a transmit hang in hardware, this serializes the
677                  * check with the clearing of time_stamp and movement of i
678                  */
679                 adapter->detect_tx_hung = 0;
680                 if (tx_ring->buffer_info[i].time_stamp &&
681                     time_after(jiffies, tx_ring->buffer_info[i].time_stamp
682                                + (adapter->tx_timeout_factor * HZ)) &&
683                     !(er32(STATUS) & E1000_STATUS_TXOFF)) {
684                         schedule_work(&adapter->print_hang_task);
685                         netif_stop_queue(netdev);
686                 }
687         }
688         adapter->total_tx_bytes += total_tx_bytes;
689         adapter->total_tx_packets += total_tx_packets;
690         netdev->stats.tx_bytes += total_tx_bytes;
691         netdev->stats.tx_packets += total_tx_packets;
692         return (count < tx_ring->count);
693 }
694
695 /**
696  * e1000_clean_rx_irq_ps - Send received data up the network stack; packet split
697  * @adapter: board private structure
698  *
699  * the return value indicates whether actual cleaning was done, there
700  * is no guarantee that everything was cleaned
701  **/
702 static bool e1000_clean_rx_irq_ps(struct e1000_adapter *adapter,
703                                   int *work_done, int work_to_do)
704 {
705         struct e1000_hw *hw = &adapter->hw;
706         union e1000_rx_desc_packet_split *rx_desc, *next_rxd;
707         struct net_device *netdev = adapter->netdev;
708         struct pci_dev *pdev = adapter->pdev;
709         struct e1000_ring *rx_ring = adapter->rx_ring;
710         struct e1000_buffer *buffer_info, *next_buffer;
711         struct e1000_ps_page *ps_page;
712         struct sk_buff *skb;
713         unsigned int i, j;
714         u32 length, staterr;
715         int cleaned_count = 0;
716         bool cleaned = 0;
717         unsigned int total_rx_bytes = 0, total_rx_packets = 0;
718
719         i = rx_ring->next_to_clean;
720         rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
721         staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
722         buffer_info = &rx_ring->buffer_info[i];
723
724         while (staterr & E1000_RXD_STAT_DD) {
725                 if (*work_done >= work_to_do)
726                         break;
727                 (*work_done)++;
728                 skb = buffer_info->skb;
729
730                 /* in the packet split case this is header only */
731                 prefetch(skb->data - NET_IP_ALIGN);
732
733                 i++;
734                 if (i == rx_ring->count)
735                         i = 0;
736                 next_rxd = E1000_RX_DESC_PS(*rx_ring, i);
737                 prefetch(next_rxd);
738
739                 next_buffer = &rx_ring->buffer_info[i];
740
741                 cleaned = 1;
742                 cleaned_count++;
743                 pci_unmap_single(pdev, buffer_info->dma,
744                                  adapter->rx_ps_bsize0,
745                                  PCI_DMA_FROMDEVICE);
746                 buffer_info->dma = 0;
747
748                 if (!(staterr & E1000_RXD_STAT_EOP)) {
749                         e_dbg("Packet Split buffers didn't pick up the full "
750                               "packet\n");
751                         dev_kfree_skb_irq(skb);
752                         goto next_desc;
753                 }
754
755                 if (staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) {
756                         dev_kfree_skb_irq(skb);
757                         goto next_desc;
758                 }
759
760                 length = le16_to_cpu(rx_desc->wb.middle.length0);
761
762                 if (!length) {
763                         e_dbg("Last part of the packet spanning multiple "
764                               "descriptors\n");
765                         dev_kfree_skb_irq(skb);
766                         goto next_desc;
767                 }
768
769                 /* Good Receive */
770                 skb_put(skb, length);
771
772                 {
773                 /*
774                  * this looks ugly, but it seems compiler issues make it
775                  * more efficient than reusing j
776                  */
777                 int l1 = le16_to_cpu(rx_desc->wb.upper.length[0]);
778
779                 /*
780                  * page alloc/put takes too long and effects small packet
781                  * throughput, so unsplit small packets and save the alloc/put
782                  * only valid in softirq (napi) context to call kmap_*
783                  */
784                 if (l1 && (l1 <= copybreak) &&
785                     ((length + l1) <= adapter->rx_ps_bsize0)) {
786                         u8 *vaddr;
787
788                         ps_page = &buffer_info->ps_pages[0];
789
790                         /*
791                          * there is no documentation about how to call
792                          * kmap_atomic, so we can't hold the mapping
793                          * very long
794                          */
795                         pci_dma_sync_single_for_cpu(pdev, ps_page->dma,
796                                 PAGE_SIZE, PCI_DMA_FROMDEVICE);
797                         vaddr = kmap_atomic(ps_page->page, KM_SKB_DATA_SOFTIRQ);
798                         memcpy(skb_tail_pointer(skb), vaddr, l1);
799                         kunmap_atomic(vaddr, KM_SKB_DATA_SOFTIRQ);
800                         pci_dma_sync_single_for_device(pdev, ps_page->dma,
801                                 PAGE_SIZE, PCI_DMA_FROMDEVICE);
802
803                         /* remove the CRC */
804                         if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
805                                 l1 -= 4;
806
807                         skb_put(skb, l1);
808                         goto copydone;
809                 } /* if */
810                 }
811
812                 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
813                         length = le16_to_cpu(rx_desc->wb.upper.length[j]);
814                         if (!length)
815                                 break;
816
817                         ps_page = &buffer_info->ps_pages[j];
818                         pci_unmap_page(pdev, ps_page->dma, PAGE_SIZE,
819                                        PCI_DMA_FROMDEVICE);
820                         ps_page->dma = 0;
821                         skb_fill_page_desc(skb, j, ps_page->page, 0, length);
822                         ps_page->page = NULL;
823                         skb->len += length;
824                         skb->data_len += length;
825                         skb->truesize += length;
826                 }
827
828                 /* strip the ethernet crc, problem is we're using pages now so
829                  * this whole operation can get a little cpu intensive
830                  */
831                 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
832                         pskb_trim(skb, skb->len - 4);
833
834 copydone:
835                 total_rx_bytes += skb->len;
836                 total_rx_packets++;
837
838                 e1000_rx_checksum(adapter, staterr, le16_to_cpu(
839                         rx_desc->wb.lower.hi_dword.csum_ip.csum), skb);
840
841                 if (rx_desc->wb.upper.header_status &
842                            cpu_to_le16(E1000_RXDPS_HDRSTAT_HDRSP))
843                         adapter->rx_hdr_split++;
844
845                 e1000_receive_skb(adapter, netdev, skb,
846                                   staterr, rx_desc->wb.middle.vlan);
847
848 next_desc:
849                 rx_desc->wb.middle.status_error &= cpu_to_le32(~0xFF);
850                 buffer_info->skb = NULL;
851
852                 /* return some buffers to hardware, one at a time is too slow */
853                 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
854                         adapter->alloc_rx_buf(adapter, cleaned_count);
855                         cleaned_count = 0;
856                 }
857
858                 /* use prefetched values */
859                 rx_desc = next_rxd;
860                 buffer_info = next_buffer;
861
862                 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
863         }
864         rx_ring->next_to_clean = i;
865
866         cleaned_count = e1000_desc_unused(rx_ring);
867         if (cleaned_count)
868                 adapter->alloc_rx_buf(adapter, cleaned_count);
869
870         adapter->total_rx_bytes += total_rx_bytes;
871         adapter->total_rx_packets += total_rx_packets;
872         netdev->stats.rx_bytes += total_rx_bytes;
873         netdev->stats.rx_packets += total_rx_packets;
874         return cleaned;
875 }
876
877 /**
878  * e1000_consume_page - helper function
879  **/
880 static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
881                                u16 length)
882 {
883         bi->page = NULL;
884         skb->len += length;
885         skb->data_len += length;
886         skb->truesize += length;
887 }
888
889 /**
890  * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
891  * @adapter: board private structure
892  *
893  * the return value indicates whether actual cleaning was done, there
894  * is no guarantee that everything was cleaned
895  **/
896
897 static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
898                                      int *work_done, int work_to_do)
899 {
900         struct net_device *netdev = adapter->netdev;
901         struct pci_dev *pdev = adapter->pdev;
902         struct e1000_ring *rx_ring = adapter->rx_ring;
903         struct e1000_rx_desc *rx_desc, *next_rxd;
904         struct e1000_buffer *buffer_info, *next_buffer;
905         u32 length;
906         unsigned int i;
907         int cleaned_count = 0;
908         bool cleaned = false;
909         unsigned int total_rx_bytes=0, total_rx_packets=0;
910
911         i = rx_ring->next_to_clean;
912         rx_desc = E1000_RX_DESC(*rx_ring, i);
913         buffer_info = &rx_ring->buffer_info[i];
914
915         while (rx_desc->status & E1000_RXD_STAT_DD) {
916                 struct sk_buff *skb;
917                 u8 status;
918
919                 if (*work_done >= work_to_do)
920                         break;
921                 (*work_done)++;
922
923                 status = rx_desc->status;
924                 skb = buffer_info->skb;
925                 buffer_info->skb = NULL;
926
927                 ++i;
928                 if (i == rx_ring->count)
929                         i = 0;
930                 next_rxd = E1000_RX_DESC(*rx_ring, i);
931                 prefetch(next_rxd);
932
933                 next_buffer = &rx_ring->buffer_info[i];
934
935                 cleaned = true;
936                 cleaned_count++;
937                 pci_unmap_page(pdev, buffer_info->dma, PAGE_SIZE,
938                                PCI_DMA_FROMDEVICE);
939                 buffer_info->dma = 0;
940
941                 length = le16_to_cpu(rx_desc->length);
942
943                 /* errors is only valid for DD + EOP descriptors */
944                 if (unlikely((status & E1000_RXD_STAT_EOP) &&
945                     (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) {
946                                 /* recycle both page and skb */
947                                 buffer_info->skb = skb;
948                                 /* an error means any chain goes out the window
949                                  * too */
950                                 if (rx_ring->rx_skb_top)
951                                         dev_kfree_skb(rx_ring->rx_skb_top);
952                                 rx_ring->rx_skb_top = NULL;
953                                 goto next_desc;
954                 }
955
956 #define rxtop rx_ring->rx_skb_top
957                 if (!(status & E1000_RXD_STAT_EOP)) {
958                         /* this descriptor is only the beginning (or middle) */
959                         if (!rxtop) {
960                                 /* this is the beginning of a chain */
961                                 rxtop = skb;
962                                 skb_fill_page_desc(rxtop, 0, buffer_info->page,
963                                                    0, length);
964                         } else {
965                                 /* this is the middle of a chain */
966                                 skb_fill_page_desc(rxtop,
967                                     skb_shinfo(rxtop)->nr_frags,
968                                     buffer_info->page, 0, length);
969                                 /* re-use the skb, only consumed the page */
970                                 buffer_info->skb = skb;
971                         }
972                         e1000_consume_page(buffer_info, rxtop, length);
973                         goto next_desc;
974                 } else {
975                         if (rxtop) {
976                                 /* end of the chain */
977                                 skb_fill_page_desc(rxtop,
978                                     skb_shinfo(rxtop)->nr_frags,
979                                     buffer_info->page, 0, length);
980                                 /* re-use the current skb, we only consumed the
981                                  * page */
982                                 buffer_info->skb = skb;
983                                 skb = rxtop;
984                                 rxtop = NULL;
985                                 e1000_consume_page(buffer_info, skb, length);
986                         } else {
987                                 /* no chain, got EOP, this buf is the packet
988                                  * copybreak to save the put_page/alloc_page */
989                                 if (length <= copybreak &&
990                                     skb_tailroom(skb) >= length) {
991                                         u8 *vaddr;
992                                         vaddr = kmap_atomic(buffer_info->page,
993                                                            KM_SKB_DATA_SOFTIRQ);
994                                         memcpy(skb_tail_pointer(skb), vaddr,
995                                                length);
996                                         kunmap_atomic(vaddr,
997                                                       KM_SKB_DATA_SOFTIRQ);
998                                         /* re-use the page, so don't erase
999                                          * buffer_info->page */
1000                                         skb_put(skb, length);
1001                                 } else {
1002                                         skb_fill_page_desc(skb, 0,
1003                                                            buffer_info->page, 0,
1004                                                            length);
1005                                         e1000_consume_page(buffer_info, skb,
1006                                                            length);
1007                                 }
1008                         }
1009                 }
1010
1011                 /* Receive Checksum Offload XXX recompute due to CRC strip? */
1012                 e1000_rx_checksum(adapter,
1013                                   (u32)(status) |
1014                                   ((u32)(rx_desc->errors) << 24),
1015                                   le16_to_cpu(rx_desc->csum), skb);
1016
1017                 /* probably a little skewed due to removing CRC */
1018                 total_rx_bytes += skb->len;
1019                 total_rx_packets++;
1020
1021                 /* eth type trans needs skb->data to point to something */
1022                 if (!pskb_may_pull(skb, ETH_HLEN)) {
1023                         e_err("pskb_may_pull failed.\n");
1024                         dev_kfree_skb(skb);
1025                         goto next_desc;
1026                 }
1027
1028                 e1000_receive_skb(adapter, netdev, skb, status,
1029                                   rx_desc->special);
1030
1031 next_desc:
1032                 rx_desc->status = 0;
1033
1034                 /* return some buffers to hardware, one at a time is too slow */
1035                 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
1036                         adapter->alloc_rx_buf(adapter, cleaned_count);
1037                         cleaned_count = 0;
1038                 }
1039
1040                 /* use prefetched values */
1041                 rx_desc = next_rxd;
1042                 buffer_info = next_buffer;
1043         }
1044         rx_ring->next_to_clean = i;
1045
1046         cleaned_count = e1000_desc_unused(rx_ring);
1047         if (cleaned_count)
1048                 adapter->alloc_rx_buf(adapter, cleaned_count);
1049
1050         adapter->total_rx_bytes += total_rx_bytes;
1051         adapter->total_rx_packets += total_rx_packets;
1052         netdev->stats.rx_bytes += total_rx_bytes;
1053         netdev->stats.rx_packets += total_rx_packets;
1054         return cleaned;
1055 }
1056
1057 /**
1058  * e1000_clean_rx_ring - Free Rx Buffers per Queue
1059  * @adapter: board private structure
1060  **/
1061 static void e1000_clean_rx_ring(struct e1000_adapter *adapter)
1062 {
1063         struct e1000_ring *rx_ring = adapter->rx_ring;
1064         struct e1000_buffer *buffer_info;
1065         struct e1000_ps_page *ps_page;
1066         struct pci_dev *pdev = adapter->pdev;
1067         unsigned int i, j;
1068
1069         /* Free all the Rx ring sk_buffs */
1070         for (i = 0; i < rx_ring->count; i++) {
1071                 buffer_info = &rx_ring->buffer_info[i];
1072                 if (buffer_info->dma) {
1073                         if (adapter->clean_rx == e1000_clean_rx_irq)
1074                                 pci_unmap_single(pdev, buffer_info->dma,
1075                                                  adapter->rx_buffer_len,
1076                                                  PCI_DMA_FROMDEVICE);
1077                         else if (adapter->clean_rx == e1000_clean_jumbo_rx_irq)
1078                                 pci_unmap_page(pdev, buffer_info->dma,
1079                                                PAGE_SIZE,
1080                                                PCI_DMA_FROMDEVICE);
1081                         else if (adapter->clean_rx == e1000_clean_rx_irq_ps)
1082                                 pci_unmap_single(pdev, buffer_info->dma,
1083                                                  adapter->rx_ps_bsize0,
1084                                                  PCI_DMA_FROMDEVICE);
1085                         buffer_info->dma = 0;
1086                 }
1087
1088                 if (buffer_info->page) {
1089                         put_page(buffer_info->page);
1090                         buffer_info->page = NULL;
1091                 }
1092
1093                 if (buffer_info->skb) {
1094                         dev_kfree_skb(buffer_info->skb);
1095                         buffer_info->skb = NULL;
1096                 }
1097
1098                 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
1099                         ps_page = &buffer_info->ps_pages[j];
1100                         if (!ps_page->page)
1101                                 break;
1102                         pci_unmap_page(pdev, ps_page->dma, PAGE_SIZE,
1103                                        PCI_DMA_FROMDEVICE);
1104                         ps_page->dma = 0;
1105                         put_page(ps_page->page);
1106                         ps_page->page = NULL;
1107                 }
1108         }
1109
1110         /* there also may be some cached data from a chained receive */
1111         if (rx_ring->rx_skb_top) {
1112                 dev_kfree_skb(rx_ring->rx_skb_top);
1113                 rx_ring->rx_skb_top = NULL;
1114         }
1115
1116         /* Zero out the descriptor ring */
1117         memset(rx_ring->desc, 0, rx_ring->size);
1118
1119         rx_ring->next_to_clean = 0;
1120         rx_ring->next_to_use = 0;
1121
1122         writel(0, adapter->hw.hw_addr + rx_ring->head);
1123         writel(0, adapter->hw.hw_addr + rx_ring->tail);
1124 }
1125
1126 static void e1000e_downshift_workaround(struct work_struct *work)
1127 {
1128         struct e1000_adapter *adapter = container_of(work,
1129                                         struct e1000_adapter, downshift_task);
1130
1131         e1000e_gig_downshift_workaround_ich8lan(&adapter->hw);
1132 }
1133
1134 /**
1135  * e1000_intr_msi - Interrupt Handler
1136  * @irq: interrupt number
1137  * @data: pointer to a network interface device structure
1138  **/
1139 static irqreturn_t e1000_intr_msi(int irq, void *data)
1140 {
1141         struct net_device *netdev = data;
1142         struct e1000_adapter *adapter = netdev_priv(netdev);
1143         struct e1000_hw *hw = &adapter->hw;
1144         u32 icr = er32(ICR);
1145
1146         /*
1147          * read ICR disables interrupts using IAM
1148          */
1149
1150         if (icr & E1000_ICR_LSC) {
1151                 hw->mac.get_link_status = 1;
1152                 /*
1153                  * ICH8 workaround-- Call gig speed drop workaround on cable
1154                  * disconnect (LSC) before accessing any PHY registers
1155                  */
1156                 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1157                     (!(er32(STATUS) & E1000_STATUS_LU)))
1158                         schedule_work(&adapter->downshift_task);
1159
1160                 /*
1161                  * 80003ES2LAN workaround-- For packet buffer work-around on
1162                  * link down event; disable receives here in the ISR and reset
1163                  * adapter in watchdog
1164                  */
1165                 if (netif_carrier_ok(netdev) &&
1166                     adapter->flags & FLAG_RX_NEEDS_RESTART) {
1167                         /* disable receives */
1168                         u32 rctl = er32(RCTL);
1169                         ew32(RCTL, rctl & ~E1000_RCTL_EN);
1170                         adapter->flags |= FLAG_RX_RESTART_NOW;
1171                 }
1172                 /* guard against interrupt when we're going down */
1173                 if (!test_bit(__E1000_DOWN, &adapter->state))
1174                         mod_timer(&adapter->watchdog_timer, jiffies + 1);
1175         }
1176
1177         if (napi_schedule_prep(&adapter->napi)) {
1178                 adapter->total_tx_bytes = 0;
1179                 adapter->total_tx_packets = 0;
1180                 adapter->total_rx_bytes = 0;
1181                 adapter->total_rx_packets = 0;
1182                 __napi_schedule(&adapter->napi);
1183         }
1184
1185         return IRQ_HANDLED;
1186 }
1187
1188 /**
1189  * e1000_intr - Interrupt Handler
1190  * @irq: interrupt number
1191  * @data: pointer to a network interface device structure
1192  **/
1193 static irqreturn_t e1000_intr(int irq, void *data)
1194 {
1195         struct net_device *netdev = data;
1196         struct e1000_adapter *adapter = netdev_priv(netdev);
1197         struct e1000_hw *hw = &adapter->hw;
1198         u32 rctl, icr = er32(ICR);
1199
1200         if (!icr || test_bit(__E1000_DOWN, &adapter->state))
1201                 return IRQ_NONE;  /* Not our interrupt */
1202
1203         /*
1204          * IMS will not auto-mask if INT_ASSERTED is not set, and if it is
1205          * not set, then the adapter didn't send an interrupt
1206          */
1207         if (!(icr & E1000_ICR_INT_ASSERTED))
1208                 return IRQ_NONE;
1209
1210         /*
1211          * Interrupt Auto-Mask...upon reading ICR,
1212          * interrupts are masked.  No need for the
1213          * IMC write
1214          */
1215
1216         if (icr & E1000_ICR_LSC) {
1217                 hw->mac.get_link_status = 1;
1218                 /*
1219                  * ICH8 workaround-- Call gig speed drop workaround on cable
1220                  * disconnect (LSC) before accessing any PHY registers
1221                  */
1222                 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1223                     (!(er32(STATUS) & E1000_STATUS_LU)))
1224                         schedule_work(&adapter->downshift_task);
1225
1226                 /*
1227                  * 80003ES2LAN workaround--
1228                  * For packet buffer work-around on link down event;
1229                  * disable receives here in the ISR and
1230                  * reset adapter in watchdog
1231                  */
1232                 if (netif_carrier_ok(netdev) &&
1233                     (adapter->flags & FLAG_RX_NEEDS_RESTART)) {
1234                         /* disable receives */
1235                         rctl = er32(RCTL);
1236                         ew32(RCTL, rctl & ~E1000_RCTL_EN);
1237                         adapter->flags |= FLAG_RX_RESTART_NOW;
1238                 }
1239                 /* guard against interrupt when we're going down */
1240                 if (!test_bit(__E1000_DOWN, &adapter->state))
1241                         mod_timer(&adapter->watchdog_timer, jiffies + 1);
1242         }
1243
1244         if (napi_schedule_prep(&adapter->napi)) {
1245                 adapter->total_tx_bytes = 0;
1246                 adapter->total_tx_packets = 0;
1247                 adapter->total_rx_bytes = 0;
1248                 adapter->total_rx_packets = 0;
1249                 __napi_schedule(&adapter->napi);
1250         }
1251
1252         return IRQ_HANDLED;
1253 }
1254
1255 static irqreturn_t e1000_msix_other(int irq, void *data)
1256 {
1257         struct net_device *netdev = data;
1258         struct e1000_adapter *adapter = netdev_priv(netdev);
1259         struct e1000_hw *hw = &adapter->hw;
1260         u32 icr = er32(ICR);
1261
1262         if (!(icr & E1000_ICR_INT_ASSERTED)) {
1263                 if (!test_bit(__E1000_DOWN, &adapter->state))
1264                         ew32(IMS, E1000_IMS_OTHER);
1265                 return IRQ_NONE;
1266         }
1267
1268         if (icr & adapter->eiac_mask)
1269                 ew32(ICS, (icr & adapter->eiac_mask));
1270
1271         if (icr & E1000_ICR_OTHER) {
1272                 if (!(icr & E1000_ICR_LSC))
1273                         goto no_link_interrupt;
1274                 hw->mac.get_link_status = 1;
1275                 /* guard against interrupt when we're going down */
1276                 if (!test_bit(__E1000_DOWN, &adapter->state))
1277                         mod_timer(&adapter->watchdog_timer, jiffies + 1);
1278         }
1279
1280 no_link_interrupt:
1281         if (!test_bit(__E1000_DOWN, &adapter->state))
1282                 ew32(IMS, E1000_IMS_LSC | E1000_IMS_OTHER);
1283
1284         return IRQ_HANDLED;
1285 }
1286
1287
1288 static irqreturn_t e1000_intr_msix_tx(int irq, void *data)
1289 {
1290         struct net_device *netdev = data;
1291         struct e1000_adapter *adapter = netdev_priv(netdev);
1292         struct e1000_hw *hw = &adapter->hw;
1293         struct e1000_ring *tx_ring = adapter->tx_ring;
1294
1295
1296         adapter->total_tx_bytes = 0;
1297         adapter->total_tx_packets = 0;
1298
1299         if (!e1000_clean_tx_irq(adapter))
1300                 /* Ring was not completely cleaned, so fire another interrupt */
1301                 ew32(ICS, tx_ring->ims_val);
1302
1303         return IRQ_HANDLED;
1304 }
1305
1306 static irqreturn_t e1000_intr_msix_rx(int irq, void *data)
1307 {
1308         struct net_device *netdev = data;
1309         struct e1000_adapter *adapter = netdev_priv(netdev);
1310
1311         /* Write the ITR value calculated at the end of the
1312          * previous interrupt.
1313          */
1314         if (adapter->rx_ring->set_itr) {
1315                 writel(1000000000 / (adapter->rx_ring->itr_val * 256),
1316                        adapter->hw.hw_addr + adapter->rx_ring->itr_register);
1317                 adapter->rx_ring->set_itr = 0;
1318         }
1319
1320         if (napi_schedule_prep(&adapter->napi)) {
1321                 adapter->total_rx_bytes = 0;
1322                 adapter->total_rx_packets = 0;
1323                 __napi_schedule(&adapter->napi);
1324         }
1325         return IRQ_HANDLED;
1326 }
1327
1328 /**
1329  * e1000_configure_msix - Configure MSI-X hardware
1330  *
1331  * e1000_configure_msix sets up the hardware to properly
1332  * generate MSI-X interrupts.
1333  **/
1334 static void e1000_configure_msix(struct e1000_adapter *adapter)
1335 {
1336         struct e1000_hw *hw = &adapter->hw;
1337         struct e1000_ring *rx_ring = adapter->rx_ring;
1338         struct e1000_ring *tx_ring = adapter->tx_ring;
1339         int vector = 0;
1340         u32 ctrl_ext, ivar = 0;
1341
1342         adapter->eiac_mask = 0;
1343
1344         /* Workaround issue with spurious interrupts on 82574 in MSI-X mode */
1345         if (hw->mac.type == e1000_82574) {
1346                 u32 rfctl = er32(RFCTL);
1347                 rfctl |= E1000_RFCTL_ACK_DIS;
1348                 ew32(RFCTL, rfctl);
1349         }
1350
1351 #define E1000_IVAR_INT_ALLOC_VALID      0x8
1352         /* Configure Rx vector */
1353         rx_ring->ims_val = E1000_IMS_RXQ0;
1354         adapter->eiac_mask |= rx_ring->ims_val;
1355         if (rx_ring->itr_val)
1356                 writel(1000000000 / (rx_ring->itr_val * 256),
1357                        hw->hw_addr + rx_ring->itr_register);
1358         else
1359                 writel(1, hw->hw_addr + rx_ring->itr_register);
1360         ivar = E1000_IVAR_INT_ALLOC_VALID | vector;
1361
1362         /* Configure Tx vector */
1363         tx_ring->ims_val = E1000_IMS_TXQ0;
1364         vector++;
1365         if (tx_ring->itr_val)
1366                 writel(1000000000 / (tx_ring->itr_val * 256),
1367                        hw->hw_addr + tx_ring->itr_register);
1368         else
1369                 writel(1, hw->hw_addr + tx_ring->itr_register);
1370         adapter->eiac_mask |= tx_ring->ims_val;
1371         ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 8);
1372
1373         /* set vector for Other Causes, e.g. link changes */
1374         vector++;
1375         ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 16);
1376         if (rx_ring->itr_val)
1377                 writel(1000000000 / (rx_ring->itr_val * 256),
1378                        hw->hw_addr + E1000_EITR_82574(vector));
1379         else
1380                 writel(1, hw->hw_addr + E1000_EITR_82574(vector));
1381
1382         /* Cause Tx interrupts on every write back */
1383         ivar |= (1 << 31);
1384
1385         ew32(IVAR, ivar);
1386
1387         /* enable MSI-X PBA support */
1388         ctrl_ext = er32(CTRL_EXT);
1389         ctrl_ext |= E1000_CTRL_EXT_PBA_CLR;
1390
1391         /* Auto-Mask Other interrupts upon ICR read */
1392 #define E1000_EIAC_MASK_82574   0x01F00000
1393         ew32(IAM, ~E1000_EIAC_MASK_82574 | E1000_IMS_OTHER);
1394         ctrl_ext |= E1000_CTRL_EXT_EIAME;
1395         ew32(CTRL_EXT, ctrl_ext);
1396         e1e_flush();
1397 }
1398
1399 void e1000e_reset_interrupt_capability(struct e1000_adapter *adapter)
1400 {
1401         if (adapter->msix_entries) {
1402                 pci_disable_msix(adapter->pdev);
1403                 kfree(adapter->msix_entries);
1404                 adapter->msix_entries = NULL;
1405         } else if (adapter->flags & FLAG_MSI_ENABLED) {
1406                 pci_disable_msi(adapter->pdev);
1407                 adapter->flags &= ~FLAG_MSI_ENABLED;
1408         }
1409
1410         return;
1411 }
1412
1413 /**
1414  * e1000e_set_interrupt_capability - set MSI or MSI-X if supported
1415  *
1416  * Attempt to configure interrupts using the best available
1417  * capabilities of the hardware and kernel.
1418  **/
1419 void e1000e_set_interrupt_capability(struct e1000_adapter *adapter)
1420 {
1421         int err;
1422         int numvecs, i;
1423
1424
1425         switch (adapter->int_mode) {
1426         case E1000E_INT_MODE_MSIX:
1427                 if (adapter->flags & FLAG_HAS_MSIX) {
1428                         numvecs = 3; /* RxQ0, TxQ0 and other */
1429                         adapter->msix_entries = kcalloc(numvecs,
1430                                                       sizeof(struct msix_entry),
1431                                                       GFP_KERNEL);
1432                         if (adapter->msix_entries) {
1433                                 for (i = 0; i < numvecs; i++)
1434                                         adapter->msix_entries[i].entry = i;
1435
1436                                 err = pci_enable_msix(adapter->pdev,
1437                                                       adapter->msix_entries,
1438                                                       numvecs);
1439                                 if (err == 0)
1440                                         return;
1441                         }
1442                         /* MSI-X failed, so fall through and try MSI */
1443                         e_err("Failed to initialize MSI-X interrupts.  "
1444                               "Falling back to MSI interrupts.\n");
1445                         e1000e_reset_interrupt_capability(adapter);
1446                 }
1447                 adapter->int_mode = E1000E_INT_MODE_MSI;
1448                 /* Fall through */
1449         case E1000E_INT_MODE_MSI:
1450                 if (!pci_enable_msi(adapter->pdev)) {
1451                         adapter->flags |= FLAG_MSI_ENABLED;
1452                 } else {
1453                         adapter->int_mode = E1000E_INT_MODE_LEGACY;
1454                         e_err("Failed to initialize MSI interrupts.  Falling "
1455                               "back to legacy interrupts.\n");
1456                 }
1457                 /* Fall through */
1458         case E1000E_INT_MODE_LEGACY:
1459                 /* Don't do anything; this is the system default */
1460                 break;
1461         }
1462
1463         return;
1464 }
1465
1466 /**
1467  * e1000_request_msix - Initialize MSI-X interrupts
1468  *
1469  * e1000_request_msix allocates MSI-X vectors and requests interrupts from the
1470  * kernel.
1471  **/
1472 static int e1000_request_msix(struct e1000_adapter *adapter)
1473 {
1474         struct net_device *netdev = adapter->netdev;
1475         int err = 0, vector = 0;
1476
1477         if (strlen(netdev->name) < (IFNAMSIZ - 5))
1478                 sprintf(adapter->rx_ring->name, "%s-rx-0", netdev->name);
1479         else
1480                 memcpy(adapter->rx_ring->name, netdev->name, IFNAMSIZ);
1481         err = request_irq(adapter->msix_entries[vector].vector,
1482                           e1000_intr_msix_rx, 0, adapter->rx_ring->name,
1483                           netdev);
1484         if (err)
1485                 goto out;
1486         adapter->rx_ring->itr_register = E1000_EITR_82574(vector);
1487         adapter->rx_ring->itr_val = adapter->itr;
1488         vector++;
1489
1490         if (strlen(netdev->name) < (IFNAMSIZ - 5))
1491                 sprintf(adapter->tx_ring->name, "%s-tx-0", netdev->name);
1492         else
1493                 memcpy(adapter->tx_ring->name, netdev->name, IFNAMSIZ);
1494         err = request_irq(adapter->msix_entries[vector].vector,
1495                           e1000_intr_msix_tx, 0, adapter->tx_ring->name,
1496                           netdev);
1497         if (err)
1498                 goto out;
1499         adapter->tx_ring->itr_register = E1000_EITR_82574(vector);
1500         adapter->tx_ring->itr_val = adapter->itr;
1501         vector++;
1502
1503         err = request_irq(adapter->msix_entries[vector].vector,
1504                           e1000_msix_other, 0, netdev->name, netdev);
1505         if (err)
1506                 goto out;
1507
1508         e1000_configure_msix(adapter);
1509         return 0;
1510 out:
1511         return err;
1512 }
1513
1514 /**
1515  * e1000_request_irq - initialize interrupts
1516  *
1517  * Attempts to configure interrupts using the best available
1518  * capabilities of the hardware and kernel.
1519  **/
1520 static int e1000_request_irq(struct e1000_adapter *adapter)
1521 {
1522         struct net_device *netdev = adapter->netdev;
1523         int err;
1524
1525         if (adapter->msix_entries) {
1526                 err = e1000_request_msix(adapter);
1527                 if (!err)
1528                         return err;
1529                 /* fall back to MSI */
1530                 e1000e_reset_interrupt_capability(adapter);
1531                 adapter->int_mode = E1000E_INT_MODE_MSI;
1532                 e1000e_set_interrupt_capability(adapter);
1533         }
1534         if (adapter->flags & FLAG_MSI_ENABLED) {
1535                 err = request_irq(adapter->pdev->irq, e1000_intr_msi, 0,
1536                                   netdev->name, netdev);
1537                 if (!err)
1538                         return err;
1539
1540                 /* fall back to legacy interrupt */
1541                 e1000e_reset_interrupt_capability(adapter);
1542                 adapter->int_mode = E1000E_INT_MODE_LEGACY;
1543         }
1544
1545         err = request_irq(adapter->pdev->irq, e1000_intr, IRQF_SHARED,
1546                           netdev->name, netdev);
1547         if (err)
1548                 e_err("Unable to allocate interrupt, Error: %d\n", err);
1549
1550         return err;
1551 }
1552
1553 static void e1000_free_irq(struct e1000_adapter *adapter)
1554 {
1555         struct net_device *netdev = adapter->netdev;
1556
1557         if (adapter->msix_entries) {
1558                 int vector = 0;
1559
1560                 free_irq(adapter->msix_entries[vector].vector, netdev);
1561                 vector++;
1562
1563                 free_irq(adapter->msix_entries[vector].vector, netdev);
1564                 vector++;
1565
1566                 /* Other Causes interrupt vector */
1567                 free_irq(adapter->msix_entries[vector].vector, netdev);
1568                 return;
1569         }
1570
1571         free_irq(adapter->pdev->irq, netdev);
1572 }
1573
1574 /**
1575  * e1000_irq_disable - Mask off interrupt generation on the NIC
1576  **/
1577 static void e1000_irq_disable(struct e1000_adapter *adapter)
1578 {
1579         struct e1000_hw *hw = &adapter->hw;
1580
1581         ew32(IMC, ~0);
1582         if (adapter->msix_entries)
1583                 ew32(EIAC_82574, 0);
1584         e1e_flush();
1585         synchronize_irq(adapter->pdev->irq);
1586 }
1587
1588 /**
1589  * e1000_irq_enable - Enable default interrupt generation settings
1590  **/
1591 static void e1000_irq_enable(struct e1000_adapter *adapter)
1592 {
1593         struct e1000_hw *hw = &adapter->hw;
1594
1595         if (adapter->msix_entries) {
1596                 ew32(EIAC_82574, adapter->eiac_mask & E1000_EIAC_MASK_82574);
1597                 ew32(IMS, adapter->eiac_mask | E1000_IMS_OTHER | E1000_IMS_LSC);
1598         } else {
1599                 ew32(IMS, IMS_ENABLE_MASK);
1600         }
1601         e1e_flush();
1602 }
1603
1604 /**
1605  * e1000_get_hw_control - get control of the h/w from f/w
1606  * @adapter: address of board private structure
1607  *
1608  * e1000_get_hw_control sets {CTRL_EXT|SWSM}:DRV_LOAD bit.
1609  * For ASF and Pass Through versions of f/w this means that
1610  * the driver is loaded. For AMT version (only with 82573)
1611  * of the f/w this means that the network i/f is open.
1612  **/
1613 static void e1000_get_hw_control(struct e1000_adapter *adapter)
1614 {
1615         struct e1000_hw *hw = &adapter->hw;
1616         u32 ctrl_ext;
1617         u32 swsm;
1618
1619         /* Let firmware know the driver has taken over */
1620         if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
1621                 swsm = er32(SWSM);
1622                 ew32(SWSM, swsm | E1000_SWSM_DRV_LOAD);
1623         } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
1624                 ctrl_ext = er32(CTRL_EXT);
1625                 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
1626         }
1627 }
1628
1629 /**
1630  * e1000_release_hw_control - release control of the h/w to f/w
1631  * @adapter: address of board private structure
1632  *
1633  * e1000_release_hw_control resets {CTRL_EXT|SWSM}:DRV_LOAD bit.
1634  * For ASF and Pass Through versions of f/w this means that the
1635  * driver is no longer loaded. For AMT version (only with 82573) i
1636  * of the f/w this means that the network i/f is closed.
1637  *
1638  **/
1639 static void e1000_release_hw_control(struct e1000_adapter *adapter)
1640 {
1641         struct e1000_hw *hw = &adapter->hw;
1642         u32 ctrl_ext;
1643         u32 swsm;
1644
1645         /* Let firmware taken over control of h/w */
1646         if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
1647                 swsm = er32(SWSM);
1648                 ew32(SWSM, swsm & ~E1000_SWSM_DRV_LOAD);
1649         } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
1650                 ctrl_ext = er32(CTRL_EXT);
1651                 ew32(CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
1652         }
1653 }
1654
1655 /**
1656  * @e1000_alloc_ring - allocate memory for a ring structure
1657  **/
1658 static int e1000_alloc_ring_dma(struct e1000_adapter *adapter,
1659                                 struct e1000_ring *ring)
1660 {
1661         struct pci_dev *pdev = adapter->pdev;
1662
1663         ring->desc = dma_alloc_coherent(&pdev->dev, ring->size, &ring->dma,
1664                                         GFP_KERNEL);
1665         if (!ring->desc)
1666                 return -ENOMEM;
1667
1668         return 0;
1669 }
1670
1671 /**
1672  * e1000e_setup_tx_resources - allocate Tx resources (Descriptors)
1673  * @adapter: board private structure
1674  *
1675  * Return 0 on success, negative on failure
1676  **/
1677 int e1000e_setup_tx_resources(struct e1000_adapter *adapter)
1678 {
1679         struct e1000_ring *tx_ring = adapter->tx_ring;
1680         int err = -ENOMEM, size;
1681
1682         size = sizeof(struct e1000_buffer) * tx_ring->count;
1683         tx_ring->buffer_info = vmalloc(size);
1684         if (!tx_ring->buffer_info)
1685                 goto err;
1686         memset(tx_ring->buffer_info, 0, size);
1687
1688         /* round up to nearest 4K */
1689         tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc);
1690         tx_ring->size = ALIGN(tx_ring->size, 4096);
1691
1692         err = e1000_alloc_ring_dma(adapter, tx_ring);
1693         if (err)
1694                 goto err;
1695
1696         tx_ring->next_to_use = 0;
1697         tx_ring->next_to_clean = 0;
1698
1699         return 0;
1700 err:
1701         vfree(tx_ring->buffer_info);
1702         e_err("Unable to allocate memory for the transmit descriptor ring\n");
1703         return err;
1704 }
1705
1706 /**
1707  * e1000e_setup_rx_resources - allocate Rx resources (Descriptors)
1708  * @adapter: board private structure
1709  *
1710  * Returns 0 on success, negative on failure
1711  **/
1712 int e1000e_setup_rx_resources(struct e1000_adapter *adapter)
1713 {
1714         struct e1000_ring *rx_ring = adapter->rx_ring;
1715         struct e1000_buffer *buffer_info;
1716         int i, size, desc_len, err = -ENOMEM;
1717
1718         size = sizeof(struct e1000_buffer) * rx_ring->count;
1719         rx_ring->buffer_info = vmalloc(size);
1720         if (!rx_ring->buffer_info)
1721                 goto err;
1722         memset(rx_ring->buffer_info, 0, size);
1723
1724         for (i = 0; i < rx_ring->count; i++) {
1725                 buffer_info = &rx_ring->buffer_info[i];
1726                 buffer_info->ps_pages = kcalloc(PS_PAGE_BUFFERS,
1727                                                 sizeof(struct e1000_ps_page),
1728                                                 GFP_KERNEL);
1729                 if (!buffer_info->ps_pages)
1730                         goto err_pages;
1731         }
1732
1733         desc_len = sizeof(union e1000_rx_desc_packet_split);
1734
1735         /* Round up to nearest 4K */
1736         rx_ring->size = rx_ring->count * desc_len;
1737         rx_ring->size = ALIGN(rx_ring->size, 4096);
1738
1739         err = e1000_alloc_ring_dma(adapter, rx_ring);
1740         if (err)
1741                 goto err_pages;
1742
1743         rx_ring->next_to_clean = 0;
1744         rx_ring->next_to_use = 0;
1745         rx_ring->rx_skb_top = NULL;
1746
1747         return 0;
1748
1749 err_pages:
1750         for (i = 0; i < rx_ring->count; i++) {
1751                 buffer_info = &rx_ring->buffer_info[i];
1752                 kfree(buffer_info->ps_pages);
1753         }
1754 err:
1755         vfree(rx_ring->buffer_info);
1756         e_err("Unable to allocate memory for the transmit descriptor ring\n");
1757         return err;
1758 }
1759
1760 /**
1761  * e1000_clean_tx_ring - Free Tx Buffers
1762  * @adapter: board private structure
1763  **/
1764 static void e1000_clean_tx_ring(struct e1000_adapter *adapter)
1765 {
1766         struct e1000_ring *tx_ring = adapter->tx_ring;
1767         struct e1000_buffer *buffer_info;
1768         unsigned long size;
1769         unsigned int i;
1770
1771         for (i = 0; i < tx_ring->count; i++) {
1772                 buffer_info = &tx_ring->buffer_info[i];
1773                 e1000_put_txbuf(adapter, buffer_info);
1774         }
1775
1776         size = sizeof(struct e1000_buffer) * tx_ring->count;
1777         memset(tx_ring->buffer_info, 0, size);
1778
1779         memset(tx_ring->desc, 0, tx_ring->size);
1780
1781         tx_ring->next_to_use = 0;
1782         tx_ring->next_to_clean = 0;
1783
1784         writel(0, adapter->hw.hw_addr + tx_ring->head);
1785         writel(0, adapter->hw.hw_addr + tx_ring->tail);
1786 }
1787
1788 /**
1789  * e1000e_free_tx_resources - Free Tx Resources per Queue
1790  * @adapter: board private structure
1791  *
1792  * Free all transmit software resources
1793  **/
1794 void e1000e_free_tx_resources(struct e1000_adapter *adapter)
1795 {
1796         struct pci_dev *pdev = adapter->pdev;
1797         struct e1000_ring *tx_ring = adapter->tx_ring;
1798
1799         e1000_clean_tx_ring(adapter);
1800
1801         vfree(tx_ring->buffer_info);
1802         tx_ring->buffer_info = NULL;
1803
1804         dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
1805                           tx_ring->dma);
1806         tx_ring->desc = NULL;
1807 }
1808
1809 /**
1810  * e1000e_free_rx_resources - Free Rx Resources
1811  * @adapter: board private structure
1812  *
1813  * Free all receive software resources
1814  **/
1815
1816 void e1000e_free_rx_resources(struct e1000_adapter *adapter)
1817 {
1818         struct pci_dev *pdev = adapter->pdev;
1819         struct e1000_ring *rx_ring = adapter->rx_ring;
1820         int i;
1821
1822         e1000_clean_rx_ring(adapter);
1823
1824         for (i = 0; i < rx_ring->count; i++) {
1825                 kfree(rx_ring->buffer_info[i].ps_pages);
1826         }
1827
1828         vfree(rx_ring->buffer_info);
1829         rx_ring->buffer_info = NULL;
1830
1831         dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
1832                           rx_ring->dma);
1833         rx_ring->desc = NULL;
1834 }
1835
1836 /**
1837  * e1000_update_itr - update the dynamic ITR value based on statistics
1838  * @adapter: pointer to adapter
1839  * @itr_setting: current adapter->itr
1840  * @packets: the number of packets during this measurement interval
1841  * @bytes: the number of bytes during this measurement interval
1842  *
1843  *      Stores a new ITR value based on packets and byte
1844  *      counts during the last interrupt.  The advantage of per interrupt
1845  *      computation is faster updates and more accurate ITR for the current
1846  *      traffic pattern.  Constants in this function were computed
1847  *      based on theoretical maximum wire speed and thresholds were set based
1848  *      on testing data as well as attempting to minimize response time
1849  *      while increasing bulk throughput.  This functionality is controlled
1850  *      by the InterruptThrottleRate module parameter.
1851  **/
1852 static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
1853                                      u16 itr_setting, int packets,
1854                                      int bytes)
1855 {
1856         unsigned int retval = itr_setting;
1857
1858         if (packets == 0)
1859                 goto update_itr_done;
1860
1861         switch (itr_setting) {
1862         case lowest_latency:
1863                 /* handle TSO and jumbo frames */
1864                 if (bytes/packets > 8000)
1865                         retval = bulk_latency;
1866                 else if ((packets < 5) && (bytes > 512)) {
1867                         retval = low_latency;
1868                 }
1869                 break;
1870         case low_latency:  /* 50 usec aka 20000 ints/s */
1871                 if (bytes > 10000) {
1872                         /* this if handles the TSO accounting */
1873                         if (bytes/packets > 8000) {
1874                                 retval = bulk_latency;
1875                         } else if ((packets < 10) || ((bytes/packets) > 1200)) {
1876                                 retval = bulk_latency;
1877                         } else if ((packets > 35)) {
1878                                 retval = lowest_latency;
1879                         }
1880                 } else if (bytes/packets > 2000) {
1881                         retval = bulk_latency;
1882                 } else if (packets <= 2 && bytes < 512) {
1883                         retval = lowest_latency;
1884                 }
1885                 break;
1886         case bulk_latency: /* 250 usec aka 4000 ints/s */
1887                 if (bytes > 25000) {
1888                         if (packets > 35) {
1889                                 retval = low_latency;
1890                         }
1891                 } else if (bytes < 6000) {
1892                         retval = low_latency;
1893                 }
1894                 break;
1895         }
1896
1897 update_itr_done:
1898         return retval;
1899 }
1900
1901 static void e1000_set_itr(struct e1000_adapter *adapter)
1902 {
1903         struct e1000_hw *hw = &adapter->hw;
1904         u16 current_itr;
1905         u32 new_itr = adapter->itr;
1906
1907         /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
1908         if (adapter->link_speed != SPEED_1000) {
1909                 current_itr = 0;
1910                 new_itr = 4000;
1911                 goto set_itr_now;
1912         }
1913
1914         adapter->tx_itr = e1000_update_itr(adapter,
1915                                     adapter->tx_itr,
1916                                     adapter->total_tx_packets,
1917                                     adapter->total_tx_bytes);
1918         /* conservative mode (itr 3) eliminates the lowest_latency setting */
1919         if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
1920                 adapter->tx_itr = low_latency;
1921
1922         adapter->rx_itr = e1000_update_itr(adapter,
1923                                     adapter->rx_itr,
1924                                     adapter->total_rx_packets,
1925                                     adapter->total_rx_bytes);
1926         /* conservative mode (itr 3) eliminates the lowest_latency setting */
1927         if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
1928                 adapter->rx_itr = low_latency;
1929
1930         current_itr = max(adapter->rx_itr, adapter->tx_itr);
1931
1932         switch (current_itr) {
1933         /* counts and packets in update_itr are dependent on these numbers */
1934         case lowest_latency:
1935                 new_itr = 70000;
1936                 break;
1937         case low_latency:
1938                 new_itr = 20000; /* aka hwitr = ~200 */
1939                 break;
1940         case bulk_latency:
1941                 new_itr = 4000;
1942                 break;
1943         default:
1944                 break;
1945         }
1946
1947 set_itr_now:
1948         if (new_itr != adapter->itr) {
1949                 /*
1950                  * this attempts to bias the interrupt rate towards Bulk
1951                  * by adding intermediate steps when interrupt rate is
1952                  * increasing
1953                  */
1954                 new_itr = new_itr > adapter->itr ?
1955                              min(adapter->itr + (new_itr >> 2), new_itr) :
1956                              new_itr;
1957                 adapter->itr = new_itr;
1958                 adapter->rx_ring->itr_val = new_itr;
1959                 if (adapter->msix_entries)
1960                         adapter->rx_ring->set_itr = 1;
1961                 else
1962                         ew32(ITR, 1000000000 / (new_itr * 256));
1963         }
1964 }
1965
1966 /**
1967  * e1000_alloc_queues - Allocate memory for all rings
1968  * @adapter: board private structure to initialize
1969  **/
1970 static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
1971 {
1972         adapter->tx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
1973         if (!adapter->tx_ring)
1974                 goto err;
1975
1976         adapter->rx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
1977         if (!adapter->rx_ring)
1978                 goto err;
1979
1980         return 0;
1981 err:
1982         e_err("Unable to allocate memory for queues\n");
1983         kfree(adapter->rx_ring);
1984         kfree(adapter->tx_ring);
1985         return -ENOMEM;
1986 }
1987
1988 /**
1989  * e1000_clean - NAPI Rx polling callback
1990  * @napi: struct associated with this polling callback
1991  * @budget: amount of packets driver is allowed to process this poll
1992  **/
1993 static int e1000_clean(struct napi_struct *napi, int budget)
1994 {
1995         struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
1996         struct e1000_hw *hw = &adapter->hw;
1997         struct net_device *poll_dev = adapter->netdev;
1998         int tx_cleaned = 1, work_done = 0;
1999
2000         adapter = netdev_priv(poll_dev);
2001
2002         if (adapter->msix_entries &&
2003             !(adapter->rx_ring->ims_val & adapter->tx_ring->ims_val))
2004                 goto clean_rx;
2005
2006         tx_cleaned = e1000_clean_tx_irq(adapter);
2007
2008 clean_rx:
2009         adapter->clean_rx(adapter, &work_done, budget);
2010
2011         if (!tx_cleaned)
2012                 work_done = budget;
2013
2014         /* If budget not fully consumed, exit the polling mode */
2015         if (work_done < budget) {
2016                 if (adapter->itr_setting & 3)
2017                         e1000_set_itr(adapter);
2018                 napi_complete(napi);
2019                 if (!test_bit(__E1000_DOWN, &adapter->state)) {
2020                         if (adapter->msix_entries)
2021                                 ew32(IMS, adapter->rx_ring->ims_val);
2022                         else
2023                                 e1000_irq_enable(adapter);
2024                 }
2025         }
2026
2027         return work_done;
2028 }
2029
2030 static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
2031 {
2032         struct e1000_adapter *adapter = netdev_priv(netdev);
2033         struct e1000_hw *hw = &adapter->hw;
2034         u32 vfta, index;
2035
2036         /* don't update vlan cookie if already programmed */
2037         if ((adapter->hw.mng_cookie.status &
2038              E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2039             (vid == adapter->mng_vlan_id))
2040                 return;
2041
2042         /* add VID to filter table */
2043         if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2044                 index = (vid >> 5) & 0x7F;
2045                 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2046                 vfta |= (1 << (vid & 0x1F));
2047                 hw->mac.ops.write_vfta(hw, index, vfta);
2048         }
2049 }
2050
2051 static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
2052 {
2053         struct e1000_adapter *adapter = netdev_priv(netdev);
2054         struct e1000_hw *hw = &adapter->hw;
2055         u32 vfta, index;
2056
2057         if (!test_bit(__E1000_DOWN, &adapter->state))
2058                 e1000_irq_disable(adapter);
2059         vlan_group_set_device(adapter->vlgrp, vid, NULL);
2060
2061         if (!test_bit(__E1000_DOWN, &adapter->state))
2062                 e1000_irq_enable(adapter);
2063
2064         if ((adapter->hw.mng_cookie.status &
2065              E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2066             (vid == adapter->mng_vlan_id)) {
2067                 /* release control to f/w */
2068                 e1000_release_hw_control(adapter);
2069                 return;
2070         }
2071
2072         /* remove VID from filter table */
2073         if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2074                 index = (vid >> 5) & 0x7F;
2075                 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2076                 vfta &= ~(1 << (vid & 0x1F));
2077                 hw->mac.ops.write_vfta(hw, index, vfta);
2078         }
2079 }
2080
2081 static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
2082 {
2083         struct net_device *netdev = adapter->netdev;
2084         u16 vid = adapter->hw.mng_cookie.vlan_id;
2085         u16 old_vid = adapter->mng_vlan_id;
2086
2087         if (!adapter->vlgrp)
2088                 return;
2089
2090         if (!vlan_group_get_device(adapter->vlgrp, vid)) {
2091                 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2092                 if (adapter->hw.mng_cookie.status &
2093                         E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
2094                         e1000_vlan_rx_add_vid(netdev, vid);
2095                         adapter->mng_vlan_id = vid;
2096                 }
2097
2098                 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) &&
2099                                 (vid != old_vid) &&
2100                     !vlan_group_get_device(adapter->vlgrp, old_vid))
2101                         e1000_vlan_rx_kill_vid(netdev, old_vid);
2102         } else {
2103                 adapter->mng_vlan_id = vid;
2104         }
2105 }
2106
2107
2108 static void e1000_vlan_rx_register(struct net_device *netdev,
2109                                    struct vlan_group *grp)
2110 {
2111         struct e1000_adapter *adapter = netdev_priv(netdev);
2112         struct e1000_hw *hw = &adapter->hw;
2113         u32 ctrl, rctl;
2114
2115         if (!test_bit(__E1000_DOWN, &adapter->state))
2116                 e1000_irq_disable(adapter);
2117         adapter->vlgrp = grp;
2118
2119         if (grp) {
2120                 /* enable VLAN tag insert/strip */
2121                 ctrl = er32(CTRL);
2122                 ctrl |= E1000_CTRL_VME;
2123                 ew32(CTRL, ctrl);
2124
2125                 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2126                         /* enable VLAN receive filtering */
2127                         rctl = er32(RCTL);
2128                         rctl &= ~E1000_RCTL_CFIEN;
2129                         ew32(RCTL, rctl);
2130                         e1000_update_mng_vlan(adapter);
2131                 }
2132         } else {
2133                 /* disable VLAN tag insert/strip */
2134                 ctrl = er32(CTRL);
2135                 ctrl &= ~E1000_CTRL_VME;
2136                 ew32(CTRL, ctrl);
2137
2138                 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2139                         if (adapter->mng_vlan_id !=
2140                             (u16)E1000_MNG_VLAN_NONE) {
2141                                 e1000_vlan_rx_kill_vid(netdev,
2142                                                        adapter->mng_vlan_id);
2143                                 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2144                         }
2145                 }
2146         }
2147
2148         if (!test_bit(__E1000_DOWN, &adapter->state))
2149                 e1000_irq_enable(adapter);
2150 }
2151
2152 static void e1000_restore_vlan(struct e1000_adapter *adapter)
2153 {
2154         u16 vid;
2155
2156         e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
2157
2158         if (!adapter->vlgrp)
2159                 return;
2160
2161         for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
2162                 if (!vlan_group_get_device(adapter->vlgrp, vid))
2163                         continue;
2164                 e1000_vlan_rx_add_vid(adapter->netdev, vid);
2165         }
2166 }
2167
2168 static void e1000_init_manageability(struct e1000_adapter *adapter)
2169 {
2170         struct e1000_hw *hw = &adapter->hw;
2171         u32 manc, manc2h;
2172
2173         if (!(adapter->flags & FLAG_MNG_PT_ENABLED))
2174                 return;
2175
2176         manc = er32(MANC);
2177
2178         /*
2179          * enable receiving management packets to the host. this will probably
2180          * generate destination unreachable messages from the host OS, but
2181          * the packets will be handled on SMBUS
2182          */
2183         manc |= E1000_MANC_EN_MNG2HOST;
2184         manc2h = er32(MANC2H);
2185 #define E1000_MNG2HOST_PORT_623 (1 << 5)
2186 #define E1000_MNG2HOST_PORT_664 (1 << 6)
2187         manc2h |= E1000_MNG2HOST_PORT_623;
2188         manc2h |= E1000_MNG2HOST_PORT_664;
2189         ew32(MANC2H, manc2h);
2190         ew32(MANC, manc);
2191 }
2192
2193 /**
2194  * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
2195  * @adapter: board private structure
2196  *
2197  * Configure the Tx unit of the MAC after a reset.
2198  **/
2199 static void e1000_configure_tx(struct e1000_adapter *adapter)
2200 {
2201         struct e1000_hw *hw = &adapter->hw;
2202         struct e1000_ring *tx_ring = adapter->tx_ring;
2203         u64 tdba;
2204         u32 tdlen, tctl, tipg, tarc;
2205         u32 ipgr1, ipgr2;
2206
2207         /* Setup the HW Tx Head and Tail descriptor pointers */
2208         tdba = tx_ring->dma;
2209         tdlen = tx_ring->count * sizeof(struct e1000_tx_desc);
2210         ew32(TDBAL, (tdba & DMA_BIT_MASK(32)));
2211         ew32(TDBAH, (tdba >> 32));
2212         ew32(TDLEN, tdlen);
2213         ew32(TDH, 0);
2214         ew32(TDT, 0);
2215         tx_ring->head = E1000_TDH;
2216         tx_ring->tail = E1000_TDT;
2217
2218         /* Set the default values for the Tx Inter Packet Gap timer */
2219         tipg = DEFAULT_82543_TIPG_IPGT_COPPER;          /*  8  */
2220         ipgr1 = DEFAULT_82543_TIPG_IPGR1;               /*  8  */
2221         ipgr2 = DEFAULT_82543_TIPG_IPGR2;               /*  6  */
2222
2223         if (adapter->flags & FLAG_TIPG_MEDIUM_FOR_80003ESLAN)
2224                 ipgr2 = DEFAULT_80003ES2LAN_TIPG_IPGR2; /*  7  */
2225
2226         tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
2227         tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
2228         ew32(TIPG, tipg);
2229
2230         /* Set the Tx Interrupt Delay register */
2231         ew32(TIDV, adapter->tx_int_delay);
2232         /* Tx irq moderation */
2233         ew32(TADV, adapter->tx_abs_int_delay);
2234
2235         /* Program the Transmit Control Register */
2236         tctl = er32(TCTL);
2237         tctl &= ~E1000_TCTL_CT;
2238         tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
2239                 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
2240
2241         if (adapter->flags & FLAG_TARC_SPEED_MODE_BIT) {
2242                 tarc = er32(TARC(0));
2243                 /*
2244                  * set the speed mode bit, we'll clear it if we're not at
2245                  * gigabit link later
2246                  */
2247 #define SPEED_MODE_BIT (1 << 21)
2248                 tarc |= SPEED_MODE_BIT;
2249                 ew32(TARC(0), tarc);
2250         }
2251
2252         /* errata: program both queues to unweighted RR */
2253         if (adapter->flags & FLAG_TARC_SET_BIT_ZERO) {
2254                 tarc = er32(TARC(0));
2255                 tarc |= 1;
2256                 ew32(TARC(0), tarc);
2257                 tarc = er32(TARC(1));
2258                 tarc |= 1;
2259                 ew32(TARC(1), tarc);
2260         }
2261
2262         /* Setup Transmit Descriptor Settings for eop descriptor */
2263         adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
2264
2265         /* only set IDE if we are delaying interrupts using the timers */
2266         if (adapter->tx_int_delay)
2267                 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
2268
2269         /* enable Report Status bit */
2270         adapter->txd_cmd |= E1000_TXD_CMD_RS;
2271
2272         ew32(TCTL, tctl);
2273
2274         e1000e_config_collision_dist(hw);
2275
2276         adapter->tx_queue_len = adapter->netdev->tx_queue_len;
2277 }
2278
2279 /**
2280  * e1000_setup_rctl - configure the receive control registers
2281  * @adapter: Board private structure
2282  **/
2283 #define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
2284                            (((S) & (PAGE_SIZE - 1)) ? 1 : 0))
2285 static void e1000_setup_rctl(struct e1000_adapter *adapter)
2286 {
2287         struct e1000_hw *hw = &adapter->hw;
2288         u32 rctl, rfctl;
2289         u32 psrctl = 0;
2290         u32 pages = 0;
2291
2292         /* Program MC offset vector base */
2293         rctl = er32(RCTL);
2294         rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
2295         rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
2296                 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
2297                 (adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
2298
2299         /* Do not Store bad packets */
2300         rctl &= ~E1000_RCTL_SBP;
2301
2302         /* Enable Long Packet receive */
2303         if (adapter->netdev->mtu <= ETH_DATA_LEN)
2304                 rctl &= ~E1000_RCTL_LPE;
2305         else
2306                 rctl |= E1000_RCTL_LPE;
2307
2308         /* Some systems expect that the CRC is included in SMBUS traffic. The
2309          * hardware strips the CRC before sending to both SMBUS (BMC) and to
2310          * host memory when this is enabled
2311          */
2312         if (adapter->flags2 & FLAG2_CRC_STRIPPING)
2313                 rctl |= E1000_RCTL_SECRC;
2314
2315         /* Workaround Si errata on 82577 PHY - configure IPG for jumbos */
2316         if ((hw->phy.type == e1000_phy_82577) && (rctl & E1000_RCTL_LPE)) {
2317                 u16 phy_data;
2318
2319                 e1e_rphy(hw, PHY_REG(770, 26), &phy_data);
2320                 phy_data &= 0xfff8;
2321                 phy_data |= (1 << 2);
2322                 e1e_wphy(hw, PHY_REG(770, 26), phy_data);
2323
2324                 e1e_rphy(hw, 22, &phy_data);
2325                 phy_data &= 0x0fff;
2326                 phy_data |= (1 << 14);
2327                 e1e_wphy(hw, 0x10, 0x2823);
2328                 e1e_wphy(hw, 0x11, 0x0003);
2329                 e1e_wphy(hw, 22, phy_data);
2330         }
2331
2332         /* Setup buffer sizes */
2333         rctl &= ~E1000_RCTL_SZ_4096;
2334         rctl |= E1000_RCTL_BSEX;
2335         switch (adapter->rx_buffer_len) {
2336         case 256:
2337                 rctl |= E1000_RCTL_SZ_256;
2338                 rctl &= ~E1000_RCTL_BSEX;
2339                 break;
2340         case 512:
2341                 rctl |= E1000_RCTL_SZ_512;
2342                 rctl &= ~E1000_RCTL_BSEX;
2343                 break;
2344         case 1024:
2345                 rctl |= E1000_RCTL_SZ_1024;
2346                 rctl &= ~E1000_RCTL_BSEX;
2347                 break;
2348         case 2048:
2349         default:
2350                 rctl |= E1000_RCTL_SZ_2048;
2351                 rctl &= ~E1000_RCTL_BSEX;
2352                 break;
2353         case 4096:
2354                 rctl |= E1000_RCTL_SZ_4096;
2355                 break;
2356         case 8192:
2357                 rctl |= E1000_RCTL_SZ_8192;
2358                 break;
2359         case 16384:
2360                 rctl |= E1000_RCTL_SZ_16384;
2361                 break;
2362         }
2363
2364         /*
2365          * 82571 and greater support packet-split where the protocol
2366          * header is placed in skb->data and the packet data is
2367          * placed in pages hanging off of skb_shinfo(skb)->nr_frags.
2368          * In the case of a non-split, skb->data is linearly filled,
2369          * followed by the page buffers.  Therefore, skb->data is
2370          * sized to hold the largest protocol header.
2371          *
2372          * allocations using alloc_page take too long for regular MTU
2373          * so only enable packet split for jumbo frames
2374          *
2375          * Using pages when the page size is greater than 16k wastes
2376          * a lot of memory, since we allocate 3 pages at all times
2377          * per packet.
2378          */
2379         pages = PAGE_USE_COUNT(adapter->netdev->mtu);
2380         if (!(adapter->flags & FLAG_IS_ICH) && (pages <= 3) &&
2381             (PAGE_SIZE <= 16384) && (rctl & E1000_RCTL_LPE))
2382                 adapter->rx_ps_pages = pages;
2383         else
2384                 adapter->rx_ps_pages = 0;
2385
2386         if (adapter->rx_ps_pages) {
2387                 /* Configure extra packet-split registers */
2388                 rfctl = er32(RFCTL);
2389                 rfctl |= E1000_RFCTL_EXTEN;
2390                 /*
2391                  * disable packet split support for IPv6 extension headers,
2392                  * because some malformed IPv6 headers can hang the Rx
2393                  */
2394                 rfctl |= (E1000_RFCTL_IPV6_EX_DIS |
2395                           E1000_RFCTL_NEW_IPV6_EXT_DIS);
2396
2397                 ew32(RFCTL, rfctl);
2398
2399                 /* Enable Packet split descriptors */
2400                 rctl |= E1000_RCTL_DTYP_PS;
2401
2402                 psrctl |= adapter->rx_ps_bsize0 >>
2403                         E1000_PSRCTL_BSIZE0_SHIFT;
2404
2405                 switch (adapter->rx_ps_pages) {
2406                 case 3:
2407                         psrctl |= PAGE_SIZE <<
2408                                 E1000_PSRCTL_BSIZE3_SHIFT;
2409                 case 2:
2410                         psrctl |= PAGE_SIZE <<
2411                                 E1000_PSRCTL_BSIZE2_SHIFT;
2412                 case 1:
2413                         psrctl |= PAGE_SIZE >>
2414                                 E1000_PSRCTL_BSIZE1_SHIFT;
2415                         break;
2416                 }
2417
2418                 ew32(PSRCTL, psrctl);
2419         }
2420
2421         ew32(RCTL, rctl);
2422         /* just started the receive unit, no need to restart */
2423         adapter->flags &= ~FLAG_RX_RESTART_NOW;
2424 }
2425
2426 /**
2427  * e1000_configure_rx - Configure Receive Unit after Reset
2428  * @adapter: board private structure
2429  *
2430  * Configure the Rx unit of the MAC after a reset.
2431  **/
2432 static void e1000_configure_rx(struct e1000_adapter *adapter)
2433 {
2434         struct e1000_hw *hw = &adapter->hw;
2435         struct e1000_ring *rx_ring = adapter->rx_ring;
2436         u64 rdba;
2437         u32 rdlen, rctl, rxcsum, ctrl_ext;
2438
2439         if (adapter->rx_ps_pages) {
2440                 /* this is a 32 byte descriptor */
2441                 rdlen = rx_ring->count *
2442                         sizeof(union e1000_rx_desc_packet_split);
2443                 adapter->clean_rx = e1000_clean_rx_irq_ps;
2444                 adapter->alloc_rx_buf = e1000_alloc_rx_buffers_ps;
2445         } else if (adapter->netdev->mtu > ETH_FRAME_LEN + ETH_FCS_LEN) {
2446                 rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
2447                 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
2448                 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
2449         } else {
2450                 rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
2451                 adapter->clean_rx = e1000_clean_rx_irq;
2452                 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
2453         }
2454
2455         /* disable receives while setting up the descriptors */
2456         rctl = er32(RCTL);
2457         ew32(RCTL, rctl & ~E1000_RCTL_EN);
2458         e1e_flush();
2459         msleep(10);
2460
2461         /* set the Receive Delay Timer Register */
2462         ew32(RDTR, adapter->rx_int_delay);
2463
2464         /* irq moderation */
2465         ew32(RADV, adapter->rx_abs_int_delay);
2466         if (adapter->itr_setting != 0)
2467                 ew32(ITR, 1000000000 / (adapter->itr * 256));
2468
2469         ctrl_ext = er32(CTRL_EXT);
2470         /* Auto-Mask interrupts upon ICR access */
2471         ctrl_ext |= E1000_CTRL_EXT_IAME;
2472         ew32(IAM, 0xffffffff);
2473         ew32(CTRL_EXT, ctrl_ext);
2474         e1e_flush();
2475
2476         /*
2477          * Setup the HW Rx Head and Tail Descriptor Pointers and
2478          * the Base and Length of the Rx Descriptor Ring
2479          */
2480         rdba = rx_ring->dma;
2481         ew32(RDBAL, (rdba & DMA_BIT_MASK(32)));
2482         ew32(RDBAH, (rdba >> 32));
2483         ew32(RDLEN, rdlen);
2484         ew32(RDH, 0);
2485         ew32(RDT, 0);
2486         rx_ring->head = E1000_RDH;
2487         rx_ring->tail = E1000_RDT;
2488
2489         /* Enable Receive Checksum Offload for TCP and UDP */
2490         rxcsum = er32(RXCSUM);
2491         if (adapter->flags & FLAG_RX_CSUM_ENABLED) {
2492                 rxcsum |= E1000_RXCSUM_TUOFL;
2493
2494                 /*
2495                  * IPv4 payload checksum for UDP fragments must be
2496                  * used in conjunction with packet-split.
2497                  */
2498                 if (adapter->rx_ps_pages)
2499                         rxcsum |= E1000_RXCSUM_IPPCSE;
2500         } else {
2501                 rxcsum &= ~E1000_RXCSUM_TUOFL;
2502                 /* no need to clear IPPCSE as it defaults to 0 */
2503         }
2504         ew32(RXCSUM, rxcsum);
2505
2506         /*
2507          * Enable early receives on supported devices, only takes effect when
2508          * packet size is equal or larger than the specified value (in 8 byte
2509          * units), e.g. using jumbo frames when setting to E1000_ERT_2048
2510          */
2511         if (adapter->flags & FLAG_HAS_ERT) {
2512                 if (adapter->netdev->mtu > ETH_DATA_LEN) {
2513                         u32 rxdctl = er32(RXDCTL(0));
2514                         ew32(RXDCTL(0), rxdctl | 0x3);
2515                         ew32(ERT, E1000_ERT_2048 | (1 << 13));
2516                         /*
2517                          * With jumbo frames and early-receive enabled,
2518                          * excessive C-state transition latencies result in
2519                          * dropped transactions.
2520                          */
2521                         pm_qos_update_requirement(PM_QOS_CPU_DMA_LATENCY,
2522                                                   adapter->netdev->name, 55);
2523                 } else {
2524                         pm_qos_update_requirement(PM_QOS_CPU_DMA_LATENCY,
2525                                                   adapter->netdev->name,
2526                                                   PM_QOS_DEFAULT_VALUE);
2527                 }
2528         }
2529
2530         /* Enable Receives */
2531         ew32(RCTL, rctl);
2532 }
2533
2534 /**
2535  *  e1000_update_mc_addr_list - Update Multicast addresses
2536  *  @hw: pointer to the HW structure
2537  *  @mc_addr_list: array of multicast addresses to program
2538  *  @mc_addr_count: number of multicast addresses to program
2539  *  @rar_used_count: the first RAR register free to program
2540  *  @rar_count: total number of supported Receive Address Registers
2541  *
2542  *  Updates the Receive Address Registers and Multicast Table Array.
2543  *  The caller must have a packed mc_addr_list of multicast addresses.
2544  *  The parameter rar_count will usually be hw->mac.rar_entry_count
2545  *  unless there are workarounds that change this.  Currently no func pointer
2546  *  exists and all implementations are handled in the generic version of this
2547  *  function.
2548  **/
2549 static void e1000_update_mc_addr_list(struct e1000_hw *hw, u8 *mc_addr_list,
2550                                       u32 mc_addr_count, u32 rar_used_count,
2551                                       u32 rar_count)
2552 {
2553         hw->mac.ops.update_mc_addr_list(hw, mc_addr_list, mc_addr_count,
2554                                         rar_used_count, rar_count);
2555 }
2556
2557 /**
2558  * e1000_set_multi - Multicast and Promiscuous mode set
2559  * @netdev: network interface device structure
2560  *
2561  * The set_multi entry point is called whenever the multicast address
2562  * list or the network interface flags are updated.  This routine is
2563  * responsible for configuring the hardware for proper multicast,
2564  * promiscuous mode, and all-multi behavior.
2565  **/
2566 static void e1000_set_multi(struct net_device *netdev)
2567 {
2568         struct e1000_adapter *adapter = netdev_priv(netdev);
2569         struct e1000_hw *hw = &adapter->hw;
2570         struct e1000_mac_info *mac = &hw->mac;
2571         struct dev_mc_list *mc_ptr;
2572         u8  *mta_list;
2573         u32 rctl;
2574         int i;
2575
2576         /* Check for Promiscuous and All Multicast modes */
2577
2578         rctl = er32(RCTL);
2579
2580         if (netdev->flags & IFF_PROMISC) {
2581                 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
2582                 rctl &= ~E1000_RCTL_VFE;
2583         } else {
2584                 if (netdev->flags & IFF_ALLMULTI) {
2585                         rctl |= E1000_RCTL_MPE;
2586                         rctl &= ~E1000_RCTL_UPE;
2587                 } else {
2588                         rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE);
2589                 }
2590                 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
2591                         rctl |= E1000_RCTL_VFE;
2592         }
2593
2594         ew32(RCTL, rctl);
2595
2596         if (netdev->mc_count) {
2597                 mta_list = kmalloc(netdev->mc_count * 6, GFP_ATOMIC);
2598                 if (!mta_list)
2599                         return;
2600
2601                 /* prepare a packed array of only addresses. */
2602                 mc_ptr = netdev->mc_list;
2603
2604                 for (i = 0; i < netdev->mc_count; i++) {
2605                         if (!mc_ptr)
2606                                 break;
2607                         memcpy(mta_list + (i*ETH_ALEN), mc_ptr->dmi_addr,
2608                                ETH_ALEN);
2609                         mc_ptr = mc_ptr->next;
2610                 }
2611
2612                 e1000_update_mc_addr_list(hw, mta_list, i, 1,
2613                                           mac->rar_entry_count);
2614                 kfree(mta_list);
2615         } else {
2616                 /*
2617                  * if we're called from probe, we might not have
2618                  * anything to do here, so clear out the list
2619                  */
2620                 e1000_update_mc_addr_list(hw, NULL, 0, 1, mac->rar_entry_count);
2621         }
2622 }
2623
2624 /**
2625  * e1000_configure - configure the hardware for Rx and Tx
2626  * @adapter: private board structure
2627  **/
2628 static void e1000_configure(struct e1000_adapter *adapter)
2629 {
2630         e1000_set_multi(adapter->netdev);
2631
2632         e1000_restore_vlan(adapter);
2633         e1000_init_manageability(adapter);
2634
2635         e1000_configure_tx(adapter);
2636         e1000_setup_rctl(adapter);
2637         e1000_configure_rx(adapter);
2638         adapter->alloc_rx_buf(adapter, e1000_desc_unused(adapter->rx_ring));
2639 }
2640
2641 /**
2642  * e1000e_power_up_phy - restore link in case the phy was powered down
2643  * @adapter: address of board private structure
2644  *
2645  * The phy may be powered down to save power and turn off link when the
2646  * driver is unloaded and wake on lan is not enabled (among others)
2647  * *** this routine MUST be followed by a call to e1000e_reset ***
2648  **/
2649 void e1000e_power_up_phy(struct e1000_adapter *adapter)
2650 {
2651         if (adapter->hw.phy.ops.power_up)
2652                 adapter->hw.phy.ops.power_up(&adapter->hw);
2653
2654         adapter->hw.mac.ops.setup_link(&adapter->hw);
2655 }
2656
2657 /**
2658  * e1000_power_down_phy - Power down the PHY
2659  *
2660  * Power down the PHY so no link is implied when interface is down.
2661  * The PHY cannot be powered down if management or WoL is active.
2662  */
2663 static void e1000_power_down_phy(struct e1000_adapter *adapter)
2664 {
2665         /* WoL is enabled */
2666         if (adapter->wol)
2667                 return;
2668
2669         if (adapter->hw.phy.ops.power_down)
2670                 adapter->hw.phy.ops.power_down(&adapter->hw);
2671 }
2672
2673 /**
2674  * e1000e_reset - bring the hardware into a known good state
2675  *
2676  * This function boots the hardware and enables some settings that
2677  * require a configuration cycle of the hardware - those cannot be
2678  * set/changed during runtime. After reset the device needs to be
2679  * properly configured for Rx, Tx etc.
2680  */
2681 void e1000e_reset(struct e1000_adapter *adapter)
2682 {
2683         struct e1000_mac_info *mac = &adapter->hw.mac;
2684         struct e1000_fc_info *fc = &adapter->hw.fc;
2685         struct e1000_hw *hw = &adapter->hw;
2686         u32 tx_space, min_tx_space, min_rx_space;
2687         u32 pba = adapter->pba;
2688         u16 hwm;
2689
2690         /* reset Packet Buffer Allocation to default */
2691         ew32(PBA, pba);
2692
2693         if (adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
2694                 /*
2695                  * To maintain wire speed transmits, the Tx FIFO should be
2696                  * large enough to accommodate two full transmit packets,
2697                  * rounded up to the next 1KB and expressed in KB.  Likewise,
2698                  * the Rx FIFO should be large enough to accommodate at least
2699                  * one full receive packet and is similarly rounded up and
2700                  * expressed in KB.
2701                  */
2702                 pba = er32(PBA);
2703                 /* upper 16 bits has Tx packet buffer allocation size in KB */
2704                 tx_space = pba >> 16;
2705                 /* lower 16 bits has Rx packet buffer allocation size in KB */
2706                 pba &= 0xffff;
2707                 /*
2708                  * the Tx fifo also stores 16 bytes of information about the tx
2709                  * but don't include ethernet FCS because hardware appends it
2710                  */
2711                 min_tx_space = (adapter->max_frame_size +
2712                                 sizeof(struct e1000_tx_desc) -
2713                                 ETH_FCS_LEN) * 2;
2714                 min_tx_space = ALIGN(min_tx_space, 1024);
2715                 min_tx_space >>= 10;
2716                 /* software strips receive CRC, so leave room for it */
2717                 min_rx_space = adapter->max_frame_size;
2718                 min_rx_space = ALIGN(min_rx_space, 1024);
2719                 min_rx_space >>= 10;
2720
2721                 /*
2722                  * If current Tx allocation is less than the min Tx FIFO size,
2723                  * and the min Tx FIFO size is less than the current Rx FIFO
2724                  * allocation, take space away from current Rx allocation
2725                  */
2726                 if ((tx_space < min_tx_space) &&
2727                     ((min_tx_space - tx_space) < pba)) {
2728                         pba -= min_tx_space - tx_space;
2729
2730                         /*
2731                          * if short on Rx space, Rx wins and must trump tx
2732                          * adjustment or use Early Receive if available
2733                          */
2734                         if ((pba < min_rx_space) &&
2735                             (!(adapter->flags & FLAG_HAS_ERT)))
2736                                 /* ERT enabled in e1000_configure_rx */
2737                                 pba = min_rx_space;
2738                 }
2739
2740                 ew32(PBA, pba);
2741         }
2742
2743
2744         /*
2745          * flow control settings
2746          *
2747          * The high water mark must be low enough to fit one full frame
2748          * (or the size used for early receive) above it in the Rx FIFO.
2749          * Set it to the lower of:
2750          * - 90% of the Rx FIFO size, and
2751          * - the full Rx FIFO size minus the early receive size (for parts
2752          *   with ERT support assuming ERT set to E1000_ERT_2048), or
2753          * - the full Rx FIFO size minus one full frame
2754          */
2755         if (hw->mac.type == e1000_pchlan) {
2756                 /*
2757                  * Workaround PCH LOM adapter hangs with certain network
2758                  * loads.  If hangs persist, try disabling Tx flow control.
2759                  */
2760                 if (adapter->netdev->mtu > ETH_DATA_LEN) {
2761                         fc->high_water = 0x3500;
2762                         fc->low_water  = 0x1500;
2763                 } else {
2764                         fc->high_water = 0x5000;
2765                         fc->low_water  = 0x3000;
2766                 }
2767         } else {
2768                 if ((adapter->flags & FLAG_HAS_ERT) &&
2769                     (adapter->netdev->mtu > ETH_DATA_LEN))
2770                         hwm = min(((pba << 10) * 9 / 10),
2771                                   ((pba << 10) - (E1000_ERT_2048 << 3)));
2772                 else
2773                         hwm = min(((pba << 10) * 9 / 10),
2774                                   ((pba << 10) - adapter->max_frame_size));
2775
2776                 fc->high_water = hwm & E1000_FCRTH_RTH; /* 8-byte granularity */
2777                 fc->low_water = fc->high_water - 8;
2778         }
2779
2780         if (adapter->flags & FLAG_DISABLE_FC_PAUSE_TIME)
2781                 fc->pause_time = 0xFFFF;
2782         else
2783                 fc->pause_time = E1000_FC_PAUSE_TIME;
2784         fc->send_xon = 1;
2785         fc->current_mode = fc->requested_mode;
2786
2787         /* Allow time for pending master requests to run */
2788         mac->ops.reset_hw(hw);
2789
2790         /*
2791          * For parts with AMT enabled, let the firmware know
2792          * that the network interface is in control
2793          */
2794         if (adapter->flags & FLAG_HAS_AMT)
2795                 e1000_get_hw_control(adapter);
2796
2797         ew32(WUC, 0);
2798         if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP)
2799                 e1e_wphy(&adapter->hw, BM_WUC, 0);
2800
2801         if (mac->ops.init_hw(hw))
2802                 e_err("Hardware Error\n");
2803
2804         /* additional part of the flow-control workaround above */
2805         if (hw->mac.type == e1000_pchlan)
2806                 ew32(FCRTV_PCH, 0x1000);
2807
2808         e1000_update_mng_vlan(adapter);
2809
2810         /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
2811         ew32(VET, ETH_P_8021Q);
2812
2813         e1000e_reset_adaptive(hw);
2814         e1000_get_phy_info(hw);
2815
2816         if ((adapter->flags & FLAG_HAS_SMART_POWER_DOWN) &&
2817             !(adapter->flags & FLAG_SMART_POWER_DOWN)) {
2818                 u16 phy_data = 0;
2819                 /*
2820                  * speed up time to link by disabling smart power down, ignore
2821                  * the return value of this function because there is nothing
2822                  * different we would do if it failed
2823                  */
2824                 e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &phy_data);
2825                 phy_data &= ~IGP02E1000_PM_SPD;
2826                 e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, phy_data);
2827         }
2828 }
2829
2830 int e1000e_up(struct e1000_adapter *adapter)
2831 {
2832         struct e1000_hw *hw = &adapter->hw;
2833
2834         /* DMA latency requirement to workaround early-receive/jumbo issue */
2835         if (adapter->flags & FLAG_HAS_ERT)
2836                 pm_qos_add_requirement(PM_QOS_CPU_DMA_LATENCY,
2837                                        adapter->netdev->name,
2838                                        PM_QOS_DEFAULT_VALUE);
2839
2840         /* hardware has been reset, we need to reload some things */
2841         e1000_configure(adapter);
2842
2843         clear_bit(__E1000_DOWN, &adapter->state);
2844
2845         napi_enable(&adapter->napi);
2846         if (adapter->msix_entries)
2847                 e1000_configure_msix(adapter);
2848         e1000_irq_enable(adapter);
2849
2850         netif_wake_queue(adapter->netdev);
2851
2852         /* fire a link change interrupt to start the watchdog */
2853         ew32(ICS, E1000_ICS_LSC);
2854         return 0;
2855 }
2856
2857 void e1000e_down(struct e1000_adapter *adapter)
2858 {
2859         struct net_device *netdev = adapter->netdev;
2860         struct e1000_hw *hw = &adapter->hw;
2861         u32 tctl, rctl;
2862
2863         /*
2864          * signal that we're down so the interrupt handler does not
2865          * reschedule our watchdog timer
2866          */
2867         set_bit(__E1000_DOWN, &adapter->state);
2868
2869         /* disable receives in the hardware */
2870         rctl = er32(RCTL);
2871         ew32(RCTL, rctl & ~E1000_RCTL_EN);
2872         /* flush and sleep below */
2873
2874         netif_stop_queue(netdev);
2875
2876         /* disable transmits in the hardware */
2877         tctl = er32(TCTL);
2878         tctl &= ~E1000_TCTL_EN;
2879         ew32(TCTL, tctl);
2880         /* flush both disables and wait for them to finish */
2881         e1e_flush();
2882         msleep(10);
2883
2884         napi_disable(&adapter->napi);
2885         e1000_irq_disable(adapter);
2886
2887         del_timer_sync(&adapter->watchdog_timer);
2888         del_timer_sync(&adapter->phy_info_timer);
2889
2890         netdev->tx_queue_len = adapter->tx_queue_len;
2891         netif_carrier_off(netdev);
2892         adapter->link_speed = 0;
2893         adapter->link_duplex = 0;
2894
2895         if (!pci_channel_offline(adapter->pdev))
2896                 e1000e_reset(adapter);
2897         e1000_clean_tx_ring(adapter);
2898         e1000_clean_rx_ring(adapter);
2899
2900         if (adapter->flags & FLAG_HAS_ERT)
2901                 pm_qos_remove_requirement(PM_QOS_CPU_DMA_LATENCY,
2902                                           adapter->netdev->name);
2903
2904         /*
2905          * TODO: for power management, we could drop the link and
2906          * pci_disable_device here.
2907          */
2908 }
2909
2910 void e1000e_reinit_locked(struct e1000_adapter *adapter)
2911 {
2912         might_sleep();
2913         while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
2914                 msleep(1);
2915         e1000e_down(adapter);
2916         e1000e_up(adapter);
2917         clear_bit(__E1000_RESETTING, &adapter->state);
2918 }
2919
2920 /**
2921  * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
2922  * @adapter: board private structure to initialize
2923  *
2924  * e1000_sw_init initializes the Adapter private data structure.
2925  * Fields are initialized based on PCI device information and
2926  * OS network device settings (MTU size).
2927  **/
2928 static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
2929 {
2930         struct net_device *netdev = adapter->netdev;
2931
2932         adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN;
2933         adapter->rx_ps_bsize0 = 128;
2934         adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
2935         adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN;
2936
2937         e1000e_set_interrupt_capability(adapter);
2938
2939         if (e1000_alloc_queues(adapter))
2940                 return -ENOMEM;
2941
2942         /* Explicitly disable IRQ since the NIC can be in any state. */
2943         e1000_irq_disable(adapter);
2944
2945         set_bit(__E1000_DOWN, &adapter->state);
2946         return 0;
2947 }
2948
2949 /**
2950  * e1000_intr_msi_test - Interrupt Handler
2951  * @irq: interrupt number
2952  * @data: pointer to a network interface device structure
2953  **/
2954 static irqreturn_t e1000_intr_msi_test(int irq, void *data)
2955 {
2956         struct net_device *netdev = data;
2957         struct e1000_adapter *adapter = netdev_priv(netdev);
2958         struct e1000_hw *hw = &adapter->hw;
2959         u32 icr = er32(ICR);
2960
2961         e_dbg("icr is %08X\n", icr);
2962         if (icr & E1000_ICR_RXSEQ) {
2963                 adapter->flags &= ~FLAG_MSI_TEST_FAILED;
2964                 wmb();
2965         }
2966
2967         return IRQ_HANDLED;
2968 }
2969
2970 /**
2971  * e1000_test_msi_interrupt - Returns 0 for successful test
2972  * @adapter: board private struct
2973  *
2974  * code flow taken from tg3.c
2975  **/
2976 static int e1000_test_msi_interrupt(struct e1000_adapter *adapter)
2977 {
2978         struct net_device *netdev = adapter->netdev;
2979         struct e1000_hw *hw = &adapter->hw;
2980         int err;
2981
2982         /* poll_enable hasn't been called yet, so don't need disable */
2983         /* clear any pending events */
2984         er32(ICR);
2985
2986         /* free the real vector and request a test handler */
2987         e1000_free_irq(adapter);
2988         e1000e_reset_interrupt_capability(adapter);
2989
2990         /* Assume that the test fails, if it succeeds then the test
2991          * MSI irq handler will unset this flag */
2992         adapter->flags |= FLAG_MSI_TEST_FAILED;
2993
2994         err = pci_enable_msi(adapter->pdev);
2995         if (err)
2996                 goto msi_test_failed;
2997
2998         err = request_irq(adapter->pdev->irq, e1000_intr_msi_test, 0,
2999                           netdev->name, netdev);
3000         if (err) {
3001                 pci_disable_msi(adapter->pdev);
3002                 goto msi_test_failed;
3003         }
3004
3005         wmb();
3006
3007         e1000_irq_enable(adapter);
3008
3009         /* fire an unusual interrupt on the test handler */
3010         ew32(ICS, E1000_ICS_RXSEQ);
3011         e1e_flush();
3012         msleep(50);
3013
3014         e1000_irq_disable(adapter);
3015
3016         rmb();
3017
3018         if (adapter->flags & FLAG_MSI_TEST_FAILED) {
3019                 adapter->int_mode = E1000E_INT_MODE_LEGACY;
3020                 err = -EIO;
3021                 e_info("MSI interrupt test failed!\n");
3022         }
3023
3024         free_irq(adapter->pdev->irq, netdev);
3025         pci_disable_msi(adapter->pdev);
3026
3027         if (err == -EIO)
3028                 goto msi_test_failed;
3029
3030         /* okay so the test worked, restore settings */
3031         e_dbg("MSI interrupt test succeeded!\n");
3032 msi_test_failed:
3033         e1000e_set_interrupt_capability(adapter);
3034         e1000_request_irq(adapter);
3035         return err;
3036 }
3037
3038 /**
3039  * e1000_test_msi - Returns 0 if MSI test succeeds or INTx mode is restored
3040  * @adapter: board private struct
3041  *
3042  * code flow taken from tg3.c, called with e1000 interrupts disabled.
3043  **/
3044 static int e1000_test_msi(struct e1000_adapter *adapter)
3045 {
3046         int err;
3047         u16 pci_cmd;
3048
3049         if (!(adapter->flags & FLAG_MSI_ENABLED))
3050                 return 0;
3051
3052         /* disable SERR in case the MSI write causes a master abort */
3053         pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
3054         pci_write_config_word(adapter->pdev, PCI_COMMAND,
3055                               pci_cmd & ~PCI_COMMAND_SERR);
3056
3057         err = e1000_test_msi_interrupt(adapter);
3058
3059         /* restore previous setting of command word */
3060         pci_write_config_word(adapter->pdev, PCI_COMMAND, pci_cmd);
3061
3062         /* success ! */
3063         if (!err)
3064                 return 0;
3065
3066         /* EIO means MSI test failed */
3067         if (err != -EIO)
3068                 return err;
3069
3070         /* back to INTx mode */
3071         e_warn("MSI interrupt test failed, using legacy interrupt.\n");
3072
3073         e1000_free_irq(adapter);
3074
3075         err = e1000_request_irq(adapter);
3076
3077         return err;
3078 }
3079
3080 /**
3081  * e1000_open - Called when a network interface is made active
3082  * @netdev: network interface device structure
3083  *
3084  * Returns 0 on success, negative value on failure
3085  *
3086  * The open entry point is called when a network interface is made
3087  * active by the system (IFF_UP).  At this point all resources needed
3088  * for transmit and receive operations are allocated, the interrupt
3089  * handler is registered with the OS, the watchdog timer is started,
3090  * and the stack is notified that the interface is ready.
3091  **/
3092 static int e1000_open(struct net_device *netdev)
3093 {
3094         struct e1000_adapter *adapter = netdev_priv(netdev);
3095         struct e1000_hw *hw = &adapter->hw;
3096         int err;
3097
3098         /* disallow open during test */
3099         if (test_bit(__E1000_TESTING, &adapter->state))
3100                 return -EBUSY;
3101
3102         netif_carrier_off(netdev);
3103
3104         /* allocate transmit descriptors */
3105         err = e1000e_setup_tx_resources(adapter);
3106         if (err)
3107                 goto err_setup_tx;
3108
3109         /* allocate receive descriptors */
3110         err = e1000e_setup_rx_resources(adapter);
3111         if (err)
3112                 goto err_setup_rx;
3113
3114         e1000e_power_up_phy(adapter);
3115
3116         adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
3117         if ((adapter->hw.mng_cookie.status &
3118              E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
3119                 e1000_update_mng_vlan(adapter);
3120
3121         /*
3122          * If AMT is enabled, let the firmware know that the network
3123          * interface is now open
3124          */
3125         if (adapter->flags & FLAG_HAS_AMT)
3126                 e1000_get_hw_control(adapter);
3127
3128         /*
3129          * before we allocate an interrupt, we must be ready to handle it.
3130          * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
3131          * as soon as we call pci_request_irq, so we have to setup our
3132          * clean_rx handler before we do so.
3133          */
3134         e1000_configure(adapter);
3135
3136         err = e1000_request_irq(adapter);
3137         if (err)
3138                 goto err_req_irq;
3139
3140         /*
3141          * Work around PCIe errata with MSI interrupts causing some chipsets to
3142          * ignore e1000e MSI messages, which means we need to test our MSI
3143          * interrupt now
3144          */
3145         if (adapter->int_mode != E1000E_INT_MODE_LEGACY) {
3146                 err = e1000_test_msi(adapter);
3147                 if (err) {
3148                         e_err("Interrupt allocation failed\n");
3149                         goto err_req_irq;
3150                 }
3151         }
3152
3153         /* From here on the code is the same as e1000e_up() */
3154         clear_bit(__E1000_DOWN, &adapter->state);
3155
3156         napi_enable(&adapter->napi);
3157
3158         e1000_irq_enable(adapter);
3159
3160         netif_start_queue(netdev);
3161
3162         /* fire a link status change interrupt to start the watchdog */
3163         ew32(ICS, E1000_ICS_LSC);
3164
3165         return 0;
3166
3167 err_req_irq:
3168         e1000_release_hw_control(adapter);
3169         e1000_power_down_phy(adapter);
3170         e1000e_free_rx_resources(adapter);
3171 err_setup_rx:
3172         e1000e_free_tx_resources(adapter);
3173 err_setup_tx:
3174         e1000e_reset(adapter);
3175
3176         return err;
3177 }
3178
3179 /**
3180  * e1000_close - Disables a network interface
3181  * @netdev: network interface device structure
3182  *
3183  * Returns 0, this is not allowed to fail
3184  *
3185  * The close entry point is called when an interface is de-activated
3186  * by the OS.  The hardware is still under the drivers control, but
3187  * needs to be disabled.  A global MAC reset is issued to stop the
3188  * hardware, and all transmit and receive resources are freed.
3189  **/
3190 static int e1000_close(struct net_device *netdev)
3191 {
3192         struct e1000_adapter *adapter = netdev_priv(netdev);
3193
3194         WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
3195         e1000e_down(adapter);
3196         e1000_power_down_phy(adapter);
3197         e1000_free_irq(adapter);
3198
3199         e1000e_free_tx_resources(adapter);
3200         e1000e_free_rx_resources(adapter);
3201
3202         /*
3203          * kill manageability vlan ID if supported, but not if a vlan with
3204          * the same ID is registered on the host OS (let 8021q kill it)
3205          */
3206         if ((adapter->hw.mng_cookie.status &
3207                           E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
3208              !(adapter->vlgrp &&
3209                vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id)))
3210                 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
3211
3212         /*
3213          * If AMT is enabled, let the firmware know that the network
3214          * interface is now closed
3215          */
3216         if (adapter->flags & FLAG_HAS_AMT)
3217                 e1000_release_hw_control(adapter);
3218
3219         return 0;
3220 }
3221 /**
3222  * e1000_set_mac - Change the Ethernet Address of the NIC
3223  * @netdev: network interface device structure
3224  * @p: pointer to an address structure
3225  *
3226  * Returns 0 on success, negative on failure
3227  **/
3228 static int e1000_set_mac(struct net_device *netdev, void *p)
3229 {
3230         struct e1000_adapter *adapter = netdev_priv(netdev);
3231         struct sockaddr *addr = p;
3232
3233         if (!is_valid_ether_addr(addr->sa_data))
3234                 return -EADDRNOTAVAIL;
3235
3236         memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
3237         memcpy(adapter->hw.mac.addr, addr->sa_data, netdev->addr_len);
3238
3239         e1000e_rar_set(&adapter->hw, adapter->hw.mac.addr, 0);
3240
3241         if (adapter->flags & FLAG_RESET_OVERWRITES_LAA) {
3242                 /* activate the work around */
3243                 e1000e_set_laa_state_82571(&adapter->hw, 1);
3244
3245                 /*
3246                  * Hold a copy of the LAA in RAR[14] This is done so that
3247                  * between the time RAR[0] gets clobbered  and the time it
3248                  * gets fixed (in e1000_watchdog), the actual LAA is in one
3249                  * of the RARs and no incoming packets directed to this port
3250                  * are dropped. Eventually the LAA will be in RAR[0] and
3251                  * RAR[14]
3252                  */
3253                 e1000e_rar_set(&adapter->hw,
3254                               adapter->hw.mac.addr,
3255                               adapter->hw.mac.rar_entry_count - 1);
3256         }
3257
3258         return 0;
3259 }
3260
3261 /**
3262  * e1000e_update_phy_task - work thread to update phy
3263  * @work: pointer to our work struct
3264  *
3265  * this worker thread exists because we must acquire a
3266  * semaphore to read the phy, which we could msleep while
3267  * waiting for it, and we can't msleep in a timer.
3268  **/
3269 static void e1000e_update_phy_task(struct work_struct *work)
3270 {
3271         struct e1000_adapter *adapter = container_of(work,
3272                                         struct e1000_adapter, update_phy_task);
3273         e1000_get_phy_info(&adapter->hw);
3274 }
3275
3276 /*
3277  * Need to wait a few seconds after link up to get diagnostic information from
3278  * the phy
3279  */
3280 static void e1000_update_phy_info(unsigned long data)
3281 {
3282         struct e1000_adapter *adapter = (struct e1000_adapter *) data;
3283         schedule_work(&adapter->update_phy_task);
3284 }
3285
3286 /**
3287  * e1000e_update_stats - Update the board statistics counters
3288  * @adapter: board private structure
3289  **/
3290 void e1000e_update_stats(struct e1000_adapter *adapter)
3291 {
3292         struct net_device *netdev = adapter->netdev;
3293         struct e1000_hw *hw = &adapter->hw;
3294         struct pci_dev *pdev = adapter->pdev;
3295         u16 phy_data;
3296
3297         /*
3298          * Prevent stats update while adapter is being reset, or if the pci
3299          * connection is down.
3300          */
3301         if (adapter->link_speed == 0)
3302                 return;
3303         if (pci_channel_offline(pdev))
3304                 return;
3305
3306         adapter->stats.crcerrs += er32(CRCERRS);
3307         adapter->stats.gprc += er32(GPRC);
3308         adapter->stats.gorc += er32(GORCL);
3309         er32(GORCH); /* Clear gorc */
3310         adapter->stats.bprc += er32(BPRC);
3311         adapter->stats.mprc += er32(MPRC);
3312         adapter->stats.roc += er32(ROC);
3313
3314         adapter->stats.mpc += er32(MPC);
3315         if ((hw->phy.type == e1000_phy_82578) ||
3316             (hw->phy.type == e1000_phy_82577)) {
3317                 e1e_rphy(hw, HV_SCC_UPPER, &phy_data);
3318                 if (!e1e_rphy(hw, HV_SCC_LOWER, &phy_data))
3319                         adapter->stats.scc += phy_data;
3320
3321                 e1e_rphy(hw, HV_ECOL_UPPER, &phy_data);
3322                 if (!e1e_rphy(hw, HV_ECOL_LOWER, &phy_data))
3323                         adapter->stats.ecol += phy_data;
3324
3325                 e1e_rphy(hw, HV_MCC_UPPER, &phy_data);
3326                 if (!e1e_rphy(hw, HV_MCC_LOWER, &phy_data))
3327                         adapter->stats.mcc += phy_data;
3328
3329                 e1e_rphy(hw, HV_LATECOL_UPPER, &phy_data);
3330                 if (!e1e_rphy(hw, HV_LATECOL_LOWER, &phy_data))
3331                         adapter->stats.latecol += phy_data;
3332
3333                 e1e_rphy(hw, HV_DC_UPPER, &phy_data);
3334                 if (!e1e_rphy(hw, HV_DC_LOWER, &phy_data))
3335                         adapter->stats.dc += phy_data;
3336         } else {
3337                 adapter->stats.scc += er32(SCC);
3338                 adapter->stats.ecol += er32(ECOL);
3339                 adapter->stats.mcc += er32(MCC);
3340                 adapter->stats.latecol += er32(LATECOL);
3341                 adapter->stats.dc += er32(DC);
3342         }
3343         adapter->stats.xonrxc += er32(XONRXC);
3344         adapter->stats.xontxc += er32(XONTXC);
3345         adapter->stats.xoffrxc += er32(XOFFRXC);
3346         adapter->stats.xofftxc += er32(XOFFTXC);
3347         adapter->stats.gptc += er32(GPTC);
3348         adapter->stats.gotc += er32(GOTCL);
3349         er32(GOTCH); /* Clear gotc */
3350         adapter->stats.rnbc += er32(RNBC);
3351         adapter->stats.ruc += er32(RUC);
3352
3353         adapter->stats.mptc += er32(MPTC);
3354         adapter->stats.bptc += er32(BPTC);
3355
3356         /* used for adaptive IFS */
3357
3358         hw->mac.tx_packet_delta = er32(TPT);
3359         adapter->stats.tpt += hw->mac.tx_packet_delta;
3360         if ((hw->phy.type == e1000_phy_82578) ||
3361             (hw->phy.type == e1000_phy_82577)) {
3362                 e1e_rphy(hw, HV_COLC_UPPER, &phy_data);
3363                 if (!e1e_rphy(hw, HV_COLC_LOWER, &phy_data))
3364                         hw->mac.collision_delta = phy_data;
3365         } else {
3366                 hw->mac.collision_delta = er32(COLC);
3367         }
3368         adapter->stats.colc += hw->mac.collision_delta;
3369
3370         adapter->stats.algnerrc += er32(ALGNERRC);
3371         adapter->stats.rxerrc += er32(RXERRC);
3372         if ((hw->phy.type == e1000_phy_82578) ||
3373             (hw->phy.type == e1000_phy_82577)) {
3374                 e1e_rphy(hw, HV_TNCRS_UPPER, &phy_data);
3375                 if (!e1e_rphy(hw, HV_TNCRS_LOWER, &phy_data))
3376                         adapter->stats.tncrs += phy_data;
3377         } else {
3378                 if ((hw->mac.type != e1000_82574) &&
3379                     (hw->mac.type != e1000_82583))
3380                         adapter->stats.tncrs += er32(TNCRS);
3381         }
3382         adapter->stats.cexterr += er32(CEXTERR);
3383         adapter->stats.tsctc += er32(TSCTC);
3384         adapter->stats.tsctfc += er32(TSCTFC);
3385
3386         /* Fill out the OS statistics structure */
3387         netdev->stats.multicast = adapter->stats.mprc;
3388         netdev->stats.collisions = adapter->stats.colc;
3389
3390         /* Rx Errors */
3391
3392         /*
3393          * RLEC on some newer hardware can be incorrect so build
3394          * our own version based on RUC and ROC
3395          */
3396         netdev->stats.rx_errors = adapter->stats.rxerrc +
3397                 adapter->stats.crcerrs + adapter->stats.algnerrc +
3398                 adapter->stats.ruc + adapter->stats.roc +
3399                 adapter->stats.cexterr;
3400         netdev->stats.rx_length_errors = adapter->stats.ruc +
3401                                               adapter->stats.roc;
3402         netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
3403         netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
3404         netdev->stats.rx_missed_errors = adapter->stats.mpc;
3405
3406         /* Tx Errors */
3407         netdev->stats.tx_errors = adapter->stats.ecol +
3408                                        adapter->stats.latecol;
3409         netdev->stats.tx_aborted_errors = adapter->stats.ecol;
3410         netdev->stats.tx_window_errors = adapter->stats.latecol;
3411         netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
3412
3413         /* Tx Dropped needs to be maintained elsewhere */
3414
3415         /* Management Stats */
3416         adapter->stats.mgptc += er32(MGTPTC);
3417         adapter->stats.mgprc += er32(MGTPRC);
3418         adapter->stats.mgpdc += er32(MGTPDC);
3419 }
3420
3421 /**
3422  * e1000_phy_read_status - Update the PHY register status snapshot
3423  * @adapter: board private structure
3424  **/
3425 static void e1000_phy_read_status(struct e1000_adapter *adapter)
3426 {
3427         struct e1000_hw *hw = &adapter->hw;
3428         struct e1000_phy_regs *phy = &adapter->phy_regs;
3429         int ret_val;
3430
3431         if ((er32(STATUS) & E1000_STATUS_LU) &&
3432             (adapter->hw.phy.media_type == e1000_media_type_copper)) {
3433                 ret_val  = e1e_rphy(hw, PHY_CONTROL, &phy->bmcr);
3434                 ret_val |= e1e_rphy(hw, PHY_STATUS, &phy->bmsr);
3435                 ret_val |= e1e_rphy(hw, PHY_AUTONEG_ADV, &phy->advertise);
3436                 ret_val |= e1e_rphy(hw, PHY_LP_ABILITY, &phy->lpa);
3437                 ret_val |= e1e_rphy(hw, PHY_AUTONEG_EXP, &phy->expansion);
3438                 ret_val |= e1e_rphy(hw, PHY_1000T_CTRL, &phy->ctrl1000);
3439                 ret_val |= e1e_rphy(hw, PHY_1000T_STATUS, &phy->stat1000);
3440                 ret_val |= e1e_rphy(hw, PHY_EXT_STATUS, &phy->estatus);
3441                 if (ret_val)
3442                         e_warn("Error reading PHY register\n");
3443         } else {
3444                 /*
3445                  * Do not read PHY registers if link is not up
3446                  * Set values to typical power-on defaults
3447                  */
3448                 phy->bmcr = (BMCR_SPEED1000 | BMCR_ANENABLE | BMCR_FULLDPLX);
3449                 phy->bmsr = (BMSR_100FULL | BMSR_100HALF | BMSR_10FULL |
3450                              BMSR_10HALF | BMSR_ESTATEN | BMSR_ANEGCAPABLE |
3451                              BMSR_ERCAP);
3452                 phy->advertise = (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP |
3453                                   ADVERTISE_ALL | ADVERTISE_CSMA);
3454                 phy->lpa = 0;
3455                 phy->expansion = EXPANSION_ENABLENPAGE;
3456                 phy->ctrl1000 = ADVERTISE_1000FULL;
3457                 phy->stat1000 = 0;
3458                 phy->estatus = (ESTATUS_1000_TFULL | ESTATUS_1000_THALF);
3459         }
3460 }
3461
3462 static void e1000_print_link_info(struct e1000_adapter *adapter)
3463 {
3464         struct e1000_hw *hw = &adapter->hw;
3465         u32 ctrl = er32(CTRL);
3466
3467         /* Link status message must follow this format for user tools */
3468         printk(KERN_INFO "e1000e: %s NIC Link is Up %d Mbps %s, "
3469                "Flow Control: %s\n",
3470                adapter->netdev->name,
3471                adapter->link_speed,
3472                (adapter->link_duplex == FULL_DUPLEX) ?
3473                                 "Full Duplex" : "Half Duplex",
3474                ((ctrl & E1000_CTRL_TFCE) && (ctrl & E1000_CTRL_RFCE)) ?
3475                                 "RX/TX" :
3476                ((ctrl & E1000_CTRL_RFCE) ? "RX" :
3477                ((ctrl & E1000_CTRL_TFCE) ? "TX" : "None" )));
3478 }
3479
3480 bool e1000_has_link(struct e1000_adapter *adapter)
3481 {
3482         struct e1000_hw *hw = &adapter->hw;
3483         bool link_active = 0;
3484         s32 ret_val = 0;
3485
3486         /*
3487          * get_link_status is set on LSC (link status) interrupt or
3488          * Rx sequence error interrupt.  get_link_status will stay
3489          * false until the check_for_link establishes link
3490          * for copper adapters ONLY
3491          */
3492         switch (hw->phy.media_type) {
3493         case e1000_media_type_copper:
3494                 if (hw->mac.get_link_status) {
3495                         ret_val = hw->mac.ops.check_for_link(hw);
3496                         link_active = !hw->mac.get_link_status;
3497                 } else {
3498                         link_active = 1;
3499                 }
3500                 break;
3501         case e1000_media_type_fiber:
3502                 ret_val = hw->mac.ops.check_for_link(hw);
3503                 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
3504                 break;
3505         case e1000_media_type_internal_serdes:
3506                 ret_val = hw->mac.ops.check_for_link(hw);
3507                 link_active = adapter->hw.mac.serdes_has_link;
3508                 break;
3509         default:
3510         case e1000_media_type_unknown:
3511                 break;
3512         }
3513
3514         if ((ret_val == E1000_ERR_PHY) && (hw->phy.type == e1000_phy_igp_3) &&
3515             (er32(CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
3516                 /* See e1000_kmrn_lock_loss_workaround_ich8lan() */
3517                 e_info("Gigabit has been disabled, downgrading speed\n");
3518         }
3519
3520         return link_active;
3521 }
3522
3523 static void e1000e_enable_receives(struct e1000_adapter *adapter)
3524 {
3525         /* make sure the receive unit is started */
3526         if ((adapter->flags & FLAG_RX_NEEDS_RESTART) &&
3527             (adapter->flags & FLAG_RX_RESTART_NOW)) {
3528                 struct e1000_hw *hw = &adapter->hw;
3529                 u32 rctl = er32(RCTL);
3530                 ew32(RCTL, rctl | E1000_RCTL_EN);
3531                 adapter->flags &= ~FLAG_RX_RESTART_NOW;
3532         }
3533 }
3534
3535 /**
3536  * e1000_watchdog - Timer Call-back
3537  * @data: pointer to adapter cast into an unsigned long
3538  **/
3539 static void e1000_watchdog(unsigned long data)
3540 {
3541         struct e1000_adapter *adapter = (struct e1000_adapter *) data;
3542
3543         /* Do the rest outside of interrupt context */
3544         schedule_work(&adapter->watchdog_task);
3545
3546         /* TODO: make this use queue_delayed_work() */
3547 }
3548
3549 static void e1000_watchdog_task(struct work_struct *work)
3550 {
3551         struct e1000_adapter *adapter = container_of(work,
3552                                         struct e1000_adapter, watchdog_task);
3553         struct net_device *netdev = adapter->netdev;
3554         struct e1000_mac_info *mac = &adapter->hw.mac;
3555         struct e1000_phy_info *phy = &adapter->hw.phy;
3556         struct e1000_ring *tx_ring = adapter->tx_ring;
3557         struct e1000_hw *hw = &adapter->hw;
3558         u32 link, tctl;
3559         int tx_pending = 0;
3560
3561         link = e1000_has_link(adapter);
3562         if ((netif_carrier_ok(netdev)) && link) {
3563                 e1000e_enable_receives(adapter);
3564                 goto link_up;
3565         }
3566
3567         if ((e1000e_enable_tx_pkt_filtering(hw)) &&
3568             (adapter->mng_vlan_id != adapter->hw.mng_cookie.vlan_id))
3569                 e1000_update_mng_vlan(adapter);
3570
3571         if (link) {
3572                 if (!netif_carrier_ok(netdev)) {
3573                         bool txb2b = 1;
3574                         /* update snapshot of PHY registers on LSC */
3575                         e1000_phy_read_status(adapter);
3576                         mac->ops.get_link_up_info(&adapter->hw,
3577                                                    &adapter->link_speed,
3578                                                    &adapter->link_duplex);
3579                         e1000_print_link_info(adapter);
3580                         /*
3581                          * On supported PHYs, check for duplex mismatch only
3582                          * if link has autonegotiated at 10/100 half
3583                          */
3584                         if ((hw->phy.type == e1000_phy_igp_3 ||
3585                              hw->phy.type == e1000_phy_bm) &&
3586                             (hw->mac.autoneg == true) &&
3587                             (adapter->link_speed == SPEED_10 ||
3588                              adapter->link_speed == SPEED_100) &&
3589                             (adapter->link_duplex == HALF_DUPLEX)) {
3590                                 u16 autoneg_exp;
3591
3592                                 e1e_rphy(hw, PHY_AUTONEG_EXP, &autoneg_exp);
3593
3594                                 if (!(autoneg_exp & NWAY_ER_LP_NWAY_CAPS))
3595                                         e_info("Autonegotiated half duplex but"
3596                                                " link partner cannot autoneg. "
3597                                                " Try forcing full duplex if "
3598                                                "link gets many collisions.\n");
3599                         }
3600
3601                         /*
3602                          * tweak tx_queue_len according to speed/duplex
3603                          * and adjust the timeout factor
3604                          */
3605                         netdev->tx_queue_len = adapter->tx_queue_len;
3606                         adapter->tx_timeout_factor = 1;
3607                         switch (adapter->link_speed) {
3608                         case SPEED_10:
3609                                 txb2b = 0;
3610                                 netdev->tx_queue_len = 10;
3611                                 adapter->tx_timeout_factor = 16;
3612                                 break;
3613                         case SPEED_100:
3614                                 txb2b = 0;
3615                                 netdev->tx_queue_len = 100;
3616                                 adapter->tx_timeout_factor = 10;
3617                                 break;
3618                         }
3619
3620                         /*
3621                          * workaround: re-program speed mode bit after
3622                          * link-up event
3623                          */
3624                         if ((adapter->flags & FLAG_TARC_SPEED_MODE_BIT) &&
3625                             !txb2b) {
3626                                 u32 tarc0;
3627                                 tarc0 = er32(TARC(0));
3628                                 tarc0 &= ~SPEED_MODE_BIT;
3629                                 ew32(TARC(0), tarc0);
3630                         }
3631
3632                         /*
3633                          * disable TSO for pcie and 10/100 speeds, to avoid
3634                          * some hardware issues
3635                          */
3636                         if (!(adapter->flags & FLAG_TSO_FORCE)) {
3637                                 switch (adapter->link_speed) {
3638                                 case SPEED_10:
3639                                 case SPEED_100:
3640                                         e_info("10/100 speed: disabling TSO\n");
3641                                         netdev->features &= ~NETIF_F_TSO;
3642                                         netdev->features &= ~NETIF_F_TSO6;
3643                                         break;
3644                                 case SPEED_1000:
3645                                         netdev->features |= NETIF_F_TSO;
3646                                         netdev->features |= NETIF_F_TSO6;
3647                                         break;
3648                                 default:
3649                                         /* oops */
3650                                         break;
3651                                 }
3652                         }
3653
3654                         /*
3655                          * enable transmits in the hardware, need to do this
3656                          * after setting TARC(0)
3657                          */
3658                         tctl = er32(TCTL);
3659                         tctl |= E1000_TCTL_EN;
3660                         ew32(TCTL, tctl);
3661
3662                         /*
3663                          * Perform any post-link-up configuration before
3664                          * reporting link up.
3665                          */
3666                         if (phy->ops.cfg_on_link_up)
3667                                 phy->ops.cfg_on_link_up(hw);
3668
3669                         netif_carrier_on(netdev);
3670
3671                         if (!test_bit(__E1000_DOWN, &adapter->state))
3672                                 mod_timer(&adapter->phy_info_timer,