]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/net/igb/igb_main.c
netdrv intel: always enable VLAN filtering except in promiscous mode
[linux-2.6-omap-h63xx.git] / drivers / net / igb / igb_main.c
1 /*******************************************************************************
2
3   Intel(R) Gigabit Ethernet Linux driver
4   Copyright(c) 2007 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   e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24   Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26 *******************************************************************************/
27
28 #include <linux/module.h>
29 #include <linux/types.h>
30 #include <linux/init.h>
31 #include <linux/vmalloc.h>
32 #include <linux/pagemap.h>
33 #include <linux/netdevice.h>
34 #include <linux/ipv6.h>
35 #include <net/checksum.h>
36 #include <net/ip6_checksum.h>
37 #include <linux/mii.h>
38 #include <linux/ethtool.h>
39 #include <linux/if_vlan.h>
40 #include <linux/pci.h>
41 #include <linux/delay.h>
42 #include <linux/interrupt.h>
43 #include <linux/if_ether.h>
44 #ifdef CONFIG_DCA
45 #include <linux/dca.h>
46 #endif
47 #include "igb.h"
48
49 #define DRV_VERSION "1.2.45-k2"
50 char igb_driver_name[] = "igb";
51 char igb_driver_version[] = DRV_VERSION;
52 static const char igb_driver_string[] =
53                                 "Intel(R) Gigabit Ethernet Network Driver";
54 static const char igb_copyright[] = "Copyright (c) 2008 Intel Corporation.";
55
56 static const struct e1000_info *igb_info_tbl[] = {
57         [board_82575] = &e1000_82575_info,
58 };
59
60 static struct pci_device_id igb_pci_tbl[] = {
61         { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576), board_82575 },
62         { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_FIBER), board_82575 },
63         { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_SERDES), board_82575 },
64         { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_QUAD_COPPER), board_82575 },
65         { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_COPPER), board_82575 },
66         { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_FIBER_SERDES), board_82575 },
67         { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575GB_QUAD_COPPER), board_82575 },
68         /* required last entry */
69         {0, }
70 };
71
72 MODULE_DEVICE_TABLE(pci, igb_pci_tbl);
73
74 void igb_reset(struct igb_adapter *);
75 static int igb_setup_all_tx_resources(struct igb_adapter *);
76 static int igb_setup_all_rx_resources(struct igb_adapter *);
77 static void igb_free_all_tx_resources(struct igb_adapter *);
78 static void igb_free_all_rx_resources(struct igb_adapter *);
79 static void igb_free_tx_resources(struct igb_ring *);
80 static void igb_free_rx_resources(struct igb_ring *);
81 void igb_update_stats(struct igb_adapter *);
82 static int igb_probe(struct pci_dev *, const struct pci_device_id *);
83 static void __devexit igb_remove(struct pci_dev *pdev);
84 static int igb_sw_init(struct igb_adapter *);
85 static int igb_open(struct net_device *);
86 static int igb_close(struct net_device *);
87 static void igb_configure_tx(struct igb_adapter *);
88 static void igb_configure_rx(struct igb_adapter *);
89 static void igb_setup_rctl(struct igb_adapter *);
90 static void igb_clean_all_tx_rings(struct igb_adapter *);
91 static void igb_clean_all_rx_rings(struct igb_adapter *);
92 static void igb_clean_tx_ring(struct igb_ring *);
93 static void igb_clean_rx_ring(struct igb_ring *);
94 static void igb_set_multi(struct net_device *);
95 static void igb_update_phy_info(unsigned long);
96 static void igb_watchdog(unsigned long);
97 static void igb_watchdog_task(struct work_struct *);
98 static int igb_xmit_frame_ring_adv(struct sk_buff *, struct net_device *,
99                                   struct igb_ring *);
100 static int igb_xmit_frame_adv(struct sk_buff *skb, struct net_device *);
101 static struct net_device_stats *igb_get_stats(struct net_device *);
102 static int igb_change_mtu(struct net_device *, int);
103 static int igb_set_mac(struct net_device *, void *);
104 static irqreturn_t igb_intr(int irq, void *);
105 static irqreturn_t igb_intr_msi(int irq, void *);
106 static irqreturn_t igb_msix_other(int irq, void *);
107 static irqreturn_t igb_msix_rx(int irq, void *);
108 static irqreturn_t igb_msix_tx(int irq, void *);
109 static int igb_clean_rx_ring_msix(struct napi_struct *, int);
110 #ifdef CONFIG_DCA
111 static void igb_update_rx_dca(struct igb_ring *);
112 static void igb_update_tx_dca(struct igb_ring *);
113 static void igb_setup_dca(struct igb_adapter *);
114 #endif /* CONFIG_DCA */
115 static bool igb_clean_tx_irq(struct igb_ring *);
116 static int igb_poll(struct napi_struct *, int);
117 static bool igb_clean_rx_irq_adv(struct igb_ring *, int *, int);
118 static void igb_alloc_rx_buffers_adv(struct igb_ring *, int);
119 #ifdef CONFIG_IGB_LRO
120 static int igb_get_skb_hdr(struct sk_buff *skb, void **, void **, u64 *, void *);
121 #endif
122 static int igb_ioctl(struct net_device *, struct ifreq *, int cmd);
123 static void igb_tx_timeout(struct net_device *);
124 static void igb_reset_task(struct work_struct *);
125 static void igb_vlan_rx_register(struct net_device *, struct vlan_group *);
126 static void igb_vlan_rx_add_vid(struct net_device *, u16);
127 static void igb_vlan_rx_kill_vid(struct net_device *, u16);
128 static void igb_restore_vlan(struct igb_adapter *);
129
130 static int igb_suspend(struct pci_dev *, pm_message_t);
131 #ifdef CONFIG_PM
132 static int igb_resume(struct pci_dev *);
133 #endif
134 static void igb_shutdown(struct pci_dev *);
135 #ifdef CONFIG_DCA
136 static int igb_notify_dca(struct notifier_block *, unsigned long, void *);
137 static struct notifier_block dca_notifier = {
138         .notifier_call  = igb_notify_dca,
139         .next           = NULL,
140         .priority       = 0
141 };
142 #endif
143
144 #ifdef CONFIG_NET_POLL_CONTROLLER
145 /* for netdump / net console */
146 static void igb_netpoll(struct net_device *);
147 #endif
148
149 static pci_ers_result_t igb_io_error_detected(struct pci_dev *,
150                      pci_channel_state_t);
151 static pci_ers_result_t igb_io_slot_reset(struct pci_dev *);
152 static void igb_io_resume(struct pci_dev *);
153
154 static struct pci_error_handlers igb_err_handler = {
155         .error_detected = igb_io_error_detected,
156         .slot_reset = igb_io_slot_reset,
157         .resume = igb_io_resume,
158 };
159
160
161 static struct pci_driver igb_driver = {
162         .name     = igb_driver_name,
163         .id_table = igb_pci_tbl,
164         .probe    = igb_probe,
165         .remove   = __devexit_p(igb_remove),
166 #ifdef CONFIG_PM
167         /* Power Managment Hooks */
168         .suspend  = igb_suspend,
169         .resume   = igb_resume,
170 #endif
171         .shutdown = igb_shutdown,
172         .err_handler = &igb_err_handler
173 };
174
175 static int global_quad_port_a; /* global quad port a indication */
176
177 MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
178 MODULE_DESCRIPTION("Intel(R) Gigabit Ethernet Network Driver");
179 MODULE_LICENSE("GPL");
180 MODULE_VERSION(DRV_VERSION);
181
182 #ifdef DEBUG
183 /**
184  * igb_get_hw_dev_name - return device name string
185  * used by hardware layer to print debugging information
186  **/
187 char *igb_get_hw_dev_name(struct e1000_hw *hw)
188 {
189         struct igb_adapter *adapter = hw->back;
190         return adapter->netdev->name;
191 }
192 #endif
193
194 /**
195  * igb_init_module - Driver Registration Routine
196  *
197  * igb_init_module is the first routine called when the driver is
198  * loaded. All it does is register with the PCI subsystem.
199  **/
200 static int __init igb_init_module(void)
201 {
202         int ret;
203         printk(KERN_INFO "%s - version %s\n",
204                igb_driver_string, igb_driver_version);
205
206         printk(KERN_INFO "%s\n", igb_copyright);
207
208         global_quad_port_a = 0;
209
210         ret = pci_register_driver(&igb_driver);
211 #ifdef CONFIG_DCA
212         dca_register_notify(&dca_notifier);
213 #endif
214         return ret;
215 }
216
217 module_init(igb_init_module);
218
219 /**
220  * igb_exit_module - Driver Exit Cleanup Routine
221  *
222  * igb_exit_module is called just before the driver is removed
223  * from memory.
224  **/
225 static void __exit igb_exit_module(void)
226 {
227 #ifdef CONFIG_DCA
228         dca_unregister_notify(&dca_notifier);
229 #endif
230         pci_unregister_driver(&igb_driver);
231 }
232
233 module_exit(igb_exit_module);
234
235 /**
236  * igb_alloc_queues - Allocate memory for all rings
237  * @adapter: board private structure to initialize
238  *
239  * We allocate one ring per queue at run-time since we don't know the
240  * number of queues at compile-time.
241  **/
242 static int igb_alloc_queues(struct igb_adapter *adapter)
243 {
244         int i;
245
246         adapter->tx_ring = kcalloc(adapter->num_tx_queues,
247                                    sizeof(struct igb_ring), GFP_KERNEL);
248         if (!adapter->tx_ring)
249                 return -ENOMEM;
250
251         adapter->rx_ring = kcalloc(adapter->num_rx_queues,
252                                    sizeof(struct igb_ring), GFP_KERNEL);
253         if (!adapter->rx_ring) {
254                 kfree(adapter->tx_ring);
255                 return -ENOMEM;
256         }
257
258         adapter->rx_ring->buddy = adapter->tx_ring;
259
260         for (i = 0; i < adapter->num_tx_queues; i++) {
261                 struct igb_ring *ring = &(adapter->tx_ring[i]);
262                 ring->adapter = adapter;
263                 ring->queue_index = i;
264         }
265         for (i = 0; i < adapter->num_rx_queues; i++) {
266                 struct igb_ring *ring = &(adapter->rx_ring[i]);
267                 ring->adapter = adapter;
268                 ring->queue_index = i;
269                 ring->itr_register = E1000_ITR;
270
271                 /* set a default napi handler for each rx_ring */
272                 netif_napi_add(adapter->netdev, &ring->napi, igb_poll, 64);
273         }
274         return 0;
275 }
276
277 static void igb_free_queues(struct igb_adapter *adapter)
278 {
279         int i;
280
281         for (i = 0; i < adapter->num_rx_queues; i++)
282                 netif_napi_del(&adapter->rx_ring[i].napi);
283
284         kfree(adapter->tx_ring);
285         kfree(adapter->rx_ring);
286 }
287
288 #define IGB_N0_QUEUE -1
289 static void igb_assign_vector(struct igb_adapter *adapter, int rx_queue,
290                               int tx_queue, int msix_vector)
291 {
292         u32 msixbm = 0;
293         struct e1000_hw *hw = &adapter->hw;
294         u32 ivar, index;
295
296         switch (hw->mac.type) {
297         case e1000_82575:
298                 /* The 82575 assigns vectors using a bitmask, which matches the
299                    bitmask for the EICR/EIMS/EIMC registers.  To assign one
300                    or more queues to a vector, we write the appropriate bits
301                    into the MSIXBM register for that vector. */
302                 if (rx_queue > IGB_N0_QUEUE) {
303                         msixbm = E1000_EICR_RX_QUEUE0 << rx_queue;
304                         adapter->rx_ring[rx_queue].eims_value = msixbm;
305                 }
306                 if (tx_queue > IGB_N0_QUEUE) {
307                         msixbm |= E1000_EICR_TX_QUEUE0 << tx_queue;
308                         adapter->tx_ring[tx_queue].eims_value =
309                                   E1000_EICR_TX_QUEUE0 << tx_queue;
310                 }
311                 array_wr32(E1000_MSIXBM(0), msix_vector, msixbm);
312                 break;
313         case e1000_82576:
314                 /* Kawela uses a table-based method for assigning vectors.
315                    Each queue has a single entry in the table to which we write
316                    a vector number along with a "valid" bit.  Sadly, the layout
317                    of the table is somewhat counterintuitive. */
318                 if (rx_queue > IGB_N0_QUEUE) {
319                         index = (rx_queue & 0x7);
320                         ivar = array_rd32(E1000_IVAR0, index);
321                         if (rx_queue < 8) {
322                                 /* vector goes into low byte of register */
323                                 ivar = ivar & 0xFFFFFF00;
324                                 ivar |= msix_vector | E1000_IVAR_VALID;
325                         } else {
326                                 /* vector goes into third byte of register */
327                                 ivar = ivar & 0xFF00FFFF;
328                                 ivar |= (msix_vector | E1000_IVAR_VALID) << 16;
329                         }
330                         adapter->rx_ring[rx_queue].eims_value= 1 << msix_vector;
331                         array_wr32(E1000_IVAR0, index, ivar);
332                 }
333                 if (tx_queue > IGB_N0_QUEUE) {
334                         index = (tx_queue & 0x7);
335                         ivar = array_rd32(E1000_IVAR0, index);
336                         if (tx_queue < 8) {
337                                 /* vector goes into second byte of register */
338                                 ivar = ivar & 0xFFFF00FF;
339                                 ivar |= (msix_vector | E1000_IVAR_VALID) << 8;
340                         } else {
341                                 /* vector goes into high byte of register */
342                                 ivar = ivar & 0x00FFFFFF;
343                                 ivar |= (msix_vector | E1000_IVAR_VALID) << 24;
344                         }
345                         adapter->tx_ring[tx_queue].eims_value= 1 << msix_vector;
346                         array_wr32(E1000_IVAR0, index, ivar);
347                 }
348                 break;
349         default:
350                 BUG();
351                 break;
352         }
353 }
354
355 /**
356  * igb_configure_msix - Configure MSI-X hardware
357  *
358  * igb_configure_msix sets up the hardware to properly
359  * generate MSI-X interrupts.
360  **/
361 static void igb_configure_msix(struct igb_adapter *adapter)
362 {
363         u32 tmp;
364         int i, vector = 0;
365         struct e1000_hw *hw = &adapter->hw;
366
367         adapter->eims_enable_mask = 0;
368         if (hw->mac.type == e1000_82576)
369                 /* Turn on MSI-X capability first, or our settings
370                  * won't stick.  And it will take days to debug. */
371                 wr32(E1000_GPIE, E1000_GPIE_MSIX_MODE |
372                                    E1000_GPIE_PBA | E1000_GPIE_EIAME | 
373                                    E1000_GPIE_NSICR);
374
375         for (i = 0; i < adapter->num_tx_queues; i++) {
376                 struct igb_ring *tx_ring = &adapter->tx_ring[i];
377                 igb_assign_vector(adapter, IGB_N0_QUEUE, i, vector++);
378                 adapter->eims_enable_mask |= tx_ring->eims_value;
379                 if (tx_ring->itr_val)
380                         writel(tx_ring->itr_val,
381                                hw->hw_addr + tx_ring->itr_register);
382                 else
383                         writel(1, hw->hw_addr + tx_ring->itr_register);
384         }
385
386         for (i = 0; i < adapter->num_rx_queues; i++) {
387                 struct igb_ring *rx_ring = &adapter->rx_ring[i];
388                 rx_ring->buddy = 0;
389                 igb_assign_vector(adapter, i, IGB_N0_QUEUE, vector++);
390                 adapter->eims_enable_mask |= rx_ring->eims_value;
391                 if (rx_ring->itr_val)
392                         writel(rx_ring->itr_val,
393                                hw->hw_addr + rx_ring->itr_register);
394                 else
395                         writel(1, hw->hw_addr + rx_ring->itr_register);
396         }
397
398
399         /* set vector for other causes, i.e. link changes */
400         switch (hw->mac.type) {
401         case e1000_82575:
402                 array_wr32(E1000_MSIXBM(0), vector++,
403                                       E1000_EIMS_OTHER);
404
405                 tmp = rd32(E1000_CTRL_EXT);
406                 /* enable MSI-X PBA support*/
407                 tmp |= E1000_CTRL_EXT_PBA_CLR;
408
409                 /* Auto-Mask interrupts upon ICR read. */
410                 tmp |= E1000_CTRL_EXT_EIAME;
411                 tmp |= E1000_CTRL_EXT_IRCA;
412
413                 wr32(E1000_CTRL_EXT, tmp);
414                 adapter->eims_enable_mask |= E1000_EIMS_OTHER;
415                 adapter->eims_other = E1000_EIMS_OTHER;
416
417                 break;
418
419         case e1000_82576:
420                 tmp = (vector++ | E1000_IVAR_VALID) << 8;
421                 wr32(E1000_IVAR_MISC, tmp);
422
423                 adapter->eims_enable_mask = (1 << (vector)) - 1;
424                 adapter->eims_other = 1 << (vector - 1);
425                 break;
426         default:
427                 /* do nothing, since nothing else supports MSI-X */
428                 break;
429         } /* switch (hw->mac.type) */
430         wrfl();
431 }
432
433 /**
434  * igb_request_msix - Initialize MSI-X interrupts
435  *
436  * igb_request_msix allocates MSI-X vectors and requests interrupts from the
437  * kernel.
438  **/
439 static int igb_request_msix(struct igb_adapter *adapter)
440 {
441         struct net_device *netdev = adapter->netdev;
442         int i, err = 0, vector = 0;
443
444         vector = 0;
445
446         for (i = 0; i < adapter->num_tx_queues; i++) {
447                 struct igb_ring *ring = &(adapter->tx_ring[i]);
448                 sprintf(ring->name, "%s-tx%d", netdev->name, i);
449                 err = request_irq(adapter->msix_entries[vector].vector,
450                                   &igb_msix_tx, 0, ring->name,
451                                   &(adapter->tx_ring[i]));
452                 if (err)
453                         goto out;
454                 ring->itr_register = E1000_EITR(0) + (vector << 2);
455                 ring->itr_val = 976; /* ~4000 ints/sec */
456                 vector++;
457         }
458         for (i = 0; i < adapter->num_rx_queues; i++) {
459                 struct igb_ring *ring = &(adapter->rx_ring[i]);
460                 if (strlen(netdev->name) < (IFNAMSIZ - 5))
461                         sprintf(ring->name, "%s-rx%d", netdev->name, i);
462                 else
463                         memcpy(ring->name, netdev->name, IFNAMSIZ);
464                 err = request_irq(adapter->msix_entries[vector].vector,
465                                   &igb_msix_rx, 0, ring->name,
466                                   &(adapter->rx_ring[i]));
467                 if (err)
468                         goto out;
469                 ring->itr_register = E1000_EITR(0) + (vector << 2);
470                 ring->itr_val = adapter->itr;
471                 /* overwrite the poll routine for MSIX, we've already done
472                  * netif_napi_add */
473                 ring->napi.poll = &igb_clean_rx_ring_msix;
474                 vector++;
475         }
476
477         err = request_irq(adapter->msix_entries[vector].vector,
478                           &igb_msix_other, 0, netdev->name, netdev);
479         if (err)
480                 goto out;
481
482         igb_configure_msix(adapter);
483         return 0;
484 out:
485         return err;
486 }
487
488 static void igb_reset_interrupt_capability(struct igb_adapter *adapter)
489 {
490         if (adapter->msix_entries) {
491                 pci_disable_msix(adapter->pdev);
492                 kfree(adapter->msix_entries);
493                 adapter->msix_entries = NULL;
494         } else if (adapter->flags & IGB_FLAG_HAS_MSI)
495                 pci_disable_msi(adapter->pdev);
496         return;
497 }
498
499
500 /**
501  * igb_set_interrupt_capability - set MSI or MSI-X if supported
502  *
503  * Attempt to configure interrupts using the best available
504  * capabilities of the hardware and kernel.
505  **/
506 static void igb_set_interrupt_capability(struct igb_adapter *adapter)
507 {
508         int err;
509         int numvecs, i;
510
511         numvecs = adapter->num_tx_queues + adapter->num_rx_queues + 1;
512         adapter->msix_entries = kcalloc(numvecs, sizeof(struct msix_entry),
513                                         GFP_KERNEL);
514         if (!adapter->msix_entries)
515                 goto msi_only;
516
517         for (i = 0; i < numvecs; i++)
518                 adapter->msix_entries[i].entry = i;
519
520         err = pci_enable_msix(adapter->pdev,
521                               adapter->msix_entries,
522                               numvecs);
523         if (err == 0)
524                 return;
525
526         igb_reset_interrupt_capability(adapter);
527
528         /* If we can't do MSI-X, try MSI */
529 msi_only:
530         adapter->num_rx_queues = 1;
531         adapter->num_tx_queues = 1;
532         if (!pci_enable_msi(adapter->pdev))
533                 adapter->flags |= IGB_FLAG_HAS_MSI;
534
535 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
536         /* Notify the stack of the (possibly) reduced Tx Queue count. */
537         adapter->netdev->egress_subqueue_count = adapter->num_tx_queues;
538 #endif
539         return;
540 }
541
542 /**
543  * igb_request_irq - initialize interrupts
544  *
545  * Attempts to configure interrupts using the best available
546  * capabilities of the hardware and kernel.
547  **/
548 static int igb_request_irq(struct igb_adapter *adapter)
549 {
550         struct net_device *netdev = adapter->netdev;
551         struct e1000_hw *hw = &adapter->hw;
552         int err = 0;
553
554         if (adapter->msix_entries) {
555                 err = igb_request_msix(adapter);
556                 if (!err)
557                         goto request_done;
558                 /* fall back to MSI */
559                 igb_reset_interrupt_capability(adapter);
560                 if (!pci_enable_msi(adapter->pdev))
561                         adapter->flags |= IGB_FLAG_HAS_MSI;
562                 igb_free_all_tx_resources(adapter);
563                 igb_free_all_rx_resources(adapter);
564                 adapter->num_rx_queues = 1;
565                 igb_alloc_queues(adapter);
566         } else {
567                 switch (hw->mac.type) {
568                 case e1000_82575:
569                         wr32(E1000_MSIXBM(0),
570                              (E1000_EICR_RX_QUEUE0 | E1000_EIMS_OTHER));
571                         break;
572                 case e1000_82576:
573                         wr32(E1000_IVAR0, E1000_IVAR_VALID);
574                         break;
575                 default:
576                         break;
577                 }
578         }
579
580         if (adapter->flags & IGB_FLAG_HAS_MSI) {
581                 err = request_irq(adapter->pdev->irq, &igb_intr_msi, 0,
582                                   netdev->name, netdev);
583                 if (!err)
584                         goto request_done;
585                 /* fall back to legacy interrupts */
586                 igb_reset_interrupt_capability(adapter);
587                 adapter->flags &= ~IGB_FLAG_HAS_MSI;
588         }
589
590         err = request_irq(adapter->pdev->irq, &igb_intr, IRQF_SHARED,
591                           netdev->name, netdev);
592
593         if (err)
594                 dev_err(&adapter->pdev->dev, "Error %d getting interrupt\n",
595                         err);
596
597 request_done:
598         return err;
599 }
600
601 static void igb_free_irq(struct igb_adapter *adapter)
602 {
603         struct net_device *netdev = adapter->netdev;
604
605         if (adapter->msix_entries) {
606                 int vector = 0, i;
607
608                 for (i = 0; i < adapter->num_tx_queues; i++)
609                         free_irq(adapter->msix_entries[vector++].vector,
610                                 &(adapter->tx_ring[i]));
611                 for (i = 0; i < adapter->num_rx_queues; i++)
612                         free_irq(adapter->msix_entries[vector++].vector,
613                                 &(adapter->rx_ring[i]));
614
615                 free_irq(adapter->msix_entries[vector++].vector, netdev);
616                 return;
617         }
618
619         free_irq(adapter->pdev->irq, netdev);
620 }
621
622 /**
623  * igb_irq_disable - Mask off interrupt generation on the NIC
624  * @adapter: board private structure
625  **/
626 static void igb_irq_disable(struct igb_adapter *adapter)
627 {
628         struct e1000_hw *hw = &adapter->hw;
629
630         if (adapter->msix_entries) {
631                 wr32(E1000_EIAM, 0);
632                 wr32(E1000_EIMC, ~0);
633                 wr32(E1000_EIAC, 0);
634         }
635
636         wr32(E1000_IAM, 0);
637         wr32(E1000_IMC, ~0);
638         wrfl();
639         synchronize_irq(adapter->pdev->irq);
640 }
641
642 /**
643  * igb_irq_enable - Enable default interrupt generation settings
644  * @adapter: board private structure
645  **/
646 static void igb_irq_enable(struct igb_adapter *adapter)
647 {
648         struct e1000_hw *hw = &adapter->hw;
649
650         if (adapter->msix_entries) {
651                 wr32(E1000_EIAC, adapter->eims_enable_mask);
652                 wr32(E1000_EIAM, adapter->eims_enable_mask);
653                 wr32(E1000_EIMS, adapter->eims_enable_mask);
654                 wr32(E1000_IMS, E1000_IMS_LSC);
655         } else {
656                 wr32(E1000_IMS, IMS_ENABLE_MASK);
657                 wr32(E1000_IAM, IMS_ENABLE_MASK);
658         }
659 }
660
661 static void igb_update_mng_vlan(struct igb_adapter *adapter)
662 {
663         struct net_device *netdev = adapter->netdev;
664         u16 vid = adapter->hw.mng_cookie.vlan_id;
665         u16 old_vid = adapter->mng_vlan_id;
666         if (adapter->vlgrp) {
667                 if (!vlan_group_get_device(adapter->vlgrp, vid)) {
668                         if (adapter->hw.mng_cookie.status &
669                                 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
670                                 igb_vlan_rx_add_vid(netdev, vid);
671                                 adapter->mng_vlan_id = vid;
672                         } else
673                                 adapter->mng_vlan_id = IGB_MNG_VLAN_NONE;
674
675                         if ((old_vid != (u16)IGB_MNG_VLAN_NONE) &&
676                                         (vid != old_vid) &&
677                             !vlan_group_get_device(adapter->vlgrp, old_vid))
678                                 igb_vlan_rx_kill_vid(netdev, old_vid);
679                 } else
680                         adapter->mng_vlan_id = vid;
681         }
682 }
683
684 /**
685  * igb_release_hw_control - release control of the h/w to f/w
686  * @adapter: address of board private structure
687  *
688  * igb_release_hw_control resets CTRL_EXT:DRV_LOAD bit.
689  * For ASF and Pass Through versions of f/w this means that the
690  * driver is no longer loaded.
691  *
692  **/
693 static void igb_release_hw_control(struct igb_adapter *adapter)
694 {
695         struct e1000_hw *hw = &adapter->hw;
696         u32 ctrl_ext;
697
698         /* Let firmware take over control of h/w */
699         ctrl_ext = rd32(E1000_CTRL_EXT);
700         wr32(E1000_CTRL_EXT,
701                         ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
702 }
703
704
705 /**
706  * igb_get_hw_control - get control of the h/w from f/w
707  * @adapter: address of board private structure
708  *
709  * igb_get_hw_control sets CTRL_EXT:DRV_LOAD bit.
710  * For ASF and Pass Through versions of f/w this means that
711  * the driver is loaded.
712  *
713  **/
714 static void igb_get_hw_control(struct igb_adapter *adapter)
715 {
716         struct e1000_hw *hw = &adapter->hw;
717         u32 ctrl_ext;
718
719         /* Let firmware know the driver has taken over */
720         ctrl_ext = rd32(E1000_CTRL_EXT);
721         wr32(E1000_CTRL_EXT,
722                         ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
723 }
724
725 static void igb_init_manageability(struct igb_adapter *adapter)
726 {
727         struct e1000_hw *hw = &adapter->hw;
728
729         if (adapter->en_mng_pt) {
730                 u32 manc2h = rd32(E1000_MANC2H);
731                 u32 manc = rd32(E1000_MANC);
732
733                 /* enable receiving management packets to the host */
734                 /* this will probably generate destination unreachable messages
735                  * from the host OS, but the packets will be handled on SMBUS */
736                 manc |= E1000_MANC_EN_MNG2HOST;
737 #define E1000_MNG2HOST_PORT_623 (1 << 5)
738 #define E1000_MNG2HOST_PORT_664 (1 << 6)
739                 manc2h |= E1000_MNG2HOST_PORT_623;
740                 manc2h |= E1000_MNG2HOST_PORT_664;
741                 wr32(E1000_MANC2H, manc2h);
742
743                 wr32(E1000_MANC, manc);
744         }
745 }
746
747 /**
748  * igb_configure - configure the hardware for RX and TX
749  * @adapter: private board structure
750  **/
751 static void igb_configure(struct igb_adapter *adapter)
752 {
753         struct net_device *netdev = adapter->netdev;
754         int i;
755
756         igb_get_hw_control(adapter);
757         igb_set_multi(netdev);
758
759         igb_restore_vlan(adapter);
760         igb_init_manageability(adapter);
761
762         igb_configure_tx(adapter);
763         igb_setup_rctl(adapter);
764         igb_configure_rx(adapter);
765
766         igb_rx_fifo_flush_82575(&adapter->hw);
767
768         /* call IGB_DESC_UNUSED which always leaves
769          * at least 1 descriptor unused to make sure
770          * next_to_use != next_to_clean */
771         for (i = 0; i < adapter->num_rx_queues; i++) {
772                 struct igb_ring *ring = &adapter->rx_ring[i];
773                 igb_alloc_rx_buffers_adv(ring, IGB_DESC_UNUSED(ring));
774         }
775
776
777         adapter->tx_queue_len = netdev->tx_queue_len;
778 }
779
780
781 /**
782  * igb_up - Open the interface and prepare it to handle traffic
783  * @adapter: board private structure
784  **/
785
786 int igb_up(struct igb_adapter *adapter)
787 {
788         struct e1000_hw *hw = &adapter->hw;
789         int i;
790
791         /* hardware has been reset, we need to reload some things */
792         igb_configure(adapter);
793
794         clear_bit(__IGB_DOWN, &adapter->state);
795
796         for (i = 0; i < adapter->num_rx_queues; i++)
797                 napi_enable(&adapter->rx_ring[i].napi);
798         if (adapter->msix_entries)
799                 igb_configure_msix(adapter);
800
801         /* Clear any pending interrupts. */
802         rd32(E1000_ICR);
803         igb_irq_enable(adapter);
804
805         /* Fire a link change interrupt to start the watchdog. */
806         wr32(E1000_ICS, E1000_ICS_LSC);
807         return 0;
808 }
809
810 void igb_down(struct igb_adapter *adapter)
811 {
812         struct e1000_hw *hw = &adapter->hw;
813         struct net_device *netdev = adapter->netdev;
814         u32 tctl, rctl;
815         int i;
816
817         /* signal that we're down so the interrupt handler does not
818          * reschedule our watchdog timer */
819         set_bit(__IGB_DOWN, &adapter->state);
820
821         /* disable receives in the hardware */
822         rctl = rd32(E1000_RCTL);
823         wr32(E1000_RCTL, rctl & ~E1000_RCTL_EN);
824         /* flush and sleep below */
825
826         netif_stop_queue(netdev);
827 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
828         for (i = 0; i < adapter->num_tx_queues; i++)
829                 netif_stop_subqueue(netdev, i);
830 #endif
831
832         /* disable transmits in the hardware */
833         tctl = rd32(E1000_TCTL);
834         tctl &= ~E1000_TCTL_EN;
835         wr32(E1000_TCTL, tctl);
836         /* flush both disables and wait for them to finish */
837         wrfl();
838         msleep(10);
839
840         for (i = 0; i < adapter->num_rx_queues; i++)
841                 napi_disable(&adapter->rx_ring[i].napi);
842
843         igb_irq_disable(adapter);
844
845         del_timer_sync(&adapter->watchdog_timer);
846         del_timer_sync(&adapter->phy_info_timer);
847
848         netdev->tx_queue_len = adapter->tx_queue_len;
849         netif_carrier_off(netdev);
850         adapter->link_speed = 0;
851         adapter->link_duplex = 0;
852
853         if (!pci_channel_offline(adapter->pdev))
854                 igb_reset(adapter);
855         igb_clean_all_tx_rings(adapter);
856         igb_clean_all_rx_rings(adapter);
857 }
858
859 void igb_reinit_locked(struct igb_adapter *adapter)
860 {
861         WARN_ON(in_interrupt());
862         while (test_and_set_bit(__IGB_RESETTING, &adapter->state))
863                 msleep(1);
864         igb_down(adapter);
865         igb_up(adapter);
866         clear_bit(__IGB_RESETTING, &adapter->state);
867 }
868
869 void igb_reset(struct igb_adapter *adapter)
870 {
871         struct e1000_hw *hw = &adapter->hw;
872         struct e1000_mac_info *mac = &hw->mac;
873         struct e1000_fc_info *fc = &hw->fc;
874         u32 pba = 0, tx_space, min_tx_space, min_rx_space;
875         u16 hwm;
876
877         /* Repartition Pba for greater than 9k mtu
878          * To take effect CTRL.RST is required.
879          */
880         if (mac->type != e1000_82576) {
881         pba = E1000_PBA_34K;
882         }
883         else {
884                 pba = E1000_PBA_64K;
885         }
886
887         if ((adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) &&
888             (mac->type < e1000_82576)) {
889                 /* adjust PBA for jumbo frames */
890                 wr32(E1000_PBA, pba);
891
892                 /* To maintain wire speed transmits, the Tx FIFO should be
893                  * large enough to accommodate two full transmit packets,
894                  * rounded up to the next 1KB and expressed in KB.  Likewise,
895                  * the Rx FIFO should be large enough to accommodate at least
896                  * one full receive packet and is similarly rounded up and
897                  * expressed in KB. */
898                 pba = rd32(E1000_PBA);
899                 /* upper 16 bits has Tx packet buffer allocation size in KB */
900                 tx_space = pba >> 16;
901                 /* lower 16 bits has Rx packet buffer allocation size in KB */
902                 pba &= 0xffff;
903                 /* the tx fifo also stores 16 bytes of information about the tx
904                  * but don't include ethernet FCS because hardware appends it */
905                 min_tx_space = (adapter->max_frame_size +
906                                 sizeof(struct e1000_tx_desc) -
907                                 ETH_FCS_LEN) * 2;
908                 min_tx_space = ALIGN(min_tx_space, 1024);
909                 min_tx_space >>= 10;
910                 /* software strips receive CRC, so leave room for it */
911                 min_rx_space = adapter->max_frame_size;
912                 min_rx_space = ALIGN(min_rx_space, 1024);
913                 min_rx_space >>= 10;
914
915                 /* If current Tx allocation is less than the min Tx FIFO size,
916                  * and the min Tx FIFO size is less than the current Rx FIFO
917                  * allocation, take space away from current Rx allocation */
918                 if (tx_space < min_tx_space &&
919                     ((min_tx_space - tx_space) < pba)) {
920                         pba = pba - (min_tx_space - tx_space);
921
922                         /* if short on rx space, rx wins and must trump tx
923                          * adjustment */
924                         if (pba < min_rx_space)
925                                 pba = min_rx_space;
926                 }
927                 wr32(E1000_PBA, pba);
928         }
929
930         /* flow control settings */
931         /* The high water mark must be low enough to fit one full frame
932          * (or the size used for early receive) above it in the Rx FIFO.
933          * Set it to the lower of:
934          * - 90% of the Rx FIFO size, or
935          * - the full Rx FIFO size minus one full frame */
936         hwm = min(((pba << 10) * 9 / 10),
937                         ((pba << 10) - 2 * adapter->max_frame_size));
938
939         if (mac->type < e1000_82576) {
940                 fc->high_water = hwm & 0xFFF8;  /* 8-byte granularity */
941                 fc->low_water = fc->high_water - 8;
942         } else {
943                 fc->high_water = hwm & 0xFFF0;  /* 16-byte granularity */
944                 fc->low_water = fc->high_water - 16;
945         }
946         fc->pause_time = 0xFFFF;
947         fc->send_xon = 1;
948         fc->type = fc->original_type;
949
950         /* Allow time for pending master requests to run */
951         adapter->hw.mac.ops.reset_hw(&adapter->hw);
952         wr32(E1000_WUC, 0);
953
954         if (adapter->hw.mac.ops.init_hw(&adapter->hw))
955                 dev_err(&adapter->pdev->dev, "Hardware Error\n");
956
957         igb_update_mng_vlan(adapter);
958
959         /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
960         wr32(E1000_VET, ETHERNET_IEEE_VLAN_TYPE);
961
962         igb_reset_adaptive(&adapter->hw);
963         if (adapter->hw.phy.ops.get_phy_info)
964                 adapter->hw.phy.ops.get_phy_info(&adapter->hw);
965 }
966
967 /**
968  * igb_is_need_ioport - determine if an adapter needs ioport resources or not
969  * @pdev: PCI device information struct
970  *
971  * Returns true if an adapter needs ioport resources
972  **/
973 static int igb_is_need_ioport(struct pci_dev *pdev)
974 {
975         switch (pdev->device) {
976         /* Currently there are no adapters that need ioport resources */
977         default:
978                 return false;
979         }
980 }
981
982 /**
983  * igb_probe - Device Initialization Routine
984  * @pdev: PCI device information struct
985  * @ent: entry in igb_pci_tbl
986  *
987  * Returns 0 on success, negative on failure
988  *
989  * igb_probe initializes an adapter identified by a pci_dev structure.
990  * The OS initialization, configuring of the adapter private structure,
991  * and a hardware reset occur.
992  **/
993 static int __devinit igb_probe(struct pci_dev *pdev,
994                                const struct pci_device_id *ent)
995 {
996         struct net_device *netdev;
997         struct igb_adapter *adapter;
998         struct e1000_hw *hw;
999         const struct e1000_info *ei = igb_info_tbl[ent->driver_data];
1000         unsigned long mmio_start, mmio_len;
1001         int i, err, pci_using_dac;
1002         u16 eeprom_data = 0;
1003         u16 eeprom_apme_mask = IGB_EEPROM_APME;
1004         u32 part_num;
1005         int bars, need_ioport;
1006
1007         /* do not allocate ioport bars when not needed */
1008         need_ioport = igb_is_need_ioport(pdev);
1009         if (need_ioport) {
1010                 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
1011                 err = pci_enable_device(pdev);
1012         } else {
1013                 bars = pci_select_bars(pdev, IORESOURCE_MEM);
1014                 err = pci_enable_device_mem(pdev);
1015         }
1016         if (err)
1017                 return err;
1018
1019         pci_using_dac = 0;
1020         err = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
1021         if (!err) {
1022                 err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
1023                 if (!err)
1024                         pci_using_dac = 1;
1025         } else {
1026                 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1027                 if (err) {
1028                         err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
1029                         if (err) {
1030                                 dev_err(&pdev->dev, "No usable DMA "
1031                                         "configuration, aborting\n");
1032                                 goto err_dma;
1033                         }
1034                 }
1035         }
1036
1037         err = pci_request_selected_regions(pdev, bars, igb_driver_name);
1038         if (err)
1039                 goto err_pci_reg;
1040
1041         pci_set_master(pdev);
1042         pci_save_state(pdev);
1043
1044         err = -ENOMEM;
1045 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
1046         netdev = alloc_etherdev_mq(sizeof(struct igb_adapter), IGB_MAX_TX_QUEUES);
1047 #else
1048         netdev = alloc_etherdev(sizeof(struct igb_adapter));
1049 #endif /* CONFIG_NETDEVICES_MULTIQUEUE */
1050         if (!netdev)
1051                 goto err_alloc_etherdev;
1052
1053         SET_NETDEV_DEV(netdev, &pdev->dev);
1054
1055         pci_set_drvdata(pdev, netdev);
1056         adapter = netdev_priv(netdev);
1057         adapter->netdev = netdev;
1058         adapter->pdev = pdev;
1059         hw = &adapter->hw;
1060         hw->back = adapter;
1061         adapter->msg_enable = NETIF_MSG_DRV | NETIF_MSG_PROBE;
1062         adapter->bars = bars;
1063         adapter->need_ioport = need_ioport;
1064
1065         mmio_start = pci_resource_start(pdev, 0);
1066         mmio_len = pci_resource_len(pdev, 0);
1067
1068         err = -EIO;
1069         adapter->hw.hw_addr = ioremap(mmio_start, mmio_len);
1070         if (!adapter->hw.hw_addr)
1071                 goto err_ioremap;
1072
1073         netdev->open = &igb_open;
1074         netdev->stop = &igb_close;
1075         netdev->get_stats = &igb_get_stats;
1076         netdev->set_multicast_list = &igb_set_multi;
1077         netdev->set_mac_address = &igb_set_mac;
1078         netdev->change_mtu = &igb_change_mtu;
1079         netdev->do_ioctl = &igb_ioctl;
1080         igb_set_ethtool_ops(netdev);
1081         netdev->tx_timeout = &igb_tx_timeout;
1082         netdev->watchdog_timeo = 5 * HZ;
1083         netdev->vlan_rx_register = igb_vlan_rx_register;
1084         netdev->vlan_rx_add_vid = igb_vlan_rx_add_vid;
1085         netdev->vlan_rx_kill_vid = igb_vlan_rx_kill_vid;
1086 #ifdef CONFIG_NET_POLL_CONTROLLER
1087         netdev->poll_controller = igb_netpoll;
1088 #endif
1089         netdev->hard_start_xmit = &igb_xmit_frame_adv;
1090
1091         strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
1092
1093         netdev->mem_start = mmio_start;
1094         netdev->mem_end = mmio_start + mmio_len;
1095
1096         /* PCI config space info */
1097         hw->vendor_id = pdev->vendor;
1098         hw->device_id = pdev->device;
1099         hw->revision_id = pdev->revision;
1100         hw->subsystem_vendor_id = pdev->subsystem_vendor;
1101         hw->subsystem_device_id = pdev->subsystem_device;
1102
1103         /* setup the private structure */
1104         hw->back = adapter;
1105         /* Copy the default MAC, PHY and NVM function pointers */
1106         memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops));
1107         memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops));
1108         memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops));
1109         /* Initialize skew-specific constants */
1110         err = ei->get_invariants(hw);
1111         if (err)
1112                 goto err_hw_init;
1113
1114         err = igb_sw_init(adapter);
1115         if (err)
1116                 goto err_sw_init;
1117
1118         igb_get_bus_info_pcie(hw);
1119
1120         /* set flags */
1121         switch (hw->mac.type) {
1122         case e1000_82576:
1123         case e1000_82575:
1124                 adapter->flags |= IGB_FLAG_HAS_DCA;
1125                 adapter->flags |= IGB_FLAG_NEED_CTX_IDX;
1126                 break;
1127         default:
1128                 break;
1129         }
1130
1131         hw->phy.autoneg_wait_to_complete = false;
1132         hw->mac.adaptive_ifs = true;
1133
1134         /* Copper options */
1135         if (hw->phy.media_type == e1000_media_type_copper) {
1136                 hw->phy.mdix = AUTO_ALL_MODES;
1137                 hw->phy.disable_polarity_correction = false;
1138                 hw->phy.ms_type = e1000_ms_hw_default;
1139         }
1140
1141         if (igb_check_reset_block(hw))
1142                 dev_info(&pdev->dev,
1143                         "PHY reset is blocked due to SOL/IDER session.\n");
1144
1145         netdev->features = NETIF_F_SG |
1146                            NETIF_F_HW_CSUM |
1147                            NETIF_F_HW_VLAN_TX |
1148                            NETIF_F_HW_VLAN_RX |
1149                            NETIF_F_HW_VLAN_FILTER;
1150
1151         netdev->features |= NETIF_F_TSO;
1152         netdev->features |= NETIF_F_TSO6;
1153
1154 #ifdef CONFIG_IGB_LRO
1155         netdev->features |= NETIF_F_LRO;
1156 #endif
1157
1158         netdev->vlan_features |= NETIF_F_TSO;
1159         netdev->vlan_features |= NETIF_F_TSO6;
1160         netdev->vlan_features |= NETIF_F_HW_CSUM;
1161         netdev->vlan_features |= NETIF_F_SG;
1162
1163         if (pci_using_dac)
1164                 netdev->features |= NETIF_F_HIGHDMA;
1165
1166 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
1167         netdev->features |= NETIF_F_MULTI_QUEUE;
1168 #endif
1169
1170         netdev->features |= NETIF_F_LLTX;
1171         adapter->en_mng_pt = igb_enable_mng_pass_thru(&adapter->hw);
1172
1173         /* before reading the NVM, reset the controller to put the device in a
1174          * known good starting state */
1175         hw->mac.ops.reset_hw(hw);
1176
1177         /* make sure the NVM is good */
1178         if (igb_validate_nvm_checksum(hw) < 0) {
1179                 dev_err(&pdev->dev, "The NVM Checksum Is Not Valid\n");
1180                 err = -EIO;
1181                 goto err_eeprom;
1182         }
1183
1184         /* copy the MAC address out of the NVM */
1185         if (hw->mac.ops.read_mac_addr(hw))
1186                 dev_err(&pdev->dev, "NVM Read Error\n");
1187
1188         memcpy(netdev->dev_addr, hw->mac.addr, netdev->addr_len);
1189         memcpy(netdev->perm_addr, hw->mac.addr, netdev->addr_len);
1190
1191         if (!is_valid_ether_addr(netdev->perm_addr)) {
1192                 dev_err(&pdev->dev, "Invalid MAC Address\n");
1193                 err = -EIO;
1194                 goto err_eeprom;
1195         }
1196
1197         init_timer(&adapter->watchdog_timer);
1198         adapter->watchdog_timer.function = &igb_watchdog;
1199         adapter->watchdog_timer.data = (unsigned long) adapter;
1200
1201         init_timer(&adapter->phy_info_timer);
1202         adapter->phy_info_timer.function = &igb_update_phy_info;
1203         adapter->phy_info_timer.data = (unsigned long) adapter;
1204
1205         INIT_WORK(&adapter->reset_task, igb_reset_task);
1206         INIT_WORK(&adapter->watchdog_task, igb_watchdog_task);
1207
1208         /* Initialize link & ring properties that are user-changeable */
1209         adapter->tx_ring->count = 256;
1210         for (i = 0; i < adapter->num_tx_queues; i++)
1211                 adapter->tx_ring[i].count = adapter->tx_ring->count;
1212         adapter->rx_ring->count = 256;
1213         for (i = 0; i < adapter->num_rx_queues; i++)
1214                 adapter->rx_ring[i].count = adapter->rx_ring->count;
1215
1216         adapter->fc_autoneg = true;
1217         hw->mac.autoneg = true;
1218         hw->phy.autoneg_advertised = 0x2f;
1219
1220         hw->fc.original_type = e1000_fc_default;
1221         hw->fc.type = e1000_fc_default;
1222
1223         adapter->itr_setting = 3;
1224         adapter->itr = IGB_START_ITR;
1225
1226         igb_validate_mdi_setting(hw);
1227
1228         adapter->rx_csum = 1;
1229
1230         /* Initial Wake on LAN setting If APM wake is enabled in the EEPROM,
1231          * enable the ACPI Magic Packet filter
1232          */
1233
1234         if (hw->bus.func == 0 ||
1235             hw->device_id == E1000_DEV_ID_82575EB_COPPER)
1236                 hw->nvm.ops.read_nvm(hw, NVM_INIT_CONTROL3_PORT_A, 1,
1237                                      &eeprom_data);
1238
1239         if (eeprom_data & eeprom_apme_mask)
1240                 adapter->eeprom_wol |= E1000_WUFC_MAG;
1241
1242         /* now that we have the eeprom settings, apply the special cases where
1243          * the eeprom may be wrong or the board simply won't support wake on
1244          * lan on a particular port */
1245         switch (pdev->device) {
1246         case E1000_DEV_ID_82575GB_QUAD_COPPER:
1247                 adapter->eeprom_wol = 0;
1248                 break;
1249         case E1000_DEV_ID_82575EB_FIBER_SERDES:
1250         case E1000_DEV_ID_82576_FIBER:
1251         case E1000_DEV_ID_82576_SERDES:
1252                 /* Wake events only supported on port A for dual fiber
1253                  * regardless of eeprom setting */
1254                 if (rd32(E1000_STATUS) & E1000_STATUS_FUNC_1)
1255                         adapter->eeprom_wol = 0;
1256                 break;
1257         case E1000_DEV_ID_82576_QUAD_COPPER:
1258                 /* if quad port adapter, disable WoL on all but port A */
1259                 if (global_quad_port_a != 0)
1260                         adapter->eeprom_wol = 0;
1261                 else
1262                         adapter->flags |= IGB_FLAG_QUAD_PORT_A;
1263                 /* Reset for multiple quad port adapters */
1264                 if (++global_quad_port_a == 4)
1265                         global_quad_port_a = 0;
1266                 break;
1267         }
1268
1269         /* initialize the wol settings based on the eeprom settings */
1270         adapter->wol = adapter->eeprom_wol;
1271
1272         /* reset the hardware with the new settings */
1273         igb_reset(adapter);
1274
1275         /* let the f/w know that the h/w is now under the control of the
1276          * driver. */
1277         igb_get_hw_control(adapter);
1278
1279         /* tell the stack to leave us alone until igb_open() is called */
1280         netif_carrier_off(netdev);
1281         netif_stop_queue(netdev);
1282 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
1283         for (i = 0; i < adapter->num_tx_queues; i++)
1284                 netif_stop_subqueue(netdev, i);
1285 #endif
1286
1287         strcpy(netdev->name, "eth%d");
1288         err = register_netdev(netdev);
1289         if (err)
1290                 goto err_register;
1291
1292 #ifdef CONFIG_DCA
1293         if ((adapter->flags & IGB_FLAG_HAS_DCA) &&
1294             (dca_add_requester(&pdev->dev) == 0)) {
1295                 adapter->flags |= IGB_FLAG_DCA_ENABLED;
1296                 dev_info(&pdev->dev, "DCA enabled\n");
1297                 /* Always use CB2 mode, difference is masked
1298                  * in the CB driver. */
1299                 wr32(E1000_DCA_CTRL, 2);
1300                 igb_setup_dca(adapter);
1301         }
1302 #endif
1303
1304         dev_info(&pdev->dev, "Intel(R) Gigabit Ethernet Network Connection\n");
1305         /* print bus type/speed/width info */
1306         dev_info(&pdev->dev,
1307                  "%s: (PCIe:%s:%s) %02x:%02x:%02x:%02x:%02x:%02x\n",
1308                  netdev->name,
1309                  ((hw->bus.speed == e1000_bus_speed_2500)
1310                   ? "2.5Gb/s" : "unknown"),
1311                  ((hw->bus.width == e1000_bus_width_pcie_x4)
1312                   ? "Width x4" : (hw->bus.width == e1000_bus_width_pcie_x1)
1313                   ? "Width x1" : "unknown"),
1314                  netdev->dev_addr[0], netdev->dev_addr[1], netdev->dev_addr[2],
1315                  netdev->dev_addr[3], netdev->dev_addr[4], netdev->dev_addr[5]);
1316
1317         igb_read_part_num(hw, &part_num);
1318         dev_info(&pdev->dev, "%s: PBA No: %06x-%03x\n", netdev->name,
1319                 (part_num >> 8), (part_num & 0xff));
1320
1321         dev_info(&pdev->dev,
1322                 "Using %s interrupts. %d rx queue(s), %d tx queue(s)\n",
1323                 adapter->msix_entries ? "MSI-X" :
1324                 (adapter->flags & IGB_FLAG_HAS_MSI) ? "MSI" : "legacy",
1325                 adapter->num_rx_queues, adapter->num_tx_queues);
1326
1327         return 0;
1328
1329 err_register:
1330         igb_release_hw_control(adapter);
1331 err_eeprom:
1332         if (!igb_check_reset_block(hw))
1333                 hw->phy.ops.reset_phy(hw);
1334
1335         if (hw->flash_address)
1336                 iounmap(hw->flash_address);
1337
1338         igb_remove_device(hw);
1339         igb_free_queues(adapter);
1340 err_sw_init:
1341 err_hw_init:
1342         iounmap(hw->hw_addr);
1343 err_ioremap:
1344         free_netdev(netdev);
1345 err_alloc_etherdev:
1346         pci_release_selected_regions(pdev, bars);
1347 err_pci_reg:
1348 err_dma:
1349         pci_disable_device(pdev);
1350         return err;
1351 }
1352
1353 /**
1354  * igb_remove - Device Removal Routine
1355  * @pdev: PCI device information struct
1356  *
1357  * igb_remove is called by the PCI subsystem to alert the driver
1358  * that it should release a PCI device.  The could be caused by a
1359  * Hot-Plug event, or because the driver is going to be removed from
1360  * memory.
1361  **/
1362 static void __devexit igb_remove(struct pci_dev *pdev)
1363 {
1364         struct net_device *netdev = pci_get_drvdata(pdev);
1365         struct igb_adapter *adapter = netdev_priv(netdev);
1366 #ifdef CONFIG_DCA
1367         struct e1000_hw *hw = &adapter->hw;
1368 #endif
1369
1370         /* flush_scheduled work may reschedule our watchdog task, so
1371          * explicitly disable watchdog tasks from being rescheduled  */
1372         set_bit(__IGB_DOWN, &adapter->state);
1373         del_timer_sync(&adapter->watchdog_timer);
1374         del_timer_sync(&adapter->phy_info_timer);
1375
1376         flush_scheduled_work();
1377
1378 #ifdef CONFIG_DCA
1379         if (adapter->flags & IGB_FLAG_DCA_ENABLED) {
1380                 dev_info(&pdev->dev, "DCA disabled\n");
1381                 dca_remove_requester(&pdev->dev);
1382                 adapter->flags &= ~IGB_FLAG_DCA_ENABLED;
1383                 wr32(E1000_DCA_CTRL, 1);
1384         }
1385 #endif
1386
1387         /* Release control of h/w to f/w.  If f/w is AMT enabled, this
1388          * would have already happened in close and is redundant. */
1389         igb_release_hw_control(adapter);
1390
1391         unregister_netdev(netdev);
1392
1393         if (!igb_check_reset_block(&adapter->hw))
1394                 adapter->hw.phy.ops.reset_phy(&adapter->hw);
1395
1396         igb_remove_device(&adapter->hw);
1397         igb_reset_interrupt_capability(adapter);
1398
1399         igb_free_queues(adapter);
1400
1401         iounmap(adapter->hw.hw_addr);
1402         if (adapter->hw.flash_address)
1403                 iounmap(adapter->hw.flash_address);
1404         pci_release_selected_regions(pdev, adapter->bars);
1405
1406         free_netdev(netdev);
1407
1408         pci_disable_device(pdev);
1409 }
1410
1411 /**
1412  * igb_sw_init - Initialize general software structures (struct igb_adapter)
1413  * @adapter: board private structure to initialize
1414  *
1415  * igb_sw_init initializes the Adapter private data structure.
1416  * Fields are initialized based on PCI device information and
1417  * OS network device settings (MTU size).
1418  **/
1419 static int __devinit igb_sw_init(struct igb_adapter *adapter)
1420 {
1421         struct e1000_hw *hw = &adapter->hw;
1422         struct net_device *netdev = adapter->netdev;
1423         struct pci_dev *pdev = adapter->pdev;
1424
1425         pci_read_config_word(pdev, PCI_COMMAND, &hw->bus.pci_cmd_word);
1426
1427         adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
1428         adapter->rx_ps_hdr_size = 0; /* disable packet split */
1429         adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
1430         adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN;
1431
1432         /* Number of supported queues. */
1433         /* Having more queues than CPUs doesn't make sense. */
1434         adapter->num_rx_queues = min((u32)IGB_MAX_RX_QUEUES, (u32)num_online_cpus());
1435 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
1436         adapter->num_tx_queues = min(IGB_MAX_TX_QUEUES, num_online_cpus());
1437 #else
1438         adapter->num_tx_queues = 1;
1439 #endif /* CONFIG_NET_MULTI_QUEUE_DEVICE */
1440
1441         /* This call may decrease the number of queues depending on
1442          * interrupt mode. */
1443         igb_set_interrupt_capability(adapter);
1444
1445         if (igb_alloc_queues(adapter)) {
1446                 dev_err(&pdev->dev, "Unable to allocate memory for queues\n");
1447                 return -ENOMEM;
1448         }
1449
1450         /* Explicitly disable IRQ since the NIC can be in any state. */
1451         igb_irq_disable(adapter);
1452
1453         set_bit(__IGB_DOWN, &adapter->state);
1454         return 0;
1455 }
1456
1457 /**
1458  * igb_open - Called when a network interface is made active
1459  * @netdev: network interface device structure
1460  *
1461  * Returns 0 on success, negative value on failure
1462  *
1463  * The open entry point is called when a network interface is made
1464  * active by the system (IFF_UP).  At this point all resources needed
1465  * for transmit and receive operations are allocated, the interrupt
1466  * handler is registered with the OS, the watchdog timer is started,
1467  * and the stack is notified that the interface is ready.
1468  **/
1469 static int igb_open(struct net_device *netdev)
1470 {
1471         struct igb_adapter *adapter = netdev_priv(netdev);
1472         struct e1000_hw *hw = &adapter->hw;
1473         int err;
1474         int i;
1475
1476         /* disallow open during test */
1477         if (test_bit(__IGB_TESTING, &adapter->state))
1478                 return -EBUSY;
1479
1480         /* allocate transmit descriptors */
1481         err = igb_setup_all_tx_resources(adapter);
1482         if (err)
1483                 goto err_setup_tx;
1484
1485         /* allocate receive descriptors */
1486         err = igb_setup_all_rx_resources(adapter);
1487         if (err)
1488                 goto err_setup_rx;
1489
1490         /* e1000_power_up_phy(adapter); */
1491
1492         adapter->mng_vlan_id = IGB_MNG_VLAN_NONE;
1493         if ((adapter->hw.mng_cookie.status &
1494              E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
1495                 igb_update_mng_vlan(adapter);
1496
1497         /* before we allocate an interrupt, we must be ready to handle it.
1498          * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
1499          * as soon as we call pci_request_irq, so we have to setup our
1500          * clean_rx handler before we do so.  */
1501         igb_configure(adapter);
1502
1503         err = igb_request_irq(adapter);
1504         if (err)
1505                 goto err_req_irq;
1506
1507         /* From here on the code is the same as igb_up() */
1508         clear_bit(__IGB_DOWN, &adapter->state);
1509
1510         for (i = 0; i < adapter->num_rx_queues; i++)
1511                 napi_enable(&adapter->rx_ring[i].napi);
1512
1513         /* Clear any pending interrupts. */
1514         rd32(E1000_ICR);
1515
1516         igb_irq_enable(adapter);
1517
1518         /* Fire a link status change interrupt to start the watchdog. */
1519         wr32(E1000_ICS, E1000_ICS_LSC);
1520
1521         return 0;
1522
1523 err_req_irq:
1524         igb_release_hw_control(adapter);
1525         /* e1000_power_down_phy(adapter); */
1526         igb_free_all_rx_resources(adapter);
1527 err_setup_rx:
1528         igb_free_all_tx_resources(adapter);
1529 err_setup_tx:
1530         igb_reset(adapter);
1531
1532         return err;
1533 }
1534
1535 /**
1536  * igb_close - Disables a network interface
1537  * @netdev: network interface device structure
1538  *
1539  * Returns 0, this is not allowed to fail
1540  *
1541  * The close entry point is called when an interface is de-activated
1542  * by the OS.  The hardware is still under the driver's control, but
1543  * needs to be disabled.  A global MAC reset is issued to stop the
1544  * hardware, and all transmit and receive resources are freed.
1545  **/
1546 static int igb_close(struct net_device *netdev)
1547 {
1548         struct igb_adapter *adapter = netdev_priv(netdev);
1549
1550         WARN_ON(test_bit(__IGB_RESETTING, &adapter->state));
1551         igb_down(adapter);
1552
1553         igb_free_irq(adapter);
1554
1555         igb_free_all_tx_resources(adapter);
1556         igb_free_all_rx_resources(adapter);
1557
1558         /* kill manageability vlan ID if supported, but not if a vlan with
1559          * the same ID is registered on the host OS (let 8021q kill it) */
1560         if ((adapter->hw.mng_cookie.status &
1561                           E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
1562              !(adapter->vlgrp &&
1563                vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id)))
1564                 igb_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
1565
1566         return 0;
1567 }
1568
1569 /**
1570  * igb_setup_tx_resources - allocate Tx resources (Descriptors)
1571  * @adapter: board private structure
1572  * @tx_ring: tx descriptor ring (for a specific queue) to setup
1573  *
1574  * Return 0 on success, negative on failure
1575  **/
1576
1577 int igb_setup_tx_resources(struct igb_adapter *adapter,
1578                            struct igb_ring *tx_ring)
1579 {
1580         struct pci_dev *pdev = adapter->pdev;
1581         int size;
1582
1583         size = sizeof(struct igb_buffer) * tx_ring->count;
1584         tx_ring->buffer_info = vmalloc(size);
1585         if (!tx_ring->buffer_info)
1586                 goto err;
1587         memset(tx_ring->buffer_info, 0, size);
1588
1589         /* round up to nearest 4K */
1590         tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc)
1591                         + sizeof(u32);
1592         tx_ring->size = ALIGN(tx_ring->size, 4096);
1593
1594         tx_ring->desc = pci_alloc_consistent(pdev, tx_ring->size,
1595                                              &tx_ring->dma);
1596
1597         if (!tx_ring->desc)
1598                 goto err;
1599
1600         tx_ring->adapter = adapter;
1601         tx_ring->next_to_use = 0;
1602         tx_ring->next_to_clean = 0;
1603         return 0;
1604
1605 err:
1606         vfree(tx_ring->buffer_info);
1607         dev_err(&adapter->pdev->dev,
1608                 "Unable to allocate memory for the transmit descriptor ring\n");
1609         return -ENOMEM;
1610 }
1611
1612 /**
1613  * igb_setup_all_tx_resources - wrapper to allocate Tx resources
1614  *                                (Descriptors) for all queues
1615  * @adapter: board private structure
1616  *
1617  * Return 0 on success, negative on failure
1618  **/
1619 static int igb_setup_all_tx_resources(struct igb_adapter *adapter)
1620 {
1621         int i, err = 0;
1622 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
1623         int r_idx;
1624 #endif  
1625
1626         for (i = 0; i < adapter->num_tx_queues; i++) {
1627                 err = igb_setup_tx_resources(adapter, &adapter->tx_ring[i]);
1628                 if (err) {
1629                         dev_err(&adapter->pdev->dev,
1630                                 "Allocation for Tx Queue %u failed\n", i);
1631                         for (i--; i >= 0; i--)
1632                                 igb_free_tx_resources(&adapter->tx_ring[i]);
1633                         break;
1634                 }
1635         }
1636
1637 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
1638         for (i = 0; i < IGB_MAX_TX_QUEUES; i++) {
1639                 r_idx = i % adapter->num_tx_queues;
1640                 adapter->multi_tx_table[i] = &adapter->tx_ring[r_idx];
1641         }       
1642 #endif          
1643         return err;
1644 }
1645
1646 /**
1647  * igb_configure_tx - Configure transmit Unit after Reset
1648  * @adapter: board private structure
1649  *
1650  * Configure the Tx unit of the MAC after a reset.
1651  **/
1652 static void igb_configure_tx(struct igb_adapter *adapter)
1653 {
1654         u64 tdba, tdwba;
1655         struct e1000_hw *hw = &adapter->hw;
1656         u32 tctl;
1657         u32 txdctl, txctrl;
1658         int i;
1659
1660         for (i = 0; i < adapter->num_tx_queues; i++) {
1661                 struct igb_ring *ring = &(adapter->tx_ring[i]);
1662
1663                 wr32(E1000_TDLEN(i),
1664                                 ring->count * sizeof(struct e1000_tx_desc));
1665                 tdba = ring->dma;
1666                 wr32(E1000_TDBAL(i),
1667                                 tdba & 0x00000000ffffffffULL);
1668                 wr32(E1000_TDBAH(i), tdba >> 32);
1669
1670                 tdwba = ring->dma + ring->count * sizeof(struct e1000_tx_desc);
1671                 tdwba |= 1; /* enable head wb */
1672                 wr32(E1000_TDWBAL(i),
1673                                 tdwba & 0x00000000ffffffffULL);
1674                 wr32(E1000_TDWBAH(i), tdwba >> 32);
1675
1676                 ring->head = E1000_TDH(i);
1677                 ring->tail = E1000_TDT(i);
1678                 writel(0, hw->hw_addr + ring->tail);
1679                 writel(0, hw->hw_addr + ring->head);
1680                 txdctl = rd32(E1000_TXDCTL(i));
1681                 txdctl |= E1000_TXDCTL_QUEUE_ENABLE;
1682                 wr32(E1000_TXDCTL(i), txdctl);
1683
1684                 /* Turn off Relaxed Ordering on head write-backs.  The
1685                  * writebacks MUST be delivered in order or it will
1686                  * completely screw up our bookeeping.
1687                  */
1688                 txctrl = rd32(E1000_DCA_TXCTRL(i));
1689                 txctrl &= ~E1000_DCA_TXCTRL_TX_WB_RO_EN;
1690                 wr32(E1000_DCA_TXCTRL(i), txctrl);
1691         }
1692
1693
1694
1695         /* Use the default values for the Tx Inter Packet Gap (IPG) timer */
1696
1697         /* Program the Transmit Control Register */
1698
1699         tctl = rd32(E1000_TCTL);
1700         tctl &= ~E1000_TCTL_CT;
1701         tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
1702                 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
1703
1704         igb_config_collision_dist(hw);
1705
1706         /* Setup Transmit Descriptor Settings for eop descriptor */
1707         adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_RS;
1708
1709         /* Enable transmits */
1710         tctl |= E1000_TCTL_EN;
1711
1712         wr32(E1000_TCTL, tctl);
1713 }
1714
1715 /**
1716  * igb_setup_rx_resources - allocate Rx resources (Descriptors)
1717  * @adapter: board private structure
1718  * @rx_ring:    rx descriptor ring (for a specific queue) to setup
1719  *
1720  * Returns 0 on success, negative on failure
1721  **/
1722
1723 int igb_setup_rx_resources(struct igb_adapter *adapter,
1724                            struct igb_ring *rx_ring)
1725 {
1726         struct pci_dev *pdev = adapter->pdev;
1727         int size, desc_len;
1728
1729 #ifdef CONFIG_IGB_LRO
1730         size = sizeof(struct net_lro_desc) * MAX_LRO_DESCRIPTORS;
1731         rx_ring->lro_mgr.lro_arr = vmalloc(size);
1732         if (!rx_ring->lro_mgr.lro_arr)
1733                 goto err;
1734         memset(rx_ring->lro_mgr.lro_arr, 0, size);
1735 #endif
1736
1737         size = sizeof(struct igb_buffer) * rx_ring->count;
1738         rx_ring->buffer_info = vmalloc(size);
1739         if (!rx_ring->buffer_info)
1740                 goto err;
1741         memset(rx_ring->buffer_info, 0, size);
1742
1743         desc_len = sizeof(union e1000_adv_rx_desc);
1744
1745         /* Round up to nearest 4K */
1746         rx_ring->size = rx_ring->count * desc_len;
1747         rx_ring->size = ALIGN(rx_ring->size, 4096);
1748
1749         rx_ring->desc = pci_alloc_consistent(pdev, rx_ring->size,
1750                                              &rx_ring->dma);
1751
1752         if (!rx_ring->desc)
1753                 goto err;
1754
1755         rx_ring->next_to_clean = 0;
1756         rx_ring->next_to_use = 0;
1757
1758         rx_ring->adapter = adapter;
1759
1760         return 0;
1761
1762 err:
1763 #ifdef CONFIG_IGB_LRO
1764         vfree(rx_ring->lro_mgr.lro_arr);
1765         rx_ring->lro_mgr.lro_arr = NULL;
1766 #endif
1767         vfree(rx_ring->buffer_info);
1768         dev_err(&adapter->pdev->dev, "Unable to allocate memory for "
1769                 "the receive descriptor ring\n");
1770         return -ENOMEM;
1771 }
1772
1773 /**
1774  * igb_setup_all_rx_resources - wrapper to allocate Rx resources
1775  *                                (Descriptors) for all queues
1776  * @adapter: board private structure
1777  *
1778  * Return 0 on success, negative on failure
1779  **/
1780 static int igb_setup_all_rx_resources(struct igb_adapter *adapter)
1781 {
1782         int i, err = 0;
1783
1784         for (i = 0; i < adapter->num_rx_queues; i++) {
1785                 err = igb_setup_rx_resources(adapter, &adapter->rx_ring[i]);
1786                 if (err) {
1787                         dev_err(&adapter->pdev->dev,
1788                                 "Allocation for Rx Queue %u failed\n", i);
1789                         for (i--; i >= 0; i--)
1790                                 igb_free_rx_resources(&adapter->rx_ring[i]);
1791                         break;
1792                 }
1793         }
1794
1795         return err;
1796 }
1797
1798 /**
1799  * igb_setup_rctl - configure the receive control registers
1800  * @adapter: Board private structure
1801  **/
1802 static void igb_setup_rctl(struct igb_adapter *adapter)
1803 {
1804         struct e1000_hw *hw = &adapter->hw;
1805         u32 rctl;
1806         u32 srrctl = 0;
1807         int i;
1808
1809         rctl = rd32(E1000_RCTL);
1810
1811         rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
1812
1813         rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
1814                 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
1815                 (adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
1816
1817         /*
1818          * enable stripping of CRC. It's unlikely this will break BMC
1819          * redirection as it did with e1000. Newer features require
1820          * that the HW strips the CRC.
1821         */
1822         rctl |= E1000_RCTL_SECRC;
1823
1824         rctl &= ~E1000_RCTL_SBP;
1825
1826         if (adapter->netdev->mtu <= ETH_DATA_LEN)
1827                 rctl &= ~E1000_RCTL_LPE;
1828         else
1829                 rctl |= E1000_RCTL_LPE;
1830         if (adapter->rx_buffer_len <= IGB_RXBUFFER_2048) {
1831                 /* Setup buffer sizes */
1832                 rctl &= ~E1000_RCTL_SZ_4096;
1833                 rctl |= E1000_RCTL_BSEX;
1834                 switch (adapter->rx_buffer_len) {
1835                 case IGB_RXBUFFER_256:
1836                         rctl |= E1000_RCTL_SZ_256;
1837                         rctl &= ~E1000_RCTL_BSEX;
1838                         break;
1839                 case IGB_RXBUFFER_512:
1840                         rctl |= E1000_RCTL_SZ_512;
1841                         rctl &= ~E1000_RCTL_BSEX;
1842                         break;
1843                 case IGB_RXBUFFER_1024:
1844                         rctl |= E1000_RCTL_SZ_1024;
1845                         rctl &= ~E1000_RCTL_BSEX;
1846                         break;
1847                 case IGB_RXBUFFER_2048:
1848                 default:
1849                         rctl |= E1000_RCTL_SZ_2048;
1850                         rctl &= ~E1000_RCTL_BSEX;
1851                         break;
1852                 }
1853         } else {
1854                 rctl &= ~E1000_RCTL_BSEX;
1855                 srrctl = adapter->rx_buffer_len >> E1000_SRRCTL_BSIZEPKT_SHIFT;
1856         }
1857
1858         /* 82575 and greater support packet-split where the protocol
1859          * header is placed in skb->data and the packet data is
1860          * placed in pages hanging off of skb_shinfo(skb)->nr_frags.
1861          * In the case of a non-split, skb->data is linearly filled,
1862          * followed by the page buffers.  Therefore, skb->data is
1863          * sized to hold the largest protocol header.
1864          */
1865         /* allocations using alloc_page take too long for regular MTU
1866          * so only enable packet split for jumbo frames */
1867         if (rctl & E1000_RCTL_LPE) {
1868                 adapter->rx_ps_hdr_size = IGB_RXBUFFER_128;
1869                 srrctl |= adapter->rx_ps_hdr_size <<
1870                          E1000_SRRCTL_BSIZEHDRSIZE_SHIFT;
1871                 srrctl |= E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
1872         } else {
1873                 adapter->rx_ps_hdr_size = 0;
1874                 srrctl |= E1000_SRRCTL_DESCTYPE_ADV_ONEBUF;
1875         }
1876
1877         for (i = 0; i < adapter->num_rx_queues; i++)
1878                 wr32(E1000_SRRCTL(i), srrctl);
1879
1880         wr32(E1000_RCTL, rctl);
1881 }
1882
1883 /**
1884  * igb_configure_rx - Configure receive Unit after Reset
1885  * @adapter: board private structure
1886  *
1887  * Configure the Rx unit of the MAC after a reset.
1888  **/
1889 static void igb_configure_rx(struct igb_adapter *adapter)
1890 {
1891         u64 rdba;
1892         struct e1000_hw *hw = &adapter->hw;
1893         u32 rctl, rxcsum;
1894         u32 rxdctl;
1895         int i;
1896
1897         /* disable receives while setting up the descriptors */
1898         rctl = rd32(E1000_RCTL);
1899         wr32(E1000_RCTL, rctl & ~E1000_RCTL_EN);
1900         wrfl();
1901         mdelay(10);
1902
1903         if (adapter->itr_setting > 3)
1904                 wr32(E1000_ITR, adapter->itr);
1905
1906         /* Setup the HW Rx Head and Tail Descriptor Pointers and
1907          * the Base and Length of the Rx Descriptor Ring */
1908         for (i = 0; i < adapter->num_rx_queues; i++) {
1909                 struct igb_ring *ring = &(adapter->rx_ring[i]);
1910                 rdba = ring->dma;
1911                 wr32(E1000_RDBAL(i),
1912                                 rdba & 0x00000000ffffffffULL);
1913                 wr32(E1000_RDBAH(i), rdba >> 32);
1914                 wr32(E1000_RDLEN(i),
1915                                ring->count * sizeof(union e1000_adv_rx_desc));
1916
1917                 ring->head = E1000_RDH(i);
1918                 ring->tail = E1000_RDT(i);
1919                 writel(0, hw->hw_addr + ring->tail);
1920                 writel(0, hw->hw_addr + ring->head);
1921
1922                 rxdctl = rd32(E1000_RXDCTL(i));
1923                 rxdctl |= E1000_RXDCTL_QUEUE_ENABLE;
1924                 rxdctl &= 0xFFF00000;
1925                 rxdctl |= IGB_RX_PTHRESH;
1926                 rxdctl |= IGB_RX_HTHRESH << 8;
1927                 rxdctl |= IGB_RX_WTHRESH << 16;
1928                 wr32(E1000_RXDCTL(i), rxdctl);
1929 #ifdef CONFIG_IGB_LRO
1930                 /* Intitial LRO Settings */
1931                 ring->lro_mgr.max_aggr = MAX_LRO_AGGR;
1932                 ring->lro_mgr.max_desc = MAX_LRO_DESCRIPTORS;
1933                 ring->lro_mgr.get_skb_header = igb_get_skb_hdr;
1934                 ring->lro_mgr.features = LRO_F_NAPI | LRO_F_EXTRACT_VLAN_ID;
1935                 ring->lro_mgr.dev = adapter->netdev;
1936                 ring->lro_mgr.ip_summed = CHECKSUM_UNNECESSARY;
1937                 ring->lro_mgr.ip_summed_aggr = CHECKSUM_UNNECESSARY;
1938 #endif
1939         }
1940
1941         if (adapter->num_rx_queues > 1) {
1942                 u32 random[10];
1943                 u32 mrqc;
1944                 u32 j, shift;
1945                 union e1000_reta {
1946                         u32 dword;
1947                         u8  bytes[4];
1948                 } reta;
1949
1950                 get_random_bytes(&random[0], 40);
1951
1952                 if (hw->mac.type >= e1000_82576)
1953                         shift = 0;
1954                 else
1955                         shift = 6;
1956                 for (j = 0; j < (32 * 4); j++) {
1957                         reta.bytes[j & 3] =
1958                                 (j % adapter->num_rx_queues) << shift;
1959                         if ((j & 3) == 3)
1960                                 writel(reta.dword,
1961                                        hw->hw_addr + E1000_RETA(0) + (j & ~3));
1962                 }
1963                 mrqc = E1000_MRQC_ENABLE_RSS_4Q;
1964
1965                 /* Fill out hash function seeds */
1966                 for (j = 0; j < 10; j++)
1967                         array_wr32(E1000_RSSRK(0), j, random[j]);
1968
1969                 mrqc |= (E1000_MRQC_RSS_FIELD_IPV4 |
1970                          E1000_MRQC_RSS_FIELD_IPV4_TCP);
1971                 mrqc |= (E1000_MRQC_RSS_FIELD_IPV6 |
1972                          E1000_MRQC_RSS_FIELD_IPV6_TCP);
1973                 mrqc |= (E1000_MRQC_RSS_FIELD_IPV4_UDP |
1974                          E1000_MRQC_RSS_FIELD_IPV6_UDP);
1975                 mrqc |= (E1000_MRQC_RSS_FIELD_IPV6_UDP_EX |
1976                          E1000_MRQC_RSS_FIELD_IPV6_TCP_EX);
1977
1978
1979                 wr32(E1000_MRQC, mrqc);
1980
1981                 /* Multiqueue and raw packet checksumming are mutually
1982                  * exclusive.  Note that this not the same as TCP/IP
1983                  * checksumming, which works fine. */
1984                 rxcsum = rd32(E1000_RXCSUM);
1985                 rxcsum |= E1000_RXCSUM_PCSD;
1986                 wr32(E1000_RXCSUM, rxcsum);
1987         } else {
1988                 /* Enable Receive Checksum Offload for TCP and UDP */
1989                 rxcsum = rd32(E1000_RXCSUM);
1990                 if (adapter->rx_csum) {
1991                         rxcsum |= E1000_RXCSUM_TUOFL;
1992
1993                         /* Enable IPv4 payload checksum for UDP fragments
1994                          * Must be used in conjunction with packet-split. */
1995                         if (adapter->rx_ps_hdr_size)
1996                                 rxcsum |= E1000_RXCSUM_IPPCSE;
1997                 } else {
1998                         rxcsum &= ~E1000_RXCSUM_TUOFL;
1999                         /* don't need to clear IPPCSE as it defaults to 0 */
2000                 }
2001                 wr32(E1000_RXCSUM, rxcsum);
2002         }
2003
2004         if (adapter->vlgrp)
2005                 wr32(E1000_RLPML,
2006                                 adapter->max_frame_size + VLAN_TAG_SIZE);
2007         else
2008                 wr32(E1000_RLPML, adapter->max_frame_size);
2009
2010         /* Enable Receives */
2011         wr32(E1000_RCTL, rctl);
2012 }
2013
2014 /**
2015  * igb_free_tx_resources - Free Tx Resources per Queue
2016  * @adapter: board private structure
2017  * @tx_ring: Tx descriptor ring for a specific queue
2018  *
2019  * Free all transmit software resources
2020  **/
2021 static void igb_free_tx_resources(struct igb_ring *tx_ring)
2022 {
2023         struct pci_dev *pdev = tx_ring->adapter->pdev;
2024
2025         igb_clean_tx_ring(tx_ring);
2026
2027         vfree(tx_ring->buffer_info);
2028         tx_ring->buffer_info = NULL;
2029
2030         pci_free_consistent(pdev, tx_ring->size, tx_ring->desc, tx_ring->dma);
2031
2032         tx_ring->desc = NULL;
2033 }
2034
2035 /**
2036  * igb_free_all_tx_resources - Free Tx Resources for All Queues
2037  * @adapter: board private structure
2038  *
2039  * Free all transmit software resources
2040  **/
2041 static void igb_free_all_tx_resources(struct igb_adapter *adapter)
2042 {
2043         int i;
2044
2045         for (i = 0; i < adapter->num_tx_queues; i++)
2046                 igb_free_tx_resources(&adapter->tx_ring[i]);
2047 }
2048
2049 static void igb_unmap_and_free_tx_resource(struct igb_adapter *adapter,
2050                                            struct igb_buffer *buffer_info)
2051 {
2052         if (buffer_info->dma) {
2053                 pci_unmap_page(adapter->pdev,
2054                                 buffer_info->dma,
2055                                 buffer_info->length,
2056                                 PCI_DMA_TODEVICE);
2057                 buffer_info->dma = 0;
2058         }
2059         if (buffer_info->skb) {
2060                 dev_kfree_skb_any(buffer_info->skb);
2061                 buffer_info->skb = NULL;
2062         }
2063         buffer_info->time_stamp = 0;
2064         /* buffer_info must be completely set up in the transmit path */
2065 }
2066
2067 /**
2068  * igb_clean_tx_ring - Free Tx Buffers
2069  * @adapter: board private structure
2070  * @tx_ring: ring to be cleaned
2071  **/
2072 static void igb_clean_tx_ring(struct igb_ring *tx_ring)
2073 {
2074         struct igb_adapter *adapter = tx_ring->adapter;
2075         struct igb_buffer *buffer_info;
2076         unsigned long size;
2077         unsigned int i;
2078
2079         if (!tx_ring->buffer_info)
2080                 return;
2081         /* Free all the Tx ring sk_buffs */
2082
2083         for (i = 0; i < tx_ring->count; i++) {
2084                 buffer_info = &tx_ring->buffer_info[i];
2085                 igb_unmap_and_free_tx_resource(adapter, buffer_info);
2086         }
2087
2088         size = sizeof(struct igb_buffer) * tx_ring->count;
2089         memset(tx_ring->buffer_info, 0, size);
2090
2091         /* Zero out the descriptor ring */
2092
2093         memset(tx_ring->desc, 0, tx_ring->size);
2094
2095         tx_ring->next_to_use = 0;
2096         tx_ring->next_to_clean = 0;
2097
2098         writel(0, adapter->hw.hw_addr + tx_ring->head);
2099         writel(0, adapter->hw.hw_addr + tx_ring->tail);
2100 }
2101
2102 /**
2103  * igb_clean_all_tx_rings - Free Tx Buffers for all queues
2104  * @adapter: board private structure
2105  **/
2106 static void igb_clean_all_tx_rings(struct igb_adapter *adapter)
2107 {
2108         int i;
2109
2110         for (i = 0; i < adapter->num_tx_queues; i++)
2111                 igb_clean_tx_ring(&adapter->tx_ring[i]);
2112 }
2113
2114 /**
2115  * igb_free_rx_resources - Free Rx Resources
2116  * @adapter: board private structure
2117  * @rx_ring: ring to clean the resources from
2118  *
2119  * Free all receive software resources
2120  **/
2121 static void igb_free_rx_resources(struct igb_ring *rx_ring)
2122 {
2123         struct pci_dev *pdev = rx_ring->adapter->pdev;
2124
2125         igb_clean_rx_ring(rx_ring);
2126
2127         vfree(rx_ring->buffer_info);
2128         rx_ring->buffer_info = NULL;
2129
2130 #ifdef CONFIG_IGB_LRO
2131         vfree(rx_ring->lro_mgr.lro_arr);
2132         rx_ring->lro_mgr.lro_arr = NULL;
2133 #endif 
2134
2135         pci_free_consistent(pdev, rx_ring->size, rx_ring->desc, rx_ring->dma);
2136
2137         rx_ring->desc = NULL;
2138 }
2139
2140 /**
2141  * igb_free_all_rx_resources - Free Rx Resources for All Queues
2142  * @adapter: board private structure
2143  *
2144  * Free all receive software resources
2145  **/
2146 static void igb_free_all_rx_resources(struct igb_adapter *adapter)
2147 {
2148         int i;
2149
2150         for (i = 0; i < adapter->num_rx_queues; i++)
2151                 igb_free_rx_resources(&adapter->rx_ring[i]);
2152 }
2153
2154 /**
2155  * igb_clean_rx_ring - Free Rx Buffers per Queue
2156  * @adapter: board private structure
2157  * @rx_ring: ring to free buffers from
2158  **/
2159 static void igb_clean_rx_ring(struct igb_ring *rx_ring)
2160 {
2161         struct igb_adapter *adapter = rx_ring->adapter;
2162         struct igb_buffer *buffer_info;
2163         struct pci_dev *pdev = adapter->pdev;
2164         unsigned long size;
2165         unsigned int i;
2166
2167         if (!rx_ring->buffer_info)
2168                 return;
2169         /* Free all the Rx ring sk_buffs */
2170         for (i = 0; i < rx_ring->count; i++) {
2171                 buffer_info = &rx_ring->buffer_info[i];
2172                 if (buffer_info->dma) {
2173                         if (adapter->rx_ps_hdr_size)
2174                                 pci_unmap_single(pdev, buffer_info->dma,
2175                                                  adapter->rx_ps_hdr_size,
2176                                                  PCI_DMA_FROMDEVICE);
2177                         else
2178                                 pci_unmap_single(pdev, buffer_info->dma,
2179                                                  adapter->rx_buffer_len,
2180                                                  PCI_DMA_FROMDEVICE);
2181                         buffer_info->dma = 0;
2182                 }
2183
2184                 if (buffer_info->skb) {
2185                         dev_kfree_skb(buffer_info->skb);
2186                         buffer_info->skb = NULL;
2187                 }
2188                 if (buffer_info->page) {
2189                         if (buffer_info->page_dma)
2190                                 pci_unmap_page(pdev, buffer_info->page_dma,
2191                                                PAGE_SIZE / 2,
2192                                                PCI_DMA_FROMDEVICE);
2193                         put_page(buffer_info->page);
2194                         buffer_info->page = NULL;
2195                         buffer_info->page_dma = 0;
2196                         buffer_info->page_offset = 0;
2197                 }
2198         }
2199
2200         size = sizeof(struct igb_buffer) * rx_ring->count;
2201         memset(rx_ring->buffer_info, 0, size);
2202
2203         /* Zero out the descriptor ring */
2204         memset(rx_ring->desc, 0, rx_ring->size);
2205
2206         rx_ring->next_to_clean = 0;
2207         rx_ring->next_to_use = 0;
2208
2209         writel(0, adapter->hw.hw_addr + rx_ring->head);
2210         writel(0, adapter->hw.hw_addr + rx_ring->tail);
2211 }
2212
2213 /**
2214  * igb_clean_all_rx_rings - Free Rx Buffers for all queues
2215  * @adapter: board private structure
2216  **/
2217 static void igb_clean_all_rx_rings(struct igb_adapter *adapter)
2218 {
2219         int i;
2220
2221         for (i = 0; i < adapter->num_rx_queues; i++)
2222                 igb_clean_rx_ring(&adapter->rx_ring[i]);
2223 }
2224
2225 /**
2226  * igb_set_mac - Change the Ethernet Address of the NIC
2227  * @netdev: network interface device structure
2228  * @p: pointer to an address structure
2229  *
2230  * Returns 0 on success, negative on failure
2231  **/
2232 static int igb_set_mac(struct net_device *netdev, void *p)
2233 {
2234         struct igb_adapter *adapter = netdev_priv(netdev);
2235         struct sockaddr *addr = p;
2236
2237         if (!is_valid_ether_addr(addr->sa_data))
2238                 return -EADDRNOTAVAIL;
2239
2240         memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2241         memcpy(adapter->hw.mac.addr, addr->sa_data, netdev->addr_len);
2242
2243         adapter->hw.mac.ops.rar_set(&adapter->hw, adapter->hw.mac.addr, 0);
2244
2245         return 0;
2246 }
2247
2248 /**
2249  * igb_set_multi - Multicast and Promiscuous mode set
2250  * @netdev: network interface device structure
2251  *
2252  * The set_multi entry point is called whenever the multicast address
2253  * list or the network interface flags are updated.  This routine is
2254  * responsible for configuring the hardware for proper multicast,
2255  * promiscuous mode, and all-multi behavior.
2256  **/
2257 static void igb_set_multi(struct net_device *netdev)
2258 {
2259         struct igb_adapter *adapter = netdev_priv(netdev);
2260         struct e1000_hw *hw = &adapter->hw;
2261         struct e1000_mac_info *mac = &hw->mac;
2262         struct dev_mc_list *mc_ptr;
2263         u8  *mta_list;
2264         u32 rctl;
2265         int i;
2266
2267         /* Check for Promiscuous and All Multicast modes */
2268
2269         rctl = rd32(E1000_RCTL);
2270
2271         if (netdev->flags & IFF_PROMISC) {
2272                 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
2273                 rctl &= ~E1000_RCTL_VFE;
2274         } else {
2275                 if (netdev->flags & IFF_ALLMULTI) {
2276                         rctl |= E1000_RCTL_MPE;
2277                         rctl &= ~E1000_RCTL_UPE;
2278                 } else
2279                         rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE);
2280                 rctl |= E1000_RCTL_VFE;
2281         }
2282         wr32(E1000_RCTL, rctl);
2283
2284         if (!netdev->mc_count) {
2285                 /* nothing to program, so clear mc list */
2286                 igb_update_mc_addr_list_82575(hw, NULL, 0, 1,
2287                                           mac->rar_entry_count);
2288                 return;
2289         }
2290
2291         mta_list = kzalloc(netdev->mc_count * 6, GFP_ATOMIC);
2292         if (!mta_list)
2293                 return;
2294
2295         /* The shared function expects a packed array of only addresses. */
2296         mc_ptr = netdev->mc_list;
2297
2298         for (i = 0; i < netdev->mc_count; i++) {
2299                 if (!mc_ptr)
2300                         break;
2301                 memcpy(mta_list + (i*ETH_ALEN), mc_ptr->dmi_addr, ETH_ALEN);
2302                 mc_ptr = mc_ptr->next;
2303         }
2304         igb_update_mc_addr_list_82575(hw, mta_list, i, 1,
2305                                       mac->rar_entry_count);
2306         kfree(mta_list);
2307 }
2308
2309 /* Need to wait a few seconds after link up to get diagnostic information from
2310  * the phy */
2311 static void igb_update_phy_info(unsigned long data)
2312 {
2313         struct igb_adapter *adapter = (struct igb_adapter *) data;
2314         if (adapter->hw.phy.ops.get_phy_info)
2315                 adapter->hw.phy.ops.get_phy_info(&adapter->hw);
2316 }
2317
2318 /**
2319  * igb_watchdog - Timer Call-back
2320  * @data: pointer to adapter cast into an unsigned long
2321  **/
2322 static void igb_watchdog(unsigned long data)
2323 {
2324         struct igb_adapter *adapter = (struct igb_adapter *)data;
2325         /* Do the rest outside of interrupt context */
2326         schedule_work(&adapter->watchdog_task);
2327 }
2328
2329 static void igb_watchdog_task(struct work_struct *work)
2330 {
2331         struct igb_adapter *adapter = container_of(work,
2332                                         struct igb_adapter, watchdog_task);
2333         struct e1000_hw *hw = &adapter->hw;
2334
2335         struct net_device *netdev = adapter->netdev;
2336         struct igb_ring *tx_ring = adapter->tx_ring;
2337         struct e1000_mac_info *mac = &adapter->hw.mac;
2338         u32 link;
2339         s32 ret_val;
2340 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
2341         int i;
2342 #endif
2343
2344         if ((netif_carrier_ok(netdev)) &&
2345             (rd32(E1000_STATUS) & E1000_STATUS_LU))
2346                 goto link_up;
2347
2348         ret_val = hw->mac.ops.check_for_link(&adapter->hw);
2349         if ((ret_val == E1000_ERR_PHY) &&
2350             (hw->phy.type == e1000_phy_igp_3) &&
2351             (rd32(E1000_CTRL) &
2352              E1000_PHY_CTRL_GBE_DISABLE))
2353                 dev_info(&adapter->pdev->dev,
2354                          "Gigabit has been disabled, downgrading speed\n");
2355
2356         if ((hw->phy.media_type == e1000_media_type_internal_serdes) &&
2357             !(rd32(E1000_TXCW) & E1000_TXCW_ANE))
2358                 link = mac->serdes_has_link;
2359         else
2360                 link = rd32(E1000_STATUS) &
2361                                       E1000_STATUS_LU;
2362
2363         if (link) {
2364                 if (!netif_carrier_ok(netdev)) {
2365                         u32 ctrl;
2366                         hw->mac.ops.get_speed_and_duplex(&adapter->hw,
2367                                                    &adapter->link_speed,
2368                                                    &adapter->link_duplex);
2369
2370                         ctrl = rd32(E1000_CTRL);
2371                         dev_info(&adapter->pdev->dev,
2372                                  "NIC Link is Up %d Mbps %s, "
2373                                  "Flow Control: %s\n",
2374                                  adapter->link_speed,
2375                                  adapter->link_duplex == FULL_DUPLEX ?
2376                                  "Full Duplex" : "Half Duplex",
2377                                  ((ctrl & E1000_CTRL_TFCE) && (ctrl &
2378                                  E1000_CTRL_RFCE)) ? "RX/TX" : ((ctrl &
2379                                  E1000_CTRL_RFCE) ? "RX" : ((ctrl &
2380                                  E1000_CTRL_TFCE) ? "TX" : "None")));
2381
2382                         /* tweak tx_queue_len according to speed/duplex and
2383                          * adjust the timeout factor */
2384                         netdev->tx_queue_len = adapter->tx_queue_len;
2385                         adapter->tx_timeout_factor = 1;
2386                         switch (adapter->link_speed) {
2387                         case SPEED_10:
2388                                 netdev->tx_queue_len = 10;
2389                                 adapter->tx_timeout_factor = 14;
2390                                 break;
2391                         case SPEED_100:
2392                                 netdev->tx_queue_len = 100;
2393                                 /* maybe add some timeout factor ? */
2394                                 break;
2395                         }
2396
2397                         netif_carrier_on(netdev);
2398                         netif_wake_queue(netdev);
2399 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
2400                         for (i = 0; i < adapter->num_tx_queues; i++)
2401                                 netif_wake_subqueue(netdev, i);
2402 #endif
2403
2404                         if (!test_bit(__IGB_DOWN, &adapter->state))
2405                                 mod_timer(&adapter->phy_info_timer,
2406                                           round_jiffies(jiffies + 2 * HZ));
2407                 }
2408         } else {
2409                 if (netif_carrier_ok(netdev)) {
2410                         adapter->link_speed = 0;
2411                         adapter->link_duplex = 0;
2412                         dev_info(&adapter->pdev->dev, "NIC Link is Down\n");
2413                         netif_carrier_off(netdev);
2414                         netif_stop_queue(netdev);
2415 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
2416                         for (i = 0; i < adapter->num_tx_queues; i++)
2417                                 netif_stop_subqueue(netdev, i);
2418 #endif
2419                         if (!test_bit(__IGB_DOWN, &adapter->state))
2420                                 mod_timer(&adapter->phy_info_timer,
2421                                           round_jiffies(jiffies + 2 * HZ));
2422                 }
2423         }
2424
2425 link_up:
2426         igb_update_stats(adapter);
2427
2428         mac->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
2429         adapter->tpt_old = adapter->stats.tpt;
2430         mac->collision_delta = adapter->stats.colc - adapter->colc_old;
2431         adapter->colc_old = adapter->stats.colc;
2432
2433         adapter->gorc = adapter->stats.gorc - adapter->gorc_old;
2434         adapter->gorc_old = adapter->stats.gorc;
2435         adapter->gotc = adapter->stats.gotc - adapter->gotc_old;
2436         adapter->gotc_old = adapter->stats.gotc;
2437
2438         igb_update_adaptive(&adapter->hw);
2439
2440         if (!netif_carrier_ok(netdev)) {
2441                 if (IGB_DESC_UNUSED(tx_ring) + 1 < tx_ring->count) {
2442                         /* We've lost link, so the controller stops DMA,
2443                          * but we've got queued Tx work that's never going
2444                          * to get done, so reset controller to flush Tx.
2445                          * (Do the reset outside of interrupt context). */
2446                         adapter->tx_timeout_count++;
2447                         schedule_work(&adapter->reset_task);
2448                 }
2449         }
2450
2451         /* Cause software interrupt to ensure rx ring is cleaned */
2452         wr32(E1000_ICS, E1000_ICS_RXDMT0);
2453
2454         /* Force detection of hung controller every watchdog period */
2455         tx_ring->detect_tx_hung = true;
2456
2457         /* Reset the timer */
2458         if (!test_bit(__IGB_DOWN, &adapter->state))
2459                 mod_timer(&adapter->watchdog_timer,
2460                           round_jiffies(jiffies + 2 * HZ));
2461 }
2462
2463 enum latency_range {
2464         lowest_latency = 0,
2465         low_latency = 1,
2466         bulk_latency = 2,
2467         latency_invalid = 255
2468 };
2469
2470
2471 /**
2472  * igb_update_ring_itr - update the dynamic ITR value based on packet size
2473  *
2474  *      Stores a new ITR value based on strictly on packet size.  This
2475  *      algorithm is less sophisticated than that used in igb_update_itr,
2476  *      due to the difficulty of synchronizing statistics across multiple
2477  *      receive rings.  The divisors and thresholds used by this fuction
2478  *      were determined based on theoretical maximum wire speed and testing
2479  *      data, in order to minimize response time while increasing bulk
2480  *      throughput.
2481  *      This functionality is controlled by the InterruptThrottleRate module
2482  *      parameter (see igb_param.c)
2483  *      NOTE:  This function is called only when operating in a multiqueue
2484  *             receive environment.
2485  * @rx_ring: pointer to ring
2486  **/
2487 static void igb_update_ring_itr(struct igb_ring *rx_ring)
2488 {
2489         int new_val = rx_ring->itr_val;
2490         int avg_wire_size = 0;
2491         struct igb_adapter *adapter = rx_ring->adapter;
2492
2493         if (!rx_ring->total_packets)
2494                 goto clear_counts; /* no packets, so don't do anything */
2495
2496         /* For non-gigabit speeds, just fix the interrupt rate at 4000
2497          * ints/sec - ITR timer value of 120 ticks.
2498          */
2499         if (adapter->link_speed != SPEED_1000) {
2500                 new_val = 120;
2501                 goto set_itr_val;
2502         }
2503         avg_wire_size = rx_ring->total_bytes / rx_ring->total_packets;
2504
2505         /* Add 24 bytes to size to account for CRC, preamble, and gap */
2506         avg_wire_size += 24;
2507
2508         /* Don't starve jumbo frames */
2509         avg_wire_size = min(avg_wire_size, 3000);
2510
2511         /* Give a little boost to mid-size frames */
2512         if ((avg_wire_size > 300) && (avg_wire_size < 1200))
2513                 new_val = avg_wire_size / 3;
2514         else
2515                 new_val = avg_wire_size / 2;
2516
2517 set_itr_val:
2518         if (new_val != rx_ring->itr_val) {
2519                 rx_ring->itr_val = new_val;
2520                 rx_ring->set_itr = 1;
2521         }
2522 clear_counts:
2523         rx_ring->total_bytes = 0;
2524         rx_ring->total_packets = 0;
2525 }
2526
2527 /**
2528  * igb_update_itr - update the dynamic ITR value based on statistics
2529  *      Stores a new ITR value based on packets and byte
2530  *      counts during the last interrupt.  The advantage of per interrupt
2531  *      computation is faster updates and more accurate ITR for the current
2532  *      traffic pattern.  Constants in this function were computed
2533  *      based on theoretical maximum wire speed and thresholds were set based
2534  *      on testing data as well as attempting to minimize response time
2535  *      while increasing bulk throughput.
2536  *      this functionality is controlled by the InterruptThrottleRate module
2537  *      parameter (see igb_param.c)
2538  *      NOTE:  These calculations are only valid when operating in a single-
2539  *             queue environment.
2540  * @adapter: pointer to adapter
2541  * @itr_setting: current adapter->itr
2542  * @packets: the number of packets during this measurement interval
2543  * @bytes: the number of bytes during this measurement interval
2544  **/
2545 static unsigned int igb_update_itr(struct igb_adapter *adapter, u16 itr_setting,
2546                                    int packets, int bytes)
2547 {
2548         unsigned int retval = itr_setting;
2549
2550         if (packets == 0)
2551                 goto update_itr_done;
2552
2553         switch (itr_setting) {
2554         case lowest_latency:
2555                 /* handle TSO and jumbo frames */
2556                 if (bytes/packets > 8000)
2557                         retval = bulk_latency;
2558                 else if ((packets < 5) && (bytes > 512))
2559                         retval = low_latency;
2560                 break;
2561         case low_latency:  /* 50 usec aka 20000 ints/s */
2562                 if (bytes > 10000) {
2563                         /* this if handles the TSO accounting */
2564                         if (bytes/packets > 8000) {
2565                                 retval = bulk_latency;
2566                         } else if ((packets < 10) || ((bytes/packets) > 1200)) {
2567                                 retval = bulk_latency;
2568                         } else if ((packets > 35)) {
2569                                 retval = lowest_latency;
2570                         }
2571                 } else if (bytes/packets > 2000) {
2572                         retval = bulk_latency;
2573                 } else if (packets <= 2 && bytes < 512) {
2574                         retval = lowest_latency;
2575                 }
2576                 break;
2577         case bulk_latency: /* 250 usec aka 4000 ints/s */
2578                 if (bytes > 25000) {
2579                         if (packets > 35)
2580                                 retval = low_latency;
2581                 } else if (bytes < 6000) {
2582                         retval = low_latency;
2583                 }
2584                 break;
2585         }
2586
2587 update_itr_done:
2588         return retval;
2589 }
2590
2591 static void igb_set_itr(struct igb_adapter *adapter)
2592 {
2593         u16 current_itr;
2594         u32 new_itr = adapter->itr;
2595
2596         /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2597         if (adapter->link_speed != SPEED_1000) {
2598                 current_itr = 0;
2599                 new_itr = 4000;
2600                 goto set_itr_now;
2601         }
2602
2603         adapter->rx_itr = igb_update_itr(adapter,
2604                                     adapter->rx_itr,
2605                                     adapter->rx_ring->total_packets,
2606                                     adapter->rx_ring->total_bytes);
2607
2608         if (adapter->rx_ring->buddy) {
2609                 adapter->tx_itr = igb_update_itr(adapter,
2610                                             adapter->tx_itr,
2611                                             adapter->tx_ring->total_packets,
2612                                             adapter->tx_ring->total_bytes);
2613
2614                 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2615         } else {
2616                 current_itr = adapter->rx_itr;
2617         }
2618
2619         /* conservative mode (itr 3) eliminates the lowest_latency setting */
2620         if (adapter->itr_setting == 3 &&
2621             current_itr == lowest_latency)
2622                 current_itr = low_latency;
2623
2624         switch (current_itr) {
2625         /* counts and packets in update_itr are dependent on these numbers */
2626         case lowest_latency:
2627                 new_itr = 70000;
2628                 break;
2629         case low_latency:
2630                 new_itr = 20000; /* aka hwitr = ~200 */
2631                 break;
2632         case bulk_latency:
2633                 new_itr = 4000;
2634                 break;
2635         default:
2636                 break;
2637         }
2638
2639 set_itr_now:
2640         adapter->rx_ring->total_bytes = 0;
2641         adapter->rx_ring->total_packets = 0;
2642         if (adapter->rx_ring->buddy) {
2643                 adapter->rx_ring->buddy->total_bytes = 0;
2644                 adapter->rx_ring->buddy->total_packets = 0;
2645         }
2646
2647         if (new_itr != adapter->itr) {
2648                 /* this attempts to bias the interrupt rate towards Bulk
2649                  * by adding intermediate steps when interrupt rate is
2650                  * increasing */
2651                 new_itr = new_itr > adapter->itr ?
2652                              min(adapter->itr + (new_itr >> 2), new_itr) :
2653                              new_itr;
2654                 /* Don't write the value here; it resets the adapter's
2655                  * internal timer, and causes us to delay far longer than
2656                  * we should between interrupts.  Instead, we write the ITR
2657                  * value at the beginning of the next interrupt so the timing
2658                  * ends up being correct.
2659                  */
2660                 adapter->itr = new_itr;
2661                 adapter->rx_ring->itr_val = 1000000000 / (new_itr * 256);
2662                 adapter->rx_ring->set_itr = 1;
2663         }
2664
2665         return;
2666 }
2667
2668
2669 #define IGB_TX_FLAGS_CSUM               0x00000001
2670 #define IGB_TX_FLAGS_VLAN               0x00000002
2671 #define IGB_TX_FLAGS_TSO                0x00000004
2672 #define IGB_TX_FLAGS_IPV4               0x00000008
2673 #define IGB_TX_FLAGS_VLAN_MASK  0xffff0000
2674 #define IGB_TX_FLAGS_VLAN_SHIFT 16
2675
2676 static inline int igb_tso_adv(struct igb_adapter *adapter,
2677                               struct igb_ring *tx_ring,
2678                               struct sk_buff *skb, u32 tx_flags, u8 *hdr_len)
2679 {
2680         struct e1000_adv_tx_context_desc *context_desc;
2681         unsigned int i;
2682         int err;
2683         struct igb_buffer *buffer_info;
2684         u32 info = 0, tu_cmd = 0;
2685         u32 mss_l4len_idx, l4len;
2686         *hdr_len = 0;
2687
2688         if (skb_header_cloned(skb)) {
2689                 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2690                 if (err)
2691                         return err;
2692         }
2693
2694         l4len = tcp_hdrlen(skb);
2695         *hdr_len += l4len;
2696
2697         if (skb->protocol == htons(ETH_P_IP)) {
2698                 struct iphdr *iph = ip_hdr(skb);
2699                 iph->tot_len = 0;
2700                 iph->check = 0;
2701                 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
2702                                                          iph->daddr, 0,
2703                                                          IPPROTO_TCP,
2704                                                          0);
2705         } else if (skb_shinfo(skb)->gso_type == SKB_GSO_TCPV6) {
2706                 ipv6_hdr(skb)->payload_len = 0;
2707                 tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
2708                                                        &ipv6_hdr(skb)->daddr,
2709                                                        0, IPPROTO_TCP, 0);
2710         }
2711
2712         i = tx_ring->next_to_use;
2713
2714         buffer_info = &tx_ring->buffer_info[i];
2715         context_desc = E1000_TX_CTXTDESC_ADV(*tx_ring, i);
2716         /* VLAN MACLEN IPLEN */
2717         if (tx_flags & IGB_TX_FLAGS_VLAN)
2718                 info |= (tx_flags & IGB_TX_FLAGS_VLAN_MASK);
2719         info |= (skb_network_offset(skb) << E1000_ADVTXD_MACLEN_SHIFT);
2720         *hdr_len += skb_network_offset(skb);
2721         info |= skb_network_header_len(skb);
2722         *hdr_len += skb_network_header_len(skb);
2723         context_desc->vlan_macip_lens = cpu_to_le32(info);
2724
2725         /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
2726         tu_cmd |= (E1000_TXD_CMD_DEXT | E1000_ADVTXD_DTYP_CTXT);
2727
2728         if (skb->protocol == htons(ETH_P_IP))
2729                 tu_cmd |= E1000_ADVTXD_TUCMD_IPV4;
2730         tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP;
2731
2732         context_desc->type_tucmd_mlhl = cpu_to_le32(tu_cmd);
2733
2734         /* MSS L4LEN IDX */
2735         mss_l4len_idx = (skb_shinfo(skb)->gso_size << E1000_ADVTXD_MSS_SHIFT);
2736         mss_l4len_idx |= (l4len << E1000_ADVTXD_L4LEN_SHIFT);
2737
2738         /* Context index must be unique per ring. */
2739         if (adapter->flags & IGB_FLAG_NEED_CTX_IDX)
2740                 mss_l4len_idx |= tx_ring->queue_index << 4;
2741
2742         context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
2743         context_desc->seqnum_seed = 0;
2744
2745         buffer_info->time_stamp = jiffies;
2746         buffer_info->dma = 0;
2747         i++;
2748         if (i == tx_ring->count)
2749                 i = 0;
2750
2751         tx_ring->next_to_use = i;
2752
2753         return true;
2754 }
2755
2756 static inline bool igb_tx_csum_adv(struct igb_adapter *adapter,
2757                                         struct igb_ring *tx_ring,
2758                                         struct sk_buff *skb, u32 tx_flags)
2759 {
2760         struct e1000_adv_tx_context_desc *context_desc;
2761         unsigned int i;
2762         struct igb_buffer *buffer_info;
2763         u32 info = 0, tu_cmd = 0;
2764
2765         if ((skb->ip_summed == CHECKSUM_PARTIAL) ||
2766             (tx_flags & IGB_TX_FLAGS_VLAN)) {
2767                 i = tx_ring->next_to_use;
2768                 buffer_info = &tx_ring->buffer_info[i];
2769                 context_desc = E1000_TX_CTXTDESC_ADV(*tx_ring, i);
2770
2771                 if (tx_flags & IGB_TX_FLAGS_VLAN)
2772                         info |= (tx_flags & IGB_TX_FLAGS_VLAN_MASK);
2773                 info |= (skb_network_offset(skb) << E1000_ADVTXD_MACLEN_SHIFT);
2774                 if (skb->ip_summed == CHECKSUM_PARTIAL)
2775                         info |= skb_network_header_len(skb);
2776
2777                 context_desc->vlan_macip_lens = cpu_to_le32(info);
2778
2779                 tu_cmd |= (E1000_TXD_CMD_DEXT | E1000_ADVTXD_DTYP_CTXT);
2780
2781                 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2782                         switch (skb->protocol) {
2783                         case __constant_htons(ETH_P_IP):
2784                                 tu_cmd |= E1000_ADVTXD_TUCMD_IPV4;
2785                                 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
2786                                         tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP;
2787                                 break;
2788                         case __constant_htons(ETH_P_IPV6):
2789                                 /* XXX what about other V6 headers?? */
2790                                 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
2791                                         tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP;
2792                                 break;
2793                         default:
2794                                 if (unlikely(net_ratelimit()))
2795                                         dev_warn(&adapter->pdev->dev,
2796                                             "partial checksum but proto=%x!\n",
2797                                             skb->protocol);
2798                                 break;
2799                         }
2800                 }
2801
2802                 context_desc->type_tucmd_mlhl = cpu_to_le32(tu_cmd);
2803                 context_desc->seqnum_seed = 0;
2804                 if (adapter->flags & IGB_FLAG_NEED_CTX_IDX)
2805                         context_desc->mss_l4len_idx =
2806                                 cpu_to_le32(tx_ring->queue_index << 4);
2807
2808                 buffer_info->time_stamp = jiffies;
2809                 buffer_info->dma = 0;
2810
2811                 i++;
2812                 if (i == tx_ring->count)
2813                         i = 0;
2814                 tx_ring->next_to_use = i;
2815
2816                 return true;
2817         }
2818
2819
2820         return false;
2821 }
2822
2823 #define IGB_MAX_TXD_PWR 16
2824 #define IGB_MAX_DATA_PER_TXD    (1<<IGB_MAX_TXD_PWR)
2825
2826 static inline int igb_tx_map_adv(struct igb_adapter *adapter,
2827                                  struct igb_ring *tx_ring,
2828                                  struct sk_buff *skb)
2829 {
2830         struct igb_buffer *buffer_info;
2831         unsigned int len = skb_headlen(skb);
2832         unsigned int count = 0, i;
2833         unsigned int f;
2834
2835         i = tx_ring->next_to_use;
2836
2837         buffer_info = &tx_ring->buffer_info[i];
2838         BUG_ON(len >= IGB_MAX_DATA_PER_TXD);
2839         buffer_info->length = len;
2840         /* set time_stamp *before* dma to help avoid a possible race */
2841         buffer_info->time_stamp = jiffies;
2842         buffer_info->dma = pci_map_single(adapter->pdev, skb->data, len,
2843                                           PCI_DMA_TODEVICE);
2844         count++;
2845         i++;
2846         if (i == tx_ring->count)
2847                 i = 0;
2848
2849         for (f = 0; f < skb_shinfo(skb)->nr_frags; f++) {
2850                 struct skb_frag_struct *frag;
2851
2852                 frag = &skb_shinfo(skb)->frags[f];
2853                 len = frag->size;
2854
2855                 buffer_info = &tx_ring->buffer_info[i];
2856                 BUG_ON(len >= IGB_MAX_DATA_PER_TXD);
2857                 buffer_info->length = len;
2858                 buffer_info->time_stamp = jiffies;
2859                 buffer_info->dma = pci_map_page(adapter->pdev,
2860                                                 frag->page,
2861                                                 frag->page_offset,
2862                                                 len,
2863                                                 PCI_DMA_TODEVICE);
2864
2865                 count++;
2866                 i++;
2867                 if (i == tx_ring->count)
2868                         i = 0;
2869         }
2870
2871         i = (i == 0) ? tx_ring->count - 1 : i - 1;
2872         tx_ring->buffer_info[i].skb = skb;
2873
2874         return count;
2875 }
2876
2877 static inline void igb_tx_queue_adv(struct igb_adapter *adapter,
2878                                     struct igb_ring *tx_ring,
2879                                     int tx_flags, int count, u32 paylen,
2880                                     u8 hdr_len)
2881 {
2882         union e1000_adv_tx_desc *tx_desc = NULL;
2883         struct igb_buffer *buffer_info;
2884         u32 olinfo_status = 0, cmd_type_len;
2885         unsigned int i;
2886
2887         cmd_type_len = (E1000_ADVTXD_DTYP_DATA | E1000_ADVTXD_DCMD_IFCS |
2888                         E1000_ADVTXD_DCMD_DEXT);
2889
2890         if (tx_flags & IGB_TX_FLAGS_VLAN)
2891                 cmd_type_len |= E1000_ADVTXD_DCMD_VLE;
2892
2893         if (tx_flags & IGB_TX_FLAGS_TSO) {
2894                 cmd_type_len |= E1000_ADVTXD_DCMD_TSE;
2895
2896                 /* insert tcp checksum */
2897                 olinfo_status |= E1000_TXD_POPTS_TXSM << 8;
2898
2899                 /* insert ip checksum */
2900                 if (tx_flags & IGB_TX_FLAGS_IPV4)
2901                         olinfo_status |= E1000_TXD_POPTS_IXSM << 8;
2902
2903         } else if (tx_flags & IGB_TX_FLAGS_CSUM) {
2904                 olinfo_status |= E1000_TXD_POPTS_TXSM << 8;
2905         }
2906
2907         if ((adapter->flags & IGB_FLAG_NEED_CTX_IDX) &&
2908             (tx_flags & (IGB_TX_FLAGS_CSUM | IGB_TX_FLAGS_TSO |
2909                          IGB_TX_FLAGS_VLAN)))
2910                 olinfo_status |= tx_ring->queue_index << 4;
2911
2912         olinfo_status |= ((paylen - hdr_len) << E1000_ADVTXD_PAYLEN_SHIFT);
2913
2914         i = tx_ring->next_to_use;
2915         while (count--) {
2916                 buffer_info = &tx_ring->buffer_info[i];
2917                 tx_desc = E1000_TX_DESC_ADV(*tx_ring, i);
2918                 tx_desc->read.buffer_addr = cpu_to_le64(buffer_info->dma);
2919                 tx_desc->read.cmd_type_len =
2920                         cpu_to_le32(cmd_type_len | buffer_info->length);
2921                 tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status);
2922                 i++;
2923                 if (i == tx_ring->count)
2924                         i = 0;
2925         }
2926
2927         tx_desc->read.cmd_type_len |= cpu_to_le32(adapter->txd_cmd);
2928         /* Force memory writes to complete before letting h/w
2929          * know there are new descriptors to fetch.  (Only
2930          * applicable for weak-ordered memory model archs,
2931          * such as IA-64). */
2932         wmb();
2933
2934         tx_ring->next_to_use = i;
2935         writel(i, adapter->hw.hw_addr + tx_ring->tail);
2936         /* we need this if more than one processor can write to our tail
2937          * at a time, it syncronizes IO on IA64/Altix systems */
2938         mmiowb();
2939 }
2940
2941 static int __igb_maybe_stop_tx(struct net_device *netdev,
2942                                struct igb_ring *tx_ring, int size)
2943 {
2944         struct igb_adapter *adapter = netdev_priv(netdev);
2945
2946 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
2947         netif_stop_subqueue(netdev, tx_ring->queue_index);
2948 #else
2949         netif_stop_queue(netdev);
2950 #endif
2951
2952         /* Herbert's original patch had:
2953          *  smp_mb__after_netif_stop_queue();
2954          * but since that doesn't exist yet, just open code it. */
2955         smp_mb();
2956
2957         /* We need to check again in a case another CPU has just
2958          * made room available. */
2959         if (IGB_DESC_UNUSED(tx_ring) < size)
2960                 return -EBUSY;
2961
2962         /* A reprieve! */
2963 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
2964         netif_wake_subqueue(netdev, tx_ring->queue_index);
2965 #else
2966         netif_wake_queue(netdev);
2967 #endif  
2968         ++adapter->restart_queue;
2969         return 0;
2970 }
2971
2972 static int igb_maybe_stop_tx(struct net_device *netdev,
2973                              struct igb_ring *tx_ring, int size)
2974 {
2975         if (IGB_DESC_UNUSED(tx_ring) >= size)
2976                 return 0;
2977         return __igb_maybe_stop_tx(netdev, tx_ring, size);
2978 }
2979
2980 #define TXD_USE_COUNT(S) (((S) >> (IGB_MAX_TXD_PWR)) + 1)
2981
2982 static int igb_xmit_frame_ring_adv(struct sk_buff *skb,
2983                                    struct net_device *netdev,
2984                                    struct igb_ring *tx_ring)
2985 {
2986         struct igb_adapter *adapter = netdev_priv(netdev);
2987         unsigned int tx_flags = 0;
2988         unsigned int len;
2989         u8 hdr_len = 0;
2990         int tso = 0;
2991
2992         len = skb_headlen(skb);
2993
2994         if (test_bit(__IGB_DOWN, &adapter->state)) {
2995                 dev_kfree_skb_any(skb);
2996                 return NETDEV_TX_OK;
2997         }
2998
2999         if (skb->len <= 0) {
3000                 dev_kfree_skb_any(skb);
3001                 return NETDEV_TX_OK;
3002         }
3003
3004         /* need: 1 descriptor per page,
3005          *       + 2 desc gap to keep tail from touching head,
3006          *       + 1 desc for skb->data,
3007          *       + 1 desc for context descriptor,
3008          * otherwise try next time */
3009         if (igb_maybe_stop_tx(netdev, tx_ring, skb_shinfo(skb)->nr_frags + 4)) {
3010                 /* this is a hard error */
3011                 return NETDEV_TX_BUSY;
3012         }
3013         skb_orphan(skb);
3014
3015         if (adapter->vlgrp && vlan_tx_tag_present(skb)) {
3016                 tx_flags |= IGB_TX_FLAGS_VLAN;
3017                 tx_flags |= (vlan_tx_tag_get(skb) << IGB_TX_FLAGS_VLAN_SHIFT);
3018         }
3019
3020         if (skb->protocol == htons(ETH_P_IP))
3021                 tx_flags |= IGB_TX_FLAGS_IPV4;
3022
3023         tso = skb_is_gso(skb) ? igb_tso_adv(adapter, tx_ring, skb, tx_flags,
3024                                               &hdr_len) : 0;
3025
3026         if (tso < 0) {
3027                 dev_kfree_skb_any(skb);
3028                 return NETDEV_TX_OK;
3029         }
3030
3031         if (tso)
3032                 tx_flags |= IGB_TX_FLAGS_TSO;
3033         else if (igb_tx_csum_adv(adapter, tx_ring, skb, tx_flags))
3034                         if (skb->ip_summed == CHECKSUM_PARTIAL)
3035                                 tx_flags |= IGB_TX_FLAGS_CSUM;
3036
3037         igb_tx_queue_adv(adapter, tx_ring, tx_flags,
3038                          igb_tx_map_adv(adapter, tx_ring, skb),
3039                          skb->len, hdr_len);
3040
3041         netdev->trans_start = jiffies;
3042
3043         /* Make sure there is space in the ring for the next send. */
3044         igb_maybe_stop_tx(netdev, tx_ring, MAX_SKB_FRAGS + 4);
3045
3046         return NETDEV_TX_OK;
3047 }
3048
3049 static int igb_xmit_frame_adv(struct sk_buff *skb, struct net_device *netdev)
3050 {
3051         struct igb_adapter *adapter = netdev_priv(netdev);
3052         struct igb_ring *tx_ring;
3053
3054 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
3055         int r_idx = 0;
3056         r_idx = skb->queue_mapping & (IGB_MAX_TX_QUEUES - 1);
3057         tx_ring = adapter->multi_tx_table[r_idx];
3058 #else
3059         tx_ring = &adapter->tx_ring[0];
3060 #endif
3061
3062
3063         /* This goes back to the question of how to logically map a tx queue
3064          * to a flow.  Right now, performance is impacted slightly negatively
3065          * if using multiple tx queues.  If the stack breaks away from a
3066          * single qdisc implementation, we can look at this again. */
3067         return (igb_xmit_frame_ring_adv(skb, netdev, tx_ring));
3068 }
3069
3070 /**
3071  * igb_tx_timeout - Respond to a Tx Hang
3072  * @netdev: network interface device structure
3073  **/
3074 static void igb_tx_timeout(struct net_device *netdev)
3075 {
3076         struct igb_adapter *adapter = netdev_priv(netdev);
3077         struct e1000_hw *hw = &adapter->hw;
3078
3079         /* Do the reset outside of interrupt context */
3080         adapter->tx_timeout_count++;
3081         schedule_work(&adapter->reset_task);
3082         wr32(E1000_EICS, adapter->eims_enable_mask &
3083                 ~(E1000_EIMS_TCP_TIMER | E1000_EIMS_OTHER));
3084 }
3085
3086 static void igb_reset_task(struct work_struct *work)
3087 {
3088         struct igb_adapter *adapter;
3089         adapter = container_of(work, struct igb_adapter, reset_task);
3090
3091         igb_reinit_locked(adapter);
3092 }
3093
3094 /**
3095  * igb_get_stats - Get System Network Statistics
3096  * @netdev: network interface device structure
3097  *
3098  * Returns the address of the device statistics structure.
3099  * The statistics are actually updated from the timer callback.
3100  **/
3101 static struct net_device_stats *
3102 igb_get_stats(struct net_device *netdev)
3103 {
3104         struct igb_adapter *adapter = netdev_priv(netdev);
3105
3106         /* only return the current stats */
3107         return &adapter->net_stats;
3108 }
3109
3110 /**
3111  * igb_change_mtu - Change the Maximum Transfer Unit
3112  * @netdev: network interface device structure
3113  * @new_mtu: new value for maximum frame size
3114  *
3115  * Returns 0 on success, negative on failure
3116  **/
3117 static int igb_change_mtu(struct net_device *netdev, int new_mtu)
3118 {
3119         struct igb_adapter *adapter = netdev_priv(netdev);
3120         int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
3121
3122         if ((max_frame < ETH_ZLEN + ETH_FCS_LEN) ||
3123             (max_frame > MAX_JUMBO_FRAME_SIZE)) {
3124                 dev_err(&adapter->pdev->dev, "Invalid MTU setting\n");
3125                 return -EINVAL;
3126         }
3127
3128 #define MAX_STD_JUMBO_FRAME_SIZE 9234
3129         if (max_frame > MAX_STD_JUMBO_FRAME_SIZE) {
3130                 dev_err(&adapter->pdev->dev, "MTU > 9216 not supported.\n");
3131                 return -EINVAL;
3132         }
3133
3134         while (test_and_set_bit(__IGB_RESETTING, &adapter->state))
3135                 msleep(1);
3136         /* igb_down has a dependency on max_frame_size */
3137         adapter->max_frame_size = max_frame;
3138         if (netif_running(netdev))
3139                 igb_down(adapter);
3140
3141         /* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
3142          * means we reserve 2 more, this pushes us to allocate from the next
3143          * larger slab size.
3144          * i.e. RXBUFFER_2048 --> size-4096 slab
3145          */
3146
3147         if (max_frame <= IGB_RXBUFFER_256)
3148                 adapter->rx_buffer_len = IGB_RXBUFFER_256;
3149         else if (max_frame <= IGB_RXBUFFER_512)
3150                 adapter->rx_buffer_len = IGB_RXBUFFER_512;
3151         else if (max_frame <= IGB_RXBUFFER_1024)
3152                 adapter->rx_buffer_len = IGB_RXBUFFER_1024;
3153         else if (max_frame <= IGB_RXBUFFER_2048)
3154                 adapter->rx_buffer_len = IGB_RXBUFFER_2048;
3155         else
3156 #if (PAGE_SIZE / 2) > IGB_RXBUFFER_16384
3157                 adapter->rx_buffer_len = IGB_RXBUFFER_16384;
3158 #else
3159                 adapter->rx_buffer_len = PAGE_SIZE / 2;
3160 #endif
3161         /* adjust allocation if LPE protects us, and we aren't using SBP */
3162         if ((max_frame == ETH_FRAME_LEN + ETH_FCS_LEN) ||
3163              (max_frame == MAXIMUM_ETHERNET_VLAN_SIZE))
3164                 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
3165
3166         dev_info(&adapter->pdev->dev, "changing MTU from %d to %d\n",
3167                  netdev->mtu, new_mtu);
3168         netdev->mtu = new_mtu;
3169
3170         if (netif_running(netdev))
3171                 igb_up(adapter);
3172         else
3173                 igb_reset(adapter);
3174
3175         clear_bit(__IGB_RESETTING, &adapter->state);
3176
3177         return 0;
3178 }
3179
3180 /**
3181  * igb_update_stats - Update the board statistics counters
3182  * @adapter: board private structure
3183  **/
3184
3185 void igb_update_stats(struct igb_adapter *adapter)
3186 {
3187         struct e1000_hw *hw = &adapter->hw;
3188         struct pci_dev *pdev = adapter->pdev;
3189         u16 phy_tmp;
3190
3191 #define PHY_IDLE_ERROR_COUNT_MASK 0x00FF
3192
3193         /*
3194          * Prevent stats update while adapter is being reset, or if the pci
3195          * connection is down.
3196          */
3197         if (adapter->link_speed == 0)
3198                 return;
3199         if (pci_channel_offline(pdev))
3200                 return;
3201
3202         adapter->stats.crcerrs += rd32(E1000_CRCERRS);
3203         adapter->stats.gprc += rd32(E1000_GPRC);
3204         adapter->stats.gorc += rd32(E1000_GORCL);
3205         rd32(E1000_GORCH); /* clear GORCL */
3206         adapter->stats.bprc += rd32(E1000_BPRC);
3207         adapter->stats.mprc += rd32(E1000_MPRC);
3208         adapter->stats.roc += rd32(E1000_ROC);
3209
3210         adapter->stats.prc64 += rd32(E1000_PRC64);
3211         adapter->stats.prc127 += rd32(E1000_PRC127);
3212         adapter->stats.prc255 += rd32(E1000_PRC255);
3213         adapter->stats.prc511 += rd32(E1000_PRC511);
3214         adapter->stats.prc1023 += rd32(E1000_PRC1023);
3215         adapter->stats.prc1522 += rd32(E1000_PRC1522);
3216         adapter->stats.symerrs += rd32(E1000_SYMERRS);
3217         adapter->stats.sec += rd32(E1000_SEC);
3218
3219         adapter->stats.mpc += rd32(E1000_MPC);
3220         adapter->stats.scc += rd32(E1000_SCC);
3221         adapter->stats.ecol += rd32(E1000_ECOL);
3222         adapter->stats.mcc += rd32(E1000_MCC);
3223         adapter->stats.latecol += rd32(E1000_LATECOL);
3224         adapter->stats.dc += rd32(E1000_DC);
3225         adapter->stats.rlec += rd32(E1000_RLEC);
3226         adapter->stats.xonrxc += rd32(E1000_XONRXC);
3227         adapter->stats.xontxc += rd32(E1000_XONTXC);
3228         adapter->stats.xoffrxc += rd32(E1000_XOFFRXC);
3229         adapter->stats.xofftxc += rd32(E1000_XOFFTXC);
3230         adapter->stats.fcruc += rd32(E1000_FCRUC);
3231         adapter->stats.gptc += rd32(E1000_GPTC);
3232         adapter->stats.gotc += rd32(E1000_GOTCL);
3233         rd32(E1000_GOTCH); /* clear GOTCL */
3234         adapter->stats.rnbc += rd32(E1000_RNBC);
3235         adapter->stats.ruc += rd32(E1000_RUC);
3236         adapter->stats.rfc += rd32(E1000_RFC);
3237         adapter->stats.rjc += rd32(E1000_RJC);
3238         adapter->stats.tor += rd32(E1000_TORH);
3239         adapter->stats.tot += rd32(E1000_TOTH);
3240         adapter->stats.tpr += rd32(E1000_TPR);
3241
3242         adapter->stats.ptc64 += rd32(E1000_PTC64);
3243         adapter->stats.ptc127 += rd32(E1000_PTC127);
3244         adapter->stats.ptc255 += rd32(E1000_PTC255);
3245         adapter->stats.ptc511 += rd32(E1000_PTC511);
3246         adapter->stats.ptc1023 += rd32(E1000_PTC1023);
3247         adapter->stats.ptc1522 += rd32(E1000_PTC1522);
3248
3249         adapter->stats.mptc += rd32(E1000_MPTC);
3250         adapter->stats.bptc += rd32(E1000_BPTC);
3251
3252         /* used for adaptive IFS */
3253
3254         hw->mac.tx_packet_delta = rd32(E1000_TPT);
3255         adapter->stats.tpt += hw->mac.tx_packet_delta;
3256         hw->mac.collision_delta = rd32(E1000_COLC);
3257         adapter->stats.colc += hw->mac.collision_delta;
3258
3259         adapter->stats.algnerrc += rd32(E1000_ALGNERRC);
3260         adapter->stats.rxerrc += rd32(E1000_RXERRC);
3261         adapter->stats.tncrs += rd32(E1000_TNCRS);
3262         adapter->stats.tsctc += rd32(E1000_TSCTC);
3263         adapter->stats.tsctfc += rd32(E1000_TSCTFC);
3264
3265         adapter->stats.iac += rd32(E1000_IAC);
3266         adapter->stats.icrxoc += rd32(E1000_ICRXOC);
3267         adapter->stats.icrxptc += rd32(E1000_ICRXPTC);
3268         adapter->stats.icrxatc += rd32(E1000_ICRXATC);
3269         adapter->stats.ictxptc += rd32(E1000_ICTXPTC);
3270         adapter->stats.ictxatc += rd32(E1000_ICTXATC);
3271         adapter->stats.ictxqec += rd32(E1000_ICTXQEC);
3272         adapter->stats.ictxqmtc += rd32(E1000_ICTXQMTC);
3273         adapter->stats.icrxdmtc += rd32(E1000_ICRXDMTC);
3274
3275         /* Fill out the OS statistics structure */
3276         adapter->net_stats.multicast = adapter->stats.mprc;
3277         adapter->net_stats.collisions = adapter->stats.colc;
3278
3279         /* Rx Errors */
3280
3281         /* RLEC on some newer hardware can be incorrect so build
3282         * our own version based on RUC and ROC */
3283         adapter->net_stats.rx_errors = adapter->stats.rxerrc +
3284                 adapter->stats.crcerrs + adapter->stats.algnerrc +
3285                 adapter->stats.ruc + adapter->stats.roc +
3286                 adapter->stats.cexterr;
3287         adapter->net_stats.rx_length_errors = adapter->stats.ruc +
3288                                               adapter->stats.roc;
3289         adapter->net_stats.rx_crc_errors = adapter->stats.crcerrs;
3290         adapter->net_stats.rx_frame_errors = adapter->stats.algnerrc;
3291         adapter->net_stats.rx_missed_errors = adapter->stats.mpc;
3292
3293         /* Tx Errors */
3294         adapter->net_stats.tx_errors = adapter->stats.ecol +
3295                                        adapter->stats.latecol;
3296         adapter->net_stats.tx_aborted_errors = adapter->stats.ecol;
3297         adapter->net_stats.tx_window_errors = adapter->stats.latecol;
3298         adapter->net_stats.tx_carrier_errors = adapter->stats.tncrs;
3299
3300         /* Tx Dropped needs to be maintained elsewhere */
3301
3302         /* Phy Stats */
3303         if (hw->phy.media_type == e1000_media_type_copper) {
3304                 if ((adapter->link_speed == SPEED_1000) &&
3305                    (!hw->phy.ops.read_phy_reg(hw, PHY_1000T_STATUS,
3306                                               &phy_tmp))) {
3307                         phy_tmp &= PHY_IDLE_ERROR_COUNT_MASK;
3308                         adapter->phy_stats.idle_errors += phy_tmp;
3309                 }
3310         }
3311
3312         /* Management Stats */
3313         adapter->stats.mgptc += rd32(E1000_MGTPTC);
3314         adapter->stats.mgprc += rd32(E1000_MGTPRC);
3315         adapter->stats.mgpdc += rd32(E1000_MGTPDC);
3316 }
3317
3318
3319 static irqreturn_t igb_msix_other(int irq, void *data)
3320 {
3321         struct net_device *netdev = data;
3322         struct igb_adapter *adapter = netdev_priv(netdev);
3323         struct e1000_hw *hw = &adapter->hw;
3324         u32 icr = rd32(E1000_ICR);
3325
3326         /* reading ICR causes bit 31 of EICR to be cleared */
3327         if (!(icr & E1000_ICR_LSC))
3328                 goto no_link_interrupt;
3329         hw->mac.get_link_status = 1;
3330         /* guard against interrupt when we're going down */
3331         if (!test_bit(__IGB_DOWN, &adapter->state))
3332                 mod_timer(&adapter->watchdog_timer, jiffies + 1);
3333         
3334 no_link_interrupt:
3335         wr32(E1000_IMS, E1000_IMS_LSC);
3336         wr32(E1000_EIMS, adapter->eims_other);
3337
3338         return IRQ_HANDLED;
3339 }
3340
3341 static irqreturn_t igb_msix_tx(int irq, void *data)
3342 {
3343         struct igb_ring *tx_ring = data;
3344         struct igb_adapter *adapter = tx_ring->adapter;
3345         struct e1000_hw *hw = &adapter->hw;
3346
3347 #ifdef CONFIG_DCA
3348         if (adapter->flags & IGB_FLAG_DCA_ENABLED)
3349                 igb_update_tx_dca(tx_ring);
3350 #endif
3351         tx_ring->total_bytes = 0;
3352         tx_ring->total_packets = 0;
3353
3354         /* auto mask will automatically reenable the interrupt when we write
3355          * EICS */
3356         if (!igb_clean_tx_irq(tx_ring))
3357                 /* Ring was not completely cleaned, so fire another interrupt */
3358                 wr32(E1000_EICS, tx_ring->eims_value);
3359         else
3360                 wr32(E1000_EIMS, tx_ring->eims_value);
3361
3362         return IRQ_HANDLED;
3363 }
3364
3365 static void igb_write_itr(struct igb_ring *ring)
3366 {
3367         struct e1000_hw *hw = &ring->adapter->hw;
3368         if ((ring->adapter->itr_setting & 3) && ring->set_itr) {
3369                 switch (hw->mac.type) {
3370                 case e1000_82576:
3371                         wr32(ring->itr_register,
3372                              ring->itr_val |
3373                              0x80000000);
3374                         break;
3375                 default:
3376                         wr32(ring->itr_register,
3377                              ring->itr_val |
3378                              (ring->itr_val << 16));
3379                         break;
3380                 }
3381                 ring->set_itr = 0;
3382         }
3383 }
3384
3385 static irqreturn_t igb_msix_rx(int irq, void *data)
3386 {
3387         struct igb_ring *rx_ring = data;
3388         struct igb_adapter *adapter = rx_ring->adapter;
3389
3390         /* Write the ITR value calculated at the end of the
3391          * previous interrupt.
3392          */
3393
3394         igb_write_itr(rx_ring);
3395
3396         if (netif_rx_schedule_prep(adapter->netdev, &rx_ring->napi))
3397                 __netif_rx_schedule(adapter->netdev, &rx_ring->napi);
3398
3399 #ifdef CONFIG_DCA
3400         if (adapter->flags & IGB_FLAG_DCA_ENABLED)
3401                 igb_update_rx_dca(rx_ring);
3402 #endif
3403                 return IRQ_HANDLED;
3404 }
3405
3406 #ifdef CONFIG_DCA
3407 static void igb_update_rx_dca(struct igb_ring *rx_ring)
3408 {
3409         u32 dca_rxctrl;
3410         struct igb_adapter *adapter = rx_ring->adapter;
3411         struct e1000_hw *hw = &adapter->hw;
3412         int cpu = get_cpu();
3413         int q = rx_ring - adapter->rx_ring;
3414
3415         if (rx_ring->cpu != cpu) {
3416                 dca_rxctrl = rd32(E1000_DCA_RXCTRL(q));
3417                 if (hw->mac.type == e1000_82576) {
3418                         dca_rxctrl &= ~E1000_DCA_RXCTRL_CPUID_MASK_82576;
3419                         dca_rxctrl |= dca_get_tag(cpu) <<
3420                                       E1000_DCA_RXCTRL_CPUID_SHIFT;
3421                 } else {
3422                         dca_rxctrl &= ~E1000_DCA_RXCTRL_CPUID_MASK;
3423                         dca_rxctrl |= dca_get_tag(cpu);
3424                 }
3425                 dca_rxctrl |= E1000_DCA_RXCTRL_DESC_DCA_EN;
3426                 dca_rxctrl |= E1000_DCA_RXCTRL_HEAD_DCA_EN;
3427                 dca_rxctrl |= E1000_DCA_RXCTRL_DATA_DCA_EN;
3428                 wr32(E1000_DCA_RXCTRL(q), dca_rxctrl);
3429                 rx_ring->cpu = cpu;
3430         }
3431         put_cpu();
3432 }
3433
3434 static void igb_update_tx_dca(struct igb_ring *tx_ring)
3435 {
3436         u32 dca_txctrl;
3437         struct igb_adapter *adapter = tx_ring->adapter;
3438         struct e1000_hw *hw = &adapter->hw;
3439         int cpu = get_cpu();
3440         int q = tx_ring - adapter->tx_ring;
3441
3442         if (tx_ring->cpu != cpu) {
3443                 dca_txctrl = rd32(E1000_DCA_TXCTRL(q));
3444                 if (hw->mac.type == e1000_82576) {
3445                         dca_txctrl &= ~E1000_DCA_TXCTRL_CPUID_MASK_82576;
3446                         dca_txctrl |= dca_get_tag(cpu) <<
3447                                       E1000_DCA_TXCTRL_CPUID_SHIFT;
3448                 } else {
3449                         dca_txctrl &= ~E1000_DCA_TXCTRL_CPUID_MASK;
3450                         dca_txctrl |= dca_get_tag(cpu);
3451                 }
3452                 dca_txctrl |= E1000_DCA_TXCTRL_DESC_DCA_EN;
3453                 wr32(E1000_DCA_TXCTRL(q), dca_txctrl);
3454                 tx_ring->cpu = cpu;
3455         }
3456         put_cpu();
3457 }
3458
3459 static void igb_setup_dca(struct igb_adapter *adapter)
3460 {
3461         int i;
3462
3463         if (!(adapter->flags & IGB_FLAG_DCA_ENABLED))
3464                 return;
3465
3466         for (i = 0; i < adapter->num_tx_queues; i++) {
3467                 adapter->tx_ring[i].cpu = -1;
3468                 igb_update_tx_dca(&adapter->tx_ring[i]);
3469         }
3470         for (i = 0; i < adapter->num_rx_queues; i++) {
3471                 adapter->rx_ring[i].cpu = -1;
3472                 igb_update_rx_dca(&adapter->rx_ring[i]);
3473         }
3474 }
3475
3476 static int __igb_notify_dca(struct device *dev, void *data)
3477 {
3478         struct net_device *netdev = dev_get_drvdata(dev);
3479         struct igb_adapter *adapter = netdev_priv(netdev);
3480         struct e1000_hw *hw = &adapter->hw;
3481         unsigned long event = *(unsigned long *)data;
3482
3483         if (!(adapter->flags & IGB_FLAG_HAS_DCA))
3484                 goto out;
3485
3486         switch (event) {
3487         case DCA_PROVIDER_ADD:
3488                 /* if already enabled, don't do it again */
3489                 if (adapter->flags & IGB_FLAG_DCA_ENABLED)
3490                         break;
3491                 adapter->flags |= IGB_FLAG_DCA_ENABLED;
3492                 /* Always use CB2 mode, difference is masked
3493                  * in the CB driver. */
3494                 wr32(E1000_DCA_CTRL, 2);
3495                 if (dca_add_requester(dev) == 0) {
3496                         dev_info(&adapter->pdev->dev, "DCA enabled\n");
3497                         igb_setup_dca(adapter);
3498                         break;
3499                 }
3500                 /* Fall Through since DCA is disabled. */
3501         case DCA_PROVIDER_REMOVE:
3502                 if (adapter->flags & IGB_FLAG_DCA_ENABLED) {
3503                         /* without this a class_device is left
3504                          * hanging around in the sysfs model */
3505                         dca_remove_requester(dev);
3506                         dev_info(&adapter->pdev->dev, "DCA disabled\n");
3507                         adapter->flags &= ~IGB_FLAG_DCA_ENABLED;
3508                         wr32(E1000_DCA_CTRL, 1);
3509                 }
3510                 break;
3511         }
3512 out:
3513         return 0;
3514 }
3515
3516 static int igb_notify_dca(struct notifier_block *nb, unsigned long event,
3517                           void *p)
3518 {
3519         int ret_val;
3520
3521         ret_val = driver_for_each_device(&igb_driver.driver, NULL, &event,
3522                                          __igb_notify_dca);
3523
3524         return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
3525 }
3526 #endif /* CONFIG_DCA */
3527
3528 /**
3529  * igb_intr_msi - Interrupt Handler
3530  * @irq: interrupt number
3531  * @data: pointer to a network interface device structure
3532  **/
3533 static irqreturn_t igb_intr_msi(int irq, void *data)
3534 {
3535         struct net_device *netdev = data;
3536         struct igb_adapter *adapter = netdev_priv(netdev);
3537         struct e1000_hw *hw = &adapter->hw;
3538         /* read ICR disables interrupts using IAM */
3539         u32 icr = rd32(E1000_ICR);
3540
3541         igb_write_itr(adapter->rx_ring);
3542
3543         if (icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC)) {
3544                 hw->mac.get_link_status = 1;
3545                 if (!test_bit(__IGB_DOWN, &adapter->state))
3546                         mod_timer(&adapter->watchdog_timer, jiffies + 1);
3547         }
3548
3549         netif_rx_schedule(netdev, &adapter->rx_ring[0].napi);
3550
3551         return IRQ_HANDLED;
3552 }
3553
3554 /**
3555  * igb_intr - Interrupt Handler
3556  * @irq: interrupt number
3557  * @data: pointer to a network interface device structure
3558  **/
3559 static irqreturn_t igb_intr(int irq, void *data)
3560 {
3561         struct net_device *netdev = data;
3562         struct igb_adapter *adapter = netdev_priv(netdev);
3563         struct e1000_hw *hw = &adapter->hw;
3564         /* Interrupt Auto-Mask...upon reading ICR, interrupts are masked.  No
3565          * need for the IMC write */
3566         u32 icr = rd32(E1000_ICR);
3567         u32 eicr = 0;
3568         if (!icr)
3569                 return IRQ_NONE;  /* Not our interrupt */
3570
3571         igb_write_itr(adapter->rx_ring);
3572
3573         /* IMS will not auto-mask if INT_ASSERTED is not set, and if it is
3574          * not set, then the adapter didn't send an interrupt */
3575         if (!(icr & E1000_ICR_INT_ASSERTED))
3576                 return IRQ_NONE;
3577
3578         eicr = rd32(E1000_EICR);
3579
3580         if (icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC)) {
3581                 hw->mac.get_link_status = 1;
3582                 /* guard against interrupt when we're going down */
3583                 if (!test_bit(__IGB_DOWN, &adapter->state))
3584                         mod_timer(&adapter->watchdog_timer, jiffies + 1);
3585         }
3586
3587         netif_rx_schedule(netdev, &adapter->rx_ring[0].napi);
3588
3589         return IRQ_HANDLED;
3590 }
3591
3592 /**
3593  * igb_poll - NAPI Rx polling callback
3594  * @napi: napi polling structure
3595  * @budget: count of how many packets we should handle
3596  **/
3597 static int igb_poll(struct napi_struct *napi, int budget)
3598 {
3599         struct igb_ring *rx_ring = container_of(napi, struct igb_ring, napi);
3600         struct igb_adapter *adapter = rx_ring->adapter;
3601         struct net_device *netdev = adapter->netdev;
3602         int tx_clean_complete, work_done = 0;
3603
3604         /* this poll routine only supports one tx and one rx queue */
3605 #ifdef CONFIG_DCA
3606         if (adapter->flags & IGB_FLAG_DCA_ENABLED)
3607                 igb_update_tx_dca(&adapter->tx_ring[0]);
3608 #endif
3609         tx_clean_complete = igb_clean_tx_irq(&adapter->tx_ring[0]);
3610
3611 #ifdef CONFIG_DCA
3612         if (adapter->flags & IGB_FLAG_DCA_ENABLED)
3613                 igb_update_rx_dca(&adapter->rx_ring[0]);
3614 #endif
3615         igb_clean_rx_irq_adv(&adapter->rx_ring[0], &work_done, budget);
3616
3617         /* If no Tx and not enough Rx work done, exit the polling mode */
3618         if ((tx_clean_complete && (work_done < budget)) ||
3619             !netif_running(netdev)) {
3620                 if (adapter->itr_setting & 3)
3621                         igb_set_itr(adapter);
3622                 netif_rx_complete(netdev, napi);
3623                 if (!test_bit(__IGB_DOWN, &adapter->state))
3624                         igb_irq_enable(adapter);
3625                 return 0;
3626         }
3627
3628         return 1;
3629 }
3630
3631 static int igb_clean_rx_ring_msix(struct napi_struct *napi, int budget)
3632 {
3633         struct igb_ring *rx_ring = container_of(napi, struct igb_ring, napi);
3634         struct igb_adapter *adapter = rx_ring->adapter;
3635         struct e1000_hw *hw = &adapter->hw;
3636         struct net_device *netdev = adapter->netdev;
3637         int work_done = 0;
3638
3639         /* Keep link state information with original netdev */
3640         if (!netif_carrier_ok(netdev))
3641                 goto quit_polling;
3642
3643 #ifdef CONFIG_DCA
3644         if (adapter->flags & IGB_FLAG_DCA_ENABLED)
3645                 igb_update_rx_dca(rx_ring);
3646 #endif
3647         igb_clean_rx_irq_adv(rx_ring, &work_done, budget);
3648
3649
3650         /* If not enough Rx work done, exit the polling mode */
3651         if ((work_done == 0) || !netif_running(netdev)) {
3652 quit_polling:
3653                 netif_rx_complete(netdev, napi);
3654
3655                 if (adapter->itr_setting & 3) {
3656                         if (adapter->num_rx_queues == 1)
3657                                 igb_set_itr(adapter);
3658                         else
3659                                 igb_update_ring_itr(rx_ring);
3660                 }
3661
3662                 if (!test_bit(__IGB_DOWN, &adapter->state))
3663                         wr32(E1000_EIMS, rx_ring->eims_value);
3664
3665                 return 0;
3666         }
3667
3668         return 1;
3669 }
3670
3671 static inline u32 get_head(struct igb_ring *tx_ring)
3672 {
3673         void *end = (struct e1000_tx_desc *)tx_ring->desc + tx_ring->count;
3674         return le32_to_cpu(*(volatile __le32 *)end);
3675 }
3676
3677 /**
3678  * igb_clean_tx_irq - Reclaim resources after transmit completes
3679  * @adapter: board private structure
3680  * returns true if ring is completely cleaned
3681  **/
3682 static bool igb_clean_tx_irq(struct igb_ring *tx_ring)
3683 {
3684         struct igb_adapter *adapter = tx_ring->adapter;
3685         struct e1000_hw *hw = &adapter->hw;
3686         struct net_device *netdev = adapter->netdev;
3687         struct e1000_tx_desc *tx_desc;
3688         struct igb_buffer *buffer_info;
3689         struct sk_buff *skb;
3690         unsigned int i;
3691         u32 head, oldhead;
3692         unsigned int count = 0;
3693         bool cleaned = false;
3694         bool retval = true;
3695         unsigned int total_bytes = 0, total_packets = 0;
3696
3697         rmb();
3698         head = get_head(tx_ring);
3699         i = tx_ring->next_to_clean;
3700         while (1) {
3701                 while (i != head) {
3702                         cleaned = true;
3703                         tx_desc = E1000_TX_DESC(*tx_ring, i);
3704                         buffer_info = &tx_ring->buffer_info[i];
3705                         skb = buffer_info->skb;
3706
3707                         if (skb) {
3708                                 unsigned int segs, bytecount;
3709                                 /* gso_segs is currently only valid for tcp */
3710                                 segs = skb_shinfo(skb)->gso_segs ?: 1;
3711                                 /* multiply data chunks by size of headers */
3712                                 bytecount = ((segs - 1) * skb_headlen(skb)) +
3713                                             skb->len;
3714                                 total_packets += segs;
3715                                 total_bytes += bytecount;
3716                         }
3717
3718                         igb_unmap_and_free_tx_resource(adapter, buffer_info);
3719                         tx_desc->upper.data = 0;
3720
3721                         i++;
3722                         if (i == tx_ring->count)
3723                                 i = 0;
3724
3725                         count++;
3726                         if (count == IGB_MAX_TX_CLEAN) {
3727                                 retval = false;
3728                                 goto done_cleaning;
3729                         }
3730                 }
3731                 oldhead = head;
3732                 rmb();
3733                 head = get_head(tx_ring);
3734                 if (head == oldhead)
3735                         goto done_cleaning;
3736         }  /* while (1) */
3737
3738 done_cleaning:
3739         tx_ring->next_to_clean = i;
3740
3741         if (unlikely(cleaned &&
3742                      netif_carrier_ok(netdev) &&
3743                      IGB_DESC_UNUSED(tx_ring) >= IGB_TX_QUEUE_WAKE)) {
3744                 /* Make sure that anybody stopping the queue after this
3745                  * sees the new next_to_clean.
3746                  */
3747                 smp_mb();
3748 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
3749                 if (__netif_subqueue_stopped(netdev, tx_ring->queue_index) &&
3750                     !(test_bit(__IGB_DOWN, &adapter->state))) {
3751                         netif_wake_subqueue(netdev, tx_ring->queue_index);
3752                         ++adapter->restart_queue;
3753                 }
3754 #else
3755                 if (netif_queue_stopped(netdev) &&
3756                     !(test_bit(__IGB_DOWN, &adapter->state))) {
3757                         netif_wake_queue(netdev);
3758                         ++adapter->restart_queue;
3759                 }
3760 #endif          
3761         }
3762
3763         if (tx_ring->detect_tx_hung) {
3764                 /* Detect a transmit hang in hardware, this serializes the
3765                  * check with the clearing of time_stamp and movement of i */
3766                 tx_ring->detect_tx_hung = false;
3767                 if (tx_ring->buffer_info[i].time_stamp &&
3768                     time_after(jiffies, tx_ring->buffer_info[i].time_stamp +
3769                                (adapter->tx_timeout_factor * HZ))
3770                     && !(rd32(E1000_STATUS) &
3771                          E1000_STATUS_TXOFF)) {
3772
3773                         tx_desc = E1000_TX_DESC(*tx_ring, i);
3774                         /* detected Tx unit hang */
3775                         dev_err(&adapter->pdev->dev,
3776                                 "Detected Tx Unit Hang\n"
3777                                 "  Tx Queue             <%d>\n"
3778                                 "  TDH                  <%x>\n"
3779                                 "  TDT                  <%x>\n"
3780                                 "  next_to_use          <%x>\n"
3781                                 "  next_to_clean        <%x>\n"
3782                                 "  head (WB)            <%x>\n"
3783                                 "buffer_info[next_to_clean]\n"
3784                                 "  time_stamp           <%lx>\n"
3785                                 "  jiffies              <%lx>\n"
3786                                 "  desc.status          <%x>\n",
3787                                 tx_ring->queue_index,
3788                                 readl(adapter->hw.hw_addr + tx_ring->head),
3789                                 readl(adapter->hw.hw_addr + tx_ring->tail),
3790                                 tx_ring->next_to_use,
3791                                 tx_ring->next_to_clean,
3792                                 head,
3793                                 tx_ring->buffer_info[i].time_stamp,
3794                                 jiffies,
3795                                 tx_desc->upper.fields.status);
3796 #ifdef CONFIG_NETDEVICES_MULTIQUEUE
3797                         netif_stop_subqueue(netdev, tx_ring->queue_index);
3798 #else
3799                         netif_stop_queue(netdev);
3800 #endif
3801                 }
3802         }
3803         tx_ring->total_bytes += total_bytes;
3804         tx_ring->total_packets += total_packets;
3805         tx_ring->tx_stats.bytes += total_bytes;
3806         tx_ring->tx_stats.packets += total_packets;
3807         adapter->net_stats.tx_bytes += total_bytes;
3808         adapter->net_stats.tx_packets += total_packets;
3809         return retval;
3810 }
3811
3812 #ifdef CONFIG_IGB_LRO
3813  /**
3814  * igb_get_skb_hdr - helper function for LRO header processing
3815  * @skb: pointer to sk_buff to be added to LRO packet
3816  * @iphdr: pointer to ip header structure
3817  * @tcph: pointer to tcp header structure
3818  * @hdr_flags: pointer to header flags
3819  * @priv: pointer to the receive descriptor for the current sk_buff
3820  **/
3821 static int igb_get_skb_hdr(struct sk_buff *skb, void **iphdr, void **tcph,
3822                            u64 *hdr_flags, void *priv)
3823 {
3824         union e1000_adv_rx_desc *rx_desc = priv;
3825         u16 pkt_type = rx_desc->wb.lower.lo_dword.pkt_info &
3826                        (E1000_RXDADV_PKTTYPE_IPV4 | E1000_RXDADV_PKTTYPE_TCP);
3827
3828         /* Verify that this is a valid IPv4 TCP packet */
3829         if (pkt_type != (E1000_RXDADV_PKTTYPE_IPV4 |
3830                           E1000_RXDADV_PKTTYPE_TCP))
3831                 return -1;
3832
3833         /* Set network headers */
3834         skb_reset_network_header(skb);
3835         skb_set_transport_header(skb, ip_hdrlen(skb));
3836         *iphdr = ip_hdr(skb);
3837         *tcph = tcp_hdr(skb);
3838         *hdr_flags = LRO_IPV4 | LRO_TCP;
3839
3840         return 0;
3841
3842 }
3843 #endif /* CONFIG_IGB_LRO */
3844
3845 /**
3846  * igb_receive_skb - helper function to handle rx indications
3847  * @ring: pointer to receive ring receving this packet 
3848  * @status: descriptor status field as written by hardware
3849  * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
3850  * @skb: pointer to sk_buff to be indicated to stack
3851  **/
3852 static void igb_receive_skb(struct igb_ring *ring, u8 status,
3853                             union e1000_adv_rx_desc * rx_desc,
3854                             struct sk_buff *skb)
3855 {
3856         struct igb_adapter * adapter = ring->adapter;
3857         bool vlan_extracted = (adapter->vlgrp && (status & E1000_RXD_STAT_VP));
3858
3859 #ifdef CONFIG_IGB_LRO
3860         if (adapter->netdev->features & NETIF_F_LRO &&
3861             skb->ip_summed == CHECKSUM_UNNECESSARY) {
3862                 if (vlan_extracted)
3863                         lro_vlan_hwaccel_receive_skb(&ring->lro_mgr, skb,
3864                                            adapter->vlgrp,
3865                                            le16_to_cpu(rx_desc->wb.upper.vlan),
3866                                            rx_desc);
3867                 else
3868                         lro_receive_skb(&ring->lro_mgr,skb, rx_desc);
3869                 ring->lro_used = 1;
3870         } else {
3871 #endif
3872                 if (vlan_extracted)
3873                         vlan_hwaccel_receive_skb(skb, adapter->vlgrp,
3874                                           le16_to_cpu(rx_desc->wb.upper.vlan));
3875                 else
3876
3877                         netif_receive_skb(skb);
3878 #ifdef CONFIG_IGB_LRO
3879         }
3880 #endif
3881 }
3882
3883
3884 static inline void igb_rx_checksum_adv(struct igb_adapter *adapter,
3885                                        u32 status_err, struct sk_buff *skb)
3886 {
3887         skb->ip_summed = CHECKSUM_NONE;
3888
3889         /* Ignore Checksum bit is set or checksum is disabled through ethtool */
3890         if ((status_err & E1000_RXD_STAT_IXSM) || !adapter->rx_csum)
3891                 return;
3892         /* TCP/UDP checksum error bit is set */
3893         if (status_err &
3894             (E1000_RXDEXT_STATERR_TCPE | E1000_RXDEXT_STATERR_IPE)) {
3895                 /* let the stack verify checksum errors */
3896                 adapter->hw_csum_err++;
3897                 return;
3898         }
3899         /* It must be a TCP or UDP packet with a valid checksum */
3900         if (status_err & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS))
3901                 skb->ip_summed = CHECKSUM_UNNECESSARY;
3902
3903         adapter->hw_csum_good++;
3904 }
3905
3906 static bool igb_clean_rx_irq_adv(struct igb_ring *rx_ring,
3907                                  int *work_done, int budget)
3908 {
3909         struct igb_adapter *adapter = rx_ring->adapter;
3910         struct net_device *netdev = adapter->netdev;
3911         struct pci_dev *pdev = adapter->pdev;
3912         union e1000_adv_rx_desc *rx_desc , *next_rxd;
3913         struct igb_buffer *buffer_info , *next_buffer;
3914         struct sk_buff *skb;
3915         unsigned int i;
3916         u32 length, hlen, staterr;
3917         bool cleaned = false;
3918         int cleaned_count = 0;
3919         unsigned int total_bytes = 0, total_packets = 0;
3920
3921         i = rx_ring->next_to_clean;
3922         rx_desc = E1000_RX_DESC_ADV(*rx_ring, i);
3923         staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
3924
3925         while (staterr & E1000_RXD_STAT_DD) {
3926                 if (*work_done >= budget)
3927                         break;
3928                 (*work_done)++;
3929                 buffer_info = &rx_ring->buffer_info[i];
3930
3931                 /* HW will not DMA in data larger than the given buffer, even
3932                  * if it parses the (NFS, of course) header to be larger.  In
3933                  * that case, it fills the header buffer and spills the rest
3934                  * into the page.
3935                  */
3936                 hlen = (le16_to_cpu(rx_desc->wb.lower.lo_dword.hdr_info) &
3937                   E1000_RXDADV_HDRBUFLEN_MASK) >> E1000_RXDADV_HDRBUFLEN_SHIFT;
3938                 if (hlen > adapter->rx_ps_hdr_size)
3939                         hlen = adapter->rx_ps_hdr_size;
3940
3941                 length = le16_to_cpu(rx_desc->wb.upper.length);
3942                 cleaned = true;
3943                 cleaned_count++;
3944
3945                 skb = buffer_info->skb;
3946                 prefetch(skb->data - NET_IP_ALIGN);
3947                 buffer_info->skb = NULL;
3948                 if (!adapter->rx_ps_hdr_size) {
3949                         pci_unmap_single(pdev, buffer_info->dma,
3950                                          adapter->rx_buffer_len +
3951                                            NET_IP_ALIGN,
3952                                          PCI_DMA_FROMDEVICE);
3953                         skb_put(skb, length);
3954                         goto send_up;
3955                 }
3956
3957                 if (!skb_shinfo(skb)->nr_frags) {
3958                         pci_unmap_single(pdev, buffer_info->dma,
3959                                          adapter->rx_ps_hdr_size +
3960                                            NET_IP_ALIGN,
3961                                          PCI_DMA_FROMDEVICE);
3962                         skb_put(skb, hlen);
3963                 }
3964
3965                 if (length) {
3966                         pci_unmap_page(pdev, buffer_info->page_dma,
3967                                        PAGE_SIZE / 2, PCI_DMA_FROMDEVICE);
3968                         buffer_info->page_dma = 0;
3969
3970                         skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags++,
3971                                                 buffer_info->page,
3972                                                 buffer_info->page_offset,
3973                                                 length);
3974
3975                         if ((adapter->rx_buffer_len > (PAGE_SIZE / 2)) ||
3976                             (page_count(buffer_info->page) != 1))
3977                                 buffer_info->page = NULL;
3978                         else
3979                                 get_page(buffer_info->page);
3980
3981                         skb->len += length;
3982                         skb->data_len += length;
3983
3984                         skb->truesize += length;
3985                 }
3986 send_up:
3987                 i++;
3988                 if (i == rx_ring->count)
3989                         i = 0;
3990                 next_rxd = E1000_RX_DESC_ADV(*rx_ring, i);
3991                 prefetch(next_rxd);
3992                 next_buffer = &rx_ring->buffer_info[i];
3993
3994                 if (!(staterr & E1000_RXD_STAT_EOP)) {
3995                         buffer_info->skb = xchg(&next_buffer->skb, skb);
3996                         buffer_info->dma = xchg(&next_buffer->dma, 0);
3997                         goto next_desc;
3998                 }
3999
4000                 if (staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) {
4001                         dev_kfree_skb_irq(skb);
4002                         goto next_desc;
4003                 }
4004
4005                 total_bytes += skb->len;
4006                 total_packets++;
4007
4008                 igb_rx_checksum_adv(adapter, staterr, skb);
4009
4010                 skb->protocol = eth_type_trans(skb, netdev);
4011
4012                 igb_receive_skb(rx_ring, staterr, rx_desc, skb);
4013
4014                 netdev->last_rx = jiffies;
4015
4016 next_desc:
4017                 rx_desc->wb.upper.status_error = 0;
4018
4019                 /* return some buffers to hardware, one at a time is too slow */
4020                 if (cleaned_count >= IGB_RX_BUFFER_WRITE) {
4021                         igb_alloc_rx_buffers_adv(rx_ring, cleaned_count);
4022                         cleaned_count = 0;
4023                 }
4024
4025                 /* use prefetched values */
4026                 rx_desc = next_rxd;
4027                 buffer_info = next_buffer;
4028
4029                 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
4030         }
4031
4032         rx_ring->next_to_clean = i;
4033         cleaned_count = IGB_DESC_UNUSED(rx_ring);
4034
4035 #ifdef CONFIG_IGB_LRO
4036         if (rx_ring->lro_used) {
4037                 lro_flush_all(&rx_ring->lro_mgr);
4038                 rx_ring->lro_used = 0;
4039         }
4040 #endif
4041
4042         if (cleaned_count)
4043                 igb_alloc_rx_buffers_adv(rx_ring, cleaned_count);
4044
4045         rx_ring->total_packets += total_packets;
4046         rx_ring->total_bytes += total_bytes;
4047         rx_ring->rx_stats.packets += total_packets;
4048         rx_ring->rx_stats.bytes += total_bytes;
4049         adapter->net_stats.rx_bytes += total_bytes;
4050         adapter->net_stats.rx_packets += total_packets;
4051         return cleaned;
4052 }
4053
4054
4055 /**
4056  * igb_alloc_rx_buffers_adv - Replace used receive buffers; packet split
4057  * @adapter: address of board private structure
4058  **/
4059 static void igb_alloc_rx_buffers_adv(struct igb_ring *rx_ring,
4060                                      int cleaned_count)
4061 {
4062         struct igb_adapter *adapter = rx_ring->adapter;
4063         struct net_device *netdev = adapter->netdev;
4064         struct pci_dev *pdev = adapter->pdev;
4065         union e1000_adv_rx_desc *rx_desc;
4066         struct igb_buffer *buffer_info;
4067         struct sk_buff *skb;
4068         unsigned int i;
4069
4070         i = rx_ring->next_to_use;
4071         buffer_info = &rx_ring->buffer_info[i];
4072
4073         while (cleaned_count--) {
4074                 rx_desc = E1000_RX_DESC_ADV(*rx_ring, i);
4075
4076                 if (adapter->rx_ps_hdr_size && !buffer_info->page_dma) {
4077                         if (!buffer_info->page) {
4078                                 buffer_info->page = alloc_page(GFP_ATOMIC);
4079                                 if (!buffer_info->page) {
4080                                         adapter->alloc_rx_buff_failed++;
4081                                         goto no_buffers;
4082                                 }
4083                                 buffer_info->page_offset = 0;
4084                         } else {
4085                                 buffer_info->page_offset ^= PAGE_SIZE / 2;
4086                         }
4087                         buffer_info->page_dma =
4088                                 pci_map_page(pdev,
4089                                              buffer_info->page,
4090                                              buffer_info->page_offset,
4091                                              PAGE_SIZE / 2,
4092                                              PCI_DMA_FROMDEVICE);
4093                 }
4094
4095                 if (!buffer_info->skb) {
4096                         int bufsz;
4097
4098                         if (adapter->rx_ps_hdr_size)
4099                                 bufsz = adapter->rx_ps_hdr_size;
4100                         else
4101                                 bufsz = adapter->rx_buffer_len;
4102                         bufsz += NET_IP_ALIGN;
4103                         skb = netdev_alloc_skb(netdev, bufsz);
4104
4105                         if (!skb) {
4106                                 adapter->alloc_rx_buff_failed++;
4107                                 goto no_buffers;
4108                         }
4109
4110                         /* Make buffer alignment 2 beyond a 16 byte boundary
4111                          * this will result in a 16 byte aligned IP header after
4112                          * the 14 byte MAC header is removed
4113                          */
4114                         skb_reserve(skb, NET_IP_ALIGN);
4115
4116                         buffer_info->skb = skb;
4117                         buffer_info->dma = pci_map_single(pdev, skb->data,
4118                                                           bufsz,
4119                                                           PCI_DMA_FROMDEVICE);
4120
4121                 }
4122                 /* Refresh the desc even if buffer_addrs didn't change because
4123                  * each write-back erases this info. */
4124                 if (adapter->rx_ps_hdr_size) {
4125                         rx_desc->read.pkt_addr =
4126                              cpu_to_le64(buffer_info->page_dma);
4127                         rx_desc->read.hdr_addr = cpu_to_le64(buffer_info->dma);
4128                 } else {
4129                         rx_desc->read.pkt_addr =
4130                              cpu_to_le64(buffer_info->dma);
4131                         rx_desc->read.hdr_addr = 0;
4132                 }
4133
4134                 i++;
4135                 if (i == rx_ring->count)
4136                         i = 0;
4137                 buffer_info = &rx_ring->buffer_info[i];
4138         }
4139
4140 no_buffers:
4141         if (rx_ring->next_to_use != i) {
4142                 rx_ring->next_to_use = i;
4143                 if (i == 0)
4144                         i = (rx_ring->count - 1);
4145                 else
4146                         i--;
4147
4148                 /* Force memory writes to complete before letting h/w
4149                  * know there are new descriptors to fetch.  (Only
4150                  * applicable for weak-ordered memory model archs,
4151                  * such as IA-64). */
4152                 wmb();
4153                 writel(i, adapter->hw.hw_addr + rx_ring->tail);
4154         }
4155 }
4156
4157 /**
4158  * igb_mii_ioctl -
4159  * @netdev:
4160  * @ifreq:
4161  * @cmd:
4162  **/
4163 static int igb_mii_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
4164 {
4165         struct igb_adapter *adapter = netdev_priv(netdev);
4166         struct mii_ioctl_data *data = if_mii(ifr);
4167
4168         if (adapter->hw.phy.media_type != e1000_media_type_copper)
4169                 return -EOPNOTSUPP;
4170
4171         switch (cmd) {
4172         case SIOCGMIIPHY:
4173                 data->phy_id = adapter->hw.phy.addr;
4174                 break;
4175         case SIOCGMIIREG:
4176                 if (!capable(CAP_NET_ADMIN))
4177                         return -EPERM;
4178                 if (adapter->hw.phy.ops.read_phy_reg(&adapter->hw,
4179                                                      data->reg_num
4180                                                      & 0x1F, &data->val_out))
4181                         return -EIO;
4182                 break;
4183         case SIOCSMIIREG:
4184         default:
4185                 return -EOPNOTSUPP;
4186         }
4187         return 0;
4188 }
4189
4190 /**
4191  * igb_ioctl -
4192  * @netdev:
4193  * @ifreq:
4194  * @cmd:
4195  **/
4196 static int igb_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
4197 {
4198         switch (cmd) {
4199         case SIOCGMIIPHY:
4200         case SIOCGMIIREG:
4201         case SIOCSMIIREG:
4202                 return igb_mii_ioctl(netdev, ifr, cmd);
4203         default:
4204                 return -EOPNOTSUPP;
4205         }
4206 }
4207
4208 static void igb_vlan_rx_register(struct net_device *netdev,
4209                                  struct vlan_group *grp)
4210 {
4211         struct igb_adapter *adapter = netdev_priv(netdev);
4212         struct e1000_hw *hw = &adapter->hw;
4213         u32 ctrl, rctl;
4214
4215         igb_irq_disable(adapter);
4216         adapter->vlgrp = grp;
4217
4218         if (grp) {
4219                 /* enable VLAN tag insert/strip */
4220                 ctrl = rd32(E1000_CTRL);
4221                 ctrl |= E1000_CTRL_VME;
4222                 wr32(E1000_CTRL, ctrl);
4223
4224                 /* enable VLAN receive filtering */
4225                 rctl = rd32(E1000_RCTL);
4226                 rctl &= ~E1000_RCTL_CFIEN;
4227                 wr32(E1000_RCTL, rctl);
4228                 igb_update_mng_vlan(adapter);
4229                 wr32(E1000_RLPML,
4230                                 adapter->max_frame_size + VLAN_TAG_SIZE);
4231         } else {
4232                 /* disable VLAN tag insert/strip */
4233                 ctrl = rd32(E1000_CTRL);
4234                 ctrl &= ~E1000_CTRL_VME;
4235                 wr32(E1000_CTRL, ctrl);
4236
4237                 if (adapter->mng_vlan_id != (u16)IGB_MNG_VLAN_NONE) {
4238                         igb_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
4239                         adapter->mng_vlan_id = IGB_MNG_VLAN_NONE;
4240                 }
4241                 wr32(E1000_RLPML,
4242                                 adapter->max_frame_size);
4243         }
4244
4245         if (!test_bit(__IGB_DOWN, &adapter->state))
4246                 igb_irq_enable(adapter);
4247 }
4248
4249 static void igb_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
4250 {
4251         struct igb_adapter *adapter = netdev_priv(netdev);
4252         struct e1000_hw *hw = &adapter->hw;
4253         u32 vfta, index;
4254
4255         if ((adapter->hw.mng_cookie.status &
4256              E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
4257             (vid == adapter->mng_vlan_id))
4258                 return;
4259         /* add VID to filter table */
4260         index = (vid >> 5) & 0x7F;
4261         vfta = array_rd32(E1000_VFTA, index);
4262         vfta |= (1 << (vid & 0x1F));
4263         igb_write_vfta(&adapter->hw, index, vfta);
4264 }
4265
4266 static void igb_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
4267 {
4268         struct igb_adapter *adapter = netdev_priv(netdev);
4269         struct e1000_hw *hw = &adapter->hw;
4270         u32 vfta, index;
4271
4272         igb_irq_disable(adapter);
4273         vlan_group_set_device(adapter->vlgrp, vid, NULL);
4274
4275         if (!test_bit(__IGB_DOWN, &adapter->state))
4276                 igb_irq_enable(adapter);
4277
4278         if ((adapter->hw.mng_cookie.status &
4279              E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
4280             (vid == adapter->mng_vlan_id)) {
4281                 /* release control to f/w */
4282                 igb_release_hw_control(adapter);
4283                 return;
4284         }
4285
4286         /* remove VID from filter table */
4287         index = (vid >> 5) & 0x7F;
4288         vfta = array_rd32(E1000_VFTA, index);
4289         vfta &= ~(1 << (vid & 0x1F));
4290         igb_write_vfta(&adapter->hw, index, vfta);
4291 }
4292
4293 static void igb_restore_vlan(struct igb_adapter *adapter)
4294 {
4295         igb_vlan_rx_register(adapter->netdev, adapter->vlgrp);
4296
4297         if (adapter->vlgrp) {
4298                 u16 vid;
4299                 for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
4300                         if (!vlan_group_get_device(adapter->vlgrp, vid))
4301                                 continue;
4302                         igb_vlan_rx_add_vid(adapter->netdev, vid);
4303                 }
4304         }
4305 }
4306
4307 int igb_set_spd_dplx(struct igb_adapter *adapter, u16 spddplx)
4308 {
4309         struct e1000_mac_info *mac = &adapter->hw.mac;
4310
4311         mac->autoneg = 0;
4312
4313         /* Fiber NICs only allow 1000 gbps Full duplex */
4314         if ((adapter->hw.phy.media_type == e1000_media_type_fiber) &&
4315                 spddplx != (SPEED_1000 + DUPLEX_FULL)) {
4316                 dev_err(&adapter->pdev->dev,
4317                         "Unsupported Speed/Duplex configuration\n");
4318                 return -EINVAL;
4319         }
4320
4321         switch (spddplx) {
4322         case SPEED_10 + DUPLEX_HALF:
4323                 mac->forced_speed_duplex = ADVERTISE_10_HALF;
4324                 break;
4325         case SPEED_10 + DUPLEX_FULL:
4326                 mac->forced_speed_duplex = ADVERTISE_10_FULL;
4327                 break;
4328         case SPEED_100 + DUPLEX_HALF:
4329                 mac->forced_speed_duplex = ADVERTISE_100_HALF;
4330                 break;
4331         case SPEED_100 + DUPLEX_FULL:
4332                 mac->forced_speed_duplex = ADVERTISE_100_FULL;
4333                 break;
4334         case SPEED_1000 + DUPLEX_FULL:
4335                 mac->autoneg = 1;
4336                 adapter->hw.phy.autoneg_advertised = ADVERTISE_1000_FULL;
4337                 break;
4338         case SPEED_1000 + DUPLEX_HALF: /* not supported */
4339         default:
4340                 dev_err(&adapter->pdev->dev,
4341                         "Unsupported Speed/Duplex configuration\n");
4342                 return -EINVAL;
4343         }
4344         return 0;
4345 }
4346
4347
4348 static int igb_suspend(struct pci_dev *pdev, pm_message_t state)
4349 {
4350         struct net_device *netdev = pci_get_drvdata(pdev);
4351         struct igb_adapter *adapter = netdev_priv(netdev);
4352         struct e1000_hw *hw = &adapter->hw;
4353         u32 ctrl, rctl, status;
4354         u32 wufc = adapter->wol;
4355 #ifdef CONFIG_PM
4356         int retval = 0;
4357 #endif
4358
4359         netif_device_detach(netdev);
4360
4361         if (netif_running(netdev))
4362                 igb_close(netdev);
4363
4364         igb_reset_interrupt_capability(adapter);
4365
4366         igb_free_queues(adapter);
4367
4368 #ifdef CONFIG_PM
4369         retval = pci_save_state(pdev);
4370         if (retval)
4371                 return retval;
4372 #endif
4373
4374         status = rd32(E1000_STATUS);
4375         if (status & E1000_STATUS_LU)
4376                 wufc &= ~E1000_WUFC_LNKC;
4377
4378         if (wufc) {
4379                 igb_setup_rctl(adapter);
4380                 igb_set_multi(netdev);
4381
4382                 /* turn on all-multi mode if wake on multicast is enabled */
4383                 if (wufc & E1000_WUFC_MC) {
4384                         rctl = rd32(E1000_RCTL);
4385                         rctl |= E1000_RCTL_MPE;
4386                         wr32(E1000_RCTL, rctl);
4387                 }
4388
4389                 ctrl = rd32(E1000_CTRL);
4390                 /* advertise wake from D3Cold */
4391                 #define E1000_CTRL_ADVD3WUC 0x00100000
4392                 /* phy power management enable */
4393                 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
4394                 ctrl |= E1000_CTRL_ADVD3WUC;
4395                 wr32(E1000_CTRL, ctrl);
4396
4397                 /* Allow time for pending master requests to run */
4398                 igb_disable_pcie_master(&adapter->hw);
4399
4400                 wr32(E1000_WUC, E1000_WUC_PME_EN);
4401                 wr32(E1000_WUFC, wufc);
4402         } else {
4403                 wr32(E1000_WUC, 0);
4404                 wr32(E1000_WUFC, 0);
4405         }
4406
4407         /* make sure adapter isn't asleep if manageability/wol is enabled */
4408         if (wufc || adapter->en_mng_pt) {
4409                 pci_enable_wake(pdev, PCI_D3hot, 1);
4410                 pci_enable_wake(pdev, PCI_D3cold, 1);
4411         } else {
4412                 igb_shutdown_fiber_serdes_link_82575(hw);
4413                 pci_enable_wake(pdev, PCI_D3hot, 0);
4414                 pci_enable_wake(pdev, PCI_D3cold, 0);
4415         }
4416
4417         /* Release control of h/w to f/w.  If f/w is AMT enabled, this
4418          * would have already happened in close and is redundant. */
4419         igb_release_hw_control(adapter);
4420
4421         pci_disable_device(pdev);
4422
4423         pci_set_power_state(pdev, pci_choose_state(pdev, state));
4424
4425         return 0;
4426 }
4427
4428 #ifdef CONFIG_PM
4429 static int igb_resume(struct pci_dev *pdev)
4430 {
4431         struct net_device *netdev = pci_get_drvdata(pdev);
4432         struct igb_adapter *adapter = netdev_priv(netdev);
4433         struct e1000_hw *hw = &adapter->hw;
4434         u32 err;
4435
4436         pci_set_power_state(pdev, PCI_D0);
4437         pci_restore_state(pdev);
4438
4439         if (adapter->need_ioport)
4440                 err = pci_enable_device(pdev);
4441         else
4442                 err = pci_enable_device_mem(pdev);
4443         if (err) {
4444                 dev_err(&pdev->dev,
4445                         "igb: Cannot enable PCI device from suspend\n");
4446                 return err;
4447         }
4448         pci_set_master(pdev);
4449
4450         pci_enable_wake(pdev, PCI_D3hot, 0);
4451         pci_enable_wake(pdev, PCI_D3cold, 0);
4452
4453         igb_set_interrupt_capability(adapter);
4454
4455         if (igb_alloc_queues(adapter)) {
4456                 dev_err(&pdev->dev, "Unable to allocate memory for queues\n");
4457                 return -ENOMEM;
4458         }
4459
4460         /* e1000_power_up_phy(adapter); */
4461
4462         igb_reset(adapter);
4463         wr32(E1000_WUS, ~0);
4464
4465         if (netif_running(netdev)) {
4466                 err = igb_open(netdev);
4467                 if (err)
4468                         return err;
4469         }
4470
4471         netif_device_attach(netdev);
4472
4473         /* let the f/w know that the h/w is now under the control of the
4474          * driver. */
4475         igb_get_hw_control(adapter);
4476
4477         return 0;
4478 }
4479 #endif
4480
4481 static void igb_shutdown(struct pci_dev *pdev)
4482 {
4483         igb_suspend(pdev, PMSG_SUSPEND);
4484 }
4485
4486 #ifdef CONFIG_NET_POLL_CONTROLLER
4487 /*
4488  * Polling 'interrupt' - used by things like netconsole to send skbs
4489  * without having to re-enable interrupts. It's not called while
4490  * the interrupt routine is executing.
4491  */
4492 static void igb_netpoll(struct net_device *netdev)
4493 {
4494         struct igb_adapter *adapter = netdev_priv(netdev);
4495         int i;
4496         int work_done = 0;
4497
4498         igb_irq_disable(adapter);
4499         adapter->flags |= IGB_FLAG_IN_NETPOLL;
4500
4501         for (i = 0; i < adapter->num_tx_queues; i++)
4502                 igb_clean_tx_irq(&adapter->tx_ring[i]);
4503
4504         for (i = 0; i < adapter->num_rx_queues; i++)
4505                 igb_clean_rx_irq_adv(&adapter->rx_ring[i],
4506                                      &work_done,
4507                                      adapter->rx_ring[i].napi.weight);
4508
4509         adapter->flags &= ~IGB_FLAG_IN_NETPOLL;
4510         igb_irq_enable(adapter);
4511 }
4512 #endif /* CONFIG_NET_POLL_CONTROLLER */
4513
4514 /**
4515  * igb_io_error_detected - called when PCI error is detected
4516  * @pdev: Pointer to PCI device
4517  * @state: The current pci connection state
4518  *
4519  * This function is called after a PCI bus error affecting
4520  * this device has been detected.
4521  */
4522 static pci_ers_result_t igb_io_error_detected(struct pci_dev *pdev,
4523                                               pci_channel_state_t state)
4524 {
4525         struct net_device *netdev = pci_get_drvdata(pdev);
4526         struct igb_adapter *adapter = netdev_priv(netdev);
4527
4528         netif_device_detach(netdev);
4529
4530         if (netif_running(netdev))
4531                 igb_down(adapter);
4532         pci_disable_device(pdev);
4533
4534         /* Request a slot slot reset. */
4535         return PCI_ERS_RESULT_NEED_RESET;
4536 }
4537
4538 /**
4539  * igb_io_slot_reset - called after the pci bus has been reset.
4540  * @pdev: Pointer to PCI device
4541  *
4542  * Restart the card from scratch, as if from a cold-boot. Implementation
4543  * resembles the first-half of the igb_resume routine.
4544  */
4545 static pci_ers_result_t igb_io_slot_reset(struct pci_dev *pdev)
4546 {
4547         struct net_device *netdev = pci_get_drvdata(pdev);
4548         struct igb_adapter *adapter = netdev_priv(netdev);
4549         struct e1000_hw *hw = &adapter->hw;
4550         int err;
4551
4552         if (adapter->need_ioport)
4553                 err = pci_enable_device(pdev);
4554         else
4555                 err = pci_enable_device_mem(pdev);
4556         if (err) {
4557                 dev_err(&pdev->dev,
4558                         "Cannot re-enable PCI device after reset.\n");
4559                 return PCI_ERS_RESULT_DISCONNECT;
4560         }
4561         pci_set_master(pdev);
4562         pci_restore_state(pdev);
4563
4564         pci_enable_wake(pdev, PCI_D3hot, 0);
4565         pci_enable_wake(pdev, PCI_D3cold, 0);
4566
4567         igb_reset(adapter);
4568         wr32(E1000_WUS, ~0);
4569
4570         return PCI_ERS_RESULT_RECOVERED;
4571 }
4572
4573 /**
4574  * igb_io_resume - called when traffic can start flowing again.
4575  * @pdev: Pointer to PCI device
4576  *
4577  * This callback is called when the error recovery driver tells us that
4578  * its OK to resume normal operation. Implementation resembles the
4579  * second-half of the igb_resume routine.
4580  */
4581 static void igb_io_resume(struct pci_dev *pdev)
4582 {
4583         struct net_device *netdev = pci_get_drvdata(pdev);
4584         struct igb_adapter *adapter = netdev_priv(netdev);
4585
4586         igb_init_manageability(adapter);
4587
4588         if (netif_running(netdev)) {
4589                 if (igb_up(adapter)) {
4590                         dev_err(&pdev->dev, "igb_up failed after reset\n");
4591                         return;
4592                 }
4593         }
4594
4595         netif_device_attach(netdev);
4596
4597         /* let the f/w know that the h/w is now under the control of the
4598          * driver. */
4599         igb_get_hw_control(adapter);
4600
4601 }
4602
4603 /* igb_main.c */