blob: 57e390cbe6d0d21630f6bf6904a0c8a663601931 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2
Auke Kok0abb6eb2006-09-27 12:53:14 -07003 Intel PRO/10GbE Linux driver
Jesse Brandeburgf731a9e2008-07-08 15:53:09 -07004 Copyright(c) 1999 - 2008 Intel Corporation.
Auke Kok0abb6eb2006-09-27 12:53:14 -07005
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 more details.
Auke Kok0abb6eb2006-09-27 12:53:14 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 You should have received a copy of the GNU General Public License along with
Auke Kok0abb6eb2006-09-27 12:53:14 -070016 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 Contact Information:
23 Linux NICS <linux.nics@intel.com>
Auke Kok0abb6eb2006-09-27 12:53:14 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
Joe Perchesd328bc82010-04-27 00:50:58 +000029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Paul Gortmaker70c71602011-05-22 16:47:17 -040031#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "ixgb.h"
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034char ixgb_driver_name[] = "ixgb";
Adrian Bunke9ab1d12005-10-30 16:53:30 +010035static char ixgb_driver_string[] = "Intel(R) PRO/10GbE Network Driver";
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define DRIVERNAPI "-NAPI"
Jesse Brandeburgf731a9e2008-07-08 15:53:09 -070038#define DRV_VERSION "1.0.135-k2" DRIVERNAPI
Stephen Hemminger273dc742007-10-29 10:46:13 -070039const char ixgb_driver_version[] = DRV_VERSION;
Jesse Brandeburgf731a9e2008-07-08 15:53:09 -070040static const char ixgb_copyright[] = "Copyright (c) 1999-2008 Intel Corporation.";
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Jesse Brandeburgd9fed182008-07-08 15:52:02 -070042#define IXGB_CB_LENGTH 256
43static unsigned int copybreak __read_mostly = IXGB_CB_LENGTH;
44module_param(copybreak, uint, 0644);
45MODULE_PARM_DESC(copybreak,
46 "Maximum size of packet that is copied to a new buffer on receive");
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/* ixgb_pci_tbl - PCI Device ID Table
49 *
50 * Wildcard entries (PCI_ANY_ID) should come last
51 * Last entry must be all 0s
52 *
53 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
54 * Class, Class Mask, private data (not used) }
55 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000056static DEFINE_PCI_DEVICE_TABLE(ixgb_pci_tbl) = {
Jon Mason61dc5332012-07-19 21:02:08 +000057 {PCI_VENDOR_ID_INTEL, IXGB_DEVICE_ID_82597EX,
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jon Mason61dc5332012-07-19 21:02:08 +000059 {PCI_VENDOR_ID_INTEL, IXGB_DEVICE_ID_82597EX_CX4,
Auke Kok940829e2006-05-23 10:29:58 -070060 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jon Mason61dc5332012-07-19 21:02:08 +000061 {PCI_VENDOR_ID_INTEL, IXGB_DEVICE_ID_82597EX_SR,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jon Mason61dc5332012-07-19 21:02:08 +000063 {PCI_VENDOR_ID_INTEL, IXGB_DEVICE_ID_82597EX_LR,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
65
66 /* required last entry */
67 {0,}
68};
69
70MODULE_DEVICE_TABLE(pci, ixgb_pci_tbl);
71
72/* Local Function Prototypes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static int ixgb_init_module(void);
74static void ixgb_exit_module(void);
75static int ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
Bill Pemberton9f9a12f2012-12-03 09:24:25 -050076static void ixgb_remove(struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static int ixgb_sw_init(struct ixgb_adapter *adapter);
78static int ixgb_open(struct net_device *netdev);
79static int ixgb_close(struct net_device *netdev);
80static void ixgb_configure_tx(struct ixgb_adapter *adapter);
81static void ixgb_configure_rx(struct ixgb_adapter *adapter);
82static void ixgb_setup_rctl(struct ixgb_adapter *adapter);
83static void ixgb_clean_tx_ring(struct ixgb_adapter *adapter);
84static void ixgb_clean_rx_ring(struct ixgb_adapter *adapter);
85static void ixgb_set_multi(struct net_device *netdev);
86static void ixgb_watchdog(unsigned long data);
Stephen Hemminger3b29a562009-08-31 19:50:55 +000087static netdev_tx_t ixgb_xmit_frame(struct sk_buff *skb,
88 struct net_device *netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static struct net_device_stats *ixgb_get_stats(struct net_device *netdev);
90static int ixgb_change_mtu(struct net_device *netdev, int new_mtu);
91static int ixgb_set_mac(struct net_device *netdev, void *p);
David Howells7d12e782006-10-05 14:55:46 +010092static irqreturn_t ixgb_intr(int irq, void *data);
Joe Perches446490c2008-03-21 11:06:37 -070093static bool ixgb_clean_tx_irq(struct ixgb_adapter *adapter);
Malli Chilakalaac79c822005-04-28 19:05:32 -070094
Jesse Brandeburg7490d712008-07-08 15:52:08 -070095static int ixgb_clean(struct napi_struct *, int);
96static bool ixgb_clean_rx_irq(struct ixgb_adapter *, int *, int);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -070097static void ixgb_alloc_rx_buffers(struct ixgb_adapter *, int);
Jesse Brandeburg7490d712008-07-08 15:52:08 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static void ixgb_tx_timeout(struct net_device *dev);
David Howellsc4028952006-11-22 14:57:56 +0000100static void ixgb_tx_timeout_task(struct work_struct *work);
Jesse Brandeburg7490d712008-07-08 15:52:08 -0700101
Emil Tantilovae544962010-12-04 05:35:17 +0000102static void ixgb_vlan_strip_enable(struct ixgb_adapter *adapter);
103static void ixgb_vlan_strip_disable(struct ixgb_adapter *adapter);
Patrick McHardy80d5c362013-04-19 02:04:28 +0000104static int ixgb_vlan_rx_add_vid(struct net_device *netdev,
105 __be16 proto, u16 vid);
106static int ixgb_vlan_rx_kill_vid(struct net_device *netdev,
107 __be16 proto, u16 vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static void ixgb_restore_vlan(struct ixgb_adapter *adapter);
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#ifdef CONFIG_NET_POLL_CONTROLLER
111/* for netdump / net console */
112static void ixgb_netpoll(struct net_device *dev);
113#endif
114
Linas Vepstas01748fb2006-08-31 14:27:52 -0700115static pci_ers_result_t ixgb_io_error_detected (struct pci_dev *pdev,
Jesse Brandeburg7490d712008-07-08 15:52:08 -0700116 enum pci_channel_state state);
Linas Vepstas01748fb2006-08-31 14:27:52 -0700117static pci_ers_result_t ixgb_io_slot_reset (struct pci_dev *pdev);
118static void ixgb_io_resume (struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Stephen Hemminger3646f0e2012-09-07 09:33:15 -0700120static const struct pci_error_handlers ixgb_err_handler = {
Linas Vepstas01748fb2006-08-31 14:27:52 -0700121 .error_detected = ixgb_io_error_detected,
122 .slot_reset = ixgb_io_slot_reset,
123 .resume = ixgb_io_resume,
124};
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static struct pci_driver ixgb_driver = {
Malli Chilakalac2eba932005-04-28 19:04:32 -0700127 .name = ixgb_driver_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .id_table = ixgb_pci_tbl,
Malli Chilakalac2eba932005-04-28 19:04:32 -0700129 .probe = ixgb_probe,
Bill Pemberton9f9a12f2012-12-03 09:24:25 -0500130 .remove = ixgb_remove,
Linas Vepstas01748fb2006-08-31 14:27:52 -0700131 .err_handler = &ixgb_err_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132};
133
134MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
135MODULE_DESCRIPTION("Intel(R) PRO/10GbE Network Driver");
136MODULE_LICENSE("GPL");
John W. Linville01e5abc2005-05-12 22:23:29 -0400137MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000139#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
140static int debug = -1;
Auke Kokec9c3f52006-05-23 10:34:59 -0700141module_param(debug, int, 0);
142MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/**
145 * ixgb_init_module - Driver Registration Routine
146 *
147 * ixgb_init_module is the first routine called when the driver is
148 * loaded. All it does is register with the PCI subsystem.
149 **/
150
151static int __init
152ixgb_init_module(void)
153{
Joe Perchesd328bc82010-04-27 00:50:58 +0000154 pr_info("%s - version %s\n", ixgb_driver_string, ixgb_driver_version);
155 pr_info("%s\n", ixgb_copyright);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Jeff Garzik29917622006-08-19 17:48:59 -0400157 return pci_register_driver(&ixgb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160module_init(ixgb_init_module);
161
162/**
163 * ixgb_exit_module - Driver Exit Cleanup Routine
164 *
165 * ixgb_exit_module is called just before the driver is removed
166 * from memory.
167 **/
168
169static void __exit
170ixgb_exit_module(void)
171{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 pci_unregister_driver(&ixgb_driver);
173}
174
175module_exit(ixgb_exit_module);
176
177/**
178 * ixgb_irq_disable - Mask off interrupt generation on the NIC
179 * @adapter: board private structure
180 **/
181
Auke Kok235949d12006-05-26 09:35:52 -0700182static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183ixgb_irq_disable(struct ixgb_adapter *adapter)
184{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 IXGB_WRITE_REG(&adapter->hw, IMC, ~0);
186 IXGB_WRITE_FLUSH(&adapter->hw);
187 synchronize_irq(adapter->pdev->irq);
188}
189
190/**
191 * ixgb_irq_enable - Enable default interrupt generation settings
192 * @adapter: board private structure
193 **/
194
Auke Kok235949d12006-05-26 09:35:52 -0700195static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196ixgb_irq_enable(struct ixgb_adapter *adapter)
197{
Jesse Brandeburg9c61a9d2008-03-21 11:07:03 -0700198 u32 val = IXGB_INT_RXT0 | IXGB_INT_RXDMT0 |
199 IXGB_INT_TXDW | IXGB_INT_LSC;
Jon Mason61dc5332012-07-19 21:02:08 +0000200 if (adapter->hw.subsystem_vendor_id == PCI_VENDOR_ID_SUN)
Jesse Brandeburg9c61a9d2008-03-21 11:07:03 -0700201 val |= IXGB_INT_GPI0;
202 IXGB_WRITE_REG(&adapter->hw, IMS, val);
203 IXGB_WRITE_FLUSH(&adapter->hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206int
207ixgb_up(struct ixgb_adapter *adapter)
208{
209 struct net_device *netdev = adapter->netdev;
Auke Kokfb136c02007-05-17 15:29:07 -0700210 int err, irq_flags = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 int max_frame = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
212 struct ixgb_hw *hw = &adapter->hw;
213
214 /* hardware has been reset, we need to reload some things */
215
Auke Kok8556f0d12006-05-26 09:35:32 -0700216 ixgb_rar_set(hw, netdev->dev_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 ixgb_set_multi(netdev);
218
219 ixgb_restore_vlan(adapter);
220
221 ixgb_configure_tx(adapter);
222 ixgb_setup_rctl(adapter);
223 ixgb_configure_rx(adapter);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -0700224 ixgb_alloc_rx_buffers(adapter, IXGB_DESC_UNUSED(&adapter->rx_ring));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Auke Koke59d1692006-05-26 09:35:28 -0700226 /* disable interrupts and get the hardware into a known state */
227 IXGB_WRITE_REG(&adapter->hw, IMC, 0xffffffff);
228
Auke Kokfb136c02007-05-17 15:29:07 -0700229 /* only enable MSI if bus is in PCI-X mode */
230 if (IXGB_READ_REG(&adapter->hw, STATUS) & IXGB_STATUS_PCIX_MODE) {
231 err = pci_enable_msi(adapter->pdev);
232 if (!err) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000233 adapter->have_msi = true;
Auke Kokfb136c02007-05-17 15:29:07 -0700234 irq_flags = 0;
235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /* proceed to try to request regular interrupt */
237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Joe Perchesa0607fd2009-11-18 23:29:17 -0800239 err = request_irq(adapter->pdev->irq, ixgb_intr, irq_flags,
Auke Kokfb136c02007-05-17 15:29:07 -0700240 netdev->name, netdev);
241 if (err) {
242 if (adapter->have_msi)
243 pci_disable_msi(adapter->pdev);
Joe Perches6909c662010-02-15 08:34:20 +0000244 netif_err(adapter, probe, adapter->netdev,
245 "Unable to allocate interrupt Error: %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return err;
Auke Kokec9c3f52006-05-23 10:34:59 -0700247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700249 if ((hw->max_frame_size != max_frame) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 (hw->max_frame_size !=
251 (IXGB_READ_REG(hw, MFS) >> IXGB_MFS_SHIFT))) {
252
253 hw->max_frame_size = max_frame;
254
255 IXGB_WRITE_REG(hw, MFS, hw->max_frame_size << IXGB_MFS_SHIFT);
256
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700257 if (hw->max_frame_size >
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 IXGB_MAX_ENET_FRAME_SIZE_WITHOUT_FCS + ENET_FCS_LENGTH) {
Joe Perches222441a2008-04-03 10:06:25 -0700259 u32 ctrl0 = IXGB_READ_REG(hw, CTRL0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700261 if (!(ctrl0 & IXGB_CTRL0_JFE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 ctrl0 |= IXGB_CTRL0_JFE;
263 IXGB_WRITE_REG(hw, CTRL0, ctrl0);
264 }
265 }
266 }
267
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700268 clear_bit(__IXGB_DOWN, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700270 napi_enable(&adapter->napi);
Auke Koke59d1692006-05-26 09:35:28 -0700271 ixgb_irq_enable(adapter);
272
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +0000273 netif_wake_queue(netdev);
274
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700275 mod_timer(&adapter->watchdog_timer, jiffies);
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return 0;
278}
279
280void
Joe Perches446490c2008-03-21 11:06:37 -0700281ixgb_down(struct ixgb_adapter *adapter, bool kill_watchdog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 struct net_device *netdev = adapter->netdev;
284
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700285 /* prevent the interrupt handler from restarting watchdog */
286 set_bit(__IXGB_DOWN, &adapter->flags);
287
David S. Miller49d85c52008-01-18 04:21:39 -0800288 napi_disable(&adapter->napi);
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700289 /* waiting for NAPI to complete can re-enable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 ixgb_irq_disable(adapter);
291 free_irq(adapter->pdev->irq, netdev);
Auke Kokfb136c02007-05-17 15:29:07 -0700292
293 if (adapter->have_msi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 pci_disable_msi(adapter->pdev);
295
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700296 if (kill_watchdog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 del_timer_sync(&adapter->watchdog_timer);
David S. Miller49d85c52008-01-18 04:21:39 -0800298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 adapter->link_speed = 0;
300 adapter->link_duplex = 0;
301 netif_carrier_off(netdev);
302 netif_stop_queue(netdev);
303
304 ixgb_reset(adapter);
305 ixgb_clean_tx_ring(adapter);
306 ixgb_clean_rx_ring(adapter);
307}
308
309void
310ixgb_reset(struct ixgb_adapter *adapter)
311{
Matheos Worku3fd71312007-12-14 11:48:29 -0800312 struct ixgb_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Matheos Worku3fd71312007-12-14 11:48:29 -0800314 ixgb_adapter_stop(hw);
315 if (!ixgb_init_hw(hw))
Joe Perches6909c662010-02-15 08:34:20 +0000316 netif_err(adapter, probe, adapter->netdev, "ixgb_init_hw failed\n");
Matheos Worku3fd71312007-12-14 11:48:29 -0800317
318 /* restore frame size information */
319 IXGB_WRITE_REG(hw, MFS, hw->max_frame_size << IXGB_MFS_SHIFT);
320 if (hw->max_frame_size >
321 IXGB_MAX_ENET_FRAME_SIZE_WITHOUT_FCS + ENET_FCS_LENGTH) {
322 u32 ctrl0 = IXGB_READ_REG(hw, CTRL0);
323 if (!(ctrl0 & IXGB_CTRL0_JFE)) {
324 ctrl0 |= IXGB_CTRL0_JFE;
325 IXGB_WRITE_REG(hw, CTRL0, ctrl0);
326 }
327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000330static netdev_features_t
331ixgb_fix_features(struct net_device *netdev, netdev_features_t features)
Michał Mirosławf04ea742011-09-23 02:11:30 +0000332{
333 /*
334 * Tx VLAN insertion does not work per HW design when Rx stripping is
335 * disabled.
336 */
Patrick McHardyf6469682013-04-19 02:04:27 +0000337 if (!(features & NETIF_F_HW_VLAN_CTAG_RX))
338 features &= ~NETIF_F_HW_VLAN_CTAG_TX;
Michał Mirosławf04ea742011-09-23 02:11:30 +0000339
340 return features;
341}
342
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000343static int
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000344ixgb_set_features(struct net_device *netdev, netdev_features_t features)
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000345{
346 struct ixgb_adapter *adapter = netdev_priv(netdev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000347 netdev_features_t changed = features ^ netdev->features;
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000348
Patrick McHardyf6469682013-04-19 02:04:27 +0000349 if (!(changed & (NETIF_F_RXCSUM|NETIF_F_HW_VLAN_CTAG_RX)))
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000350 return 0;
351
352 adapter->rx_csum = !!(features & NETIF_F_RXCSUM);
353
354 if (netif_running(netdev)) {
355 ixgb_down(adapter, true);
356 ixgb_up(adapter);
357 ixgb_set_speed_duplex(netdev);
358 } else
359 ixgb_reset(adapter);
360
361 return 0;
362}
363
364
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800365static const struct net_device_ops ixgb_netdev_ops = {
366 .ndo_open = ixgb_open,
367 .ndo_stop = ixgb_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800368 .ndo_start_xmit = ixgb_xmit_frame,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800369 .ndo_get_stats = ixgb_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000370 .ndo_set_rx_mode = ixgb_set_multi,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800371 .ndo_validate_addr = eth_validate_addr,
372 .ndo_set_mac_address = ixgb_set_mac,
373 .ndo_change_mtu = ixgb_change_mtu,
374 .ndo_tx_timeout = ixgb_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800375 .ndo_vlan_rx_add_vid = ixgb_vlan_rx_add_vid,
376 .ndo_vlan_rx_kill_vid = ixgb_vlan_rx_kill_vid,
377#ifdef CONFIG_NET_POLL_CONTROLLER
378 .ndo_poll_controller = ixgb_netpoll,
379#endif
Michał Mirosławf04ea742011-09-23 02:11:30 +0000380 .ndo_fix_features = ixgb_fix_features,
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000381 .ndo_set_features = ixgb_set_features,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800382};
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/**
385 * ixgb_probe - Device Initialization Routine
386 * @pdev: PCI device information struct
387 * @ent: entry in ixgb_pci_tbl
388 *
389 * Returns 0 on success, negative on failure
390 *
391 * ixgb_probe initializes an adapter identified by a pci_dev structure.
392 * The OS initialization, configuring of the adapter private structure,
393 * and a hardware reset occur.
394 **/
395
Bill Pemberton9f9a12f2012-12-03 09:24:25 -0500396static int
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700397ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 struct net_device *netdev = NULL;
400 struct ixgb_adapter *adapter;
401 static int cards_found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 int pci_using_dac;
403 int i;
404 int err;
405
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700406 err = pci_enable_device(pdev);
407 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return err;
409
Nick Nunley47631f82010-04-27 13:10:03 +0000410 pci_using_dac = 0;
Russell King59099032013-06-10 12:46:11 +0100411 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Nick Nunley47631f82010-04-27 13:10:03 +0000412 if (!err) {
Russell King59099032013-06-10 12:46:11 +0100413 pci_using_dac = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 } else {
Russell King59099032013-06-10 12:46:11 +0100415 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Nick Nunley47631f82010-04-27 13:10:03 +0000416 if (err) {
Russell King59099032013-06-10 12:46:11 +0100417 pr_err("No usable DMA configuration, aborting\n");
418 goto err_dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700422 err = pci_request_regions(pdev, ixgb_driver_name);
423 if (err)
Andreas Schwabc91e4682006-03-28 18:10:38 +0200424 goto err_request_regions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 pci_set_master(pdev);
427
428 netdev = alloc_etherdev(sizeof(struct ixgb_adapter));
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700429 if (!netdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 err = -ENOMEM;
431 goto err_alloc_etherdev;
432 }
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 SET_NETDEV_DEV(netdev, &pdev->dev);
435
436 pci_set_drvdata(pdev, netdev);
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700437 adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 adapter->netdev = netdev;
439 adapter->pdev = pdev;
440 adapter->hw.back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000441 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Arjan van de Ven275f1652008-10-20 21:42:39 -0700443 adapter->hw.hw_addr = pci_ioremap_bar(pdev, BAR_0);
Jesse Brandeburge539e462008-07-08 15:51:12 -0700444 if (!adapter->hw.hw_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 err = -EIO;
446 goto err_ioremap;
447 }
448
Jesse Brandeburg14593362008-07-08 15:52:33 -0700449 for (i = BAR_1; i <= BAR_5; i++) {
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700450 if (pci_resource_len(pdev, i) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 continue;
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700452 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 adapter->hw.io_base = pci_resource_start(pdev, i);
454 break;
455 }
456 }
457
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800458 netdev->netdev_ops = &ixgb_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 ixgb_set_ethtool_ops(netdev);
Auke Kok9b8118d2006-05-23 10:35:04 -0700460 netdev->watchdog_timeo = 5 * HZ;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700461 netif_napi_add(netdev, &adapter->napi, ixgb_clean, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Auke Kok0eb5a342006-09-27 12:53:17 -0700463 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 adapter->bd_number = cards_found;
466 adapter->link_speed = 0;
467 adapter->link_duplex = 0;
468
469 /* setup the private structure */
470
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700471 err = ixgb_sw_init(adapter);
472 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 goto err_sw_init;
474
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000475 netdev->hw_features = NETIF_F_SG |
476 NETIF_F_TSO |
Michał Mirosławf04ea742011-09-23 02:11:30 +0000477 NETIF_F_HW_CSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +0000478 NETIF_F_HW_VLAN_CTAG_TX |
479 NETIF_F_HW_VLAN_CTAG_RX;
Michał Mirosławf04ea742011-09-23 02:11:30 +0000480 netdev->features = netdev->hw_features |
Patrick McHardyf6469682013-04-19 02:04:27 +0000481 NETIF_F_HW_VLAN_CTAG_FILTER;
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000482 netdev->hw_features |= NETIF_F_RXCSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Yi Zou7b872a52010-09-22 17:57:58 +0000484 if (pci_using_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +0000486 netdev->vlan_features |= NETIF_F_HIGHDMA;
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 /* make sure the EEPROM is good */
490
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700491 if (!ixgb_validate_eeprom_checksum(&adapter->hw)) {
Joe Perches6909c662010-02-15 08:34:20 +0000492 netif_err(adapter, probe, adapter->netdev,
493 "The EEPROM Checksum Is Not Valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 err = -EIO;
495 goto err_eeprom;
496 }
497
498 ixgb_get_ee_mac_addr(&adapter->hw, netdev->dev_addr);
499
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +0000500 if (!is_valid_ether_addr(netdev->dev_addr)) {
Joe Perches6909c662010-02-15 08:34:20 +0000501 netif_err(adapter, probe, adapter->netdev, "Invalid MAC Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 err = -EIO;
503 goto err_eeprom;
504 }
505
506 adapter->part_num = ixgb_get_ee_pba_number(&adapter->hw);
507
508 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +0000509 adapter->watchdog_timer.function = ixgb_watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 adapter->watchdog_timer.data = (unsigned long)adapter;
511
David Howellsc4028952006-11-22 14:57:56 +0000512 INIT_WORK(&adapter->tx_timeout_task, ixgb_tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Auke Kokec9c3f52006-05-23 10:34:59 -0700514 strcpy(netdev->name, "eth%d");
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700515 err = register_netdev(netdev);
516 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto err_register;
518
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000519 /* carrier off reporting is important to ethtool even BEFORE open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Joe Perches6909c662010-02-15 08:34:20 +0000522 netif_info(adapter, probe, adapter->netdev,
523 "Intel(R) PRO/10GbE Network Connection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 ixgb_check_options(adapter);
525 /* reset the hardware with the new settings */
526
527 ixgb_reset(adapter);
528
529 cards_found++;
530 return 0;
531
532err_register:
533err_sw_init:
534err_eeprom:
535 iounmap(adapter->hw.hw_addr);
536err_ioremap:
537 free_netdev(netdev);
538err_alloc_etherdev:
539 pci_release_regions(pdev);
Andreas Schwabc91e4682006-03-28 18:10:38 +0200540err_request_regions:
541err_dma_mask:
542 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return err;
544}
545
546/**
547 * ixgb_remove - Device Removal Routine
548 * @pdev: PCI device information struct
549 *
550 * ixgb_remove is called by the PCI subsystem to alert the driver
551 * that it should release a PCI device. The could be caused by a
552 * Hot-Plug event, or because the driver is going to be removed from
553 * memory.
554 **/
555
Bill Pemberton9f9a12f2012-12-03 09:24:25 -0500556static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557ixgb_remove(struct pci_dev *pdev)
558{
559 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700560 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Tejun Heo23f333a2010-12-12 16:45:14 +0100562 cancel_work_sync(&adapter->tx_timeout_task);
Jesse Brandeburg12579692008-07-08 15:51:47 -0700563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 unregister_netdev(netdev);
565
566 iounmap(adapter->hw.hw_addr);
567 pci_release_regions(pdev);
568
569 free_netdev(netdev);
Emil Tantilovec43a812010-10-28 00:59:49 +0000570 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
573/**
574 * ixgb_sw_init - Initialize general software structures (struct ixgb_adapter)
575 * @adapter: board private structure to initialize
576 *
577 * ixgb_sw_init initializes the Adapter private data structure.
578 * Fields are initialized based on PCI device information and
579 * OS network device settings (MTU size).
580 **/
581
Bill Pemberton9f9a12f2012-12-03 09:24:25 -0500582static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583ixgb_sw_init(struct ixgb_adapter *adapter)
584{
585 struct ixgb_hw *hw = &adapter->hw;
586 struct net_device *netdev = adapter->netdev;
587 struct pci_dev *pdev = adapter->pdev;
588
589 /* PCI config space info */
590
591 hw->vendor_id = pdev->vendor;
592 hw->device_id = pdev->device;
593 hw->subsystem_vendor_id = pdev->subsystem_vendor;
594 hw->subsystem_id = pdev->subsystem_device;
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 hw->max_frame_size = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
Jesse Brandeburga3dc3da2008-07-08 15:51:22 -0700597 adapter->rx_buffer_len = hw->max_frame_size + 8; /* + 8 for errata */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Joe Perches6909c662010-02-15 08:34:20 +0000599 if ((hw->device_id == IXGB_DEVICE_ID_82597EX) ||
600 (hw->device_id == IXGB_DEVICE_ID_82597EX_CX4) ||
601 (hw->device_id == IXGB_DEVICE_ID_82597EX_LR) ||
602 (hw->device_id == IXGB_DEVICE_ID_82597EX_SR))
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700603 hw->mac_type = ixgb_82597;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 else {
605 /* should never have loaded on this device */
Joe Perches6909c662010-02-15 08:34:20 +0000606 netif_err(adapter, probe, adapter->netdev, "unsupported device id\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
609 /* enable flow control to be programmed */
610 hw->fc.send_xon = 1;
611
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700612 set_bit(__IXGB_DOWN, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return 0;
614}
615
616/**
617 * ixgb_open - Called when a network interface is made active
618 * @netdev: network interface device structure
619 *
620 * Returns 0 on success, negative value on failure
621 *
622 * The open entry point is called when a network interface is made
623 * active by the system (IFF_UP). At this point all resources needed
624 * for transmit and receive operations are allocated, the interrupt
625 * handler is registered with the OS, the watchdog timer is started,
626 * and the stack is notified that the interface is ready.
627 **/
628
629static int
630ixgb_open(struct net_device *netdev)
631{
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700632 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 int err;
634
635 /* allocate transmit descriptors */
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700636 err = ixgb_setup_tx_resources(adapter);
637 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 goto err_setup_tx;
639
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000640 netif_carrier_off(netdev);
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* allocate receive descriptors */
643
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700644 err = ixgb_setup_rx_resources(adapter);
645 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 goto err_setup_rx;
647
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700648 err = ixgb_up(adapter);
649 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 goto err_up;
651
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000652 netif_start_queue(netdev);
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return 0;
655
656err_up:
657 ixgb_free_rx_resources(adapter);
658err_setup_rx:
659 ixgb_free_tx_resources(adapter);
660err_setup_tx:
661 ixgb_reset(adapter);
662
663 return err;
664}
665
666/**
667 * ixgb_close - Disables a network interface
668 * @netdev: network interface device structure
669 *
670 * Returns 0, this is not allowed to fail
671 *
672 * The close entry point is called when an interface is de-activated
673 * by the OS. The hardware is still under the drivers control, but
674 * needs to be disabled. A global MAC reset is issued to stop the
675 * hardware, and all transmit and receive resources are freed.
676 **/
677
678static int
679ixgb_close(struct net_device *netdev)
680{
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700681 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Joe Perches446490c2008-03-21 11:06:37 -0700683 ixgb_down(adapter, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 ixgb_free_tx_resources(adapter);
686 ixgb_free_rx_resources(adapter);
687
688 return 0;
689}
690
691/**
692 * ixgb_setup_tx_resources - allocate Tx resources (Descriptors)
693 * @adapter: board private structure
694 *
695 * Return 0 on success, negative on failure
696 **/
697
698int
699ixgb_setup_tx_resources(struct ixgb_adapter *adapter)
700{
701 struct ixgb_desc_ring *txdr = &adapter->tx_ring;
702 struct pci_dev *pdev = adapter->pdev;
703 int size;
704
705 size = sizeof(struct ixgb_buffer) * txdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +0000706 txdr->buffer_info = vzalloc(size);
Joe Perches14f8dc42013-02-07 11:46:27 +0000707 if (!txdr->buffer_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 /* round up to nearest 4K */
711
712 txdr->size = txdr->count * sizeof(struct ixgb_tx_desc);
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700713 txdr->size = ALIGN(txdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Joe Perchesede23fa2013-08-26 22:45:23 -0700715 txdr->desc = dma_zalloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
716 GFP_KERNEL);
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700717 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 vfree(txdr->buffer_info);
719 return -ENOMEM;
720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 txdr->next_to_use = 0;
723 txdr->next_to_clean = 0;
724
725 return 0;
726}
727
728/**
729 * ixgb_configure_tx - Configure 82597 Transmit Unit after Reset.
730 * @adapter: board private structure
731 *
732 * Configure the Tx unit of the MAC after a reset.
733 **/
734
735static void
736ixgb_configure_tx(struct ixgb_adapter *adapter)
737{
Joe Perches222441a2008-04-03 10:06:25 -0700738 u64 tdba = adapter->tx_ring.dma;
739 u32 tdlen = adapter->tx_ring.count * sizeof(struct ixgb_tx_desc);
740 u32 tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 struct ixgb_hw *hw = &adapter->hw;
742
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700743 /* Setup the Base and Length of the Tx Descriptor Ring
744 * tx_ring.dma can be either a 32 or 64 bit value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 */
746
747 IXGB_WRITE_REG(hw, TDBAL, (tdba & 0x00000000ffffffffULL));
748 IXGB_WRITE_REG(hw, TDBAH, (tdba >> 32));
749
750 IXGB_WRITE_REG(hw, TDLEN, tdlen);
751
752 /* Setup the HW Tx Head and Tail descriptor pointers */
753
754 IXGB_WRITE_REG(hw, TDH, 0);
755 IXGB_WRITE_REG(hw, TDT, 0);
756
757 /* don't set up txdctl, it induces performance problems if configured
758 * incorrectly */
759 /* Set the Tx Interrupt Delay register */
760
761 IXGB_WRITE_REG(hw, TIDV, adapter->tx_int_delay);
762
763 /* Program the Transmit Control Register */
764
765 tctl = IXGB_TCTL_TCE | IXGB_TCTL_TXEN | IXGB_TCTL_TPDE;
766 IXGB_WRITE_REG(hw, TCTL, tctl);
767
768 /* Setup Transmit Descriptor Settings for this adapter */
769 adapter->tx_cmd_type =
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700770 IXGB_TX_DESC_TYPE |
771 (adapter->tx_int_delay_enable ? IXGB_TX_DESC_CMD_IDE : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
774/**
775 * ixgb_setup_rx_resources - allocate Rx resources (Descriptors)
776 * @adapter: board private structure
777 *
778 * Returns 0 on success, negative on failure
779 **/
780
781int
782ixgb_setup_rx_resources(struct ixgb_adapter *adapter)
783{
784 struct ixgb_desc_ring *rxdr = &adapter->rx_ring;
785 struct pci_dev *pdev = adapter->pdev;
786 int size;
787
788 size = sizeof(struct ixgb_buffer) * rxdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +0000789 rxdr->buffer_info = vzalloc(size);
Joe Perches14f8dc42013-02-07 11:46:27 +0000790 if (!rxdr->buffer_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 /* Round up to nearest 4K */
794
795 rxdr->size = rxdr->count * sizeof(struct ixgb_rx_desc);
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700796 rxdr->size = ALIGN(rxdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Nick Nunley47631f82010-04-27 13:10:03 +0000798 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
799 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700801 if (!rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 vfree(rxdr->buffer_info);
803 return -ENOMEM;
804 }
805 memset(rxdr->desc, 0, rxdr->size);
806
807 rxdr->next_to_clean = 0;
808 rxdr->next_to_use = 0;
809
810 return 0;
811}
812
813/**
814 * ixgb_setup_rctl - configure the receive control register
815 * @adapter: Board private structure
816 **/
817
818static void
819ixgb_setup_rctl(struct ixgb_adapter *adapter)
820{
Joe Perches222441a2008-04-03 10:06:25 -0700821 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 rctl = IXGB_READ_REG(&adapter->hw, RCTL);
824
825 rctl &= ~(3 << IXGB_RCTL_MO_SHIFT);
826
827 rctl |=
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700828 IXGB_RCTL_BAM | IXGB_RCTL_RDMTS_1_2 |
829 IXGB_RCTL_RXEN | IXGB_RCTL_CFF |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 (adapter->hw.mc_filter_type << IXGB_RCTL_MO_SHIFT);
831
832 rctl |= IXGB_RCTL_SECRC;
833
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700834 if (adapter->rx_buffer_len <= IXGB_RXBUFFER_2048)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 rctl |= IXGB_RCTL_BSIZE_2048;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700836 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 rctl |= IXGB_RCTL_BSIZE_4096;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700838 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_8192)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 rctl |= IXGB_RCTL_BSIZE_8192;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700840 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_16384)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 rctl |= IXGB_RCTL_BSIZE_16384;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 IXGB_WRITE_REG(&adapter->hw, RCTL, rctl);
844}
845
846/**
847 * ixgb_configure_rx - Configure 82597 Receive Unit after Reset.
848 * @adapter: board private structure
849 *
850 * Configure the Rx unit of the MAC after a reset.
851 **/
852
853static void
854ixgb_configure_rx(struct ixgb_adapter *adapter)
855{
Joe Perches222441a2008-04-03 10:06:25 -0700856 u64 rdba = adapter->rx_ring.dma;
857 u32 rdlen = adapter->rx_ring.count * sizeof(struct ixgb_rx_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 struct ixgb_hw *hw = &adapter->hw;
Joe Perches222441a2008-04-03 10:06:25 -0700859 u32 rctl;
860 u32 rxcsum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862 /* make sure receives are disabled while setting up the descriptors */
863
864 rctl = IXGB_READ_REG(hw, RCTL);
865 IXGB_WRITE_REG(hw, RCTL, rctl & ~IXGB_RCTL_RXEN);
866
867 /* set the Receive Delay Timer Register */
868
869 IXGB_WRITE_REG(hw, RDTR, adapter->rx_int_delay);
870
871 /* Setup the Base and Length of the Rx Descriptor Ring */
872
873 IXGB_WRITE_REG(hw, RDBAL, (rdba & 0x00000000ffffffffULL));
874 IXGB_WRITE_REG(hw, RDBAH, (rdba >> 32));
875
876 IXGB_WRITE_REG(hw, RDLEN, rdlen);
877
878 /* Setup the HW Rx Head and Tail Descriptor Pointers */
879 IXGB_WRITE_REG(hw, RDH, 0);
880 IXGB_WRITE_REG(hw, RDT, 0);
881
Jesse Brandeburg43603862008-07-08 15:51:17 -0700882 /* due to the hardware errata with RXDCTL, we are unable to use any of
883 * the performance enhancing features of it without causing other
884 * subtle bugs, some of the bugs could include receive length
885 * corruption at high data rates (WTHRESH > 0) and/or receive
886 * descriptor ring irregularites (particularly in hardware cache) */
887 IXGB_WRITE_REG(hw, RXDCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 /* Enable Receive Checksum Offload for TCP and UDP */
Joe Perches446490c2008-03-21 11:06:37 -0700890 if (adapter->rx_csum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 rxcsum = IXGB_READ_REG(hw, RXCSUM);
892 rxcsum |= IXGB_RXCSUM_TUOFL;
893 IXGB_WRITE_REG(hw, RXCSUM, rxcsum);
894 }
895
896 /* Enable Receives */
897
898 IXGB_WRITE_REG(hw, RCTL, rctl);
899}
900
901/**
902 * ixgb_free_tx_resources - Free Tx Resources
903 * @adapter: board private structure
904 *
905 * Free all transmit software resources
906 **/
907
908void
909ixgb_free_tx_resources(struct ixgb_adapter *adapter)
910{
911 struct pci_dev *pdev = adapter->pdev;
912
913 ixgb_clean_tx_ring(adapter);
914
915 vfree(adapter->tx_ring.buffer_info);
916 adapter->tx_ring.buffer_info = NULL;
917
Nick Nunley47631f82010-04-27 13:10:03 +0000918 dma_free_coherent(&pdev->dev, adapter->tx_ring.size,
919 adapter->tx_ring.desc, adapter->tx_ring.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 adapter->tx_ring.desc = NULL;
922}
923
Auke Kok235949d12006-05-26 09:35:52 -0700924static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925ixgb_unmap_and_free_tx_resource(struct ixgb_adapter *adapter,
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700926 struct ixgb_buffer *buffer_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Alexander Duyckadeaa902009-12-02 16:46:31 +0000928 if (buffer_info->dma) {
929 if (buffer_info->mapped_as_page)
Nick Nunley47631f82010-04-27 13:10:03 +0000930 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
931 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyckadeaa902009-12-02 16:46:31 +0000932 else
Nick Nunley47631f82010-04-27 13:10:03 +0000933 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
934 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyckadeaa902009-12-02 16:46:31 +0000935 buffer_info->dma = 0;
936 }
937
Alexander Duyckfe52eeb2009-03-19 01:15:21 +0000938 if (buffer_info->skb) {
Alexander Duyckfe52eeb2009-03-19 01:15:21 +0000939 dev_kfree_skb_any(buffer_info->skb);
940 buffer_info->skb = NULL;
941 }
Auke Kok1dfdd7d2006-05-25 13:24:17 -0700942 buffer_info->time_stamp = 0;
943 /* these fields must always be initialized in tx
944 * buffer_info->length = 0;
945 * buffer_info->next_to_watch = 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
948/**
949 * ixgb_clean_tx_ring - Free Tx Buffers
950 * @adapter: board private structure
951 **/
952
953static void
954ixgb_clean_tx_ring(struct ixgb_adapter *adapter)
955{
956 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
957 struct ixgb_buffer *buffer_info;
958 unsigned long size;
959 unsigned int i;
960
961 /* Free all the Tx ring sk_buffs */
962
Jesse Brandeburg14593362008-07-08 15:52:33 -0700963 for (i = 0; i < tx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 buffer_info = &tx_ring->buffer_info[i];
965 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
966 }
967
968 size = sizeof(struct ixgb_buffer) * tx_ring->count;
969 memset(tx_ring->buffer_info, 0, size);
970
971 /* Zero out the descriptor ring */
972
973 memset(tx_ring->desc, 0, tx_ring->size);
974
975 tx_ring->next_to_use = 0;
976 tx_ring->next_to_clean = 0;
977
978 IXGB_WRITE_REG(&adapter->hw, TDH, 0);
979 IXGB_WRITE_REG(&adapter->hw, TDT, 0);
980}
981
982/**
983 * ixgb_free_rx_resources - Free Rx Resources
984 * @adapter: board private structure
985 *
986 * Free all receive software resources
987 **/
988
989void
990ixgb_free_rx_resources(struct ixgb_adapter *adapter)
991{
992 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
993 struct pci_dev *pdev = adapter->pdev;
994
995 ixgb_clean_rx_ring(adapter);
996
997 vfree(rx_ring->buffer_info);
998 rx_ring->buffer_info = NULL;
999
Nick Nunley47631f82010-04-27 13:10:03 +00001000 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
1001 rx_ring->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 rx_ring->desc = NULL;
1004}
1005
1006/**
1007 * ixgb_clean_rx_ring - Free Rx Buffers
1008 * @adapter: board private structure
1009 **/
1010
1011static void
1012ixgb_clean_rx_ring(struct ixgb_adapter *adapter)
1013{
1014 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
1015 struct ixgb_buffer *buffer_info;
1016 struct pci_dev *pdev = adapter->pdev;
1017 unsigned long size;
1018 unsigned int i;
1019
1020 /* Free all the Rx ring sk_buffs */
1021
Jesse Brandeburg14593362008-07-08 15:52:33 -07001022 for (i = 0; i < rx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 buffer_info = &rx_ring->buffer_info[i];
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001024 if (buffer_info->dma) {
Nick Nunley47631f82010-04-27 13:10:03 +00001025 dma_unmap_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 buffer_info->dma,
1027 buffer_info->length,
Nick Nunley47631f82010-04-27 13:10:03 +00001028 DMA_FROM_DEVICE);
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001029 buffer_info->dma = 0;
1030 buffer_info->length = 0;
1031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001033 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 dev_kfree_skb(buffer_info->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 buffer_info->skb = NULL;
1036 }
1037 }
1038
1039 size = sizeof(struct ixgb_buffer) * rx_ring->count;
1040 memset(rx_ring->buffer_info, 0, size);
1041
1042 /* Zero out the descriptor ring */
1043
1044 memset(rx_ring->desc, 0, rx_ring->size);
1045
1046 rx_ring->next_to_clean = 0;
1047 rx_ring->next_to_use = 0;
1048
1049 IXGB_WRITE_REG(&adapter->hw, RDH, 0);
1050 IXGB_WRITE_REG(&adapter->hw, RDT, 0);
1051}
1052
1053/**
1054 * ixgb_set_mac - Change the Ethernet Address of the NIC
1055 * @netdev: network interface device structure
1056 * @p: pointer to an address structure
1057 *
1058 * Returns 0 on success, negative on failure
1059 **/
1060
1061static int
1062ixgb_set_mac(struct net_device *netdev, void *p)
1063{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001064 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 struct sockaddr *addr = p;
1066
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001067 if (!is_valid_ether_addr(addr->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 return -EADDRNOTAVAIL;
1069
1070 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1071
1072 ixgb_rar_set(&adapter->hw, addr->sa_data, 0);
1073
1074 return 0;
1075}
1076
1077/**
1078 * ixgb_set_multi - Multicast and Promiscuous mode set
1079 * @netdev: network interface device structure
1080 *
1081 * The set_multi entry point is called whenever the multicast address
1082 * list or the network interface flags are updated. This routine is
1083 * responsible for configuring the hardware for proper multicast,
1084 * promiscuous mode, and all-multi behavior.
1085 **/
1086
1087static void
1088ixgb_set_multi(struct net_device *netdev)
1089{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001090 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 struct ixgb_hw *hw = &adapter->hw;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001092 struct netdev_hw_addr *ha;
Joe Perches222441a2008-04-03 10:06:25 -07001093 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 /* Check for Promiscuous and All Multicast modes */
1096
1097 rctl = IXGB_READ_REG(hw, RCTL);
1098
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001099 if (netdev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 rctl |= (IXGB_RCTL_UPE | IXGB_RCTL_MPE);
Emil Tantilovae544962010-12-04 05:35:17 +00001101 /* disable VLAN filtering */
1102 rctl &= ~IXGB_RCTL_CFIEN;
Patrick McHardy746b9f02008-07-16 20:15:45 -07001103 rctl &= ~IXGB_RCTL_VFE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07001105 if (netdev->flags & IFF_ALLMULTI) {
1106 rctl |= IXGB_RCTL_MPE;
1107 rctl &= ~IXGB_RCTL_UPE;
1108 } else {
1109 rctl &= ~(IXGB_RCTL_UPE | IXGB_RCTL_MPE);
1110 }
Emil Tantilovae544962010-12-04 05:35:17 +00001111 /* enable VLAN filtering */
Patrick McHardy78ed11a2008-07-16 20:16:14 -07001112 rctl |= IXGB_RCTL_VFE;
Emil Tantilovae544962010-12-04 05:35:17 +00001113 rctl &= ~IXGB_RCTL_CFIEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
1115
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001116 if (netdev_mc_count(netdev) > IXGB_MAX_NUM_MULTICAST_ADDRESSES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 rctl |= IXGB_RCTL_MPE;
1118 IXGB_WRITE_REG(hw, RCTL, rctl);
1119 } else {
Jesse Brandeburgac5ac782011-09-23 02:11:29 +00001120 u8 *mta = kmalloc(IXGB_MAX_NUM_MULTICAST_ADDRESSES *
1121 ETH_ALEN, GFP_ATOMIC);
1122 u8 *addr;
Joe Perchese404dec2012-01-29 12:56:23 +00001123 if (!mta)
Jesse Brandeburgac5ac782011-09-23 02:11:29 +00001124 goto alloc_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 IXGB_WRITE_REG(hw, RCTL, rctl);
1127
Jesse Brandeburgac5ac782011-09-23 02:11:29 +00001128 addr = mta;
1129 netdev_for_each_mc_addr(ha, netdev) {
1130 memcpy(addr, ha->addr, ETH_ALEN);
1131 addr += ETH_ALEN;
1132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001134 ixgb_mc_addr_list_update(hw, mta, netdev_mc_count(netdev), 0);
Jesse Brandeburgac5ac782011-09-23 02:11:29 +00001135 kfree(mta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
Emil Tantilovae544962010-12-04 05:35:17 +00001137
Jesse Brandeburgac5ac782011-09-23 02:11:29 +00001138alloc_failed:
Patrick McHardyf6469682013-04-19 02:04:27 +00001139 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
Emil Tantilovae544962010-12-04 05:35:17 +00001140 ixgb_vlan_strip_enable(adapter);
1141 else
1142 ixgb_vlan_strip_disable(adapter);
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
1146/**
1147 * ixgb_watchdog - Timer Call-back
1148 * @data: pointer to netdev cast into an unsigned long
1149 **/
1150
1151static void
1152ixgb_watchdog(unsigned long data)
1153{
1154 struct ixgb_adapter *adapter = (struct ixgb_adapter *)data;
1155 struct net_device *netdev = adapter->netdev;
1156 struct ixgb_desc_ring *txdr = &adapter->tx_ring;
1157
1158 ixgb_check_for_link(&adapter->hw);
1159
1160 if (ixgb_check_for_bad_link(&adapter->hw)) {
1161 /* force the reset path */
1162 netif_stop_queue(netdev);
1163 }
1164
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001165 if (adapter->hw.link_up) {
1166 if (!netif_carrier_ok(netdev)) {
Joe Perchesd328bc82010-04-27 00:50:58 +00001167 netdev_info(netdev,
1168 "NIC Link is Up 10 Gbps Full Duplex, Flow Control: %s\n",
1169 (adapter->hw.fc.type == ixgb_fc_full) ?
1170 "RX/TX" :
1171 (adapter->hw.fc.type == ixgb_fc_rx_pause) ?
1172 "RX" :
1173 (adapter->hw.fc.type == ixgb_fc_tx_pause) ?
1174 "TX" : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 adapter->link_speed = 10000;
1176 adapter->link_duplex = FULL_DUPLEX;
1177 netif_carrier_on(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179 } else {
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001180 if (netif_carrier_ok(netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 adapter->link_speed = 0;
1182 adapter->link_duplex = 0;
Joe Perchesd328bc82010-04-27 00:50:58 +00001183 netdev_info(netdev, "NIC Link is Down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
1186 }
1187
1188 ixgb_update_stats(adapter);
1189
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001190 if (!netif_carrier_ok(netdev)) {
1191 if (IXGB_DESC_UNUSED(txdr) + 1 < txdr->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 /* We've lost link, so the controller stops DMA,
1193 * but we've got queued Tx work that's never going
1194 * to get done, so reset controller to flush Tx.
1195 * (Do the reset outside of interrupt context). */
1196 schedule_work(&adapter->tx_timeout_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00001197 /* return immediately since reset is imminent */
1198 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
1200 }
1201
1202 /* Force detection of hung controller every watchdog period */
Joe Perches446490c2008-03-21 11:06:37 -07001203 adapter->detect_tx_hung = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 /* generate an interrupt to force clean up of any stragglers */
1206 IXGB_WRITE_REG(&adapter->hw, ICS, IXGB_INT_TXDW);
1207
1208 /* Reset the timer */
1209 mod_timer(&adapter->watchdog_timer, jiffies + 2 * HZ);
1210}
1211
1212#define IXGB_TX_FLAGS_CSUM 0x00000001
1213#define IXGB_TX_FLAGS_VLAN 0x00000002
1214#define IXGB_TX_FLAGS_TSO 0x00000004
1215
Auke Kok235949d12006-05-26 09:35:52 -07001216static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217ixgb_tso(struct ixgb_adapter *adapter, struct sk_buff *skb)
1218{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 struct ixgb_context_desc *context_desc;
1220 unsigned int i;
Joe Perches222441a2008-04-03 10:06:25 -07001221 u8 ipcss, ipcso, tucss, tucso, hdr_len;
1222 u16 ipcse, tucse, mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 int err;
1224
Herbert Xu89114af2006-07-08 13:34:32 -07001225 if (likely(skb_is_gso(skb))) {
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001226 struct ixgb_buffer *buffer_info;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001227 struct iphdr *iph;
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 if (skb_header_cloned(skb)) {
1230 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1231 if (err)
1232 return err;
1233 }
1234
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07001235 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Herbert Xu79671682006-06-22 02:40:14 -07001236 mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001237 iph = ip_hdr(skb);
1238 iph->tot_len = 0;
1239 iph->check = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001240 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
1241 iph->daddr, 0,
1242 IPPROTO_TCP, 0);
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001243 ipcss = skb_network_offset(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001244 ipcso = (void *)&(iph->check) - (void *)skb->data;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07001245 ipcse = skb_transport_offset(skb) - 1;
1246 tucss = skb_transport_offset(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001247 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 tucse = 0;
1249
1250 i = adapter->tx_ring.next_to_use;
1251 context_desc = IXGB_CONTEXT_DESC(adapter->tx_ring, i);
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001252 buffer_info = &adapter->tx_ring.buffer_info[i];
1253 WARN_ON(buffer_info->dma != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 context_desc->ipcss = ipcss;
1256 context_desc->ipcso = ipcso;
1257 context_desc->ipcse = cpu_to_le16(ipcse);
1258 context_desc->tucss = tucss;
1259 context_desc->tucso = tucso;
1260 context_desc->tucse = cpu_to_le16(tucse);
1261 context_desc->mss = cpu_to_le16(mss);
1262 context_desc->hdr_len = hdr_len;
1263 context_desc->status = 0;
1264 context_desc->cmd_type_len = cpu_to_le32(
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001265 IXGB_CONTEXT_DESC_TYPE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 | IXGB_CONTEXT_DESC_CMD_TSE
1267 | IXGB_CONTEXT_DESC_CMD_IP
1268 | IXGB_CONTEXT_DESC_CMD_TCP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 | IXGB_CONTEXT_DESC_CMD_IDE
1270 | (skb->len - (hdr_len)));
1271
Malli Chilakala06c2f9e2005-04-28 18:46:51 -07001272
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001273 if (++i == adapter->tx_ring.count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 adapter->tx_ring.next_to_use = i;
1275
1276 return 1;
1277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 return 0;
1280}
1281
Joe Perches446490c2008-03-21 11:06:37 -07001282static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283ixgb_tx_csum(struct ixgb_adapter *adapter, struct sk_buff *skb)
1284{
1285 struct ixgb_context_desc *context_desc;
1286 unsigned int i;
Joe Perches222441a2008-04-03 10:06:25 -07001287 u8 css, cso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001289 if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001290 struct ixgb_buffer *buffer_info;
Michał Mirosław0d0b1672010-12-14 15:24:08 +00001291 css = skb_checksum_start_offset(skb);
Al Viroff1dcad2006-11-20 18:07:29 -08001292 cso = css + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 i = adapter->tx_ring.next_to_use;
1295 context_desc = IXGB_CONTEXT_DESC(adapter->tx_ring, i);
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001296 buffer_info = &adapter->tx_ring.buffer_info[i];
1297 WARN_ON(buffer_info->dma != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 context_desc->tucss = css;
1300 context_desc->tucso = cso;
1301 context_desc->tucse = 0;
1302 /* zero out any previously existing data in one instruction */
Joe Perches222441a2008-04-03 10:06:25 -07001303 *(u32 *)&(context_desc->ipcss) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 context_desc->status = 0;
1305 context_desc->hdr_len = 0;
1306 context_desc->mss = 0;
1307 context_desc->cmd_type_len =
1308 cpu_to_le32(IXGB_CONTEXT_DESC_TYPE
Malli Chilakala06c2f9e2005-04-28 18:46:51 -07001309 | IXGB_TX_DESC_CMD_IDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001311 if (++i == adapter->tx_ring.count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 adapter->tx_ring.next_to_use = i;
1313
Joe Perches446490c2008-03-21 11:06:37 -07001314 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
1316
Joe Perches446490c2008-03-21 11:06:37 -07001317 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
1319
1320#define IXGB_MAX_TXD_PWR 14
1321#define IXGB_MAX_DATA_PER_TXD (1<<IXGB_MAX_TXD_PWR)
1322
Auke Kok235949d12006-05-26 09:35:52 -07001323static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324ixgb_tx_map(struct ixgb_adapter *adapter, struct sk_buff *skb,
1325 unsigned int first)
1326{
1327 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001328 struct pci_dev *pdev = adapter->pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 struct ixgb_buffer *buffer_info;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001330 int len = skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 unsigned int offset = 0, size, count = 0, i;
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001332 unsigned int mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
1334 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 i = tx_ring->next_to_use;
1337
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001338 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 buffer_info = &tx_ring->buffer_info[i];
Auke Kok709cf012006-07-10 08:51:43 -07001340 size = min(len, IXGB_MAX_DATA_PER_TXD);
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001341 /* Workaround for premature desc write-backs
1342 * in TSO mode. Append 4-byte sentinel desc */
1343 if (unlikely(mss && !nr_frags && size == len && size > 8))
1344 size -= 4;
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 buffer_info->length = size;
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001347 WARN_ON(buffer_info->dma != 0);
Jesse Brandeburg34336632008-07-08 15:51:37 -07001348 buffer_info->time_stamp = jiffies;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001349 buffer_info->mapped_as_page = false;
Nick Nunley47631f82010-04-27 13:10:03 +00001350 buffer_info->dma = dma_map_single(&pdev->dev,
1351 skb->data + offset,
1352 size, DMA_TO_DEVICE);
1353 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyckadeaa902009-12-02 16:46:31 +00001354 goto dma_error;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001355 buffer_info->next_to_watch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 len -= size;
1358 offset += size;
1359 count++;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001360 if (len) {
1361 i++;
1362 if (i == tx_ring->count)
1363 i = 0;
1364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366
Jesse Brandeburg14593362008-07-08 15:52:33 -07001367 for (f = 0; f < nr_frags; f++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001368 const struct skb_frag_struct *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 frag = &skb_shinfo(skb)->frags[f];
Eric Dumazet9e903e02011-10-18 21:00:24 +00001371 len = skb_frag_size(frag);
Ian Campbell877749b2011-08-29 23:18:26 +00001372 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001374 while (len) {
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001375 i++;
1376 if (i == tx_ring->count)
1377 i = 0;
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 buffer_info = &tx_ring->buffer_info[i];
Auke Kok709cf012006-07-10 08:51:43 -07001380 size = min(len, IXGB_MAX_DATA_PER_TXD);
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001381
1382 /* Workaround for premature desc write-backs
1383 * in TSO mode. Append 4-byte sentinel desc */
Auke Kok19abe862007-10-30 11:21:50 -07001384 if (unlikely(mss && (f == (nr_frags - 1))
1385 && size == len && size > 8))
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001386 size -= 4;
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 buffer_info->length = size;
Jesse Brandeburg34336632008-07-08 15:51:37 -07001389 buffer_info->time_stamp = jiffies;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001390 buffer_info->mapped_as_page = true;
1391 buffer_info->dma =
Ian Campbell877749b2011-08-29 23:18:26 +00001392 skb_frag_dma_map(&pdev->dev, frag, offset, size,
1393 DMA_TO_DEVICE);
Nick Nunley47631f82010-04-27 13:10:03 +00001394 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyckadeaa902009-12-02 16:46:31 +00001395 goto dma_error;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001396 buffer_info->next_to_watch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 len -= size;
1399 offset += size;
1400 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 tx_ring->buffer_info[i].skb = skb;
1404 tx_ring->buffer_info[first].next_to_watch = i;
1405
1406 return count;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001407
1408dma_error:
1409 dev_err(&pdev->dev, "TX DMA map failed\n");
1410 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001411 if (count)
Alexander Duyckadeaa902009-12-02 16:46:31 +00001412 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001413
1414 while (count--) {
1415 if (i==0)
Alexander Duyckadeaa902009-12-02 16:46:31 +00001416 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001417 i--;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001418 buffer_info = &tx_ring->buffer_info[i];
1419 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
1420 }
1421
1422 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423}
1424
Auke Kok235949d12006-05-26 09:35:52 -07001425static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426ixgb_tx_queue(struct ixgb_adapter *adapter, int count, int vlan_id,int tx_flags)
1427{
1428 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1429 struct ixgb_tx_desc *tx_desc = NULL;
1430 struct ixgb_buffer *buffer_info;
Joe Perches222441a2008-04-03 10:06:25 -07001431 u32 cmd_type_len = adapter->tx_cmd_type;
1432 u8 status = 0;
1433 u8 popts = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 unsigned int i;
1435
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001436 if (tx_flags & IXGB_TX_FLAGS_TSO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 cmd_type_len |= IXGB_TX_DESC_CMD_TSE;
1438 popts |= (IXGB_TX_DESC_POPTS_IXSM | IXGB_TX_DESC_POPTS_TXSM);
1439 }
1440
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001441 if (tx_flags & IXGB_TX_FLAGS_CSUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 popts |= IXGB_TX_DESC_POPTS_TXSM;
1443
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001444 if (tx_flags & IXGB_TX_FLAGS_VLAN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 cmd_type_len |= IXGB_TX_DESC_CMD_VLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 i = tx_ring->next_to_use;
1448
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001449 while (count--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 buffer_info = &tx_ring->buffer_info[i];
1451 tx_desc = IXGB_TX_DESC(*tx_ring, i);
1452 tx_desc->buff_addr = cpu_to_le64(buffer_info->dma);
1453 tx_desc->cmd_type_len =
1454 cpu_to_le32(cmd_type_len | buffer_info->length);
1455 tx_desc->status = status;
1456 tx_desc->popts = popts;
1457 tx_desc->vlan = cpu_to_le16(vlan_id);
1458
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001459 if (++i == tx_ring->count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 }
1461
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001462 tx_desc->cmd_type_len |=
1463 cpu_to_le32(IXGB_TX_DESC_CMD_EOP | IXGB_TX_DESC_CMD_RS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 /* Force memory writes to complete before letting h/w
1466 * know there are new descriptors to fetch. (Only
1467 * applicable for weak-ordered memory model archs,
1468 * such as IA-64). */
1469 wmb();
1470
1471 tx_ring->next_to_use = i;
1472 IXGB_WRITE_REG(&adapter->hw, TDT, i);
1473}
1474
Jesse Brandeburgdfd341e2007-01-06 09:51:38 -08001475static int __ixgb_maybe_stop_tx(struct net_device *netdev, int size)
1476{
1477 struct ixgb_adapter *adapter = netdev_priv(netdev);
1478 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1479
1480 netif_stop_queue(netdev);
1481 /* Herbert's original patch had:
1482 * smp_mb__after_netif_stop_queue();
1483 * but since that doesn't exist yet, just open code it. */
1484 smp_mb();
1485
1486 /* We need to check again in a case another CPU has just
1487 * made room available. */
1488 if (likely(IXGB_DESC_UNUSED(tx_ring) < size))
1489 return -EBUSY;
1490
1491 /* A reprieve! */
1492 netif_start_queue(netdev);
1493 ++adapter->restart_queue;
1494 return 0;
1495}
1496
1497static int ixgb_maybe_stop_tx(struct net_device *netdev,
1498 struct ixgb_desc_ring *tx_ring, int size)
1499{
1500 if (likely(IXGB_DESC_UNUSED(tx_ring) >= size))
1501 return 0;
1502 return __ixgb_maybe_stop_tx(netdev, size);
1503}
1504
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506/* Tx Descriptors needed, worst case */
1507#define TXD_USE_COUNT(S) (((S) >> IXGB_MAX_TXD_PWR) + \
1508 (((S) & (IXGB_MAX_DATA_PER_TXD - 1)) ? 1 : 0))
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001509#define DESC_NEEDED TXD_USE_COUNT(IXGB_MAX_DATA_PER_TXD) /* skb->date */ + \
1510 MAX_SKB_FRAGS * TXD_USE_COUNT(PAGE_SIZE) + 1 /* for context */ \
1511 + 1 /* one more needed for sentinel TSO workaround */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Stephen Hemminger3b29a562009-08-31 19:50:55 +00001513static netdev_tx_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514ixgb_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
1515{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001516 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 unsigned int first;
1518 unsigned int tx_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 int vlan_id = 0;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001520 int count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 int tso;
1522
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07001523 if (test_bit(__IXGB_DOWN, &adapter->flags)) {
1524 dev_kfree_skb(skb);
1525 return NETDEV_TX_OK;
1526 }
1527
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001528 if (skb->len <= 0) {
Jesse Brandeburgc2199342008-07-08 15:52:53 -07001529 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001530 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
1532
Jesse Brandeburgdfd341e2007-01-06 09:51:38 -08001533 if (unlikely(ixgb_maybe_stop_tx(netdev, &adapter->tx_ring,
Jesse Brandeburgdb582942008-07-08 15:51:52 -07001534 DESC_NEEDED)))
Auke Kokf017f142006-05-23 10:29:53 -07001535 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Emil Tantilove2444d92011-01-27 09:14:18 +00001537 if (vlan_tx_tag_present(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 tx_flags |= IXGB_TX_FLAGS_VLAN;
1539 vlan_id = vlan_tx_tag_get(skb);
1540 }
1541
1542 first = adapter->tx_ring.next_to_use;
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 tso = ixgb_tso(adapter, skb);
1545 if (tso < 0) {
Jesse Brandeburgc2199342008-07-08 15:52:53 -07001546 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return NETDEV_TX_OK;
1548 }
1549
Auke Kok96f9c2e2006-05-23 10:29:41 -07001550 if (likely(tso))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 tx_flags |= IXGB_TX_FLAGS_TSO;
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001552 else if (ixgb_tx_csum(adapter, skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 tx_flags |= IXGB_TX_FLAGS_CSUM;
1554
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001555 count = ixgb_tx_map(adapter, skb, first);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001557 if (count) {
1558 ixgb_tx_queue(adapter, count, vlan_id, tx_flags);
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001559 /* Make sure there is space in the ring for the next send. */
1560 ixgb_maybe_stop_tx(netdev, &adapter->tx_ring, DESC_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001562 } else {
1563 dev_kfree_skb_any(skb);
1564 adapter->tx_ring.buffer_info[first].time_stamp = 0;
1565 adapter->tx_ring.next_to_use = first;
1566 }
Auke Kokf017f142006-05-23 10:29:53 -07001567
Auke Kokf017f142006-05-23 10:29:53 -07001568 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
1571/**
1572 * ixgb_tx_timeout - Respond to a Tx Hang
1573 * @netdev: network interface device structure
1574 **/
1575
1576static void
1577ixgb_tx_timeout(struct net_device *netdev)
1578{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001579 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 /* Do the reset outside of interrupt context */
1582 schedule_work(&adapter->tx_timeout_task);
1583}
1584
1585static void
David Howellsc4028952006-11-22 14:57:56 +00001586ixgb_tx_timeout_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
David Howellsc4028952006-11-22 14:57:56 +00001588 struct ixgb_adapter *adapter =
1589 container_of(work, struct ixgb_adapter, tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Auke Kok9b8118d2006-05-23 10:35:04 -07001591 adapter->tx_timeout_count++;
Joe Perches446490c2008-03-21 11:06:37 -07001592 ixgb_down(adapter, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 ixgb_up(adapter);
1594}
1595
1596/**
1597 * ixgb_get_stats - Get System Network Statistics
1598 * @netdev: network interface device structure
1599 *
1600 * Returns the address of the device statistics structure.
1601 * The statistics are actually updated from the timer callback.
1602 **/
1603
1604static struct net_device_stats *
1605ixgb_get_stats(struct net_device *netdev)
1606{
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001607 return &netdev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
1609
1610/**
1611 * ixgb_change_mtu - Change the Maximum Transfer Unit
1612 * @netdev: network interface device structure
1613 * @new_mtu: new value for maximum frame size
1614 *
1615 * Returns 0 on success, negative on failure
1616 **/
1617
1618static int
1619ixgb_change_mtu(struct net_device *netdev, int new_mtu)
1620{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001621 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 int max_frame = new_mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
1623 int old_max_frame = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
1624
Jesse Brandeburga65a6042008-07-08 15:51:32 -07001625 /* MTU < 68 is an error for IPv4 traffic, just don't allow it */
1626 if ((new_mtu < 68) ||
1627 (max_frame > IXGB_MAX_JUMBO_FRAME_SIZE + ENET_FCS_LENGTH)) {
Joe Perches6909c662010-02-15 08:34:20 +00001628 netif_err(adapter, probe, adapter->netdev,
1629 "Invalid MTU setting %d\n", new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 return -EINVAL;
1631 }
1632
Jesse Brandeburgb5ca88e2008-07-08 15:51:42 -07001633 if (old_max_frame == max_frame)
1634 return 0;
1635
1636 if (netif_running(netdev))
1637 ixgb_down(adapter, true);
1638
Jesse Brandeburga3dc3da2008-07-08 15:51:22 -07001639 adapter->rx_buffer_len = max_frame + 8; /* + 8 for errata */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 netdev->mtu = new_mtu;
1642
Jesse Brandeburgb5ca88e2008-07-08 15:51:42 -07001643 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 ixgb_up(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 return 0;
1647}
1648
1649/**
1650 * ixgb_update_stats - Update the board statistics counters.
1651 * @adapter: board private structure
1652 **/
1653
1654void
1655ixgb_update_stats(struct ixgb_adapter *adapter)
1656{
Malli Chilakala56336842005-04-28 18:45:50 -07001657 struct net_device *netdev = adapter->netdev;
Linas Vepstas01748fb2006-08-31 14:27:52 -07001658 struct pci_dev *pdev = adapter->pdev;
1659
1660 /* Prevent stats update while adapter is being reset */
Linas Vepstas81b19552006-12-12 18:29:15 -06001661 if (pci_channel_offline(pdev))
Linas Vepstas01748fb2006-08-31 14:27:52 -07001662 return;
Malli Chilakala56336842005-04-28 18:45:50 -07001663
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001664 if ((netdev->flags & IFF_PROMISC) || (netdev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001665 (netdev_mc_count(netdev) > IXGB_MAX_NUM_MULTICAST_ADDRESSES)) {
Malli Chilakala56336842005-04-28 18:45:50 -07001666 u64 multi = IXGB_READ_REG(&adapter->hw, MPRCL);
1667 u32 bcast_l = IXGB_READ_REG(&adapter->hw, BPRCL);
1668 u32 bcast_h = IXGB_READ_REG(&adapter->hw, BPRCH);
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001669 u64 bcast = ((u64)bcast_h << 32) | bcast_l;
Malli Chilakala56336842005-04-28 18:45:50 -07001670
1671 multi |= ((u64)IXGB_READ_REG(&adapter->hw, MPRCH) << 32);
1672 /* fix up multicast stats by removing broadcasts */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001673 if (multi >= bcast)
Malli Chilakala7b891782005-08-11 13:58:55 -07001674 multi -= bcast;
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001675
Malli Chilakala56336842005-04-28 18:45:50 -07001676 adapter->stats.mprcl += (multi & 0xFFFFFFFF);
1677 adapter->stats.mprch += (multi >> 32);
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001678 adapter->stats.bprcl += bcast_l;
Malli Chilakala56336842005-04-28 18:45:50 -07001679 adapter->stats.bprch += bcast_h;
1680 } else {
1681 adapter->stats.mprcl += IXGB_READ_REG(&adapter->hw, MPRCL);
1682 adapter->stats.mprch += IXGB_READ_REG(&adapter->hw, MPRCH);
1683 adapter->stats.bprcl += IXGB_READ_REG(&adapter->hw, BPRCL);
1684 adapter->stats.bprch += IXGB_READ_REG(&adapter->hw, BPRCH);
1685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 adapter->stats.tprl += IXGB_READ_REG(&adapter->hw, TPRL);
1687 adapter->stats.tprh += IXGB_READ_REG(&adapter->hw, TPRH);
1688 adapter->stats.gprcl += IXGB_READ_REG(&adapter->hw, GPRCL);
1689 adapter->stats.gprch += IXGB_READ_REG(&adapter->hw, GPRCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 adapter->stats.uprcl += IXGB_READ_REG(&adapter->hw, UPRCL);
1691 adapter->stats.uprch += IXGB_READ_REG(&adapter->hw, UPRCH);
1692 adapter->stats.vprcl += IXGB_READ_REG(&adapter->hw, VPRCL);
1693 adapter->stats.vprch += IXGB_READ_REG(&adapter->hw, VPRCH);
1694 adapter->stats.jprcl += IXGB_READ_REG(&adapter->hw, JPRCL);
1695 adapter->stats.jprch += IXGB_READ_REG(&adapter->hw, JPRCH);
1696 adapter->stats.gorcl += IXGB_READ_REG(&adapter->hw, GORCL);
1697 adapter->stats.gorch += IXGB_READ_REG(&adapter->hw, GORCH);
1698 adapter->stats.torl += IXGB_READ_REG(&adapter->hw, TORL);
1699 adapter->stats.torh += IXGB_READ_REG(&adapter->hw, TORH);
1700 adapter->stats.rnbc += IXGB_READ_REG(&adapter->hw, RNBC);
1701 adapter->stats.ruc += IXGB_READ_REG(&adapter->hw, RUC);
1702 adapter->stats.roc += IXGB_READ_REG(&adapter->hw, ROC);
1703 adapter->stats.rlec += IXGB_READ_REG(&adapter->hw, RLEC);
1704 adapter->stats.crcerrs += IXGB_READ_REG(&adapter->hw, CRCERRS);
1705 adapter->stats.icbc += IXGB_READ_REG(&adapter->hw, ICBC);
1706 adapter->stats.ecbc += IXGB_READ_REG(&adapter->hw, ECBC);
1707 adapter->stats.mpc += IXGB_READ_REG(&adapter->hw, MPC);
1708 adapter->stats.tptl += IXGB_READ_REG(&adapter->hw, TPTL);
1709 adapter->stats.tpth += IXGB_READ_REG(&adapter->hw, TPTH);
1710 adapter->stats.gptcl += IXGB_READ_REG(&adapter->hw, GPTCL);
1711 adapter->stats.gptch += IXGB_READ_REG(&adapter->hw, GPTCH);
1712 adapter->stats.bptcl += IXGB_READ_REG(&adapter->hw, BPTCL);
1713 adapter->stats.bptch += IXGB_READ_REG(&adapter->hw, BPTCH);
1714 adapter->stats.mptcl += IXGB_READ_REG(&adapter->hw, MPTCL);
1715 adapter->stats.mptch += IXGB_READ_REG(&adapter->hw, MPTCH);
1716 adapter->stats.uptcl += IXGB_READ_REG(&adapter->hw, UPTCL);
1717 adapter->stats.uptch += IXGB_READ_REG(&adapter->hw, UPTCH);
1718 adapter->stats.vptcl += IXGB_READ_REG(&adapter->hw, VPTCL);
1719 adapter->stats.vptch += IXGB_READ_REG(&adapter->hw, VPTCH);
1720 adapter->stats.jptcl += IXGB_READ_REG(&adapter->hw, JPTCL);
1721 adapter->stats.jptch += IXGB_READ_REG(&adapter->hw, JPTCH);
1722 adapter->stats.gotcl += IXGB_READ_REG(&adapter->hw, GOTCL);
1723 adapter->stats.gotch += IXGB_READ_REG(&adapter->hw, GOTCH);
1724 adapter->stats.totl += IXGB_READ_REG(&adapter->hw, TOTL);
1725 adapter->stats.toth += IXGB_READ_REG(&adapter->hw, TOTH);
1726 adapter->stats.dc += IXGB_READ_REG(&adapter->hw, DC);
1727 adapter->stats.plt64c += IXGB_READ_REG(&adapter->hw, PLT64C);
1728 adapter->stats.tsctc += IXGB_READ_REG(&adapter->hw, TSCTC);
1729 adapter->stats.tsctfc += IXGB_READ_REG(&adapter->hw, TSCTFC);
1730 adapter->stats.ibic += IXGB_READ_REG(&adapter->hw, IBIC);
1731 adapter->stats.rfc += IXGB_READ_REG(&adapter->hw, RFC);
1732 adapter->stats.lfc += IXGB_READ_REG(&adapter->hw, LFC);
1733 adapter->stats.pfrc += IXGB_READ_REG(&adapter->hw, PFRC);
1734 adapter->stats.pftc += IXGB_READ_REG(&adapter->hw, PFTC);
1735 adapter->stats.mcfrc += IXGB_READ_REG(&adapter->hw, MCFRC);
1736 adapter->stats.mcftc += IXGB_READ_REG(&adapter->hw, MCFTC);
1737 adapter->stats.xonrxc += IXGB_READ_REG(&adapter->hw, XONRXC);
1738 adapter->stats.xontxc += IXGB_READ_REG(&adapter->hw, XONTXC);
1739 adapter->stats.xoffrxc += IXGB_READ_REG(&adapter->hw, XOFFRXC);
1740 adapter->stats.xofftxc += IXGB_READ_REG(&adapter->hw, XOFFTXC);
1741 adapter->stats.rjc += IXGB_READ_REG(&adapter->hw, RJC);
1742
1743 /* Fill out the OS statistics structure */
1744
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001745 netdev->stats.rx_packets = adapter->stats.gprcl;
1746 netdev->stats.tx_packets = adapter->stats.gptcl;
1747 netdev->stats.rx_bytes = adapter->stats.gorcl;
1748 netdev->stats.tx_bytes = adapter->stats.gotcl;
1749 netdev->stats.multicast = adapter->stats.mprcl;
1750 netdev->stats.collisions = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 /* ignore RLEC as it reports errors for padded (<64bytes) frames
1753 * with a length in the type/len field */
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001754 netdev->stats.rx_errors =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 /* adapter->stats.rnbc + */ adapter->stats.crcerrs +
1756 adapter->stats.ruc +
1757 adapter->stats.roc /*+ adapter->stats.rlec */ +
1758 adapter->stats.icbc +
1759 adapter->stats.ecbc + adapter->stats.mpc;
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 /* see above
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001762 * netdev->stats.rx_length_errors = adapter->stats.rlec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 */
1764
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001765 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
1766 netdev->stats.rx_fifo_errors = adapter->stats.mpc;
1767 netdev->stats.rx_missed_errors = adapter->stats.mpc;
1768 netdev->stats.rx_over_errors = adapter->stats.mpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001770 netdev->stats.tx_errors = 0;
1771 netdev->stats.rx_frame_errors = 0;
1772 netdev->stats.tx_aborted_errors = 0;
1773 netdev->stats.tx_carrier_errors = 0;
1774 netdev->stats.tx_fifo_errors = 0;
1775 netdev->stats.tx_heartbeat_errors = 0;
1776 netdev->stats.tx_window_errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777}
1778
1779#define IXGB_MAX_INTR 10
1780/**
1781 * ixgb_intr - Interrupt Handler
1782 * @irq: interrupt number
1783 * @data: pointer to a network interface device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 **/
1785
1786static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01001787ixgb_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
1789 struct net_device *netdev = data;
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001790 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 struct ixgb_hw *hw = &adapter->hw;
Joe Perches222441a2008-04-03 10:06:25 -07001792 u32 icr = IXGB_READ_REG(hw, ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001794 if (unlikely(!icr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return IRQ_NONE; /* Not our interrupt */
1796
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07001797 if (unlikely(icr & (IXGB_INT_RXSEQ | IXGB_INT_LSC)))
1798 if (!test_bit(__IXGB_DOWN, &adapter->flags))
1799 mod_timer(&adapter->watchdog_timer, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Ben Hutchings288379f2009-01-19 16:43:59 -08001801 if (napi_schedule_prep(&adapter->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001803 /* Disable interrupts and register for poll. The flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 of the posted write is intentionally left out.
1805 */
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 IXGB_WRITE_REG(&adapter->hw, IMC, ~0);
Ben Hutchings288379f2009-01-19 16:43:59 -08001808 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 return IRQ_HANDLED;
1811}
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813/**
1814 * ixgb_clean - NAPI Rx polling callback
1815 * @adapter: board private structure
1816 **/
1817
1818static int
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001819ixgb_clean(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001821 struct ixgb_adapter *adapter = container_of(napi, struct ixgb_adapter, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 int work_done = 0;
1823
David S. Miller53e52c72008-01-07 21:06:12 -08001824 ixgb_clean_tx_irq(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001825 ixgb_clean_rx_irq(adapter, &work_done, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
David S. Miller53e52c72008-01-07 21:06:12 -08001827 /* If budget not fully consumed, exit the polling mode */
1828 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001829 napi_complete(napi);
Jesse Brandeburg72ab5192008-07-08 15:51:27 -07001830 if (!test_bit(__IXGB_DOWN, &adapter->flags))
1831 ixgb_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
1833
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001834 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837/**
1838 * ixgb_clean_tx_irq - Reclaim resources after transmit completes
1839 * @adapter: board private structure
1840 **/
1841
Joe Perches446490c2008-03-21 11:06:37 -07001842static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843ixgb_clean_tx_irq(struct ixgb_adapter *adapter)
1844{
1845 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1846 struct net_device *netdev = adapter->netdev;
1847 struct ixgb_tx_desc *tx_desc, *eop_desc;
1848 struct ixgb_buffer *buffer_info;
1849 unsigned int i, eop;
Joe Perches446490c2008-03-21 11:06:37 -07001850 bool cleaned = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
1852 i = tx_ring->next_to_clean;
1853 eop = tx_ring->buffer_info[i].next_to_watch;
1854 eop_desc = IXGB_TX_DESC(*tx_ring, eop);
1855
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001856 while (eop_desc->status & IXGB_TX_DESC_STATUS_DD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00001858 rmb(); /* read buffer_info after eop_desc */
Joe Perches446490c2008-03-21 11:06:37 -07001859 for (cleaned = false; !cleaned; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 tx_desc = IXGB_TX_DESC(*tx_ring, i);
1861 buffer_info = &tx_ring->buffer_info[i];
1862
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001863 if (tx_desc->popts &
1864 (IXGB_TX_DESC_POPTS_TXSM |
1865 IXGB_TX_DESC_POPTS_IXSM))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 adapter->hw_csum_tx_good++;
1867
1868 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
1869
Joe Perches222441a2008-04-03 10:06:25 -07001870 *(u32 *)&(tx_desc->status) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 cleaned = (i == eop);
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001873 if (++i == tx_ring->count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
1875
1876 eop = tx_ring->buffer_info[i].next_to_watch;
1877 eop_desc = IXGB_TX_DESC(*tx_ring, eop);
1878 }
1879
1880 tx_ring->next_to_clean = i;
1881
Jesse Brandeburg0f8ecba2008-07-08 15:51:07 -07001882 if (unlikely(cleaned && netif_carrier_ok(netdev) &&
1883 IXGB_DESC_UNUSED(tx_ring) >= DESC_NEEDED)) {
1884 /* Make sure that anybody stopping the queue after this
1885 * sees the new next_to_clean. */
1886 smp_mb();
1887
1888 if (netif_queue_stopped(netdev) &&
1889 !(test_bit(__IXGB_DOWN, &adapter->flags))) {
Auke Kok3352a3b2006-05-26 09:35:47 -07001890 netif_wake_queue(netdev);
Jesse Brandeburg0f8ecba2008-07-08 15:51:07 -07001891 ++adapter->restart_queue;
1892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001895 if (adapter->detect_tx_hung) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 /* detect a transmit hang in hardware, this serializes the
1897 * check with the clearing of time_stamp and movement of i */
Joe Perches446490c2008-03-21 11:06:37 -07001898 adapter->detect_tx_hung = false;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001899 if (tx_ring->buffer_info[eop].time_stamp &&
Auke Kok9b8118d2006-05-23 10:35:04 -07001900 time_after(jiffies, tx_ring->buffer_info[eop].time_stamp + HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 && !(IXGB_READ_REG(&adapter->hw, STATUS) &
Auke Kok9b8118d2006-05-23 10:35:04 -07001902 IXGB_STATUS_TXOFF)) {
1903 /* detected Tx unit hang */
Joe Perches6909c662010-02-15 08:34:20 +00001904 netif_err(adapter, drv, adapter->netdev,
1905 "Detected Tx Unit Hang\n"
1906 " TDH <%x>\n"
1907 " TDT <%x>\n"
1908 " next_to_use <%x>\n"
1909 " next_to_clean <%x>\n"
1910 "buffer_info[next_to_clean]\n"
1911 " time_stamp <%lx>\n"
1912 " next_to_watch <%x>\n"
1913 " jiffies <%lx>\n"
1914 " next_to_watch.status <%x>\n",
1915 IXGB_READ_REG(&adapter->hw, TDH),
1916 IXGB_READ_REG(&adapter->hw, TDT),
1917 tx_ring->next_to_use,
1918 tx_ring->next_to_clean,
1919 tx_ring->buffer_info[eop].time_stamp,
1920 eop,
1921 jiffies,
1922 eop_desc->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 netif_stop_queue(netdev);
Auke Kok9b8118d2006-05-23 10:35:04 -07001924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 }
1926
1927 return cleaned;
1928}
1929
1930/**
1931 * ixgb_rx_checksum - Receive Checksum Offload for 82597.
1932 * @adapter: board private structure
1933 * @rx_desc: receive descriptor
1934 * @sk_buff: socket buffer with received data
1935 **/
1936
Auke Kok235949d12006-05-26 09:35:52 -07001937static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938ixgb_rx_checksum(struct ixgb_adapter *adapter,
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001939 struct ixgb_rx_desc *rx_desc,
1940 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941{
1942 /* Ignore Checksum bit is set OR
1943 * TCP Checksum has not been calculated
1944 */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001945 if ((rx_desc->status & IXGB_RX_DESC_STATUS_IXSM) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 (!(rx_desc->status & IXGB_RX_DESC_STATUS_TCPCS))) {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001947 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 return;
1949 }
1950
1951 /* At this point we know the hardware did the TCP checksum */
1952 /* now look at the TCP checksum error bit */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001953 if (rx_desc->errors & IXGB_RX_DESC_ERRORS_TCPE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 /* let the stack verify checksum errors */
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001955 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 adapter->hw_csum_rx_error++;
1957 } else {
1958 /* TCP checksum is good */
1959 skb->ip_summed = CHECKSUM_UNNECESSARY;
1960 adapter->hw_csum_rx_good++;
1961 }
1962}
1963
Joe Perches57bf6ee2010-05-13 15:26:17 +00001964/*
1965 * this should improve performance for small packets with large amounts
1966 * of reassembly being done in the stack
1967 */
1968static void ixgb_check_copybreak(struct net_device *netdev,
1969 struct ixgb_buffer *buffer_info,
1970 u32 length, struct sk_buff **skb)
1971{
1972 struct sk_buff *new_skb;
1973
1974 if (length > copybreak)
1975 return;
1976
1977 new_skb = netdev_alloc_skb_ip_align(netdev, length);
1978 if (!new_skb)
1979 return;
1980
1981 skb_copy_to_linear_data_offset(new_skb, -NET_IP_ALIGN,
1982 (*skb)->data - NET_IP_ALIGN,
1983 length + NET_IP_ALIGN);
1984 /* save the skb in buffer_info as good */
1985 buffer_info->skb = *skb;
1986 *skb = new_skb;
1987}
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989/**
1990 * ixgb_clean_rx_irq - Send received data up the network stack,
1991 * @adapter: board private structure
1992 **/
1993
Joe Perches446490c2008-03-21 11:06:37 -07001994static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995ixgb_clean_rx_irq(struct ixgb_adapter *adapter, int *work_done, int work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
1997 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
1998 struct net_device *netdev = adapter->netdev;
1999 struct pci_dev *pdev = adapter->pdev;
2000 struct ixgb_rx_desc *rx_desc, *next_rxd;
2001 struct ixgb_buffer *buffer_info, *next_buffer, *next2_buffer;
Joe Perches222441a2008-04-03 10:06:25 -07002002 u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 unsigned int i, j;
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002004 int cleaned_count = 0;
Joe Perches446490c2008-03-21 11:06:37 -07002005 bool cleaned = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007 i = rx_ring->next_to_clean;
2008 rx_desc = IXGB_RX_DESC(*rx_ring, i);
2009 buffer_info = &rx_ring->buffer_info[i];
2010
Jesse Brandeburg9a432992008-07-08 15:52:18 -07002011 while (rx_desc->status & IXGB_RX_DESC_STATUS_DD) {
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002012 struct sk_buff *skb;
Malli Chilakalaf404de12005-04-28 19:04:54 -07002013 u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002015 if (*work_done >= work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 break;
2017
2018 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00002019 rmb(); /* read descriptor and rx_buffer_info after status DD */
Malli Chilakalaf404de12005-04-28 19:04:54 -07002020 status = rx_desc->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 skb = buffer_info->skb;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002022 buffer_info->skb = NULL;
Malli Chilakalaf404de12005-04-28 19:04:54 -07002023
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002024 prefetch(skb->data - NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Joe Perches57bf6ee2010-05-13 15:26:17 +00002026 if (++i == rx_ring->count)
2027 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 next_rxd = IXGB_RX_DESC(*rx_ring, i);
2029 prefetch(next_rxd);
2030
Joe Perches57bf6ee2010-05-13 15:26:17 +00002031 j = i + 1;
2032 if (j == rx_ring->count)
2033 j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 next2_buffer = &rx_ring->buffer_info[j];
2035 prefetch(next2_buffer);
2036
2037 next_buffer = &rx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Joe Perches446490c2008-03-21 11:06:37 -07002039 cleaned = true;
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002040 cleaned_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Nick Nunley47631f82010-04-27 13:10:03 +00002042 dma_unmap_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 buffer_info->dma,
2044 buffer_info->length,
Nick Nunley47631f82010-04-27 13:10:03 +00002045 DMA_FROM_DEVICE);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002046 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 length = le16_to_cpu(rx_desc->length);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002049 rx_desc->length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002051 if (unlikely(!(status & IXGB_RX_DESC_STATUS_EOP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 /* All receives must fit into a single buffer */
2054
Joe Perches5edc4462012-02-08 16:14:59 +00002055 pr_debug("Receive packet consumed multiple buffers length<%x>\n",
2056 length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
2058 dev_kfree_skb_irq(skb);
Malli Chilakalaf404de12005-04-28 19:04:54 -07002059 goto rxdesc_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
2061
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002062 if (unlikely(rx_desc->errors &
2063 (IXGB_RX_DESC_ERRORS_CE | IXGB_RX_DESC_ERRORS_SE |
2064 IXGB_RX_DESC_ERRORS_P | IXGB_RX_DESC_ERRORS_RXE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 dev_kfree_skb_irq(skb);
Malli Chilakalaf404de12005-04-28 19:04:54 -07002066 goto rxdesc_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
2068
Joe Perches57bf6ee2010-05-13 15:26:17 +00002069 ixgb_check_copybreak(netdev, buffer_info, length, &skb);
Auke Kok6b900bb2006-05-25 13:24:21 -07002070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 /* Good Receive */
2072 skb_put(skb, length);
2073
2074 /* Receive Checksum Offload */
2075 ixgb_rx_checksum(adapter, rx_desc, skb);
2076
2077 skb->protocol = eth_type_trans(skb, netdev);
Emil Tantilove2444d92011-01-27 09:14:18 +00002078 if (status & IXGB_RX_DESC_STATUS_VP)
Patrick McHardy86a9bad2013-04-19 02:04:30 +00002079 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
2080 le16_to_cpu(rx_desc->special));
Emil Tantilove2444d92011-01-27 09:14:18 +00002081
2082 netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
Malli Chilakalaf404de12005-04-28 19:04:54 -07002084rxdesc_done:
2085 /* clean up descriptor, might be written over by hw */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002088 /* return some buffers to hardware, one at a time is too slow */
2089 if (unlikely(cleaned_count >= IXGB_RX_BUFFER_WRITE)) {
2090 ixgb_alloc_rx_buffers(adapter, cleaned_count);
2091 cleaned_count = 0;
2092 }
2093
Malli Chilakalaf404de12005-04-28 19:04:54 -07002094 /* use prefetched values */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 rx_desc = next_rxd;
2096 buffer_info = next_buffer;
2097 }
2098
2099 rx_ring->next_to_clean = i;
2100
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002101 cleaned_count = IXGB_DESC_UNUSED(rx_ring);
2102 if (cleaned_count)
2103 ixgb_alloc_rx_buffers(adapter, cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 return cleaned;
2106}
2107
2108/**
2109 * ixgb_alloc_rx_buffers - Replace used receive buffers
2110 * @adapter: address of board private structure
2111 **/
2112
2113static void
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002114ixgb_alloc_rx_buffers(struct ixgb_adapter *adapter, int cleaned_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
2116 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
2117 struct net_device *netdev = adapter->netdev;
2118 struct pci_dev *pdev = adapter->pdev;
2119 struct ixgb_rx_desc *rx_desc;
2120 struct ixgb_buffer *buffer_info;
2121 struct sk_buff *skb;
2122 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 long cleancount;
2124
2125 i = rx_ring->next_to_use;
2126 buffer_info = &rx_ring->buffer_info[i];
2127 cleancount = IXGB_DESC_UNUSED(rx_ring);
2128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Malli Chilakala41639fe2005-04-28 18:51:54 -07002130 /* leave three descriptors unused */
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002131 while (--cleancount > 2 && cleaned_count--) {
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002132 /* recycle! its good for you */
Auke Kok69c7a9402006-08-31 14:27:52 -07002133 skb = buffer_info->skb;
2134 if (skb) {
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002135 skb_trim(skb, 0);
2136 goto map_skb;
2137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Eric Dumazet89d71a62009-10-13 05:34:20 +00002139 skb = netdev_alloc_skb_ip_align(netdev, adapter->rx_buffer_len);
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002140 if (unlikely(!skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 /* Better luck next round */
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002142 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 break;
2144 }
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 buffer_info->skb = skb;
2147 buffer_info->length = adapter->rx_buffer_len;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002148map_skb:
Nick Nunley47631f82010-04-27 13:10:03 +00002149 buffer_info->dma = dma_map_single(&pdev->dev,
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002150 skb->data,
2151 adapter->rx_buffer_len,
Nick Nunley47631f82010-04-27 13:10:03 +00002152 DMA_FROM_DEVICE);
Christoph Paasch065946c2013-03-20 08:59:41 +00002153 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
2154 adapter->alloc_rx_buff_failed++;
2155 break;
2156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002158 rx_desc = IXGB_RX_DESC(*rx_ring, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 rx_desc->buff_addr = cpu_to_le64(buffer_info->dma);
Malli Chilakala41639fe2005-04-28 18:51:54 -07002160 /* guarantee DD bit not set now before h/w gets descriptor
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002161 * this is the rest of the workaround for h/w double
Malli Chilakala41639fe2005-04-28 18:51:54 -07002162 * writeback. */
2163 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Christoph Paasch065946c2013-03-20 08:59:41 +00002166 if (++i == rx_ring->count)
2167 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 buffer_info = &rx_ring->buffer_info[i];
2169 }
2170
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002171 if (likely(rx_ring->next_to_use != i)) {
2172 rx_ring->next_to_use = i;
2173 if (unlikely(i-- == 0))
2174 i = (rx_ring->count - 1);
2175
2176 /* Force memory writes to complete before letting h/w
2177 * know there are new descriptors to fetch. (Only
2178 * applicable for weak-ordered memory model archs, such
2179 * as IA-64). */
2180 wmb();
2181 IXGB_WRITE_REG(&adapter->hw, RDT, i);
2182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183}
2184
Emil Tantilovae544962010-12-04 05:35:17 +00002185static void
2186ixgb_vlan_strip_enable(struct ixgb_adapter *adapter)
2187{
2188 u32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Emil Tantilovae544962010-12-04 05:35:17 +00002190 /* enable VLAN tag insert/strip */
2191 ctrl = IXGB_READ_REG(&adapter->hw, CTRL0);
2192 ctrl |= IXGB_CTRL0_VME;
2193 IXGB_WRITE_REG(&adapter->hw, CTRL0, ctrl);
2194}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Emil Tantilovae544962010-12-04 05:35:17 +00002196static void
2197ixgb_vlan_strip_disable(struct ixgb_adapter *adapter)
2198{
2199 u32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Emil Tantilovae544962010-12-04 05:35:17 +00002201 /* disable VLAN tag insert/strip */
2202 ctrl = IXGB_READ_REG(&adapter->hw, CTRL0);
2203 ctrl &= ~IXGB_CTRL0_VME;
2204 IXGB_WRITE_REG(&adapter->hw, CTRL0, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205}
2206
Jiri Pirko8e586132011-12-08 19:52:37 -05002207static int
Patrick McHardy80d5c362013-04-19 02:04:28 +00002208ixgb_vlan_rx_add_vid(struct net_device *netdev, __be16 proto, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002210 struct ixgb_adapter *adapter = netdev_priv(netdev);
Joe Perches222441a2008-04-03 10:06:25 -07002211 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
2213 /* add VID to filter table */
2214
2215 index = (vid >> 5) & 0x7F;
2216 vfta = IXGB_READ_REG_ARRAY(&adapter->hw, VFTA, index);
2217 vfta |= (1 << (vid & 0x1F));
2218 ixgb_write_vfta(&adapter->hw, index, vfta);
Emil Tantilove2444d92011-01-27 09:14:18 +00002219 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002220
2221 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222}
2223
Jiri Pirko8e586132011-12-08 19:52:37 -05002224static int
Patrick McHardy80d5c362013-04-19 02:04:28 +00002225ixgb_vlan_rx_kill_vid(struct net_device *netdev, __be16 proto, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002227 struct ixgb_adapter *adapter = netdev_priv(netdev);
Joe Perches222441a2008-04-03 10:06:25 -07002228 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07002230 /* remove VID from filter table */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
2232 index = (vid >> 5) & 0x7F;
2233 vfta = IXGB_READ_REG_ARRAY(&adapter->hw, VFTA, index);
2234 vfta &= ~(1 << (vid & 0x1F));
2235 ixgb_write_vfta(&adapter->hw, index, vfta);
Emil Tantilove2444d92011-01-27 09:14:18 +00002236 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002237
2238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239}
2240
2241static void
2242ixgb_restore_vlan(struct ixgb_adapter *adapter)
2243{
Emil Tantilove2444d92011-01-27 09:14:18 +00002244 u16 vid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Emil Tantilove2444d92011-01-27 09:14:18 +00002246 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
Patrick McHardy80d5c362013-04-19 02:04:28 +00002247 ixgb_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248}
2249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250#ifdef CONFIG_NET_POLL_CONTROLLER
2251/*
2252 * Polling 'interrupt' - used by things like netconsole to send skbs
2253 * without having to re-enable interrupts. It's not called while
2254 * the interrupt routine is executing.
2255 */
2256
2257static void ixgb_netpoll(struct net_device *dev)
2258{
Auke Kokf990b422006-08-31 14:27:50 -07002259 struct ixgb_adapter *adapter = netdev_priv(dev);
Malli Chilakalaac79c822005-04-28 19:05:32 -07002260
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 disable_irq(adapter->pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002262 ixgb_intr(adapter->pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 enable_irq(adapter->pdev->irq);
2264}
2265#endif
2266
Linas Vepstas01748fb2006-08-31 14:27:52 -07002267/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002268 * ixgb_io_error_detected - called when PCI error is detected
2269 * @pdev: pointer to pci device with error
2270 * @state: pci channel state after error
Linas Vepstas01748fb2006-08-31 14:27:52 -07002271 *
2272 * This callback is called by the PCI subsystem whenever
2273 * a PCI bus error is detected.
2274 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002275static pci_ers_result_t ixgb_io_error_detected(struct pci_dev *pdev,
2276 enum pci_channel_state state)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002277{
2278 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002279 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002280
Dean Nelsond6a1f832009-07-31 09:13:40 +00002281 netif_device_detach(netdev);
2282
2283 if (state == pci_channel_io_perm_failure)
2284 return PCI_ERS_RESULT_DISCONNECT;
2285
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002286 if (netif_running(netdev))
Joe Perches446490c2008-03-21 11:06:37 -07002287 ixgb_down(adapter, true);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002288
2289 pci_disable_device(pdev);
2290
2291 /* Request a slot reset. */
2292 return PCI_ERS_RESULT_NEED_RESET;
2293}
2294
2295/**
2296 * ixgb_io_slot_reset - called after the pci bus has been reset.
2297 * @pdev pointer to pci device with error
2298 *
Jesse Brandeburg52035bd2008-07-08 15:52:28 -07002299 * This callback is called after the PCI bus has been reset.
Linas Vepstas01748fb2006-08-31 14:27:52 -07002300 * Basically, this tries to restart the card from scratch.
2301 * This is a shortened version of the device probe/discovery code,
2302 * it resembles the first-half of the ixgb_probe() routine.
2303 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002304static pci_ers_result_t ixgb_io_slot_reset(struct pci_dev *pdev)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002305{
2306 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002307 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002308
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002309 if (pci_enable_device(pdev)) {
Joe Perches6909c662010-02-15 08:34:20 +00002310 netif_err(adapter, probe, adapter->netdev,
2311 "Cannot re-enable PCI device after reset\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002312 return PCI_ERS_RESULT_DISCONNECT;
2313 }
2314
2315 /* Perform card reset only on one instance of the card */
2316 if (0 != PCI_FUNC (pdev->devfn))
2317 return PCI_ERS_RESULT_RECOVERED;
2318
2319 pci_set_master(pdev);
2320
2321 netif_carrier_off(netdev);
2322 netif_stop_queue(netdev);
2323 ixgb_reset(adapter);
2324
2325 /* Make sure the EEPROM is good */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002326 if (!ixgb_validate_eeprom_checksum(&adapter->hw)) {
Joe Perches6909c662010-02-15 08:34:20 +00002327 netif_err(adapter, probe, adapter->netdev,
2328 "After reset, the EEPROM checksum is not valid\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002329 return PCI_ERS_RESULT_DISCONNECT;
2330 }
2331 ixgb_get_ee_mac_addr(&adapter->hw, netdev->dev_addr);
2332 memcpy(netdev->perm_addr, netdev->dev_addr, netdev->addr_len);
2333
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002334 if (!is_valid_ether_addr(netdev->perm_addr)) {
Joe Perches6909c662010-02-15 08:34:20 +00002335 netif_err(adapter, probe, adapter->netdev,
2336 "After reset, invalid MAC address\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002337 return PCI_ERS_RESULT_DISCONNECT;
2338 }
2339
2340 return PCI_ERS_RESULT_RECOVERED;
2341}
2342
2343/**
2344 * ixgb_io_resume - called when its OK to resume normal operations
2345 * @pdev pointer to pci device with error
2346 *
2347 * The error recovery driver tells us that its OK to resume
2348 * normal operation. Implementation resembles the second-half
2349 * of the ixgb_probe() routine.
2350 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002351static void ixgb_io_resume(struct pci_dev *pdev)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002352{
2353 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002354 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002355
2356 pci_set_master(pdev);
2357
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002358 if (netif_running(netdev)) {
2359 if (ixgb_up(adapter)) {
Joe Perchesd328bc82010-04-27 00:50:58 +00002360 pr_err("can't bring device back up after reset\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002361 return;
2362 }
2363 }
2364
2365 netif_device_attach(netdev);
2366 mod_timer(&adapter->watchdog_timer, jiffies);
2367}
2368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369/* ixgb_main.c */