blob: c7564123dd311b06af9a59adbe48d547ce69e08a [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 Perches446490ca2008-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);
Jiri Pirko8e586132011-12-08 19:52:37 -0500104static int ixgb_vlan_rx_add_vid(struct net_device *netdev, u16 vid);
105static int ixgb_vlan_rx_kill_vid(struct net_device *netdev, u16 vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static void ixgb_restore_vlan(struct ixgb_adapter *adapter);
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#ifdef CONFIG_NET_POLL_CONTROLLER
109/* for netdump / net console */
110static void ixgb_netpoll(struct net_device *dev);
111#endif
112
Linas Vepstas01748fb2006-08-31 14:27:52 -0700113static pci_ers_result_t ixgb_io_error_detected (struct pci_dev *pdev,
Jesse Brandeburg7490d712008-07-08 15:52:08 -0700114 enum pci_channel_state state);
Linas Vepstas01748fb2006-08-31 14:27:52 -0700115static pci_ers_result_t ixgb_io_slot_reset (struct pci_dev *pdev);
116static void ixgb_io_resume (struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Stephen Hemminger3646f0e2012-09-07 09:33:15 -0700118static const struct pci_error_handlers ixgb_err_handler = {
Linas Vepstas01748fb2006-08-31 14:27:52 -0700119 .error_detected = ixgb_io_error_detected,
120 .slot_reset = ixgb_io_slot_reset,
121 .resume = ixgb_io_resume,
122};
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static struct pci_driver ixgb_driver = {
Malli Chilakalac2eba932005-04-28 19:04:32 -0700125 .name = ixgb_driver_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 .id_table = ixgb_pci_tbl,
Malli Chilakalac2eba932005-04-28 19:04:32 -0700127 .probe = ixgb_probe,
Bill Pemberton9f9a12f2012-12-03 09:24:25 -0500128 .remove = ixgb_remove,
Linas Vepstas01748fb2006-08-31 14:27:52 -0700129 .err_handler = &ixgb_err_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
132MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
133MODULE_DESCRIPTION("Intel(R) PRO/10GbE Network Driver");
134MODULE_LICENSE("GPL");
John W. Linville01e5abc2005-05-12 22:23:29 -0400135MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000137#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
138static int debug = -1;
Auke Kokec9c3f52006-05-23 10:34:59 -0700139module_param(debug, int, 0);
140MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/**
143 * ixgb_init_module - Driver Registration Routine
144 *
145 * ixgb_init_module is the first routine called when the driver is
146 * loaded. All it does is register with the PCI subsystem.
147 **/
148
149static int __init
150ixgb_init_module(void)
151{
Joe Perchesd328bc82010-04-27 00:50:58 +0000152 pr_info("%s - version %s\n", ixgb_driver_string, ixgb_driver_version);
153 pr_info("%s\n", ixgb_copyright);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Jeff Garzik29917622006-08-19 17:48:59 -0400155 return pci_register_driver(&ixgb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158module_init(ixgb_init_module);
159
160/**
161 * ixgb_exit_module - Driver Exit Cleanup Routine
162 *
163 * ixgb_exit_module is called just before the driver is removed
164 * from memory.
165 **/
166
167static void __exit
168ixgb_exit_module(void)
169{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 pci_unregister_driver(&ixgb_driver);
171}
172
173module_exit(ixgb_exit_module);
174
175/**
176 * ixgb_irq_disable - Mask off interrupt generation on the NIC
177 * @adapter: board private structure
178 **/
179
Auke Kok235949d2006-05-26 09:35:52 -0700180static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181ixgb_irq_disable(struct ixgb_adapter *adapter)
182{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 IXGB_WRITE_REG(&adapter->hw, IMC, ~0);
184 IXGB_WRITE_FLUSH(&adapter->hw);
185 synchronize_irq(adapter->pdev->irq);
186}
187
188/**
189 * ixgb_irq_enable - Enable default interrupt generation settings
190 * @adapter: board private structure
191 **/
192
Auke Kok235949d2006-05-26 09:35:52 -0700193static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194ixgb_irq_enable(struct ixgb_adapter *adapter)
195{
Jesse Brandeburg9c61a9d2008-03-21 11:07:03 -0700196 u32 val = IXGB_INT_RXT0 | IXGB_INT_RXDMT0 |
197 IXGB_INT_TXDW | IXGB_INT_LSC;
Jon Mason61dc5332012-07-19 21:02:08 +0000198 if (adapter->hw.subsystem_vendor_id == PCI_VENDOR_ID_SUN)
Jesse Brandeburg9c61a9d2008-03-21 11:07:03 -0700199 val |= IXGB_INT_GPI0;
200 IXGB_WRITE_REG(&adapter->hw, IMS, val);
201 IXGB_WRITE_FLUSH(&adapter->hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
204int
205ixgb_up(struct ixgb_adapter *adapter)
206{
207 struct net_device *netdev = adapter->netdev;
Auke Kokfb136c02007-05-17 15:29:07 -0700208 int err, irq_flags = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 int max_frame = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
210 struct ixgb_hw *hw = &adapter->hw;
211
212 /* hardware has been reset, we need to reload some things */
213
Auke Kok8556f0d2006-05-26 09:35:32 -0700214 ixgb_rar_set(hw, netdev->dev_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 ixgb_set_multi(netdev);
216
217 ixgb_restore_vlan(adapter);
218
219 ixgb_configure_tx(adapter);
220 ixgb_setup_rctl(adapter);
221 ixgb_configure_rx(adapter);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -0700222 ixgb_alloc_rx_buffers(adapter, IXGB_DESC_UNUSED(&adapter->rx_ring));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Auke Koke59d1692006-05-26 09:35:28 -0700224 /* disable interrupts and get the hardware into a known state */
225 IXGB_WRITE_REG(&adapter->hw, IMC, 0xffffffff);
226
Auke Kokfb136c02007-05-17 15:29:07 -0700227 /* only enable MSI if bus is in PCI-X mode */
228 if (IXGB_READ_REG(&adapter->hw, STATUS) & IXGB_STATUS_PCIX_MODE) {
229 err = pci_enable_msi(adapter->pdev);
230 if (!err) {
Rusty Russell3db1cd52011-12-19 13:56:45 +0000231 adapter->have_msi = true;
Auke Kokfb136c02007-05-17 15:29:07 -0700232 irq_flags = 0;
233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /* proceed to try to request regular interrupt */
235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Joe Perchesa0607fd2009-11-18 23:29:17 -0800237 err = request_irq(adapter->pdev->irq, ixgb_intr, irq_flags,
Auke Kokfb136c02007-05-17 15:29:07 -0700238 netdev->name, netdev);
239 if (err) {
240 if (adapter->have_msi)
241 pci_disable_msi(adapter->pdev);
Joe Perches6909c662010-02-15 08:34:20 +0000242 netif_err(adapter, probe, adapter->netdev,
243 "Unable to allocate interrupt Error: %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return err;
Auke Kokec9c3f52006-05-23 10:34:59 -0700245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700247 if ((hw->max_frame_size != max_frame) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 (hw->max_frame_size !=
249 (IXGB_READ_REG(hw, MFS) >> IXGB_MFS_SHIFT))) {
250
251 hw->max_frame_size = max_frame;
252
253 IXGB_WRITE_REG(hw, MFS, hw->max_frame_size << IXGB_MFS_SHIFT);
254
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700255 if (hw->max_frame_size >
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 IXGB_MAX_ENET_FRAME_SIZE_WITHOUT_FCS + ENET_FCS_LENGTH) {
Joe Perches222441a2008-04-03 10:06:25 -0700257 u32 ctrl0 = IXGB_READ_REG(hw, CTRL0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700259 if (!(ctrl0 & IXGB_CTRL0_JFE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 ctrl0 |= IXGB_CTRL0_JFE;
261 IXGB_WRITE_REG(hw, CTRL0, ctrl0);
262 }
263 }
264 }
265
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700266 clear_bit(__IXGB_DOWN, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700268 napi_enable(&adapter->napi);
Auke Koke59d1692006-05-26 09:35:28 -0700269 ixgb_irq_enable(adapter);
270
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +0000271 netif_wake_queue(netdev);
272
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700273 mod_timer(&adapter->watchdog_timer, jiffies);
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return 0;
276}
277
278void
Joe Perches446490ca2008-03-21 11:06:37 -0700279ixgb_down(struct ixgb_adapter *adapter, bool kill_watchdog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 struct net_device *netdev = adapter->netdev;
282
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700283 /* prevent the interrupt handler from restarting watchdog */
284 set_bit(__IXGB_DOWN, &adapter->flags);
285
David S. Miller49d85c52008-01-18 04:21:39 -0800286 napi_disable(&adapter->napi);
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700287 /* waiting for NAPI to complete can re-enable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 ixgb_irq_disable(adapter);
289 free_irq(adapter->pdev->irq, netdev);
Auke Kokfb136c02007-05-17 15:29:07 -0700290
291 if (adapter->have_msi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 pci_disable_msi(adapter->pdev);
293
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700294 if (kill_watchdog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 del_timer_sync(&adapter->watchdog_timer);
David S. Miller49d85c52008-01-18 04:21:39 -0800296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 adapter->link_speed = 0;
298 adapter->link_duplex = 0;
299 netif_carrier_off(netdev);
300 netif_stop_queue(netdev);
301
302 ixgb_reset(adapter);
303 ixgb_clean_tx_ring(adapter);
304 ixgb_clean_rx_ring(adapter);
305}
306
307void
308ixgb_reset(struct ixgb_adapter *adapter)
309{
Matheos Worku3fd71312007-12-14 11:48:29 -0800310 struct ixgb_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Matheos Worku3fd71312007-12-14 11:48:29 -0800312 ixgb_adapter_stop(hw);
313 if (!ixgb_init_hw(hw))
Joe Perches6909c662010-02-15 08:34:20 +0000314 netif_err(adapter, probe, adapter->netdev, "ixgb_init_hw failed\n");
Matheos Worku3fd71312007-12-14 11:48:29 -0800315
316 /* restore frame size information */
317 IXGB_WRITE_REG(hw, MFS, hw->max_frame_size << IXGB_MFS_SHIFT);
318 if (hw->max_frame_size >
319 IXGB_MAX_ENET_FRAME_SIZE_WITHOUT_FCS + ENET_FCS_LENGTH) {
320 u32 ctrl0 = IXGB_READ_REG(hw, CTRL0);
321 if (!(ctrl0 & IXGB_CTRL0_JFE)) {
322 ctrl0 |= IXGB_CTRL0_JFE;
323 IXGB_WRITE_REG(hw, CTRL0, ctrl0);
324 }
325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000328static netdev_features_t
329ixgb_fix_features(struct net_device *netdev, netdev_features_t features)
Michał Mirosławf04ea742011-09-23 02:11:30 +0000330{
331 /*
332 * Tx VLAN insertion does not work per HW design when Rx stripping is
333 * disabled.
334 */
335 if (!(features & NETIF_F_HW_VLAN_RX))
336 features &= ~NETIF_F_HW_VLAN_TX;
337
338 return features;
339}
340
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000341static int
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000342ixgb_set_features(struct net_device *netdev, netdev_features_t features)
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000343{
344 struct ixgb_adapter *adapter = netdev_priv(netdev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000345 netdev_features_t changed = features ^ netdev->features;
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000346
Michał Mirosławf04ea742011-09-23 02:11:30 +0000347 if (!(changed & (NETIF_F_RXCSUM|NETIF_F_HW_VLAN_RX)))
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000348 return 0;
349
350 adapter->rx_csum = !!(features & NETIF_F_RXCSUM);
351
352 if (netif_running(netdev)) {
353 ixgb_down(adapter, true);
354 ixgb_up(adapter);
355 ixgb_set_speed_duplex(netdev);
356 } else
357 ixgb_reset(adapter);
358
359 return 0;
360}
361
362
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800363static const struct net_device_ops ixgb_netdev_ops = {
364 .ndo_open = ixgb_open,
365 .ndo_stop = ixgb_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800366 .ndo_start_xmit = ixgb_xmit_frame,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800367 .ndo_get_stats = ixgb_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000368 .ndo_set_rx_mode = ixgb_set_multi,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800369 .ndo_validate_addr = eth_validate_addr,
370 .ndo_set_mac_address = ixgb_set_mac,
371 .ndo_change_mtu = ixgb_change_mtu,
372 .ndo_tx_timeout = ixgb_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800373 .ndo_vlan_rx_add_vid = ixgb_vlan_rx_add_vid,
374 .ndo_vlan_rx_kill_vid = ixgb_vlan_rx_kill_vid,
375#ifdef CONFIG_NET_POLL_CONTROLLER
376 .ndo_poll_controller = ixgb_netpoll,
377#endif
Michał Mirosławf04ea742011-09-23 02:11:30 +0000378 .ndo_fix_features = ixgb_fix_features,
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000379 .ndo_set_features = ixgb_set_features,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800380};
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382/**
383 * ixgb_probe - Device Initialization Routine
384 * @pdev: PCI device information struct
385 * @ent: entry in ixgb_pci_tbl
386 *
387 * Returns 0 on success, negative on failure
388 *
389 * ixgb_probe initializes an adapter identified by a pci_dev structure.
390 * The OS initialization, configuring of the adapter private structure,
391 * and a hardware reset occur.
392 **/
393
Bill Pemberton9f9a12f2012-12-03 09:24:25 -0500394static int
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700395ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 struct net_device *netdev = NULL;
398 struct ixgb_adapter *adapter;
399 static int cards_found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 int pci_using_dac;
401 int i;
402 int err;
403
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700404 err = pci_enable_device(pdev);
405 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return err;
407
Nick Nunley47631f82010-04-27 13:10:03 +0000408 pci_using_dac = 0;
409 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
410 if (!err) {
411 err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
412 if (!err)
413 pci_using_dac = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 } else {
Nick Nunley47631f82010-04-27 13:10:03 +0000415 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
416 if (err) {
417 err = dma_set_coherent_mask(&pdev->dev,
418 DMA_BIT_MASK(32));
419 if (err) {
420 pr_err("No usable DMA configuration, aborting\n");
421 goto err_dma_mask;
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700426 err = pci_request_regions(pdev, ixgb_driver_name);
427 if (err)
Andreas Schwabc91e4682006-03-28 18:10:38 +0200428 goto err_request_regions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 pci_set_master(pdev);
431
432 netdev = alloc_etherdev(sizeof(struct ixgb_adapter));
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700433 if (!netdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 err = -ENOMEM;
435 goto err_alloc_etherdev;
436 }
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 SET_NETDEV_DEV(netdev, &pdev->dev);
439
440 pci_set_drvdata(pdev, netdev);
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700441 adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 adapter->netdev = netdev;
443 adapter->pdev = pdev;
444 adapter->hw.back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000445 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Arjan van de Ven275f1652008-10-20 21:42:39 -0700447 adapter->hw.hw_addr = pci_ioremap_bar(pdev, BAR_0);
Jesse Brandeburge539e462008-07-08 15:51:12 -0700448 if (!adapter->hw.hw_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 err = -EIO;
450 goto err_ioremap;
451 }
452
Jesse Brandeburg14593362008-07-08 15:52:33 -0700453 for (i = BAR_1; i <= BAR_5; i++) {
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700454 if (pci_resource_len(pdev, i) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 continue;
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700456 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 adapter->hw.io_base = pci_resource_start(pdev, i);
458 break;
459 }
460 }
461
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800462 netdev->netdev_ops = &ixgb_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 ixgb_set_ethtool_ops(netdev);
Auke Kok9b8118d2006-05-23 10:35:04 -0700464 netdev->watchdog_timeo = 5 * HZ;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700465 netif_napi_add(netdev, &adapter->napi, ixgb_clean, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Auke Kok0eb5a342006-09-27 12:53:17 -0700467 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 adapter->bd_number = cards_found;
470 adapter->link_speed = 0;
471 adapter->link_duplex = 0;
472
473 /* setup the private structure */
474
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700475 err = ixgb_sw_init(adapter);
476 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 goto err_sw_init;
478
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000479 netdev->hw_features = NETIF_F_SG |
480 NETIF_F_TSO |
Michał Mirosławf04ea742011-09-23 02:11:30 +0000481 NETIF_F_HW_CSUM |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 NETIF_F_HW_VLAN_TX |
Michał Mirosławf04ea742011-09-23 02:11:30 +0000483 NETIF_F_HW_VLAN_RX;
484 netdev->features = netdev->hw_features |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 NETIF_F_HW_VLAN_FILTER;
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000486 netdev->hw_features |= NETIF_F_RXCSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Yi Zou7b872a52010-09-22 17:57:58 +0000488 if (pci_using_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +0000490 netdev->vlan_features |= NETIF_F_HIGHDMA;
491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 /* make sure the EEPROM is good */
494
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700495 if (!ixgb_validate_eeprom_checksum(&adapter->hw)) {
Joe Perches6909c662010-02-15 08:34:20 +0000496 netif_err(adapter, probe, adapter->netdev,
497 "The EEPROM Checksum Is Not Valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 err = -EIO;
499 goto err_eeprom;
500 }
501
502 ixgb_get_ee_mac_addr(&adapter->hw, netdev->dev_addr);
503
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +0000504 if (!is_valid_ether_addr(netdev->dev_addr)) {
Joe Perches6909c662010-02-15 08:34:20 +0000505 netif_err(adapter, probe, adapter->netdev, "Invalid MAC Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 err = -EIO;
507 goto err_eeprom;
508 }
509
510 adapter->part_num = ixgb_get_ee_pba_number(&adapter->hw);
511
512 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +0000513 adapter->watchdog_timer.function = ixgb_watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 adapter->watchdog_timer.data = (unsigned long)adapter;
515
David Howellsc4028952006-11-22 14:57:56 +0000516 INIT_WORK(&adapter->tx_timeout_task, ixgb_tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Auke Kokec9c3f52006-05-23 10:34:59 -0700518 strcpy(netdev->name, "eth%d");
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700519 err = register_netdev(netdev);
520 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 goto err_register;
522
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000523 /* carrier off reporting is important to ethtool even BEFORE open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Joe Perches6909c662010-02-15 08:34:20 +0000526 netif_info(adapter, probe, adapter->netdev,
527 "Intel(R) PRO/10GbE Network Connection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 ixgb_check_options(adapter);
529 /* reset the hardware with the new settings */
530
531 ixgb_reset(adapter);
532
533 cards_found++;
534 return 0;
535
536err_register:
537err_sw_init:
538err_eeprom:
539 iounmap(adapter->hw.hw_addr);
540err_ioremap:
541 free_netdev(netdev);
542err_alloc_etherdev:
543 pci_release_regions(pdev);
Andreas Schwabc91e4682006-03-28 18:10:38 +0200544err_request_regions:
545err_dma_mask:
546 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return err;
548}
549
550/**
551 * ixgb_remove - Device Removal Routine
552 * @pdev: PCI device information struct
553 *
554 * ixgb_remove is called by the PCI subsystem to alert the driver
555 * that it should release a PCI device. The could be caused by a
556 * Hot-Plug event, or because the driver is going to be removed from
557 * memory.
558 **/
559
Bill Pemberton9f9a12f2012-12-03 09:24:25 -0500560static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561ixgb_remove(struct pci_dev *pdev)
562{
563 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700564 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Tejun Heo23f333a2010-12-12 16:45:14 +0100566 cancel_work_sync(&adapter->tx_timeout_task);
Jesse Brandeburg12579692008-07-08 15:51:47 -0700567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 unregister_netdev(netdev);
569
570 iounmap(adapter->hw.hw_addr);
571 pci_release_regions(pdev);
572
573 free_netdev(netdev);
Emil Tantilovec43a812010-10-28 00:59:49 +0000574 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
577/**
578 * ixgb_sw_init - Initialize general software structures (struct ixgb_adapter)
579 * @adapter: board private structure to initialize
580 *
581 * ixgb_sw_init initializes the Adapter private data structure.
582 * Fields are initialized based on PCI device information and
583 * OS network device settings (MTU size).
584 **/
585
Bill Pemberton9f9a12f2012-12-03 09:24:25 -0500586static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587ixgb_sw_init(struct ixgb_adapter *adapter)
588{
589 struct ixgb_hw *hw = &adapter->hw;
590 struct net_device *netdev = adapter->netdev;
591 struct pci_dev *pdev = adapter->pdev;
592
593 /* PCI config space info */
594
595 hw->vendor_id = pdev->vendor;
596 hw->device_id = pdev->device;
597 hw->subsystem_vendor_id = pdev->subsystem_vendor;
598 hw->subsystem_id = pdev->subsystem_device;
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 hw->max_frame_size = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
Jesse Brandeburga3dc3da2008-07-08 15:51:22 -0700601 adapter->rx_buffer_len = hw->max_frame_size + 8; /* + 8 for errata */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Joe Perches6909c662010-02-15 08:34:20 +0000603 if ((hw->device_id == IXGB_DEVICE_ID_82597EX) ||
604 (hw->device_id == IXGB_DEVICE_ID_82597EX_CX4) ||
605 (hw->device_id == IXGB_DEVICE_ID_82597EX_LR) ||
606 (hw->device_id == IXGB_DEVICE_ID_82597EX_SR))
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700607 hw->mac_type = ixgb_82597;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 else {
609 /* should never have loaded on this device */
Joe Perches6909c662010-02-15 08:34:20 +0000610 netif_err(adapter, probe, adapter->netdev, "unsupported device id\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
613 /* enable flow control to be programmed */
614 hw->fc.send_xon = 1;
615
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700616 set_bit(__IXGB_DOWN, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return 0;
618}
619
620/**
621 * ixgb_open - Called when a network interface is made active
622 * @netdev: network interface device structure
623 *
624 * Returns 0 on success, negative value on failure
625 *
626 * The open entry point is called when a network interface is made
627 * active by the system (IFF_UP). At this point all resources needed
628 * for transmit and receive operations are allocated, the interrupt
629 * handler is registered with the OS, the watchdog timer is started,
630 * and the stack is notified that the interface is ready.
631 **/
632
633static int
634ixgb_open(struct net_device *netdev)
635{
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700636 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 int err;
638
639 /* allocate transmit descriptors */
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700640 err = ixgb_setup_tx_resources(adapter);
641 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 goto err_setup_tx;
643
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000644 netif_carrier_off(netdev);
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /* allocate receive descriptors */
647
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700648 err = ixgb_setup_rx_resources(adapter);
649 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 goto err_setup_rx;
651
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700652 err = ixgb_up(adapter);
653 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 goto err_up;
655
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000656 netif_start_queue(netdev);
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return 0;
659
660err_up:
661 ixgb_free_rx_resources(adapter);
662err_setup_rx:
663 ixgb_free_tx_resources(adapter);
664err_setup_tx:
665 ixgb_reset(adapter);
666
667 return err;
668}
669
670/**
671 * ixgb_close - Disables a network interface
672 * @netdev: network interface device structure
673 *
674 * Returns 0, this is not allowed to fail
675 *
676 * The close entry point is called when an interface is de-activated
677 * by the OS. The hardware is still under the drivers control, but
678 * needs to be disabled. A global MAC reset is issued to stop the
679 * hardware, and all transmit and receive resources are freed.
680 **/
681
682static int
683ixgb_close(struct net_device *netdev)
684{
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700685 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Joe Perches446490ca2008-03-21 11:06:37 -0700687 ixgb_down(adapter, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 ixgb_free_tx_resources(adapter);
690 ixgb_free_rx_resources(adapter);
691
692 return 0;
693}
694
695/**
696 * ixgb_setup_tx_resources - allocate Tx resources (Descriptors)
697 * @adapter: board private structure
698 *
699 * Return 0 on success, negative on failure
700 **/
701
702int
703ixgb_setup_tx_resources(struct ixgb_adapter *adapter)
704{
705 struct ixgb_desc_ring *txdr = &adapter->tx_ring;
706 struct pci_dev *pdev = adapter->pdev;
707 int size;
708
709 size = sizeof(struct ixgb_buffer) * txdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +0000710 txdr->buffer_info = vzalloc(size);
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700711 if (!txdr->buffer_info) {
Joe Perches6909c662010-02-15 08:34:20 +0000712 netif_err(adapter, probe, adapter->netdev,
713 "Unable to allocate transmit descriptor ring memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return -ENOMEM;
715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 /* round up to nearest 4K */
718
719 txdr->size = txdr->count * sizeof(struct ixgb_tx_desc);
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700720 txdr->size = ALIGN(txdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Nick Nunley47631f82010-04-27 13:10:03 +0000722 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
723 GFP_KERNEL);
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700724 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 vfree(txdr->buffer_info);
Joe Perches6909c662010-02-15 08:34:20 +0000726 netif_err(adapter, probe, adapter->netdev,
727 "Unable to allocate transmit descriptor memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return -ENOMEM;
729 }
730 memset(txdr->desc, 0, txdr->size);
731
732 txdr->next_to_use = 0;
733 txdr->next_to_clean = 0;
734
735 return 0;
736}
737
738/**
739 * ixgb_configure_tx - Configure 82597 Transmit Unit after Reset.
740 * @adapter: board private structure
741 *
742 * Configure the Tx unit of the MAC after a reset.
743 **/
744
745static void
746ixgb_configure_tx(struct ixgb_adapter *adapter)
747{
Joe Perches222441a2008-04-03 10:06:25 -0700748 u64 tdba = adapter->tx_ring.dma;
749 u32 tdlen = adapter->tx_ring.count * sizeof(struct ixgb_tx_desc);
750 u32 tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 struct ixgb_hw *hw = &adapter->hw;
752
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700753 /* Setup the Base and Length of the Tx Descriptor Ring
754 * tx_ring.dma can be either a 32 or 64 bit value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 */
756
757 IXGB_WRITE_REG(hw, TDBAL, (tdba & 0x00000000ffffffffULL));
758 IXGB_WRITE_REG(hw, TDBAH, (tdba >> 32));
759
760 IXGB_WRITE_REG(hw, TDLEN, tdlen);
761
762 /* Setup the HW Tx Head and Tail descriptor pointers */
763
764 IXGB_WRITE_REG(hw, TDH, 0);
765 IXGB_WRITE_REG(hw, TDT, 0);
766
767 /* don't set up txdctl, it induces performance problems if configured
768 * incorrectly */
769 /* Set the Tx Interrupt Delay register */
770
771 IXGB_WRITE_REG(hw, TIDV, adapter->tx_int_delay);
772
773 /* Program the Transmit Control Register */
774
775 tctl = IXGB_TCTL_TCE | IXGB_TCTL_TXEN | IXGB_TCTL_TPDE;
776 IXGB_WRITE_REG(hw, TCTL, tctl);
777
778 /* Setup Transmit Descriptor Settings for this adapter */
779 adapter->tx_cmd_type =
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700780 IXGB_TX_DESC_TYPE |
781 (adapter->tx_int_delay_enable ? IXGB_TX_DESC_CMD_IDE : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
784/**
785 * ixgb_setup_rx_resources - allocate Rx resources (Descriptors)
786 * @adapter: board private structure
787 *
788 * Returns 0 on success, negative on failure
789 **/
790
791int
792ixgb_setup_rx_resources(struct ixgb_adapter *adapter)
793{
794 struct ixgb_desc_ring *rxdr = &adapter->rx_ring;
795 struct pci_dev *pdev = adapter->pdev;
796 int size;
797
798 size = sizeof(struct ixgb_buffer) * rxdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +0000799 rxdr->buffer_info = vzalloc(size);
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700800 if (!rxdr->buffer_info) {
Joe Perches6909c662010-02-15 08:34:20 +0000801 netif_err(adapter, probe, adapter->netdev,
802 "Unable to allocate receive descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return -ENOMEM;
804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 /* Round up to nearest 4K */
807
808 rxdr->size = rxdr->count * sizeof(struct ixgb_rx_desc);
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700809 rxdr->size = ALIGN(rxdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Nick Nunley47631f82010-04-27 13:10:03 +0000811 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
812 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700814 if (!rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 vfree(rxdr->buffer_info);
Joe Perches6909c662010-02-15 08:34:20 +0000816 netif_err(adapter, probe, adapter->netdev,
817 "Unable to allocate receive descriptors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return -ENOMEM;
819 }
820 memset(rxdr->desc, 0, rxdr->size);
821
822 rxdr->next_to_clean = 0;
823 rxdr->next_to_use = 0;
824
825 return 0;
826}
827
828/**
829 * ixgb_setup_rctl - configure the receive control register
830 * @adapter: Board private structure
831 **/
832
833static void
834ixgb_setup_rctl(struct ixgb_adapter *adapter)
835{
Joe Perches222441a2008-04-03 10:06:25 -0700836 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 rctl = IXGB_READ_REG(&adapter->hw, RCTL);
839
840 rctl &= ~(3 << IXGB_RCTL_MO_SHIFT);
841
842 rctl |=
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700843 IXGB_RCTL_BAM | IXGB_RCTL_RDMTS_1_2 |
844 IXGB_RCTL_RXEN | IXGB_RCTL_CFF |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 (adapter->hw.mc_filter_type << IXGB_RCTL_MO_SHIFT);
846
847 rctl |= IXGB_RCTL_SECRC;
848
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700849 if (adapter->rx_buffer_len <= IXGB_RXBUFFER_2048)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 rctl |= IXGB_RCTL_BSIZE_2048;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700851 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 rctl |= IXGB_RCTL_BSIZE_4096;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700853 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_8192)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 rctl |= IXGB_RCTL_BSIZE_8192;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700855 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_16384)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 rctl |= IXGB_RCTL_BSIZE_16384;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 IXGB_WRITE_REG(&adapter->hw, RCTL, rctl);
859}
860
861/**
862 * ixgb_configure_rx - Configure 82597 Receive Unit after Reset.
863 * @adapter: board private structure
864 *
865 * Configure the Rx unit of the MAC after a reset.
866 **/
867
868static void
869ixgb_configure_rx(struct ixgb_adapter *adapter)
870{
Joe Perches222441a2008-04-03 10:06:25 -0700871 u64 rdba = adapter->rx_ring.dma;
872 u32 rdlen = adapter->rx_ring.count * sizeof(struct ixgb_rx_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 struct ixgb_hw *hw = &adapter->hw;
Joe Perches222441a2008-04-03 10:06:25 -0700874 u32 rctl;
875 u32 rxcsum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 /* make sure receives are disabled while setting up the descriptors */
878
879 rctl = IXGB_READ_REG(hw, RCTL);
880 IXGB_WRITE_REG(hw, RCTL, rctl & ~IXGB_RCTL_RXEN);
881
882 /* set the Receive Delay Timer Register */
883
884 IXGB_WRITE_REG(hw, RDTR, adapter->rx_int_delay);
885
886 /* Setup the Base and Length of the Rx Descriptor Ring */
887
888 IXGB_WRITE_REG(hw, RDBAL, (rdba & 0x00000000ffffffffULL));
889 IXGB_WRITE_REG(hw, RDBAH, (rdba >> 32));
890
891 IXGB_WRITE_REG(hw, RDLEN, rdlen);
892
893 /* Setup the HW Rx Head and Tail Descriptor Pointers */
894 IXGB_WRITE_REG(hw, RDH, 0);
895 IXGB_WRITE_REG(hw, RDT, 0);
896
Jesse Brandeburg43603862008-07-08 15:51:17 -0700897 /* due to the hardware errata with RXDCTL, we are unable to use any of
898 * the performance enhancing features of it without causing other
899 * subtle bugs, some of the bugs could include receive length
900 * corruption at high data rates (WTHRESH > 0) and/or receive
901 * descriptor ring irregularites (particularly in hardware cache) */
902 IXGB_WRITE_REG(hw, RXDCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 /* Enable Receive Checksum Offload for TCP and UDP */
Joe Perches446490ca2008-03-21 11:06:37 -0700905 if (adapter->rx_csum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 rxcsum = IXGB_READ_REG(hw, RXCSUM);
907 rxcsum |= IXGB_RXCSUM_TUOFL;
908 IXGB_WRITE_REG(hw, RXCSUM, rxcsum);
909 }
910
911 /* Enable Receives */
912
913 IXGB_WRITE_REG(hw, RCTL, rctl);
914}
915
916/**
917 * ixgb_free_tx_resources - Free Tx Resources
918 * @adapter: board private structure
919 *
920 * Free all transmit software resources
921 **/
922
923void
924ixgb_free_tx_resources(struct ixgb_adapter *adapter)
925{
926 struct pci_dev *pdev = adapter->pdev;
927
928 ixgb_clean_tx_ring(adapter);
929
930 vfree(adapter->tx_ring.buffer_info);
931 adapter->tx_ring.buffer_info = NULL;
932
Nick Nunley47631f82010-04-27 13:10:03 +0000933 dma_free_coherent(&pdev->dev, adapter->tx_ring.size,
934 adapter->tx_ring.desc, adapter->tx_ring.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 adapter->tx_ring.desc = NULL;
937}
938
Auke Kok235949d2006-05-26 09:35:52 -0700939static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940ixgb_unmap_and_free_tx_resource(struct ixgb_adapter *adapter,
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700941 struct ixgb_buffer *buffer_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Alexander Duyckadeaa902009-12-02 16:46:31 +0000943 if (buffer_info->dma) {
944 if (buffer_info->mapped_as_page)
Nick Nunley47631f82010-04-27 13:10:03 +0000945 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
946 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyckadeaa902009-12-02 16:46:31 +0000947 else
Nick Nunley47631f82010-04-27 13:10:03 +0000948 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
949 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyckadeaa902009-12-02 16:46:31 +0000950 buffer_info->dma = 0;
951 }
952
Alexander Duyckfe52eeb2009-03-19 01:15:21 +0000953 if (buffer_info->skb) {
Alexander Duyckfe52eeb2009-03-19 01:15:21 +0000954 dev_kfree_skb_any(buffer_info->skb);
955 buffer_info->skb = NULL;
956 }
Auke Kok1dfdd7d2006-05-25 13:24:17 -0700957 buffer_info->time_stamp = 0;
958 /* these fields must always be initialized in tx
959 * buffer_info->length = 0;
960 * buffer_info->next_to_watch = 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
963/**
964 * ixgb_clean_tx_ring - Free Tx Buffers
965 * @adapter: board private structure
966 **/
967
968static void
969ixgb_clean_tx_ring(struct ixgb_adapter *adapter)
970{
971 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
972 struct ixgb_buffer *buffer_info;
973 unsigned long size;
974 unsigned int i;
975
976 /* Free all the Tx ring sk_buffs */
977
Jesse Brandeburg14593362008-07-08 15:52:33 -0700978 for (i = 0; i < tx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 buffer_info = &tx_ring->buffer_info[i];
980 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
981 }
982
983 size = sizeof(struct ixgb_buffer) * tx_ring->count;
984 memset(tx_ring->buffer_info, 0, size);
985
986 /* Zero out the descriptor ring */
987
988 memset(tx_ring->desc, 0, tx_ring->size);
989
990 tx_ring->next_to_use = 0;
991 tx_ring->next_to_clean = 0;
992
993 IXGB_WRITE_REG(&adapter->hw, TDH, 0);
994 IXGB_WRITE_REG(&adapter->hw, TDT, 0);
995}
996
997/**
998 * ixgb_free_rx_resources - Free Rx Resources
999 * @adapter: board private structure
1000 *
1001 * Free all receive software resources
1002 **/
1003
1004void
1005ixgb_free_rx_resources(struct ixgb_adapter *adapter)
1006{
1007 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
1008 struct pci_dev *pdev = adapter->pdev;
1009
1010 ixgb_clean_rx_ring(adapter);
1011
1012 vfree(rx_ring->buffer_info);
1013 rx_ring->buffer_info = NULL;
1014
Nick Nunley47631f82010-04-27 13:10:03 +00001015 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
1016 rx_ring->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 rx_ring->desc = NULL;
1019}
1020
1021/**
1022 * ixgb_clean_rx_ring - Free Rx Buffers
1023 * @adapter: board private structure
1024 **/
1025
1026static void
1027ixgb_clean_rx_ring(struct ixgb_adapter *adapter)
1028{
1029 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
1030 struct ixgb_buffer *buffer_info;
1031 struct pci_dev *pdev = adapter->pdev;
1032 unsigned long size;
1033 unsigned int i;
1034
1035 /* Free all the Rx ring sk_buffs */
1036
Jesse Brandeburg14593362008-07-08 15:52:33 -07001037 for (i = 0; i < rx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 buffer_info = &rx_ring->buffer_info[i];
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001039 if (buffer_info->dma) {
Nick Nunley47631f82010-04-27 13:10:03 +00001040 dma_unmap_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 buffer_info->dma,
1042 buffer_info->length,
Nick Nunley47631f82010-04-27 13:10:03 +00001043 DMA_FROM_DEVICE);
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001044 buffer_info->dma = 0;
1045 buffer_info->length = 0;
1046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001048 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 dev_kfree_skb(buffer_info->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 buffer_info->skb = NULL;
1051 }
1052 }
1053
1054 size = sizeof(struct ixgb_buffer) * rx_ring->count;
1055 memset(rx_ring->buffer_info, 0, size);
1056
1057 /* Zero out the descriptor ring */
1058
1059 memset(rx_ring->desc, 0, rx_ring->size);
1060
1061 rx_ring->next_to_clean = 0;
1062 rx_ring->next_to_use = 0;
1063
1064 IXGB_WRITE_REG(&adapter->hw, RDH, 0);
1065 IXGB_WRITE_REG(&adapter->hw, RDT, 0);
1066}
1067
1068/**
1069 * ixgb_set_mac - Change the Ethernet Address of the NIC
1070 * @netdev: network interface device structure
1071 * @p: pointer to an address structure
1072 *
1073 * Returns 0 on success, negative on failure
1074 **/
1075
1076static int
1077ixgb_set_mac(struct net_device *netdev, void *p)
1078{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001079 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 struct sockaddr *addr = p;
1081
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001082 if (!is_valid_ether_addr(addr->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return -EADDRNOTAVAIL;
1084
1085 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1086
1087 ixgb_rar_set(&adapter->hw, addr->sa_data, 0);
1088
1089 return 0;
1090}
1091
1092/**
1093 * ixgb_set_multi - Multicast and Promiscuous mode set
1094 * @netdev: network interface device structure
1095 *
1096 * The set_multi entry point is called whenever the multicast address
1097 * list or the network interface flags are updated. This routine is
1098 * responsible for configuring the hardware for proper multicast,
1099 * promiscuous mode, and all-multi behavior.
1100 **/
1101
1102static void
1103ixgb_set_multi(struct net_device *netdev)
1104{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001105 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 struct ixgb_hw *hw = &adapter->hw;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001107 struct netdev_hw_addr *ha;
Joe Perches222441a2008-04-03 10:06:25 -07001108 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 /* Check for Promiscuous and All Multicast modes */
1111
1112 rctl = IXGB_READ_REG(hw, RCTL);
1113
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001114 if (netdev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 rctl |= (IXGB_RCTL_UPE | IXGB_RCTL_MPE);
Emil Tantilovae544962010-12-04 05:35:17 +00001116 /* disable VLAN filtering */
1117 rctl &= ~IXGB_RCTL_CFIEN;
Patrick McHardy746b9f02008-07-16 20:15:45 -07001118 rctl &= ~IXGB_RCTL_VFE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07001120 if (netdev->flags & IFF_ALLMULTI) {
1121 rctl |= IXGB_RCTL_MPE;
1122 rctl &= ~IXGB_RCTL_UPE;
1123 } else {
1124 rctl &= ~(IXGB_RCTL_UPE | IXGB_RCTL_MPE);
1125 }
Emil Tantilovae544962010-12-04 05:35:17 +00001126 /* enable VLAN filtering */
Patrick McHardy78ed11a2008-07-16 20:16:14 -07001127 rctl |= IXGB_RCTL_VFE;
Emil Tantilovae544962010-12-04 05:35:17 +00001128 rctl &= ~IXGB_RCTL_CFIEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 }
1130
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001131 if (netdev_mc_count(netdev) > IXGB_MAX_NUM_MULTICAST_ADDRESSES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 rctl |= IXGB_RCTL_MPE;
1133 IXGB_WRITE_REG(hw, RCTL, rctl);
1134 } else {
Jesse Brandeburgac5ac782011-09-23 02:11:29 +00001135 u8 *mta = kmalloc(IXGB_MAX_NUM_MULTICAST_ADDRESSES *
1136 ETH_ALEN, GFP_ATOMIC);
1137 u8 *addr;
Joe Perchese404dec2012-01-29 12:56:23 +00001138 if (!mta)
Jesse Brandeburgac5ac782011-09-23 02:11:29 +00001139 goto alloc_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141 IXGB_WRITE_REG(hw, RCTL, rctl);
1142
Jesse Brandeburgac5ac782011-09-23 02:11:29 +00001143 addr = mta;
1144 netdev_for_each_mc_addr(ha, netdev) {
1145 memcpy(addr, ha->addr, ETH_ALEN);
1146 addr += ETH_ALEN;
1147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001149 ixgb_mc_addr_list_update(hw, mta, netdev_mc_count(netdev), 0);
Jesse Brandeburgac5ac782011-09-23 02:11:29 +00001150 kfree(mta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
Emil Tantilovae544962010-12-04 05:35:17 +00001152
Jesse Brandeburgac5ac782011-09-23 02:11:29 +00001153alloc_failed:
Emil Tantilovae544962010-12-04 05:35:17 +00001154 if (netdev->features & NETIF_F_HW_VLAN_RX)
1155 ixgb_vlan_strip_enable(adapter);
1156 else
1157 ixgb_vlan_strip_disable(adapter);
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
1161/**
1162 * ixgb_watchdog - Timer Call-back
1163 * @data: pointer to netdev cast into an unsigned long
1164 **/
1165
1166static void
1167ixgb_watchdog(unsigned long data)
1168{
1169 struct ixgb_adapter *adapter = (struct ixgb_adapter *)data;
1170 struct net_device *netdev = adapter->netdev;
1171 struct ixgb_desc_ring *txdr = &adapter->tx_ring;
1172
1173 ixgb_check_for_link(&adapter->hw);
1174
1175 if (ixgb_check_for_bad_link(&adapter->hw)) {
1176 /* force the reset path */
1177 netif_stop_queue(netdev);
1178 }
1179
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001180 if (adapter->hw.link_up) {
1181 if (!netif_carrier_ok(netdev)) {
Joe Perchesd328bc82010-04-27 00:50:58 +00001182 netdev_info(netdev,
1183 "NIC Link is Up 10 Gbps Full Duplex, Flow Control: %s\n",
1184 (adapter->hw.fc.type == ixgb_fc_full) ?
1185 "RX/TX" :
1186 (adapter->hw.fc.type == ixgb_fc_rx_pause) ?
1187 "RX" :
1188 (adapter->hw.fc.type == ixgb_fc_tx_pause) ?
1189 "TX" : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 adapter->link_speed = 10000;
1191 adapter->link_duplex = FULL_DUPLEX;
1192 netif_carrier_on(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
1194 } else {
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001195 if (netif_carrier_ok(netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 adapter->link_speed = 0;
1197 adapter->link_duplex = 0;
Joe Perchesd328bc82010-04-27 00:50:58 +00001198 netdev_info(netdev, "NIC Link is Down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201 }
1202
1203 ixgb_update_stats(adapter);
1204
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001205 if (!netif_carrier_ok(netdev)) {
1206 if (IXGB_DESC_UNUSED(txdr) + 1 < txdr->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 /* We've lost link, so the controller stops DMA,
1208 * but we've got queued Tx work that's never going
1209 * to get done, so reset controller to flush Tx.
1210 * (Do the reset outside of interrupt context). */
1211 schedule_work(&adapter->tx_timeout_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00001212 /* return immediately since reset is imminent */
1213 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215 }
1216
1217 /* Force detection of hung controller every watchdog period */
Joe Perches446490ca2008-03-21 11:06:37 -07001218 adapter->detect_tx_hung = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 /* generate an interrupt to force clean up of any stragglers */
1221 IXGB_WRITE_REG(&adapter->hw, ICS, IXGB_INT_TXDW);
1222
1223 /* Reset the timer */
1224 mod_timer(&adapter->watchdog_timer, jiffies + 2 * HZ);
1225}
1226
1227#define IXGB_TX_FLAGS_CSUM 0x00000001
1228#define IXGB_TX_FLAGS_VLAN 0x00000002
1229#define IXGB_TX_FLAGS_TSO 0x00000004
1230
Auke Kok235949d2006-05-26 09:35:52 -07001231static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232ixgb_tso(struct ixgb_adapter *adapter, struct sk_buff *skb)
1233{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 struct ixgb_context_desc *context_desc;
1235 unsigned int i;
Joe Perches222441a2008-04-03 10:06:25 -07001236 u8 ipcss, ipcso, tucss, tucso, hdr_len;
1237 u16 ipcse, tucse, mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 int err;
1239
Herbert Xu89114af2006-07-08 13:34:32 -07001240 if (likely(skb_is_gso(skb))) {
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001241 struct ixgb_buffer *buffer_info;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001242 struct iphdr *iph;
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 if (skb_header_cloned(skb)) {
1245 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1246 if (err)
1247 return err;
1248 }
1249
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07001250 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Herbert Xu79671682006-06-22 02:40:14 -07001251 mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001252 iph = ip_hdr(skb);
1253 iph->tot_len = 0;
1254 iph->check = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001255 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
1256 iph->daddr, 0,
1257 IPPROTO_TCP, 0);
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001258 ipcss = skb_network_offset(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001259 ipcso = (void *)&(iph->check) - (void *)skb->data;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07001260 ipcse = skb_transport_offset(skb) - 1;
1261 tucss = skb_transport_offset(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001262 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 tucse = 0;
1264
1265 i = adapter->tx_ring.next_to_use;
1266 context_desc = IXGB_CONTEXT_DESC(adapter->tx_ring, i);
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001267 buffer_info = &adapter->tx_ring.buffer_info[i];
1268 WARN_ON(buffer_info->dma != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 context_desc->ipcss = ipcss;
1271 context_desc->ipcso = ipcso;
1272 context_desc->ipcse = cpu_to_le16(ipcse);
1273 context_desc->tucss = tucss;
1274 context_desc->tucso = tucso;
1275 context_desc->tucse = cpu_to_le16(tucse);
1276 context_desc->mss = cpu_to_le16(mss);
1277 context_desc->hdr_len = hdr_len;
1278 context_desc->status = 0;
1279 context_desc->cmd_type_len = cpu_to_le32(
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001280 IXGB_CONTEXT_DESC_TYPE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 | IXGB_CONTEXT_DESC_CMD_TSE
1282 | IXGB_CONTEXT_DESC_CMD_IP
1283 | IXGB_CONTEXT_DESC_CMD_TCP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 | IXGB_CONTEXT_DESC_CMD_IDE
1285 | (skb->len - (hdr_len)));
1286
Malli Chilakala06c2f9e2005-04-28 18:46:51 -07001287
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001288 if (++i == adapter->tx_ring.count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 adapter->tx_ring.next_to_use = i;
1290
1291 return 1;
1292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 return 0;
1295}
1296
Joe Perches446490ca2008-03-21 11:06:37 -07001297static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298ixgb_tx_csum(struct ixgb_adapter *adapter, struct sk_buff *skb)
1299{
1300 struct ixgb_context_desc *context_desc;
1301 unsigned int i;
Joe Perches222441a2008-04-03 10:06:25 -07001302 u8 css, cso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001304 if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001305 struct ixgb_buffer *buffer_info;
Michał Mirosław0d0b1672010-12-14 15:24:08 +00001306 css = skb_checksum_start_offset(skb);
Al Viroff1dcad2006-11-20 18:07:29 -08001307 cso = css + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 i = adapter->tx_ring.next_to_use;
1310 context_desc = IXGB_CONTEXT_DESC(adapter->tx_ring, i);
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001311 buffer_info = &adapter->tx_ring.buffer_info[i];
1312 WARN_ON(buffer_info->dma != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 context_desc->tucss = css;
1315 context_desc->tucso = cso;
1316 context_desc->tucse = 0;
1317 /* zero out any previously existing data in one instruction */
Joe Perches222441a2008-04-03 10:06:25 -07001318 *(u32 *)&(context_desc->ipcss) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 context_desc->status = 0;
1320 context_desc->hdr_len = 0;
1321 context_desc->mss = 0;
1322 context_desc->cmd_type_len =
1323 cpu_to_le32(IXGB_CONTEXT_DESC_TYPE
Malli Chilakala06c2f9e2005-04-28 18:46:51 -07001324 | IXGB_TX_DESC_CMD_IDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001326 if (++i == adapter->tx_ring.count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 adapter->tx_ring.next_to_use = i;
1328
Joe Perches446490ca2008-03-21 11:06:37 -07001329 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
1331
Joe Perches446490ca2008-03-21 11:06:37 -07001332 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334
1335#define IXGB_MAX_TXD_PWR 14
1336#define IXGB_MAX_DATA_PER_TXD (1<<IXGB_MAX_TXD_PWR)
1337
Auke Kok235949d2006-05-26 09:35:52 -07001338static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339ixgb_tx_map(struct ixgb_adapter *adapter, struct sk_buff *skb,
1340 unsigned int first)
1341{
1342 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001343 struct pci_dev *pdev = adapter->pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 struct ixgb_buffer *buffer_info;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001345 int len = skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 unsigned int offset = 0, size, count = 0, i;
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001347 unsigned int mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
1349 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 i = tx_ring->next_to_use;
1352
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001353 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 buffer_info = &tx_ring->buffer_info[i];
Auke Kok709cf012006-07-10 08:51:43 -07001355 size = min(len, IXGB_MAX_DATA_PER_TXD);
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001356 /* Workaround for premature desc write-backs
1357 * in TSO mode. Append 4-byte sentinel desc */
1358 if (unlikely(mss && !nr_frags && size == len && size > 8))
1359 size -= 4;
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 buffer_info->length = size;
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001362 WARN_ON(buffer_info->dma != 0);
Jesse Brandeburg34336632008-07-08 15:51:37 -07001363 buffer_info->time_stamp = jiffies;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001364 buffer_info->mapped_as_page = false;
Nick Nunley47631f82010-04-27 13:10:03 +00001365 buffer_info->dma = dma_map_single(&pdev->dev,
1366 skb->data + offset,
1367 size, DMA_TO_DEVICE);
1368 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyckadeaa902009-12-02 16:46:31 +00001369 goto dma_error;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001370 buffer_info->next_to_watch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 len -= size;
1373 offset += size;
1374 count++;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001375 if (len) {
1376 i++;
1377 if (i == tx_ring->count)
1378 i = 0;
1379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
1381
Jesse Brandeburg14593362008-07-08 15:52:33 -07001382 for (f = 0; f < nr_frags; f++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001383 const struct skb_frag_struct *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 frag = &skb_shinfo(skb)->frags[f];
Eric Dumazet9e903e02011-10-18 21:00:24 +00001386 len = skb_frag_size(frag);
Ian Campbell877749b2011-08-29 23:18:26 +00001387 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001389 while (len) {
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001390 i++;
1391 if (i == tx_ring->count)
1392 i = 0;
1393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 buffer_info = &tx_ring->buffer_info[i];
Auke Kok709cf012006-07-10 08:51:43 -07001395 size = min(len, IXGB_MAX_DATA_PER_TXD);
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001396
1397 /* Workaround for premature desc write-backs
1398 * in TSO mode. Append 4-byte sentinel desc */
Auke Kok19abe862007-10-30 11:21:50 -07001399 if (unlikely(mss && (f == (nr_frags - 1))
1400 && size == len && size > 8))
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001401 size -= 4;
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 buffer_info->length = size;
Jesse Brandeburg34336632008-07-08 15:51:37 -07001404 buffer_info->time_stamp = jiffies;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001405 buffer_info->mapped_as_page = true;
1406 buffer_info->dma =
Ian Campbell877749b2011-08-29 23:18:26 +00001407 skb_frag_dma_map(&pdev->dev, frag, offset, size,
1408 DMA_TO_DEVICE);
Nick Nunley47631f82010-04-27 13:10:03 +00001409 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyckadeaa902009-12-02 16:46:31 +00001410 goto dma_error;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001411 buffer_info->next_to_watch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 len -= size;
1414 offset += size;
1415 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 tx_ring->buffer_info[i].skb = skb;
1419 tx_ring->buffer_info[first].next_to_watch = i;
1420
1421 return count;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001422
1423dma_error:
1424 dev_err(&pdev->dev, "TX DMA map failed\n");
1425 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001426 if (count)
Alexander Duyckadeaa902009-12-02 16:46:31 +00001427 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001428
1429 while (count--) {
1430 if (i==0)
Alexander Duyckadeaa902009-12-02 16:46:31 +00001431 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001432 i--;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001433 buffer_info = &tx_ring->buffer_info[i];
1434 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
1435 }
1436
1437 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438}
1439
Auke Kok235949d2006-05-26 09:35:52 -07001440static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441ixgb_tx_queue(struct ixgb_adapter *adapter, int count, int vlan_id,int tx_flags)
1442{
1443 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1444 struct ixgb_tx_desc *tx_desc = NULL;
1445 struct ixgb_buffer *buffer_info;
Joe Perches222441a2008-04-03 10:06:25 -07001446 u32 cmd_type_len = adapter->tx_cmd_type;
1447 u8 status = 0;
1448 u8 popts = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 unsigned int i;
1450
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001451 if (tx_flags & IXGB_TX_FLAGS_TSO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 cmd_type_len |= IXGB_TX_DESC_CMD_TSE;
1453 popts |= (IXGB_TX_DESC_POPTS_IXSM | IXGB_TX_DESC_POPTS_TXSM);
1454 }
1455
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001456 if (tx_flags & IXGB_TX_FLAGS_CSUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 popts |= IXGB_TX_DESC_POPTS_TXSM;
1458
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001459 if (tx_flags & IXGB_TX_FLAGS_VLAN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 cmd_type_len |= IXGB_TX_DESC_CMD_VLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 i = tx_ring->next_to_use;
1463
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001464 while (count--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 buffer_info = &tx_ring->buffer_info[i];
1466 tx_desc = IXGB_TX_DESC(*tx_ring, i);
1467 tx_desc->buff_addr = cpu_to_le64(buffer_info->dma);
1468 tx_desc->cmd_type_len =
1469 cpu_to_le32(cmd_type_len | buffer_info->length);
1470 tx_desc->status = status;
1471 tx_desc->popts = popts;
1472 tx_desc->vlan = cpu_to_le16(vlan_id);
1473
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001474 if (++i == tx_ring->count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 }
1476
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001477 tx_desc->cmd_type_len |=
1478 cpu_to_le32(IXGB_TX_DESC_CMD_EOP | IXGB_TX_DESC_CMD_RS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 /* Force memory writes to complete before letting h/w
1481 * know there are new descriptors to fetch. (Only
1482 * applicable for weak-ordered memory model archs,
1483 * such as IA-64). */
1484 wmb();
1485
1486 tx_ring->next_to_use = i;
1487 IXGB_WRITE_REG(&adapter->hw, TDT, i);
1488}
1489
Jesse Brandeburgdfd341e2007-01-06 09:51:38 -08001490static int __ixgb_maybe_stop_tx(struct net_device *netdev, int size)
1491{
1492 struct ixgb_adapter *adapter = netdev_priv(netdev);
1493 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1494
1495 netif_stop_queue(netdev);
1496 /* Herbert's original patch had:
1497 * smp_mb__after_netif_stop_queue();
1498 * but since that doesn't exist yet, just open code it. */
1499 smp_mb();
1500
1501 /* We need to check again in a case another CPU has just
1502 * made room available. */
1503 if (likely(IXGB_DESC_UNUSED(tx_ring) < size))
1504 return -EBUSY;
1505
1506 /* A reprieve! */
1507 netif_start_queue(netdev);
1508 ++adapter->restart_queue;
1509 return 0;
1510}
1511
1512static int ixgb_maybe_stop_tx(struct net_device *netdev,
1513 struct ixgb_desc_ring *tx_ring, int size)
1514{
1515 if (likely(IXGB_DESC_UNUSED(tx_ring) >= size))
1516 return 0;
1517 return __ixgb_maybe_stop_tx(netdev, size);
1518}
1519
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521/* Tx Descriptors needed, worst case */
1522#define TXD_USE_COUNT(S) (((S) >> IXGB_MAX_TXD_PWR) + \
1523 (((S) & (IXGB_MAX_DATA_PER_TXD - 1)) ? 1 : 0))
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001524#define DESC_NEEDED TXD_USE_COUNT(IXGB_MAX_DATA_PER_TXD) /* skb->date */ + \
1525 MAX_SKB_FRAGS * TXD_USE_COUNT(PAGE_SIZE) + 1 /* for context */ \
1526 + 1 /* one more needed for sentinel TSO workaround */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Stephen Hemminger3b29a562009-08-31 19:50:55 +00001528static netdev_tx_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529ixgb_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
1530{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001531 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 unsigned int first;
1533 unsigned int tx_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 int vlan_id = 0;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001535 int count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 int tso;
1537
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07001538 if (test_bit(__IXGB_DOWN, &adapter->flags)) {
1539 dev_kfree_skb(skb);
1540 return NETDEV_TX_OK;
1541 }
1542
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001543 if (skb->len <= 0) {
Jesse Brandeburgc2199342008-07-08 15:52:53 -07001544 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001545 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
1547
Jesse Brandeburgdfd341e2007-01-06 09:51:38 -08001548 if (unlikely(ixgb_maybe_stop_tx(netdev, &adapter->tx_ring,
Jesse Brandeburgdb582942008-07-08 15:51:52 -07001549 DESC_NEEDED)))
Auke Kokf017f142006-05-23 10:29:53 -07001550 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Emil Tantilove2444d92011-01-27 09:14:18 +00001552 if (vlan_tx_tag_present(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 tx_flags |= IXGB_TX_FLAGS_VLAN;
1554 vlan_id = vlan_tx_tag_get(skb);
1555 }
1556
1557 first = adapter->tx_ring.next_to_use;
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 tso = ixgb_tso(adapter, skb);
1560 if (tso < 0) {
Jesse Brandeburgc2199342008-07-08 15:52:53 -07001561 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 return NETDEV_TX_OK;
1563 }
1564
Auke Kok96f9c2e2006-05-23 10:29:41 -07001565 if (likely(tso))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 tx_flags |= IXGB_TX_FLAGS_TSO;
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001567 else if (ixgb_tx_csum(adapter, skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 tx_flags |= IXGB_TX_FLAGS_CSUM;
1569
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001570 count = ixgb_tx_map(adapter, skb, first);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001572 if (count) {
1573 ixgb_tx_queue(adapter, count, vlan_id, tx_flags);
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001574 /* Make sure there is space in the ring for the next send. */
1575 ixgb_maybe_stop_tx(netdev, &adapter->tx_ring, DESC_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001577 } else {
1578 dev_kfree_skb_any(skb);
1579 adapter->tx_ring.buffer_info[first].time_stamp = 0;
1580 adapter->tx_ring.next_to_use = first;
1581 }
Auke Kokf017f142006-05-23 10:29:53 -07001582
Auke Kokf017f142006-05-23 10:29:53 -07001583 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584}
1585
1586/**
1587 * ixgb_tx_timeout - Respond to a Tx Hang
1588 * @netdev: network interface device structure
1589 **/
1590
1591static void
1592ixgb_tx_timeout(struct net_device *netdev)
1593{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001594 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 /* Do the reset outside of interrupt context */
1597 schedule_work(&adapter->tx_timeout_task);
1598}
1599
1600static void
David Howellsc4028952006-11-22 14:57:56 +00001601ixgb_tx_timeout_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
David Howellsc4028952006-11-22 14:57:56 +00001603 struct ixgb_adapter *adapter =
1604 container_of(work, struct ixgb_adapter, tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Auke Kok9b8118d2006-05-23 10:35:04 -07001606 adapter->tx_timeout_count++;
Joe Perches446490ca2008-03-21 11:06:37 -07001607 ixgb_down(adapter, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 ixgb_up(adapter);
1609}
1610
1611/**
1612 * ixgb_get_stats - Get System Network Statistics
1613 * @netdev: network interface device structure
1614 *
1615 * Returns the address of the device statistics structure.
1616 * The statistics are actually updated from the timer callback.
1617 **/
1618
1619static struct net_device_stats *
1620ixgb_get_stats(struct net_device *netdev)
1621{
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001622 return &netdev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623}
1624
1625/**
1626 * ixgb_change_mtu - Change the Maximum Transfer Unit
1627 * @netdev: network interface device structure
1628 * @new_mtu: new value for maximum frame size
1629 *
1630 * Returns 0 on success, negative on failure
1631 **/
1632
1633static int
1634ixgb_change_mtu(struct net_device *netdev, int new_mtu)
1635{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001636 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 int max_frame = new_mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
1638 int old_max_frame = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
1639
Jesse Brandeburga65a6042008-07-08 15:51:32 -07001640 /* MTU < 68 is an error for IPv4 traffic, just don't allow it */
1641 if ((new_mtu < 68) ||
1642 (max_frame > IXGB_MAX_JUMBO_FRAME_SIZE + ENET_FCS_LENGTH)) {
Joe Perches6909c662010-02-15 08:34:20 +00001643 netif_err(adapter, probe, adapter->netdev,
1644 "Invalid MTU setting %d\n", new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 return -EINVAL;
1646 }
1647
Jesse Brandeburgb5ca88e2008-07-08 15:51:42 -07001648 if (old_max_frame == max_frame)
1649 return 0;
1650
1651 if (netif_running(netdev))
1652 ixgb_down(adapter, true);
1653
Jesse Brandeburga3dc3da2008-07-08 15:51:22 -07001654 adapter->rx_buffer_len = max_frame + 8; /* + 8 for errata */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656 netdev->mtu = new_mtu;
1657
Jesse Brandeburgb5ca88e2008-07-08 15:51:42 -07001658 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 ixgb_up(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
1661 return 0;
1662}
1663
1664/**
1665 * ixgb_update_stats - Update the board statistics counters.
1666 * @adapter: board private structure
1667 **/
1668
1669void
1670ixgb_update_stats(struct ixgb_adapter *adapter)
1671{
Malli Chilakala56336842005-04-28 18:45:50 -07001672 struct net_device *netdev = adapter->netdev;
Linas Vepstas01748fb2006-08-31 14:27:52 -07001673 struct pci_dev *pdev = adapter->pdev;
1674
1675 /* Prevent stats update while adapter is being reset */
Linas Vepstas81b19552006-12-12 18:29:15 -06001676 if (pci_channel_offline(pdev))
Linas Vepstas01748fb2006-08-31 14:27:52 -07001677 return;
Malli Chilakala56336842005-04-28 18:45:50 -07001678
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001679 if ((netdev->flags & IFF_PROMISC) || (netdev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001680 (netdev_mc_count(netdev) > IXGB_MAX_NUM_MULTICAST_ADDRESSES)) {
Malli Chilakala56336842005-04-28 18:45:50 -07001681 u64 multi = IXGB_READ_REG(&adapter->hw, MPRCL);
1682 u32 bcast_l = IXGB_READ_REG(&adapter->hw, BPRCL);
1683 u32 bcast_h = IXGB_READ_REG(&adapter->hw, BPRCH);
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001684 u64 bcast = ((u64)bcast_h << 32) | bcast_l;
Malli Chilakala56336842005-04-28 18:45:50 -07001685
1686 multi |= ((u64)IXGB_READ_REG(&adapter->hw, MPRCH) << 32);
1687 /* fix up multicast stats by removing broadcasts */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001688 if (multi >= bcast)
Malli Chilakala7b891782005-08-11 13:58:55 -07001689 multi -= bcast;
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001690
Malli Chilakala56336842005-04-28 18:45:50 -07001691 adapter->stats.mprcl += (multi & 0xFFFFFFFF);
1692 adapter->stats.mprch += (multi >> 32);
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001693 adapter->stats.bprcl += bcast_l;
Malli Chilakala56336842005-04-28 18:45:50 -07001694 adapter->stats.bprch += bcast_h;
1695 } else {
1696 adapter->stats.mprcl += IXGB_READ_REG(&adapter->hw, MPRCL);
1697 adapter->stats.mprch += IXGB_READ_REG(&adapter->hw, MPRCH);
1698 adapter->stats.bprcl += IXGB_READ_REG(&adapter->hw, BPRCL);
1699 adapter->stats.bprch += IXGB_READ_REG(&adapter->hw, BPRCH);
1700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 adapter->stats.tprl += IXGB_READ_REG(&adapter->hw, TPRL);
1702 adapter->stats.tprh += IXGB_READ_REG(&adapter->hw, TPRH);
1703 adapter->stats.gprcl += IXGB_READ_REG(&adapter->hw, GPRCL);
1704 adapter->stats.gprch += IXGB_READ_REG(&adapter->hw, GPRCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 adapter->stats.uprcl += IXGB_READ_REG(&adapter->hw, UPRCL);
1706 adapter->stats.uprch += IXGB_READ_REG(&adapter->hw, UPRCH);
1707 adapter->stats.vprcl += IXGB_READ_REG(&adapter->hw, VPRCL);
1708 adapter->stats.vprch += IXGB_READ_REG(&adapter->hw, VPRCH);
1709 adapter->stats.jprcl += IXGB_READ_REG(&adapter->hw, JPRCL);
1710 adapter->stats.jprch += IXGB_READ_REG(&adapter->hw, JPRCH);
1711 adapter->stats.gorcl += IXGB_READ_REG(&adapter->hw, GORCL);
1712 adapter->stats.gorch += IXGB_READ_REG(&adapter->hw, GORCH);
1713 adapter->stats.torl += IXGB_READ_REG(&adapter->hw, TORL);
1714 adapter->stats.torh += IXGB_READ_REG(&adapter->hw, TORH);
1715 adapter->stats.rnbc += IXGB_READ_REG(&adapter->hw, RNBC);
1716 adapter->stats.ruc += IXGB_READ_REG(&adapter->hw, RUC);
1717 adapter->stats.roc += IXGB_READ_REG(&adapter->hw, ROC);
1718 adapter->stats.rlec += IXGB_READ_REG(&adapter->hw, RLEC);
1719 adapter->stats.crcerrs += IXGB_READ_REG(&adapter->hw, CRCERRS);
1720 adapter->stats.icbc += IXGB_READ_REG(&adapter->hw, ICBC);
1721 adapter->stats.ecbc += IXGB_READ_REG(&adapter->hw, ECBC);
1722 adapter->stats.mpc += IXGB_READ_REG(&adapter->hw, MPC);
1723 adapter->stats.tptl += IXGB_READ_REG(&adapter->hw, TPTL);
1724 adapter->stats.tpth += IXGB_READ_REG(&adapter->hw, TPTH);
1725 adapter->stats.gptcl += IXGB_READ_REG(&adapter->hw, GPTCL);
1726 adapter->stats.gptch += IXGB_READ_REG(&adapter->hw, GPTCH);
1727 adapter->stats.bptcl += IXGB_READ_REG(&adapter->hw, BPTCL);
1728 adapter->stats.bptch += IXGB_READ_REG(&adapter->hw, BPTCH);
1729 adapter->stats.mptcl += IXGB_READ_REG(&adapter->hw, MPTCL);
1730 adapter->stats.mptch += IXGB_READ_REG(&adapter->hw, MPTCH);
1731 adapter->stats.uptcl += IXGB_READ_REG(&adapter->hw, UPTCL);
1732 adapter->stats.uptch += IXGB_READ_REG(&adapter->hw, UPTCH);
1733 adapter->stats.vptcl += IXGB_READ_REG(&adapter->hw, VPTCL);
1734 adapter->stats.vptch += IXGB_READ_REG(&adapter->hw, VPTCH);
1735 adapter->stats.jptcl += IXGB_READ_REG(&adapter->hw, JPTCL);
1736 adapter->stats.jptch += IXGB_READ_REG(&adapter->hw, JPTCH);
1737 adapter->stats.gotcl += IXGB_READ_REG(&adapter->hw, GOTCL);
1738 adapter->stats.gotch += IXGB_READ_REG(&adapter->hw, GOTCH);
1739 adapter->stats.totl += IXGB_READ_REG(&adapter->hw, TOTL);
1740 adapter->stats.toth += IXGB_READ_REG(&adapter->hw, TOTH);
1741 adapter->stats.dc += IXGB_READ_REG(&adapter->hw, DC);
1742 adapter->stats.plt64c += IXGB_READ_REG(&adapter->hw, PLT64C);
1743 adapter->stats.tsctc += IXGB_READ_REG(&adapter->hw, TSCTC);
1744 adapter->stats.tsctfc += IXGB_READ_REG(&adapter->hw, TSCTFC);
1745 adapter->stats.ibic += IXGB_READ_REG(&adapter->hw, IBIC);
1746 adapter->stats.rfc += IXGB_READ_REG(&adapter->hw, RFC);
1747 adapter->stats.lfc += IXGB_READ_REG(&adapter->hw, LFC);
1748 adapter->stats.pfrc += IXGB_READ_REG(&adapter->hw, PFRC);
1749 adapter->stats.pftc += IXGB_READ_REG(&adapter->hw, PFTC);
1750 adapter->stats.mcfrc += IXGB_READ_REG(&adapter->hw, MCFRC);
1751 adapter->stats.mcftc += IXGB_READ_REG(&adapter->hw, MCFTC);
1752 adapter->stats.xonrxc += IXGB_READ_REG(&adapter->hw, XONRXC);
1753 adapter->stats.xontxc += IXGB_READ_REG(&adapter->hw, XONTXC);
1754 adapter->stats.xoffrxc += IXGB_READ_REG(&adapter->hw, XOFFRXC);
1755 adapter->stats.xofftxc += IXGB_READ_REG(&adapter->hw, XOFFTXC);
1756 adapter->stats.rjc += IXGB_READ_REG(&adapter->hw, RJC);
1757
1758 /* Fill out the OS statistics structure */
1759
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001760 netdev->stats.rx_packets = adapter->stats.gprcl;
1761 netdev->stats.tx_packets = adapter->stats.gptcl;
1762 netdev->stats.rx_bytes = adapter->stats.gorcl;
1763 netdev->stats.tx_bytes = adapter->stats.gotcl;
1764 netdev->stats.multicast = adapter->stats.mprcl;
1765 netdev->stats.collisions = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
1767 /* ignore RLEC as it reports errors for padded (<64bytes) frames
1768 * with a length in the type/len field */
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001769 netdev->stats.rx_errors =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 /* adapter->stats.rnbc + */ adapter->stats.crcerrs +
1771 adapter->stats.ruc +
1772 adapter->stats.roc /*+ adapter->stats.rlec */ +
1773 adapter->stats.icbc +
1774 adapter->stats.ecbc + adapter->stats.mpc;
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 /* see above
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001777 * netdev->stats.rx_length_errors = adapter->stats.rlec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 */
1779
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001780 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
1781 netdev->stats.rx_fifo_errors = adapter->stats.mpc;
1782 netdev->stats.rx_missed_errors = adapter->stats.mpc;
1783 netdev->stats.rx_over_errors = adapter->stats.mpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001785 netdev->stats.tx_errors = 0;
1786 netdev->stats.rx_frame_errors = 0;
1787 netdev->stats.tx_aborted_errors = 0;
1788 netdev->stats.tx_carrier_errors = 0;
1789 netdev->stats.tx_fifo_errors = 0;
1790 netdev->stats.tx_heartbeat_errors = 0;
1791 netdev->stats.tx_window_errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792}
1793
1794#define IXGB_MAX_INTR 10
1795/**
1796 * ixgb_intr - Interrupt Handler
1797 * @irq: interrupt number
1798 * @data: pointer to a network interface device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 **/
1800
1801static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01001802ixgb_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
1804 struct net_device *netdev = data;
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001805 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 struct ixgb_hw *hw = &adapter->hw;
Joe Perches222441a2008-04-03 10:06:25 -07001807 u32 icr = IXGB_READ_REG(hw, ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001809 if (unlikely(!icr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 return IRQ_NONE; /* Not our interrupt */
1811
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07001812 if (unlikely(icr & (IXGB_INT_RXSEQ | IXGB_INT_LSC)))
1813 if (!test_bit(__IXGB_DOWN, &adapter->flags))
1814 mod_timer(&adapter->watchdog_timer, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Ben Hutchings288379f2009-01-19 16:43:59 -08001816 if (napi_schedule_prep(&adapter->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001818 /* Disable interrupts and register for poll. The flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 of the posted write is intentionally left out.
1820 */
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 IXGB_WRITE_REG(&adapter->hw, IMC, ~0);
Ben Hutchings288379f2009-01-19 16:43:59 -08001823 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return IRQ_HANDLED;
1826}
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828/**
1829 * ixgb_clean - NAPI Rx polling callback
1830 * @adapter: board private structure
1831 **/
1832
1833static int
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001834ixgb_clean(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001836 struct ixgb_adapter *adapter = container_of(napi, struct ixgb_adapter, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 int work_done = 0;
1838
David S. Miller53e52c72008-01-07 21:06:12 -08001839 ixgb_clean_tx_irq(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001840 ixgb_clean_rx_irq(adapter, &work_done, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
David S. Miller53e52c72008-01-07 21:06:12 -08001842 /* If budget not fully consumed, exit the polling mode */
1843 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001844 napi_complete(napi);
Jesse Brandeburg72ab5192008-07-08 15:51:27 -07001845 if (!test_bit(__IXGB_DOWN, &adapter->flags))
1846 ixgb_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001849 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
1852/**
1853 * ixgb_clean_tx_irq - Reclaim resources after transmit completes
1854 * @adapter: board private structure
1855 **/
1856
Joe Perches446490ca2008-03-21 11:06:37 -07001857static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858ixgb_clean_tx_irq(struct ixgb_adapter *adapter)
1859{
1860 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1861 struct net_device *netdev = adapter->netdev;
1862 struct ixgb_tx_desc *tx_desc, *eop_desc;
1863 struct ixgb_buffer *buffer_info;
1864 unsigned int i, eop;
Joe Perches446490ca2008-03-21 11:06:37 -07001865 bool cleaned = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 i = tx_ring->next_to_clean;
1868 eop = tx_ring->buffer_info[i].next_to_watch;
1869 eop_desc = IXGB_TX_DESC(*tx_ring, eop);
1870
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001871 while (eop_desc->status & IXGB_TX_DESC_STATUS_DD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00001873 rmb(); /* read buffer_info after eop_desc */
Joe Perches446490ca2008-03-21 11:06:37 -07001874 for (cleaned = false; !cleaned; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 tx_desc = IXGB_TX_DESC(*tx_ring, i);
1876 buffer_info = &tx_ring->buffer_info[i];
1877
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001878 if (tx_desc->popts &
1879 (IXGB_TX_DESC_POPTS_TXSM |
1880 IXGB_TX_DESC_POPTS_IXSM))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 adapter->hw_csum_tx_good++;
1882
1883 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
1884
Joe Perches222441a2008-04-03 10:06:25 -07001885 *(u32 *)&(tx_desc->status) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887 cleaned = (i == eop);
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001888 if (++i == tx_ring->count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 }
1890
1891 eop = tx_ring->buffer_info[i].next_to_watch;
1892 eop_desc = IXGB_TX_DESC(*tx_ring, eop);
1893 }
1894
1895 tx_ring->next_to_clean = i;
1896
Jesse Brandeburg0f8ecba2008-07-08 15:51:07 -07001897 if (unlikely(cleaned && netif_carrier_ok(netdev) &&
1898 IXGB_DESC_UNUSED(tx_ring) >= DESC_NEEDED)) {
1899 /* Make sure that anybody stopping the queue after this
1900 * sees the new next_to_clean. */
1901 smp_mb();
1902
1903 if (netif_queue_stopped(netdev) &&
1904 !(test_bit(__IXGB_DOWN, &adapter->flags))) {
Auke Kok3352a3b2006-05-26 09:35:47 -07001905 netif_wake_queue(netdev);
Jesse Brandeburg0f8ecba2008-07-08 15:51:07 -07001906 ++adapter->restart_queue;
1907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001910 if (adapter->detect_tx_hung) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 /* detect a transmit hang in hardware, this serializes the
1912 * check with the clearing of time_stamp and movement of i */
Joe Perches446490ca2008-03-21 11:06:37 -07001913 adapter->detect_tx_hung = false;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001914 if (tx_ring->buffer_info[eop].time_stamp &&
Auke Kok9b8118d2006-05-23 10:35:04 -07001915 time_after(jiffies, tx_ring->buffer_info[eop].time_stamp + HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 && !(IXGB_READ_REG(&adapter->hw, STATUS) &
Auke Kok9b8118d2006-05-23 10:35:04 -07001917 IXGB_STATUS_TXOFF)) {
1918 /* detected Tx unit hang */
Joe Perches6909c662010-02-15 08:34:20 +00001919 netif_err(adapter, drv, adapter->netdev,
1920 "Detected Tx Unit Hang\n"
1921 " TDH <%x>\n"
1922 " TDT <%x>\n"
1923 " next_to_use <%x>\n"
1924 " next_to_clean <%x>\n"
1925 "buffer_info[next_to_clean]\n"
1926 " time_stamp <%lx>\n"
1927 " next_to_watch <%x>\n"
1928 " jiffies <%lx>\n"
1929 " next_to_watch.status <%x>\n",
1930 IXGB_READ_REG(&adapter->hw, TDH),
1931 IXGB_READ_REG(&adapter->hw, TDT),
1932 tx_ring->next_to_use,
1933 tx_ring->next_to_clean,
1934 tx_ring->buffer_info[eop].time_stamp,
1935 eop,
1936 jiffies,
1937 eop_desc->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 netif_stop_queue(netdev);
Auke Kok9b8118d2006-05-23 10:35:04 -07001939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 }
1941
1942 return cleaned;
1943}
1944
1945/**
1946 * ixgb_rx_checksum - Receive Checksum Offload for 82597.
1947 * @adapter: board private structure
1948 * @rx_desc: receive descriptor
1949 * @sk_buff: socket buffer with received data
1950 **/
1951
Auke Kok235949d2006-05-26 09:35:52 -07001952static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953ixgb_rx_checksum(struct ixgb_adapter *adapter,
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001954 struct ixgb_rx_desc *rx_desc,
1955 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
1957 /* Ignore Checksum bit is set OR
1958 * TCP Checksum has not been calculated
1959 */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001960 if ((rx_desc->status & IXGB_RX_DESC_STATUS_IXSM) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 (!(rx_desc->status & IXGB_RX_DESC_STATUS_TCPCS))) {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001962 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 return;
1964 }
1965
1966 /* At this point we know the hardware did the TCP checksum */
1967 /* now look at the TCP checksum error bit */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001968 if (rx_desc->errors & IXGB_RX_DESC_ERRORS_TCPE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 /* let the stack verify checksum errors */
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001970 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 adapter->hw_csum_rx_error++;
1972 } else {
1973 /* TCP checksum is good */
1974 skb->ip_summed = CHECKSUM_UNNECESSARY;
1975 adapter->hw_csum_rx_good++;
1976 }
1977}
1978
Joe Perches57bf6ee2010-05-13 15:26:17 +00001979/*
1980 * this should improve performance for small packets with large amounts
1981 * of reassembly being done in the stack
1982 */
1983static void ixgb_check_copybreak(struct net_device *netdev,
1984 struct ixgb_buffer *buffer_info,
1985 u32 length, struct sk_buff **skb)
1986{
1987 struct sk_buff *new_skb;
1988
1989 if (length > copybreak)
1990 return;
1991
1992 new_skb = netdev_alloc_skb_ip_align(netdev, length);
1993 if (!new_skb)
1994 return;
1995
1996 skb_copy_to_linear_data_offset(new_skb, -NET_IP_ALIGN,
1997 (*skb)->data - NET_IP_ALIGN,
1998 length + NET_IP_ALIGN);
1999 /* save the skb in buffer_info as good */
2000 buffer_info->skb = *skb;
2001 *skb = new_skb;
2002}
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004/**
2005 * ixgb_clean_rx_irq - Send received data up the network stack,
2006 * @adapter: board private structure
2007 **/
2008
Joe Perches446490ca2008-03-21 11:06:37 -07002009static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010ixgb_clean_rx_irq(struct ixgb_adapter *adapter, int *work_done, int work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
2012 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
2013 struct net_device *netdev = adapter->netdev;
2014 struct pci_dev *pdev = adapter->pdev;
2015 struct ixgb_rx_desc *rx_desc, *next_rxd;
2016 struct ixgb_buffer *buffer_info, *next_buffer, *next2_buffer;
Joe Perches222441a2008-04-03 10:06:25 -07002017 u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 unsigned int i, j;
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002019 int cleaned_count = 0;
Joe Perches446490ca2008-03-21 11:06:37 -07002020 bool cleaned = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 i = rx_ring->next_to_clean;
2023 rx_desc = IXGB_RX_DESC(*rx_ring, i);
2024 buffer_info = &rx_ring->buffer_info[i];
2025
Jesse Brandeburg9a432992008-07-08 15:52:18 -07002026 while (rx_desc->status & IXGB_RX_DESC_STATUS_DD) {
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002027 struct sk_buff *skb;
Malli Chilakalaf404de12005-04-28 19:04:54 -07002028 u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002030 if (*work_done >= work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 break;
2032
2033 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00002034 rmb(); /* read descriptor and rx_buffer_info after status DD */
Malli Chilakalaf404de12005-04-28 19:04:54 -07002035 status = rx_desc->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 skb = buffer_info->skb;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002037 buffer_info->skb = NULL;
Malli Chilakalaf404de12005-04-28 19:04:54 -07002038
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002039 prefetch(skb->data - NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Joe Perches57bf6ee2010-05-13 15:26:17 +00002041 if (++i == rx_ring->count)
2042 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 next_rxd = IXGB_RX_DESC(*rx_ring, i);
2044 prefetch(next_rxd);
2045
Joe Perches57bf6ee2010-05-13 15:26:17 +00002046 j = i + 1;
2047 if (j == rx_ring->count)
2048 j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 next2_buffer = &rx_ring->buffer_info[j];
2050 prefetch(next2_buffer);
2051
2052 next_buffer = &rx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Joe Perches446490ca2008-03-21 11:06:37 -07002054 cleaned = true;
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002055 cleaned_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Nick Nunley47631f82010-04-27 13:10:03 +00002057 dma_unmap_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 buffer_info->dma,
2059 buffer_info->length,
Nick Nunley47631f82010-04-27 13:10:03 +00002060 DMA_FROM_DEVICE);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002061 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063 length = le16_to_cpu(rx_desc->length);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002064 rx_desc->length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002066 if (unlikely(!(status & IXGB_RX_DESC_STATUS_EOP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
2068 /* All receives must fit into a single buffer */
2069
Joe Perches5edc4462012-02-08 16:14:59 +00002070 pr_debug("Receive packet consumed multiple buffers length<%x>\n",
2071 length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 dev_kfree_skb_irq(skb);
Malli Chilakalaf404de12005-04-28 19:04:54 -07002074 goto rxdesc_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 }
2076
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002077 if (unlikely(rx_desc->errors &
2078 (IXGB_RX_DESC_ERRORS_CE | IXGB_RX_DESC_ERRORS_SE |
2079 IXGB_RX_DESC_ERRORS_P | IXGB_RX_DESC_ERRORS_RXE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 dev_kfree_skb_irq(skb);
Malli Chilakalaf404de12005-04-28 19:04:54 -07002081 goto rxdesc_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 }
2083
Joe Perches57bf6ee2010-05-13 15:26:17 +00002084 ixgb_check_copybreak(netdev, buffer_info, length, &skb);
Auke Kok6b900bb2006-05-25 13:24:21 -07002085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 /* Good Receive */
2087 skb_put(skb, length);
2088
2089 /* Receive Checksum Offload */
2090 ixgb_rx_checksum(adapter, rx_desc, skb);
2091
2092 skb->protocol = eth_type_trans(skb, netdev);
Emil Tantilove2444d92011-01-27 09:14:18 +00002093 if (status & IXGB_RX_DESC_STATUS_VP)
2094 __vlan_hwaccel_put_tag(skb,
2095 le16_to_cpu(rx_desc->special));
2096
2097 netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Malli Chilakalaf404de12005-04-28 19:04:54 -07002099rxdesc_done:
2100 /* clean up descriptor, might be written over by hw */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002103 /* return some buffers to hardware, one at a time is too slow */
2104 if (unlikely(cleaned_count >= IXGB_RX_BUFFER_WRITE)) {
2105 ixgb_alloc_rx_buffers(adapter, cleaned_count);
2106 cleaned_count = 0;
2107 }
2108
Malli Chilakalaf404de12005-04-28 19:04:54 -07002109 /* use prefetched values */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 rx_desc = next_rxd;
2111 buffer_info = next_buffer;
2112 }
2113
2114 rx_ring->next_to_clean = i;
2115
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002116 cleaned_count = IXGB_DESC_UNUSED(rx_ring);
2117 if (cleaned_count)
2118 ixgb_alloc_rx_buffers(adapter, cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
2120 return cleaned;
2121}
2122
2123/**
2124 * ixgb_alloc_rx_buffers - Replace used receive buffers
2125 * @adapter: address of board private structure
2126 **/
2127
2128static void
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002129ixgb_alloc_rx_buffers(struct ixgb_adapter *adapter, int cleaned_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
2131 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
2132 struct net_device *netdev = adapter->netdev;
2133 struct pci_dev *pdev = adapter->pdev;
2134 struct ixgb_rx_desc *rx_desc;
2135 struct ixgb_buffer *buffer_info;
2136 struct sk_buff *skb;
2137 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 long cleancount;
2139
2140 i = rx_ring->next_to_use;
2141 buffer_info = &rx_ring->buffer_info[i];
2142 cleancount = IXGB_DESC_UNUSED(rx_ring);
2143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Malli Chilakala41639fe2005-04-28 18:51:54 -07002145 /* leave three descriptors unused */
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002146 while (--cleancount > 2 && cleaned_count--) {
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002147 /* recycle! its good for you */
Auke Kok69c7a9402006-08-31 14:27:52 -07002148 skb = buffer_info->skb;
2149 if (skb) {
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002150 skb_trim(skb, 0);
2151 goto map_skb;
2152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Eric Dumazet89d71a62009-10-13 05:34:20 +00002154 skb = netdev_alloc_skb_ip_align(netdev, adapter->rx_buffer_len);
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002155 if (unlikely(!skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 /* Better luck next round */
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002157 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 break;
2159 }
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 buffer_info->skb = skb;
2162 buffer_info->length = adapter->rx_buffer_len;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002163map_skb:
Nick Nunley47631f82010-04-27 13:10:03 +00002164 buffer_info->dma = dma_map_single(&pdev->dev,
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002165 skb->data,
2166 adapter->rx_buffer_len,
Nick Nunley47631f82010-04-27 13:10:03 +00002167 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002169 rx_desc = IXGB_RX_DESC(*rx_ring, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 rx_desc->buff_addr = cpu_to_le64(buffer_info->dma);
Malli Chilakala41639fe2005-04-28 18:51:54 -07002171 /* guarantee DD bit not set now before h/w gets descriptor
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002172 * this is the rest of the workaround for h/w double
Malli Chilakala41639fe2005-04-28 18:51:54 -07002173 * writeback. */
2174 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002177 if (++i == rx_ring->count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 buffer_info = &rx_ring->buffer_info[i];
2179 }
2180
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002181 if (likely(rx_ring->next_to_use != i)) {
2182 rx_ring->next_to_use = i;
2183 if (unlikely(i-- == 0))
2184 i = (rx_ring->count - 1);
2185
2186 /* Force memory writes to complete before letting h/w
2187 * know there are new descriptors to fetch. (Only
2188 * applicable for weak-ordered memory model archs, such
2189 * as IA-64). */
2190 wmb();
2191 IXGB_WRITE_REG(&adapter->hw, RDT, i);
2192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193}
2194
Emil Tantilovae544962010-12-04 05:35:17 +00002195static void
2196ixgb_vlan_strip_enable(struct ixgb_adapter *adapter)
2197{
2198 u32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Emil Tantilovae544962010-12-04 05:35:17 +00002200 /* enable VLAN tag insert/strip */
2201 ctrl = IXGB_READ_REG(&adapter->hw, CTRL0);
2202 ctrl |= IXGB_CTRL0_VME;
2203 IXGB_WRITE_REG(&adapter->hw, CTRL0, ctrl);
2204}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Emil Tantilovae544962010-12-04 05:35:17 +00002206static void
2207ixgb_vlan_strip_disable(struct ixgb_adapter *adapter)
2208{
2209 u32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Emil Tantilovae544962010-12-04 05:35:17 +00002211 /* disable VLAN tag insert/strip */
2212 ctrl = IXGB_READ_REG(&adapter->hw, CTRL0);
2213 ctrl &= ~IXGB_CTRL0_VME;
2214 IXGB_WRITE_REG(&adapter->hw, CTRL0, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
2216
Jiri Pirko8e586132011-12-08 19:52:37 -05002217static int
Joe Perches222441a2008-04-03 10:06:25 -07002218ixgb_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002220 struct ixgb_adapter *adapter = netdev_priv(netdev);
Joe Perches222441a2008-04-03 10:06:25 -07002221 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 /* add VID to filter table */
2224
2225 index = (vid >> 5) & 0x7F;
2226 vfta = IXGB_READ_REG_ARRAY(&adapter->hw, VFTA, index);
2227 vfta |= (1 << (vid & 0x1F));
2228 ixgb_write_vfta(&adapter->hw, index, vfta);
Emil Tantilove2444d92011-01-27 09:14:18 +00002229 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002230
2231 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232}
2233
Jiri Pirko8e586132011-12-08 19:52:37 -05002234static int
Joe Perches222441a2008-04-03 10:06:25 -07002235ixgb_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002237 struct ixgb_adapter *adapter = netdev_priv(netdev);
Joe Perches222441a2008-04-03 10:06:25 -07002238 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07002240 /* remove VID from filter table */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
2242 index = (vid >> 5) & 0x7F;
2243 vfta = IXGB_READ_REG_ARRAY(&adapter->hw, VFTA, index);
2244 vfta &= ~(1 << (vid & 0x1F));
2245 ixgb_write_vfta(&adapter->hw, index, vfta);
Emil Tantilove2444d92011-01-27 09:14:18 +00002246 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002247
2248 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249}
2250
2251static void
2252ixgb_restore_vlan(struct ixgb_adapter *adapter)
2253{
Emil Tantilove2444d92011-01-27 09:14:18 +00002254 u16 vid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
Emil Tantilove2444d92011-01-27 09:14:18 +00002256 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
2257 ixgb_vlan_rx_add_vid(adapter->netdev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258}
2259
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260#ifdef CONFIG_NET_POLL_CONTROLLER
2261/*
2262 * Polling 'interrupt' - used by things like netconsole to send skbs
2263 * without having to re-enable interrupts. It's not called while
2264 * the interrupt routine is executing.
2265 */
2266
2267static void ixgb_netpoll(struct net_device *dev)
2268{
Auke Kokf990b422006-08-31 14:27:50 -07002269 struct ixgb_adapter *adapter = netdev_priv(dev);
Malli Chilakalaac79c822005-04-28 19:05:32 -07002270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 disable_irq(adapter->pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002272 ixgb_intr(adapter->pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 enable_irq(adapter->pdev->irq);
2274}
2275#endif
2276
Linas Vepstas01748fb2006-08-31 14:27:52 -07002277/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002278 * ixgb_io_error_detected - called when PCI error is detected
2279 * @pdev: pointer to pci device with error
2280 * @state: pci channel state after error
Linas Vepstas01748fb2006-08-31 14:27:52 -07002281 *
2282 * This callback is called by the PCI subsystem whenever
2283 * a PCI bus error is detected.
2284 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002285static pci_ers_result_t ixgb_io_error_detected(struct pci_dev *pdev,
2286 enum pci_channel_state state)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002287{
2288 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002289 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002290
Dean Nelsond6a1f832009-07-31 09:13:40 +00002291 netif_device_detach(netdev);
2292
2293 if (state == pci_channel_io_perm_failure)
2294 return PCI_ERS_RESULT_DISCONNECT;
2295
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002296 if (netif_running(netdev))
Joe Perches446490ca2008-03-21 11:06:37 -07002297 ixgb_down(adapter, true);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002298
2299 pci_disable_device(pdev);
2300
2301 /* Request a slot reset. */
2302 return PCI_ERS_RESULT_NEED_RESET;
2303}
2304
2305/**
2306 * ixgb_io_slot_reset - called after the pci bus has been reset.
2307 * @pdev pointer to pci device with error
2308 *
Jesse Brandeburg52035bd2008-07-08 15:52:28 -07002309 * This callback is called after the PCI bus has been reset.
Linas Vepstas01748fb2006-08-31 14:27:52 -07002310 * Basically, this tries to restart the card from scratch.
2311 * This is a shortened version of the device probe/discovery code,
2312 * it resembles the first-half of the ixgb_probe() routine.
2313 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002314static pci_ers_result_t ixgb_io_slot_reset(struct pci_dev *pdev)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002315{
2316 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002317 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002318
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002319 if (pci_enable_device(pdev)) {
Joe Perches6909c662010-02-15 08:34:20 +00002320 netif_err(adapter, probe, adapter->netdev,
2321 "Cannot re-enable PCI device after reset\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002322 return PCI_ERS_RESULT_DISCONNECT;
2323 }
2324
2325 /* Perform card reset only on one instance of the card */
2326 if (0 != PCI_FUNC (pdev->devfn))
2327 return PCI_ERS_RESULT_RECOVERED;
2328
2329 pci_set_master(pdev);
2330
2331 netif_carrier_off(netdev);
2332 netif_stop_queue(netdev);
2333 ixgb_reset(adapter);
2334
2335 /* Make sure the EEPROM is good */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002336 if (!ixgb_validate_eeprom_checksum(&adapter->hw)) {
Joe Perches6909c662010-02-15 08:34:20 +00002337 netif_err(adapter, probe, adapter->netdev,
2338 "After reset, the EEPROM checksum is not valid\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002339 return PCI_ERS_RESULT_DISCONNECT;
2340 }
2341 ixgb_get_ee_mac_addr(&adapter->hw, netdev->dev_addr);
2342 memcpy(netdev->perm_addr, netdev->dev_addr, netdev->addr_len);
2343
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002344 if (!is_valid_ether_addr(netdev->perm_addr)) {
Joe Perches6909c662010-02-15 08:34:20 +00002345 netif_err(adapter, probe, adapter->netdev,
2346 "After reset, invalid MAC address\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002347 return PCI_ERS_RESULT_DISCONNECT;
2348 }
2349
2350 return PCI_ERS_RESULT_RECOVERED;
2351}
2352
2353/**
2354 * ixgb_io_resume - called when its OK to resume normal operations
2355 * @pdev pointer to pci device with error
2356 *
2357 * The error recovery driver tells us that its OK to resume
2358 * normal operation. Implementation resembles the second-half
2359 * of the ixgb_probe() routine.
2360 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002361static void ixgb_io_resume(struct pci_dev *pdev)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002362{
2363 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002364 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002365
2366 pci_set_master(pdev);
2367
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002368 if (netif_running(netdev)) {
2369 if (ixgb_up(adapter)) {
Joe Perchesd328bc82010-04-27 00:50:58 +00002370 pr_err("can't bring device back up after reset\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002371 return;
2372 }
2373 }
2374
2375 netif_device_attach(netdev);
2376 mod_timer(&adapter->watchdog_timer, jiffies);
2377}
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379/* ixgb_main.c */