blob: 2e98506d12e32753b2f85897f7ece74bf5ede35a [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "ixgb.h"
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033char ixgb_driver_name[] = "ixgb";
Adrian Bunke9ab1d12005-10-30 16:53:30 +010034static char ixgb_driver_string[] = "Intel(R) PRO/10GbE Network Driver";
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define DRIVERNAPI "-NAPI"
Jesse Brandeburgf731a9e2008-07-08 15:53:09 -070037#define DRV_VERSION "1.0.135-k2" DRIVERNAPI
Stephen Hemminger273dc742007-10-29 10:46:13 -070038const char ixgb_driver_version[] = DRV_VERSION;
Jesse Brandeburgf731a9e2008-07-08 15:53:09 -070039static const char ixgb_copyright[] = "Copyright (c) 1999-2008 Intel Corporation.";
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Jesse Brandeburgd9fed182008-07-08 15:52:02 -070041#define IXGB_CB_LENGTH 256
42static unsigned int copybreak __read_mostly = IXGB_CB_LENGTH;
43module_param(copybreak, uint, 0644);
44MODULE_PARM_DESC(copybreak,
45 "Maximum size of packet that is copied to a new buffer on receive");
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* ixgb_pci_tbl - PCI Device ID Table
48 *
49 * Wildcard entries (PCI_ANY_ID) should come last
50 * Last entry must be all 0s
51 *
52 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
53 * Class, Class Mask, private data (not used) }
54 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000055static DEFINE_PCI_DEVICE_TABLE(ixgb_pci_tbl) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 {INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX,
57 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Auke Kok940829e2006-05-23 10:29:58 -070058 {INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX_CX4,
59 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 {INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX_SR,
61 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Jesse Brandeburg7490d712008-07-08 15:52:08 -070062 {INTEL_VENDOR_ID, IXGB_DEVICE_ID_82597EX_LR,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
64
65 /* required last entry */
66 {0,}
67};
68
69MODULE_DEVICE_TABLE(pci, ixgb_pci_tbl);
70
71/* Local Function Prototypes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static int ixgb_init_module(void);
73static void ixgb_exit_module(void);
74static int ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
75static void __devexit ixgb_remove(struct pci_dev *pdev);
76static int ixgb_sw_init(struct ixgb_adapter *adapter);
77static int ixgb_open(struct net_device *netdev);
78static int ixgb_close(struct net_device *netdev);
79static void ixgb_configure_tx(struct ixgb_adapter *adapter);
80static void ixgb_configure_rx(struct ixgb_adapter *adapter);
81static void ixgb_setup_rctl(struct ixgb_adapter *adapter);
82static void ixgb_clean_tx_ring(struct ixgb_adapter *adapter);
83static void ixgb_clean_rx_ring(struct ixgb_adapter *adapter);
84static void ixgb_set_multi(struct net_device *netdev);
85static void ixgb_watchdog(unsigned long data);
Stephen Hemminger3b29a562009-08-31 19:50:55 +000086static netdev_tx_t ixgb_xmit_frame(struct sk_buff *skb,
87 struct net_device *netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static struct net_device_stats *ixgb_get_stats(struct net_device *netdev);
89static int ixgb_change_mtu(struct net_device *netdev, int new_mtu);
90static int ixgb_set_mac(struct net_device *netdev, void *p);
David Howells7d12e782006-10-05 14:55:46 +010091static irqreturn_t ixgb_intr(int irq, void *data);
Joe Perches446490c2008-03-21 11:06:37 -070092static bool ixgb_clean_tx_irq(struct ixgb_adapter *adapter);
Malli Chilakalaac79c822005-04-28 19:05:32 -070093
Jesse Brandeburg7490d712008-07-08 15:52:08 -070094static int ixgb_clean(struct napi_struct *, int);
95static bool ixgb_clean_rx_irq(struct ixgb_adapter *, int *, int);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -070096static void ixgb_alloc_rx_buffers(struct ixgb_adapter *, int);
Jesse Brandeburg7490d712008-07-08 15:52:08 -070097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static void ixgb_tx_timeout(struct net_device *dev);
David Howellsc4028952006-11-22 14:57:56 +000099static void ixgb_tx_timeout_task(struct work_struct *work);
Jesse Brandeburg7490d712008-07-08 15:52:08 -0700100
Emil Tantilovae544962010-12-04 05:35:17 +0000101static void ixgb_vlan_strip_enable(struct ixgb_adapter *adapter);
102static void ixgb_vlan_strip_disable(struct ixgb_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static void ixgb_vlan_rx_register(struct net_device *netdev,
Jesse Brandeburg7490d712008-07-08 15:52:08 -0700104 struct vlan_group *grp);
Joe Perches222441a2008-04-03 10:06:25 -0700105static void ixgb_vlan_rx_add_vid(struct net_device *netdev, u16 vid);
106static void ixgb_vlan_rx_kill_vid(struct net_device *netdev, u16 vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static void ixgb_restore_vlan(struct ixgb_adapter *adapter);
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#ifdef CONFIG_NET_POLL_CONTROLLER
110/* for netdump / net console */
111static void ixgb_netpoll(struct net_device *dev);
112#endif
113
Linas Vepstas01748fb2006-08-31 14:27:52 -0700114static pci_ers_result_t ixgb_io_error_detected (struct pci_dev *pdev,
Jesse Brandeburg7490d712008-07-08 15:52:08 -0700115 enum pci_channel_state state);
Linas Vepstas01748fb2006-08-31 14:27:52 -0700116static pci_ers_result_t ixgb_io_slot_reset (struct pci_dev *pdev);
117static void ixgb_io_resume (struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Linas Vepstas01748fb2006-08-31 14:27:52 -0700119static struct pci_error_handlers ixgb_err_handler = {
120 .error_detected = ixgb_io_error_detected,
121 .slot_reset = ixgb_io_slot_reset,
122 .resume = ixgb_io_resume,
123};
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static struct pci_driver ixgb_driver = {
Malli Chilakalac2eba932005-04-28 19:04:32 -0700126 .name = ixgb_driver_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .id_table = ixgb_pci_tbl,
Malli Chilakalac2eba932005-04-28 19:04:32 -0700128 .probe = ixgb_probe,
129 .remove = __devexit_p(ixgb_remove),
Linas Vepstas01748fb2006-08-31 14:27:52 -0700130 .err_handler = &ixgb_err_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
133MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
134MODULE_DESCRIPTION("Intel(R) PRO/10GbE Network Driver");
135MODULE_LICENSE("GPL");
John W. Linville01e5abc2005-05-12 22:23:29 -0400136MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Auke Kokec9c3f52006-05-23 10:34:59 -0700138#define DEFAULT_DEBUG_LEVEL_SHIFT 3
139static int debug = DEFAULT_DEBUG_LEVEL_SHIFT;
140module_param(debug, int, 0);
141MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/**
144 * ixgb_init_module - Driver Registration Routine
145 *
146 * ixgb_init_module is the first routine called when the driver is
147 * loaded. All it does is register with the PCI subsystem.
148 **/
149
150static int __init
151ixgb_init_module(void)
152{
Joe Perchesd328bc82010-04-27 00:50:58 +0000153 pr_info("%s - version %s\n", ixgb_driver_string, ixgb_driver_version);
154 pr_info("%s\n", ixgb_copyright);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Jeff Garzik29917622006-08-19 17:48:59 -0400156 return pci_register_driver(&ixgb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159module_init(ixgb_init_module);
160
161/**
162 * ixgb_exit_module - Driver Exit Cleanup Routine
163 *
164 * ixgb_exit_module is called just before the driver is removed
165 * from memory.
166 **/
167
168static void __exit
169ixgb_exit_module(void)
170{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 pci_unregister_driver(&ixgb_driver);
172}
173
174module_exit(ixgb_exit_module);
175
176/**
177 * ixgb_irq_disable - Mask off interrupt generation on the NIC
178 * @adapter: board private structure
179 **/
180
Auke Kok235949d12006-05-26 09:35:52 -0700181static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182ixgb_irq_disable(struct ixgb_adapter *adapter)
183{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 IXGB_WRITE_REG(&adapter->hw, IMC, ~0);
185 IXGB_WRITE_FLUSH(&adapter->hw);
186 synchronize_irq(adapter->pdev->irq);
187}
188
189/**
190 * ixgb_irq_enable - Enable default interrupt generation settings
191 * @adapter: board private structure
192 **/
193
Auke Kok235949d12006-05-26 09:35:52 -0700194static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195ixgb_irq_enable(struct ixgb_adapter *adapter)
196{
Jesse Brandeburg9c61a9d2008-03-21 11:07:03 -0700197 u32 val = IXGB_INT_RXT0 | IXGB_INT_RXDMT0 |
198 IXGB_INT_TXDW | IXGB_INT_LSC;
199 if (adapter->hw.subsystem_vendor_id == SUN_SUBVENDOR_ID)
200 val |= IXGB_INT_GPI0;
201 IXGB_WRITE_REG(&adapter->hw, IMS, val);
202 IXGB_WRITE_FLUSH(&adapter->hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205int
206ixgb_up(struct ixgb_adapter *adapter)
207{
208 struct net_device *netdev = adapter->netdev;
Auke Kokfb136c02007-05-17 15:29:07 -0700209 int err, irq_flags = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 int max_frame = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
211 struct ixgb_hw *hw = &adapter->hw;
212
213 /* hardware has been reset, we need to reload some things */
214
Auke Kok8556f0d12006-05-26 09:35:32 -0700215 ixgb_rar_set(hw, netdev->dev_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 ixgb_set_multi(netdev);
217
218 ixgb_restore_vlan(adapter);
219
220 ixgb_configure_tx(adapter);
221 ixgb_setup_rctl(adapter);
222 ixgb_configure_rx(adapter);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -0700223 ixgb_alloc_rx_buffers(adapter, IXGB_DESC_UNUSED(&adapter->rx_ring));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Auke Koke59d1692006-05-26 09:35:28 -0700225 /* disable interrupts and get the hardware into a known state */
226 IXGB_WRITE_REG(&adapter->hw, IMC, 0xffffffff);
227
Auke Kokfb136c02007-05-17 15:29:07 -0700228 /* only enable MSI if bus is in PCI-X mode */
229 if (IXGB_READ_REG(&adapter->hw, STATUS) & IXGB_STATUS_PCIX_MODE) {
230 err = pci_enable_msi(adapter->pdev);
231 if (!err) {
232 adapter->have_msi = 1;
233 irq_flags = 0;
234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 /* proceed to try to request regular interrupt */
236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Joe Perchesa0607fd2009-11-18 23:29:17 -0800238 err = request_irq(adapter->pdev->irq, ixgb_intr, irq_flags,
Auke Kokfb136c02007-05-17 15:29:07 -0700239 netdev->name, netdev);
240 if (err) {
241 if (adapter->have_msi)
242 pci_disable_msi(adapter->pdev);
Joe Perches6909c662010-02-15 08:34:20 +0000243 netif_err(adapter, probe, adapter->netdev,
244 "Unable to allocate interrupt Error: %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return err;
Auke Kokec9c3f52006-05-23 10:34:59 -0700246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700248 if ((hw->max_frame_size != max_frame) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 (hw->max_frame_size !=
250 (IXGB_READ_REG(hw, MFS) >> IXGB_MFS_SHIFT))) {
251
252 hw->max_frame_size = max_frame;
253
254 IXGB_WRITE_REG(hw, MFS, hw->max_frame_size << IXGB_MFS_SHIFT);
255
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700256 if (hw->max_frame_size >
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 IXGB_MAX_ENET_FRAME_SIZE_WITHOUT_FCS + ENET_FCS_LENGTH) {
Joe Perches222441a2008-04-03 10:06:25 -0700258 u32 ctrl0 = IXGB_READ_REG(hw, CTRL0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700260 if (!(ctrl0 & IXGB_CTRL0_JFE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 ctrl0 |= IXGB_CTRL0_JFE;
262 IXGB_WRITE_REG(hw, CTRL0, ctrl0);
263 }
264 }
265 }
266
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700267 clear_bit(__IXGB_DOWN, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700269 napi_enable(&adapter->napi);
Auke Koke59d1692006-05-26 09:35:28 -0700270 ixgb_irq_enable(adapter);
271
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +0000272 netif_wake_queue(netdev);
273
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700274 mod_timer(&adapter->watchdog_timer, jiffies);
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return 0;
277}
278
279void
Joe Perches446490c2008-03-21 11:06:37 -0700280ixgb_down(struct ixgb_adapter *adapter, bool kill_watchdog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 struct net_device *netdev = adapter->netdev;
283
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700284 /* prevent the interrupt handler from restarting watchdog */
285 set_bit(__IXGB_DOWN, &adapter->flags);
286
David S. Miller49d85c52008-01-18 04:21:39 -0800287 napi_disable(&adapter->napi);
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700288 /* waiting for NAPI to complete can re-enable interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 ixgb_irq_disable(adapter);
290 free_irq(adapter->pdev->irq, netdev);
Auke Kokfb136c02007-05-17 15:29:07 -0700291
292 if (adapter->have_msi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 pci_disable_msi(adapter->pdev);
294
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700295 if (kill_watchdog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 del_timer_sync(&adapter->watchdog_timer);
David S. Miller49d85c52008-01-18 04:21:39 -0800297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 adapter->link_speed = 0;
299 adapter->link_duplex = 0;
300 netif_carrier_off(netdev);
301 netif_stop_queue(netdev);
302
303 ixgb_reset(adapter);
304 ixgb_clean_tx_ring(adapter);
305 ixgb_clean_rx_ring(adapter);
306}
307
308void
309ixgb_reset(struct ixgb_adapter *adapter)
310{
Matheos Worku3fd71312007-12-14 11:48:29 -0800311 struct ixgb_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Matheos Worku3fd71312007-12-14 11:48:29 -0800313 ixgb_adapter_stop(hw);
314 if (!ixgb_init_hw(hw))
Joe Perches6909c662010-02-15 08:34:20 +0000315 netif_err(adapter, probe, adapter->netdev, "ixgb_init_hw failed\n");
Matheos Worku3fd71312007-12-14 11:48:29 -0800316
317 /* restore frame size information */
318 IXGB_WRITE_REG(hw, MFS, hw->max_frame_size << IXGB_MFS_SHIFT);
319 if (hw->max_frame_size >
320 IXGB_MAX_ENET_FRAME_SIZE_WITHOUT_FCS + ENET_FCS_LENGTH) {
321 u32 ctrl0 = IXGB_READ_REG(hw, CTRL0);
322 if (!(ctrl0 & IXGB_CTRL0_JFE)) {
323 ctrl0 |= IXGB_CTRL0_JFE;
324 IXGB_WRITE_REG(hw, CTRL0, ctrl0);
325 }
326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800329static const struct net_device_ops ixgb_netdev_ops = {
330 .ndo_open = ixgb_open,
331 .ndo_stop = ixgb_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800332 .ndo_start_xmit = ixgb_xmit_frame,
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800333 .ndo_get_stats = ixgb_get_stats,
334 .ndo_set_multicast_list = ixgb_set_multi,
335 .ndo_validate_addr = eth_validate_addr,
336 .ndo_set_mac_address = ixgb_set_mac,
337 .ndo_change_mtu = ixgb_change_mtu,
338 .ndo_tx_timeout = ixgb_tx_timeout,
339 .ndo_vlan_rx_register = ixgb_vlan_rx_register,
340 .ndo_vlan_rx_add_vid = ixgb_vlan_rx_add_vid,
341 .ndo_vlan_rx_kill_vid = ixgb_vlan_rx_kill_vid,
342#ifdef CONFIG_NET_POLL_CONTROLLER
343 .ndo_poll_controller = ixgb_netpoll,
344#endif
345};
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347/**
348 * ixgb_probe - Device Initialization Routine
349 * @pdev: PCI device information struct
350 * @ent: entry in ixgb_pci_tbl
351 *
352 * Returns 0 on success, negative on failure
353 *
354 * ixgb_probe initializes an adapter identified by a pci_dev structure.
355 * The OS initialization, configuring of the adapter private structure,
356 * and a hardware reset occur.
357 **/
358
359static int __devinit
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700360ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 struct net_device *netdev = NULL;
363 struct ixgb_adapter *adapter;
364 static int cards_found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 int pci_using_dac;
366 int i;
367 int err;
368
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700369 err = pci_enable_device(pdev);
370 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return err;
372
Nick Nunley47631f82010-04-27 13:10:03 +0000373 pci_using_dac = 0;
374 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
375 if (!err) {
376 err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
377 if (!err)
378 pci_using_dac = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 } else {
Nick Nunley47631f82010-04-27 13:10:03 +0000380 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
381 if (err) {
382 err = dma_set_coherent_mask(&pdev->dev,
383 DMA_BIT_MASK(32));
384 if (err) {
385 pr_err("No usable DMA configuration, aborting\n");
386 goto err_dma_mask;
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700391 err = pci_request_regions(pdev, ixgb_driver_name);
392 if (err)
Andreas Schwabc91e4682006-03-28 18:10:38 +0200393 goto err_request_regions;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 pci_set_master(pdev);
396
397 netdev = alloc_etherdev(sizeof(struct ixgb_adapter));
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700398 if (!netdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 err = -ENOMEM;
400 goto err_alloc_etherdev;
401 }
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 SET_NETDEV_DEV(netdev, &pdev->dev);
404
405 pci_set_drvdata(pdev, netdev);
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700406 adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 adapter->netdev = netdev;
408 adapter->pdev = pdev;
409 adapter->hw.back = adapter;
Auke Kokec9c3f52006-05-23 10:34:59 -0700410 adapter->msg_enable = netif_msg_init(debug, DEFAULT_DEBUG_LEVEL_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Arjan van de Ven275f1652008-10-20 21:42:39 -0700412 adapter->hw.hw_addr = pci_ioremap_bar(pdev, BAR_0);
Jesse Brandeburge539e462008-07-08 15:51:12 -0700413 if (!adapter->hw.hw_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 err = -EIO;
415 goto err_ioremap;
416 }
417
Jesse Brandeburg14593362008-07-08 15:52:33 -0700418 for (i = BAR_1; i <= BAR_5; i++) {
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700419 if (pci_resource_len(pdev, i) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 continue;
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700421 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 adapter->hw.io_base = pci_resource_start(pdev, i);
423 break;
424 }
425 }
426
Stephen Hemminger0edc3522008-11-19 22:24:29 -0800427 netdev->netdev_ops = &ixgb_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 ixgb_set_ethtool_ops(netdev);
Auke Kok9b8118d2006-05-23 10:35:04 -0700429 netdev->watchdog_timeo = 5 * HZ;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700430 netif_napi_add(netdev, &adapter->napi, ixgb_clean, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Auke Kok0eb5a342006-09-27 12:53:17 -0700432 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 adapter->bd_number = cards_found;
435 adapter->link_speed = 0;
436 adapter->link_duplex = 0;
437
438 /* setup the private structure */
439
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700440 err = ixgb_sw_init(adapter);
441 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 goto err_sw_init;
443
444 netdev->features = NETIF_F_SG |
445 NETIF_F_HW_CSUM |
446 NETIF_F_HW_VLAN_TX |
447 NETIF_F_HW_VLAN_RX |
448 NETIF_F_HW_VLAN_FILTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 netdev->features |= NETIF_F_TSO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Yi Zou7b872a52010-09-22 17:57:58 +0000451 if (pci_using_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +0000453 netdev->vlan_features |= NETIF_F_HIGHDMA;
454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 /* make sure the EEPROM is good */
457
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700458 if (!ixgb_validate_eeprom_checksum(&adapter->hw)) {
Joe Perches6909c662010-02-15 08:34:20 +0000459 netif_err(adapter, probe, adapter->netdev,
460 "The EEPROM Checksum Is Not Valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 err = -EIO;
462 goto err_eeprom;
463 }
464
465 ixgb_get_ee_mac_addr(&adapter->hw, netdev->dev_addr);
John W. Linvilledf859c52005-09-12 10:48:56 -0400466 memcpy(netdev->perm_addr, netdev->dev_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700468 if (!is_valid_ether_addr(netdev->perm_addr)) {
Joe Perches6909c662010-02-15 08:34:20 +0000469 netif_err(adapter, probe, adapter->netdev, "Invalid MAC Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 err = -EIO;
471 goto err_eeprom;
472 }
473
474 adapter->part_num = ixgb_get_ee_pba_number(&adapter->hw);
475
476 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +0000477 adapter->watchdog_timer.function = ixgb_watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 adapter->watchdog_timer.data = (unsigned long)adapter;
479
David Howellsc4028952006-11-22 14:57:56 +0000480 INIT_WORK(&adapter->tx_timeout_task, ixgb_tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Auke Kokec9c3f52006-05-23 10:34:59 -0700482 strcpy(netdev->name, "eth%d");
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700483 err = register_netdev(netdev);
484 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 goto err_register;
486
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000487 /* carrier off reporting is important to ethtool even BEFORE open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Joe Perches6909c662010-02-15 08:34:20 +0000490 netif_info(adapter, probe, adapter->netdev,
491 "Intel(R) PRO/10GbE Network Connection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 ixgb_check_options(adapter);
493 /* reset the hardware with the new settings */
494
495 ixgb_reset(adapter);
496
497 cards_found++;
498 return 0;
499
500err_register:
501err_sw_init:
502err_eeprom:
503 iounmap(adapter->hw.hw_addr);
504err_ioremap:
505 free_netdev(netdev);
506err_alloc_etherdev:
507 pci_release_regions(pdev);
Andreas Schwabc91e4682006-03-28 18:10:38 +0200508err_request_regions:
509err_dma_mask:
510 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return err;
512}
513
514/**
515 * ixgb_remove - Device Removal Routine
516 * @pdev: PCI device information struct
517 *
518 * ixgb_remove is called by the PCI subsystem to alert the driver
519 * that it should release a PCI device. The could be caused by a
520 * Hot-Plug event, or because the driver is going to be removed from
521 * memory.
522 **/
523
524static void __devexit
525ixgb_remove(struct pci_dev *pdev)
526{
527 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700528 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Jesse Brandeburg12579692008-07-08 15:51:47 -0700530 flush_scheduled_work();
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 unregister_netdev(netdev);
533
534 iounmap(adapter->hw.hw_addr);
535 pci_release_regions(pdev);
536
537 free_netdev(netdev);
Emil Tantilovec43a812010-10-28 00:59:49 +0000538 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541/**
542 * ixgb_sw_init - Initialize general software structures (struct ixgb_adapter)
543 * @adapter: board private structure to initialize
544 *
545 * ixgb_sw_init initializes the Adapter private data structure.
546 * Fields are initialized based on PCI device information and
547 * OS network device settings (MTU size).
548 **/
549
550static int __devinit
551ixgb_sw_init(struct ixgb_adapter *adapter)
552{
553 struct ixgb_hw *hw = &adapter->hw;
554 struct net_device *netdev = adapter->netdev;
555 struct pci_dev *pdev = adapter->pdev;
556
557 /* PCI config space info */
558
559 hw->vendor_id = pdev->vendor;
560 hw->device_id = pdev->device;
561 hw->subsystem_vendor_id = pdev->subsystem_vendor;
562 hw->subsystem_id = pdev->subsystem_device;
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 hw->max_frame_size = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
Jesse Brandeburga3dc3da2008-07-08 15:51:22 -0700565 adapter->rx_buffer_len = hw->max_frame_size + 8; /* + 8 for errata */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Joe Perches6909c662010-02-15 08:34:20 +0000567 if ((hw->device_id == IXGB_DEVICE_ID_82597EX) ||
568 (hw->device_id == IXGB_DEVICE_ID_82597EX_CX4) ||
569 (hw->device_id == IXGB_DEVICE_ID_82597EX_LR) ||
570 (hw->device_id == IXGB_DEVICE_ID_82597EX_SR))
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700571 hw->mac_type = ixgb_82597;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 else {
573 /* should never have loaded on this device */
Joe Perches6909c662010-02-15 08:34:20 +0000574 netif_err(adapter, probe, adapter->netdev, "unsupported device id\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576
577 /* enable flow control to be programmed */
578 hw->fc.send_xon = 1;
579
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -0700580 set_bit(__IXGB_DOWN, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return 0;
582}
583
584/**
585 * ixgb_open - Called when a network interface is made active
586 * @netdev: network interface device structure
587 *
588 * Returns 0 on success, negative value on failure
589 *
590 * The open entry point is called when a network interface is made
591 * active by the system (IFF_UP). At this point all resources needed
592 * for transmit and receive operations are allocated, the interrupt
593 * handler is registered with the OS, the watchdog timer is started,
594 * and the stack is notified that the interface is ready.
595 **/
596
597static int
598ixgb_open(struct net_device *netdev)
599{
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700600 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 int err;
602
603 /* allocate transmit descriptors */
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700604 err = ixgb_setup_tx_resources(adapter);
605 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 goto err_setup_tx;
607
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000608 netif_carrier_off(netdev);
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 /* allocate receive descriptors */
611
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700612 err = ixgb_setup_rx_resources(adapter);
613 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 goto err_setup_rx;
615
Jesse Brandeburg9e7bd332008-07-08 15:52:48 -0700616 err = ixgb_up(adapter);
617 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 goto err_up;
619
Jesse Brandeburg3a6d1bc2009-04-17 20:44:29 +0000620 netif_start_queue(netdev);
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return 0;
623
624err_up:
625 ixgb_free_rx_resources(adapter);
626err_setup_rx:
627 ixgb_free_tx_resources(adapter);
628err_setup_tx:
629 ixgb_reset(adapter);
630
631 return err;
632}
633
634/**
635 * ixgb_close - Disables a network interface
636 * @netdev: network interface device structure
637 *
638 * Returns 0, this is not allowed to fail
639 *
640 * The close entry point is called when an interface is de-activated
641 * by the OS. The hardware is still under the drivers control, but
642 * needs to be disabled. A global MAC reset is issued to stop the
643 * hardware, and all transmit and receive resources are freed.
644 **/
645
646static int
647ixgb_close(struct net_device *netdev)
648{
Malli Chilakala8908c6c2005-08-11 13:58:40 -0700649 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Joe Perches446490c2008-03-21 11:06:37 -0700651 ixgb_down(adapter, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 ixgb_free_tx_resources(adapter);
654 ixgb_free_rx_resources(adapter);
655
656 return 0;
657}
658
659/**
660 * ixgb_setup_tx_resources - allocate Tx resources (Descriptors)
661 * @adapter: board private structure
662 *
663 * Return 0 on success, negative on failure
664 **/
665
666int
667ixgb_setup_tx_resources(struct ixgb_adapter *adapter)
668{
669 struct ixgb_desc_ring *txdr = &adapter->tx_ring;
670 struct pci_dev *pdev = adapter->pdev;
671 int size;
672
673 size = sizeof(struct ixgb_buffer) * txdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +0000674 txdr->buffer_info = vzalloc(size);
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700675 if (!txdr->buffer_info) {
Joe Perches6909c662010-02-15 08:34:20 +0000676 netif_err(adapter, probe, adapter->netdev,
677 "Unable to allocate transmit descriptor ring memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return -ENOMEM;
679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 /* round up to nearest 4K */
682
683 txdr->size = txdr->count * sizeof(struct ixgb_tx_desc);
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700684 txdr->size = ALIGN(txdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Nick Nunley47631f82010-04-27 13:10:03 +0000686 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
687 GFP_KERNEL);
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700688 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 vfree(txdr->buffer_info);
Joe Perches6909c662010-02-15 08:34:20 +0000690 netif_err(adapter, probe, adapter->netdev,
691 "Unable to allocate transmit descriptor memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return -ENOMEM;
693 }
694 memset(txdr->desc, 0, txdr->size);
695
696 txdr->next_to_use = 0;
697 txdr->next_to_clean = 0;
698
699 return 0;
700}
701
702/**
703 * ixgb_configure_tx - Configure 82597 Transmit Unit after Reset.
704 * @adapter: board private structure
705 *
706 * Configure the Tx unit of the MAC after a reset.
707 **/
708
709static void
710ixgb_configure_tx(struct ixgb_adapter *adapter)
711{
Joe Perches222441a2008-04-03 10:06:25 -0700712 u64 tdba = adapter->tx_ring.dma;
713 u32 tdlen = adapter->tx_ring.count * sizeof(struct ixgb_tx_desc);
714 u32 tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 struct ixgb_hw *hw = &adapter->hw;
716
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700717 /* Setup the Base and Length of the Tx Descriptor Ring
718 * tx_ring.dma can be either a 32 or 64 bit value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 */
720
721 IXGB_WRITE_REG(hw, TDBAL, (tdba & 0x00000000ffffffffULL));
722 IXGB_WRITE_REG(hw, TDBAH, (tdba >> 32));
723
724 IXGB_WRITE_REG(hw, TDLEN, tdlen);
725
726 /* Setup the HW Tx Head and Tail descriptor pointers */
727
728 IXGB_WRITE_REG(hw, TDH, 0);
729 IXGB_WRITE_REG(hw, TDT, 0);
730
731 /* don't set up txdctl, it induces performance problems if configured
732 * incorrectly */
733 /* Set the Tx Interrupt Delay register */
734
735 IXGB_WRITE_REG(hw, TIDV, adapter->tx_int_delay);
736
737 /* Program the Transmit Control Register */
738
739 tctl = IXGB_TCTL_TCE | IXGB_TCTL_TXEN | IXGB_TCTL_TPDE;
740 IXGB_WRITE_REG(hw, TCTL, tctl);
741
742 /* Setup Transmit Descriptor Settings for this adapter */
743 adapter->tx_cmd_type =
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700744 IXGB_TX_DESC_TYPE |
745 (adapter->tx_int_delay_enable ? IXGB_TX_DESC_CMD_IDE : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
748/**
749 * ixgb_setup_rx_resources - allocate Rx resources (Descriptors)
750 * @adapter: board private structure
751 *
752 * Returns 0 on success, negative on failure
753 **/
754
755int
756ixgb_setup_rx_resources(struct ixgb_adapter *adapter)
757{
758 struct ixgb_desc_ring *rxdr = &adapter->rx_ring;
759 struct pci_dev *pdev = adapter->pdev;
760 int size;
761
762 size = sizeof(struct ixgb_buffer) * rxdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +0000763 rxdr->buffer_info = vzalloc(size);
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700764 if (!rxdr->buffer_info) {
Joe Perches6909c662010-02-15 08:34:20 +0000765 netif_err(adapter, probe, adapter->netdev,
766 "Unable to allocate receive descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return -ENOMEM;
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /* Round up to nearest 4K */
771
772 rxdr->size = rxdr->count * sizeof(struct ixgb_rx_desc);
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700773 rxdr->size = ALIGN(rxdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Nick Nunley47631f82010-04-27 13:10:03 +0000775 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
776 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700778 if (!rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 vfree(rxdr->buffer_info);
Joe Perches6909c662010-02-15 08:34:20 +0000780 netif_err(adapter, probe, adapter->netdev,
781 "Unable to allocate receive descriptors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return -ENOMEM;
783 }
784 memset(rxdr->desc, 0, rxdr->size);
785
786 rxdr->next_to_clean = 0;
787 rxdr->next_to_use = 0;
788
789 return 0;
790}
791
792/**
793 * ixgb_setup_rctl - configure the receive control register
794 * @adapter: Board private structure
795 **/
796
797static void
798ixgb_setup_rctl(struct ixgb_adapter *adapter)
799{
Joe Perches222441a2008-04-03 10:06:25 -0700800 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 rctl = IXGB_READ_REG(&adapter->hw, RCTL);
803
804 rctl &= ~(3 << IXGB_RCTL_MO_SHIFT);
805
806 rctl |=
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700807 IXGB_RCTL_BAM | IXGB_RCTL_RDMTS_1_2 |
808 IXGB_RCTL_RXEN | IXGB_RCTL_CFF |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 (adapter->hw.mc_filter_type << IXGB_RCTL_MO_SHIFT);
810
811 rctl |= IXGB_RCTL_SECRC;
812
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700813 if (adapter->rx_buffer_len <= IXGB_RXBUFFER_2048)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 rctl |= IXGB_RCTL_BSIZE_2048;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700815 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_4096)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 rctl |= IXGB_RCTL_BSIZE_4096;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700817 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_8192)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 rctl |= IXGB_RCTL_BSIZE_8192;
Auke Kok3f3dc0d2006-05-26 09:35:43 -0700819 else if (adapter->rx_buffer_len <= IXGB_RXBUFFER_16384)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 rctl |= IXGB_RCTL_BSIZE_16384;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 IXGB_WRITE_REG(&adapter->hw, RCTL, rctl);
823}
824
825/**
826 * ixgb_configure_rx - Configure 82597 Receive Unit after Reset.
827 * @adapter: board private structure
828 *
829 * Configure the Rx unit of the MAC after a reset.
830 **/
831
832static void
833ixgb_configure_rx(struct ixgb_adapter *adapter)
834{
Joe Perches222441a2008-04-03 10:06:25 -0700835 u64 rdba = adapter->rx_ring.dma;
836 u32 rdlen = adapter->rx_ring.count * sizeof(struct ixgb_rx_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 struct ixgb_hw *hw = &adapter->hw;
Joe Perches222441a2008-04-03 10:06:25 -0700838 u32 rctl;
839 u32 rxcsum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 /* make sure receives are disabled while setting up the descriptors */
842
843 rctl = IXGB_READ_REG(hw, RCTL);
844 IXGB_WRITE_REG(hw, RCTL, rctl & ~IXGB_RCTL_RXEN);
845
846 /* set the Receive Delay Timer Register */
847
848 IXGB_WRITE_REG(hw, RDTR, adapter->rx_int_delay);
849
850 /* Setup the Base and Length of the Rx Descriptor Ring */
851
852 IXGB_WRITE_REG(hw, RDBAL, (rdba & 0x00000000ffffffffULL));
853 IXGB_WRITE_REG(hw, RDBAH, (rdba >> 32));
854
855 IXGB_WRITE_REG(hw, RDLEN, rdlen);
856
857 /* Setup the HW Rx Head and Tail Descriptor Pointers */
858 IXGB_WRITE_REG(hw, RDH, 0);
859 IXGB_WRITE_REG(hw, RDT, 0);
860
Jesse Brandeburg43603862008-07-08 15:51:17 -0700861 /* due to the hardware errata with RXDCTL, we are unable to use any of
862 * the performance enhancing features of it without causing other
863 * subtle bugs, some of the bugs could include receive length
864 * corruption at high data rates (WTHRESH > 0) and/or receive
865 * descriptor ring irregularites (particularly in hardware cache) */
866 IXGB_WRITE_REG(hw, RXDCTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 /* Enable Receive Checksum Offload for TCP and UDP */
Joe Perches446490c2008-03-21 11:06:37 -0700869 if (adapter->rx_csum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 rxcsum = IXGB_READ_REG(hw, RXCSUM);
871 rxcsum |= IXGB_RXCSUM_TUOFL;
872 IXGB_WRITE_REG(hw, RXCSUM, rxcsum);
873 }
874
875 /* Enable Receives */
876
877 IXGB_WRITE_REG(hw, RCTL, rctl);
878}
879
880/**
881 * ixgb_free_tx_resources - Free Tx Resources
882 * @adapter: board private structure
883 *
884 * Free all transmit software resources
885 **/
886
887void
888ixgb_free_tx_resources(struct ixgb_adapter *adapter)
889{
890 struct pci_dev *pdev = adapter->pdev;
891
892 ixgb_clean_tx_ring(adapter);
893
894 vfree(adapter->tx_ring.buffer_info);
895 adapter->tx_ring.buffer_info = NULL;
896
Nick Nunley47631f82010-04-27 13:10:03 +0000897 dma_free_coherent(&pdev->dev, adapter->tx_ring.size,
898 adapter->tx_ring.desc, adapter->tx_ring.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 adapter->tx_ring.desc = NULL;
901}
902
Auke Kok235949d12006-05-26 09:35:52 -0700903static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904ixgb_unmap_and_free_tx_resource(struct ixgb_adapter *adapter,
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700905 struct ixgb_buffer *buffer_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Alexander Duyckadeaa902009-12-02 16:46:31 +0000907 if (buffer_info->dma) {
908 if (buffer_info->mapped_as_page)
Nick Nunley47631f82010-04-27 13:10:03 +0000909 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
910 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyckadeaa902009-12-02 16:46:31 +0000911 else
Nick Nunley47631f82010-04-27 13:10:03 +0000912 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
913 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyckadeaa902009-12-02 16:46:31 +0000914 buffer_info->dma = 0;
915 }
916
Alexander Duyckfe52eeb2009-03-19 01:15:21 +0000917 if (buffer_info->skb) {
Alexander Duyckfe52eeb2009-03-19 01:15:21 +0000918 dev_kfree_skb_any(buffer_info->skb);
919 buffer_info->skb = NULL;
920 }
Auke Kok1dfdd7d2006-05-25 13:24:17 -0700921 buffer_info->time_stamp = 0;
922 /* these fields must always be initialized in tx
923 * buffer_info->length = 0;
924 * buffer_info->next_to_watch = 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
927/**
928 * ixgb_clean_tx_ring - Free Tx Buffers
929 * @adapter: board private structure
930 **/
931
932static void
933ixgb_clean_tx_ring(struct ixgb_adapter *adapter)
934{
935 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
936 struct ixgb_buffer *buffer_info;
937 unsigned long size;
938 unsigned int i;
939
940 /* Free all the Tx ring sk_buffs */
941
Jesse Brandeburg14593362008-07-08 15:52:33 -0700942 for (i = 0; i < tx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 buffer_info = &tx_ring->buffer_info[i];
944 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
945 }
946
947 size = sizeof(struct ixgb_buffer) * tx_ring->count;
948 memset(tx_ring->buffer_info, 0, size);
949
950 /* Zero out the descriptor ring */
951
952 memset(tx_ring->desc, 0, tx_ring->size);
953
954 tx_ring->next_to_use = 0;
955 tx_ring->next_to_clean = 0;
956
957 IXGB_WRITE_REG(&adapter->hw, TDH, 0);
958 IXGB_WRITE_REG(&adapter->hw, TDT, 0);
959}
960
961/**
962 * ixgb_free_rx_resources - Free Rx Resources
963 * @adapter: board private structure
964 *
965 * Free all receive software resources
966 **/
967
968void
969ixgb_free_rx_resources(struct ixgb_adapter *adapter)
970{
971 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
972 struct pci_dev *pdev = adapter->pdev;
973
974 ixgb_clean_rx_ring(adapter);
975
976 vfree(rx_ring->buffer_info);
977 rx_ring->buffer_info = NULL;
978
Nick Nunley47631f82010-04-27 13:10:03 +0000979 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
980 rx_ring->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 rx_ring->desc = NULL;
983}
984
985/**
986 * ixgb_clean_rx_ring - Free Rx Buffers
987 * @adapter: board private structure
988 **/
989
990static void
991ixgb_clean_rx_ring(struct ixgb_adapter *adapter)
992{
993 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
994 struct ixgb_buffer *buffer_info;
995 struct pci_dev *pdev = adapter->pdev;
996 unsigned long size;
997 unsigned int i;
998
999 /* Free all the Rx ring sk_buffs */
1000
Jesse Brandeburg14593362008-07-08 15:52:33 -07001001 for (i = 0; i < rx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 buffer_info = &rx_ring->buffer_info[i];
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001003 if (buffer_info->dma) {
Nick Nunley47631f82010-04-27 13:10:03 +00001004 dma_unmap_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 buffer_info->dma,
1006 buffer_info->length,
Nick Nunley47631f82010-04-27 13:10:03 +00001007 DMA_FROM_DEVICE);
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001008 buffer_info->dma = 0;
1009 buffer_info->length = 0;
1010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Brandeburg, Jesse23e55a32008-09-30 13:08:48 +00001012 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 dev_kfree_skb(buffer_info->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 buffer_info->skb = NULL;
1015 }
1016 }
1017
1018 size = sizeof(struct ixgb_buffer) * rx_ring->count;
1019 memset(rx_ring->buffer_info, 0, size);
1020
1021 /* Zero out the descriptor ring */
1022
1023 memset(rx_ring->desc, 0, rx_ring->size);
1024
1025 rx_ring->next_to_clean = 0;
1026 rx_ring->next_to_use = 0;
1027
1028 IXGB_WRITE_REG(&adapter->hw, RDH, 0);
1029 IXGB_WRITE_REG(&adapter->hw, RDT, 0);
1030}
1031
1032/**
1033 * ixgb_set_mac - Change the Ethernet Address of the NIC
1034 * @netdev: network interface device structure
1035 * @p: pointer to an address structure
1036 *
1037 * Returns 0 on success, negative on failure
1038 **/
1039
1040static int
1041ixgb_set_mac(struct net_device *netdev, void *p)
1042{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001043 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 struct sockaddr *addr = p;
1045
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001046 if (!is_valid_ether_addr(addr->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return -EADDRNOTAVAIL;
1048
1049 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1050
1051 ixgb_rar_set(&adapter->hw, addr->sa_data, 0);
1052
1053 return 0;
1054}
1055
1056/**
1057 * ixgb_set_multi - Multicast and Promiscuous mode set
1058 * @netdev: network interface device structure
1059 *
1060 * The set_multi entry point is called whenever the multicast address
1061 * list or the network interface flags are updated. This routine is
1062 * responsible for configuring the hardware for proper multicast,
1063 * promiscuous mode, and all-multi behavior.
1064 **/
1065
1066static void
1067ixgb_set_multi(struct net_device *netdev)
1068{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001069 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 struct ixgb_hw *hw = &adapter->hw;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001071 struct netdev_hw_addr *ha;
Joe Perches222441a2008-04-03 10:06:25 -07001072 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 int i;
1074
1075 /* Check for Promiscuous and All Multicast modes */
1076
1077 rctl = IXGB_READ_REG(hw, RCTL);
1078
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001079 if (netdev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 rctl |= (IXGB_RCTL_UPE | IXGB_RCTL_MPE);
Emil Tantilovae544962010-12-04 05:35:17 +00001081 /* disable VLAN filtering */
1082 rctl &= ~IXGB_RCTL_CFIEN;
Patrick McHardy746b9f02008-07-16 20:15:45 -07001083 rctl &= ~IXGB_RCTL_VFE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07001085 if (netdev->flags & IFF_ALLMULTI) {
1086 rctl |= IXGB_RCTL_MPE;
1087 rctl &= ~IXGB_RCTL_UPE;
1088 } else {
1089 rctl &= ~(IXGB_RCTL_UPE | IXGB_RCTL_MPE);
1090 }
Emil Tantilovae544962010-12-04 05:35:17 +00001091 /* enable VLAN filtering */
Patrick McHardy78ed11a2008-07-16 20:16:14 -07001092 rctl |= IXGB_RCTL_VFE;
Emil Tantilovae544962010-12-04 05:35:17 +00001093 rctl &= ~IXGB_RCTL_CFIEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001096 if (netdev_mc_count(netdev) > IXGB_MAX_NUM_MULTICAST_ADDRESSES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 rctl |= IXGB_RCTL_MPE;
1098 IXGB_WRITE_REG(hw, RCTL, rctl);
1099 } else {
Joe Perches222441a2008-04-03 10:06:25 -07001100 u8 mta[IXGB_MAX_NUM_MULTICAST_ADDRESSES *
Stephen Hemminger273dc742007-10-29 10:46:13 -07001101 IXGB_ETH_LENGTH_OF_ADDRESS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 IXGB_WRITE_REG(hw, RCTL, rctl);
1104
Jiri Pirko48e2f182010-02-22 09:22:26 +00001105 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001106 netdev_for_each_mc_addr(ha, netdev)
Jiri Pirko48e2f182010-02-22 09:22:26 +00001107 memcpy(&mta[i++ * IXGB_ETH_LENGTH_OF_ADDRESS],
Jiri Pirko22bedad32010-04-01 21:22:57 +00001108 ha->addr, IXGB_ETH_LENGTH_OF_ADDRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001110 ixgb_mc_addr_list_update(hw, mta, netdev_mc_count(netdev), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
Emil Tantilovae544962010-12-04 05:35:17 +00001112
1113 if (netdev->features & NETIF_F_HW_VLAN_RX)
1114 ixgb_vlan_strip_enable(adapter);
1115 else
1116 ixgb_vlan_strip_disable(adapter);
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
1119
1120/**
1121 * ixgb_watchdog - Timer Call-back
1122 * @data: pointer to netdev cast into an unsigned long
1123 **/
1124
1125static void
1126ixgb_watchdog(unsigned long data)
1127{
1128 struct ixgb_adapter *adapter = (struct ixgb_adapter *)data;
1129 struct net_device *netdev = adapter->netdev;
1130 struct ixgb_desc_ring *txdr = &adapter->tx_ring;
1131
1132 ixgb_check_for_link(&adapter->hw);
1133
1134 if (ixgb_check_for_bad_link(&adapter->hw)) {
1135 /* force the reset path */
1136 netif_stop_queue(netdev);
1137 }
1138
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001139 if (adapter->hw.link_up) {
1140 if (!netif_carrier_ok(netdev)) {
Joe Perchesd328bc82010-04-27 00:50:58 +00001141 netdev_info(netdev,
1142 "NIC Link is Up 10 Gbps Full Duplex, Flow Control: %s\n",
1143 (adapter->hw.fc.type == ixgb_fc_full) ?
1144 "RX/TX" :
1145 (adapter->hw.fc.type == ixgb_fc_rx_pause) ?
1146 "RX" :
1147 (adapter->hw.fc.type == ixgb_fc_tx_pause) ?
1148 "TX" : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 adapter->link_speed = 10000;
1150 adapter->link_duplex = FULL_DUPLEX;
1151 netif_carrier_on(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153 } else {
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001154 if (netif_carrier_ok(netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 adapter->link_speed = 0;
1156 adapter->link_duplex = 0;
Joe Perchesd328bc82010-04-27 00:50:58 +00001157 netdev_info(netdev, "NIC Link is Down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160 }
1161
1162 ixgb_update_stats(adapter);
1163
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001164 if (!netif_carrier_ok(netdev)) {
1165 if (IXGB_DESC_UNUSED(txdr) + 1 < txdr->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 /* We've lost link, so the controller stops DMA,
1167 * but we've got queued Tx work that's never going
1168 * to get done, so reset controller to flush Tx.
1169 * (Do the reset outside of interrupt context). */
1170 schedule_work(&adapter->tx_timeout_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00001171 /* return immediately since reset is imminent */
1172 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 }
1174 }
1175
1176 /* Force detection of hung controller every watchdog period */
Joe Perches446490c2008-03-21 11:06:37 -07001177 adapter->detect_tx_hung = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 /* generate an interrupt to force clean up of any stragglers */
1180 IXGB_WRITE_REG(&adapter->hw, ICS, IXGB_INT_TXDW);
1181
1182 /* Reset the timer */
1183 mod_timer(&adapter->watchdog_timer, jiffies + 2 * HZ);
1184}
1185
1186#define IXGB_TX_FLAGS_CSUM 0x00000001
1187#define IXGB_TX_FLAGS_VLAN 0x00000002
1188#define IXGB_TX_FLAGS_TSO 0x00000004
1189
Auke Kok235949d12006-05-26 09:35:52 -07001190static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191ixgb_tso(struct ixgb_adapter *adapter, struct sk_buff *skb)
1192{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 struct ixgb_context_desc *context_desc;
1194 unsigned int i;
Joe Perches222441a2008-04-03 10:06:25 -07001195 u8 ipcss, ipcso, tucss, tucso, hdr_len;
1196 u16 ipcse, tucse, mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 int err;
1198
Herbert Xu89114af2006-07-08 13:34:32 -07001199 if (likely(skb_is_gso(skb))) {
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001200 struct ixgb_buffer *buffer_info;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001201 struct iphdr *iph;
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (skb_header_cloned(skb)) {
1204 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1205 if (err)
1206 return err;
1207 }
1208
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07001209 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Herbert Xu79671682006-06-22 02:40:14 -07001210 mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001211 iph = ip_hdr(skb);
1212 iph->tot_len = 0;
1213 iph->check = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001214 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
1215 iph->daddr, 0,
1216 IPPROTO_TCP, 0);
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001217 ipcss = skb_network_offset(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001218 ipcso = (void *)&(iph->check) - (void *)skb->data;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07001219 ipcse = skb_transport_offset(skb) - 1;
1220 tucss = skb_transport_offset(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001221 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 tucse = 0;
1223
1224 i = adapter->tx_ring.next_to_use;
1225 context_desc = IXGB_CONTEXT_DESC(adapter->tx_ring, i);
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001226 buffer_info = &adapter->tx_ring.buffer_info[i];
1227 WARN_ON(buffer_info->dma != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 context_desc->ipcss = ipcss;
1230 context_desc->ipcso = ipcso;
1231 context_desc->ipcse = cpu_to_le16(ipcse);
1232 context_desc->tucss = tucss;
1233 context_desc->tucso = tucso;
1234 context_desc->tucse = cpu_to_le16(tucse);
1235 context_desc->mss = cpu_to_le16(mss);
1236 context_desc->hdr_len = hdr_len;
1237 context_desc->status = 0;
1238 context_desc->cmd_type_len = cpu_to_le32(
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001239 IXGB_CONTEXT_DESC_TYPE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 | IXGB_CONTEXT_DESC_CMD_TSE
1241 | IXGB_CONTEXT_DESC_CMD_IP
1242 | IXGB_CONTEXT_DESC_CMD_TCP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 | IXGB_CONTEXT_DESC_CMD_IDE
1244 | (skb->len - (hdr_len)));
1245
Malli Chilakala06c2f9e2005-04-28 18:46:51 -07001246
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001247 if (++i == adapter->tx_ring.count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 adapter->tx_ring.next_to_use = i;
1249
1250 return 1;
1251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 return 0;
1254}
1255
Joe Perches446490c2008-03-21 11:06:37 -07001256static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257ixgb_tx_csum(struct ixgb_adapter *adapter, struct sk_buff *skb)
1258{
1259 struct ixgb_context_desc *context_desc;
1260 unsigned int i;
Joe Perches222441a2008-04-03 10:06:25 -07001261 u8 css, cso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001263 if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001264 struct ixgb_buffer *buffer_info;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07001265 css = skb_transport_offset(skb);
Al Viroff1dcad2006-11-20 18:07:29 -08001266 cso = css + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 i = adapter->tx_ring.next_to_use;
1269 context_desc = IXGB_CONTEXT_DESC(adapter->tx_ring, i);
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001270 buffer_info = &adapter->tx_ring.buffer_info[i];
1271 WARN_ON(buffer_info->dma != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 context_desc->tucss = css;
1274 context_desc->tucso = cso;
1275 context_desc->tucse = 0;
1276 /* zero out any previously existing data in one instruction */
Joe Perches222441a2008-04-03 10:06:25 -07001277 *(u32 *)&(context_desc->ipcss) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 context_desc->status = 0;
1279 context_desc->hdr_len = 0;
1280 context_desc->mss = 0;
1281 context_desc->cmd_type_len =
1282 cpu_to_le32(IXGB_CONTEXT_DESC_TYPE
Malli Chilakala06c2f9e2005-04-28 18:46:51 -07001283 | IXGB_TX_DESC_CMD_IDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001285 if (++i == adapter->tx_ring.count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 adapter->tx_ring.next_to_use = i;
1287
Joe Perches446490c2008-03-21 11:06:37 -07001288 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
1290
Joe Perches446490c2008-03-21 11:06:37 -07001291 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
1294#define IXGB_MAX_TXD_PWR 14
1295#define IXGB_MAX_DATA_PER_TXD (1<<IXGB_MAX_TXD_PWR)
1296
Auke Kok235949d12006-05-26 09:35:52 -07001297static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298ixgb_tx_map(struct ixgb_adapter *adapter, struct sk_buff *skb,
1299 unsigned int first)
1300{
1301 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001302 struct pci_dev *pdev = adapter->pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 struct ixgb_buffer *buffer_info;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001304 int len = skb_headlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 unsigned int offset = 0, size, count = 0, i;
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001306 unsigned int mss = skb_shinfo(skb)->gso_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
1308 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 i = tx_ring->next_to_use;
1311
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001312 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 buffer_info = &tx_ring->buffer_info[i];
Auke Kok709cf012006-07-10 08:51:43 -07001314 size = min(len, IXGB_MAX_DATA_PER_TXD);
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001315 /* Workaround for premature desc write-backs
1316 * in TSO mode. Append 4-byte sentinel desc */
1317 if (unlikely(mss && !nr_frags && size == len && size > 8))
1318 size -= 4;
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 buffer_info->length = size;
Jesse Brandeburgadc54132006-08-31 14:27:51 -07001321 WARN_ON(buffer_info->dma != 0);
Jesse Brandeburg34336632008-07-08 15:51:37 -07001322 buffer_info->time_stamp = jiffies;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001323 buffer_info->mapped_as_page = false;
Nick Nunley47631f82010-04-27 13:10:03 +00001324 buffer_info->dma = dma_map_single(&pdev->dev,
1325 skb->data + offset,
1326 size, DMA_TO_DEVICE);
1327 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyckadeaa902009-12-02 16:46:31 +00001328 goto dma_error;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001329 buffer_info->next_to_watch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 len -= size;
1332 offset += size;
1333 count++;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001334 if (len) {
1335 i++;
1336 if (i == tx_ring->count)
1337 i = 0;
1338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340
Jesse Brandeburg14593362008-07-08 15:52:33 -07001341 for (f = 0; f < nr_frags; f++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 struct skb_frag_struct *frag;
1343
1344 frag = &skb_shinfo(skb)->frags[f];
1345 len = frag->size;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001346 offset = frag->page_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001348 while (len) {
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001349 i++;
1350 if (i == tx_ring->count)
1351 i = 0;
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 buffer_info = &tx_ring->buffer_info[i];
Auke Kok709cf012006-07-10 08:51:43 -07001354 size = min(len, IXGB_MAX_DATA_PER_TXD);
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001355
1356 /* Workaround for premature desc write-backs
1357 * in TSO mode. Append 4-byte sentinel desc */
Auke Kok19abe862007-10-30 11:21:50 -07001358 if (unlikely(mss && (f == (nr_frags - 1))
1359 && size == len && size > 8))
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001360 size -= 4;
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 buffer_info->length = size;
Jesse Brandeburg34336632008-07-08 15:51:37 -07001363 buffer_info->time_stamp = jiffies;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001364 buffer_info->mapped_as_page = true;
1365 buffer_info->dma =
Nick Nunley47631f82010-04-27 13:10:03 +00001366 dma_map_page(&pdev->dev, frag->page,
1367 offset, size, DMA_TO_DEVICE);
1368 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyckadeaa902009-12-02 16:46:31 +00001369 goto dma_error;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001370 buffer_info->next_to_watch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 len -= size;
1373 offset += size;
1374 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 tx_ring->buffer_info[i].skb = skb;
1378 tx_ring->buffer_info[first].next_to_watch = i;
1379
1380 return count;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001381
1382dma_error:
1383 dev_err(&pdev->dev, "TX DMA map failed\n");
1384 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001385 if (count)
Alexander Duyckadeaa902009-12-02 16:46:31 +00001386 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001387
1388 while (count--) {
1389 if (i==0)
Alexander Duyckadeaa902009-12-02 16:46:31 +00001390 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00001391 i--;
Alexander Duyckadeaa902009-12-02 16:46:31 +00001392 buffer_info = &tx_ring->buffer_info[i];
1393 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
1394 }
1395
1396 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397}
1398
Auke Kok235949d12006-05-26 09:35:52 -07001399static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400ixgb_tx_queue(struct ixgb_adapter *adapter, int count, int vlan_id,int tx_flags)
1401{
1402 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1403 struct ixgb_tx_desc *tx_desc = NULL;
1404 struct ixgb_buffer *buffer_info;
Joe Perches222441a2008-04-03 10:06:25 -07001405 u32 cmd_type_len = adapter->tx_cmd_type;
1406 u8 status = 0;
1407 u8 popts = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 unsigned int i;
1409
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001410 if (tx_flags & IXGB_TX_FLAGS_TSO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 cmd_type_len |= IXGB_TX_DESC_CMD_TSE;
1412 popts |= (IXGB_TX_DESC_POPTS_IXSM | IXGB_TX_DESC_POPTS_TXSM);
1413 }
1414
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001415 if (tx_flags & IXGB_TX_FLAGS_CSUM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 popts |= IXGB_TX_DESC_POPTS_TXSM;
1417
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001418 if (tx_flags & IXGB_TX_FLAGS_VLAN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 cmd_type_len |= IXGB_TX_DESC_CMD_VLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 i = tx_ring->next_to_use;
1422
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001423 while (count--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 buffer_info = &tx_ring->buffer_info[i];
1425 tx_desc = IXGB_TX_DESC(*tx_ring, i);
1426 tx_desc->buff_addr = cpu_to_le64(buffer_info->dma);
1427 tx_desc->cmd_type_len =
1428 cpu_to_le32(cmd_type_len | buffer_info->length);
1429 tx_desc->status = status;
1430 tx_desc->popts = popts;
1431 tx_desc->vlan = cpu_to_le16(vlan_id);
1432
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001433 if (++i == tx_ring->count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001436 tx_desc->cmd_type_len |=
1437 cpu_to_le32(IXGB_TX_DESC_CMD_EOP | IXGB_TX_DESC_CMD_RS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 /* Force memory writes to complete before letting h/w
1440 * know there are new descriptors to fetch. (Only
1441 * applicable for weak-ordered memory model archs,
1442 * such as IA-64). */
1443 wmb();
1444
1445 tx_ring->next_to_use = i;
1446 IXGB_WRITE_REG(&adapter->hw, TDT, i);
1447}
1448
Jesse Brandeburgdfd341e2007-01-06 09:51:38 -08001449static int __ixgb_maybe_stop_tx(struct net_device *netdev, int size)
1450{
1451 struct ixgb_adapter *adapter = netdev_priv(netdev);
1452 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1453
1454 netif_stop_queue(netdev);
1455 /* Herbert's original patch had:
1456 * smp_mb__after_netif_stop_queue();
1457 * but since that doesn't exist yet, just open code it. */
1458 smp_mb();
1459
1460 /* We need to check again in a case another CPU has just
1461 * made room available. */
1462 if (likely(IXGB_DESC_UNUSED(tx_ring) < size))
1463 return -EBUSY;
1464
1465 /* A reprieve! */
1466 netif_start_queue(netdev);
1467 ++adapter->restart_queue;
1468 return 0;
1469}
1470
1471static int ixgb_maybe_stop_tx(struct net_device *netdev,
1472 struct ixgb_desc_ring *tx_ring, int size)
1473{
1474 if (likely(IXGB_DESC_UNUSED(tx_ring) >= size))
1475 return 0;
1476 return __ixgb_maybe_stop_tx(netdev, size);
1477}
1478
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480/* Tx Descriptors needed, worst case */
1481#define TXD_USE_COUNT(S) (((S) >> IXGB_MAX_TXD_PWR) + \
1482 (((S) & (IXGB_MAX_DATA_PER_TXD - 1)) ? 1 : 0))
Jesse Brandeburg5d927852007-01-06 09:51:23 -08001483#define DESC_NEEDED TXD_USE_COUNT(IXGB_MAX_DATA_PER_TXD) /* skb->date */ + \
1484 MAX_SKB_FRAGS * TXD_USE_COUNT(PAGE_SIZE) + 1 /* for context */ \
1485 + 1 /* one more needed for sentinel TSO workaround */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Stephen Hemminger3b29a562009-08-31 19:50:55 +00001487static netdev_tx_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488ixgb_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
1489{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001490 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 unsigned int first;
1492 unsigned int tx_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 int vlan_id = 0;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001494 int count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 int tso;
1496
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07001497 if (test_bit(__IXGB_DOWN, &adapter->flags)) {
1498 dev_kfree_skb(skb);
1499 return NETDEV_TX_OK;
1500 }
1501
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001502 if (skb->len <= 0) {
Jesse Brandeburgc2199342008-07-08 15:52:53 -07001503 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001504 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 }
1506
Jesse Brandeburgdfd341e2007-01-06 09:51:38 -08001507 if (unlikely(ixgb_maybe_stop_tx(netdev, &adapter->tx_ring,
Jesse Brandeburgdb582942008-07-08 15:51:52 -07001508 DESC_NEEDED)))
Auke Kokf017f142006-05-23 10:29:53 -07001509 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001511 if (adapter->vlgrp && vlan_tx_tag_present(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 tx_flags |= IXGB_TX_FLAGS_VLAN;
1513 vlan_id = vlan_tx_tag_get(skb);
1514 }
1515
1516 first = adapter->tx_ring.next_to_use;
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 tso = ixgb_tso(adapter, skb);
1519 if (tso < 0) {
Jesse Brandeburgc2199342008-07-08 15:52:53 -07001520 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 return NETDEV_TX_OK;
1522 }
1523
Auke Kok96f9c2e2006-05-23 10:29:41 -07001524 if (likely(tso))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 tx_flags |= IXGB_TX_FLAGS_TSO;
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001526 else if (ixgb_tx_csum(adapter, skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 tx_flags |= IXGB_TX_FLAGS_CSUM;
1528
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001529 count = ixgb_tx_map(adapter, skb, first);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001531 if (count) {
1532 ixgb_tx_queue(adapter, count, vlan_id, tx_flags);
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001533 /* Make sure there is space in the ring for the next send. */
1534 ixgb_maybe_stop_tx(netdev, &adapter->tx_ring, DESC_NEEDED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001536 } else {
1537 dev_kfree_skb_any(skb);
1538 adapter->tx_ring.buffer_info[first].time_stamp = 0;
1539 adapter->tx_ring.next_to_use = first;
1540 }
Auke Kokf017f142006-05-23 10:29:53 -07001541
Auke Kokf017f142006-05-23 10:29:53 -07001542 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543}
1544
1545/**
1546 * ixgb_tx_timeout - Respond to a Tx Hang
1547 * @netdev: network interface device structure
1548 **/
1549
1550static void
1551ixgb_tx_timeout(struct net_device *netdev)
1552{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001553 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
1555 /* Do the reset outside of interrupt context */
1556 schedule_work(&adapter->tx_timeout_task);
1557}
1558
1559static void
David Howellsc4028952006-11-22 14:57:56 +00001560ixgb_tx_timeout_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
David Howellsc4028952006-11-22 14:57:56 +00001562 struct ixgb_adapter *adapter =
1563 container_of(work, struct ixgb_adapter, tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Auke Kok9b8118d2006-05-23 10:35:04 -07001565 adapter->tx_timeout_count++;
Joe Perches446490c2008-03-21 11:06:37 -07001566 ixgb_down(adapter, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 ixgb_up(adapter);
1568}
1569
1570/**
1571 * ixgb_get_stats - Get System Network Statistics
1572 * @netdev: network interface device structure
1573 *
1574 * Returns the address of the device statistics structure.
1575 * The statistics are actually updated from the timer callback.
1576 **/
1577
1578static struct net_device_stats *
1579ixgb_get_stats(struct net_device *netdev)
1580{
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001581 return &netdev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
1584/**
1585 * ixgb_change_mtu - Change the Maximum Transfer Unit
1586 * @netdev: network interface device structure
1587 * @new_mtu: new value for maximum frame size
1588 *
1589 * Returns 0 on success, negative on failure
1590 **/
1591
1592static int
1593ixgb_change_mtu(struct net_device *netdev, int new_mtu)
1594{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001595 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 int max_frame = new_mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
1597 int old_max_frame = netdev->mtu + ENET_HEADER_SIZE + ENET_FCS_LENGTH;
1598
Jesse Brandeburga65a6042008-07-08 15:51:32 -07001599 /* MTU < 68 is an error for IPv4 traffic, just don't allow it */
1600 if ((new_mtu < 68) ||
1601 (max_frame > IXGB_MAX_JUMBO_FRAME_SIZE + ENET_FCS_LENGTH)) {
Joe Perches6909c662010-02-15 08:34:20 +00001602 netif_err(adapter, probe, adapter->netdev,
1603 "Invalid MTU setting %d\n", new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return -EINVAL;
1605 }
1606
Jesse Brandeburgb5ca88e2008-07-08 15:51:42 -07001607 if (old_max_frame == max_frame)
1608 return 0;
1609
1610 if (netif_running(netdev))
1611 ixgb_down(adapter, true);
1612
Jesse Brandeburga3dc3da2008-07-08 15:51:22 -07001613 adapter->rx_buffer_len = max_frame + 8; /* + 8 for errata */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 netdev->mtu = new_mtu;
1616
Jesse Brandeburgb5ca88e2008-07-08 15:51:42 -07001617 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 ixgb_up(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 return 0;
1621}
1622
1623/**
1624 * ixgb_update_stats - Update the board statistics counters.
1625 * @adapter: board private structure
1626 **/
1627
1628void
1629ixgb_update_stats(struct ixgb_adapter *adapter)
1630{
Malli Chilakala56336842005-04-28 18:45:50 -07001631 struct net_device *netdev = adapter->netdev;
Linas Vepstas01748fb2006-08-31 14:27:52 -07001632 struct pci_dev *pdev = adapter->pdev;
1633
1634 /* Prevent stats update while adapter is being reset */
Linas Vepstas81b19552006-12-12 18:29:15 -06001635 if (pci_channel_offline(pdev))
Linas Vepstas01748fb2006-08-31 14:27:52 -07001636 return;
Malli Chilakala56336842005-04-28 18:45:50 -07001637
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001638 if ((netdev->flags & IFF_PROMISC) || (netdev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001639 (netdev_mc_count(netdev) > IXGB_MAX_NUM_MULTICAST_ADDRESSES)) {
Malli Chilakala56336842005-04-28 18:45:50 -07001640 u64 multi = IXGB_READ_REG(&adapter->hw, MPRCL);
1641 u32 bcast_l = IXGB_READ_REG(&adapter->hw, BPRCL);
1642 u32 bcast_h = IXGB_READ_REG(&adapter->hw, BPRCH);
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001643 u64 bcast = ((u64)bcast_h << 32) | bcast_l;
Malli Chilakala56336842005-04-28 18:45:50 -07001644
1645 multi |= ((u64)IXGB_READ_REG(&adapter->hw, MPRCH) << 32);
1646 /* fix up multicast stats by removing broadcasts */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001647 if (multi >= bcast)
Malli Chilakala7b891782005-08-11 13:58:55 -07001648 multi -= bcast;
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001649
Malli Chilakala56336842005-04-28 18:45:50 -07001650 adapter->stats.mprcl += (multi & 0xFFFFFFFF);
1651 adapter->stats.mprch += (multi >> 32);
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001652 adapter->stats.bprcl += bcast_l;
Malli Chilakala56336842005-04-28 18:45:50 -07001653 adapter->stats.bprch += bcast_h;
1654 } else {
1655 adapter->stats.mprcl += IXGB_READ_REG(&adapter->hw, MPRCL);
1656 adapter->stats.mprch += IXGB_READ_REG(&adapter->hw, MPRCH);
1657 adapter->stats.bprcl += IXGB_READ_REG(&adapter->hw, BPRCL);
1658 adapter->stats.bprch += IXGB_READ_REG(&adapter->hw, BPRCH);
1659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 adapter->stats.tprl += IXGB_READ_REG(&adapter->hw, TPRL);
1661 adapter->stats.tprh += IXGB_READ_REG(&adapter->hw, TPRH);
1662 adapter->stats.gprcl += IXGB_READ_REG(&adapter->hw, GPRCL);
1663 adapter->stats.gprch += IXGB_READ_REG(&adapter->hw, GPRCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 adapter->stats.uprcl += IXGB_READ_REG(&adapter->hw, UPRCL);
1665 adapter->stats.uprch += IXGB_READ_REG(&adapter->hw, UPRCH);
1666 adapter->stats.vprcl += IXGB_READ_REG(&adapter->hw, VPRCL);
1667 adapter->stats.vprch += IXGB_READ_REG(&adapter->hw, VPRCH);
1668 adapter->stats.jprcl += IXGB_READ_REG(&adapter->hw, JPRCL);
1669 adapter->stats.jprch += IXGB_READ_REG(&adapter->hw, JPRCH);
1670 adapter->stats.gorcl += IXGB_READ_REG(&adapter->hw, GORCL);
1671 adapter->stats.gorch += IXGB_READ_REG(&adapter->hw, GORCH);
1672 adapter->stats.torl += IXGB_READ_REG(&adapter->hw, TORL);
1673 adapter->stats.torh += IXGB_READ_REG(&adapter->hw, TORH);
1674 adapter->stats.rnbc += IXGB_READ_REG(&adapter->hw, RNBC);
1675 adapter->stats.ruc += IXGB_READ_REG(&adapter->hw, RUC);
1676 adapter->stats.roc += IXGB_READ_REG(&adapter->hw, ROC);
1677 adapter->stats.rlec += IXGB_READ_REG(&adapter->hw, RLEC);
1678 adapter->stats.crcerrs += IXGB_READ_REG(&adapter->hw, CRCERRS);
1679 adapter->stats.icbc += IXGB_READ_REG(&adapter->hw, ICBC);
1680 adapter->stats.ecbc += IXGB_READ_REG(&adapter->hw, ECBC);
1681 adapter->stats.mpc += IXGB_READ_REG(&adapter->hw, MPC);
1682 adapter->stats.tptl += IXGB_READ_REG(&adapter->hw, TPTL);
1683 adapter->stats.tpth += IXGB_READ_REG(&adapter->hw, TPTH);
1684 adapter->stats.gptcl += IXGB_READ_REG(&adapter->hw, GPTCL);
1685 adapter->stats.gptch += IXGB_READ_REG(&adapter->hw, GPTCH);
1686 adapter->stats.bptcl += IXGB_READ_REG(&adapter->hw, BPTCL);
1687 adapter->stats.bptch += IXGB_READ_REG(&adapter->hw, BPTCH);
1688 adapter->stats.mptcl += IXGB_READ_REG(&adapter->hw, MPTCL);
1689 adapter->stats.mptch += IXGB_READ_REG(&adapter->hw, MPTCH);
1690 adapter->stats.uptcl += IXGB_READ_REG(&adapter->hw, UPTCL);
1691 adapter->stats.uptch += IXGB_READ_REG(&adapter->hw, UPTCH);
1692 adapter->stats.vptcl += IXGB_READ_REG(&adapter->hw, VPTCL);
1693 adapter->stats.vptch += IXGB_READ_REG(&adapter->hw, VPTCH);
1694 adapter->stats.jptcl += IXGB_READ_REG(&adapter->hw, JPTCL);
1695 adapter->stats.jptch += IXGB_READ_REG(&adapter->hw, JPTCH);
1696 adapter->stats.gotcl += IXGB_READ_REG(&adapter->hw, GOTCL);
1697 adapter->stats.gotch += IXGB_READ_REG(&adapter->hw, GOTCH);
1698 adapter->stats.totl += IXGB_READ_REG(&adapter->hw, TOTL);
1699 adapter->stats.toth += IXGB_READ_REG(&adapter->hw, TOTH);
1700 adapter->stats.dc += IXGB_READ_REG(&adapter->hw, DC);
1701 adapter->stats.plt64c += IXGB_READ_REG(&adapter->hw, PLT64C);
1702 adapter->stats.tsctc += IXGB_READ_REG(&adapter->hw, TSCTC);
1703 adapter->stats.tsctfc += IXGB_READ_REG(&adapter->hw, TSCTFC);
1704 adapter->stats.ibic += IXGB_READ_REG(&adapter->hw, IBIC);
1705 adapter->stats.rfc += IXGB_READ_REG(&adapter->hw, RFC);
1706 adapter->stats.lfc += IXGB_READ_REG(&adapter->hw, LFC);
1707 adapter->stats.pfrc += IXGB_READ_REG(&adapter->hw, PFRC);
1708 adapter->stats.pftc += IXGB_READ_REG(&adapter->hw, PFTC);
1709 adapter->stats.mcfrc += IXGB_READ_REG(&adapter->hw, MCFRC);
1710 adapter->stats.mcftc += IXGB_READ_REG(&adapter->hw, MCFTC);
1711 adapter->stats.xonrxc += IXGB_READ_REG(&adapter->hw, XONRXC);
1712 adapter->stats.xontxc += IXGB_READ_REG(&adapter->hw, XONTXC);
1713 adapter->stats.xoffrxc += IXGB_READ_REG(&adapter->hw, XOFFRXC);
1714 adapter->stats.xofftxc += IXGB_READ_REG(&adapter->hw, XOFFTXC);
1715 adapter->stats.rjc += IXGB_READ_REG(&adapter->hw, RJC);
1716
1717 /* Fill out the OS statistics structure */
1718
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001719 netdev->stats.rx_packets = adapter->stats.gprcl;
1720 netdev->stats.tx_packets = adapter->stats.gptcl;
1721 netdev->stats.rx_bytes = adapter->stats.gorcl;
1722 netdev->stats.tx_bytes = adapter->stats.gotcl;
1723 netdev->stats.multicast = adapter->stats.mprcl;
1724 netdev->stats.collisions = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726 /* ignore RLEC as it reports errors for padded (<64bytes) frames
1727 * with a length in the type/len field */
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001728 netdev->stats.rx_errors =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 /* adapter->stats.rnbc + */ adapter->stats.crcerrs +
1730 adapter->stats.ruc +
1731 adapter->stats.roc /*+ adapter->stats.rlec */ +
1732 adapter->stats.icbc +
1733 adapter->stats.ecbc + adapter->stats.mpc;
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 /* see above
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001736 * netdev->stats.rx_length_errors = adapter->stats.rlec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 */
1738
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001739 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
1740 netdev->stats.rx_fifo_errors = adapter->stats.mpc;
1741 netdev->stats.rx_missed_errors = adapter->stats.mpc;
1742 netdev->stats.rx_over_errors = adapter->stats.mpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Ajit Khaparde0cdc0362009-10-07 02:46:59 +00001744 netdev->stats.tx_errors = 0;
1745 netdev->stats.rx_frame_errors = 0;
1746 netdev->stats.tx_aborted_errors = 0;
1747 netdev->stats.tx_carrier_errors = 0;
1748 netdev->stats.tx_fifo_errors = 0;
1749 netdev->stats.tx_heartbeat_errors = 0;
1750 netdev->stats.tx_window_errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751}
1752
1753#define IXGB_MAX_INTR 10
1754/**
1755 * ixgb_intr - Interrupt Handler
1756 * @irq: interrupt number
1757 * @data: pointer to a network interface device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 **/
1759
1760static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01001761ixgb_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
1763 struct net_device *netdev = data;
Malli Chilakala8908c6c2005-08-11 13:58:40 -07001764 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 struct ixgb_hw *hw = &adapter->hw;
Joe Perches222441a2008-04-03 10:06:25 -07001766 u32 icr = IXGB_READ_REG(hw, ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001768 if (unlikely(!icr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 return IRQ_NONE; /* Not our interrupt */
1770
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07001771 if (unlikely(icr & (IXGB_INT_RXSEQ | IXGB_INT_LSC)))
1772 if (!test_bit(__IXGB_DOWN, &adapter->flags))
1773 mod_timer(&adapter->watchdog_timer, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Ben Hutchings288379f2009-01-19 16:43:59 -08001775 if (napi_schedule_prep(&adapter->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001777 /* Disable interrupts and register for poll. The flush
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 of the posted write is intentionally left out.
1779 */
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 IXGB_WRITE_REG(&adapter->hw, IMC, ~0);
Ben Hutchings288379f2009-01-19 16:43:59 -08001782 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return IRQ_HANDLED;
1785}
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787/**
1788 * ixgb_clean - NAPI Rx polling callback
1789 * @adapter: board private structure
1790 **/
1791
1792static int
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001793ixgb_clean(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001795 struct ixgb_adapter *adapter = container_of(napi, struct ixgb_adapter, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 int work_done = 0;
1797
David S. Miller53e52c72008-01-07 21:06:12 -08001798 ixgb_clean_tx_irq(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001799 ixgb_clean_rx_irq(adapter, &work_done, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
David S. Miller53e52c72008-01-07 21:06:12 -08001801 /* If budget not fully consumed, exit the polling mode */
1802 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001803 napi_complete(napi);
Jesse Brandeburg72ab5192008-07-08 15:51:27 -07001804 if (!test_bit(__IXGB_DOWN, &adapter->flags))
1805 ixgb_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 }
1807
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001808 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811/**
1812 * ixgb_clean_tx_irq - Reclaim resources after transmit completes
1813 * @adapter: board private structure
1814 **/
1815
Joe Perches446490c2008-03-21 11:06:37 -07001816static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817ixgb_clean_tx_irq(struct ixgb_adapter *adapter)
1818{
1819 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
1820 struct net_device *netdev = adapter->netdev;
1821 struct ixgb_tx_desc *tx_desc, *eop_desc;
1822 struct ixgb_buffer *buffer_info;
1823 unsigned int i, eop;
Joe Perches446490c2008-03-21 11:06:37 -07001824 bool cleaned = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826 i = tx_ring->next_to_clean;
1827 eop = tx_ring->buffer_info[i].next_to_watch;
1828 eop_desc = IXGB_TX_DESC(*tx_ring, eop);
1829
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001830 while (eop_desc->status & IXGB_TX_DESC_STATUS_DD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00001832 rmb(); /* read buffer_info after eop_desc */
Joe Perches446490c2008-03-21 11:06:37 -07001833 for (cleaned = false; !cleaned; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 tx_desc = IXGB_TX_DESC(*tx_ring, i);
1835 buffer_info = &tx_ring->buffer_info[i];
1836
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001837 if (tx_desc->popts &
1838 (IXGB_TX_DESC_POPTS_TXSM |
1839 IXGB_TX_DESC_POPTS_IXSM))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 adapter->hw_csum_tx_good++;
1841
1842 ixgb_unmap_and_free_tx_resource(adapter, buffer_info);
1843
Joe Perches222441a2008-04-03 10:06:25 -07001844 *(u32 *)&(tx_desc->status) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
1846 cleaned = (i == eop);
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001847 if (++i == tx_ring->count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
1849
1850 eop = tx_ring->buffer_info[i].next_to_watch;
1851 eop_desc = IXGB_TX_DESC(*tx_ring, eop);
1852 }
1853
1854 tx_ring->next_to_clean = i;
1855
Jesse Brandeburg0f8ecba2008-07-08 15:51:07 -07001856 if (unlikely(cleaned && netif_carrier_ok(netdev) &&
1857 IXGB_DESC_UNUSED(tx_ring) >= DESC_NEEDED)) {
1858 /* Make sure that anybody stopping the queue after this
1859 * sees the new next_to_clean. */
1860 smp_mb();
1861
1862 if (netif_queue_stopped(netdev) &&
1863 !(test_bit(__IXGB_DOWN, &adapter->flags))) {
Auke Kok3352a3b2006-05-26 09:35:47 -07001864 netif_wake_queue(netdev);
Jesse Brandeburg0f8ecba2008-07-08 15:51:07 -07001865 ++adapter->restart_queue;
1866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001869 if (adapter->detect_tx_hung) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 /* detect a transmit hang in hardware, this serializes the
1871 * check with the clearing of time_stamp and movement of i */
Joe Perches446490c2008-03-21 11:06:37 -07001872 adapter->detect_tx_hung = false;
Alexander Duyckfe52eeb2009-03-19 01:15:21 +00001873 if (tx_ring->buffer_info[eop].time_stamp &&
Auke Kok9b8118d2006-05-23 10:35:04 -07001874 time_after(jiffies, tx_ring->buffer_info[eop].time_stamp + HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 && !(IXGB_READ_REG(&adapter->hw, STATUS) &
Auke Kok9b8118d2006-05-23 10:35:04 -07001876 IXGB_STATUS_TXOFF)) {
1877 /* detected Tx unit hang */
Joe Perches6909c662010-02-15 08:34:20 +00001878 netif_err(adapter, drv, adapter->netdev,
1879 "Detected Tx Unit Hang\n"
1880 " TDH <%x>\n"
1881 " TDT <%x>\n"
1882 " next_to_use <%x>\n"
1883 " next_to_clean <%x>\n"
1884 "buffer_info[next_to_clean]\n"
1885 " time_stamp <%lx>\n"
1886 " next_to_watch <%x>\n"
1887 " jiffies <%lx>\n"
1888 " next_to_watch.status <%x>\n",
1889 IXGB_READ_REG(&adapter->hw, TDH),
1890 IXGB_READ_REG(&adapter->hw, TDT),
1891 tx_ring->next_to_use,
1892 tx_ring->next_to_clean,
1893 tx_ring->buffer_info[eop].time_stamp,
1894 eop,
1895 jiffies,
1896 eop_desc->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 netif_stop_queue(netdev);
Auke Kok9b8118d2006-05-23 10:35:04 -07001898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 }
1900
1901 return cleaned;
1902}
1903
1904/**
1905 * ixgb_rx_checksum - Receive Checksum Offload for 82597.
1906 * @adapter: board private structure
1907 * @rx_desc: receive descriptor
1908 * @sk_buff: socket buffer with received data
1909 **/
1910
Auke Kok235949d12006-05-26 09:35:52 -07001911static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912ixgb_rx_checksum(struct ixgb_adapter *adapter,
Jesse Brandeburg0060c072008-07-08 15:52:23 -07001913 struct ixgb_rx_desc *rx_desc,
1914 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
1916 /* Ignore Checksum bit is set OR
1917 * TCP Checksum has not been calculated
1918 */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001919 if ((rx_desc->status & IXGB_RX_DESC_STATUS_IXSM) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 (!(rx_desc->status & IXGB_RX_DESC_STATUS_TCPCS))) {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001921 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 return;
1923 }
1924
1925 /* At this point we know the hardware did the TCP checksum */
1926 /* now look at the TCP checksum error bit */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001927 if (rx_desc->errors & IXGB_RX_DESC_ERRORS_TCPE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 /* let the stack verify checksum errors */
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001929 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 adapter->hw_csum_rx_error++;
1931 } else {
1932 /* TCP checksum is good */
1933 skb->ip_summed = CHECKSUM_UNNECESSARY;
1934 adapter->hw_csum_rx_good++;
1935 }
1936}
1937
Joe Perches57bf6ee2010-05-13 15:26:17 +00001938/*
1939 * this should improve performance for small packets with large amounts
1940 * of reassembly being done in the stack
1941 */
1942static void ixgb_check_copybreak(struct net_device *netdev,
1943 struct ixgb_buffer *buffer_info,
1944 u32 length, struct sk_buff **skb)
1945{
1946 struct sk_buff *new_skb;
1947
1948 if (length > copybreak)
1949 return;
1950
1951 new_skb = netdev_alloc_skb_ip_align(netdev, length);
1952 if (!new_skb)
1953 return;
1954
1955 skb_copy_to_linear_data_offset(new_skb, -NET_IP_ALIGN,
1956 (*skb)->data - NET_IP_ALIGN,
1957 length + NET_IP_ALIGN);
1958 /* save the skb in buffer_info as good */
1959 buffer_info->skb = *skb;
1960 *skb = new_skb;
1961}
1962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963/**
1964 * ixgb_clean_rx_irq - Send received data up the network stack,
1965 * @adapter: board private structure
1966 **/
1967
Joe Perches446490c2008-03-21 11:06:37 -07001968static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969ixgb_clean_rx_irq(struct ixgb_adapter *adapter, int *work_done, int work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
1972 struct net_device *netdev = adapter->netdev;
1973 struct pci_dev *pdev = adapter->pdev;
1974 struct ixgb_rx_desc *rx_desc, *next_rxd;
1975 struct ixgb_buffer *buffer_info, *next_buffer, *next2_buffer;
Joe Perches222441a2008-04-03 10:06:25 -07001976 u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 unsigned int i, j;
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07001978 int cleaned_count = 0;
Joe Perches446490c2008-03-21 11:06:37 -07001979 bool cleaned = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
1981 i = rx_ring->next_to_clean;
1982 rx_desc = IXGB_RX_DESC(*rx_ring, i);
1983 buffer_info = &rx_ring->buffer_info[i];
1984
Jesse Brandeburg9a432992008-07-08 15:52:18 -07001985 while (rx_desc->status & IXGB_RX_DESC_STATUS_DD) {
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07001986 struct sk_buff *skb;
Malli Chilakalaf404de12005-04-28 19:04:54 -07001987 u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Jesse Brandeburg03f83042008-07-08 15:52:13 -07001989 if (*work_done >= work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 break;
1991
1992 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00001993 rmb(); /* read descriptor and rx_buffer_info after status DD */
Malli Chilakalaf404de12005-04-28 19:04:54 -07001994 status = rx_desc->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 skb = buffer_info->skb;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07001996 buffer_info->skb = NULL;
Malli Chilakalaf404de12005-04-28 19:04:54 -07001997
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07001998 prefetch(skb->data - NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Joe Perches57bf6ee2010-05-13 15:26:17 +00002000 if (++i == rx_ring->count)
2001 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 next_rxd = IXGB_RX_DESC(*rx_ring, i);
2003 prefetch(next_rxd);
2004
Joe Perches57bf6ee2010-05-13 15:26:17 +00002005 j = i + 1;
2006 if (j == rx_ring->count)
2007 j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 next2_buffer = &rx_ring->buffer_info[j];
2009 prefetch(next2_buffer);
2010
2011 next_buffer = &rx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Joe Perches446490c2008-03-21 11:06:37 -07002013 cleaned = true;
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002014 cleaned_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Nick Nunley47631f82010-04-27 13:10:03 +00002016 dma_unmap_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 buffer_info->dma,
2018 buffer_info->length,
Nick Nunley47631f82010-04-27 13:10:03 +00002019 DMA_FROM_DEVICE);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002020 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 length = le16_to_cpu(rx_desc->length);
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002023 rx_desc->length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002025 if (unlikely(!(status & IXGB_RX_DESC_STATUS_EOP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027 /* All receives must fit into a single buffer */
2028
2029 IXGB_DBG("Receive packet consumed multiple buffers "
2030 "length<%x>\n", length);
2031
2032 dev_kfree_skb_irq(skb);
Malli Chilakalaf404de12005-04-28 19:04:54 -07002033 goto rxdesc_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
2035
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002036 if (unlikely(rx_desc->errors &
2037 (IXGB_RX_DESC_ERRORS_CE | IXGB_RX_DESC_ERRORS_SE |
2038 IXGB_RX_DESC_ERRORS_P | IXGB_RX_DESC_ERRORS_RXE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 dev_kfree_skb_irq(skb);
Malli Chilakalaf404de12005-04-28 19:04:54 -07002040 goto rxdesc_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 }
2042
Joe Perches57bf6ee2010-05-13 15:26:17 +00002043 ixgb_check_copybreak(netdev, buffer_info, length, &skb);
Auke Kok6b900bb2006-05-25 13:24:21 -07002044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 /* Good Receive */
2046 skb_put(skb, length);
2047
2048 /* Receive Checksum Offload */
2049 ixgb_rx_checksum(adapter, rx_desc, skb);
2050
2051 skb->protocol = eth_type_trans(skb, netdev);
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002052 if (adapter->vlgrp && (status & IXGB_RX_DESC_STATUS_VP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 vlan_hwaccel_receive_skb(skb, adapter->vlgrp,
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002054 le16_to_cpu(rx_desc->special));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 } else {
2056 netif_receive_skb(skb);
2057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Malli Chilakalaf404de12005-04-28 19:04:54 -07002059rxdesc_done:
2060 /* clean up descriptor, might be written over by hw */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002063 /* return some buffers to hardware, one at a time is too slow */
2064 if (unlikely(cleaned_count >= IXGB_RX_BUFFER_WRITE)) {
2065 ixgb_alloc_rx_buffers(adapter, cleaned_count);
2066 cleaned_count = 0;
2067 }
2068
Malli Chilakalaf404de12005-04-28 19:04:54 -07002069 /* use prefetched values */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 rx_desc = next_rxd;
2071 buffer_info = next_buffer;
2072 }
2073
2074 rx_ring->next_to_clean = i;
2075
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002076 cleaned_count = IXGB_DESC_UNUSED(rx_ring);
2077 if (cleaned_count)
2078 ixgb_alloc_rx_buffers(adapter, cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 return cleaned;
2081}
2082
2083/**
2084 * ixgb_alloc_rx_buffers - Replace used receive buffers
2085 * @adapter: address of board private structure
2086 **/
2087
2088static void
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002089ixgb_alloc_rx_buffers(struct ixgb_adapter *adapter, int cleaned_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090{
2091 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
2092 struct net_device *netdev = adapter->netdev;
2093 struct pci_dev *pdev = adapter->pdev;
2094 struct ixgb_rx_desc *rx_desc;
2095 struct ixgb_buffer *buffer_info;
2096 struct sk_buff *skb;
2097 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 long cleancount;
2099
2100 i = rx_ring->next_to_use;
2101 buffer_info = &rx_ring->buffer_info[i];
2102 cleancount = IXGB_DESC_UNUSED(rx_ring);
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Malli Chilakala41639fe2005-04-28 18:51:54 -07002105 /* leave three descriptors unused */
Jesse Brandeburgfc2d14e2008-07-08 15:52:43 -07002106 while (--cleancount > 2 && cleaned_count--) {
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002107 /* recycle! its good for you */
Auke Kok69c7a9402006-08-31 14:27:52 -07002108 skb = buffer_info->skb;
2109 if (skb) {
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002110 skb_trim(skb, 0);
2111 goto map_skb;
2112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Eric Dumazet89d71a62009-10-13 05:34:20 +00002114 skb = netdev_alloc_skb_ip_align(netdev, adapter->rx_buffer_len);
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002115 if (unlikely(!skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 /* Better luck next round */
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002117 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 break;
2119 }
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 buffer_info->skb = skb;
2122 buffer_info->length = adapter->rx_buffer_len;
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002123map_skb:
Nick Nunley47631f82010-04-27 13:10:03 +00002124 buffer_info->dma = dma_map_single(&pdev->dev,
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002125 skb->data,
2126 adapter->rx_buffer_len,
Nick Nunley47631f82010-04-27 13:10:03 +00002127 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002129 rx_desc = IXGB_RX_DESC(*rx_ring, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 rx_desc->buff_addr = cpu_to_le64(buffer_info->dma);
Malli Chilakala41639fe2005-04-28 18:51:54 -07002131 /* guarantee DD bit not set now before h/w gets descriptor
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002132 * this is the rest of the workaround for h/w double
Malli Chilakala41639fe2005-04-28 18:51:54 -07002133 * writeback. */
2134 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002137 if (++i == rx_ring->count) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 buffer_info = &rx_ring->buffer_info[i];
2139 }
2140
Auke Kok1dfdd7d2006-05-25 13:24:17 -07002141 if (likely(rx_ring->next_to_use != i)) {
2142 rx_ring->next_to_use = i;
2143 if (unlikely(i-- == 0))
2144 i = (rx_ring->count - 1);
2145
2146 /* Force memory writes to complete before letting h/w
2147 * know there are new descriptors to fetch. (Only
2148 * applicable for weak-ordered memory model archs, such
2149 * as IA-64). */
2150 wmb();
2151 IXGB_WRITE_REG(&adapter->hw, RDT, i);
2152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
2155/**
2156 * ixgb_vlan_rx_register - enables or disables vlan tagging/stripping.
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002157 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 * @param netdev network interface device structure
2159 * @param grp indicates to enable or disable tagging/stripping
2160 **/
2161static void
2162ixgb_vlan_rx_register(struct net_device *netdev, struct vlan_group *grp)
2163{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002164 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 adapter->vlgrp = grp;
Emil Tantilovae544962010-12-04 05:35:17 +00002167}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Emil Tantilovae544962010-12-04 05:35:17 +00002169static void
2170ixgb_vlan_strip_enable(struct ixgb_adapter *adapter)
2171{
2172 u32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Emil Tantilovae544962010-12-04 05:35:17 +00002174 /* enable VLAN tag insert/strip */
2175 ctrl = IXGB_READ_REG(&adapter->hw, CTRL0);
2176 ctrl |= IXGB_CTRL0_VME;
2177 IXGB_WRITE_REG(&adapter->hw, CTRL0, ctrl);
2178}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
Emil Tantilovae544962010-12-04 05:35:17 +00002180static void
2181ixgb_vlan_strip_disable(struct ixgb_adapter *adapter)
2182{
2183 u32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Emil Tantilovae544962010-12-04 05:35:17 +00002185 /* disable VLAN tag insert/strip */
2186 ctrl = IXGB_READ_REG(&adapter->hw, CTRL0);
2187 ctrl &= ~IXGB_CTRL0_VME;
2188 IXGB_WRITE_REG(&adapter->hw, CTRL0, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
2190
2191static void
Joe Perches222441a2008-04-03 10:06:25 -07002192ixgb_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002194 struct ixgb_adapter *adapter = netdev_priv(netdev);
Joe Perches222441a2008-04-03 10:06:25 -07002195 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
2197 /* add VID to filter table */
2198
2199 index = (vid >> 5) & 0x7F;
2200 vfta = IXGB_READ_REG_ARRAY(&adapter->hw, VFTA, index);
2201 vfta |= (1 << (vid & 0x1F));
2202 ixgb_write_vfta(&adapter->hw, index, vfta);
2203}
2204
2205static void
Joe Perches222441a2008-04-03 10:06:25 -07002206ixgb_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{
Malli Chilakala8908c6c2005-08-11 13:58:40 -07002208 struct ixgb_adapter *adapter = netdev_priv(netdev);
Joe Perches222441a2008-04-03 10:06:25 -07002209 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
2211 ixgb_irq_disable(adapter);
2212
Dan Aloni5c15bde2007-03-02 20:44:51 -08002213 vlan_group_set_device(adapter->vlgrp, vid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07002215 /* don't enable interrupts unless we are UP */
2216 if (adapter->netdev->flags & IFF_UP)
2217 ixgb_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Jesse Brandeburgbab2bce2008-03-21 11:06:32 -07002219 /* remove VID from filter table */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
2221 index = (vid >> 5) & 0x7F;
2222 vfta = IXGB_READ_REG_ARRAY(&adapter->hw, VFTA, index);
2223 vfta &= ~(1 << (vid & 0x1F));
2224 ixgb_write_vfta(&adapter->hw, index, vfta);
2225}
2226
2227static void
2228ixgb_restore_vlan(struct ixgb_adapter *adapter)
2229{
2230 ixgb_vlan_rx_register(adapter->netdev, adapter->vlgrp);
2231
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002232 if (adapter->vlgrp) {
Joe Perches222441a2008-04-03 10:06:25 -07002233 u16 vid;
Jesse Grossb7381272010-10-20 13:56:02 +00002234 for (vid = 0; vid < VLAN_N_VID; vid++) {
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002235 if (!vlan_group_get_device(adapter->vlgrp, vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 continue;
2237 ixgb_vlan_rx_add_vid(adapter->netdev, vid);
2238 }
2239 }
2240}
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242#ifdef CONFIG_NET_POLL_CONTROLLER
2243/*
2244 * Polling 'interrupt' - used by things like netconsole to send skbs
2245 * without having to re-enable interrupts. It's not called while
2246 * the interrupt routine is executing.
2247 */
2248
2249static void ixgb_netpoll(struct net_device *dev)
2250{
Auke Kokf990b422006-08-31 14:27:50 -07002251 struct ixgb_adapter *adapter = netdev_priv(dev);
Malli Chilakalaac79c822005-04-28 19:05:32 -07002252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 disable_irq(adapter->pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01002254 ixgb_intr(adapter->pdev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 enable_irq(adapter->pdev->irq);
2256}
2257#endif
2258
Linas Vepstas01748fb2006-08-31 14:27:52 -07002259/**
2260 * ixgb_io_error_detected() - called when PCI error is detected
2261 * @pdev pointer to pci device with error
2262 * @state pci channel state after error
2263 *
2264 * This callback is called by the PCI subsystem whenever
2265 * a PCI bus error is detected.
2266 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002267static pci_ers_result_t ixgb_io_error_detected(struct pci_dev *pdev,
2268 enum pci_channel_state state)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002269{
2270 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002271 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002272
Dean Nelsond6a1f832009-07-31 09:13:40 +00002273 netif_device_detach(netdev);
2274
2275 if (state == pci_channel_io_perm_failure)
2276 return PCI_ERS_RESULT_DISCONNECT;
2277
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002278 if (netif_running(netdev))
Joe Perches446490c2008-03-21 11:06:37 -07002279 ixgb_down(adapter, true);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002280
2281 pci_disable_device(pdev);
2282
2283 /* Request a slot reset. */
2284 return PCI_ERS_RESULT_NEED_RESET;
2285}
2286
2287/**
2288 * ixgb_io_slot_reset - called after the pci bus has been reset.
2289 * @pdev pointer to pci device with error
2290 *
Jesse Brandeburg52035bd2008-07-08 15:52:28 -07002291 * This callback is called after the PCI bus has been reset.
Linas Vepstas01748fb2006-08-31 14:27:52 -07002292 * Basically, this tries to restart the card from scratch.
2293 * This is a shortened version of the device probe/discovery code,
2294 * it resembles the first-half of the ixgb_probe() routine.
2295 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002296static pci_ers_result_t ixgb_io_slot_reset(struct pci_dev *pdev)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002297{
2298 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002299 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002300
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002301 if (pci_enable_device(pdev)) {
Joe Perches6909c662010-02-15 08:34:20 +00002302 netif_err(adapter, probe, adapter->netdev,
2303 "Cannot re-enable PCI device after reset\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002304 return PCI_ERS_RESULT_DISCONNECT;
2305 }
2306
2307 /* Perform card reset only on one instance of the card */
2308 if (0 != PCI_FUNC (pdev->devfn))
2309 return PCI_ERS_RESULT_RECOVERED;
2310
2311 pci_set_master(pdev);
2312
2313 netif_carrier_off(netdev);
2314 netif_stop_queue(netdev);
2315 ixgb_reset(adapter);
2316
2317 /* Make sure the EEPROM is good */
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002318 if (!ixgb_validate_eeprom_checksum(&adapter->hw)) {
Joe Perches6909c662010-02-15 08:34:20 +00002319 netif_err(adapter, probe, adapter->netdev,
2320 "After reset, the EEPROM checksum is not valid\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002321 return PCI_ERS_RESULT_DISCONNECT;
2322 }
2323 ixgb_get_ee_mac_addr(&adapter->hw, netdev->dev_addr);
2324 memcpy(netdev->perm_addr, netdev->dev_addr, netdev->addr_len);
2325
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002326 if (!is_valid_ether_addr(netdev->perm_addr)) {
Joe Perches6909c662010-02-15 08:34:20 +00002327 netif_err(adapter, probe, adapter->netdev,
2328 "After reset, invalid MAC address\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002329 return PCI_ERS_RESULT_DISCONNECT;
2330 }
2331
2332 return PCI_ERS_RESULT_RECOVERED;
2333}
2334
2335/**
2336 * ixgb_io_resume - called when its OK to resume normal operations
2337 * @pdev pointer to pci device with error
2338 *
2339 * The error recovery driver tells us that its OK to resume
2340 * normal operation. Implementation resembles the second-half
2341 * of the ixgb_probe() routine.
2342 */
Jesse Brandeburg0060c072008-07-08 15:52:23 -07002343static void ixgb_io_resume(struct pci_dev *pdev)
Linas Vepstas01748fb2006-08-31 14:27:52 -07002344{
2345 struct net_device *netdev = pci_get_drvdata(pdev);
Auke Kokf7d4fa02006-09-27 12:54:19 -07002346 struct ixgb_adapter *adapter = netdev_priv(netdev);
Linas Vepstas01748fb2006-08-31 14:27:52 -07002347
2348 pci_set_master(pdev);
2349
Jesse Brandeburg03f83042008-07-08 15:52:13 -07002350 if (netif_running(netdev)) {
2351 if (ixgb_up(adapter)) {
Joe Perchesd328bc82010-04-27 00:50:58 +00002352 pr_err("can't bring device back up after reset\n");
Linas Vepstas01748fb2006-08-31 14:27:52 -07002353 return;
2354 }
2355 }
2356
2357 netif_device_attach(netdev);
2358 mod_timer(&adapter->watchdog_timer, jiffies);
2359}
2360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361/* ixgb_main.c */