blob: b8fb16304598f2376b2c9d21a452db5ce129d171 [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) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 {INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX,
58 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Auke Kok940829e2006-05-23 10:29:58 -070059 {INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX_CX4,
60 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 {INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX_SR,
62 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jesse Brandeburg7490d712008-07-08 15:52:08 -070063 {INTEL_VENDOR_ID, 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);
76static void __devexit ixgb_remove(struct pci_dev *pdev);
77static int ixgb_sw_init(struct ixgb_adapter *adapter);
78static int ixgb_open(struct net_device *netdev);
79static int ixgb_close(struct net_device *netdev);
80static void ixgb_configure_tx(struct ixgb_adapter *adapter);
81static void ixgb_configure_rx(struct ixgb_adapter *adapter);
82static void ixgb_setup_rctl(struct ixgb_adapter *adapter);
83static void ixgb_clean_tx_ring(struct ixgb_adapter *adapter);
84static void ixgb_clean_rx_ring(struct ixgb_adapter *adapter);
85static void ixgb_set_multi(struct net_device *netdev);
86static void ixgb_watchdog(unsigned long data);
Stephen Hemminger3b29a562009-08-31 19:50:55 +000087static netdev_tx_t ixgb_xmit_frame(struct sk_buff *skb,
88 struct net_device *netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static struct net_device_stats *ixgb_get_stats(struct net_device *netdev);
90static int ixgb_change_mtu(struct net_device *netdev, int new_mtu);
91static int ixgb_set_mac(struct net_device *netdev, void *p);
David Howells7d12e782006-10-05 14:55:46 +010092static irqreturn_t ixgb_intr(int irq, void *data);
Joe Perches446490c2008-03-21 11:06:37 -070093static bool ixgb_clean_tx_irq(struct ixgb_adapter *adapter);
Malli Chilakalaac79c822005-04-28 19:05:32 -070094
Jesse Brandeburg7490d712008-07-08 15:52:08 -070095static int ixgb_clean(struct napi_struct *, int);
96static bool ixgb_clean_rx_irq(struct ixgb_adapter *, int *, int);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -070097static void ixgb_alloc_rx_buffers(struct ixgb_adapter *, int);
Jesse Brandeburg7490d712008-07-08 15:52:08 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static void ixgb_tx_timeout(struct net_device *dev);
David Howellsc4028952006-11-22 14:57:56 +0000100static void ixgb_tx_timeout_task(struct work_struct *work);
Jesse Brandeburg7490d712008-07-08 15:52:08 -0700101
Emil Tantilovae544962010-12-04 05:35:17 +0000102static void ixgb_vlan_strip_enable(struct ixgb_adapter *adapter);
103static void ixgb_vlan_strip_disable(struct ixgb_adapter *adapter);
Joe Perches222441a2008-04-03 10:06:25 -0700104static void ixgb_vlan_rx_add_vid(struct net_device *netdev, u16 vid);
105static void 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
Linas Vepstas01748fb2006-08-31 14:27:52 -0700118static struct pci_error_handlers ixgb_err_handler = {
119 .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,
128 .remove = __devexit_p(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
Auke Kokec9c3f52006-05-23 10:34:59 -0700137#define DEFAULT_DEBUG_LEVEL_SHIFT 3
138static int debug = DEFAULT_DEBUG_LEVEL_SHIFT;
139module_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;
198 if (adapter->hw.subsystem_vendor_id == SUN_SUBVENDOR_ID)
199 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) {
231 adapter->have_msi = 1;
232 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 Perches446490c2008-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ławd7ccb8c2011-06-08 08:39:40 +0000328static int
329ixgb_set_features(struct net_device *netdev, u32 features)
330{
331 struct ixgb_adapter *adapter = netdev_priv(netdev);
332 u32 changed = features ^ netdev->features;
333
334 if (!(changed & NETIF_F_RXCSUM))
335 return 0;
336
337 adapter->rx_csum = !!(features & NETIF_F_RXCSUM);
338
339 if (netif_running(netdev)) {
340 ixgb_down(adapter, true);
341 ixgb_up(adapter);
342 ixgb_set_speed_duplex(netdev);
343 } else
344 ixgb_reset(adapter);
345
346 return 0;
347}
348
349
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800350static const struct net_device_ops ixgb_netdev_ops = {
351 .ndo_open = ixgb_open,
352 .ndo_stop = ixgb_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800353 .ndo_start_xmit = ixgb_xmit_frame,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800354 .ndo_get_stats = ixgb_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000355 .ndo_set_rx_mode = ixgb_set_multi,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800356 .ndo_validate_addr = eth_validate_addr,
357 .ndo_set_mac_address = ixgb_set_mac,
358 .ndo_change_mtu = ixgb_change_mtu,
359 .ndo_tx_timeout = ixgb_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800360 .ndo_vlan_rx_add_vid = ixgb_vlan_rx_add_vid,
361 .ndo_vlan_rx_kill_vid = ixgb_vlan_rx_kill_vid,
362#ifdef CONFIG_NET_POLL_CONTROLLER
363 .ndo_poll_controller = ixgb_netpoll,
364#endif
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000365 .ndo_set_features = ixgb_set_features,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800366};
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368/**
369 * ixgb_probe - Device Initialization Routine
370 * @pdev: PCI device information struct
371 * @ent: entry in ixgb_pci_tbl
372 *
373 * Returns 0 on success, negative on failure
374 *
375 * ixgb_probe initializes an adapter identified by a pci_dev structure.
376 * The OS initialization, configuring of the adapter private structure,
377 * and a hardware reset occur.
378 **/
379
380static int __devinit
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700381ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 struct net_device *netdev = NULL;
384 struct ixgb_adapter *adapter;
385 static int cards_found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 int pci_using_dac;
387 int i;
388 int err;
389
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700390 err = pci_enable_device(pdev);
391 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return err;
393
Nick Nunley47631f82010-04-27 13:10:03 +0000394 pci_using_dac = 0;
395 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
396 if (!err) {
397 err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
398 if (!err)
399 pci_using_dac = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 } else {
Nick Nunley47631f82010-04-27 13:10:03 +0000401 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
402 if (err) {
403 err = dma_set_coherent_mask(&pdev->dev,
404 DMA_BIT_MASK(32));
405 if (err) {
406 pr_err("No usable DMA configuration, aborting\n");
407 goto err_dma_mask;
408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700412 err = pci_request_regions(pdev, ixgb_driver_name);
413 if (err)
Andreas Schwabc91e4682006-03-28 18:10:38 +0200414 goto err_request_regions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 pci_set_master(pdev);
417
418 netdev = alloc_etherdev(sizeof(struct ixgb_adapter));
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700419 if (!netdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 err = -ENOMEM;
421 goto err_alloc_etherdev;
422 }
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 SET_NETDEV_DEV(netdev, &pdev->dev);
425
426 pci_set_drvdata(pdev, netdev);
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700427 adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 adapter->netdev = netdev;
429 adapter->pdev = pdev;
430 adapter->hw.back = adapter;
Auke Kokec9c3f52006-05-23 10:34:59 -0700431 adapter->msg_enable = netif_msg_init(debug, DEFAULT_DEBUG_LEVEL_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Arjan van de Ven275f1652008-10-20 21:42:39 -0700433 adapter->hw.hw_addr = pci_ioremap_bar(pdev, BAR_0);
Jesse Brandeburge539e462008-07-08 15:51:12 -0700434 if (!adapter->hw.hw_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 err = -EIO;
436 goto err_ioremap;
437 }
438
Jesse Brandeburg14593362008-07-08 15:52:33 -0700439 for (i = BAR_1; i <= BAR_5; i++) {
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700440 if (pci_resource_len(pdev, i) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 continue;
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700442 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 adapter->hw.io_base = pci_resource_start(pdev, i);
444 break;
445 }
446 }
447
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800448 netdev->netdev_ops = &ixgb_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 ixgb_set_ethtool_ops(netdev);
Auke Kok9b8118d2006-05-23 10:35:04 -0700450 netdev->watchdog_timeo = 5 * HZ;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700451 netif_napi_add(netdev, &adapter->napi, ixgb_clean, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Auke Kok0eb5a342006-09-27 12:53:17 -0700453 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 adapter->bd_number = cards_found;
456 adapter->link_speed = 0;
457 adapter->link_duplex = 0;
458
459 /* setup the private structure */
460
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700461 err = ixgb_sw_init(adapter);
462 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 goto err_sw_init;
464
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000465 netdev->hw_features = NETIF_F_SG |
466 NETIF_F_TSO |
467 NETIF_F_HW_CSUM;
468 netdev->features = netdev->hw_features |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 NETIF_F_HW_VLAN_TX |
470 NETIF_F_HW_VLAN_RX |
471 NETIF_F_HW_VLAN_FILTER;
Michał Mirosławd7ccb8c2011-06-08 08:39:40 +0000472 netdev->hw_features |= NETIF_F_RXCSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Yi Zou7b872a52010-09-22 17:57:58 +0000474 if (pci_using_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +0000476 netdev->vlan_features |= NETIF_F_HIGHDMA;
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 /* make sure the EEPROM is good */
480
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700481 if (!ixgb_validate_eeprom_checksum(&adapter->hw)) {
Joe Perches6909c662010-02-15 08:34:20 +0000482 netif_err(adapter, probe, adapter->netdev,
483 "The EEPROM Checksum Is Not Valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 err = -EIO;
485 goto err_eeprom;
486 }
487
488 ixgb_get_ee_mac_addr(&adapter->hw, netdev->dev_addr);
John W. Linvilledf859c52005-09-12 10:48:56 -0400489 memcpy(netdev->perm_addr, netdev->dev_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700491 if (!is_valid_ether_addr(netdev->perm_addr)) {
Joe Perches6909c662010-02-15 08:34:20 +0000492 netif_err(adapter, probe, adapter->netdev, "Invalid MAC Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 err = -EIO;
494 goto err_eeprom;
495 }
496
497 adapter->part_num = ixgb_get_ee_pba_number(&adapter->hw);
498
499 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +0000500 adapter->watchdog_timer.function = ixgb_watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 adapter->watchdog_timer.data = (unsigned long)adapter;
502
David Howellsc4028952006-11-22 14:57:56 +0000503 INIT_WORK(&adapter->tx_timeout_task, ixgb_tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Auke Kokec9c3f52006-05-23 10:34:59 -0700505 strcpy(netdev->name, "eth%d");
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700506 err = register_netdev(netdev);
507 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 goto err_register;
509
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000510 /* carrier off reporting is important to ethtool even BEFORE open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Joe Perches6909c662010-02-15 08:34:20 +0000513 netif_info(adapter, probe, adapter->netdev,
514 "Intel(R) PRO/10GbE Network Connection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 ixgb_check_options(adapter);
516 /* reset the hardware with the new settings */
517
518 ixgb_reset(adapter);
519
520 cards_found++;
521 return 0;
522
523err_register:
524err_sw_init:
525err_eeprom:
526 iounmap(adapter->hw.hw_addr);
527err_ioremap:
528 free_netdev(netdev);
529err_alloc_etherdev:
530 pci_release_regions(pdev);
Andreas Schwabc91e4682006-03-28 18:10:38 +0200531err_request_regions:
532err_dma_mask:
533 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return err;
535}
536
537/**
538 * ixgb_remove - Device Removal Routine
539 * @pdev: PCI device information struct
540 *
541 * ixgb_remove is called by the PCI subsystem to alert the driver
542 * that it should release a PCI device. The could be caused by a
543 * Hot-Plug event, or because the driver is going to be removed from
544 * memory.
545 **/
546
547static void __devexit
548ixgb_remove(struct pci_dev *pdev)
549{
550 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700551 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Tejun Heo23f333a2010-12-12 16:45:14 +0100553 cancel_work_sync(&adapter->tx_timeout_task);
Jesse Brandeburg12579692008-07-08 15:51:47 -0700554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 unregister_netdev(netdev);
556
557 iounmap(adapter->hw.hw_addr);
558 pci_release_regions(pdev);
559
560 free_netdev(netdev);
Emil Tantilovec43a812010-10-28 00:59:49 +0000561 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
564/**
565 * ixgb_sw_init - Initialize general software structures (struct ixgb_adapter)
566 * @adapter: board private structure to initialize
567 *
568 * ixgb_sw_init initializes the Adapter private data structure.
569 * Fields are initialized based on PCI device information and
570 * OS network device settings (MTU size).
571 **/
572
573static int __devinit
574ixgb_sw_init(struct ixgb_adapter *adapter)
575{
576 struct ixgb_hw *hw = &adapter->hw;
577 struct net_device *netdev = adapter->netdev;
578 struct pci_dev *pdev = adapter->pdev;
579
580 /* PCI config space info */
581
582 hw->vendor_id = pdev->vendor;
583 hw->device_id = pdev->device;
584 hw->subsystem_vendor_id = pdev->subsystem_vendor;
585 hw->subsystem_id = pdev->subsystem_device;
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 hw->max_frame_size = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
Jesse Brandeburga3dc3da2008-07-08 15:51:22 -0700588 adapter->rx_buffer_len = hw->max_frame_size + 8; /* + 8 for errata */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Joe Perches6909c662010-02-15 08:34:20 +0000590 if ((hw->device_id == IXGB_DEVICE_ID_82597EX) ||
591 (hw->device_id == IXGB_DEVICE_ID_82597EX_CX4) ||
592 (hw->device_id == IXGB_DEVICE_ID_82597EX_LR) ||
593 (hw->device_id == IXGB_DEVICE_ID_82597EX_SR))
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700594 hw->mac_type = ixgb_82597;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 else {
596 /* should never have loaded on this device */
Joe Perches6909c662010-02-15 08:34:20 +0000597 netif_err(adapter, probe, adapter->netdev, "unsupported device id\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599
600 /* enable flow control to be programmed */
601 hw->fc.send_xon = 1;
602
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700603 set_bit(__IXGB_DOWN, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return 0;
605}
606
607/**
608 * ixgb_open - Called when a network interface is made active
609 * @netdev: network interface device structure
610 *
611 * Returns 0 on success, negative value on failure
612 *
613 * The open entry point is called when a network interface is made
614 * active by the system (IFF_UP). At this point all resources needed
615 * for transmit and receive operations are allocated, the interrupt
616 * handler is registered with the OS, the watchdog timer is started,
617 * and the stack is notified that the interface is ready.
618 **/
619
620static int
621ixgb_open(struct net_device *netdev)
622{
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700623 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 int err;
625
626 /* allocate transmit descriptors */
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700627 err = ixgb_setup_tx_resources(adapter);
628 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 goto err_setup_tx;
630
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000631 netif_carrier_off(netdev);
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* allocate receive descriptors */
634
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700635 err = ixgb_setup_rx_resources(adapter);
636 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 goto err_setup_rx;
638
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700639 err = ixgb_up(adapter);
640 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 goto err_up;
642
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000643 netif_start_queue(netdev);
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return 0;
646
647err_up:
648 ixgb_free_rx_resources(adapter);
649err_setup_rx:
650 ixgb_free_tx_resources(adapter);
651err_setup_tx:
652 ixgb_reset(adapter);
653
654 return err;
655}
656
657/**
658 * ixgb_close - Disables a network interface
659 * @netdev: network interface device structure
660 *
661 * Returns 0, this is not allowed to fail
662 *
663 * The close entry point is called when an interface is de-activated
664 * by the OS. The hardware is still under the drivers control, but
665 * needs to be disabled. A global MAC reset is issued to stop the
666 * hardware, and all transmit and receive resources are freed.
667 **/
668
669static int
670ixgb_close(struct net_device *netdev)
671{
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700672 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Joe Perches446490c2008-03-21 11:06:37 -0700674 ixgb_down(adapter, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 ixgb_free_tx_resources(adapter);
677 ixgb_free_rx_resources(adapter);
678
679 return 0;
680}
681
682/**
683 * ixgb_setup_tx_resources - allocate Tx resources (Descriptors)
684 * @adapter: board private structure
685 *
686 * Return 0 on success, negative on failure
687 **/
688
689int
690ixgb_setup_tx_resources(struct ixgb_adapter *adapter)
691{
692 struct ixgb_desc_ring *txdr = &adapter->tx_ring;
693 struct pci_dev *pdev = adapter->pdev;
694 int size;
695
696 size = sizeof(struct ixgb_buffer) * txdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +0000697 txdr->buffer_info = vzalloc(size);
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700698 if (!txdr->buffer_info) {
Joe Perches6909c662010-02-15 08:34:20 +0000699 netif_err(adapter, probe, adapter->netdev,
700 "Unable to allocate transmit descriptor ring memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return -ENOMEM;
702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 /* round up to nearest 4K */
705
706 txdr->size = txdr->count * sizeof(struct ixgb_tx_desc);
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700707 txdr->size = ALIGN(txdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Nick Nunley47631f82010-04-27 13:10:03 +0000709 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
710 GFP_KERNEL);
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700711 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 vfree(txdr->buffer_info);
Joe Perches6909c662010-02-15 08:34:20 +0000713 netif_err(adapter, probe, adapter->netdev,
714 "Unable to allocate transmit descriptor memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return -ENOMEM;
716 }
717 memset(txdr->desc, 0, txdr->size);
718
719 txdr->next_to_use = 0;
720 txdr->next_to_clean = 0;
721
722 return 0;
723}
724
725/**
726 * ixgb_configure_tx - Configure 82597 Transmit Unit after Reset.
727 * @adapter: board private structure
728 *
729 * Configure the Tx unit of the MAC after a reset.
730 **/
731
732static void
733ixgb_configure_tx(struct ixgb_adapter *adapter)
734{
Joe Perches222441a2008-04-03 10:06:25 -0700735 u64 tdba = adapter->tx_ring.dma;
736 u32 tdlen = adapter->tx_ring.count * sizeof(struct ixgb_tx_desc);
737 u32 tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 struct ixgb_hw *hw = &adapter->hw;
739
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700740 /* Setup the Base and Length of the Tx Descriptor Ring
741 * tx_ring.dma can be either a 32 or 64 bit value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 */
743
744 IXGB_WRITE_REG(hw, TDBAL, (tdba & 0x00000000ffffffffULL));
745 IXGB_WRITE_REG(hw, TDBAH, (tdba >> 32));
746
747 IXGB_WRITE_REG(hw, TDLEN, tdlen);
748
749 /* Setup the HW Tx Head and Tail descriptor pointers */
750
751 IXGB_WRITE_REG(hw, TDH, 0);
752 IXGB_WRITE_REG(hw, TDT, 0);
753
754 /* don't set up txdctl, it induces performance problems if configured
755 * incorrectly */
756 /* Set the Tx Interrupt Delay register */
757
758 IXGB_WRITE_REG(hw, TIDV, adapter->tx_int_delay);
759
760 /* Program the Transmit Control Register */
761
762 tctl = IXGB_TCTL_TCE | IXGB_TCTL_TXEN | IXGB_TCTL_TPDE;
763 IXGB_WRITE_REG(hw, TCTL, tctl);
764
765 /* Setup Transmit Descriptor Settings for this adapter */
766 adapter->tx_cmd_type =
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700767 IXGB_TX_DESC_TYPE |
768 (adapter->tx_int_delay_enable ? IXGB_TX_DESC_CMD_IDE : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
771/**
772 * ixgb_setup_rx_resources - allocate Rx resources (Descriptors)
773 * @adapter: board private structure
774 *
775 * Returns 0 on success, negative on failure
776 **/
777
778int
779ixgb_setup_rx_resources(struct ixgb_adapter *adapter)
780{
781 struct ixgb_desc_ring *rxdr = &adapter->rx_ring;
782 struct pci_dev *pdev = adapter->pdev;
783 int size;
784
785 size = sizeof(struct ixgb_buffer) * rxdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +0000786 rxdr->buffer_info = vzalloc(size);
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700787 if (!rxdr->buffer_info) {
Joe Perches6909c662010-02-15 08:34:20 +0000788 netif_err(adapter, probe, adapter->netdev,
789 "Unable to allocate receive descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return -ENOMEM;
791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 /* Round up to nearest 4K */
794
795 rxdr->size = rxdr->count * sizeof(struct ixgb_rx_desc);
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700796 rxdr->size = ALIGN(rxdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Nick Nunley47631f82010-04-27 13:10:03 +0000798 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
799 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700801 if (!rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 vfree(rxdr->buffer_info);
Joe Perches6909c662010-02-15 08:34:20 +0000803 netif_err(adapter, probe, adapter->netdev,
804 "Unable to allocate receive descriptors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return -ENOMEM;
806 }
807 memset(rxdr->desc, 0, rxdr->size);
808
809 rxdr->next_to_clean = 0;
810 rxdr->next_to_use = 0;
811
812 return 0;
813}
814
815/**
816 * ixgb_setup_rctl - configure the receive control register
817 * @adapter: Board private structure
818 **/
819
820static void
821ixgb_setup_rctl(struct ixgb_adapter *adapter)
822{
Joe Perches222441a2008-04-03 10:06:25 -0700823 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 rctl = IXGB_READ_REG(&adapter->hw, RCTL);
826
827 rctl &= ~(3 << IXGB_RCTL_MO_SHIFT);
828
829 rctl |=
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700830 IXGB_RCTL_BAM | IXGB_RCTL_RDMTS_1_2 |
831 IXGB_RCTL_RXEN | IXGB_RCTL_CFF |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 (adapter->hw.mc_filter_type << IXGB_RCTL_MO_SHIFT);
833
834 rctl |= IXGB_RCTL_SECRC;
835
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700836 if (adapter->rx_buffer_len <= IXGB_RXBUFFER_2048)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 rctl |= IXGB_RCTL_BSIZE_2048;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700838 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 rctl |= IXGB_RCTL_BSIZE_4096;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700840 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_8192)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 rctl |= IXGB_RCTL_BSIZE_8192;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700842 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_16384)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 rctl |= IXGB_RCTL_BSIZE_16384;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 IXGB_WRITE_REG(&adapter->hw, RCTL, rctl);
846}
847
848/**
849 * ixgb_configure_rx - Configure 82597 Receive Unit after Reset.
850 * @adapter: board private structure
851 *
852 * Configure the Rx unit of the MAC after a reset.
853 **/
854
855static void
856ixgb_configure_rx(struct ixgb_adapter *adapter)
857{
Joe Perches222441a2008-04-03 10:06:25 -0700858 u64 rdba = adapter->rx_ring.dma;
859 u32 rdlen = adapter->rx_ring.count * sizeof(struct ixgb_rx_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 struct ixgb_hw *hw = &adapter->hw;
Joe Perches222441a2008-04-03 10:06:25 -0700861 u32 rctl;
862 u32 rxcsum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864 /* make sure receives are disabled while setting up the descriptors */
865
866 rctl = IXGB_READ_REG(hw, RCTL);
867 IXGB_WRITE_REG(hw, RCTL, rctl & ~IXGB_RCTL_RXEN);
868
869 /* set the Receive Delay Timer Register */
870
871 IXGB_WRITE_REG(hw, RDTR, adapter->rx_int_delay);
872
873 /* Setup the Base and Length of the Rx Descriptor Ring */
874
875 IXGB_WRITE_REG(hw, RDBAL, (rdba & 0x00000000ffffffffULL));
876 IXGB_WRITE_REG(hw, RDBAH, (rdba >> 32));
877
878 IXGB_WRITE_REG(hw, RDLEN, rdlen);
879
880 /* Setup the HW Rx Head and Tail Descriptor Pointers */
881 IXGB_WRITE_REG(hw, RDH, 0);
882 IXGB_WRITE_REG(hw, RDT, 0);
883
Jesse Brandeburg43603862008-07-08 15:51:17 -0700884 /* due to the hardware errata with RXDCTL, we are unable to use any of
885 * the performance enhancing features of it without causing other
886 * subtle bugs, some of the bugs could include receive length
887 * corruption at high data rates (WTHRESH > 0) and/or receive
888 * descriptor ring irregularites (particularly in hardware cache) */
889 IXGB_WRITE_REG(hw, RXDCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 /* Enable Receive Checksum Offload for TCP and UDP */
Joe Perches446490c2008-03-21 11:06:37 -0700892 if (adapter->rx_csum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 rxcsum = IXGB_READ_REG(hw, RXCSUM);
894 rxcsum |= IXGB_RXCSUM_TUOFL;
895 IXGB_WRITE_REG(hw, RXCSUM, rxcsum);
896 }
897
898 /* Enable Receives */
899
900 IXGB_WRITE_REG(hw, RCTL, rctl);
901}
902
903/**
904 * ixgb_free_tx_resources - Free Tx Resources
905 * @adapter: board private structure
906 *
907 * Free all transmit software resources
908 **/
909
910void
911ixgb_free_tx_resources(struct ixgb_adapter *adapter)
912{
913 struct pci_dev *pdev = adapter->pdev;
914
915 ixgb_clean_tx_ring(adapter);
916
917 vfree(adapter->tx_ring.buffer_info);
918 adapter->tx_ring.buffer_info = NULL;
919
Nick Nunley47631f82010-04-27 13:10:03 +0000920 dma_free_coherent(&pdev->dev, adapter->tx_ring.size,
921 adapter->tx_ring.desc, adapter->tx_ring.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 adapter->tx_ring.desc = NULL;
924}
925
Auke Kok235949d2006-05-26 09:35:52 -0700926static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927ixgb_unmap_and_free_tx_resource(struct ixgb_adapter *adapter,
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700928 struct ixgb_buffer *buffer_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Alexander Duyckadeaa902009-12-02 16:46:31 +0000930 if (buffer_info->dma) {
931 if (buffer_info->mapped_as_page)
Nick Nunley47631f82010-04-27 13:10:03 +0000932 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
933 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyckadeaa902009-12-02 16:46:31 +0000934 else
Nick Nunley47631f82010-04-27 13:10:03 +0000935 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
936 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyckadeaa902009-12-02 16:46:31 +0000937 buffer_info->dma = 0;
938 }
939
Alexander Duyckfe52eeb2009-03-19 01:15:21 +0000940 if (buffer_info->skb) {
Alexander Duyckfe52eeb2009-03-19 01:15:21 +0000941 dev_kfree_skb_any(buffer_info->skb);
942 buffer_info->skb = NULL;
943 }
Auke Kok1dfdd7d2006-05-25 13:24:17 -0700944 buffer_info->time_stamp = 0;
945 /* these fields must always be initialized in tx
946 * buffer_info->length = 0;
947 * buffer_info->next_to_watch = 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
950/**
951 * ixgb_clean_tx_ring - Free Tx Buffers
952 * @adapter: board private structure
953 **/
954
955static void
956ixgb_clean_tx_ring(struct ixgb_adapter *adapter)
957{
958 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
959 struct ixgb_buffer *buffer_info;
960 unsigned long size;
961 unsigned int i;
962
963 /* Free all the Tx ring sk_buffs */
964
Jesse Brandeburg14593362008-07-08 15:52:33 -0700965 for (i = 0; i < tx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 buffer_info = &tx_ring->buffer_info[i];
967 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
968 }
969
970 size = sizeof(struct ixgb_buffer) * tx_ring->count;
971 memset(tx_ring->buffer_info, 0, size);
972
973 /* Zero out the descriptor ring */
974
975 memset(tx_ring->desc, 0, tx_ring->size);
976
977 tx_ring->next_to_use = 0;
978 tx_ring->next_to_clean = 0;
979
980 IXGB_WRITE_REG(&adapter->hw, TDH, 0);
981 IXGB_WRITE_REG(&adapter->hw, TDT, 0);
982}
983
984/**
985 * ixgb_free_rx_resources - Free Rx Resources
986 * @adapter: board private structure
987 *
988 * Free all receive software resources
989 **/
990
991void
992ixgb_free_rx_resources(struct ixgb_adapter *adapter)
993{
994 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
995 struct pci_dev *pdev = adapter->pdev;
996
997 ixgb_clean_rx_ring(adapter);
998
999 vfree(rx_ring->buffer_info);
1000 rx_ring->buffer_info = NULL;
1001
Nick Nunley47631f82010-04-27 13:10:03 +00001002 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
1003 rx_ring->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 rx_ring->desc = NULL;
1006}
1007
1008/**
1009 * ixgb_clean_rx_ring - Free Rx Buffers
1010 * @adapter: board private structure
1011 **/
1012
1013static void
1014ixgb_clean_rx_ring(struct ixgb_adapter *adapter)
1015{
1016 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
1017 struct ixgb_buffer *buffer_info;
1018 struct pci_dev *pdev = adapter->pdev;
1019 unsigned long size;
1020 unsigned int i;
1021
1022 /* Free all the Rx ring sk_buffs */
1023
Jesse Brandeburg14593362008-07-08 15:52:33 -07001024 for (i = 0; i < rx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 buffer_info = &rx_ring->buffer_info[i];
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001026 if (buffer_info->dma) {
Nick Nunley47631f82010-04-27 13:10:03 +00001027 dma_unmap_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 buffer_info->dma,
1029 buffer_info->length,
Nick Nunley47631f82010-04-27 13:10:03 +00001030 DMA_FROM_DEVICE);
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001031 buffer_info->dma = 0;
1032 buffer_info->length = 0;
1033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001035 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 dev_kfree_skb(buffer_info->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 buffer_info->skb = NULL;
1038 }
1039 }
1040
1041 size = sizeof(struct ixgb_buffer) * rx_ring->count;
1042 memset(rx_ring->buffer_info, 0, size);
1043
1044 /* Zero out the descriptor ring */
1045
1046 memset(rx_ring->desc, 0, rx_ring->size);
1047
1048 rx_ring->next_to_clean = 0;
1049 rx_ring->next_to_use = 0;
1050
1051 IXGB_WRITE_REG(&adapter->hw, RDH, 0);
1052 IXGB_WRITE_REG(&adapter->hw, RDT, 0);
1053}
1054
1055/**
1056 * ixgb_set_mac - Change the Ethernet Address of the NIC
1057 * @netdev: network interface device structure
1058 * @p: pointer to an address structure
1059 *
1060 * Returns 0 on success, negative on failure
1061 **/
1062
1063static int
1064ixgb_set_mac(struct net_device *netdev, void *p)
1065{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001066 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 struct sockaddr *addr = p;
1068
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001069 if (!is_valid_ether_addr(addr->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 return -EADDRNOTAVAIL;
1071
1072 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1073
1074 ixgb_rar_set(&adapter->hw, addr->sa_data, 0);
1075
1076 return 0;
1077}
1078
1079/**
1080 * ixgb_set_multi - Multicast and Promiscuous mode set
1081 * @netdev: network interface device structure
1082 *
1083 * The set_multi entry point is called whenever the multicast address
1084 * list or the network interface flags are updated. This routine is
1085 * responsible for configuring the hardware for proper multicast,
1086 * promiscuous mode, and all-multi behavior.
1087 **/
1088
1089static void
1090ixgb_set_multi(struct net_device *netdev)
1091{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001092 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 struct ixgb_hw *hw = &adapter->hw;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001094 struct netdev_hw_addr *ha;
Joe Perches222441a2008-04-03 10:06:25 -07001095 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 int i;
1097
1098 /* Check for Promiscuous and All Multicast modes */
1099
1100 rctl = IXGB_READ_REG(hw, RCTL);
1101
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001102 if (netdev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 rctl |= (IXGB_RCTL_UPE | IXGB_RCTL_MPE);
Emil Tantilovae544962010-12-04 05:35:17 +00001104 /* disable VLAN filtering */
1105 rctl &= ~IXGB_RCTL_CFIEN;
Patrick McHardy746b9f02008-07-16 20:15:45 -07001106 rctl &= ~IXGB_RCTL_VFE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07001108 if (netdev->flags & IFF_ALLMULTI) {
1109 rctl |= IXGB_RCTL_MPE;
1110 rctl &= ~IXGB_RCTL_UPE;
1111 } else {
1112 rctl &= ~(IXGB_RCTL_UPE | IXGB_RCTL_MPE);
1113 }
Emil Tantilovae544962010-12-04 05:35:17 +00001114 /* enable VLAN filtering */
Patrick McHardy78ed11a2008-07-16 20:16:14 -07001115 rctl |= IXGB_RCTL_VFE;
Emil Tantilovae544962010-12-04 05:35:17 +00001116 rctl &= ~IXGB_RCTL_CFIEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
1118
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001119 if (netdev_mc_count(netdev) > IXGB_MAX_NUM_MULTICAST_ADDRESSES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 rctl |= IXGB_RCTL_MPE;
1121 IXGB_WRITE_REG(hw, RCTL, rctl);
1122 } else {
Joe Perches222441a2008-04-03 10:06:25 -07001123 u8 mta[IXGB_MAX_NUM_MULTICAST_ADDRESSES *
Stephen Hemminger273dc742007-10-29 10:46:13 -07001124 IXGB_ETH_LENGTH_OF_ADDRESS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 IXGB_WRITE_REG(hw, RCTL, rctl);
1127
Jiri Pirko48e2f182010-02-22 09:22:26 +00001128 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001129 netdev_for_each_mc_addr(ha, netdev)
Jiri Pirko48e2f182010-02-22 09:22:26 +00001130 memcpy(&mta[i++ * IXGB_ETH_LENGTH_OF_ADDRESS],
Jiri Pirko22bedad32010-04-01 21:22:57 +00001131 ha->addr, IXGB_ETH_LENGTH_OF_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001133 ixgb_mc_addr_list_update(hw, mta, netdev_mc_count(netdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 }
Emil Tantilovae544962010-12-04 05:35:17 +00001135
1136 if (netdev->features & NETIF_F_HW_VLAN_RX)
1137 ixgb_vlan_strip_enable(adapter);
1138 else
1139 ixgb_vlan_strip_disable(adapter);
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
1143/**
1144 * ixgb_watchdog - Timer Call-back
1145 * @data: pointer to netdev cast into an unsigned long
1146 **/
1147
1148static void
1149ixgb_watchdog(unsigned long data)
1150{
1151 struct ixgb_adapter *adapter = (struct ixgb_adapter *)data;
1152 struct net_device *netdev = adapter->netdev;
1153 struct ixgb_desc_ring *txdr = &adapter->tx_ring;
1154
1155 ixgb_check_for_link(&adapter->hw);
1156
1157 if (ixgb_check_for_bad_link(&adapter->hw)) {
1158 /* force the reset path */
1159 netif_stop_queue(netdev);
1160 }
1161
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001162 if (adapter->hw.link_up) {
1163 if (!netif_carrier_ok(netdev)) {
Joe Perchesd328bc82010-04-27 00:50:58 +00001164 netdev_info(netdev,
1165 "NIC Link is Up 10 Gbps Full Duplex, Flow Control: %s\n",
1166 (adapter->hw.fc.type == ixgb_fc_full) ?
1167 "RX/TX" :
1168 (adapter->hw.fc.type == ixgb_fc_rx_pause) ?
1169 "RX" :
1170 (adapter->hw.fc.type == ixgb_fc_tx_pause) ?
1171 "TX" : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 adapter->link_speed = 10000;
1173 adapter->link_duplex = FULL_DUPLEX;
1174 netif_carrier_on(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
1176 } else {
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001177 if (netif_carrier_ok(netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 adapter->link_speed = 0;
1179 adapter->link_duplex = 0;
Joe Perchesd328bc82010-04-27 00:50:58 +00001180 netdev_info(netdev, "NIC Link is Down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183 }
1184
1185 ixgb_update_stats(adapter);
1186
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001187 if (!netif_carrier_ok(netdev)) {
1188 if (IXGB_DESC_UNUSED(txdr) + 1 < txdr->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /* We've lost link, so the controller stops DMA,
1190 * but we've got queued Tx work that's never going
1191 * to get done, so reset controller to flush Tx.
1192 * (Do the reset outside of interrupt context). */
1193 schedule_work(&adapter->tx_timeout_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00001194 /* return immediately since reset is imminent */
1195 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
1197 }
1198
1199 /* Force detection of hung controller every watchdog period */
Joe Perches446490c2008-03-21 11:06:37 -07001200 adapter->detect_tx_hung = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 /* generate an interrupt to force clean up of any stragglers */
1203 IXGB_WRITE_REG(&adapter->hw, ICS, IXGB_INT_TXDW);
1204
1205 /* Reset the timer */
1206 mod_timer(&adapter->watchdog_timer, jiffies + 2 * HZ);
1207}
1208
1209#define IXGB_TX_FLAGS_CSUM 0x00000001
1210#define IXGB_TX_FLAGS_VLAN 0x00000002
1211#define IXGB_TX_FLAGS_TSO 0x00000004
1212
Auke Kok235949d2006-05-26 09:35:52 -07001213static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214ixgb_tso(struct ixgb_adapter *adapter, struct sk_buff *skb)
1215{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 struct ixgb_context_desc *context_desc;
1217 unsigned int i;
Joe Perches222441a2008-04-03 10:06:25 -07001218 u8 ipcss, ipcso, tucss, tucso, hdr_len;
1219 u16 ipcse, tucse, mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 int err;
1221
Herbert Xu89114af2006-07-08 13:34:32 -07001222 if (likely(skb_is_gso(skb))) {
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001223 struct ixgb_buffer *buffer_info;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001224 struct iphdr *iph;
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (skb_header_cloned(skb)) {
1227 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1228 if (err)
1229 return err;
1230 }
1231
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07001232 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Herbert Xu79671682006-06-22 02:40:14 -07001233 mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001234 iph = ip_hdr(skb);
1235 iph->tot_len = 0;
1236 iph->check = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001237 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
1238 iph->daddr, 0,
1239 IPPROTO_TCP, 0);
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001240 ipcss = skb_network_offset(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001241 ipcso = (void *)&(iph->check) - (void *)skb->data;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07001242 ipcse = skb_transport_offset(skb) - 1;
1243 tucss = skb_transport_offset(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001244 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 tucse = 0;
1246
1247 i = adapter->tx_ring.next_to_use;
1248 context_desc = IXGB_CONTEXT_DESC(adapter->tx_ring, i);
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001249 buffer_info = &adapter->tx_ring.buffer_info[i];
1250 WARN_ON(buffer_info->dma != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 context_desc->ipcss = ipcss;
1253 context_desc->ipcso = ipcso;
1254 context_desc->ipcse = cpu_to_le16(ipcse);
1255 context_desc->tucss = tucss;
1256 context_desc->tucso = tucso;
1257 context_desc->tucse = cpu_to_le16(tucse);
1258 context_desc->mss = cpu_to_le16(mss);
1259 context_desc->hdr_len = hdr_len;
1260 context_desc->status = 0;
1261 context_desc->cmd_type_len = cpu_to_le32(
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001262 IXGB_CONTEXT_DESC_TYPE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 | IXGB_CONTEXT_DESC_CMD_TSE
1264 | IXGB_CONTEXT_DESC_CMD_IP
1265 | IXGB_CONTEXT_DESC_CMD_TCP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 | IXGB_CONTEXT_DESC_CMD_IDE
1267 | (skb->len - (hdr_len)));
1268
Malli Chilakala06c2f9e2005-04-28 18:46:51 -07001269
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001270 if (++i == adapter->tx_ring.count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 adapter->tx_ring.next_to_use = i;
1272
1273 return 1;
1274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 return 0;
1277}
1278
Joe Perches446490c2008-03-21 11:06:37 -07001279static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280ixgb_tx_csum(struct ixgb_adapter *adapter, struct sk_buff *skb)
1281{
1282 struct ixgb_context_desc *context_desc;
1283 unsigned int i;
Joe Perches222441a2008-04-03 10:06:25 -07001284 u8 css, cso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001286 if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001287 struct ixgb_buffer *buffer_info;
Michał Mirosław0d0b1672010-12-14 15:24:08 +00001288 css = skb_checksum_start_offset(skb);
Al Viroff1dcad2006-11-20 18:07:29 -08001289 cso = css + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 i = adapter->tx_ring.next_to_use;
1292 context_desc = IXGB_CONTEXT_DESC(adapter->tx_ring, i);
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001293 buffer_info = &adapter->tx_ring.buffer_info[i];
1294 WARN_ON(buffer_info->dma != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 context_desc->tucss = css;
1297 context_desc->tucso = cso;
1298 context_desc->tucse = 0;
1299 /* zero out any previously existing data in one instruction */
Joe Perches222441a2008-04-03 10:06:25 -07001300 *(u32 *)&(context_desc->ipcss) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 context_desc->status = 0;
1302 context_desc->hdr_len = 0;
1303 context_desc->mss = 0;
1304 context_desc->cmd_type_len =
1305 cpu_to_le32(IXGB_CONTEXT_DESC_TYPE
Malli Chilakala06c2f9e2005-04-28 18:46:51 -07001306 | IXGB_TX_DESC_CMD_IDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001308 if (++i == adapter->tx_ring.count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 adapter->tx_ring.next_to_use = i;
1310
Joe Perches446490c2008-03-21 11:06:37 -07001311 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 }
1313
Joe Perches446490c2008-03-21 11:06:37 -07001314 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
1317#define IXGB_MAX_TXD_PWR 14
1318#define IXGB_MAX_DATA_PER_TXD (1<<IXGB_MAX_TXD_PWR)
1319
Auke Kok235949d2006-05-26 09:35:52 -07001320static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321ixgb_tx_map(struct ixgb_adapter *adapter, struct sk_buff *skb,
1322 unsigned int first)
1323{
1324 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001325 struct pci_dev *pdev = adapter->pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 struct ixgb_buffer *buffer_info;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001327 int len = skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 unsigned int offset = 0, size, count = 0, i;
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001329 unsigned int mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
1331 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 i = tx_ring->next_to_use;
1334
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001335 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 buffer_info = &tx_ring->buffer_info[i];
Auke Kok709cf012006-07-10 08:51:43 -07001337 size = min(len, IXGB_MAX_DATA_PER_TXD);
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001338 /* Workaround for premature desc write-backs
1339 * in TSO mode. Append 4-byte sentinel desc */
1340 if (unlikely(mss && !nr_frags && size == len && size > 8))
1341 size -= 4;
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 buffer_info->length = size;
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001344 WARN_ON(buffer_info->dma != 0);
Jesse Brandeburg34336632008-07-08 15:51:37 -07001345 buffer_info->time_stamp = jiffies;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001346 buffer_info->mapped_as_page = false;
Nick Nunley47631f82010-04-27 13:10:03 +00001347 buffer_info->dma = dma_map_single(&pdev->dev,
1348 skb->data + offset,
1349 size, DMA_TO_DEVICE);
1350 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyckadeaa902009-12-02 16:46:31 +00001351 goto dma_error;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001352 buffer_info->next_to_watch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 len -= size;
1355 offset += size;
1356 count++;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001357 if (len) {
1358 i++;
1359 if (i == tx_ring->count)
1360 i = 0;
1361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
1363
Jesse Brandeburg14593362008-07-08 15:52:33 -07001364 for (f = 0; f < nr_frags; f++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 struct skb_frag_struct *frag;
1366
1367 frag = &skb_shinfo(skb)->frags[f];
1368 len = frag->size;
Ian Campbell877749b2011-08-29 23:18:26 +00001369 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001371 while (len) {
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001372 i++;
1373 if (i == tx_ring->count)
1374 i = 0;
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 buffer_info = &tx_ring->buffer_info[i];
Auke Kok709cf012006-07-10 08:51:43 -07001377 size = min(len, IXGB_MAX_DATA_PER_TXD);
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001378
1379 /* Workaround for premature desc write-backs
1380 * in TSO mode. Append 4-byte sentinel desc */
Auke Kok19abe862007-10-30 11:21:50 -07001381 if (unlikely(mss && (f == (nr_frags - 1))
1382 && size == len && size > 8))
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001383 size -= 4;
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 buffer_info->length = size;
Jesse Brandeburg34336632008-07-08 15:51:37 -07001386 buffer_info->time_stamp = jiffies;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001387 buffer_info->mapped_as_page = true;
1388 buffer_info->dma =
Ian Campbell877749b2011-08-29 23:18:26 +00001389 skb_frag_dma_map(&pdev->dev, frag, offset, size,
1390 DMA_TO_DEVICE);
Nick Nunley47631f82010-04-27 13:10:03 +00001391 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyckadeaa902009-12-02 16:46:31 +00001392 goto dma_error;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001393 buffer_info->next_to_watch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 len -= size;
1396 offset += size;
1397 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 tx_ring->buffer_info[i].skb = skb;
1401 tx_ring->buffer_info[first].next_to_watch = i;
1402
1403 return count;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001404
1405dma_error:
1406 dev_err(&pdev->dev, "TX DMA map failed\n");
1407 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001408 if (count)
Alexander Duyckadeaa902009-12-02 16:46:31 +00001409 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001410
1411 while (count--) {
1412 if (i==0)
Alexander Duyckadeaa902009-12-02 16:46:31 +00001413 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001414 i--;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001415 buffer_info = &tx_ring->buffer_info[i];
1416 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
1417 }
1418
1419 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
Auke Kok235949d2006-05-26 09:35:52 -07001422static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423ixgb_tx_queue(struct ixgb_adapter *adapter, int count, int vlan_id,int tx_flags)
1424{
1425 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1426 struct ixgb_tx_desc *tx_desc = NULL;
1427 struct ixgb_buffer *buffer_info;
Joe Perches222441a2008-04-03 10:06:25 -07001428 u32 cmd_type_len = adapter->tx_cmd_type;
1429 u8 status = 0;
1430 u8 popts = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 unsigned int i;
1432
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001433 if (tx_flags & IXGB_TX_FLAGS_TSO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 cmd_type_len |= IXGB_TX_DESC_CMD_TSE;
1435 popts |= (IXGB_TX_DESC_POPTS_IXSM | IXGB_TX_DESC_POPTS_TXSM);
1436 }
1437
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001438 if (tx_flags & IXGB_TX_FLAGS_CSUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 popts |= IXGB_TX_DESC_POPTS_TXSM;
1440
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001441 if (tx_flags & IXGB_TX_FLAGS_VLAN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 cmd_type_len |= IXGB_TX_DESC_CMD_VLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
1444 i = tx_ring->next_to_use;
1445
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001446 while (count--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 buffer_info = &tx_ring->buffer_info[i];
1448 tx_desc = IXGB_TX_DESC(*tx_ring, i);
1449 tx_desc->buff_addr = cpu_to_le64(buffer_info->dma);
1450 tx_desc->cmd_type_len =
1451 cpu_to_le32(cmd_type_len | buffer_info->length);
1452 tx_desc->status = status;
1453 tx_desc->popts = popts;
1454 tx_desc->vlan = cpu_to_le16(vlan_id);
1455
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001456 if (++i == tx_ring->count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 }
1458
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001459 tx_desc->cmd_type_len |=
1460 cpu_to_le32(IXGB_TX_DESC_CMD_EOP | IXGB_TX_DESC_CMD_RS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 /* Force memory writes to complete before letting h/w
1463 * know there are new descriptors to fetch. (Only
1464 * applicable for weak-ordered memory model archs,
1465 * such as IA-64). */
1466 wmb();
1467
1468 tx_ring->next_to_use = i;
1469 IXGB_WRITE_REG(&adapter->hw, TDT, i);
1470}
1471
Jesse Brandeburgdfd341e2007-01-06 09:51:38 -08001472static int __ixgb_maybe_stop_tx(struct net_device *netdev, int size)
1473{
1474 struct ixgb_adapter *adapter = netdev_priv(netdev);
1475 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1476
1477 netif_stop_queue(netdev);
1478 /* Herbert's original patch had:
1479 * smp_mb__after_netif_stop_queue();
1480 * but since that doesn't exist yet, just open code it. */
1481 smp_mb();
1482
1483 /* We need to check again in a case another CPU has just
1484 * made room available. */
1485 if (likely(IXGB_DESC_UNUSED(tx_ring) < size))
1486 return -EBUSY;
1487
1488 /* A reprieve! */
1489 netif_start_queue(netdev);
1490 ++adapter->restart_queue;
1491 return 0;
1492}
1493
1494static int ixgb_maybe_stop_tx(struct net_device *netdev,
1495 struct ixgb_desc_ring *tx_ring, int size)
1496{
1497 if (likely(IXGB_DESC_UNUSED(tx_ring) >= size))
1498 return 0;
1499 return __ixgb_maybe_stop_tx(netdev, size);
1500}
1501
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503/* Tx Descriptors needed, worst case */
1504#define TXD_USE_COUNT(S) (((S) >> IXGB_MAX_TXD_PWR) + \
1505 (((S) & (IXGB_MAX_DATA_PER_TXD - 1)) ? 1 : 0))
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001506#define DESC_NEEDED TXD_USE_COUNT(IXGB_MAX_DATA_PER_TXD) /* skb->date */ + \
1507 MAX_SKB_FRAGS * TXD_USE_COUNT(PAGE_SIZE) + 1 /* for context */ \
1508 + 1 /* one more needed for sentinel TSO workaround */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Stephen Hemminger3b29a562009-08-31 19:50:55 +00001510static netdev_tx_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511ixgb_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
1512{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001513 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 unsigned int first;
1515 unsigned int tx_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 int vlan_id = 0;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001517 int count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 int tso;
1519
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07001520 if (test_bit(__IXGB_DOWN, &adapter->flags)) {
1521 dev_kfree_skb(skb);
1522 return NETDEV_TX_OK;
1523 }
1524
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001525 if (skb->len <= 0) {
Jesse Brandeburgc2199342008-07-08 15:52:53 -07001526 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001527 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529
Jesse Brandeburgdfd341e2007-01-06 09:51:38 -08001530 if (unlikely(ixgb_maybe_stop_tx(netdev, &adapter->tx_ring,
Jesse Brandeburgdb582942008-07-08 15:51:52 -07001531 DESC_NEEDED)))
Auke Kokf017f142006-05-23 10:29:53 -07001532 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Emil Tantilove2444d92011-01-27 09:14:18 +00001534 if (vlan_tx_tag_present(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 tx_flags |= IXGB_TX_FLAGS_VLAN;
1536 vlan_id = vlan_tx_tag_get(skb);
1537 }
1538
1539 first = adapter->tx_ring.next_to_use;
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 tso = ixgb_tso(adapter, skb);
1542 if (tso < 0) {
Jesse Brandeburgc2199342008-07-08 15:52:53 -07001543 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return NETDEV_TX_OK;
1545 }
1546
Auke Kok96f9c2e2006-05-23 10:29:41 -07001547 if (likely(tso))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 tx_flags |= IXGB_TX_FLAGS_TSO;
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001549 else if (ixgb_tx_csum(adapter, skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 tx_flags |= IXGB_TX_FLAGS_CSUM;
1551
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001552 count = ixgb_tx_map(adapter, skb, first);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001554 if (count) {
1555 ixgb_tx_queue(adapter, count, vlan_id, tx_flags);
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001556 /* Make sure there is space in the ring for the next send. */
1557 ixgb_maybe_stop_tx(netdev, &adapter->tx_ring, DESC_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001559 } else {
1560 dev_kfree_skb_any(skb);
1561 adapter->tx_ring.buffer_info[first].time_stamp = 0;
1562 adapter->tx_ring.next_to_use = first;
1563 }
Auke Kokf017f142006-05-23 10:29:53 -07001564
Auke Kokf017f142006-05-23 10:29:53 -07001565 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566}
1567
1568/**
1569 * ixgb_tx_timeout - Respond to a Tx Hang
1570 * @netdev: network interface device structure
1571 **/
1572
1573static void
1574ixgb_tx_timeout(struct net_device *netdev)
1575{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001576 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /* Do the reset outside of interrupt context */
1579 schedule_work(&adapter->tx_timeout_task);
1580}
1581
1582static void
David Howellsc4028952006-11-22 14:57:56 +00001583ixgb_tx_timeout_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
David Howellsc4028952006-11-22 14:57:56 +00001585 struct ixgb_adapter *adapter =
1586 container_of(work, struct ixgb_adapter, tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Auke Kok9b8118d2006-05-23 10:35:04 -07001588 adapter->tx_timeout_count++;
Joe Perches446490c2008-03-21 11:06:37 -07001589 ixgb_down(adapter, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 ixgb_up(adapter);
1591}
1592
1593/**
1594 * ixgb_get_stats - Get System Network Statistics
1595 * @netdev: network interface device structure
1596 *
1597 * Returns the address of the device statistics structure.
1598 * The statistics are actually updated from the timer callback.
1599 **/
1600
1601static struct net_device_stats *
1602ixgb_get_stats(struct net_device *netdev)
1603{
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001604 return &netdev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
1606
1607/**
1608 * ixgb_change_mtu - Change the Maximum Transfer Unit
1609 * @netdev: network interface device structure
1610 * @new_mtu: new value for maximum frame size
1611 *
1612 * Returns 0 on success, negative on failure
1613 **/
1614
1615static int
1616ixgb_change_mtu(struct net_device *netdev, int new_mtu)
1617{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001618 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 int max_frame = new_mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
1620 int old_max_frame = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
1621
Jesse Brandeburga65a6042008-07-08 15:51:32 -07001622 /* MTU < 68 is an error for IPv4 traffic, just don't allow it */
1623 if ((new_mtu < 68) ||
1624 (max_frame > IXGB_MAX_JUMBO_FRAME_SIZE + ENET_FCS_LENGTH)) {
Joe Perches6909c662010-02-15 08:34:20 +00001625 netif_err(adapter, probe, adapter->netdev,
1626 "Invalid MTU setting %d\n", new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 return -EINVAL;
1628 }
1629
Jesse Brandeburgb5ca88e2008-07-08 15:51:42 -07001630 if (old_max_frame == max_frame)
1631 return 0;
1632
1633 if (netif_running(netdev))
1634 ixgb_down(adapter, true);
1635
Jesse Brandeburga3dc3da2008-07-08 15:51:22 -07001636 adapter->rx_buffer_len = max_frame + 8; /* + 8 for errata */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 netdev->mtu = new_mtu;
1639
Jesse Brandeburgb5ca88e2008-07-08 15:51:42 -07001640 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 ixgb_up(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 return 0;
1644}
1645
1646/**
1647 * ixgb_update_stats - Update the board statistics counters.
1648 * @adapter: board private structure
1649 **/
1650
1651void
1652ixgb_update_stats(struct ixgb_adapter *adapter)
1653{
Malli Chilakala56336842005-04-28 18:45:50 -07001654 struct net_device *netdev = adapter->netdev;
Linas Vepstas01748fb2006-08-31 14:27:52 -07001655 struct pci_dev *pdev = adapter->pdev;
1656
1657 /* Prevent stats update while adapter is being reset */
Linas Vepstas81b19552006-12-12 18:29:15 -06001658 if (pci_channel_offline(pdev))
Linas Vepstas01748fb2006-08-31 14:27:52 -07001659 return;
Malli Chilakala56336842005-04-28 18:45:50 -07001660
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001661 if ((netdev->flags & IFF_PROMISC) || (netdev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001662 (netdev_mc_count(netdev) > IXGB_MAX_NUM_MULTICAST_ADDRESSES)) {
Malli Chilakala56336842005-04-28 18:45:50 -07001663 u64 multi = IXGB_READ_REG(&adapter->hw, MPRCL);
1664 u32 bcast_l = IXGB_READ_REG(&adapter->hw, BPRCL);
1665 u32 bcast_h = IXGB_READ_REG(&adapter->hw, BPRCH);
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001666 u64 bcast = ((u64)bcast_h << 32) | bcast_l;
Malli Chilakala56336842005-04-28 18:45:50 -07001667
1668 multi |= ((u64)IXGB_READ_REG(&adapter->hw, MPRCH) << 32);
1669 /* fix up multicast stats by removing broadcasts */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001670 if (multi >= bcast)
Malli Chilakala7b891782005-08-11 13:58:55 -07001671 multi -= bcast;
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001672
Malli Chilakala56336842005-04-28 18:45:50 -07001673 adapter->stats.mprcl += (multi & 0xFFFFFFFF);
1674 adapter->stats.mprch += (multi >> 32);
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001675 adapter->stats.bprcl += bcast_l;
Malli Chilakala56336842005-04-28 18:45:50 -07001676 adapter->stats.bprch += bcast_h;
1677 } else {
1678 adapter->stats.mprcl += IXGB_READ_REG(&adapter->hw, MPRCL);
1679 adapter->stats.mprch += IXGB_READ_REG(&adapter->hw, MPRCH);
1680 adapter->stats.bprcl += IXGB_READ_REG(&adapter->hw, BPRCL);
1681 adapter->stats.bprch += IXGB_READ_REG(&adapter->hw, BPRCH);
1682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 adapter->stats.tprl += IXGB_READ_REG(&adapter->hw, TPRL);
1684 adapter->stats.tprh += IXGB_READ_REG(&adapter->hw, TPRH);
1685 adapter->stats.gprcl += IXGB_READ_REG(&adapter->hw, GPRCL);
1686 adapter->stats.gprch += IXGB_READ_REG(&adapter->hw, GPRCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 adapter->stats.uprcl += IXGB_READ_REG(&adapter->hw, UPRCL);
1688 adapter->stats.uprch += IXGB_READ_REG(&adapter->hw, UPRCH);
1689 adapter->stats.vprcl += IXGB_READ_REG(&adapter->hw, VPRCL);
1690 adapter->stats.vprch += IXGB_READ_REG(&adapter->hw, VPRCH);
1691 adapter->stats.jprcl += IXGB_READ_REG(&adapter->hw, JPRCL);
1692 adapter->stats.jprch += IXGB_READ_REG(&adapter->hw, JPRCH);
1693 adapter->stats.gorcl += IXGB_READ_REG(&adapter->hw, GORCL);
1694 adapter->stats.gorch += IXGB_READ_REG(&adapter->hw, GORCH);
1695 adapter->stats.torl += IXGB_READ_REG(&adapter->hw, TORL);
1696 adapter->stats.torh += IXGB_READ_REG(&adapter->hw, TORH);
1697 adapter->stats.rnbc += IXGB_READ_REG(&adapter->hw, RNBC);
1698 adapter->stats.ruc += IXGB_READ_REG(&adapter->hw, RUC);
1699 adapter->stats.roc += IXGB_READ_REG(&adapter->hw, ROC);
1700 adapter->stats.rlec += IXGB_READ_REG(&adapter->hw, RLEC);
1701 adapter->stats.crcerrs += IXGB_READ_REG(&adapter->hw, CRCERRS);
1702 adapter->stats.icbc += IXGB_READ_REG(&adapter->hw, ICBC);
1703 adapter->stats.ecbc += IXGB_READ_REG(&adapter->hw, ECBC);
1704 adapter->stats.mpc += IXGB_READ_REG(&adapter->hw, MPC);
1705 adapter->stats.tptl += IXGB_READ_REG(&adapter->hw, TPTL);
1706 adapter->stats.tpth += IXGB_READ_REG(&adapter->hw, TPTH);
1707 adapter->stats.gptcl += IXGB_READ_REG(&adapter->hw, GPTCL);
1708 adapter->stats.gptch += IXGB_READ_REG(&adapter->hw, GPTCH);
1709 adapter->stats.bptcl += IXGB_READ_REG(&adapter->hw, BPTCL);
1710 adapter->stats.bptch += IXGB_READ_REG(&adapter->hw, BPTCH);
1711 adapter->stats.mptcl += IXGB_READ_REG(&adapter->hw, MPTCL);
1712 adapter->stats.mptch += IXGB_READ_REG(&adapter->hw, MPTCH);
1713 adapter->stats.uptcl += IXGB_READ_REG(&adapter->hw, UPTCL);
1714 adapter->stats.uptch += IXGB_READ_REG(&adapter->hw, UPTCH);
1715 adapter->stats.vptcl += IXGB_READ_REG(&adapter->hw, VPTCL);
1716 adapter->stats.vptch += IXGB_READ_REG(&adapter->hw, VPTCH);
1717 adapter->stats.jptcl += IXGB_READ_REG(&adapter->hw, JPTCL);
1718 adapter->stats.jptch += IXGB_READ_REG(&adapter->hw, JPTCH);
1719 adapter->stats.gotcl += IXGB_READ_REG(&adapter->hw, GOTCL);
1720 adapter->stats.gotch += IXGB_READ_REG(&adapter->hw, GOTCH);
1721 adapter->stats.totl += IXGB_READ_REG(&adapter->hw, TOTL);
1722 adapter->stats.toth += IXGB_READ_REG(&adapter->hw, TOTH);
1723 adapter->stats.dc += IXGB_READ_REG(&adapter->hw, DC);
1724 adapter->stats.plt64c += IXGB_READ_REG(&adapter->hw, PLT64C);
1725 adapter->stats.tsctc += IXGB_READ_REG(&adapter->hw, TSCTC);
1726 adapter->stats.tsctfc += IXGB_READ_REG(&adapter->hw, TSCTFC);
1727 adapter->stats.ibic += IXGB_READ_REG(&adapter->hw, IBIC);
1728 adapter->stats.rfc += IXGB_READ_REG(&adapter->hw, RFC);
1729 adapter->stats.lfc += IXGB_READ_REG(&adapter->hw, LFC);
1730 adapter->stats.pfrc += IXGB_READ_REG(&adapter->hw, PFRC);
1731 adapter->stats.pftc += IXGB_READ_REG(&adapter->hw, PFTC);
1732 adapter->stats.mcfrc += IXGB_READ_REG(&adapter->hw, MCFRC);
1733 adapter->stats.mcftc += IXGB_READ_REG(&adapter->hw, MCFTC);
1734 adapter->stats.xonrxc += IXGB_READ_REG(&adapter->hw, XONRXC);
1735 adapter->stats.xontxc += IXGB_READ_REG(&adapter->hw, XONTXC);
1736 adapter->stats.xoffrxc += IXGB_READ_REG(&adapter->hw, XOFFRXC);
1737 adapter->stats.xofftxc += IXGB_READ_REG(&adapter->hw, XOFFTXC);
1738 adapter->stats.rjc += IXGB_READ_REG(&adapter->hw, RJC);
1739
1740 /* Fill out the OS statistics structure */
1741
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001742 netdev->stats.rx_packets = adapter->stats.gprcl;
1743 netdev->stats.tx_packets = adapter->stats.gptcl;
1744 netdev->stats.rx_bytes = adapter->stats.gorcl;
1745 netdev->stats.tx_bytes = adapter->stats.gotcl;
1746 netdev->stats.multicast = adapter->stats.mprcl;
1747 netdev->stats.collisions = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749 /* ignore RLEC as it reports errors for padded (<64bytes) frames
1750 * with a length in the type/len field */
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001751 netdev->stats.rx_errors =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 /* adapter->stats.rnbc + */ adapter->stats.crcerrs +
1753 adapter->stats.ruc +
1754 adapter->stats.roc /*+ adapter->stats.rlec */ +
1755 adapter->stats.icbc +
1756 adapter->stats.ecbc + adapter->stats.mpc;
1757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 /* see above
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001759 * netdev->stats.rx_length_errors = adapter->stats.rlec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 */
1761
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001762 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
1763 netdev->stats.rx_fifo_errors = adapter->stats.mpc;
1764 netdev->stats.rx_missed_errors = adapter->stats.mpc;
1765 netdev->stats.rx_over_errors = adapter->stats.mpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001767 netdev->stats.tx_errors = 0;
1768 netdev->stats.rx_frame_errors = 0;
1769 netdev->stats.tx_aborted_errors = 0;
1770 netdev->stats.tx_carrier_errors = 0;
1771 netdev->stats.tx_fifo_errors = 0;
1772 netdev->stats.tx_heartbeat_errors = 0;
1773 netdev->stats.tx_window_errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774}
1775
1776#define IXGB_MAX_INTR 10
1777/**
1778 * ixgb_intr - Interrupt Handler
1779 * @irq: interrupt number
1780 * @data: pointer to a network interface device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 **/
1782
1783static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01001784ixgb_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785{
1786 struct net_device *netdev = data;
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001787 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 struct ixgb_hw *hw = &adapter->hw;
Joe Perches222441a2008-04-03 10:06:25 -07001789 u32 icr = IXGB_READ_REG(hw, ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001791 if (unlikely(!icr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 return IRQ_NONE; /* Not our interrupt */
1793
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07001794 if (unlikely(icr & (IXGB_INT_RXSEQ | IXGB_INT_LSC)))
1795 if (!test_bit(__IXGB_DOWN, &adapter->flags))
1796 mod_timer(&adapter->watchdog_timer, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Ben Hutchings288379f2009-01-19 16:43:59 -08001798 if (napi_schedule_prep(&adapter->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001800 /* Disable interrupts and register for poll. The flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 of the posted write is intentionally left out.
1802 */
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 IXGB_WRITE_REG(&adapter->hw, IMC, ~0);
Ben Hutchings288379f2009-01-19 16:43:59 -08001805 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 return IRQ_HANDLED;
1808}
1809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810/**
1811 * ixgb_clean - NAPI Rx polling callback
1812 * @adapter: board private structure
1813 **/
1814
1815static int
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001816ixgb_clean(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001818 struct ixgb_adapter *adapter = container_of(napi, struct ixgb_adapter, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 int work_done = 0;
1820
David S. Miller53e52c72008-01-07 21:06:12 -08001821 ixgb_clean_tx_irq(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001822 ixgb_clean_rx_irq(adapter, &work_done, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
David S. Miller53e52c72008-01-07 21:06:12 -08001824 /* If budget not fully consumed, exit the polling mode */
1825 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001826 napi_complete(napi);
Jesse Brandeburg72ab5192008-07-08 15:51:27 -07001827 if (!test_bit(__IXGB_DOWN, &adapter->flags))
1828 ixgb_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
1830
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001831 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834/**
1835 * ixgb_clean_tx_irq - Reclaim resources after transmit completes
1836 * @adapter: board private structure
1837 **/
1838
Joe Perches446490c2008-03-21 11:06:37 -07001839static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840ixgb_clean_tx_irq(struct ixgb_adapter *adapter)
1841{
1842 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1843 struct net_device *netdev = adapter->netdev;
1844 struct ixgb_tx_desc *tx_desc, *eop_desc;
1845 struct ixgb_buffer *buffer_info;
1846 unsigned int i, eop;
Joe Perches446490c2008-03-21 11:06:37 -07001847 bool cleaned = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
1849 i = tx_ring->next_to_clean;
1850 eop = tx_ring->buffer_info[i].next_to_watch;
1851 eop_desc = IXGB_TX_DESC(*tx_ring, eop);
1852
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001853 while (eop_desc->status & IXGB_TX_DESC_STATUS_DD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00001855 rmb(); /* read buffer_info after eop_desc */
Joe Perches446490c2008-03-21 11:06:37 -07001856 for (cleaned = false; !cleaned; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 tx_desc = IXGB_TX_DESC(*tx_ring, i);
1858 buffer_info = &tx_ring->buffer_info[i];
1859
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001860 if (tx_desc->popts &
1861 (IXGB_TX_DESC_POPTS_TXSM |
1862 IXGB_TX_DESC_POPTS_IXSM))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 adapter->hw_csum_tx_good++;
1864
1865 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
1866
Joe Perches222441a2008-04-03 10:06:25 -07001867 *(u32 *)&(tx_desc->status) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869 cleaned = (i == eop);
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001870 if (++i == tx_ring->count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872
1873 eop = tx_ring->buffer_info[i].next_to_watch;
1874 eop_desc = IXGB_TX_DESC(*tx_ring, eop);
1875 }
1876
1877 tx_ring->next_to_clean = i;
1878
Jesse Brandeburg0f8ecba2008-07-08 15:51:07 -07001879 if (unlikely(cleaned && netif_carrier_ok(netdev) &&
1880 IXGB_DESC_UNUSED(tx_ring) >= DESC_NEEDED)) {
1881 /* Make sure that anybody stopping the queue after this
1882 * sees the new next_to_clean. */
1883 smp_mb();
1884
1885 if (netif_queue_stopped(netdev) &&
1886 !(test_bit(__IXGB_DOWN, &adapter->flags))) {
Auke Kok3352a3b2006-05-26 09:35:47 -07001887 netif_wake_queue(netdev);
Jesse Brandeburg0f8ecba2008-07-08 15:51:07 -07001888 ++adapter->restart_queue;
1889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001892 if (adapter->detect_tx_hung) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 /* detect a transmit hang in hardware, this serializes the
1894 * check with the clearing of time_stamp and movement of i */
Joe Perches446490c2008-03-21 11:06:37 -07001895 adapter->detect_tx_hung = false;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001896 if (tx_ring->buffer_info[eop].time_stamp &&
Auke Kok9b8118d2006-05-23 10:35:04 -07001897 time_after(jiffies, tx_ring->buffer_info[eop].time_stamp + HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 && !(IXGB_READ_REG(&adapter->hw, STATUS) &
Auke Kok9b8118d2006-05-23 10:35:04 -07001899 IXGB_STATUS_TXOFF)) {
1900 /* detected Tx unit hang */
Joe Perches6909c662010-02-15 08:34:20 +00001901 netif_err(adapter, drv, adapter->netdev,
1902 "Detected Tx Unit Hang\n"
1903 " TDH <%x>\n"
1904 " TDT <%x>\n"
1905 " next_to_use <%x>\n"
1906 " next_to_clean <%x>\n"
1907 "buffer_info[next_to_clean]\n"
1908 " time_stamp <%lx>\n"
1909 " next_to_watch <%x>\n"
1910 " jiffies <%lx>\n"
1911 " next_to_watch.status <%x>\n",
1912 IXGB_READ_REG(&adapter->hw, TDH),
1913 IXGB_READ_REG(&adapter->hw, TDT),
1914 tx_ring->next_to_use,
1915 tx_ring->next_to_clean,
1916 tx_ring->buffer_info[eop].time_stamp,
1917 eop,
1918 jiffies,
1919 eop_desc->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 netif_stop_queue(netdev);
Auke Kok9b8118d2006-05-23 10:35:04 -07001921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
1923
1924 return cleaned;
1925}
1926
1927/**
1928 * ixgb_rx_checksum - Receive Checksum Offload for 82597.
1929 * @adapter: board private structure
1930 * @rx_desc: receive descriptor
1931 * @sk_buff: socket buffer with received data
1932 **/
1933
Auke Kok235949d2006-05-26 09:35:52 -07001934static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935ixgb_rx_checksum(struct ixgb_adapter *adapter,
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001936 struct ixgb_rx_desc *rx_desc,
1937 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{
1939 /* Ignore Checksum bit is set OR
1940 * TCP Checksum has not been calculated
1941 */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001942 if ((rx_desc->status & IXGB_RX_DESC_STATUS_IXSM) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 (!(rx_desc->status & IXGB_RX_DESC_STATUS_TCPCS))) {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001944 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 return;
1946 }
1947
1948 /* At this point we know the hardware did the TCP checksum */
1949 /* now look at the TCP checksum error bit */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001950 if (rx_desc->errors & IXGB_RX_DESC_ERRORS_TCPE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 /* let the stack verify checksum errors */
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001952 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 adapter->hw_csum_rx_error++;
1954 } else {
1955 /* TCP checksum is good */
1956 skb->ip_summed = CHECKSUM_UNNECESSARY;
1957 adapter->hw_csum_rx_good++;
1958 }
1959}
1960
Joe Perches57bf6ee2010-05-13 15:26:17 +00001961/*
1962 * this should improve performance for small packets with large amounts
1963 * of reassembly being done in the stack
1964 */
1965static void ixgb_check_copybreak(struct net_device *netdev,
1966 struct ixgb_buffer *buffer_info,
1967 u32 length, struct sk_buff **skb)
1968{
1969 struct sk_buff *new_skb;
1970
1971 if (length > copybreak)
1972 return;
1973
1974 new_skb = netdev_alloc_skb_ip_align(netdev, length);
1975 if (!new_skb)
1976 return;
1977
1978 skb_copy_to_linear_data_offset(new_skb, -NET_IP_ALIGN,
1979 (*skb)->data - NET_IP_ALIGN,
1980 length + NET_IP_ALIGN);
1981 /* save the skb in buffer_info as good */
1982 buffer_info->skb = *skb;
1983 *skb = new_skb;
1984}
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986/**
1987 * ixgb_clean_rx_irq - Send received data up the network stack,
1988 * @adapter: board private structure
1989 **/
1990
Joe Perches446490c2008-03-21 11:06:37 -07001991static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992ixgb_clean_rx_irq(struct ixgb_adapter *adapter, int *work_done, int work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
1994 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
1995 struct net_device *netdev = adapter->netdev;
1996 struct pci_dev *pdev = adapter->pdev;
1997 struct ixgb_rx_desc *rx_desc, *next_rxd;
1998 struct ixgb_buffer *buffer_info, *next_buffer, *next2_buffer;
Joe Perches222441a2008-04-03 10:06:25 -07001999 u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 unsigned int i, j;
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002001 int cleaned_count = 0;
Joe Perches446490c2008-03-21 11:06:37 -07002002 bool cleaned = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004 i = rx_ring->next_to_clean;
2005 rx_desc = IXGB_RX_DESC(*rx_ring, i);
2006 buffer_info = &rx_ring->buffer_info[i];
2007
Jesse Brandeburg9a432992008-07-08 15:52:18 -07002008 while (rx_desc->status & IXGB_RX_DESC_STATUS_DD) {
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002009 struct sk_buff *skb;
Malli Chilakalaf404de12005-04-28 19:04:54 -07002010 u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002012 if (*work_done >= work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 break;
2014
2015 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00002016 rmb(); /* read descriptor and rx_buffer_info after status DD */
Malli Chilakalaf404de12005-04-28 19:04:54 -07002017 status = rx_desc->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 skb = buffer_info->skb;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002019 buffer_info->skb = NULL;
Malli Chilakalaf404de12005-04-28 19:04:54 -07002020
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002021 prefetch(skb->data - NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Joe Perches57bf6ee2010-05-13 15:26:17 +00002023 if (++i == rx_ring->count)
2024 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 next_rxd = IXGB_RX_DESC(*rx_ring, i);
2026 prefetch(next_rxd);
2027
Joe Perches57bf6ee2010-05-13 15:26:17 +00002028 j = i + 1;
2029 if (j == rx_ring->count)
2030 j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 next2_buffer = &rx_ring->buffer_info[j];
2032 prefetch(next2_buffer);
2033
2034 next_buffer = &rx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Joe Perches446490c2008-03-21 11:06:37 -07002036 cleaned = true;
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002037 cleaned_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Nick Nunley47631f82010-04-27 13:10:03 +00002039 dma_unmap_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 buffer_info->dma,
2041 buffer_info->length,
Nick Nunley47631f82010-04-27 13:10:03 +00002042 DMA_FROM_DEVICE);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002043 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
2045 length = le16_to_cpu(rx_desc->length);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002046 rx_desc->length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002048 if (unlikely(!(status & IXGB_RX_DESC_STATUS_EOP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050 /* All receives must fit into a single buffer */
2051
2052 IXGB_DBG("Receive packet consumed multiple buffers "
2053 "length<%x>\n", length);
2054
2055 dev_kfree_skb_irq(skb);
Malli Chilakalaf404de12005-04-28 19:04:54 -07002056 goto rxdesc_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 }
2058
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002059 if (unlikely(rx_desc->errors &
2060 (IXGB_RX_DESC_ERRORS_CE | IXGB_RX_DESC_ERRORS_SE |
2061 IXGB_RX_DESC_ERRORS_P | IXGB_RX_DESC_ERRORS_RXE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 dev_kfree_skb_irq(skb);
Malli Chilakalaf404de12005-04-28 19:04:54 -07002063 goto rxdesc_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 }
2065
Joe Perches57bf6ee2010-05-13 15:26:17 +00002066 ixgb_check_copybreak(netdev, buffer_info, length, &skb);
Auke Kok6b900bb2006-05-25 13:24:21 -07002067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 /* Good Receive */
2069 skb_put(skb, length);
2070
2071 /* Receive Checksum Offload */
2072 ixgb_rx_checksum(adapter, rx_desc, skb);
2073
2074 skb->protocol = eth_type_trans(skb, netdev);
Emil Tantilove2444d92011-01-27 09:14:18 +00002075 if (status & IXGB_RX_DESC_STATUS_VP)
2076 __vlan_hwaccel_put_tag(skb,
2077 le16_to_cpu(rx_desc->special));
2078
2079 netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Malli Chilakalaf404de12005-04-28 19:04:54 -07002081rxdesc_done:
2082 /* clean up descriptor, might be written over by hw */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002085 /* return some buffers to hardware, one at a time is too slow */
2086 if (unlikely(cleaned_count >= IXGB_RX_BUFFER_WRITE)) {
2087 ixgb_alloc_rx_buffers(adapter, cleaned_count);
2088 cleaned_count = 0;
2089 }
2090
Malli Chilakalaf404de12005-04-28 19:04:54 -07002091 /* use prefetched values */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 rx_desc = next_rxd;
2093 buffer_info = next_buffer;
2094 }
2095
2096 rx_ring->next_to_clean = i;
2097
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002098 cleaned_count = IXGB_DESC_UNUSED(rx_ring);
2099 if (cleaned_count)
2100 ixgb_alloc_rx_buffers(adapter, cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 return cleaned;
2103}
2104
2105/**
2106 * ixgb_alloc_rx_buffers - Replace used receive buffers
2107 * @adapter: address of board private structure
2108 **/
2109
2110static void
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002111ixgb_alloc_rx_buffers(struct ixgb_adapter *adapter, int cleaned_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
2113 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
2114 struct net_device *netdev = adapter->netdev;
2115 struct pci_dev *pdev = adapter->pdev;
2116 struct ixgb_rx_desc *rx_desc;
2117 struct ixgb_buffer *buffer_info;
2118 struct sk_buff *skb;
2119 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 long cleancount;
2121
2122 i = rx_ring->next_to_use;
2123 buffer_info = &rx_ring->buffer_info[i];
2124 cleancount = IXGB_DESC_UNUSED(rx_ring);
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Malli Chilakala41639fe2005-04-28 18:51:54 -07002127 /* leave three descriptors unused */
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002128 while (--cleancount > 2 && cleaned_count--) {
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002129 /* recycle! its good for you */
Auke Kok69c7a9402006-08-31 14:27:52 -07002130 skb = buffer_info->skb;
2131 if (skb) {
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002132 skb_trim(skb, 0);
2133 goto map_skb;
2134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Eric Dumazet89d71a62009-10-13 05:34:20 +00002136 skb = netdev_alloc_skb_ip_align(netdev, adapter->rx_buffer_len);
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002137 if (unlikely(!skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 /* Better luck next round */
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002139 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 break;
2141 }
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 buffer_info->skb = skb;
2144 buffer_info->length = adapter->rx_buffer_len;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002145map_skb:
Nick Nunley47631f82010-04-27 13:10:03 +00002146 buffer_info->dma = dma_map_single(&pdev->dev,
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002147 skb->data,
2148 adapter->rx_buffer_len,
Nick Nunley47631f82010-04-27 13:10:03 +00002149 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002151 rx_desc = IXGB_RX_DESC(*rx_ring, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 rx_desc->buff_addr = cpu_to_le64(buffer_info->dma);
Malli Chilakala41639fe2005-04-28 18:51:54 -07002153 /* guarantee DD bit not set now before h/w gets descriptor
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002154 * this is the rest of the workaround for h/w double
Malli Chilakala41639fe2005-04-28 18:51:54 -07002155 * writeback. */
2156 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002159 if (++i == rx_ring->count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 buffer_info = &rx_ring->buffer_info[i];
2161 }
2162
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002163 if (likely(rx_ring->next_to_use != i)) {
2164 rx_ring->next_to_use = i;
2165 if (unlikely(i-- == 0))
2166 i = (rx_ring->count - 1);
2167
2168 /* Force memory writes to complete before letting h/w
2169 * know there are new descriptors to fetch. (Only
2170 * applicable for weak-ordered memory model archs, such
2171 * as IA-64). */
2172 wmb();
2173 IXGB_WRITE_REG(&adapter->hw, RDT, i);
2174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175}
2176
Emil Tantilovae544962010-12-04 05:35:17 +00002177static void
2178ixgb_vlan_strip_enable(struct ixgb_adapter *adapter)
2179{
2180 u32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Emil Tantilovae544962010-12-04 05:35:17 +00002182 /* enable VLAN tag insert/strip */
2183 ctrl = IXGB_READ_REG(&adapter->hw, CTRL0);
2184 ctrl |= IXGB_CTRL0_VME;
2185 IXGB_WRITE_REG(&adapter->hw, CTRL0, ctrl);
2186}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Emil Tantilovae544962010-12-04 05:35:17 +00002188static void
2189ixgb_vlan_strip_disable(struct ixgb_adapter *adapter)
2190{
2191 u32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Emil Tantilovae544962010-12-04 05:35:17 +00002193 /* disable VLAN tag insert/strip */
2194 ctrl = IXGB_READ_REG(&adapter->hw, CTRL0);
2195 ctrl &= ~IXGB_CTRL0_VME;
2196 IXGB_WRITE_REG(&adapter->hw, CTRL0, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197}
2198
2199static void
Joe Perches222441a2008-04-03 10:06:25 -07002200ixgb_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002202 struct ixgb_adapter *adapter = netdev_priv(netdev);
Joe Perches222441a2008-04-03 10:06:25 -07002203 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
2205 /* add VID to filter table */
2206
2207 index = (vid >> 5) & 0x7F;
2208 vfta = IXGB_READ_REG_ARRAY(&adapter->hw, VFTA, index);
2209 vfta |= (1 << (vid & 0x1F));
2210 ixgb_write_vfta(&adapter->hw, index, vfta);
Emil Tantilove2444d92011-01-27 09:14:18 +00002211 set_bit(vid, adapter->active_vlans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212}
2213
2214static void
Joe Perches222441a2008-04-03 10:06:25 -07002215ixgb_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002217 struct ixgb_adapter *adapter = netdev_priv(netdev);
Joe Perches222441a2008-04-03 10:06:25 -07002218 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07002220 /* remove VID from filter table */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222 index = (vid >> 5) & 0x7F;
2223 vfta = IXGB_READ_REG_ARRAY(&adapter->hw, VFTA, index);
2224 vfta &= ~(1 << (vid & 0x1F));
2225 ixgb_write_vfta(&adapter->hw, index, vfta);
Emil Tantilove2444d92011-01-27 09:14:18 +00002226 clear_bit(vid, adapter->active_vlans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227}
2228
2229static void
2230ixgb_restore_vlan(struct ixgb_adapter *adapter)
2231{
Emil Tantilove2444d92011-01-27 09:14:18 +00002232 u16 vid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Emil Tantilove2444d92011-01-27 09:14:18 +00002234 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
2235 ixgb_vlan_rx_add_vid(adapter->netdev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236}
2237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238#ifdef CONFIG_NET_POLL_CONTROLLER
2239/*
2240 * Polling 'interrupt' - used by things like netconsole to send skbs
2241 * without having to re-enable interrupts. It's not called while
2242 * the interrupt routine is executing.
2243 */
2244
2245static void ixgb_netpoll(struct net_device *dev)
2246{
Auke Kokf990b422006-08-31 14:27:50 -07002247 struct ixgb_adapter *adapter = netdev_priv(dev);
Malli Chilakalaac79c822005-04-28 19:05:32 -07002248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 disable_irq(adapter->pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002250 ixgb_intr(adapter->pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 enable_irq(adapter->pdev->irq);
2252}
2253#endif
2254
Linas Vepstas01748fb2006-08-31 14:27:52 -07002255/**
2256 * ixgb_io_error_detected() - called when PCI error is detected
2257 * @pdev pointer to pci device with error
2258 * @state pci channel state after error
2259 *
2260 * This callback is called by the PCI subsystem whenever
2261 * a PCI bus error is detected.
2262 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002263static pci_ers_result_t ixgb_io_error_detected(struct pci_dev *pdev,
2264 enum pci_channel_state state)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002265{
2266 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002267 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002268
Dean Nelsond6a1f832009-07-31 09:13:40 +00002269 netif_device_detach(netdev);
2270
2271 if (state == pci_channel_io_perm_failure)
2272 return PCI_ERS_RESULT_DISCONNECT;
2273
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002274 if (netif_running(netdev))
Joe Perches446490c2008-03-21 11:06:37 -07002275 ixgb_down(adapter, true);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002276
2277 pci_disable_device(pdev);
2278
2279 /* Request a slot reset. */
2280 return PCI_ERS_RESULT_NEED_RESET;
2281}
2282
2283/**
2284 * ixgb_io_slot_reset - called after the pci bus has been reset.
2285 * @pdev pointer to pci device with error
2286 *
Jesse Brandeburg52035bd2008-07-08 15:52:28 -07002287 * This callback is called after the PCI bus has been reset.
Linas Vepstas01748fb2006-08-31 14:27:52 -07002288 * Basically, this tries to restart the card from scratch.
2289 * This is a shortened version of the device probe/discovery code,
2290 * it resembles the first-half of the ixgb_probe() routine.
2291 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002292static pci_ers_result_t ixgb_io_slot_reset(struct pci_dev *pdev)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002293{
2294 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002295 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002296
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002297 if (pci_enable_device(pdev)) {
Joe Perches6909c662010-02-15 08:34:20 +00002298 netif_err(adapter, probe, adapter->netdev,
2299 "Cannot re-enable PCI device after reset\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002300 return PCI_ERS_RESULT_DISCONNECT;
2301 }
2302
2303 /* Perform card reset only on one instance of the card */
2304 if (0 != PCI_FUNC (pdev->devfn))
2305 return PCI_ERS_RESULT_RECOVERED;
2306
2307 pci_set_master(pdev);
2308
2309 netif_carrier_off(netdev);
2310 netif_stop_queue(netdev);
2311 ixgb_reset(adapter);
2312
2313 /* Make sure the EEPROM is good */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002314 if (!ixgb_validate_eeprom_checksum(&adapter->hw)) {
Joe Perches6909c662010-02-15 08:34:20 +00002315 netif_err(adapter, probe, adapter->netdev,
2316 "After reset, the EEPROM checksum is not valid\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002317 return PCI_ERS_RESULT_DISCONNECT;
2318 }
2319 ixgb_get_ee_mac_addr(&adapter->hw, netdev->dev_addr);
2320 memcpy(netdev->perm_addr, netdev->dev_addr, netdev->addr_len);
2321
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002322 if (!is_valid_ether_addr(netdev->perm_addr)) {
Joe Perches6909c662010-02-15 08:34:20 +00002323 netif_err(adapter, probe, adapter->netdev,
2324 "After reset, invalid MAC address\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002325 return PCI_ERS_RESULT_DISCONNECT;
2326 }
2327
2328 return PCI_ERS_RESULT_RECOVERED;
2329}
2330
2331/**
2332 * ixgb_io_resume - called when its OK to resume normal operations
2333 * @pdev pointer to pci device with error
2334 *
2335 * The error recovery driver tells us that its OK to resume
2336 * normal operation. Implementation resembles the second-half
2337 * of the ixgb_probe() routine.
2338 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002339static void ixgb_io_resume(struct pci_dev *pdev)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002340{
2341 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002342 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002343
2344 pci_set_master(pdev);
2345
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002346 if (netif_running(netdev)) {
2347 if (ixgb_up(adapter)) {
Joe Perchesd328bc82010-04-27 00:50:58 +00002348 pr_err("can't bring device back up after reset\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002349 return;
2350 }
2351 }
2352
2353 netif_device_attach(netdev);
2354 mod_timer(&adapter->watchdog_timer, jiffies);
2355}
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357/* ixgb_main.c */