aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/igbvf
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/igbvf')
-rw-r--r--drivers/net/igbvf/Makefile2
-rw-r--r--drivers/net/igbvf/defines.h2
-rw-r--r--drivers/net/igbvf/ethtool.c31
-rw-r--r--drivers/net/igbvf/igbvf.h7
-rw-r--r--drivers/net/igbvf/mbx.c2
-rw-r--r--drivers/net/igbvf/mbx.h2
-rw-r--r--drivers/net/igbvf/netdev.c118
-rw-r--r--drivers/net/igbvf/regs.h2
-rw-r--r--drivers/net/igbvf/vf.c8
-rw-r--r--drivers/net/igbvf/vf.h4
10 files changed, 52 insertions, 126 deletions
diff --git a/drivers/net/igbvf/Makefile b/drivers/net/igbvf/Makefile
index c2f150d8f2d9..0fa3db3dd8b6 100644
--- a/drivers/net/igbvf/Makefile
+++ b/drivers/net/igbvf/Makefile
@@ -1,7 +1,7 @@
1################################################################################ 1################################################################################
2# 2#
3# Intel(R) 82576 Virtual Function Linux driver 3# Intel(R) 82576 Virtual Function Linux driver
4# Copyright(c) 2009 Intel Corporation. 4# Copyright(c) 2009 - 2010 Intel Corporation.
5# 5#
6# This program is free software; you can redistribute it and/or modify it 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, 7# under the terms and conditions of the GNU General Public License,
diff --git a/drivers/net/igbvf/defines.h b/drivers/net/igbvf/defines.h
index 88a47537518a..79f2604673fe 100644
--- a/drivers/net/igbvf/defines.h
+++ b/drivers/net/igbvf/defines.h
@@ -1,7 +1,7 @@
1/******************************************************************************* 1/*******************************************************************************
2 2
3 Intel(R) 82576 Virtual Function Linux driver 3 Intel(R) 82576 Virtual Function Linux driver
4 Copyright(c) 1999 - 2009 Intel Corporation. 4 Copyright(c) 1999 - 2010 Intel Corporation.
5 5
6 This program is free software; you can redistribute it and/or modify it 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, 7 under the terms and conditions of the GNU General Public License,
diff --git a/drivers/net/igbvf/ethtool.c b/drivers/net/igbvf/ethtool.c
index 103b3aa1afc2..b0b14d63dfbf 100644
--- a/drivers/net/igbvf/ethtool.c
+++ b/drivers/net/igbvf/ethtool.c
@@ -1,7 +1,7 @@
1/******************************************************************************* 1/*******************************************************************************
2 2
3 Intel(R) 82576 Virtual Function Linux driver 3 Intel(R) 82576 Virtual Function Linux driver
4 Copyright(c) 2009 Intel Corporation. 4 Copyright(c) 2009 - 2010 Intel Corporation.
5 5
6 This program is free software; you can redistribute it and/or modify it 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, 7 under the terms and conditions of the GNU General Public License,
@@ -90,18 +90,18 @@ static int igbvf_get_settings(struct net_device *netdev,
90 status = er32(STATUS); 90 status = er32(STATUS);
91 if (status & E1000_STATUS_LU) { 91 if (status & E1000_STATUS_LU) {
92 if (status & E1000_STATUS_SPEED_1000) 92 if (status & E1000_STATUS_SPEED_1000)
93 ecmd->speed = 1000; 93 ethtool_cmd_speed_set(ecmd, SPEED_1000);
94 else if (status & E1000_STATUS_SPEED_100) 94 else if (status & E1000_STATUS_SPEED_100)
95 ecmd->speed = 100; 95 ethtool_cmd_speed_set(ecmd, SPEED_100);
96 else 96 else
97 ecmd->speed = 10; 97 ethtool_cmd_speed_set(ecmd, SPEED_10);
98 98
99 if (status & E1000_STATUS_FD) 99 if (status & E1000_STATUS_FD)
100 ecmd->duplex = DUPLEX_FULL; 100 ecmd->duplex = DUPLEX_FULL;
101 else 101 else
102 ecmd->duplex = DUPLEX_HALF; 102 ecmd->duplex = DUPLEX_HALF;
103 } else { 103 } else {
104 ecmd->speed = -1; 104 ethtool_cmd_speed_set(ecmd, -1);
105 ecmd->duplex = -1; 105 ecmd->duplex = -1;
106 } 106 }
107 107
@@ -110,11 +110,6 @@ static int igbvf_get_settings(struct net_device *netdev,
110 return 0; 110 return 0;
111} 111}
112 112
113static u32 igbvf_get_link(struct net_device *netdev)
114{
115 return netif_carrier_ok(netdev);
116}
117
118static int igbvf_set_settings(struct net_device *netdev, 113static int igbvf_set_settings(struct net_device *netdev,
119 struct ethtool_cmd *ecmd) 114 struct ethtool_cmd *ecmd)
120{ 115{
@@ -153,7 +148,7 @@ static int igbvf_set_rx_csum(struct net_device *netdev, u32 data)
153 148
154static u32 igbvf_get_tx_csum(struct net_device *netdev) 149static u32 igbvf_get_tx_csum(struct net_device *netdev)
155{ 150{
156 return ((netdev->features & NETIF_F_IP_CSUM) != 0); 151 return (netdev->features & NETIF_F_IP_CSUM) != 0;
157} 152}
158 153
159static int igbvf_set_tx_csum(struct net_device *netdev, u32 data) 154static int igbvf_set_tx_csum(struct net_device *netdev, u32 data)
@@ -206,13 +201,11 @@ static void igbvf_get_regs(struct net_device *netdev,
206 struct igbvf_adapter *adapter = netdev_priv(netdev); 201 struct igbvf_adapter *adapter = netdev_priv(netdev);
207 struct e1000_hw *hw = &adapter->hw; 202 struct e1000_hw *hw = &adapter->hw;
208 u32 *regs_buff = p; 203 u32 *regs_buff = p;
209 u8 revision_id;
210 204
211 memset(p, 0, IGBVF_REGS_LEN * sizeof(u32)); 205 memset(p, 0, IGBVF_REGS_LEN * sizeof(u32));
212 206
213 pci_read_config_byte(adapter->pdev, PCI_REVISION_ID, &revision_id); 207 regs->version = (1 << 24) | (adapter->pdev->revision << 16) |
214 208 adapter->pdev->device;
215 regs->version = (1 << 24) | (revision_id << 16) | adapter->pdev->device;
216 209
217 regs_buff[0] = er32(CTRL); 210 regs_buff[0] = er32(CTRL);
218 regs_buff[1] = er32(STATUS); 211 regs_buff[1] = er32(STATUS);
@@ -398,11 +391,6 @@ static int igbvf_set_wol(struct net_device *netdev,
398 return -EOPNOTSUPP; 391 return -EOPNOTSUPP;
399} 392}
400 393
401static int igbvf_phys_id(struct net_device *netdev, u32 data)
402{
403 return 0;
404}
405
406static int igbvf_get_coalesce(struct net_device *netdev, 394static int igbvf_get_coalesce(struct net_device *netdev,
407 struct ethtool_coalesce *ec) 395 struct ethtool_coalesce *ec)
408{ 396{
@@ -515,7 +503,7 @@ static const struct ethtool_ops igbvf_ethtool_ops = {
515 .get_msglevel = igbvf_get_msglevel, 503 .get_msglevel = igbvf_get_msglevel,
516 .set_msglevel = igbvf_set_msglevel, 504 .set_msglevel = igbvf_set_msglevel,
517 .nway_reset = igbvf_nway_reset, 505 .nway_reset = igbvf_nway_reset,
518 .get_link = igbvf_get_link, 506 .get_link = ethtool_op_get_link,
519 .get_eeprom_len = igbvf_get_eeprom_len, 507 .get_eeprom_len = igbvf_get_eeprom_len,
520 .get_eeprom = igbvf_get_eeprom, 508 .get_eeprom = igbvf_get_eeprom,
521 .set_eeprom = igbvf_set_eeprom, 509 .set_eeprom = igbvf_set_eeprom,
@@ -534,7 +522,6 @@ static const struct ethtool_ops igbvf_ethtool_ops = {
534 .self_test = igbvf_diag_test, 522 .self_test = igbvf_diag_test,
535 .get_sset_count = igbvf_get_sset_count, 523 .get_sset_count = igbvf_get_sset_count,
536 .get_strings = igbvf_get_strings, 524 .get_strings = igbvf_get_strings,
537 .phys_id = igbvf_phys_id,
538 .get_ethtool_stats = igbvf_get_ethtool_stats, 525 .get_ethtool_stats = igbvf_get_ethtool_stats,
539 .get_coalesce = igbvf_get_coalesce, 526 .get_coalesce = igbvf_get_coalesce,
540 .set_coalesce = igbvf_set_coalesce, 527 .set_coalesce = igbvf_set_coalesce,
diff --git a/drivers/net/igbvf/igbvf.h b/drivers/net/igbvf/igbvf.h
index debeee2dc717..d5dad5d607d6 100644
--- a/drivers/net/igbvf/igbvf.h
+++ b/drivers/net/igbvf/igbvf.h
@@ -1,7 +1,7 @@
1/******************************************************************************* 1/*******************************************************************************
2 2
3 Intel(R) 82576 Virtual Function Linux driver 3 Intel(R) 82576 Virtual Function Linux driver
4 Copyright(c) 2009 Intel Corporation. 4 Copyright(c) 2009 - 2010 Intel Corporation.
5 5
6 This program is free software; you can redistribute it and/or modify it 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, 7 under the terms and conditions of the GNU General Public License,
@@ -97,6 +97,7 @@ struct igbvf_adapter;
97 97
98enum igbvf_boards { 98enum igbvf_boards {
99 board_vf, 99 board_vf,
100 board_i350_vf,
100}; 101};
101 102
102struct igbvf_queue_stats { 103struct igbvf_queue_stats {
@@ -126,7 +127,6 @@ struct igbvf_buffer {
126 unsigned int page_offset; 127 unsigned int page_offset;
127 }; 128 };
128 }; 129 };
129 struct page *page;
130}; 130};
131 131
132union igbvf_desc { 132union igbvf_desc {
@@ -201,9 +201,6 @@ struct igbvf_adapter {
201 unsigned int restart_queue; 201 unsigned int restart_queue;
202 u32 txd_cmd; 202 u32 txd_cmd;
203 203
204 bool detect_tx_hung;
205 u8 tx_timeout_factor;
206
207 u32 tx_int_delay; 204 u32 tx_int_delay;
208 u32 tx_abs_int_delay; 205 u32 tx_abs_int_delay;
209 206
diff --git a/drivers/net/igbvf/mbx.c b/drivers/net/igbvf/mbx.c
index 819a8ec901dc..3d6f4cc3998a 100644
--- a/drivers/net/igbvf/mbx.c
+++ b/drivers/net/igbvf/mbx.c
@@ -1,7 +1,7 @@
1/******************************************************************************* 1/*******************************************************************************
2 2
3 Intel(R) 82576 Virtual Function Linux driver 3 Intel(R) 82576 Virtual Function Linux driver
4 Copyright(c) 2009 Intel Corporation. 4 Copyright(c) 2009 - 2010 Intel Corporation.
5 5
6 This program is free software; you can redistribute it and/or modify it 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, 7 under the terms and conditions of the GNU General Public License,
diff --git a/drivers/net/igbvf/mbx.h b/drivers/net/igbvf/mbx.h
index 4938609dbfb5..c2883c45d477 100644
--- a/drivers/net/igbvf/mbx.h
+++ b/drivers/net/igbvf/mbx.h
@@ -1,7 +1,7 @@
1/******************************************************************************* 1/*******************************************************************************
2 2
3 Intel(R) 82576 Virtual Function Linux driver 3 Intel(R) 82576 Virtual Function Linux driver
4 Copyright(c) 1999 - 2009 Intel Corporation. 4 Copyright(c) 1999 - 2010 Intel Corporation.
5 5
6 This program is free software; you can redistribute it and/or modify it 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, 7 under the terms and conditions of the GNU General Public License,
diff --git a/drivers/net/igbvf/netdev.c b/drivers/net/igbvf/netdev.c
index c539f7c9c3e0..1c77fb3bf4ae 100644
--- a/drivers/net/igbvf/netdev.c
+++ b/drivers/net/igbvf/netdev.c
@@ -1,7 +1,7 @@
1/******************************************************************************* 1/*******************************************************************************
2 2
3 Intel(R) 82576 Virtual Function Linux driver 3 Intel(R) 82576 Virtual Function Linux driver
4 Copyright(c) 2009 Intel Corporation. 4 Copyright(c) 2009 - 2010 Intel Corporation.
5 5
6 This program is free software; you can redistribute it and/or modify it 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, 7 under the terms and conditions of the GNU General Public License,
@@ -41,17 +41,17 @@
41#include <linux/mii.h> 41#include <linux/mii.h>
42#include <linux/ethtool.h> 42#include <linux/ethtool.h>
43#include <linux/if_vlan.h> 43#include <linux/if_vlan.h>
44#include <linux/pm_qos_params.h> 44#include <linux/prefetch.h>
45 45
46#include "igbvf.h" 46#include "igbvf.h"
47 47
48#define DRV_VERSION "1.0.0-k0" 48#define DRV_VERSION "1.0.8-k0"
49char igbvf_driver_name[] = "igbvf"; 49char igbvf_driver_name[] = "igbvf";
50const char igbvf_driver_version[] = DRV_VERSION; 50const char igbvf_driver_version[] = DRV_VERSION;
51static struct pm_qos_request_list igbvf_driver_pm_qos_req;
52static const char igbvf_driver_string[] = 51static const char igbvf_driver_string[] =
53 "Intel(R) Virtual Function Network Driver"; 52 "Intel(R) Virtual Function Network Driver";
54static const char igbvf_copyright[] = "Copyright (c) 2009 Intel Corporation."; 53static const char igbvf_copyright[] =
54 "Copyright (c) 2009 - 2010 Intel Corporation.";
55 55
56static int igbvf_poll(struct napi_struct *napi, int budget); 56static int igbvf_poll(struct napi_struct *napi, int budget);
57static void igbvf_reset(struct igbvf_adapter *); 57static void igbvf_reset(struct igbvf_adapter *);
@@ -65,8 +65,16 @@ static struct igbvf_info igbvf_vf_info = {
65 .init_ops = e1000_init_function_pointers_vf, 65 .init_ops = e1000_init_function_pointers_vf,
66}; 66};
67 67
68static struct igbvf_info igbvf_i350_vf_info = {
69 .mac = e1000_vfadapt_i350,
70 .flags = 0,
71 .pba = 10,
72 .init_ops = e1000_init_function_pointers_vf,
73};
74
68static const struct igbvf_info *igbvf_info_tbl[] = { 75static const struct igbvf_info *igbvf_info_tbl[] = {
69 [board_vf] = &igbvf_vf_info, 76 [board_vf] = &igbvf_vf_info,
77 [board_i350_vf] = &igbvf_i350_vf_info,
70}; 78};
71 79
72/** 80/**
@@ -103,7 +111,7 @@ static void igbvf_receive_skb(struct igbvf_adapter *adapter,
103static inline void igbvf_rx_checksum_adv(struct igbvf_adapter *adapter, 111static inline void igbvf_rx_checksum_adv(struct igbvf_adapter *adapter,
104 u32 status_err, struct sk_buff *skb) 112 u32 status_err, struct sk_buff *skb)
105{ 113{
106 skb->ip_summed = CHECKSUM_NONE; 114 skb_checksum_none_assert(skb);
107 115
108 /* Ignore Checksum bit is set or checksum is disabled through ethtool */ 116 /* Ignore Checksum bit is set or checksum is disabled through ethtool */
109 if ((status_err & E1000_RXD_STAT_IXSM) || 117 if ((status_err & E1000_RXD_STAT_IXSM) ||
@@ -389,35 +397,6 @@ static void igbvf_put_txbuf(struct igbvf_adapter *adapter,
389 buffer_info->time_stamp = 0; 397 buffer_info->time_stamp = 0;
390} 398}
391 399
392static void igbvf_print_tx_hang(struct igbvf_adapter *adapter)
393{
394 struct igbvf_ring *tx_ring = adapter->tx_ring;
395 unsigned int i = tx_ring->next_to_clean;
396 unsigned int eop = tx_ring->buffer_info[i].next_to_watch;
397 union e1000_adv_tx_desc *eop_desc = IGBVF_TX_DESC_ADV(*tx_ring, eop);
398
399 /* detected Tx unit hang */
400 dev_err(&adapter->pdev->dev,
401 "Detected Tx Unit Hang:\n"
402 " TDH <%x>\n"
403 " TDT <%x>\n"
404 " next_to_use <%x>\n"
405 " next_to_clean <%x>\n"
406 "buffer_info[next_to_clean]:\n"
407 " time_stamp <%lx>\n"
408 " next_to_watch <%x>\n"
409 " jiffies <%lx>\n"
410 " next_to_watch.status <%x>\n",
411 readl(adapter->hw.hw_addr + tx_ring->head),
412 readl(adapter->hw.hw_addr + tx_ring->tail),
413 tx_ring->next_to_use,
414 tx_ring->next_to_clean,
415 tx_ring->buffer_info[eop].time_stamp,
416 eop,
417 jiffies,
418 eop_desc->wb.status);
419}
420
421/** 400/**
422 * igbvf_setup_tx_resources - allocate Tx resources (Descriptors) 401 * igbvf_setup_tx_resources - allocate Tx resources (Descriptors)
423 * @adapter: board private structure 402 * @adapter: board private structure
@@ -431,10 +410,9 @@ int igbvf_setup_tx_resources(struct igbvf_adapter *adapter,
431 int size; 410 int size;
432 411
433 size = sizeof(struct igbvf_buffer) * tx_ring->count; 412 size = sizeof(struct igbvf_buffer) * tx_ring->count;
434 tx_ring->buffer_info = vmalloc(size); 413 tx_ring->buffer_info = vzalloc(size);
435 if (!tx_ring->buffer_info) 414 if (!tx_ring->buffer_info)
436 goto err; 415 goto err;
437 memset(tx_ring->buffer_info, 0, size);
438 416
439 /* round up to nearest 4K */ 417 /* round up to nearest 4K */
440 tx_ring->size = tx_ring->count * sizeof(union e1000_adv_tx_desc); 418 tx_ring->size = tx_ring->count * sizeof(union e1000_adv_tx_desc);
@@ -471,10 +449,9 @@ int igbvf_setup_rx_resources(struct igbvf_adapter *adapter,
471 int size, desc_len; 449 int size, desc_len;
472 450
473 size = sizeof(struct igbvf_buffer) * rx_ring->count; 451 size = sizeof(struct igbvf_buffer) * rx_ring->count;
474 rx_ring->buffer_info = vmalloc(size); 452 rx_ring->buffer_info = vzalloc(size);
475 if (!rx_ring->buffer_info) 453 if (!rx_ring->buffer_info)
476 goto err; 454 goto err;
477 memset(rx_ring->buffer_info, 0, size);
478 455
479 desc_len = sizeof(union e1000_adv_rx_desc); 456 desc_len = sizeof(union e1000_adv_rx_desc);
480 457
@@ -766,7 +743,6 @@ static void igbvf_set_itr(struct igbvf_adapter *adapter)
766static bool igbvf_clean_tx_irq(struct igbvf_ring *tx_ring) 743static bool igbvf_clean_tx_irq(struct igbvf_ring *tx_ring)
767{ 744{
768 struct igbvf_adapter *adapter = tx_ring->adapter; 745 struct igbvf_adapter *adapter = tx_ring->adapter;
769 struct e1000_hw *hw = &adapter->hw;
770 struct net_device *netdev = adapter->netdev; 746 struct net_device *netdev = adapter->netdev;
771 struct igbvf_buffer *buffer_info; 747 struct igbvf_buffer *buffer_info;
772 struct sk_buff *skb; 748 struct sk_buff *skb;
@@ -827,25 +803,9 @@ static bool igbvf_clean_tx_irq(struct igbvf_ring *tx_ring)
827 } 803 }
828 } 804 }
829 805
830 if (adapter->detect_tx_hung) {
831 /* Detect a transmit hang in hardware, this serializes the
832 * check with the clearing of time_stamp and movement of i */
833 adapter->detect_tx_hung = false;
834 if (tx_ring->buffer_info[i].time_stamp &&
835 time_after(jiffies, tx_ring->buffer_info[i].time_stamp +
836 (adapter->tx_timeout_factor * HZ)) &&
837 !(er32(STATUS) & E1000_STATUS_TXOFF)) {
838
839 tx_desc = IGBVF_TX_DESC_ADV(*tx_ring, i);
840 /* detected Tx unit hang */
841 igbvf_print_tx_hang(adapter);
842
843 netif_stop_queue(netdev);
844 }
845 }
846 adapter->net_stats.tx_bytes += total_bytes; 806 adapter->net_stats.tx_bytes += total_bytes;
847 adapter->net_stats.tx_packets += total_packets; 807 adapter->net_stats.tx_packets += total_packets;
848 return (count < tx_ring->count); 808 return count < tx_ring->count;
849} 809}
850 810
851static irqreturn_t igbvf_msix_other(int irq, void *data) 811static irqreturn_t igbvf_msix_other(int irq, void *data)
@@ -1256,7 +1216,7 @@ static void igbvf_restore_vlan(struct igbvf_adapter *adapter)
1256 if (!adapter->vlgrp) 1216 if (!adapter->vlgrp)
1257 return; 1217 return;
1258 1218
1259 for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) { 1219 for (vid = 0; vid < VLAN_N_VID; vid++) {
1260 if (!vlan_group_get_device(adapter->vlgrp, vid)) 1220 if (!vlan_group_get_device(adapter->vlgrp, vid))
1261 continue; 1221 continue;
1262 igbvf_vlan_rx_add_vid(adapter->netdev, vid); 1222 igbvf_vlan_rx_add_vid(adapter->netdev, vid);
@@ -1853,26 +1813,11 @@ static void igbvf_watchdog_task(struct work_struct *work)
1853 1813
1854 if (link) { 1814 if (link) {
1855 if (!netif_carrier_ok(netdev)) { 1815 if (!netif_carrier_ok(netdev)) {
1856 bool txb2b = 1;
1857
1858 mac->ops.get_link_up_info(&adapter->hw, 1816 mac->ops.get_link_up_info(&adapter->hw,
1859 &adapter->link_speed, 1817 &adapter->link_speed,
1860 &adapter->link_duplex); 1818 &adapter->link_duplex);
1861 igbvf_print_link_info(adapter); 1819 igbvf_print_link_info(adapter);
1862 1820
1863 /* adjust timeout factor according to speed/duplex */
1864 adapter->tx_timeout_factor = 1;
1865 switch (adapter->link_speed) {
1866 case SPEED_10:
1867 txb2b = 0;
1868 adapter->tx_timeout_factor = 16;
1869 break;
1870 case SPEED_100:
1871 txb2b = 0;
1872 /* maybe add some timeout factor ? */
1873 break;
1874 }
1875
1876 netif_carrier_on(netdev); 1821 netif_carrier_on(netdev);
1877 netif_wake_queue(netdev); 1822 netif_wake_queue(netdev);
1878 } 1823 }
@@ -1906,9 +1851,6 @@ static void igbvf_watchdog_task(struct work_struct *work)
1906 /* Cause software interrupt to ensure Rx ring is cleaned */ 1851 /* Cause software interrupt to ensure Rx ring is cleaned */
1907 ew32(EICS, adapter->rx_ring->eims_value); 1852 ew32(EICS, adapter->rx_ring->eims_value);
1908 1853
1909 /* Force detection of hung controller every watchdog period */
1910 adapter->detect_tx_hung = 1;
1911
1912 /* Reset the timer */ 1854 /* Reset the timer */
1913 if (!test_bit(__IGBVF_DOWN, &adapter->state)) 1855 if (!test_bit(__IGBVF_DOWN, &adapter->state))
1914 mod_timer(&adapter->watchdog_timer, 1856 mod_timer(&adapter->watchdog_timer,
@@ -2286,7 +2228,7 @@ static netdev_tx_t igbvf_xmit_frame_ring_adv(struct sk_buff *skb,
2286 2228
2287 /* 2229 /*
2288 * count reflects descriptors mapped, if 0 then mapping error 2230 * count reflects descriptors mapped, if 0 then mapping error
2289 * has occured and we need to rewind the descriptor queue 2231 * has occurred and we need to rewind the descriptor queue
2290 */ 2232 */
2291 count = igbvf_tx_map_adv(adapter, tx_ring, skb, first); 2233 count = igbvf_tx_map_adv(adapter, tx_ring, skb, first);
2292 2234
@@ -2698,8 +2640,7 @@ static int __devinit igbvf_probe(struct pci_dev *pdev,
2698 hw->device_id = pdev->device; 2640 hw->device_id = pdev->device;
2699 hw->subsystem_vendor_id = pdev->subsystem_vendor; 2641 hw->subsystem_vendor_id = pdev->subsystem_vendor;
2700 hw->subsystem_device_id = pdev->subsystem_device; 2642 hw->subsystem_device_id = pdev->subsystem_device;
2701 2643 hw->revision_id = pdev->revision;
2702 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
2703 2644
2704 err = -EIO; 2645 err = -EIO;
2705 adapter->hw.hw_addr = ioremap(pci_resource_start(pdev, 0), 2646 adapter->hw.hw_addr = ioremap(pci_resource_start(pdev, 0),
@@ -2785,15 +2726,15 @@ static int __devinit igbvf_probe(struct pci_dev *pdev,
2785 /* reset the hardware with the new settings */ 2726 /* reset the hardware with the new settings */
2786 igbvf_reset(adapter); 2727 igbvf_reset(adapter);
2787 2728
2788 /* tell the stack to leave us alone until igbvf_open() is called */
2789 netif_carrier_off(netdev);
2790 netif_stop_queue(netdev);
2791
2792 strcpy(netdev->name, "eth%d"); 2729 strcpy(netdev->name, "eth%d");
2793 err = register_netdev(netdev); 2730 err = register_netdev(netdev);
2794 if (err) 2731 if (err)
2795 goto err_hw_init; 2732 goto err_hw_init;
2796 2733
2734 /* tell the stack to leave us alone until igbvf_open() is called */
2735 netif_carrier_off(netdev);
2736 netif_stop_queue(netdev);
2737
2797 igbvf_print_device_info(adapter); 2738 igbvf_print_device_info(adapter);
2798 2739
2799 igbvf_initialize_last_counter_stats(adapter); 2740 igbvf_initialize_last_counter_stats(adapter);
@@ -2832,13 +2773,14 @@ static void __devexit igbvf_remove(struct pci_dev *pdev)
2832 struct e1000_hw *hw = &adapter->hw; 2773 struct e1000_hw *hw = &adapter->hw;
2833 2774
2834 /* 2775 /*
2835 * flush_scheduled work may reschedule our watchdog task, so 2776 * The watchdog timer may be rescheduled, so explicitly
2836 * explicitly disable watchdog tasks from being rescheduled 2777 * disable it from being rescheduled.
2837 */ 2778 */
2838 set_bit(__IGBVF_DOWN, &adapter->state); 2779 set_bit(__IGBVF_DOWN, &adapter->state);
2839 del_timer_sync(&adapter->watchdog_timer); 2780 del_timer_sync(&adapter->watchdog_timer);
2840 2781
2841 flush_scheduled_work(); 2782 cancel_work_sync(&adapter->reset_task);
2783 cancel_work_sync(&adapter->watchdog_task);
2842 2784
2843 unregister_netdev(netdev); 2785 unregister_netdev(netdev);
2844 2786
@@ -2871,6 +2813,7 @@ static struct pci_error_handlers igbvf_err_handler = {
2871 2813
2872static DEFINE_PCI_DEVICE_TABLE(igbvf_pci_tbl) = { 2814static DEFINE_PCI_DEVICE_TABLE(igbvf_pci_tbl) = {
2873 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_VF), board_vf }, 2815 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_VF), board_vf },
2816 { PCI_VDEVICE(INTEL, E1000_DEV_ID_I350_VF), board_i350_vf },
2874 { } /* terminate list */ 2817 { } /* terminate list */
2875}; 2818};
2876MODULE_DEVICE_TABLE(pci, igbvf_pci_tbl); 2819MODULE_DEVICE_TABLE(pci, igbvf_pci_tbl);
@@ -2904,8 +2847,6 @@ static int __init igbvf_init_module(void)
2904 printk(KERN_INFO "%s\n", igbvf_copyright); 2847 printk(KERN_INFO "%s\n", igbvf_copyright);
2905 2848
2906 ret = pci_register_driver(&igbvf_driver); 2849 ret = pci_register_driver(&igbvf_driver);
2907 pm_qos_add_request(&igbvf_driver_pm_qos_req, PM_QOS_CPU_DMA_LATENCY,
2908 PM_QOS_DEFAULT_VALUE);
2909 2850
2910 return ret; 2851 return ret;
2911} 2852}
@@ -2920,7 +2861,6 @@ module_init(igbvf_init_module);
2920static void __exit igbvf_exit_module(void) 2861static void __exit igbvf_exit_module(void)
2921{ 2862{
2922 pci_unregister_driver(&igbvf_driver); 2863 pci_unregister_driver(&igbvf_driver);
2923 pm_qos_remove_request(&igbvf_driver_pm_qos_req);
2924} 2864}
2925module_exit(igbvf_exit_module); 2865module_exit(igbvf_exit_module);
2926 2866
diff --git a/drivers/net/igbvf/regs.h b/drivers/net/igbvf/regs.h
index b9e24ed70d0a..77e18d3d6b15 100644
--- a/drivers/net/igbvf/regs.h
+++ b/drivers/net/igbvf/regs.h
@@ -1,7 +1,7 @@
1/******************************************************************************* 1/*******************************************************************************
2 2
3 Intel(R) 82576 Virtual Function Linux driver 3 Intel(R) 82576 Virtual Function Linux driver
4 Copyright(c) 2009 Intel Corporation. 4 Copyright(c) 2009 - 2010 Intel Corporation.
5 5
6 This program is free software; you can redistribute it and/or modify it 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, 7 under the terms and conditions of the GNU General Public License,
diff --git a/drivers/net/igbvf/vf.c b/drivers/net/igbvf/vf.c
index a9a61efa964c..af3822f9ea9a 100644
--- a/drivers/net/igbvf/vf.c
+++ b/drivers/net/igbvf/vf.c
@@ -1,7 +1,7 @@
1/******************************************************************************* 1/*******************************************************************************
2 2
3 Intel(R) 82576 Virtual Function Linux driver 3 Intel(R) 82576 Virtual Function Linux driver
4 Copyright(c) 2009 Intel Corporation. 4 Copyright(c) 2009 - 2010 Intel Corporation.
5 5
6 This program is free software; you can redistribute it and/or modify it 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, 7 under the terms and conditions of the GNU General Public License,
@@ -220,7 +220,7 @@ static u32 e1000_hash_mc_addr_vf(struct e1000_hw *hw, u8 *mc_addr)
220 * The parameter rar_count will usually be hw->mac.rar_entry_count 220 * The parameter rar_count will usually be hw->mac.rar_entry_count
221 * unless there are workarounds that change this. 221 * unless there are workarounds that change this.
222 **/ 222 **/
223void e1000_update_mc_addr_list_vf(struct e1000_hw *hw, 223static void e1000_update_mc_addr_list_vf(struct e1000_hw *hw,
224 u8 *mc_addr_list, u32 mc_addr_count, 224 u8 *mc_addr_list, u32 mc_addr_count,
225 u32 rar_used_count, u32 rar_count) 225 u32 rar_used_count, u32 rar_count)
226{ 226{
@@ -362,8 +362,8 @@ static s32 e1000_check_for_link_vf(struct e1000_hw *hw)
362 * or a virtual function reset 362 * or a virtual function reset
363 */ 363 */
364 364
365 /* If we were hit with a reset drop the link */ 365 /* If we were hit with a reset or timeout drop the link */
366 if (!mbx->ops.check_for_rst(hw)) 366 if (!mbx->ops.check_for_rst(hw) || !mbx->timeout)
367 mac->get_link_status = true; 367 mac->get_link_status = true;
368 368
369 if (!mac->get_link_status) 369 if (!mac->get_link_status)
diff --git a/drivers/net/igbvf/vf.h b/drivers/net/igbvf/vf.h
index 1e8ce3741a67..d7ed58fcd9bb 100644
--- a/drivers/net/igbvf/vf.h
+++ b/drivers/net/igbvf/vf.h
@@ -1,7 +1,7 @@
1/******************************************************************************* 1/*******************************************************************************
2 2
3 Intel(R) 82576 Virtual Function Linux driver 3 Intel(R) 82576 Virtual Function Linux driver
4 Copyright(c) 2009 Intel Corporation. 4 Copyright(c) 2009 - 2010 Intel Corporation.
5 5
6 This program is free software; you can redistribute it and/or modify it 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, 7 under the terms and conditions of the GNU General Public License,
@@ -39,6 +39,7 @@
39struct e1000_hw; 39struct e1000_hw;
40 40
41#define E1000_DEV_ID_82576_VF 0x10CA 41#define E1000_DEV_ID_82576_VF 0x10CA
42#define E1000_DEV_ID_I350_VF 0x1520
42#define E1000_REVISION_0 0 43#define E1000_REVISION_0 0
43#define E1000_REVISION_1 1 44#define E1000_REVISION_1 1
44#define E1000_REVISION_2 2 45#define E1000_REVISION_2 2
@@ -133,6 +134,7 @@ struct e1000_adv_tx_context_desc {
133enum e1000_mac_type { 134enum e1000_mac_type {
134 e1000_undefined = 0, 135 e1000_undefined = 0,
135 e1000_vfadapt, 136 e1000_vfadapt,
137 e1000_vfadapt_i350,
136 e1000_num_macs /* List is 1-based, so subtract 1 for true count. */ 138 e1000_num_macs /* List is 1-based, so subtract 1 for true count. */
137}; 139};
138 140