blob: 9c9bf31e5c25dc9500ddfe77e6477216505c9231 [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
4 Copyright(c) 1999 - 2006 Intel Corporation.
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
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
29#include "ixgb.h"
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031char ixgb_driver_name[] = "ixgb";
Adrian Bunke9ab1d12005-10-30 16:53:30 +010032static char ixgb_driver_string[] = "Intel(R) PRO/10GbE Network Driver";
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#ifndef CONFIG_IXGB_NAPI
35#define DRIVERNAPI
36#else
37#define DRIVERNAPI "-NAPI"
38#endif
Matheos Worku8b32e632007-12-14 11:48:36 -080039#define DRV_VERSION "1.0.126-k4"DRIVERNAPI
Stephen Hemminger273dc742007-10-29 10:46:13 -070040const char ixgb_driver_version[] = DRV_VERSION;
41static const char ixgb_copyright[] = "Copyright (c) 1999-2006 Intel Corporation.";
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/* ixgb_pci_tbl - PCI Device ID Table
44 *
45 * Wildcard entries (PCI_ANY_ID) should come last
46 * Last entry must be all 0s
47 *
48 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
49 * Class, Class Mask, private data (not used) }
50 */
51static struct pci_device_id ixgb_pci_tbl[] = {
52 {INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX,
53 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Auke Kok940829e2006-05-23 10:29:58 -070054 {INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX_CX4,
55 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 {INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX_SR,
57 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
58 {INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX_LR,
59 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
60
61 /* required last entry */
62 {0,}
63};
64
65MODULE_DEVICE_TABLE(pci, ixgb_pci_tbl);
66
67/* Local Function Prototypes */
68
69int ixgb_up(struct ixgb_adapter *adapter);
Joe Perches446490c2008-03-21 11:06:37 -070070void ixgb_down(struct ixgb_adapter *adapter, bool kill_watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071void ixgb_reset(struct ixgb_adapter *adapter);
72int ixgb_setup_tx_resources(struct ixgb_adapter *adapter);
73int ixgb_setup_rx_resources(struct ixgb_adapter *adapter);
74void ixgb_free_tx_resources(struct ixgb_adapter *adapter);
75void ixgb_free_rx_resources(struct ixgb_adapter *adapter);
76void ixgb_update_stats(struct ixgb_adapter *adapter);
77
78static int ixgb_init_module(void);
79static void ixgb_exit_module(void);
80static int ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
81static void __devexit ixgb_remove(struct pci_dev *pdev);
82static int ixgb_sw_init(struct ixgb_adapter *adapter);
83static int ixgb_open(struct net_device *netdev);
84static int ixgb_close(struct net_device *netdev);
85static void ixgb_configure_tx(struct ixgb_adapter *adapter);
86static void ixgb_configure_rx(struct ixgb_adapter *adapter);
87static void ixgb_setup_rctl(struct ixgb_adapter *adapter);
88static void ixgb_clean_tx_ring(struct ixgb_adapter *adapter);
89static void ixgb_clean_rx_ring(struct ixgb_adapter *adapter);
90static void ixgb_set_multi(struct net_device *netdev);
91static void ixgb_watchdog(unsigned long data);
92static int ixgb_xmit_frame(struct sk_buff *skb, struct net_device *netdev);
93static struct net_device_stats *ixgb_get_stats(struct net_device *netdev);
94static int ixgb_change_mtu(struct net_device *netdev, int new_mtu);
95static int ixgb_set_mac(struct net_device *netdev, void *p);
David Howells7d12e782006-10-05 14:55:46 +010096static irqreturn_t ixgb_intr(int irq, void *data);
Joe Perches446490c2008-03-21 11:06:37 -070097static bool ixgb_clean_tx_irq(struct ixgb_adapter *adapter);
Malli Chilakalaac79c822005-04-28 19:05:32 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#ifdef CONFIG_IXGB_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700100static int ixgb_clean(struct napi_struct *napi, int budget);
Joe Perches446490c2008-03-21 11:06:37 -0700101static bool ixgb_clean_rx_irq(struct ixgb_adapter *adapter,
102 int *work_done, int work_to_do);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#else
Joe Perches446490c2008-03-21 11:06:37 -0700104static bool ixgb_clean_rx_irq(struct ixgb_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#endif
106static void ixgb_alloc_rx_buffers(struct ixgb_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static void ixgb_tx_timeout(struct net_device *dev);
David Howellsc4028952006-11-22 14:57:56 +0000108static void ixgb_tx_timeout_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static void ixgb_vlan_rx_register(struct net_device *netdev,
110 struct vlan_group *grp);
111static void ixgb_vlan_rx_add_vid(struct net_device *netdev, uint16_t vid);
112static void ixgb_vlan_rx_kill_vid(struct net_device *netdev, uint16_t vid);
113static void ixgb_restore_vlan(struct ixgb_adapter *adapter);
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#ifdef CONFIG_NET_POLL_CONTROLLER
116/* for netdump / net console */
117static void ixgb_netpoll(struct net_device *dev);
118#endif
119
Linas Vepstas01748fb2006-08-31 14:27:52 -0700120static pci_ers_result_t ixgb_io_error_detected (struct pci_dev *pdev,
121 enum pci_channel_state state);
122static pci_ers_result_t ixgb_io_slot_reset (struct pci_dev *pdev);
123static void ixgb_io_resume (struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linas Vepstas01748fb2006-08-31 14:27:52 -0700125static struct pci_error_handlers ixgb_err_handler = {
126 .error_detected = ixgb_io_error_detected,
127 .slot_reset = ixgb_io_slot_reset,
128 .resume = ixgb_io_resume,
129};
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static struct pci_driver ixgb_driver = {
Malli Chilakalac2eba932005-04-28 19:04:32 -0700132 .name = ixgb_driver_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 .id_table = ixgb_pci_tbl,
Malli Chilakalac2eba932005-04-28 19:04:32 -0700134 .probe = ixgb_probe,
135 .remove = __devexit_p(ixgb_remove),
Linas Vepstas01748fb2006-08-31 14:27:52 -0700136 .err_handler = &ixgb_err_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137};
138
139MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
140MODULE_DESCRIPTION("Intel(R) PRO/10GbE Network Driver");
141MODULE_LICENSE("GPL");
John W. Linville01e5abc2005-05-12 22:23:29 -0400142MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Auke Kokec9c3f52006-05-23 10:34:59 -0700144#define DEFAULT_DEBUG_LEVEL_SHIFT 3
145static int debug = DEFAULT_DEBUG_LEVEL_SHIFT;
146module_param(debug, int, 0);
147MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/* some defines for controlling descriptor fetches in h/w */
Jesse Brandeburg3ae84d92006-08-16 13:47:25 -0700150#define RXDCTL_WTHRESH_DEFAULT 15 /* chip writes back at this many or RXT0 */
151#define RXDCTL_PTHRESH_DEFAULT 0 /* chip considers prefech below
152 * this */
153#define RXDCTL_HTHRESH_DEFAULT 0 /* chip will only prefetch if tail
154 * is pushed this many descriptors
155 * from head */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157/**
158 * ixgb_init_module - Driver Registration Routine
159 *
160 * ixgb_init_module is the first routine called when the driver is
161 * loaded. All it does is register with the PCI subsystem.
162 **/
163
164static int __init
165ixgb_init_module(void)
166{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 printk(KERN_INFO "%s - version %s\n",
168 ixgb_driver_string, ixgb_driver_version);
169
170 printk(KERN_INFO "%s\n", ixgb_copyright);
171
Jeff Garzik29917622006-08-19 17:48:59 -0400172 return pci_register_driver(&ixgb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
175module_init(ixgb_init_module);
176
177/**
178 * ixgb_exit_module - Driver Exit Cleanup Routine
179 *
180 * ixgb_exit_module is called just before the driver is removed
181 * from memory.
182 **/
183
184static void __exit
185ixgb_exit_module(void)
186{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 pci_unregister_driver(&ixgb_driver);
188}
189
190module_exit(ixgb_exit_module);
191
192/**
193 * ixgb_irq_disable - Mask off interrupt generation on the NIC
194 * @adapter: board private structure
195 **/
196
Auke Kok235949d12006-05-26 09:35:52 -0700197static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198ixgb_irq_disable(struct ixgb_adapter *adapter)
199{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 IXGB_WRITE_REG(&adapter->hw, IMC, ~0);
201 IXGB_WRITE_FLUSH(&adapter->hw);
202 synchronize_irq(adapter->pdev->irq);
203}
204
205/**
206 * ixgb_irq_enable - Enable default interrupt generation settings
207 * @adapter: board private structure
208 **/
209
Auke Kok235949d12006-05-26 09:35:52 -0700210static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211ixgb_irq_enable(struct ixgb_adapter *adapter)
212{
Jesse Brandeburg9c61a9d2008-03-21 11:07:03 -0700213 u32 val = IXGB_INT_RXT0 | IXGB_INT_RXDMT0 |
214 IXGB_INT_TXDW | IXGB_INT_LSC;
215 if (adapter->hw.subsystem_vendor_id == SUN_SUBVENDOR_ID)
216 val |= IXGB_INT_GPI0;
217 IXGB_WRITE_REG(&adapter->hw, IMS, val);
218 IXGB_WRITE_FLUSH(&adapter->hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221int
222ixgb_up(struct ixgb_adapter *adapter)
223{
224 struct net_device *netdev = adapter->netdev;
Auke Kokfb136c02007-05-17 15:29:07 -0700225 int err, irq_flags = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 int max_frame = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
227 struct ixgb_hw *hw = &adapter->hw;
228
229 /* hardware has been reset, we need to reload some things */
230
Auke Kok8556f0d12006-05-26 09:35:32 -0700231 ixgb_rar_set(hw, netdev->dev_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 ixgb_set_multi(netdev);
233
234 ixgb_restore_vlan(adapter);
235
236 ixgb_configure_tx(adapter);
237 ixgb_setup_rctl(adapter);
238 ixgb_configure_rx(adapter);
239 ixgb_alloc_rx_buffers(adapter);
240
Auke Koke59d1692006-05-26 09:35:28 -0700241 /* disable interrupts and get the hardware into a known state */
242 IXGB_WRITE_REG(&adapter->hw, IMC, 0xffffffff);
243
Auke Kokfb136c02007-05-17 15:29:07 -0700244 /* only enable MSI if bus is in PCI-X mode */
245 if (IXGB_READ_REG(&adapter->hw, STATUS) & IXGB_STATUS_PCIX_MODE) {
246 err = pci_enable_msi(adapter->pdev);
247 if (!err) {
248 adapter->have_msi = 1;
249 irq_flags = 0;
250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 /* proceed to try to request regular interrupt */
252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Auke Kokfb136c02007-05-17 15:29:07 -0700254 err = request_irq(adapter->pdev->irq, &ixgb_intr, irq_flags,
255 netdev->name, netdev);
256 if (err) {
257 if (adapter->have_msi)
258 pci_disable_msi(adapter->pdev);
Auke Kokec9c3f52006-05-23 10:34:59 -0700259 DPRINTK(PROBE, ERR,
260 "Unable to allocate interrupt Error: %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return err;
Auke Kokec9c3f52006-05-23 10:34:59 -0700262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 if((hw->max_frame_size != max_frame) ||
265 (hw->max_frame_size !=
266 (IXGB_READ_REG(hw, MFS) >> IXGB_MFS_SHIFT))) {
267
268 hw->max_frame_size = max_frame;
269
270 IXGB_WRITE_REG(hw, MFS, hw->max_frame_size << IXGB_MFS_SHIFT);
271
272 if(hw->max_frame_size >
273 IXGB_MAX_ENET_FRAME_SIZE_WITHOUT_FCS + ENET_FCS_LENGTH) {
274 uint32_t ctrl0 = IXGB_READ_REG(hw, CTRL0);
275
276 if(!(ctrl0 & IXGB_CTRL0_JFE)) {
277 ctrl0 |= IXGB_CTRL0_JFE;
278 IXGB_WRITE_REG(hw, CTRL0, ctrl0);
279 }
280 }
281 }
282
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700283 clear_bit(__IXGB_DOWN, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285#ifdef CONFIG_IXGB_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700286 napi_enable(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287#endif
Auke Koke59d1692006-05-26 09:35:28 -0700288 ixgb_irq_enable(adapter);
289
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700290 mod_timer(&adapter->watchdog_timer, jiffies);
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return 0;
293}
294
295void
Joe Perches446490c2008-03-21 11:06:37 -0700296ixgb_down(struct ixgb_adapter *adapter, bool kill_watchdog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 struct net_device *netdev = adapter->netdev;
299
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700300 /* prevent the interrupt handler from restarting watchdog */
301 set_bit(__IXGB_DOWN, &adapter->flags);
302
David S. Miller49d85c52008-01-18 04:21:39 -0800303#ifdef CONFIG_IXGB_NAPI
304 napi_disable(&adapter->napi);
David S. Miller49d85c52008-01-18 04:21:39 -0800305#endif
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700306 /* waiting for NAPI to complete can re-enable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 ixgb_irq_disable(adapter);
308 free_irq(adapter->pdev->irq, netdev);
Auke Kokfb136c02007-05-17 15:29:07 -0700309
310 if (adapter->have_msi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 pci_disable_msi(adapter->pdev);
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if(kill_watchdog)
314 del_timer_sync(&adapter->watchdog_timer);
David S. Miller49d85c52008-01-18 04:21:39 -0800315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 adapter->link_speed = 0;
317 adapter->link_duplex = 0;
318 netif_carrier_off(netdev);
319 netif_stop_queue(netdev);
320
321 ixgb_reset(adapter);
322 ixgb_clean_tx_ring(adapter);
323 ixgb_clean_rx_ring(adapter);
324}
325
326void
327ixgb_reset(struct ixgb_adapter *adapter)
328{
Matheos Worku3fd71312007-12-14 11:48:29 -0800329 struct ixgb_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Matheos Worku3fd71312007-12-14 11:48:29 -0800331 ixgb_adapter_stop(hw);
332 if (!ixgb_init_hw(hw))
Auke Kokec9c3f52006-05-23 10:34:59 -0700333 DPRINTK(PROBE, ERR, "ixgb_init_hw failed.\n");
Matheos Worku3fd71312007-12-14 11:48:29 -0800334
335 /* restore frame size information */
336 IXGB_WRITE_REG(hw, MFS, hw->max_frame_size << IXGB_MFS_SHIFT);
337 if (hw->max_frame_size >
338 IXGB_MAX_ENET_FRAME_SIZE_WITHOUT_FCS + ENET_FCS_LENGTH) {
339 u32 ctrl0 = IXGB_READ_REG(hw, CTRL0);
340 if (!(ctrl0 & IXGB_CTRL0_JFE)) {
341 ctrl0 |= IXGB_CTRL0_JFE;
342 IXGB_WRITE_REG(hw, CTRL0, ctrl0);
343 }
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
347/**
348 * ixgb_probe - Device Initialization Routine
349 * @pdev: PCI device information struct
350 * @ent: entry in ixgb_pci_tbl
351 *
352 * Returns 0 on success, negative on failure
353 *
354 * ixgb_probe initializes an adapter identified by a pci_dev structure.
355 * The OS initialization, configuring of the adapter private structure,
356 * and a hardware reset occur.
357 **/
358
359static int __devinit
360ixgb_probe(struct pci_dev *pdev,
361 const struct pci_device_id *ent)
362{
363 struct net_device *netdev = NULL;
364 struct ixgb_adapter *adapter;
365 static int cards_found = 0;
366 unsigned long mmio_start;
367 int mmio_len;
368 int pci_using_dac;
369 int i;
370 int err;
371
372 if((err = pci_enable_device(pdev)))
373 return err;
374
Andreas Schwabc91e4682006-03-28 18:10:38 +0200375 if(!(err = pci_set_dma_mask(pdev, DMA_64BIT_MASK)) &&
376 !(err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 pci_using_dac = 1;
378 } else {
Andreas Schwabc91e4682006-03-28 18:10:38 +0200379 if((err = pci_set_dma_mask(pdev, DMA_32BIT_MASK)) ||
380 (err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK))) {
Auke Kokec9c3f52006-05-23 10:34:59 -0700381 printk(KERN_ERR
382 "ixgb: No usable DMA configuration, aborting\n");
Andreas Schwabc91e4682006-03-28 18:10:38 +0200383 goto err_dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385 pci_using_dac = 0;
386 }
387
388 if((err = pci_request_regions(pdev, ixgb_driver_name)))
Andreas Schwabc91e4682006-03-28 18:10:38 +0200389 goto err_request_regions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 pci_set_master(pdev);
392
393 netdev = alloc_etherdev(sizeof(struct ixgb_adapter));
394 if(!netdev) {
395 err = -ENOMEM;
396 goto err_alloc_etherdev;
397 }
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 SET_NETDEV_DEV(netdev, &pdev->dev);
400
401 pci_set_drvdata(pdev, netdev);
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700402 adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 adapter->netdev = netdev;
404 adapter->pdev = pdev;
405 adapter->hw.back = adapter;
Auke Kokec9c3f52006-05-23 10:34:59 -0700406 adapter->msg_enable = netif_msg_init(debug, DEFAULT_DEBUG_LEVEL_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 mmio_start = pci_resource_start(pdev, BAR_0);
409 mmio_len = pci_resource_len(pdev, BAR_0);
410
411 adapter->hw.hw_addr = ioremap(mmio_start, mmio_len);
412 if(!adapter->hw.hw_addr) {
413 err = -EIO;
414 goto err_ioremap;
415 }
416
417 for(i = BAR_1; i <= BAR_5; i++) {
418 if(pci_resource_len(pdev, i) == 0)
419 continue;
420 if(pci_resource_flags(pdev, i) & IORESOURCE_IO) {
421 adapter->hw.io_base = pci_resource_start(pdev, i);
422 break;
423 }
424 }
425
426 netdev->open = &ixgb_open;
427 netdev->stop = &ixgb_close;
428 netdev->hard_start_xmit = &ixgb_xmit_frame;
429 netdev->get_stats = &ixgb_get_stats;
430 netdev->set_multicast_list = &ixgb_set_multi;
431 netdev->set_mac_address = &ixgb_set_mac;
432 netdev->change_mtu = &ixgb_change_mtu;
433 ixgb_set_ethtool_ops(netdev);
434 netdev->tx_timeout = &ixgb_tx_timeout;
Auke Kok9b8118d2006-05-23 10:35:04 -0700435 netdev->watchdog_timeo = 5 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436#ifdef CONFIG_IXGB_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700437 netif_napi_add(netdev, &adapter->napi, ixgb_clean, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438#endif
439 netdev->vlan_rx_register = ixgb_vlan_rx_register;
440 netdev->vlan_rx_add_vid = ixgb_vlan_rx_add_vid;
441 netdev->vlan_rx_kill_vid = ixgb_vlan_rx_kill_vid;
442#ifdef CONFIG_NET_POLL_CONTROLLER
443 netdev->poll_controller = ixgb_netpoll;
444#endif
445
Auke Kok0eb5a342006-09-27 12:53:17 -0700446 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 netdev->mem_start = mmio_start;
448 netdev->mem_end = mmio_start + mmio_len;
449 netdev->base_addr = adapter->hw.io_base;
450
451 adapter->bd_number = cards_found;
452 adapter->link_speed = 0;
453 adapter->link_duplex = 0;
454
455 /* setup the private structure */
456
457 if((err = ixgb_sw_init(adapter)))
458 goto err_sw_init;
459
460 netdev->features = NETIF_F_SG |
461 NETIF_F_HW_CSUM |
462 NETIF_F_HW_VLAN_TX |
463 NETIF_F_HW_VLAN_RX |
464 NETIF_F_HW_VLAN_FILTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 netdev->features |= NETIF_F_TSO;
Auke Kokf017f142006-05-23 10:29:53 -0700466#ifdef NETIF_F_LLTX
467 netdev->features |= NETIF_F_LLTX;
468#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 if(pci_using_dac)
471 netdev->features |= NETIF_F_HIGHDMA;
472
473 /* make sure the EEPROM is good */
474
475 if(!ixgb_validate_eeprom_checksum(&adapter->hw)) {
Auke Kokec9c3f52006-05-23 10:34:59 -0700476 DPRINTK(PROBE, ERR, "The EEPROM Checksum Is Not Valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 err = -EIO;
478 goto err_eeprom;
479 }
480
481 ixgb_get_ee_mac_addr(&adapter->hw, netdev->dev_addr);
John W. Linvilledf859c52005-09-12 10:48:56 -0400482 memcpy(netdev->perm_addr, netdev->dev_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
John W. Linvilledf859c52005-09-12 10:48:56 -0400484 if(!is_valid_ether_addr(netdev->perm_addr)) {
Auke Kokec9c3f52006-05-23 10:34:59 -0700485 DPRINTK(PROBE, ERR, "Invalid MAC Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 err = -EIO;
487 goto err_eeprom;
488 }
489
490 adapter->part_num = ixgb_get_ee_pba_number(&adapter->hw);
491
492 init_timer(&adapter->watchdog_timer);
493 adapter->watchdog_timer.function = &ixgb_watchdog;
494 adapter->watchdog_timer.data = (unsigned long)adapter;
495
David Howellsc4028952006-11-22 14:57:56 +0000496 INIT_WORK(&adapter->tx_timeout_task, ixgb_tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Auke Kokec9c3f52006-05-23 10:34:59 -0700498 strcpy(netdev->name, "eth%d");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if((err = register_netdev(netdev)))
500 goto err_register;
501
502 /* we're going to reset, so assume we have no link for now */
503
504 netif_carrier_off(netdev);
505 netif_stop_queue(netdev);
506
Auke Kokec9c3f52006-05-23 10:34:59 -0700507 DPRINTK(PROBE, INFO, "Intel(R) PRO/10GbE Network Connection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 ixgb_check_options(adapter);
509 /* reset the hardware with the new settings */
510
511 ixgb_reset(adapter);
512
513 cards_found++;
514 return 0;
515
516err_register:
517err_sw_init:
518err_eeprom:
519 iounmap(adapter->hw.hw_addr);
520err_ioremap:
521 free_netdev(netdev);
522err_alloc_etherdev:
523 pci_release_regions(pdev);
Andreas Schwabc91e4682006-03-28 18:10:38 +0200524err_request_regions:
525err_dma_mask:
526 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return err;
528}
529
530/**
531 * ixgb_remove - Device Removal Routine
532 * @pdev: PCI device information struct
533 *
534 * ixgb_remove is called by the PCI subsystem to alert the driver
535 * that it should release a PCI device. The could be caused by a
536 * Hot-Plug event, or because the driver is going to be removed from
537 * memory.
538 **/
539
540static void __devexit
541ixgb_remove(struct pci_dev *pdev)
542{
543 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700544 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 unregister_netdev(netdev);
547
548 iounmap(adapter->hw.hw_addr);
549 pci_release_regions(pdev);
550
551 free_netdev(netdev);
552}
553
554/**
555 * ixgb_sw_init - Initialize general software structures (struct ixgb_adapter)
556 * @adapter: board private structure to initialize
557 *
558 * ixgb_sw_init initializes the Adapter private data structure.
559 * Fields are initialized based on PCI device information and
560 * OS network device settings (MTU size).
561 **/
562
563static int __devinit
564ixgb_sw_init(struct ixgb_adapter *adapter)
565{
566 struct ixgb_hw *hw = &adapter->hw;
567 struct net_device *netdev = adapter->netdev;
568 struct pci_dev *pdev = adapter->pdev;
569
570 /* PCI config space info */
571
572 hw->vendor_id = pdev->vendor;
573 hw->device_id = pdev->device;
574 hw->subsystem_vendor_id = pdev->subsystem_vendor;
575 hw->subsystem_id = pdev->subsystem_device;
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 hw->max_frame_size = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700578 adapter->rx_buffer_len = hw->max_frame_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 if((hw->device_id == IXGB_DEVICE_ID_82597EX)
Auke Kok940829e2006-05-23 10:29:58 -0700581 || (hw->device_id == IXGB_DEVICE_ID_82597EX_CX4)
582 || (hw->device_id == IXGB_DEVICE_ID_82597EX_LR)
583 || (hw->device_id == IXGB_DEVICE_ID_82597EX_SR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 hw->mac_type = ixgb_82597;
585 else {
586 /* should never have loaded on this device */
Auke Kokec9c3f52006-05-23 10:34:59 -0700587 DPRINTK(PROBE, ERR, "unsupported device id\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589
590 /* enable flow control to be programmed */
591 hw->fc.send_xon = 1;
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 spin_lock_init(&adapter->tx_lock);
594
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700595 set_bit(__IXGB_DOWN, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return 0;
597}
598
599/**
600 * ixgb_open - Called when a network interface is made active
601 * @netdev: network interface device structure
602 *
603 * Returns 0 on success, negative value on failure
604 *
605 * The open entry point is called when a network interface is made
606 * active by the system (IFF_UP). At this point all resources needed
607 * for transmit and receive operations are allocated, the interrupt
608 * handler is registered with the OS, the watchdog timer is started,
609 * and the stack is notified that the interface is ready.
610 **/
611
612static int
613ixgb_open(struct net_device *netdev)
614{
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700615 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 int err;
617
618 /* allocate transmit descriptors */
619
620 if((err = ixgb_setup_tx_resources(adapter)))
621 goto err_setup_tx;
622
623 /* allocate receive descriptors */
624
625 if((err = ixgb_setup_rx_resources(adapter)))
626 goto err_setup_rx;
627
628 if((err = ixgb_up(adapter)))
629 goto err_up;
630
631 return 0;
632
633err_up:
634 ixgb_free_rx_resources(adapter);
635err_setup_rx:
636 ixgb_free_tx_resources(adapter);
637err_setup_tx:
638 ixgb_reset(adapter);
639
640 return err;
641}
642
643/**
644 * ixgb_close - Disables a network interface
645 * @netdev: network interface device structure
646 *
647 * Returns 0, this is not allowed to fail
648 *
649 * The close entry point is called when an interface is de-activated
650 * by the OS. The hardware is still under the drivers control, but
651 * needs to be disabled. A global MAC reset is issued to stop the
652 * hardware, and all transmit and receive resources are freed.
653 **/
654
655static int
656ixgb_close(struct net_device *netdev)
657{
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700658 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Joe Perches446490c2008-03-21 11:06:37 -0700660 ixgb_down(adapter, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 ixgb_free_tx_resources(adapter);
663 ixgb_free_rx_resources(adapter);
664
665 return 0;
666}
667
668/**
669 * ixgb_setup_tx_resources - allocate Tx resources (Descriptors)
670 * @adapter: board private structure
671 *
672 * Return 0 on success, negative on failure
673 **/
674
675int
676ixgb_setup_tx_resources(struct ixgb_adapter *adapter)
677{
678 struct ixgb_desc_ring *txdr = &adapter->tx_ring;
679 struct pci_dev *pdev = adapter->pdev;
680 int size;
681
682 size = sizeof(struct ixgb_buffer) * txdr->count;
683 txdr->buffer_info = vmalloc(size);
684 if(!txdr->buffer_info) {
Auke Kokec9c3f52006-05-23 10:34:59 -0700685 DPRINTK(PROBE, ERR,
686 "Unable to allocate transmit descriptor ring memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return -ENOMEM;
688 }
689 memset(txdr->buffer_info, 0, size);
690
691 /* round up to nearest 4K */
692
693 txdr->size = txdr->count * sizeof(struct ixgb_tx_desc);
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700694 txdr->size = ALIGN(txdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 txdr->desc = pci_alloc_consistent(pdev, txdr->size, &txdr->dma);
697 if(!txdr->desc) {
698 vfree(txdr->buffer_info);
Auke Kokec9c3f52006-05-23 10:34:59 -0700699 DPRINTK(PROBE, ERR,
700 "Unable to allocate transmit descriptor memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return -ENOMEM;
702 }
703 memset(txdr->desc, 0, txdr->size);
704
705 txdr->next_to_use = 0;
706 txdr->next_to_clean = 0;
707
708 return 0;
709}
710
711/**
712 * ixgb_configure_tx - Configure 82597 Transmit Unit after Reset.
713 * @adapter: board private structure
714 *
715 * Configure the Tx unit of the MAC after a reset.
716 **/
717
718static void
719ixgb_configure_tx(struct ixgb_adapter *adapter)
720{
721 uint64_t tdba = adapter->tx_ring.dma;
722 uint32_t tdlen = adapter->tx_ring.count * sizeof(struct ixgb_tx_desc);
723 uint32_t tctl;
724 struct ixgb_hw *hw = &adapter->hw;
725
726 /* Setup the Base and Length of the Tx Descriptor Ring
727 * tx_ring.dma can be either a 32 or 64 bit value
728 */
729
730 IXGB_WRITE_REG(hw, TDBAL, (tdba & 0x00000000ffffffffULL));
731 IXGB_WRITE_REG(hw, TDBAH, (tdba >> 32));
732
733 IXGB_WRITE_REG(hw, TDLEN, tdlen);
734
735 /* Setup the HW Tx Head and Tail descriptor pointers */
736
737 IXGB_WRITE_REG(hw, TDH, 0);
738 IXGB_WRITE_REG(hw, TDT, 0);
739
740 /* don't set up txdctl, it induces performance problems if configured
741 * incorrectly */
742 /* Set the Tx Interrupt Delay register */
743
744 IXGB_WRITE_REG(hw, TIDV, adapter->tx_int_delay);
745
746 /* Program the Transmit Control Register */
747
748 tctl = IXGB_TCTL_TCE | IXGB_TCTL_TXEN | IXGB_TCTL_TPDE;
749 IXGB_WRITE_REG(hw, TCTL, tctl);
750
751 /* Setup Transmit Descriptor Settings for this adapter */
752 adapter->tx_cmd_type =
753 IXGB_TX_DESC_TYPE
754 | (adapter->tx_int_delay_enable ? IXGB_TX_DESC_CMD_IDE : 0);
755}
756
757/**
758 * ixgb_setup_rx_resources - allocate Rx resources (Descriptors)
759 * @adapter: board private structure
760 *
761 * Returns 0 on success, negative on failure
762 **/
763
764int
765ixgb_setup_rx_resources(struct ixgb_adapter *adapter)
766{
767 struct ixgb_desc_ring *rxdr = &adapter->rx_ring;
768 struct pci_dev *pdev = adapter->pdev;
769 int size;
770
771 size = sizeof(struct ixgb_buffer) * rxdr->count;
772 rxdr->buffer_info = vmalloc(size);
773 if(!rxdr->buffer_info) {
Auke Kokec9c3f52006-05-23 10:34:59 -0700774 DPRINTK(PROBE, ERR,
775 "Unable to allocate receive descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return -ENOMEM;
777 }
778 memset(rxdr->buffer_info, 0, size);
779
780 /* Round up to nearest 4K */
781
782 rxdr->size = rxdr->count * sizeof(struct ixgb_rx_desc);
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700783 rxdr->size = ALIGN(rxdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 rxdr->desc = pci_alloc_consistent(pdev, rxdr->size, &rxdr->dma);
786
787 if(!rxdr->desc) {
788 vfree(rxdr->buffer_info);
Auke Kokec9c3f52006-05-23 10:34:59 -0700789 DPRINTK(PROBE, ERR,
790 "Unable to allocate receive descriptors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return -ENOMEM;
792 }
793 memset(rxdr->desc, 0, rxdr->size);
794
795 rxdr->next_to_clean = 0;
796 rxdr->next_to_use = 0;
797
798 return 0;
799}
800
801/**
802 * ixgb_setup_rctl - configure the receive control register
803 * @adapter: Board private structure
804 **/
805
806static void
807ixgb_setup_rctl(struct ixgb_adapter *adapter)
808{
809 uint32_t rctl;
810
811 rctl = IXGB_READ_REG(&adapter->hw, RCTL);
812
813 rctl &= ~(3 << IXGB_RCTL_MO_SHIFT);
814
815 rctl |=
816 IXGB_RCTL_BAM | IXGB_RCTL_RDMTS_1_2 |
817 IXGB_RCTL_RXEN | IXGB_RCTL_CFF |
818 (adapter->hw.mc_filter_type << IXGB_RCTL_MO_SHIFT);
819
820 rctl |= IXGB_RCTL_SECRC;
821
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700822 if (adapter->rx_buffer_len <= IXGB_RXBUFFER_2048)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 rctl |= IXGB_RCTL_BSIZE_2048;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700824 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 rctl |= IXGB_RCTL_BSIZE_4096;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700826 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_8192)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 rctl |= IXGB_RCTL_BSIZE_8192;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700828 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_16384)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 rctl |= IXGB_RCTL_BSIZE_16384;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 IXGB_WRITE_REG(&adapter->hw, RCTL, rctl);
832}
833
834/**
835 * ixgb_configure_rx - Configure 82597 Receive Unit after Reset.
836 * @adapter: board private structure
837 *
838 * Configure the Rx unit of the MAC after a reset.
839 **/
840
841static void
842ixgb_configure_rx(struct ixgb_adapter *adapter)
843{
844 uint64_t rdba = adapter->rx_ring.dma;
845 uint32_t rdlen = adapter->rx_ring.count * sizeof(struct ixgb_rx_desc);
846 struct ixgb_hw *hw = &adapter->hw;
847 uint32_t rctl;
848 uint32_t rxcsum;
849 uint32_t rxdctl;
850
851 /* make sure receives are disabled while setting up the descriptors */
852
853 rctl = IXGB_READ_REG(hw, RCTL);
854 IXGB_WRITE_REG(hw, RCTL, rctl & ~IXGB_RCTL_RXEN);
855
856 /* set the Receive Delay Timer Register */
857
858 IXGB_WRITE_REG(hw, RDTR, adapter->rx_int_delay);
859
860 /* Setup the Base and Length of the Rx Descriptor Ring */
861
862 IXGB_WRITE_REG(hw, RDBAL, (rdba & 0x00000000ffffffffULL));
863 IXGB_WRITE_REG(hw, RDBAH, (rdba >> 32));
864
865 IXGB_WRITE_REG(hw, RDLEN, rdlen);
866
867 /* Setup the HW Rx Head and Tail Descriptor Pointers */
868 IXGB_WRITE_REG(hw, RDH, 0);
869 IXGB_WRITE_REG(hw, RDT, 0);
870
871 /* set up pre-fetching of receive buffers so we get some before we
872 * run out (default hardware behavior is to run out before fetching
873 * more). This sets up to fetch if HTHRESH rx descriptors are avail
874 * and the descriptors in hw cache are below PTHRESH. This avoids
875 * the hardware behavior of fetching <=512 descriptors in a single
876 * burst that pre-empts all other activity, usually causing fifo
877 * overflows. */
878 /* use WTHRESH to burst write 16 descriptors or burst when RXT0 */
879 rxdctl = RXDCTL_WTHRESH_DEFAULT << IXGB_RXDCTL_WTHRESH_SHIFT |
880 RXDCTL_HTHRESH_DEFAULT << IXGB_RXDCTL_HTHRESH_SHIFT |
881 RXDCTL_PTHRESH_DEFAULT << IXGB_RXDCTL_PTHRESH_SHIFT;
882 IXGB_WRITE_REG(hw, RXDCTL, rxdctl);
883
884 /* Enable Receive Checksum Offload for TCP and UDP */
Joe Perches446490c2008-03-21 11:06:37 -0700885 if (adapter->rx_csum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 rxcsum = IXGB_READ_REG(hw, RXCSUM);
887 rxcsum |= IXGB_RXCSUM_TUOFL;
888 IXGB_WRITE_REG(hw, RXCSUM, rxcsum);
889 }
890
891 /* Enable Receives */
892
893 IXGB_WRITE_REG(hw, RCTL, rctl);
894}
895
896/**
897 * ixgb_free_tx_resources - Free Tx Resources
898 * @adapter: board private structure
899 *
900 * Free all transmit software resources
901 **/
902
903void
904ixgb_free_tx_resources(struct ixgb_adapter *adapter)
905{
906 struct pci_dev *pdev = adapter->pdev;
907
908 ixgb_clean_tx_ring(adapter);
909
910 vfree(adapter->tx_ring.buffer_info);
911 adapter->tx_ring.buffer_info = NULL;
912
913 pci_free_consistent(pdev, adapter->tx_ring.size,
914 adapter->tx_ring.desc, adapter->tx_ring.dma);
915
916 adapter->tx_ring.desc = NULL;
917}
918
Auke Kok235949d12006-05-26 09:35:52 -0700919static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920ixgb_unmap_and_free_tx_resource(struct ixgb_adapter *adapter,
921 struct ixgb_buffer *buffer_info)
922{
923 struct pci_dev *pdev = adapter->pdev;
Auke Kok1dfdd7d2006-05-25 13:24:17 -0700924
925 if (buffer_info->dma)
926 pci_unmap_page(pdev, buffer_info->dma, buffer_info->length,
927 PCI_DMA_TODEVICE);
928
929 if (buffer_info->skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 dev_kfree_skb_any(buffer_info->skb);
Auke Kok1dfdd7d2006-05-25 13:24:17 -0700931
932 buffer_info->skb = NULL;
933 buffer_info->dma = 0;
934 buffer_info->time_stamp = 0;
935 /* these fields must always be initialized in tx
936 * buffer_info->length = 0;
937 * buffer_info->next_to_watch = 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
940/**
941 * ixgb_clean_tx_ring - Free Tx Buffers
942 * @adapter: board private structure
943 **/
944
945static void
946ixgb_clean_tx_ring(struct ixgb_adapter *adapter)
947{
948 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
949 struct ixgb_buffer *buffer_info;
950 unsigned long size;
951 unsigned int i;
952
953 /* Free all the Tx ring sk_buffs */
954
955 for(i = 0; i < tx_ring->count; i++) {
956 buffer_info = &tx_ring->buffer_info[i];
957 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
958 }
959
960 size = sizeof(struct ixgb_buffer) * tx_ring->count;
961 memset(tx_ring->buffer_info, 0, size);
962
963 /* Zero out the descriptor ring */
964
965 memset(tx_ring->desc, 0, tx_ring->size);
966
967 tx_ring->next_to_use = 0;
968 tx_ring->next_to_clean = 0;
969
970 IXGB_WRITE_REG(&adapter->hw, TDH, 0);
971 IXGB_WRITE_REG(&adapter->hw, TDT, 0);
972}
973
974/**
975 * ixgb_free_rx_resources - Free Rx Resources
976 * @adapter: board private structure
977 *
978 * Free all receive software resources
979 **/
980
981void
982ixgb_free_rx_resources(struct ixgb_adapter *adapter)
983{
984 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
985 struct pci_dev *pdev = adapter->pdev;
986
987 ixgb_clean_rx_ring(adapter);
988
989 vfree(rx_ring->buffer_info);
990 rx_ring->buffer_info = NULL;
991
992 pci_free_consistent(pdev, rx_ring->size, rx_ring->desc, rx_ring->dma);
993
994 rx_ring->desc = NULL;
995}
996
997/**
998 * ixgb_clean_rx_ring - Free Rx Buffers
999 * @adapter: board private structure
1000 **/
1001
1002static void
1003ixgb_clean_rx_ring(struct ixgb_adapter *adapter)
1004{
1005 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
1006 struct ixgb_buffer *buffer_info;
1007 struct pci_dev *pdev = adapter->pdev;
1008 unsigned long size;
1009 unsigned int i;
1010
1011 /* Free all the Rx ring sk_buffs */
1012
1013 for(i = 0; i < rx_ring->count; i++) {
1014 buffer_info = &rx_ring->buffer_info[i];
1015 if(buffer_info->skb) {
1016
1017 pci_unmap_single(pdev,
1018 buffer_info->dma,
1019 buffer_info->length,
1020 PCI_DMA_FROMDEVICE);
1021
1022 dev_kfree_skb(buffer_info->skb);
1023
1024 buffer_info->skb = NULL;
1025 }
1026 }
1027
1028 size = sizeof(struct ixgb_buffer) * rx_ring->count;
1029 memset(rx_ring->buffer_info, 0, size);
1030
1031 /* Zero out the descriptor ring */
1032
1033 memset(rx_ring->desc, 0, rx_ring->size);
1034
1035 rx_ring->next_to_clean = 0;
1036 rx_ring->next_to_use = 0;
1037
1038 IXGB_WRITE_REG(&adapter->hw, RDH, 0);
1039 IXGB_WRITE_REG(&adapter->hw, RDT, 0);
1040}
1041
1042/**
1043 * ixgb_set_mac - Change the Ethernet Address of the NIC
1044 * @netdev: network interface device structure
1045 * @p: pointer to an address structure
1046 *
1047 * Returns 0 on success, negative on failure
1048 **/
1049
1050static int
1051ixgb_set_mac(struct net_device *netdev, void *p)
1052{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001053 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 struct sockaddr *addr = p;
1055
1056 if(!is_valid_ether_addr(addr->sa_data))
1057 return -EADDRNOTAVAIL;
1058
1059 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1060
1061 ixgb_rar_set(&adapter->hw, addr->sa_data, 0);
1062
1063 return 0;
1064}
1065
1066/**
1067 * ixgb_set_multi - Multicast and Promiscuous mode set
1068 * @netdev: network interface device structure
1069 *
1070 * The set_multi entry point is called whenever the multicast address
1071 * list or the network interface flags are updated. This routine is
1072 * responsible for configuring the hardware for proper multicast,
1073 * promiscuous mode, and all-multi behavior.
1074 **/
1075
1076static void
1077ixgb_set_multi(struct net_device *netdev)
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 ixgb_hw *hw = &adapter->hw;
1081 struct dev_mc_list *mc_ptr;
1082 uint32_t rctl;
1083 int i;
1084
1085 /* Check for Promiscuous and All Multicast modes */
1086
1087 rctl = IXGB_READ_REG(hw, RCTL);
1088
1089 if(netdev->flags & IFF_PROMISC) {
1090 rctl |= (IXGB_RCTL_UPE | IXGB_RCTL_MPE);
1091 } else if(netdev->flags & IFF_ALLMULTI) {
1092 rctl |= IXGB_RCTL_MPE;
1093 rctl &= ~IXGB_RCTL_UPE;
1094 } else {
1095 rctl &= ~(IXGB_RCTL_UPE | IXGB_RCTL_MPE);
1096 }
1097
1098 if(netdev->mc_count > IXGB_MAX_NUM_MULTICAST_ADDRESSES) {
1099 rctl |= IXGB_RCTL_MPE;
1100 IXGB_WRITE_REG(hw, RCTL, rctl);
1101 } else {
Stephen Hemminger273dc742007-10-29 10:46:13 -07001102 uint8_t mta[IXGB_MAX_NUM_MULTICAST_ADDRESSES *
1103 IXGB_ETH_LENGTH_OF_ADDRESS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 IXGB_WRITE_REG(hw, RCTL, rctl);
1106
1107 for(i = 0, mc_ptr = netdev->mc_list; mc_ptr;
1108 i++, mc_ptr = mc_ptr->next)
1109 memcpy(&mta[i * IXGB_ETH_LENGTH_OF_ADDRESS],
1110 mc_ptr->dmi_addr, IXGB_ETH_LENGTH_OF_ADDRESS);
1111
1112 ixgb_mc_addr_list_update(hw, mta, netdev->mc_count, 0);
1113 }
1114}
1115
1116/**
1117 * ixgb_watchdog - Timer Call-back
1118 * @data: pointer to netdev cast into an unsigned long
1119 **/
1120
1121static void
1122ixgb_watchdog(unsigned long data)
1123{
1124 struct ixgb_adapter *adapter = (struct ixgb_adapter *)data;
1125 struct net_device *netdev = adapter->netdev;
1126 struct ixgb_desc_ring *txdr = &adapter->tx_ring;
1127
1128 ixgb_check_for_link(&adapter->hw);
1129
1130 if (ixgb_check_for_bad_link(&adapter->hw)) {
1131 /* force the reset path */
1132 netif_stop_queue(netdev);
1133 }
1134
1135 if(adapter->hw.link_up) {
1136 if(!netif_carrier_ok(netdev)) {
Auke Kokec9c3f52006-05-23 10:34:59 -07001137 DPRINTK(LINK, INFO,
1138 "NIC Link is Up 10000 Mbps Full Duplex\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 adapter->link_speed = 10000;
1140 adapter->link_duplex = FULL_DUPLEX;
1141 netif_carrier_on(netdev);
1142 netif_wake_queue(netdev);
1143 }
1144 } else {
1145 if(netif_carrier_ok(netdev)) {
1146 adapter->link_speed = 0;
1147 adapter->link_duplex = 0;
Auke Kokec9c3f52006-05-23 10:34:59 -07001148 DPRINTK(LINK, INFO, "NIC Link is Down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 netif_carrier_off(netdev);
1150 netif_stop_queue(netdev);
1151
1152 }
1153 }
1154
1155 ixgb_update_stats(adapter);
1156
1157 if(!netif_carrier_ok(netdev)) {
1158 if(IXGB_DESC_UNUSED(txdr) + 1 < txdr->count) {
1159 /* We've lost link, so the controller stops DMA,
1160 * but we've got queued Tx work that's never going
1161 * to get done, so reset controller to flush Tx.
1162 * (Do the reset outside of interrupt context). */
1163 schedule_work(&adapter->tx_timeout_task);
1164 }
1165 }
1166
1167 /* Force detection of hung controller every watchdog period */
Joe Perches446490c2008-03-21 11:06:37 -07001168 adapter->detect_tx_hung = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 /* generate an interrupt to force clean up of any stragglers */
1171 IXGB_WRITE_REG(&adapter->hw, ICS, IXGB_INT_TXDW);
1172
1173 /* Reset the timer */
1174 mod_timer(&adapter->watchdog_timer, jiffies + 2 * HZ);
1175}
1176
1177#define IXGB_TX_FLAGS_CSUM 0x00000001
1178#define IXGB_TX_FLAGS_VLAN 0x00000002
1179#define IXGB_TX_FLAGS_TSO 0x00000004
1180
Auke Kok235949d12006-05-26 09:35:52 -07001181static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182ixgb_tso(struct ixgb_adapter *adapter, struct sk_buff *skb)
1183{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 struct ixgb_context_desc *context_desc;
1185 unsigned int i;
1186 uint8_t ipcss, ipcso, tucss, tucso, hdr_len;
1187 uint16_t ipcse, tucse, mss;
1188 int err;
1189
Herbert Xu89114af2006-07-08 13:34:32 -07001190 if (likely(skb_is_gso(skb))) {
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001191 struct ixgb_buffer *buffer_info;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001192 struct iphdr *iph;
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (skb_header_cloned(skb)) {
1195 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1196 if (err)
1197 return err;
1198 }
1199
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07001200 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Herbert Xu79671682006-06-22 02:40:14 -07001201 mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001202 iph = ip_hdr(skb);
1203 iph->tot_len = 0;
1204 iph->check = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001205 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
1206 iph->daddr, 0,
1207 IPPROTO_TCP, 0);
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001208 ipcss = skb_network_offset(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001209 ipcso = (void *)&(iph->check) - (void *)skb->data;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07001210 ipcse = skb_transport_offset(skb) - 1;
1211 tucss = skb_transport_offset(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001212 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 tucse = 0;
1214
1215 i = adapter->tx_ring.next_to_use;
1216 context_desc = IXGB_CONTEXT_DESC(adapter->tx_ring, i);
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001217 buffer_info = &adapter->tx_ring.buffer_info[i];
1218 WARN_ON(buffer_info->dma != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 context_desc->ipcss = ipcss;
1221 context_desc->ipcso = ipcso;
1222 context_desc->ipcse = cpu_to_le16(ipcse);
1223 context_desc->tucss = tucss;
1224 context_desc->tucso = tucso;
1225 context_desc->tucse = cpu_to_le16(tucse);
1226 context_desc->mss = cpu_to_le16(mss);
1227 context_desc->hdr_len = hdr_len;
1228 context_desc->status = 0;
1229 context_desc->cmd_type_len = cpu_to_le32(
1230 IXGB_CONTEXT_DESC_TYPE
1231 | IXGB_CONTEXT_DESC_CMD_TSE
1232 | IXGB_CONTEXT_DESC_CMD_IP
1233 | IXGB_CONTEXT_DESC_CMD_TCP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 | IXGB_CONTEXT_DESC_CMD_IDE
1235 | (skb->len - (hdr_len)));
1236
Malli Chilakala06c2f9e2005-04-28 18:46:51 -07001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if(++i == adapter->tx_ring.count) i = 0;
1239 adapter->tx_ring.next_to_use = i;
1240
1241 return 1;
1242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 return 0;
1245}
1246
Joe Perches446490c2008-03-21 11:06:37 -07001247static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248ixgb_tx_csum(struct ixgb_adapter *adapter, struct sk_buff *skb)
1249{
1250 struct ixgb_context_desc *context_desc;
1251 unsigned int i;
1252 uint8_t css, cso;
1253
Patrick McHardy84fa7932006-08-29 16:44:56 -07001254 if(likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001255 struct ixgb_buffer *buffer_info;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07001256 css = skb_transport_offset(skb);
Al Viroff1dcad2006-11-20 18:07:29 -08001257 cso = css + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 i = adapter->tx_ring.next_to_use;
1260 context_desc = IXGB_CONTEXT_DESC(adapter->tx_ring, i);
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001261 buffer_info = &adapter->tx_ring.buffer_info[i];
1262 WARN_ON(buffer_info->dma != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 context_desc->tucss = css;
1265 context_desc->tucso = cso;
1266 context_desc->tucse = 0;
1267 /* zero out any previously existing data in one instruction */
1268 *(uint32_t *)&(context_desc->ipcss) = 0;
1269 context_desc->status = 0;
1270 context_desc->hdr_len = 0;
1271 context_desc->mss = 0;
1272 context_desc->cmd_type_len =
1273 cpu_to_le32(IXGB_CONTEXT_DESC_TYPE
Malli Chilakala06c2f9e2005-04-28 18:46:51 -07001274 | IXGB_TX_DESC_CMD_IDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 if(++i == adapter->tx_ring.count) i = 0;
1277 adapter->tx_ring.next_to_use = i;
1278
Joe Perches446490c2008-03-21 11:06:37 -07001279 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
1281
Joe Perches446490c2008-03-21 11:06:37 -07001282 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
1285#define IXGB_MAX_TXD_PWR 14
1286#define IXGB_MAX_DATA_PER_TXD (1<<IXGB_MAX_TXD_PWR)
1287
Auke Kok235949d12006-05-26 09:35:52 -07001288static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289ixgb_tx_map(struct ixgb_adapter *adapter, struct sk_buff *skb,
1290 unsigned int first)
1291{
1292 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1293 struct ixgb_buffer *buffer_info;
1294 int len = skb->len;
1295 unsigned int offset = 0, size, count = 0, i;
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001296 unsigned int mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
1299 unsigned int f;
Malli Chilakalaac79c822005-04-28 19:05:32 -07001300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 len -= skb->data_len;
1302
1303 i = tx_ring->next_to_use;
1304
1305 while(len) {
1306 buffer_info = &tx_ring->buffer_info[i];
Auke Kok709cf012006-07-10 08:51:43 -07001307 size = min(len, IXGB_MAX_DATA_PER_TXD);
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001308 /* Workaround for premature desc write-backs
1309 * in TSO mode. Append 4-byte sentinel desc */
1310 if (unlikely(mss && !nr_frags && size == len && size > 8))
1311 size -= 4;
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 buffer_info->length = size;
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001314 WARN_ON(buffer_info->dma != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 buffer_info->dma =
1316 pci_map_single(adapter->pdev,
1317 skb->data + offset,
1318 size,
1319 PCI_DMA_TODEVICE);
1320 buffer_info->time_stamp = jiffies;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001321 buffer_info->next_to_watch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 len -= size;
1324 offset += size;
1325 count++;
1326 if(++i == tx_ring->count) i = 0;
1327 }
1328
1329 for(f = 0; f < nr_frags; f++) {
1330 struct skb_frag_struct *frag;
1331
1332 frag = &skb_shinfo(skb)->frags[f];
1333 len = frag->size;
1334 offset = 0;
1335
1336 while(len) {
1337 buffer_info = &tx_ring->buffer_info[i];
Auke Kok709cf012006-07-10 08:51:43 -07001338 size = min(len, IXGB_MAX_DATA_PER_TXD);
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001339
1340 /* Workaround for premature desc write-backs
1341 * in TSO mode. Append 4-byte sentinel desc */
Auke Kok19abe862007-10-30 11:21:50 -07001342 if (unlikely(mss && (f == (nr_frags - 1))
1343 && size == len && size > 8))
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001344 size -= 4;
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 buffer_info->length = size;
1347 buffer_info->dma =
1348 pci_map_page(adapter->pdev,
1349 frag->page,
1350 frag->page_offset + offset,
1351 size,
1352 PCI_DMA_TODEVICE);
1353 buffer_info->time_stamp = jiffies;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001354 buffer_info->next_to_watch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 len -= size;
1357 offset += size;
1358 count++;
1359 if(++i == tx_ring->count) i = 0;
1360 }
1361 }
1362 i = (i == 0) ? tx_ring->count - 1 : i - 1;
1363 tx_ring->buffer_info[i].skb = skb;
1364 tx_ring->buffer_info[first].next_to_watch = i;
1365
1366 return count;
1367}
1368
Auke Kok235949d12006-05-26 09:35:52 -07001369static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370ixgb_tx_queue(struct ixgb_adapter *adapter, int count, int vlan_id,int tx_flags)
1371{
1372 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1373 struct ixgb_tx_desc *tx_desc = NULL;
1374 struct ixgb_buffer *buffer_info;
1375 uint32_t cmd_type_len = adapter->tx_cmd_type;
1376 uint8_t status = 0;
1377 uint8_t popts = 0;
1378 unsigned int i;
1379
1380 if(tx_flags & IXGB_TX_FLAGS_TSO) {
1381 cmd_type_len |= IXGB_TX_DESC_CMD_TSE;
1382 popts |= (IXGB_TX_DESC_POPTS_IXSM | IXGB_TX_DESC_POPTS_TXSM);
1383 }
1384
1385 if(tx_flags & IXGB_TX_FLAGS_CSUM)
1386 popts |= IXGB_TX_DESC_POPTS_TXSM;
1387
1388 if(tx_flags & IXGB_TX_FLAGS_VLAN) {
1389 cmd_type_len |= IXGB_TX_DESC_CMD_VLE;
1390 }
1391
1392 i = tx_ring->next_to_use;
1393
1394 while(count--) {
1395 buffer_info = &tx_ring->buffer_info[i];
1396 tx_desc = IXGB_TX_DESC(*tx_ring, i);
1397 tx_desc->buff_addr = cpu_to_le64(buffer_info->dma);
1398 tx_desc->cmd_type_len =
1399 cpu_to_le32(cmd_type_len | buffer_info->length);
1400 tx_desc->status = status;
1401 tx_desc->popts = popts;
1402 tx_desc->vlan = cpu_to_le16(vlan_id);
1403
1404 if(++i == tx_ring->count) i = 0;
1405 }
1406
1407 tx_desc->cmd_type_len |= cpu_to_le32(IXGB_TX_DESC_CMD_EOP
1408 | IXGB_TX_DESC_CMD_RS );
1409
1410 /* Force memory writes to complete before letting h/w
1411 * know there are new descriptors to fetch. (Only
1412 * applicable for weak-ordered memory model archs,
1413 * such as IA-64). */
1414 wmb();
1415
1416 tx_ring->next_to_use = i;
1417 IXGB_WRITE_REG(&adapter->hw, TDT, i);
1418}
1419
Jesse Brandeburgdfd341e2007-01-06 09:51:38 -08001420static int __ixgb_maybe_stop_tx(struct net_device *netdev, int size)
1421{
1422 struct ixgb_adapter *adapter = netdev_priv(netdev);
1423 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1424
1425 netif_stop_queue(netdev);
1426 /* Herbert's original patch had:
1427 * smp_mb__after_netif_stop_queue();
1428 * but since that doesn't exist yet, just open code it. */
1429 smp_mb();
1430
1431 /* We need to check again in a case another CPU has just
1432 * made room available. */
1433 if (likely(IXGB_DESC_UNUSED(tx_ring) < size))
1434 return -EBUSY;
1435
1436 /* A reprieve! */
1437 netif_start_queue(netdev);
1438 ++adapter->restart_queue;
1439 return 0;
1440}
1441
1442static int ixgb_maybe_stop_tx(struct net_device *netdev,
1443 struct ixgb_desc_ring *tx_ring, int size)
1444{
1445 if (likely(IXGB_DESC_UNUSED(tx_ring) >= size))
1446 return 0;
1447 return __ixgb_maybe_stop_tx(netdev, size);
1448}
1449
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451/* Tx Descriptors needed, worst case */
1452#define TXD_USE_COUNT(S) (((S) >> IXGB_MAX_TXD_PWR) + \
1453 (((S) & (IXGB_MAX_DATA_PER_TXD - 1)) ? 1 : 0))
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001454#define DESC_NEEDED TXD_USE_COUNT(IXGB_MAX_DATA_PER_TXD) /* skb->date */ + \
1455 MAX_SKB_FRAGS * TXD_USE_COUNT(PAGE_SIZE) + 1 /* for context */ \
1456 + 1 /* one more needed for sentinel TSO workaround */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458static int
1459ixgb_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
1460{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001461 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 unsigned int first;
1463 unsigned int tx_flags = 0;
1464 unsigned long flags;
1465 int vlan_id = 0;
1466 int tso;
1467
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07001468 if (test_bit(__IXGB_DOWN, &adapter->flags)) {
1469 dev_kfree_skb(skb);
1470 return NETDEV_TX_OK;
1471 }
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if(skb->len <= 0) {
1474 dev_kfree_skb_any(skb);
1475 return 0;
1476 }
1477
Auke Kokf017f142006-05-23 10:29:53 -07001478#ifdef NETIF_F_LLTX
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07001479 if (!spin_trylock_irqsave(&adapter->tx_lock, flags)) {
Auke Kokf017f142006-05-23 10:29:53 -07001480 /* Collision - tell upper layer to requeue */
1481 local_irq_restore(flags);
1482 return NETDEV_TX_LOCKED;
1483 }
1484#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 spin_lock_irqsave(&adapter->tx_lock, flags);
Auke Kokf017f142006-05-23 10:29:53 -07001486#endif
1487
Jesse Brandeburgdfd341e2007-01-06 09:51:38 -08001488 if (unlikely(ixgb_maybe_stop_tx(netdev, &adapter->tx_ring,
1489 DESC_NEEDED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 netif_stop_queue(netdev);
1491 spin_unlock_irqrestore(&adapter->tx_lock, flags);
Auke Kokf017f142006-05-23 10:29:53 -07001492 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 }
Auke Kokf017f142006-05-23 10:29:53 -07001494
1495#ifndef NETIF_F_LLTX
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 spin_unlock_irqrestore(&adapter->tx_lock, flags);
Auke Kokf017f142006-05-23 10:29:53 -07001497#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 if(adapter->vlgrp && vlan_tx_tag_present(skb)) {
1500 tx_flags |= IXGB_TX_FLAGS_VLAN;
1501 vlan_id = vlan_tx_tag_get(skb);
1502 }
1503
1504 first = adapter->tx_ring.next_to_use;
1505
1506 tso = ixgb_tso(adapter, skb);
1507 if (tso < 0) {
1508 dev_kfree_skb_any(skb);
Auke Kokf017f142006-05-23 10:29:53 -07001509#ifdef NETIF_F_LLTX
1510 spin_unlock_irqrestore(&adapter->tx_lock, flags);
1511#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return NETDEV_TX_OK;
1513 }
1514
Auke Kok96f9c2e2006-05-23 10:29:41 -07001515 if (likely(tso))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 tx_flags |= IXGB_TX_FLAGS_TSO;
1517 else if(ixgb_tx_csum(adapter, skb))
1518 tx_flags |= IXGB_TX_FLAGS_CSUM;
1519
1520 ixgb_tx_queue(adapter, ixgb_tx_map(adapter, skb, first), vlan_id,
1521 tx_flags);
1522
1523 netdev->trans_start = jiffies;
1524
Auke Kokf017f142006-05-23 10:29:53 -07001525#ifdef NETIF_F_LLTX
1526 /* Make sure there is space in the ring for the next send. */
Jesse Brandeburgdfd341e2007-01-06 09:51:38 -08001527 ixgb_maybe_stop_tx(netdev, &adapter->tx_ring, DESC_NEEDED);
Auke Kokf017f142006-05-23 10:29:53 -07001528
1529 spin_unlock_irqrestore(&adapter->tx_lock, flags);
1530
1531#endif
1532 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
1535/**
1536 * ixgb_tx_timeout - Respond to a Tx Hang
1537 * @netdev: network interface device structure
1538 **/
1539
1540static void
1541ixgb_tx_timeout(struct net_device *netdev)
1542{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001543 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 /* Do the reset outside of interrupt context */
1546 schedule_work(&adapter->tx_timeout_task);
1547}
1548
1549static void
David Howellsc4028952006-11-22 14:57:56 +00001550ixgb_tx_timeout_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
David Howellsc4028952006-11-22 14:57:56 +00001552 struct ixgb_adapter *adapter =
1553 container_of(work, struct ixgb_adapter, tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Auke Kok9b8118d2006-05-23 10:35:04 -07001555 adapter->tx_timeout_count++;
Joe Perches446490c2008-03-21 11:06:37 -07001556 ixgb_down(adapter, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 ixgb_up(adapter);
1558}
1559
1560/**
1561 * ixgb_get_stats - Get System Network Statistics
1562 * @netdev: network interface device structure
1563 *
1564 * Returns the address of the device statistics structure.
1565 * The statistics are actually updated from the timer callback.
1566 **/
1567
1568static struct net_device_stats *
1569ixgb_get_stats(struct net_device *netdev)
1570{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001571 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 return &adapter->net_stats;
1574}
1575
1576/**
1577 * ixgb_change_mtu - Change the Maximum Transfer Unit
1578 * @netdev: network interface device structure
1579 * @new_mtu: new value for maximum frame size
1580 *
1581 * Returns 0 on success, negative on failure
1582 **/
1583
1584static int
1585ixgb_change_mtu(struct net_device *netdev, int new_mtu)
1586{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001587 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 int max_frame = new_mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
1589 int old_max_frame = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
1590
1591
1592 if((max_frame < IXGB_MIN_ENET_FRAME_SIZE_WITHOUT_FCS + ENET_FCS_LENGTH)
1593 || (max_frame > IXGB_MAX_JUMBO_FRAME_SIZE + ENET_FCS_LENGTH)) {
Auke Kokec9c3f52006-05-23 10:34:59 -07001594 DPRINTK(PROBE, ERR, "Invalid MTU setting %d\n", new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 return -EINVAL;
1596 }
1597
Auke Kok3f3dc0d2006-05-26 09:35:43 -07001598 adapter->rx_buffer_len = max_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 netdev->mtu = new_mtu;
1601
Auke Kok3f3dc0d2006-05-26 09:35:43 -07001602 if ((old_max_frame != max_frame) && netif_running(netdev)) {
Joe Perches446490c2008-03-21 11:06:37 -07001603 ixgb_down(adapter, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 ixgb_up(adapter);
1605 }
1606
1607 return 0;
1608}
1609
1610/**
1611 * ixgb_update_stats - Update the board statistics counters.
1612 * @adapter: board private structure
1613 **/
1614
1615void
1616ixgb_update_stats(struct ixgb_adapter *adapter)
1617{
Malli Chilakala56336842005-04-28 18:45:50 -07001618 struct net_device *netdev = adapter->netdev;
Linas Vepstas01748fb2006-08-31 14:27:52 -07001619 struct pci_dev *pdev = adapter->pdev;
1620
1621 /* Prevent stats update while adapter is being reset */
Linas Vepstas81b19552006-12-12 18:29:15 -06001622 if (pci_channel_offline(pdev))
Linas Vepstas01748fb2006-08-31 14:27:52 -07001623 return;
Malli Chilakala56336842005-04-28 18:45:50 -07001624
1625 if((netdev->flags & IFF_PROMISC) || (netdev->flags & IFF_ALLMULTI) ||
1626 (netdev->mc_count > IXGB_MAX_NUM_MULTICAST_ADDRESSES)) {
1627 u64 multi = IXGB_READ_REG(&adapter->hw, MPRCL);
1628 u32 bcast_l = IXGB_READ_REG(&adapter->hw, BPRCL);
1629 u32 bcast_h = IXGB_READ_REG(&adapter->hw, BPRCH);
1630 u64 bcast = ((u64)bcast_h << 32) | bcast_l;
1631
1632 multi |= ((u64)IXGB_READ_REG(&adapter->hw, MPRCH) << 32);
1633 /* fix up multicast stats by removing broadcasts */
Malli Chilakala7b891782005-08-11 13:58:55 -07001634 if(multi >= bcast)
1635 multi -= bcast;
Malli Chilakala56336842005-04-28 18:45:50 -07001636
1637 adapter->stats.mprcl += (multi & 0xFFFFFFFF);
1638 adapter->stats.mprch += (multi >> 32);
1639 adapter->stats.bprcl += bcast_l;
1640 adapter->stats.bprch += bcast_h;
1641 } else {
1642 adapter->stats.mprcl += IXGB_READ_REG(&adapter->hw, MPRCL);
1643 adapter->stats.mprch += IXGB_READ_REG(&adapter->hw, MPRCH);
1644 adapter->stats.bprcl += IXGB_READ_REG(&adapter->hw, BPRCL);
1645 adapter->stats.bprch += IXGB_READ_REG(&adapter->hw, BPRCH);
1646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 adapter->stats.tprl += IXGB_READ_REG(&adapter->hw, TPRL);
1648 adapter->stats.tprh += IXGB_READ_REG(&adapter->hw, TPRH);
1649 adapter->stats.gprcl += IXGB_READ_REG(&adapter->hw, GPRCL);
1650 adapter->stats.gprch += IXGB_READ_REG(&adapter->hw, GPRCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 adapter->stats.uprcl += IXGB_READ_REG(&adapter->hw, UPRCL);
1652 adapter->stats.uprch += IXGB_READ_REG(&adapter->hw, UPRCH);
1653 adapter->stats.vprcl += IXGB_READ_REG(&adapter->hw, VPRCL);
1654 adapter->stats.vprch += IXGB_READ_REG(&adapter->hw, VPRCH);
1655 adapter->stats.jprcl += IXGB_READ_REG(&adapter->hw, JPRCL);
1656 adapter->stats.jprch += IXGB_READ_REG(&adapter->hw, JPRCH);
1657 adapter->stats.gorcl += IXGB_READ_REG(&adapter->hw, GORCL);
1658 adapter->stats.gorch += IXGB_READ_REG(&adapter->hw, GORCH);
1659 adapter->stats.torl += IXGB_READ_REG(&adapter->hw, TORL);
1660 adapter->stats.torh += IXGB_READ_REG(&adapter->hw, TORH);
1661 adapter->stats.rnbc += IXGB_READ_REG(&adapter->hw, RNBC);
1662 adapter->stats.ruc += IXGB_READ_REG(&adapter->hw, RUC);
1663 adapter->stats.roc += IXGB_READ_REG(&adapter->hw, ROC);
1664 adapter->stats.rlec += IXGB_READ_REG(&adapter->hw, RLEC);
1665 adapter->stats.crcerrs += IXGB_READ_REG(&adapter->hw, CRCERRS);
1666 adapter->stats.icbc += IXGB_READ_REG(&adapter->hw, ICBC);
1667 adapter->stats.ecbc += IXGB_READ_REG(&adapter->hw, ECBC);
1668 adapter->stats.mpc += IXGB_READ_REG(&adapter->hw, MPC);
1669 adapter->stats.tptl += IXGB_READ_REG(&adapter->hw, TPTL);
1670 adapter->stats.tpth += IXGB_READ_REG(&adapter->hw, TPTH);
1671 adapter->stats.gptcl += IXGB_READ_REG(&adapter->hw, GPTCL);
1672 adapter->stats.gptch += IXGB_READ_REG(&adapter->hw, GPTCH);
1673 adapter->stats.bptcl += IXGB_READ_REG(&adapter->hw, BPTCL);
1674 adapter->stats.bptch += IXGB_READ_REG(&adapter->hw, BPTCH);
1675 adapter->stats.mptcl += IXGB_READ_REG(&adapter->hw, MPTCL);
1676 adapter->stats.mptch += IXGB_READ_REG(&adapter->hw, MPTCH);
1677 adapter->stats.uptcl += IXGB_READ_REG(&adapter->hw, UPTCL);
1678 adapter->stats.uptch += IXGB_READ_REG(&adapter->hw, UPTCH);
1679 adapter->stats.vptcl += IXGB_READ_REG(&adapter->hw, VPTCL);
1680 adapter->stats.vptch += IXGB_READ_REG(&adapter->hw, VPTCH);
1681 adapter->stats.jptcl += IXGB_READ_REG(&adapter->hw, JPTCL);
1682 adapter->stats.jptch += IXGB_READ_REG(&adapter->hw, JPTCH);
1683 adapter->stats.gotcl += IXGB_READ_REG(&adapter->hw, GOTCL);
1684 adapter->stats.gotch += IXGB_READ_REG(&adapter->hw, GOTCH);
1685 adapter->stats.totl += IXGB_READ_REG(&adapter->hw, TOTL);
1686 adapter->stats.toth += IXGB_READ_REG(&adapter->hw, TOTH);
1687 adapter->stats.dc += IXGB_READ_REG(&adapter->hw, DC);
1688 adapter->stats.plt64c += IXGB_READ_REG(&adapter->hw, PLT64C);
1689 adapter->stats.tsctc += IXGB_READ_REG(&adapter->hw, TSCTC);
1690 adapter->stats.tsctfc += IXGB_READ_REG(&adapter->hw, TSCTFC);
1691 adapter->stats.ibic += IXGB_READ_REG(&adapter->hw, IBIC);
1692 adapter->stats.rfc += IXGB_READ_REG(&adapter->hw, RFC);
1693 adapter->stats.lfc += IXGB_READ_REG(&adapter->hw, LFC);
1694 adapter->stats.pfrc += IXGB_READ_REG(&adapter->hw, PFRC);
1695 adapter->stats.pftc += IXGB_READ_REG(&adapter->hw, PFTC);
1696 adapter->stats.mcfrc += IXGB_READ_REG(&adapter->hw, MCFRC);
1697 adapter->stats.mcftc += IXGB_READ_REG(&adapter->hw, MCFTC);
1698 adapter->stats.xonrxc += IXGB_READ_REG(&adapter->hw, XONRXC);
1699 adapter->stats.xontxc += IXGB_READ_REG(&adapter->hw, XONTXC);
1700 adapter->stats.xoffrxc += IXGB_READ_REG(&adapter->hw, XOFFRXC);
1701 adapter->stats.xofftxc += IXGB_READ_REG(&adapter->hw, XOFFTXC);
1702 adapter->stats.rjc += IXGB_READ_REG(&adapter->hw, RJC);
1703
1704 /* Fill out the OS statistics structure */
1705
1706 adapter->net_stats.rx_packets = adapter->stats.gprcl;
1707 adapter->net_stats.tx_packets = adapter->stats.gptcl;
1708 adapter->net_stats.rx_bytes = adapter->stats.gorcl;
1709 adapter->net_stats.tx_bytes = adapter->stats.gotcl;
1710 adapter->net_stats.multicast = adapter->stats.mprcl;
1711 adapter->net_stats.collisions = 0;
1712
1713 /* ignore RLEC as it reports errors for padded (<64bytes) frames
1714 * with a length in the type/len field */
1715 adapter->net_stats.rx_errors =
1716 /* adapter->stats.rnbc + */ adapter->stats.crcerrs +
1717 adapter->stats.ruc +
1718 adapter->stats.roc /*+ adapter->stats.rlec */ +
1719 adapter->stats.icbc +
1720 adapter->stats.ecbc + adapter->stats.mpc;
1721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 /* see above
1723 * adapter->net_stats.rx_length_errors = adapter->stats.rlec;
1724 */
1725
1726 adapter->net_stats.rx_crc_errors = adapter->stats.crcerrs;
1727 adapter->net_stats.rx_fifo_errors = adapter->stats.mpc;
1728 adapter->net_stats.rx_missed_errors = adapter->stats.mpc;
1729 adapter->net_stats.rx_over_errors = adapter->stats.mpc;
1730
1731 adapter->net_stats.tx_errors = 0;
1732 adapter->net_stats.rx_frame_errors = 0;
1733 adapter->net_stats.tx_aborted_errors = 0;
1734 adapter->net_stats.tx_carrier_errors = 0;
1735 adapter->net_stats.tx_fifo_errors = 0;
1736 adapter->net_stats.tx_heartbeat_errors = 0;
1737 adapter->net_stats.tx_window_errors = 0;
1738}
1739
1740#define IXGB_MAX_INTR 10
1741/**
1742 * ixgb_intr - Interrupt Handler
1743 * @irq: interrupt number
1744 * @data: pointer to a network interface device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 **/
1746
1747static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01001748ixgb_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
1750 struct net_device *netdev = data;
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001751 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 struct ixgb_hw *hw = &adapter->hw;
1753 uint32_t icr = IXGB_READ_REG(hw, ICR);
1754#ifndef CONFIG_IXGB_NAPI
1755 unsigned int i;
1756#endif
1757
1758 if(unlikely(!icr))
1759 return IRQ_NONE; /* Not our interrupt */
1760
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07001761 if (unlikely(icr & (IXGB_INT_RXSEQ | IXGB_INT_LSC)))
1762 if (!test_bit(__IXGB_DOWN, &adapter->flags))
1763 mod_timer(&adapter->watchdog_timer, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765#ifdef CONFIG_IXGB_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001766 if (netif_rx_schedule_prep(netdev, &adapter->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 /* Disable interrupts and register for poll. The flush
1769 of the posted write is intentionally left out.
1770 */
1771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 IXGB_WRITE_REG(&adapter->hw, IMC, ~0);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001773 __netif_rx_schedule(netdev, &adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
1775#else
1776 /* yes, that is actually a & and it is meant to make sure that
1777 * every pass through this for loop checks both receive and
1778 * transmit queues for completed descriptors, intended to
1779 * avoid starvation issues and assist tx/rx fairness. */
1780 for(i = 0; i < IXGB_MAX_INTR; i++)
1781 if(!ixgb_clean_rx_irq(adapter) &
1782 !ixgb_clean_tx_irq(adapter))
1783 break;
1784#endif
1785 return IRQ_HANDLED;
1786}
1787
1788#ifdef CONFIG_IXGB_NAPI
1789/**
1790 * ixgb_clean - NAPI Rx polling callback
1791 * @adapter: board private structure
1792 **/
1793
1794static int
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001795ixgb_clean(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001797 struct ixgb_adapter *adapter = container_of(napi, struct ixgb_adapter, napi);
1798 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 int work_done = 0;
1800
David S. Miller53e52c72008-01-07 21:06:12 -08001801 ixgb_clean_tx_irq(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001802 ixgb_clean_rx_irq(adapter, &work_done, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
David S. Miller53e52c72008-01-07 21:06:12 -08001804 /* If budget not fully consumed, exit the polling mode */
1805 if (work_done < budget) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001806 netif_rx_complete(netdev, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 ixgb_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
1809
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001810 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
1812#endif
1813
1814/**
1815 * ixgb_clean_tx_irq - Reclaim resources after transmit completes
1816 * @adapter: board private structure
1817 **/
1818
Joe Perches446490c2008-03-21 11:06:37 -07001819static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820ixgb_clean_tx_irq(struct ixgb_adapter *adapter)
1821{
1822 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1823 struct net_device *netdev = adapter->netdev;
1824 struct ixgb_tx_desc *tx_desc, *eop_desc;
1825 struct ixgb_buffer *buffer_info;
1826 unsigned int i, eop;
Joe Perches446490c2008-03-21 11:06:37 -07001827 bool cleaned = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 i = tx_ring->next_to_clean;
1830 eop = tx_ring->buffer_info[i].next_to_watch;
1831 eop_desc = IXGB_TX_DESC(*tx_ring, eop);
1832
1833 while(eop_desc->status & IXGB_TX_DESC_STATUS_DD) {
1834
Joe Perches446490c2008-03-21 11:06:37 -07001835 for (cleaned = false; !cleaned; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 tx_desc = IXGB_TX_DESC(*tx_ring, i);
1837 buffer_info = &tx_ring->buffer_info[i];
1838
1839 if (tx_desc->popts
1840 & (IXGB_TX_DESC_POPTS_TXSM |
1841 IXGB_TX_DESC_POPTS_IXSM))
1842 adapter->hw_csum_tx_good++;
1843
1844 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
1845
1846 *(uint32_t *)&(tx_desc->status) = 0;
1847
1848 cleaned = (i == eop);
1849 if(++i == tx_ring->count) i = 0;
1850 }
1851
1852 eop = tx_ring->buffer_info[i].next_to_watch;
1853 eop_desc = IXGB_TX_DESC(*tx_ring, eop);
1854 }
1855
1856 tx_ring->next_to_clean = i;
1857
Auke Kok3352a3b2006-05-26 09:35:47 -07001858 if (unlikely(netif_queue_stopped(netdev))) {
1859 spin_lock(&adapter->tx_lock);
1860 if (netif_queue_stopped(netdev) && netif_carrier_ok(netdev) &&
Auke Kokab8ced22006-08-31 14:27:51 -07001861 (IXGB_DESC_UNUSED(tx_ring) >= DESC_NEEDED))
Auke Kok3352a3b2006-05-26 09:35:47 -07001862 netif_wake_queue(netdev);
1863 spin_unlock(&adapter->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 if(adapter->detect_tx_hung) {
1867 /* detect a transmit hang in hardware, this serializes the
1868 * check with the clearing of time_stamp and movement of i */
Joe Perches446490c2008-03-21 11:06:37 -07001869 adapter->detect_tx_hung = false;
Auke Kok9b8118d2006-05-23 10:35:04 -07001870 if (tx_ring->buffer_info[eop].dma &&
1871 time_after(jiffies, tx_ring->buffer_info[eop].time_stamp + HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 && !(IXGB_READ_REG(&adapter->hw, STATUS) &
Auke Kok9b8118d2006-05-23 10:35:04 -07001873 IXGB_STATUS_TXOFF)) {
1874 /* detected Tx unit hang */
1875 DPRINTK(DRV, ERR, "Detected Tx Unit Hang\n"
1876 " TDH <%x>\n"
1877 " TDT <%x>\n"
1878 " next_to_use <%x>\n"
1879 " next_to_clean <%x>\n"
1880 "buffer_info[next_to_clean]\n"
1881 " time_stamp <%lx>\n"
1882 " next_to_watch <%x>\n"
1883 " jiffies <%lx>\n"
1884 " next_to_watch.status <%x>\n",
1885 IXGB_READ_REG(&adapter->hw, TDH),
1886 IXGB_READ_REG(&adapter->hw, TDT),
1887 tx_ring->next_to_use,
1888 tx_ring->next_to_clean,
1889 tx_ring->buffer_info[eop].time_stamp,
1890 eop,
1891 jiffies,
1892 eop_desc->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 netif_stop_queue(netdev);
Auke Kok9b8118d2006-05-23 10:35:04 -07001894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 }
1896
1897 return cleaned;
1898}
1899
1900/**
1901 * ixgb_rx_checksum - Receive Checksum Offload for 82597.
1902 * @adapter: board private structure
1903 * @rx_desc: receive descriptor
1904 * @sk_buff: socket buffer with received data
1905 **/
1906
Auke Kok235949d12006-05-26 09:35:52 -07001907static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908ixgb_rx_checksum(struct ixgb_adapter *adapter,
1909 struct ixgb_rx_desc *rx_desc,
1910 struct sk_buff *skb)
1911{
1912 /* Ignore Checksum bit is set OR
1913 * TCP Checksum has not been calculated
1914 */
1915 if((rx_desc->status & IXGB_RX_DESC_STATUS_IXSM) ||
1916 (!(rx_desc->status & IXGB_RX_DESC_STATUS_TCPCS))) {
1917 skb->ip_summed = CHECKSUM_NONE;
1918 return;
1919 }
1920
1921 /* At this point we know the hardware did the TCP checksum */
1922 /* now look at the TCP checksum error bit */
1923 if(rx_desc->errors & IXGB_RX_DESC_ERRORS_TCPE) {
1924 /* let the stack verify checksum errors */
1925 skb->ip_summed = CHECKSUM_NONE;
1926 adapter->hw_csum_rx_error++;
1927 } else {
1928 /* TCP checksum is good */
1929 skb->ip_summed = CHECKSUM_UNNECESSARY;
1930 adapter->hw_csum_rx_good++;
1931 }
1932}
1933
1934/**
1935 * ixgb_clean_rx_irq - Send received data up the network stack,
1936 * @adapter: board private structure
1937 **/
1938
Joe Perches446490c2008-03-21 11:06:37 -07001939static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940#ifdef CONFIG_IXGB_NAPI
1941ixgb_clean_rx_irq(struct ixgb_adapter *adapter, int *work_done, int work_to_do)
1942#else
1943ixgb_clean_rx_irq(struct ixgb_adapter *adapter)
1944#endif
1945{
1946 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
1947 struct net_device *netdev = adapter->netdev;
1948 struct pci_dev *pdev = adapter->pdev;
1949 struct ixgb_rx_desc *rx_desc, *next_rxd;
1950 struct ixgb_buffer *buffer_info, *next_buffer, *next2_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 uint32_t length;
1952 unsigned int i, j;
Joe Perches446490c2008-03-21 11:06:37 -07001953 bool cleaned = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
1955 i = rx_ring->next_to_clean;
1956 rx_desc = IXGB_RX_DESC(*rx_ring, i);
1957 buffer_info = &rx_ring->buffer_info[i];
1958
1959 while(rx_desc->status & IXGB_RX_DESC_STATUS_DD) {
Malli Chilakalaf404de12005-04-28 19:04:54 -07001960 struct sk_buff *skb, *next_skb;
1961 u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963#ifdef CONFIG_IXGB_NAPI
1964 if(*work_done >= work_to_do)
1965 break;
1966
1967 (*work_done)++;
1968#endif
Malli Chilakalaf404de12005-04-28 19:04:54 -07001969 status = rx_desc->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 skb = buffer_info->skb;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001971 buffer_info->skb = NULL;
Malli Chilakalaf404de12005-04-28 19:04:54 -07001972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 prefetch(skb->data);
1974
1975 if(++i == rx_ring->count) i = 0;
1976 next_rxd = IXGB_RX_DESC(*rx_ring, i);
1977 prefetch(next_rxd);
1978
1979 if((j = i + 1) == rx_ring->count) j = 0;
1980 next2_buffer = &rx_ring->buffer_info[j];
1981 prefetch(next2_buffer);
1982
1983 next_buffer = &rx_ring->buffer_info[i];
1984 next_skb = next_buffer->skb;
1985 prefetch(next_skb);
1986
Joe Perches446490c2008-03-21 11:06:37 -07001987 cleaned = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989 pci_unmap_single(pdev,
1990 buffer_info->dma,
1991 buffer_info->length,
1992 PCI_DMA_FROMDEVICE);
1993
1994 length = le16_to_cpu(rx_desc->length);
1995
Malli Chilakalaf404de12005-04-28 19:04:54 -07001996 if(unlikely(!(status & IXGB_RX_DESC_STATUS_EOP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 /* All receives must fit into a single buffer */
1999
2000 IXGB_DBG("Receive packet consumed multiple buffers "
2001 "length<%x>\n", length);
2002
2003 dev_kfree_skb_irq(skb);
Malli Chilakalaf404de12005-04-28 19:04:54 -07002004 goto rxdesc_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006
2007 if (unlikely(rx_desc->errors
2008 & (IXGB_RX_DESC_ERRORS_CE | IXGB_RX_DESC_ERRORS_SE
2009 | IXGB_RX_DESC_ERRORS_P |
2010 IXGB_RX_DESC_ERRORS_RXE))) {
2011
2012 dev_kfree_skb_irq(skb);
Malli Chilakalaf404de12005-04-28 19:04:54 -07002013 goto rxdesc_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 }
2015
Auke Kok6b900bb2006-05-25 13:24:21 -07002016 /* code added for copybreak, this should improve
2017 * performance for small packets with large amounts
2018 * of reassembly being done in the stack */
2019#define IXGB_CB_LENGTH 256
2020 if (length < IXGB_CB_LENGTH) {
2021 struct sk_buff *new_skb =
Auke Kok57917042006-08-31 14:27:50 -07002022 netdev_alloc_skb(netdev, length + NET_IP_ALIGN);
Auke Kok6b900bb2006-05-25 13:24:21 -07002023 if (new_skb) {
2024 skb_reserve(new_skb, NET_IP_ALIGN);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002025 skb_copy_to_linear_data_offset(new_skb,
2026 -NET_IP_ALIGN,
2027 (skb->data -
2028 NET_IP_ALIGN),
2029 (length +
2030 NET_IP_ALIGN));
Auke Kok6b900bb2006-05-25 13:24:21 -07002031 /* save the skb in buffer_info as good */
2032 buffer_info->skb = skb;
2033 skb = new_skb;
2034 }
2035 }
2036 /* end copybreak code */
2037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 /* Good Receive */
2039 skb_put(skb, length);
2040
2041 /* Receive Checksum Offload */
2042 ixgb_rx_checksum(adapter, rx_desc, skb);
2043
2044 skb->protocol = eth_type_trans(skb, netdev);
2045#ifdef CONFIG_IXGB_NAPI
Malli Chilakalaf404de12005-04-28 19:04:54 -07002046 if(adapter->vlgrp && (status & IXGB_RX_DESC_STATUS_VP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 vlan_hwaccel_receive_skb(skb, adapter->vlgrp,
2048 le16_to_cpu(rx_desc->special) &
2049 IXGB_RX_DESC_SPECIAL_VLAN_MASK);
2050 } else {
2051 netif_receive_skb(skb);
2052 }
2053#else /* CONFIG_IXGB_NAPI */
Malli Chilakalaf404de12005-04-28 19:04:54 -07002054 if(adapter->vlgrp && (status & IXGB_RX_DESC_STATUS_VP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 vlan_hwaccel_rx(skb, adapter->vlgrp,
2056 le16_to_cpu(rx_desc->special) &
2057 IXGB_RX_DESC_SPECIAL_VLAN_MASK);
2058 } else {
2059 netif_rx(skb);
2060 }
2061#endif /* CONFIG_IXGB_NAPI */
2062 netdev->last_rx = jiffies;
2063
Malli Chilakalaf404de12005-04-28 19:04:54 -07002064rxdesc_done:
2065 /* clean up descriptor, might be written over by hw */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Malli Chilakalaf404de12005-04-28 19:04:54 -07002068 /* use prefetched values */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 rx_desc = next_rxd;
2070 buffer_info = next_buffer;
2071 }
2072
2073 rx_ring->next_to_clean = i;
2074
2075 ixgb_alloc_rx_buffers(adapter);
2076
2077 return cleaned;
2078}
2079
2080/**
2081 * ixgb_alloc_rx_buffers - Replace used receive buffers
2082 * @adapter: address of board private structure
2083 **/
2084
2085static void
2086ixgb_alloc_rx_buffers(struct ixgb_adapter *adapter)
2087{
2088 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
2089 struct net_device *netdev = adapter->netdev;
2090 struct pci_dev *pdev = adapter->pdev;
2091 struct ixgb_rx_desc *rx_desc;
2092 struct ixgb_buffer *buffer_info;
2093 struct sk_buff *skb;
2094 unsigned int i;
2095 int num_group_tail_writes;
2096 long cleancount;
2097
2098 i = rx_ring->next_to_use;
2099 buffer_info = &rx_ring->buffer_info[i];
2100 cleancount = IXGB_DESC_UNUSED(rx_ring);
2101
2102 num_group_tail_writes = IXGB_RX_BUFFER_WRITE;
2103
Malli Chilakala41639fe2005-04-28 18:51:54 -07002104 /* leave three descriptors unused */
2105 while(--cleancount > 2) {
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002106 /* recycle! its good for you */
Auke Kok69c7a9402006-08-31 14:27:52 -07002107 skb = buffer_info->skb;
2108 if (skb) {
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002109 skb_trim(skb, 0);
2110 goto map_skb;
2111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Auke Kok69c7a9402006-08-31 14:27:52 -07002113 skb = netdev_alloc_skb(netdev, adapter->rx_buffer_len
2114 + NET_IP_ALIGN);
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002115 if (unlikely(!skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 /* Better luck next round */
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002117 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 break;
2119 }
2120
2121 /* Make buffer alignment 2 beyond a 16 byte boundary
2122 * this will result in a 16 byte aligned IP header after
2123 * the 14 byte MAC header is removed
2124 */
2125 skb_reserve(skb, NET_IP_ALIGN);
2126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 buffer_info->skb = skb;
2128 buffer_info->length = adapter->rx_buffer_len;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002129map_skb:
2130 buffer_info->dma = pci_map_single(pdev,
2131 skb->data,
2132 adapter->rx_buffer_len,
2133 PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002135 rx_desc = IXGB_RX_DESC(*rx_ring, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 rx_desc->buff_addr = cpu_to_le64(buffer_info->dma);
Malli Chilakala41639fe2005-04-28 18:51:54 -07002137 /* guarantee DD bit not set now before h/w gets descriptor
2138 * this is the rest of the workaround for h/w double
2139 * writeback. */
2140 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 if(++i == rx_ring->count) i = 0;
2144 buffer_info = &rx_ring->buffer_info[i];
2145 }
2146
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002147 if (likely(rx_ring->next_to_use != i)) {
2148 rx_ring->next_to_use = i;
2149 if (unlikely(i-- == 0))
2150 i = (rx_ring->count - 1);
2151
2152 /* Force memory writes to complete before letting h/w
2153 * know there are new descriptors to fetch. (Only
2154 * applicable for weak-ordered memory model archs, such
2155 * as IA-64). */
2156 wmb();
2157 IXGB_WRITE_REG(&adapter->hw, RDT, i);
2158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159}
2160
2161/**
2162 * ixgb_vlan_rx_register - enables or disables vlan tagging/stripping.
2163 *
2164 * @param netdev network interface device structure
2165 * @param grp indicates to enable or disable tagging/stripping
2166 **/
2167static void
2168ixgb_vlan_rx_register(struct net_device *netdev, struct vlan_group *grp)
2169{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002170 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 uint32_t ctrl, rctl;
2172
2173 ixgb_irq_disable(adapter);
2174 adapter->vlgrp = grp;
2175
2176 if(grp) {
2177 /* enable VLAN tag insert/strip */
2178 ctrl = IXGB_READ_REG(&adapter->hw, CTRL0);
2179 ctrl |= IXGB_CTRL0_VME;
2180 IXGB_WRITE_REG(&adapter->hw, CTRL0, ctrl);
2181
2182 /* enable VLAN receive filtering */
2183
2184 rctl = IXGB_READ_REG(&adapter->hw, RCTL);
2185 rctl |= IXGB_RCTL_VFE;
2186 rctl &= ~IXGB_RCTL_CFIEN;
2187 IXGB_WRITE_REG(&adapter->hw, RCTL, rctl);
2188 } else {
2189 /* disable VLAN tag insert/strip */
2190
2191 ctrl = IXGB_READ_REG(&adapter->hw, CTRL0);
2192 ctrl &= ~IXGB_CTRL0_VME;
2193 IXGB_WRITE_REG(&adapter->hw, CTRL0, ctrl);
2194
2195 /* disable VLAN filtering */
2196
2197 rctl = IXGB_READ_REG(&adapter->hw, RCTL);
2198 rctl &= ~IXGB_RCTL_VFE;
2199 IXGB_WRITE_REG(&adapter->hw, RCTL, rctl);
2200 }
2201
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07002202 /* don't enable interrupts unless we are UP */
2203 if (adapter->netdev->flags & IFF_UP)
2204 ixgb_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205}
2206
2207static void
2208ixgb_vlan_rx_add_vid(struct net_device *netdev, uint16_t vid)
2209{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002210 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 uint32_t vfta, index;
2212
2213 /* add VID to filter table */
2214
2215 index = (vid >> 5) & 0x7F;
2216 vfta = IXGB_READ_REG_ARRAY(&adapter->hw, VFTA, index);
2217 vfta |= (1 << (vid & 0x1F));
2218 ixgb_write_vfta(&adapter->hw, index, vfta);
2219}
2220
2221static void
2222ixgb_vlan_rx_kill_vid(struct net_device *netdev, uint16_t vid)
2223{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002224 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 uint32_t vfta, index;
2226
2227 ixgb_irq_disable(adapter);
2228
Dan Aloni5c15bde2007-03-02 20:44:51 -08002229 vlan_group_set_device(adapter->vlgrp, vid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07002231 /* don't enable interrupts unless we are UP */
2232 if (adapter->netdev->flags & IFF_UP)
2233 ixgb_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07002235 /* remove VID from filter table */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 index = (vid >> 5) & 0x7F;
2238 vfta = IXGB_READ_REG_ARRAY(&adapter->hw, VFTA, index);
2239 vfta &= ~(1 << (vid & 0x1F));
2240 ixgb_write_vfta(&adapter->hw, index, vfta);
2241}
2242
2243static void
2244ixgb_restore_vlan(struct ixgb_adapter *adapter)
2245{
2246 ixgb_vlan_rx_register(adapter->netdev, adapter->vlgrp);
2247
2248 if(adapter->vlgrp) {
2249 uint16_t vid;
2250 for(vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002251 if(!vlan_group_get_device(adapter->vlgrp, vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 continue;
2253 ixgb_vlan_rx_add_vid(adapter->netdev, vid);
2254 }
2255 }
2256}
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258#ifdef CONFIG_NET_POLL_CONTROLLER
2259/*
2260 * Polling 'interrupt' - used by things like netconsole to send skbs
2261 * without having to re-enable interrupts. It's not called while
2262 * the interrupt routine is executing.
2263 */
2264
2265static void ixgb_netpoll(struct net_device *dev)
2266{
Auke Kokf990b422006-08-31 14:27:50 -07002267 struct ixgb_adapter *adapter = netdev_priv(dev);
Malli Chilakalaac79c822005-04-28 19:05:32 -07002268
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 disable_irq(adapter->pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002270 ixgb_intr(adapter->pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 enable_irq(adapter->pdev->irq);
2272}
2273#endif
2274
Linas Vepstas01748fb2006-08-31 14:27:52 -07002275/**
2276 * ixgb_io_error_detected() - called when PCI error is detected
2277 * @pdev pointer to pci device with error
2278 * @state pci channel state after error
2279 *
2280 * This callback is called by the PCI subsystem whenever
2281 * a PCI bus error is detected.
2282 */
2283static pci_ers_result_t ixgb_io_error_detected (struct pci_dev *pdev,
2284 enum pci_channel_state state)
2285{
2286 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002287 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002288
2289 if(netif_running(netdev))
Joe Perches446490c2008-03-21 11:06:37 -07002290 ixgb_down(adapter, true);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002291
2292 pci_disable_device(pdev);
2293
2294 /* Request a slot reset. */
2295 return PCI_ERS_RESULT_NEED_RESET;
2296}
2297
2298/**
2299 * ixgb_io_slot_reset - called after the pci bus has been reset.
2300 * @pdev pointer to pci device with error
2301 *
2302 * This callback is called after the PCI buss has been reset.
2303 * Basically, this tries to restart the card from scratch.
2304 * This is a shortened version of the device probe/discovery code,
2305 * it resembles the first-half of the ixgb_probe() routine.
2306 */
2307static pci_ers_result_t ixgb_io_slot_reset (struct pci_dev *pdev)
2308{
2309 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002310 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002311
2312 if(pci_enable_device(pdev)) {
2313 DPRINTK(PROBE, ERR, "Cannot re-enable PCI device after reset.\n");
2314 return PCI_ERS_RESULT_DISCONNECT;
2315 }
2316
2317 /* Perform card reset only on one instance of the card */
2318 if (0 != PCI_FUNC (pdev->devfn))
2319 return PCI_ERS_RESULT_RECOVERED;
2320
2321 pci_set_master(pdev);
2322
2323 netif_carrier_off(netdev);
2324 netif_stop_queue(netdev);
2325 ixgb_reset(adapter);
2326
2327 /* Make sure the EEPROM is good */
2328 if(!ixgb_validate_eeprom_checksum(&adapter->hw)) {
2329 DPRINTK(PROBE, ERR, "After reset, the EEPROM checksum is not valid.\n");
2330 return PCI_ERS_RESULT_DISCONNECT;
2331 }
2332 ixgb_get_ee_mac_addr(&adapter->hw, netdev->dev_addr);
2333 memcpy(netdev->perm_addr, netdev->dev_addr, netdev->addr_len);
2334
2335 if(!is_valid_ether_addr(netdev->perm_addr)) {
2336 DPRINTK(PROBE, ERR, "After reset, invalid MAC address.\n");
2337 return PCI_ERS_RESULT_DISCONNECT;
2338 }
2339
2340 return PCI_ERS_RESULT_RECOVERED;
2341}
2342
2343/**
2344 * ixgb_io_resume - called when its OK to resume normal operations
2345 * @pdev pointer to pci device with error
2346 *
2347 * The error recovery driver tells us that its OK to resume
2348 * normal operation. Implementation resembles the second-half
2349 * of the ixgb_probe() routine.
2350 */
2351static void ixgb_io_resume (struct pci_dev *pdev)
2352{
2353 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002354 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002355
2356 pci_set_master(pdev);
2357
2358 if(netif_running(netdev)) {
2359 if(ixgb_up(adapter)) {
2360 printk ("ixgb: can't bring device back up after reset\n");
2361 return;
2362 }
2363 }
2364
2365 netif_device_attach(netdev);
2366 mod_timer(&adapter->watchdog_timer, jiffies);
2367}
2368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369/* ixgb_main.c */