blob: 9cf07f6322f85b8713c117466bcda275b2e903a6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2
Auke Kok0abb6eb2006-09-27 12:53:14 -07003 Intel PRO/1000 Linux driver
4 Copyright(c) 1999 - 2006 Intel Corporation.
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 more details.
Auke Kok0abb6eb2006-09-27 12:53:14 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 You should have received a copy of the GNU General Public License along with
Auke Kok0abb6eb2006-09-27 12:53:14 -070016 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 Contact Information:
23 Linux NICS <linux.nics@intel.com>
Auke Kok3d41e302006-04-14 19:05:31 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29#include "e1000.h"
Andrew Mortond0bb53e2006-11-14 10:35:03 -050030#include <net/ip6_checksum.h>
Dirk Brandewie5377a412011-01-06 14:29:54 +000031#include <linux/io.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040032#include <linux/prefetch.h>
Jiri Pirko5622e402011-07-21 03:26:31 +000033#include <linux/bitops.h>
34#include <linux/if_vlan.h>
Dirk Brandewie5377a412011-01-06 14:29:54 +000035
36/* Intel Media SOC GbE MDIO physical base address */
37static unsigned long ce4100_gbe_mdio_base_phy;
38/* Intel Media SOC GbE MDIO virtual base address */
39void __iomem *ce4100_gbe_mdio_base_virt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041char e1000_driver_name[] = "e1000";
Adrian Bunk3ad2cc62005-10-30 16:53:34 +010042static char e1000_driver_string[] = "Intel(R) PRO/1000 Network Driver";
Anupam Chandaab088532010-11-21 09:54:21 -080043#define DRV_VERSION "7.3.21-k8-NAPI"
Stephen Hemmingerabec42a2007-10-29 10:46:19 -070044const char e1000_driver_version[] = DRV_VERSION;
45static const char e1000_copyright[] = "Copyright (c) 1999-2006 Intel Corporation.";
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/* e1000_pci_tbl - PCI Device ID Table
48 *
49 * Last entry must be all 0s
50 *
51 * Macro expands to...
52 * {PCI_DEVICE(PCI_VENDOR_ID_INTEL, device_id)}
53 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000054static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 INTEL_E1000_ETHERNET_DEVICE(0x1000),
56 INTEL_E1000_ETHERNET_DEVICE(0x1001),
57 INTEL_E1000_ETHERNET_DEVICE(0x1004),
58 INTEL_E1000_ETHERNET_DEVICE(0x1008),
59 INTEL_E1000_ETHERNET_DEVICE(0x1009),
60 INTEL_E1000_ETHERNET_DEVICE(0x100C),
61 INTEL_E1000_ETHERNET_DEVICE(0x100D),
62 INTEL_E1000_ETHERNET_DEVICE(0x100E),
63 INTEL_E1000_ETHERNET_DEVICE(0x100F),
64 INTEL_E1000_ETHERNET_DEVICE(0x1010),
65 INTEL_E1000_ETHERNET_DEVICE(0x1011),
66 INTEL_E1000_ETHERNET_DEVICE(0x1012),
67 INTEL_E1000_ETHERNET_DEVICE(0x1013),
68 INTEL_E1000_ETHERNET_DEVICE(0x1014),
69 INTEL_E1000_ETHERNET_DEVICE(0x1015),
70 INTEL_E1000_ETHERNET_DEVICE(0x1016),
71 INTEL_E1000_ETHERNET_DEVICE(0x1017),
72 INTEL_E1000_ETHERNET_DEVICE(0x1018),
73 INTEL_E1000_ETHERNET_DEVICE(0x1019),
Malli Chilakala26483452005-04-28 19:44:46 -070074 INTEL_E1000_ETHERNET_DEVICE(0x101A),
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 INTEL_E1000_ETHERNET_DEVICE(0x101D),
76 INTEL_E1000_ETHERNET_DEVICE(0x101E),
77 INTEL_E1000_ETHERNET_DEVICE(0x1026),
78 INTEL_E1000_ETHERNET_DEVICE(0x1027),
79 INTEL_E1000_ETHERNET_DEVICE(0x1028),
80 INTEL_E1000_ETHERNET_DEVICE(0x1075),
81 INTEL_E1000_ETHERNET_DEVICE(0x1076),
82 INTEL_E1000_ETHERNET_DEVICE(0x1077),
83 INTEL_E1000_ETHERNET_DEVICE(0x1078),
84 INTEL_E1000_ETHERNET_DEVICE(0x1079),
85 INTEL_E1000_ETHERNET_DEVICE(0x107A),
86 INTEL_E1000_ETHERNET_DEVICE(0x107B),
87 INTEL_E1000_ETHERNET_DEVICE(0x107C),
88 INTEL_E1000_ETHERNET_DEVICE(0x108A),
Jeff Kirsherb7ee49d2006-01-12 16:51:21 -080089 INTEL_E1000_ETHERNET_DEVICE(0x1099),
Jeff Kirsherb7ee49d2006-01-12 16:51:21 -080090 INTEL_E1000_ETHERNET_DEVICE(0x10B5),
Dirk Brandewie5377a412011-01-06 14:29:54 +000091 INTEL_E1000_ETHERNET_DEVICE(0x2E6E),
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 /* required last entry */
93 {0,}
94};
95
96MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
97
Nicholas Nunley35574762006-09-27 12:53:34 -070098int e1000_up(struct e1000_adapter *adapter);
99void e1000_down(struct e1000_adapter *adapter);
100void e1000_reinit_locked(struct e1000_adapter *adapter);
101void e1000_reset(struct e1000_adapter *adapter);
Nicholas Nunley35574762006-09-27 12:53:34 -0700102int e1000_setup_all_tx_resources(struct e1000_adapter *adapter);
103int e1000_setup_all_rx_resources(struct e1000_adapter *adapter);
104void e1000_free_all_tx_resources(struct e1000_adapter *adapter);
105void e1000_free_all_rx_resources(struct e1000_adapter *adapter);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100106static int e1000_setup_tx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700107 struct e1000_tx_ring *txdr);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100108static int e1000_setup_rx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700109 struct e1000_rx_ring *rxdr);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100110static void e1000_free_tx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700111 struct e1000_tx_ring *tx_ring);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100112static void e1000_free_rx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700113 struct e1000_rx_ring *rx_ring);
114void e1000_update_stats(struct e1000_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116static int e1000_init_module(void);
117static void e1000_exit_module(void);
118static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
119static void __devexit e1000_remove(struct pci_dev *pdev);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400120static int e1000_alloc_queues(struct e1000_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static int e1000_sw_init(struct e1000_adapter *adapter);
122static int e1000_open(struct net_device *netdev);
123static int e1000_close(struct net_device *netdev);
124static void e1000_configure_tx(struct e1000_adapter *adapter);
125static void e1000_configure_rx(struct e1000_adapter *adapter);
126static void e1000_setup_rctl(struct e1000_adapter *adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400127static void e1000_clean_all_tx_rings(struct e1000_adapter *adapter);
128static void e1000_clean_all_rx_rings(struct e1000_adapter *adapter);
129static void e1000_clean_tx_ring(struct e1000_adapter *adapter,
130 struct e1000_tx_ring *tx_ring);
131static void e1000_clean_rx_ring(struct e1000_adapter *adapter,
132 struct e1000_rx_ring *rx_ring);
Patrick McHardydb0ce502007-11-13 20:54:59 -0800133static void e1000_set_rx_mode(struct net_device *netdev);
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +0000134static void e1000_update_phy_info_task(struct work_struct *work);
Jesse Brandeburga4010af2011-10-05 07:24:41 +0000135static void e1000_watchdog(struct work_struct *work);
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +0000136static void e1000_82547_tx_fifo_stall_task(struct work_struct *work);
Stephen Hemminger3b29a562009-08-31 19:50:55 +0000137static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
138 struct net_device *netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static struct net_device_stats * e1000_get_stats(struct net_device *netdev);
140static int e1000_change_mtu(struct net_device *netdev, int new_mtu);
141static int e1000_set_mac(struct net_device *netdev, void *p);
David Howells7d12e782006-10-05 14:55:46 +0100142static irqreturn_t e1000_intr(int irq, void *data);
Joe Perchesc3033b02008-03-21 11:06:25 -0700143static bool e1000_clean_tx_irq(struct e1000_adapter *adapter,
144 struct e1000_tx_ring *tx_ring);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700145static int e1000_clean(struct napi_struct *napi, int budget);
Joe Perchesc3033b02008-03-21 11:06:25 -0700146static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
147 struct e1000_rx_ring *rx_ring,
148 int *work_done, int work_to_do);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000149static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
150 struct e1000_rx_ring *rx_ring,
151 int *work_done, int work_to_do);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400152static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000153 struct e1000_rx_ring *rx_ring,
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800154 int cleaned_count);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000155static void e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
156 struct e1000_rx_ring *rx_ring,
157 int cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd);
159static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
160 int cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161static void e1000_enter_82542_rst(struct e1000_adapter *adapter);
162static void e1000_leave_82542_rst(struct e1000_adapter *adapter);
163static void e1000_tx_timeout(struct net_device *dev);
David Howells65f27f32006-11-22 14:55:48 +0000164static void e1000_reset_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static void e1000_smartspeed(struct e1000_adapter *adapter);
Auke Koke619d522006-04-14 19:04:52 -0700166static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
167 struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Jiri Pirko5622e402011-07-21 03:26:31 +0000169static bool e1000_vlan_used(struct e1000_adapter *adapter);
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000170static void e1000_vlan_mode(struct net_device *netdev,
171 netdev_features_t features);
Jiri Pirko8e586132011-12-08 19:52:37 -0500172static int e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid);
173static int e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174static void e1000_restore_vlan(struct e1000_adapter *adapter);
175
Auke Kok6fdfef12006-06-27 09:06:36 -0700176#ifdef CONFIG_PM
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +0000177static int e1000_suspend(struct pci_dev *pdev, pm_message_t state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static int e1000_resume(struct pci_dev *pdev);
179#endif
Auke Kokc653e632006-05-23 13:35:57 -0700180static void e1000_shutdown(struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182#ifdef CONFIG_NET_POLL_CONTROLLER
183/* for netdump / net console */
184static void e1000_netpoll (struct net_device *netdev);
185#endif
186
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100187#define COPYBREAK_DEFAULT 256
188static unsigned int copybreak __read_mostly = COPYBREAK_DEFAULT;
189module_param(copybreak, uint, 0644);
190MODULE_PARM_DESC(copybreak,
191 "Maximum size of packet that is copied to a new buffer on receive");
192
Auke Kok90267292006-06-08 09:30:24 -0700193static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
194 pci_channel_state_t state);
195static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev);
196static void e1000_io_resume(struct pci_dev *pdev);
197
198static struct pci_error_handlers e1000_err_handler = {
199 .error_detected = e1000_io_error_detected,
200 .slot_reset = e1000_io_slot_reset,
201 .resume = e1000_io_resume,
202};
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -0400203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204static struct pci_driver e1000_driver = {
205 .name = e1000_driver_name,
206 .id_table = e1000_pci_tbl,
207 .probe = e1000_probe,
208 .remove = __devexit_p(e1000_remove),
Auke Kokc4e24f02006-09-27 12:53:19 -0700209#ifdef CONFIG_PM
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300210 /* Power Management Hooks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 .suspend = e1000_suspend,
Auke Kokc653e632006-05-23 13:35:57 -0700212 .resume = e1000_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#endif
Auke Kok90267292006-06-08 09:30:24 -0700214 .shutdown = e1000_shutdown,
215 .err_handler = &e1000_err_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216};
217
218MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
219MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
220MODULE_LICENSE("GPL");
221MODULE_VERSION(DRV_VERSION);
222
223static int debug = NETIF_MSG_DRV | NETIF_MSG_PROBE;
224module_param(debug, int, 0);
225MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
226
227/**
Emil Tantilov675ad472010-04-27 14:02:58 +0000228 * e1000_get_hw_dev - return device
229 * used by hardware layer to print debugging information
230 *
231 **/
232struct net_device *e1000_get_hw_dev(struct e1000_hw *hw)
233{
234 struct e1000_adapter *adapter = hw->back;
235 return adapter->netdev;
236}
237
238/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 * e1000_init_module - Driver Registration Routine
240 *
241 * e1000_init_module is the first routine called when the driver is
242 * loaded. All it does is register with the PCI subsystem.
243 **/
244
Joe Perches64798842008-07-11 15:17:02 -0700245static int __init e1000_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 int ret;
Emil Tantilov675ad472010-04-27 14:02:58 +0000248 pr_info("%s - version %s\n", e1000_driver_string, e1000_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Emil Tantilov675ad472010-04-27 14:02:58 +0000250 pr_info("%s\n", e1000_copyright);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Jeff Garzik29917622006-08-19 17:48:59 -0400252 ret = pci_register_driver(&e1000_driver);
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100253 if (copybreak != COPYBREAK_DEFAULT) {
254 if (copybreak == 0)
Emil Tantilov675ad472010-04-27 14:02:58 +0000255 pr_info("copybreak disabled\n");
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100256 else
Emil Tantilov675ad472010-04-27 14:02:58 +0000257 pr_info("copybreak enabled for "
258 "packets <= %u bytes\n", copybreak);
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return ret;
261}
262
263module_init(e1000_init_module);
264
265/**
266 * e1000_exit_module - Driver Exit Cleanup Routine
267 *
268 * e1000_exit_module is called just before the driver is removed
269 * from memory.
270 **/
271
Joe Perches64798842008-07-11 15:17:02 -0700272static void __exit e1000_exit_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 pci_unregister_driver(&e1000_driver);
275}
276
277module_exit(e1000_exit_module);
278
Auke Kok2db10a02006-06-27 09:06:28 -0700279static int e1000_request_irq(struct e1000_adapter *adapter)
280{
281 struct net_device *netdev = adapter->netdev;
Al Viro3e188262007-12-11 19:49:39 +0000282 irq_handler_t handler = e1000_intr;
Auke Koke94bd232007-05-16 01:49:46 -0700283 int irq_flags = IRQF_SHARED;
284 int err;
Auke Kok2db10a02006-06-27 09:06:28 -0700285
Auke Koke94bd232007-05-16 01:49:46 -0700286 err = request_irq(adapter->pdev->irq, handler, irq_flags, netdev->name,
287 netdev);
288 if (err) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700289 e_err(probe, "Unable to allocate interrupt Error: %d\n", err);
Auke Koke94bd232007-05-16 01:49:46 -0700290 }
Auke Kok2db10a02006-06-27 09:06:28 -0700291
292 return err;
293}
294
295static void e1000_free_irq(struct e1000_adapter *adapter)
296{
297 struct net_device *netdev = adapter->netdev;
298
299 free_irq(adapter->pdev->irq, netdev);
Auke Kok2db10a02006-06-27 09:06:28 -0700300}
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302/**
303 * e1000_irq_disable - Mask off interrupt generation on the NIC
304 * @adapter: board private structure
305 **/
306
Joe Perches64798842008-07-11 15:17:02 -0700307static void e1000_irq_disable(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Joe Perches1dc32912008-07-11 15:17:08 -0700309 struct e1000_hw *hw = &adapter->hw;
310
311 ew32(IMC, ~0);
312 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 synchronize_irq(adapter->pdev->irq);
314}
315
316/**
317 * e1000_irq_enable - Enable default interrupt generation settings
318 * @adapter: board private structure
319 **/
320
Joe Perches64798842008-07-11 15:17:02 -0700321static void e1000_irq_enable(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Joe Perches1dc32912008-07-11 15:17:08 -0700323 struct e1000_hw *hw = &adapter->hw;
324
325 ew32(IMS, IMS_ENABLE_MASK);
326 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100328
Joe Perches64798842008-07-11 15:17:02 -0700329static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700330{
Joe Perches1dc32912008-07-11 15:17:08 -0700331 struct e1000_hw *hw = &adapter->hw;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700332 struct net_device *netdev = adapter->netdev;
Joe Perches1dc32912008-07-11 15:17:08 -0700333 u16 vid = hw->mng_cookie.vlan_id;
Joe Perches406874a2008-04-03 10:06:32 -0700334 u16 old_vid = adapter->mng_vlan_id;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800335
Jiri Pirko5622e402011-07-21 03:26:31 +0000336 if (!e1000_vlan_used(adapter))
337 return;
338
339 if (!test_bit(vid, adapter->active_vlans)) {
340 if (hw->mng_cookie.status &
341 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) {
342 e1000_vlan_rx_add_vid(netdev, vid);
Jeff Kirsherc5f226f2006-03-02 18:17:55 -0800343 adapter->mng_vlan_id = vid;
Jiri Pirko5622e402011-07-21 03:26:31 +0000344 } else {
345 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
346 }
347 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) &&
348 (vid != old_vid) &&
349 !test_bit(old_vid, adapter->active_vlans))
350 e1000_vlan_rx_kill_vid(netdev, old_vid);
351 } else {
352 adapter->mng_vlan_id = vid;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700353 }
354}
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800355
Joe Perches64798842008-07-11 15:17:02 -0700356static void e1000_init_manageability(struct e1000_adapter *adapter)
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500357{
Joe Perches1dc32912008-07-11 15:17:08 -0700358 struct e1000_hw *hw = &adapter->hw;
359
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500360 if (adapter->en_mng_pt) {
Joe Perches1dc32912008-07-11 15:17:08 -0700361 u32 manc = er32(MANC);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500362
363 /* disable hardware interception of ARP */
364 manc &= ~(E1000_MANC_ARP_EN);
365
Joe Perches1dc32912008-07-11 15:17:08 -0700366 ew32(MANC, manc);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500367 }
368}
369
Joe Perches64798842008-07-11 15:17:02 -0700370static void e1000_release_manageability(struct e1000_adapter *adapter)
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500371{
Joe Perches1dc32912008-07-11 15:17:08 -0700372 struct e1000_hw *hw = &adapter->hw;
373
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500374 if (adapter->en_mng_pt) {
Joe Perches1dc32912008-07-11 15:17:08 -0700375 u32 manc = er32(MANC);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500376
377 /* re-enable hardware interception of ARP */
378 manc |= E1000_MANC_ARP_EN;
379
Joe Perches1dc32912008-07-11 15:17:08 -0700380 ew32(MANC, manc);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500381 }
382}
383
Auke Koke0aac5a2007-03-06 08:57:21 -0800384/**
385 * e1000_configure - configure the hardware for RX and TX
386 * @adapter = private board structure
387 **/
388static void e1000_configure(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 struct net_device *netdev = adapter->netdev;
Auke Kok2db10a02006-06-27 09:06:28 -0700391 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Patrick McHardydb0ce502007-11-13 20:54:59 -0800393 e1000_set_rx_mode(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 e1000_restore_vlan(adapter);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500396 e1000_init_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 e1000_configure_tx(adapter);
399 e1000_setup_rctl(adapter);
400 e1000_configure_rx(adapter);
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800401 /* call E1000_DESC_UNUSED which always leaves
402 * at least 1 descriptor unused to make sure
403 * next_to_use != next_to_clean */
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800404 for (i = 0; i < adapter->num_rx_queues; i++) {
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800405 struct e1000_rx_ring *ring = &adapter->rx_ring[i];
Jeff Kirshera292ca62006-01-12 16:51:30 -0800406 adapter->alloc_rx_buf(adapter, ring,
407 E1000_DESC_UNUSED(ring));
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800408 }
Auke Koke0aac5a2007-03-06 08:57:21 -0800409}
Jeff Kirsher7bfa4812006-01-12 16:50:41 -0800410
Auke Koke0aac5a2007-03-06 08:57:21 -0800411int e1000_up(struct e1000_adapter *adapter)
412{
Joe Perches1dc32912008-07-11 15:17:08 -0700413 struct e1000_hw *hw = &adapter->hw;
414
Auke Koke0aac5a2007-03-06 08:57:21 -0800415 /* hardware has been reset, we need to reload some things */
416 e1000_configure(adapter);
Malli Chilakala5de55622005-04-28 19:39:30 -0700417
Auke Kok1314bbf2006-09-27 12:54:02 -0700418 clear_bit(__E1000_DOWN, &adapter->flags);
419
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700420 napi_enable(&adapter->napi);
Francois Romieuc3570ac2008-07-11 15:17:38 -0700421
Auke Koke0aac5a2007-03-06 08:57:21 -0800422 e1000_irq_enable(adapter);
423
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +0000424 netif_wake_queue(adapter->netdev);
425
Jesse Brandeburg79f3d392006-12-15 10:42:34 +0100426 /* fire a link change interrupt to start the watchdog */
Joe Perches1dc32912008-07-11 15:17:08 -0700427 ew32(ICS, E1000_ICS_LSC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return 0;
429}
430
Auke Kok79f05bf2006-06-27 09:06:32 -0700431/**
432 * e1000_power_up_phy - restore link in case the phy was powered down
433 * @adapter: address of board private structure
434 *
435 * The phy may be powered down to save power and turn off link when the
436 * driver is unloaded and wake on lan is not enabled (among others)
437 * *** this routine MUST be followed by a call to e1000_reset ***
438 *
439 **/
440
Jesse Brandeburgd6582662006-08-16 13:31:33 -0700441void e1000_power_up_phy(struct e1000_adapter *adapter)
Auke Kok79f05bf2006-06-27 09:06:32 -0700442{
Joe Perches1dc32912008-07-11 15:17:08 -0700443 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700444 u16 mii_reg = 0;
Auke Kok79f05bf2006-06-27 09:06:32 -0700445
446 /* Just clear the power down bit to wake the phy back up */
Joe Perches1dc32912008-07-11 15:17:08 -0700447 if (hw->media_type == e1000_media_type_copper) {
Auke Kok79f05bf2006-06-27 09:06:32 -0700448 /* according to the manual, the phy will retain its
449 * settings across a power-down/up cycle */
Joe Perches1dc32912008-07-11 15:17:08 -0700450 e1000_read_phy_reg(hw, PHY_CTRL, &mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700451 mii_reg &= ~MII_CR_POWER_DOWN;
Joe Perches1dc32912008-07-11 15:17:08 -0700452 e1000_write_phy_reg(hw, PHY_CTRL, mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700453 }
454}
455
456static void e1000_power_down_phy(struct e1000_adapter *adapter)
457{
Joe Perches1dc32912008-07-11 15:17:08 -0700458 struct e1000_hw *hw = &adapter->hw;
459
Bruce Allan61c25052006-09-27 12:53:54 -0700460 /* Power down the PHY so no link is implied when interface is down *
Joe Perchesc3033b02008-03-21 11:06:25 -0700461 * The PHY cannot be powered down if any of the following is true *
Auke Kok79f05bf2006-06-27 09:06:32 -0700462 * (a) WoL is enabled
463 * (b) AMT is active
464 * (c) SoL/IDER session is active */
Joe Perches1dc32912008-07-11 15:17:08 -0700465 if (!adapter->wol && hw->mac_type >= e1000_82540 &&
466 hw->media_type == e1000_media_type_copper) {
Joe Perches406874a2008-04-03 10:06:32 -0700467 u16 mii_reg = 0;
Bruce Allan61c25052006-09-27 12:53:54 -0700468
Joe Perches1dc32912008-07-11 15:17:08 -0700469 switch (hw->mac_type) {
Bruce Allan61c25052006-09-27 12:53:54 -0700470 case e1000_82540:
471 case e1000_82545:
472 case e1000_82545_rev_3:
473 case e1000_82546:
Dirk Brandewie5377a412011-01-06 14:29:54 +0000474 case e1000_ce4100:
Bruce Allan61c25052006-09-27 12:53:54 -0700475 case e1000_82546_rev_3:
476 case e1000_82541:
477 case e1000_82541_rev_2:
478 case e1000_82547:
479 case e1000_82547_rev_2:
Joe Perches1dc32912008-07-11 15:17:08 -0700480 if (er32(MANC) & E1000_MANC_SMBUS_EN)
Bruce Allan61c25052006-09-27 12:53:54 -0700481 goto out;
482 break;
Bruce Allan61c25052006-09-27 12:53:54 -0700483 default:
484 goto out;
485 }
Joe Perches1dc32912008-07-11 15:17:08 -0700486 e1000_read_phy_reg(hw, PHY_CTRL, &mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700487 mii_reg |= MII_CR_POWER_DOWN;
Joe Perches1dc32912008-07-11 15:17:08 -0700488 e1000_write_phy_reg(hw, PHY_CTRL, mii_reg);
Jesse Brandeburg4e0d8f7d2011-10-05 07:24:46 +0000489 msleep(1);
Auke Kok79f05bf2006-06-27 09:06:32 -0700490 }
Bruce Allan61c25052006-09-27 12:53:54 -0700491out:
492 return;
Auke Kok79f05bf2006-06-27 09:06:32 -0700493}
494
Jesse Brandeburga4010af2011-10-05 07:24:41 +0000495static void e1000_down_and_stop(struct e1000_adapter *adapter)
496{
497 set_bit(__E1000_DOWN, &adapter->flags);
498 cancel_work_sync(&adapter->reset_task);
499 cancel_delayed_work_sync(&adapter->watchdog_task);
500 cancel_delayed_work_sync(&adapter->phy_info_task);
501 cancel_delayed_work_sync(&adapter->fifo_stall_task);
502}
503
Joe Perches64798842008-07-11 15:17:02 -0700504void e1000_down(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000506 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct net_device *netdev = adapter->netdev;
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000508 u32 rctl, tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Auke Kok1314bbf2006-09-27 12:54:02 -0700510
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000511 /* disable receives in the hardware */
512 rctl = er32(RCTL);
513 ew32(RCTL, rctl & ~E1000_RCTL_EN);
514 /* flush and sleep below */
515
Jesse Brandeburg51851072009-09-25 12:17:01 +0000516 netif_tx_disable(netdev);
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000517
518 /* disable transmits in the hardware */
519 tctl = er32(TCTL);
520 tctl &= ~E1000_TCTL_EN;
521 ew32(TCTL, tctl);
522 /* flush both disables and wait for them to finish */
523 E1000_WRITE_FLUSH();
524 msleep(10);
525
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700526 napi_disable(&adapter->napi);
Francois Romieuc3570ac2008-07-11 15:17:38 -0700527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 e1000_irq_disable(adapter);
Jeff Kirsherc1605eb2006-03-02 18:16:38 -0800529
Anupam Chandaab088532010-11-21 09:54:21 -0800530 /*
531 * Setting DOWN must be after irq_disable to prevent
532 * a screaming interrupt. Setting DOWN also prevents
Jesse Brandeburga4010af2011-10-05 07:24:41 +0000533 * tasks from rescheduling.
Anupam Chandaab088532010-11-21 09:54:21 -0800534 */
Jesse Brandeburga4010af2011-10-05 07:24:41 +0000535 e1000_down_and_stop(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 adapter->link_speed = 0;
538 adapter->link_duplex = 0;
539 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 e1000_reset(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400542 e1000_clean_all_tx_rings(adapter);
543 e1000_clean_all_rx_rings(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
stephen hemminger38df7a32010-10-21 07:50:57 +0000546static void e1000_reinit_safe(struct e1000_adapter *adapter)
Jesse Brandeburg338c15e2010-09-22 18:22:42 +0000547{
548 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
549 msleep(1);
Jesse Brandeburg0ef4eed2011-10-05 07:24:51 +0000550 mutex_lock(&adapter->mutex);
Jesse Brandeburg338c15e2010-09-22 18:22:42 +0000551 e1000_down(adapter);
552 e1000_up(adapter);
Jesse Brandeburg0ef4eed2011-10-05 07:24:51 +0000553 mutex_unlock(&adapter->mutex);
Jesse Brandeburg338c15e2010-09-22 18:22:42 +0000554 clear_bit(__E1000_RESETTING, &adapter->flags);
555}
556
Joe Perches64798842008-07-11 15:17:02 -0700557void e1000_reinit_locked(struct e1000_adapter *adapter)
Auke Kok2db10a02006-06-27 09:06:28 -0700558{
Jesse Brandeburg338c15e2010-09-22 18:22:42 +0000559 /* if rtnl_lock is not held the call path is bogus */
560 ASSERT_RTNL();
Auke Kok2db10a02006-06-27 09:06:28 -0700561 WARN_ON(in_interrupt());
562 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
563 msleep(1);
564 e1000_down(adapter);
565 e1000_up(adapter);
566 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Joe Perches64798842008-07-11 15:17:02 -0700569void e1000_reset(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Joe Perches1dc32912008-07-11 15:17:08 -0700571 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700572 u32 pba = 0, tx_space, min_tx_space, min_rx_space;
Joe Perchesc3033b02008-03-21 11:06:25 -0700573 bool legacy_pba_adjust = false;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000574 u16 hwm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 /* Repartition Pba for greater than 9k mtu
577 * To take effect CTRL.RST is required.
578 */
579
Joe Perches1dc32912008-07-11 15:17:08 -0700580 switch (hw->mac_type) {
Bruce Allan018ea442006-12-15 10:39:45 +0100581 case e1000_82542_rev2_0:
582 case e1000_82542_rev2_1:
583 case e1000_82543:
584 case e1000_82544:
585 case e1000_82540:
586 case e1000_82541:
587 case e1000_82541_rev_2:
Joe Perchesc3033b02008-03-21 11:06:25 -0700588 legacy_pba_adjust = true;
Bruce Allan018ea442006-12-15 10:39:45 +0100589 pba = E1000_PBA_48K;
590 break;
591 case e1000_82545:
592 case e1000_82545_rev_3:
593 case e1000_82546:
Dirk Brandewie5377a412011-01-06 14:29:54 +0000594 case e1000_ce4100:
Bruce Allan018ea442006-12-15 10:39:45 +0100595 case e1000_82546_rev_3:
596 pba = E1000_PBA_48K;
597 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700598 case e1000_82547:
Malli Chilakala0e6ef3e2005-04-28 19:44:14 -0700599 case e1000_82547_rev_2:
Joe Perchesc3033b02008-03-21 11:06:25 -0700600 legacy_pba_adjust = true;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700601 pba = E1000_PBA_30K;
602 break;
Bruce Allan018ea442006-12-15 10:39:45 +0100603 case e1000_undefined:
604 case e1000_num_macs:
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700605 break;
606 }
607
Joe Perchesc3033b02008-03-21 11:06:25 -0700608 if (legacy_pba_adjust) {
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000609 if (hw->max_frame_size > E1000_RXBUFFER_8192)
Bruce Allan018ea442006-12-15 10:39:45 +0100610 pba -= 8; /* allocate more FIFO for Tx */
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700611
Joe Perches1dc32912008-07-11 15:17:08 -0700612 if (hw->mac_type == e1000_82547) {
Bruce Allan018ea442006-12-15 10:39:45 +0100613 adapter->tx_fifo_head = 0;
614 adapter->tx_head_addr = pba << E1000_TX_HEAD_ADDR_SHIFT;
615 adapter->tx_fifo_size =
616 (E1000_PBA_40K - pba) << E1000_PBA_BYTES_SHIFT;
617 atomic_set(&adapter->tx_fifo_stall, 0);
618 }
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000619 } else if (hw->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allan018ea442006-12-15 10:39:45 +0100620 /* adjust PBA for jumbo frames */
Joe Perches1dc32912008-07-11 15:17:08 -0700621 ew32(PBA, pba);
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700622
Bruce Allan018ea442006-12-15 10:39:45 +0100623 /* To maintain wire speed transmits, the Tx FIFO should be
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000624 * large enough to accommodate two full transmit packets,
Bruce Allan018ea442006-12-15 10:39:45 +0100625 * rounded up to the next 1KB and expressed in KB. Likewise,
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000626 * the Rx FIFO should be large enough to accommodate at least
Bruce Allan018ea442006-12-15 10:39:45 +0100627 * one full receive packet and is similarly rounded up and
628 * expressed in KB. */
Joe Perches1dc32912008-07-11 15:17:08 -0700629 pba = er32(PBA);
Bruce Allan018ea442006-12-15 10:39:45 +0100630 /* upper 16 bits has Tx packet buffer allocation size in KB */
631 tx_space = pba >> 16;
632 /* lower 16 bits has Rx packet buffer allocation size in KB */
633 pba &= 0xffff;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000634 /*
635 * the tx fifo also stores 16 bytes of information about the tx
636 * but don't include ethernet FCS because hardware appends it
637 */
638 min_tx_space = (hw->max_frame_size +
639 sizeof(struct e1000_tx_desc) -
640 ETH_FCS_LEN) * 2;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700641 min_tx_space = ALIGN(min_tx_space, 1024);
Bruce Allan018ea442006-12-15 10:39:45 +0100642 min_tx_space >>= 10;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000643 /* software strips receive CRC, so leave room for it */
644 min_rx_space = hw->max_frame_size;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700645 min_rx_space = ALIGN(min_rx_space, 1024);
Bruce Allan018ea442006-12-15 10:39:45 +0100646 min_rx_space >>= 10;
647
648 /* If current Tx allocation is less than the min Tx FIFO size,
649 * and the min Tx FIFO size is less than the current Rx FIFO
650 * allocation, take space away from current Rx allocation */
651 if (tx_space < min_tx_space &&
652 ((min_tx_space - tx_space) < pba)) {
653 pba = pba - (min_tx_space - tx_space);
654
655 /* PCI/PCIx hardware has PBA alignment constraints */
Joe Perches1dc32912008-07-11 15:17:08 -0700656 switch (hw->mac_type) {
Bruce Allan018ea442006-12-15 10:39:45 +0100657 case e1000_82545 ... e1000_82546_rev_3:
658 pba &= ~(E1000_PBA_8K - 1);
659 break;
660 default:
661 break;
662 }
663
664 /* if short on rx space, rx wins and must trump tx
665 * adjustment or use Early Receive if available */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000666 if (pba < min_rx_space)
667 pba = min_rx_space;
Bruce Allan018ea442006-12-15 10:39:45 +0100668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700670
Joe Perches1dc32912008-07-11 15:17:08 -0700671 ew32(PBA, pba);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000673 /*
674 * flow control settings:
675 * The high water mark must be low enough to fit one full frame
676 * (or the size used for early receive) above it in the Rx FIFO.
677 * Set it to the lower of:
678 * - 90% of the Rx FIFO size, and
679 * - the full Rx FIFO size minus the early receive size (for parts
680 * with ERT support assuming ERT set to E1000_ERT_2048), or
681 * - the full Rx FIFO size minus one full frame
682 */
683 hwm = min(((pba << 10) * 9 / 10),
684 ((pba << 10) - hw->max_frame_size));
Jeff Kirsherf11b7f82006-01-12 16:50:51 -0800685
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000686 hw->fc_high_water = hwm & 0xFFF8; /* 8-byte granularity */
687 hw->fc_low_water = hw->fc_high_water - 8;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000688 hw->fc_pause_time = E1000_FC_PAUSE_TIME;
Joe Perches1dc32912008-07-11 15:17:08 -0700689 hw->fc_send_xon = 1;
690 hw->fc = hw->original_fc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700692 /* Allow time for pending master requests to run */
Joe Perches1dc32912008-07-11 15:17:08 -0700693 e1000_reset_hw(hw);
694 if (hw->mac_type >= e1000_82544)
695 ew32(WUC, 0);
Jeff Kirsher09ae3e82006-09-27 12:53:51 -0700696
Joe Perches1dc32912008-07-11 15:17:08 -0700697 if (e1000_init_hw(hw))
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700698 e_dev_err("Hardware Error\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700699 e1000_update_mng_vlan(adapter);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100700
701 /* if (adapter->hwflags & HWFLAGS_PHY_PWR_BIT) { */
Joe Perches1dc32912008-07-11 15:17:08 -0700702 if (hw->mac_type >= e1000_82544 &&
Joe Perches1dc32912008-07-11 15:17:08 -0700703 hw->autoneg == 1 &&
704 hw->autoneg_advertised == ADVERTISE_1000_FULL) {
705 u32 ctrl = er32(CTRL);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100706 /* clear phy power management bit if we are in gig only mode,
707 * which if enabled will attempt negotiation to 100Mb, which
708 * can cause a loss of link at power off or driver unload */
709 ctrl &= ~E1000_CTRL_SWDPIN3;
Joe Perches1dc32912008-07-11 15:17:08 -0700710 ew32(CTRL, ctrl);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100711 }
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
Joe Perches1dc32912008-07-11 15:17:08 -0700714 ew32(VET, ETHERNET_IEEE_VLAN_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Joe Perches1dc32912008-07-11 15:17:08 -0700716 e1000_reset_adaptive(hw);
717 e1000_phy_get_info(hw, &adapter->phy_info);
Auke Kok9a53a202006-06-27 09:06:45 -0700718
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500719 e1000_release_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722/**
Auke Kok67b3c272007-12-17 13:50:23 -0800723 * Dump the eeprom for users having checksum issues
724 **/
Adrian Bunkb4ea8952008-02-01 08:21:28 -0800725static void e1000_dump_eeprom(struct e1000_adapter *adapter)
Auke Kok67b3c272007-12-17 13:50:23 -0800726{
727 struct net_device *netdev = adapter->netdev;
728 struct ethtool_eeprom eeprom;
729 const struct ethtool_ops *ops = netdev->ethtool_ops;
730 u8 *data;
731 int i;
732 u16 csum_old, csum_new = 0;
733
734 eeprom.len = ops->get_eeprom_len(netdev);
735 eeprom.offset = 0;
736
737 data = kmalloc(eeprom.len, GFP_KERNEL);
738 if (!data) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000739 pr_err("Unable to allocate memory to dump EEPROM data\n");
Auke Kok67b3c272007-12-17 13:50:23 -0800740 return;
741 }
742
743 ops->get_eeprom(netdev, &eeprom, data);
744
745 csum_old = (data[EEPROM_CHECKSUM_REG * 2]) +
746 (data[EEPROM_CHECKSUM_REG * 2 + 1] << 8);
747 for (i = 0; i < EEPROM_CHECKSUM_REG * 2; i += 2)
748 csum_new += data[i] + (data[i + 1] << 8);
749 csum_new = EEPROM_SUM - csum_new;
750
Emil Tantilov675ad472010-04-27 14:02:58 +0000751 pr_err("/*********************/\n");
752 pr_err("Current EEPROM Checksum : 0x%04x\n", csum_old);
753 pr_err("Calculated : 0x%04x\n", csum_new);
Auke Kok67b3c272007-12-17 13:50:23 -0800754
Emil Tantilov675ad472010-04-27 14:02:58 +0000755 pr_err("Offset Values\n");
756 pr_err("======== ======\n");
Auke Kok67b3c272007-12-17 13:50:23 -0800757 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, data, 128, 0);
758
Emil Tantilov675ad472010-04-27 14:02:58 +0000759 pr_err("Include this output when contacting your support provider.\n");
760 pr_err("This is not a software error! Something bad happened to\n");
761 pr_err("your hardware or EEPROM image. Ignoring this problem could\n");
762 pr_err("result in further problems, possibly loss of data,\n");
763 pr_err("corruption or system hangs!\n");
764 pr_err("The MAC Address will be reset to 00:00:00:00:00:00,\n");
765 pr_err("which is invalid and requires you to set the proper MAC\n");
766 pr_err("address manually before continuing to enable this network\n");
767 pr_err("device. Please inspect the EEPROM dump and report the\n");
768 pr_err("issue to your hardware vendor or Intel Customer Support.\n");
769 pr_err("/*********************/\n");
Auke Kok67b3c272007-12-17 13:50:23 -0800770
771 kfree(data);
772}
773
774/**
Taku Izumi81250292008-07-11 15:17:44 -0700775 * e1000_is_need_ioport - determine if an adapter needs ioport resources or not
776 * @pdev: PCI device information struct
777 *
778 * Return true if an adapter needs ioport resources
779 **/
780static int e1000_is_need_ioport(struct pci_dev *pdev)
781{
782 switch (pdev->device) {
783 case E1000_DEV_ID_82540EM:
784 case E1000_DEV_ID_82540EM_LOM:
785 case E1000_DEV_ID_82540EP:
786 case E1000_DEV_ID_82540EP_LOM:
787 case E1000_DEV_ID_82540EP_LP:
788 case E1000_DEV_ID_82541EI:
789 case E1000_DEV_ID_82541EI_MOBILE:
790 case E1000_DEV_ID_82541ER:
791 case E1000_DEV_ID_82541ER_LOM:
792 case E1000_DEV_ID_82541GI:
793 case E1000_DEV_ID_82541GI_LF:
794 case E1000_DEV_ID_82541GI_MOBILE:
795 case E1000_DEV_ID_82544EI_COPPER:
796 case E1000_DEV_ID_82544EI_FIBER:
797 case E1000_DEV_ID_82544GC_COPPER:
798 case E1000_DEV_ID_82544GC_LOM:
799 case E1000_DEV_ID_82545EM_COPPER:
800 case E1000_DEV_ID_82545EM_FIBER:
801 case E1000_DEV_ID_82546EB_COPPER:
802 case E1000_DEV_ID_82546EB_FIBER:
803 case E1000_DEV_ID_82546EB_QUAD_COPPER:
804 return true;
805 default:
806 return false;
807 }
808}
809
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000810static netdev_features_t e1000_fix_features(struct net_device *netdev,
811 netdev_features_t features)
Jiri Pirko5622e402011-07-21 03:26:31 +0000812{
813 /*
814 * Since there is no support for separate rx/tx vlan accel
815 * enable/disable make sure tx flag is always in same state as rx.
816 */
817 if (features & NETIF_F_HW_VLAN_RX)
818 features |= NETIF_F_HW_VLAN_TX;
819 else
820 features &= ~NETIF_F_HW_VLAN_TX;
821
822 return features;
823}
824
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000825static int e1000_set_features(struct net_device *netdev,
826 netdev_features_t features)
Michał Mirosławe97d3202011-06-08 08:36:42 +0000827{
828 struct e1000_adapter *adapter = netdev_priv(netdev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000829 netdev_features_t changed = features ^ netdev->features;
Michał Mirosławe97d3202011-06-08 08:36:42 +0000830
Jiri Pirko5622e402011-07-21 03:26:31 +0000831 if (changed & NETIF_F_HW_VLAN_RX)
832 e1000_vlan_mode(netdev, features);
833
Michał Mirosławe97d3202011-06-08 08:36:42 +0000834 if (!(changed & NETIF_F_RXCSUM))
835 return 0;
836
837 adapter->rx_csum = !!(features & NETIF_F_RXCSUM);
838
839 if (netif_running(netdev))
840 e1000_reinit_locked(adapter);
841 else
842 e1000_reset(adapter);
843
844 return 0;
845}
846
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800847static const struct net_device_ops e1000_netdev_ops = {
848 .ndo_open = e1000_open,
849 .ndo_stop = e1000_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800850 .ndo_start_xmit = e1000_xmit_frame,
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800851 .ndo_get_stats = e1000_get_stats,
852 .ndo_set_rx_mode = e1000_set_rx_mode,
853 .ndo_set_mac_address = e1000_set_mac,
Jiri Pirko5622e402011-07-21 03:26:31 +0000854 .ndo_tx_timeout = e1000_tx_timeout,
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800855 .ndo_change_mtu = e1000_change_mtu,
856 .ndo_do_ioctl = e1000_ioctl,
857 .ndo_validate_addr = eth_validate_addr,
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800858 .ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
859 .ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
860#ifdef CONFIG_NET_POLL_CONTROLLER
861 .ndo_poll_controller = e1000_netpoll,
862#endif
Jiri Pirko5622e402011-07-21 03:26:31 +0000863 .ndo_fix_features = e1000_fix_features,
864 .ndo_set_features = e1000_set_features,
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800865};
866
Taku Izumi81250292008-07-11 15:17:44 -0700867/**
Jesse Brandeburge508be12010-09-07 21:01:12 +0000868 * e1000_init_hw_struct - initialize members of hw struct
869 * @adapter: board private struct
870 * @hw: structure used by e1000_hw.c
871 *
872 * Factors out initialization of the e1000_hw struct to its own function
873 * that can be called very early at init (just after struct allocation).
874 * Fields are initialized based on PCI device information and
875 * OS network device settings (MTU size).
876 * Returns negative error codes if MAC type setup fails.
877 */
878static int e1000_init_hw_struct(struct e1000_adapter *adapter,
879 struct e1000_hw *hw)
880{
881 struct pci_dev *pdev = adapter->pdev;
882
883 /* PCI config space info */
884 hw->vendor_id = pdev->vendor;
885 hw->device_id = pdev->device;
886 hw->subsystem_vendor_id = pdev->subsystem_vendor;
887 hw->subsystem_id = pdev->subsystem_device;
888 hw->revision_id = pdev->revision;
889
890 pci_read_config_word(pdev, PCI_COMMAND, &hw->pci_cmd_word);
891
892 hw->max_frame_size = adapter->netdev->mtu +
893 ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
894 hw->min_frame_size = MINIMUM_ETHERNET_FRAME_SIZE;
895
896 /* identify the MAC */
897 if (e1000_set_mac_type(hw)) {
898 e_err(probe, "Unknown MAC Type\n");
899 return -EIO;
900 }
901
902 switch (hw->mac_type) {
903 default:
904 break;
905 case e1000_82541:
906 case e1000_82547:
907 case e1000_82541_rev_2:
908 case e1000_82547_rev_2:
909 hw->phy_init_script = 1;
910 break;
911 }
912
913 e1000_set_media_type(hw);
914 e1000_get_bus_info(hw);
915
916 hw->wait_autoneg_complete = false;
917 hw->tbi_compatibility_en = true;
918 hw->adaptive_ifs = true;
919
920 /* Copper options */
921
922 if (hw->media_type == e1000_media_type_copper) {
923 hw->mdix = AUTO_ALL_MODES;
924 hw->disable_polarity_correction = false;
925 hw->master_slave = E1000_MASTER_SLAVE;
926 }
927
928 return 0;
929}
930
931/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 * e1000_probe - Device Initialization Routine
933 * @pdev: PCI device information struct
934 * @ent: entry in e1000_pci_tbl
935 *
936 * Returns 0 on success, negative on failure
937 *
938 * e1000_probe initializes an adapter identified by a pci_dev structure.
939 * The OS initialization, configuring of the adapter private structure,
940 * and a hardware reset occur.
941 **/
Joe Perches1dc32912008-07-11 15:17:08 -0700942static int __devinit e1000_probe(struct pci_dev *pdev,
943 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
945 struct net_device *netdev;
946 struct e1000_adapter *adapter;
Joe Perches1dc32912008-07-11 15:17:08 -0700947 struct e1000_hw *hw;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 static int cards_found = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -0700950 static int global_quad_port_a = 0; /* global ksp3 port a indication */
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700951 int i, err, pci_using_dac;
Joe Perches406874a2008-04-03 10:06:32 -0700952 u16 eeprom_data = 0;
Dirk Brandewie5377a412011-01-06 14:29:54 +0000953 u16 tmp = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700954 u16 eeprom_apme_mask = E1000_EEPROM_APME;
Taku Izumi81250292008-07-11 15:17:44 -0700955 int bars, need_ioport;
Joe Perches0795af52007-10-03 17:59:30 -0700956
Taku Izumi81250292008-07-11 15:17:44 -0700957 /* do not allocate ioport bars when not needed */
958 need_ioport = e1000_is_need_ioport(pdev);
959 if (need_ioport) {
960 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
961 err = pci_enable_device(pdev);
962 } else {
963 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Karsten Keil4d7155b2009-02-03 15:18:01 -0800964 err = pci_enable_device_mem(pdev);
Taku Izumi81250292008-07-11 15:17:44 -0700965 }
Joe Perchesc7be73b2008-07-11 15:17:28 -0700966 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return err;
968
Taku Izumi81250292008-07-11 15:17:44 -0700969 err = pci_request_selected_regions(pdev, bars, e1000_driver_name);
Joe Perchesc7be73b2008-07-11 15:17:28 -0700970 if (err)
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700971 goto err_pci_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 pci_set_master(pdev);
Nick Nunleydbb5aae2010-02-03 14:49:48 +0000974 err = pci_save_state(pdev);
975 if (err)
976 goto err_alloc_etherdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700978 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700980 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 goto err_alloc_etherdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 SET_NETDEV_DEV(netdev, &pdev->dev);
984
985 pci_set_drvdata(pdev, netdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -0700986 adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 adapter->netdev = netdev;
988 adapter->pdev = pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 adapter->msg_enable = (1 << debug) - 1;
Taku Izumi81250292008-07-11 15:17:44 -0700990 adapter->bars = bars;
991 adapter->need_ioport = need_ioport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Joe Perches1dc32912008-07-11 15:17:08 -0700993 hw = &adapter->hw;
994 hw->back = adapter;
995
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700996 err = -EIO;
Arjan van de Ven275f1652008-10-20 21:42:39 -0700997 hw->hw_addr = pci_ioremap_bar(pdev, BAR_0);
Joe Perches1dc32912008-07-11 15:17:08 -0700998 if (!hw->hw_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 goto err_ioremap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Taku Izumi81250292008-07-11 15:17:44 -07001001 if (adapter->need_ioport) {
1002 for (i = BAR_1; i <= BAR_5; i++) {
1003 if (pci_resource_len(pdev, i) == 0)
1004 continue;
1005 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
1006 hw->io_base = pci_resource_start(pdev, i);
1007 break;
1008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
1010 }
1011
Jesse Brandeburge508be12010-09-07 21:01:12 +00001012 /* make ready for any if (hw->...) below */
1013 err = e1000_init_hw_struct(adapter, hw);
1014 if (err)
1015 goto err_sw_init;
1016
1017 /*
1018 * there is a workaround being applied below that limits
1019 * 64-bit DMA addresses to 64-bit hardware. There are some
1020 * 32-bit adapters that Tx hang when given 64-bit DMA addresses
1021 */
1022 pci_using_dac = 0;
1023 if ((hw->bus_type == e1000_bus_type_pcix) &&
1024 !dma_set_mask(&pdev->dev, DMA_BIT_MASK(64))) {
1025 /*
1026 * according to DMA-API-HOWTO, coherent calls will always
1027 * succeed if the set call did
1028 */
1029 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
1030 pci_using_dac = 1;
Jesse Brandeburge508be12010-09-07 21:01:12 +00001031 } else {
Dean Nelson19a0b672010-11-11 05:50:25 +00001032 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
1033 if (err) {
1034 pr_err("No usable DMA config, aborting\n");
1035 goto err_dma;
1036 }
1037 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
Jesse Brandeburge508be12010-09-07 21:01:12 +00001038 }
1039
Stephen Hemminger0e7614b2008-11-19 22:18:22 -08001040 netdev->netdev_ops = &e1000_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 e1000_set_ethtool_ops(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 netdev->watchdog_timeo = 5 * HZ;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001043 netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
Stephen Hemminger0e7614b2008-11-19 22:18:22 -08001044
Auke Kok0eb5a342006-09-27 12:53:17 -07001045 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 adapter->bd_number = cards_found;
1048
1049 /* setup the private structure */
1050
Joe Perchesc7be73b2008-07-11 15:17:28 -07001051 err = e1000_sw_init(adapter);
1052 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 goto err_sw_init;
1054
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001055 err = -EIO;
Dirk Brandewie5377a412011-01-06 14:29:54 +00001056 if (hw->mac_type == e1000_ce4100) {
1057 ce4100_gbe_mdio_base_phy = pci_resource_start(pdev, BAR_1);
1058 ce4100_gbe_mdio_base_virt = ioremap(ce4100_gbe_mdio_base_phy,
1059 pci_resource_len(pdev, BAR_1));
1060
1061 if (!ce4100_gbe_mdio_base_virt)
1062 goto err_mdio_ioremap;
1063 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001064
Joe Perches1dc32912008-07-11 15:17:08 -07001065 if (hw->mac_type >= e1000_82543) {
Michał Mirosławe97d3202011-06-08 08:36:42 +00001066 netdev->hw_features = NETIF_F_SG |
Jiri Pirko5622e402011-07-21 03:26:31 +00001067 NETIF_F_HW_CSUM |
1068 NETIF_F_HW_VLAN_RX;
Michał Mirosławe97d3202011-06-08 08:36:42 +00001069 netdev->features = NETIF_F_HW_VLAN_TX |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 NETIF_F_HW_VLAN_FILTER;
1071 }
1072
Joe Perches1dc32912008-07-11 15:17:08 -07001073 if ((hw->mac_type >= e1000_82544) &&
1074 (hw->mac_type != e1000_82547))
Michał Mirosławe97d3202011-06-08 08:36:42 +00001075 netdev->hw_features |= NETIF_F_TSO;
1076
1077 netdev->features |= netdev->hw_features;
1078 netdev->hw_features |= NETIF_F_RXCSUM;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001079
Yi Zou7b872a52010-09-22 17:57:58 +00001080 if (pci_using_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00001082 netdev->vlan_features |= NETIF_F_HIGHDMA;
1083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Patrick McHardy20501a62008-10-11 12:25:59 -07001085 netdev->vlan_features |= NETIF_F_TSO;
Patrick McHardy20501a62008-10-11 12:25:59 -07001086 netdev->vlan_features |= NETIF_F_HW_CSUM;
1087 netdev->vlan_features |= NETIF_F_SG;
1088
Jiri Pirko01789342011-08-16 06:29:00 +00001089 netdev->priv_flags |= IFF_UNICAST_FLT;
1090
Joe Perches1dc32912008-07-11 15:17:08 -07001091 adapter->en_mng_pt = e1000_enable_mng_pass_thru(hw);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001092
Auke Kokcd94dd02006-06-27 09:08:22 -07001093 /* initialize eeprom parameters */
Joe Perches1dc32912008-07-11 15:17:08 -07001094 if (e1000_init_eeprom_params(hw)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001095 e_err(probe, "EEPROM initialization failed\n");
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001096 goto err_eeprom;
Auke Kokcd94dd02006-06-27 09:08:22 -07001097 }
1098
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001099 /* before reading the EEPROM, reset the controller to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 * put the device in a known good starting state */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001101
Joe Perches1dc32912008-07-11 15:17:08 -07001102 e1000_reset_hw(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 /* make sure the EEPROM is good */
Joe Perches1dc32912008-07-11 15:17:08 -07001105 if (e1000_validate_eeprom_checksum(hw) < 0) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001106 e_err(probe, "The EEPROM Checksum Is Not Valid\n");
Auke Kok67b3c272007-12-17 13:50:23 -08001107 e1000_dump_eeprom(adapter);
1108 /*
1109 * set MAC address to all zeroes to invalidate and temporary
1110 * disable this device for the user. This blocks regular
1111 * traffic while still permitting ethtool ioctls from reaching
1112 * the hardware as well as allowing the user to run the
1113 * interface after manually setting a hw addr using
1114 * `ip set address`
1115 */
Joe Perches1dc32912008-07-11 15:17:08 -07001116 memset(hw->mac_addr, 0, netdev->addr_len);
Auke Kok67b3c272007-12-17 13:50:23 -08001117 } else {
1118 /* copy the MAC address out of the EEPROM */
Joe Perches1dc32912008-07-11 15:17:08 -07001119 if (e1000_read_mac_addr(hw))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001120 e_err(probe, "EEPROM Read Error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
Auke Kok67b3c272007-12-17 13:50:23 -08001122 /* don't block initalization here due to bad MAC address */
Joe Perches1dc32912008-07-11 15:17:08 -07001123 memcpy(netdev->dev_addr, hw->mac_addr, netdev->addr_len);
1124 memcpy(netdev->perm_addr, hw->mac_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Auke Kok67b3c272007-12-17 13:50:23 -08001126 if (!is_valid_ether_addr(netdev->perm_addr))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001127 e_err(probe, "Invalid MAC Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Jesse Brandeburga4010af2011-10-05 07:24:41 +00001130 INIT_DELAYED_WORK(&adapter->watchdog_task, e1000_watchdog);
1131 INIT_DELAYED_WORK(&adapter->fifo_stall_task,
1132 e1000_82547_tx_fifo_stall_task);
1133 INIT_DELAYED_WORK(&adapter->phy_info_task, e1000_update_phy_info_task);
David Howells65f27f32006-11-22 14:55:48 +00001134 INIT_WORK(&adapter->reset_task, e1000_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 e1000_check_options(adapter);
1137
1138 /* Initial Wake on LAN setting
1139 * If APM wake is enabled in the EEPROM,
1140 * enable the ACPI Magic Packet filter
1141 */
1142
Joe Perches1dc32912008-07-11 15:17:08 -07001143 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 case e1000_82542_rev2_0:
1145 case e1000_82542_rev2_1:
1146 case e1000_82543:
1147 break;
1148 case e1000_82544:
Joe Perches1dc32912008-07-11 15:17:08 -07001149 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 EEPROM_INIT_CONTROL2_REG, 1, &eeprom_data);
1151 eeprom_apme_mask = E1000_EEPROM_82544_APM;
1152 break;
1153 case e1000_82546:
1154 case e1000_82546_rev_3:
Joe Perches1dc32912008-07-11 15:17:08 -07001155 if (er32(STATUS) & E1000_STATUS_FUNC_1){
1156 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 EEPROM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
1158 break;
1159 }
1160 /* Fall Through */
1161 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001162 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 EEPROM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
1164 break;
1165 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001166 if (eeprom_data & eeprom_apme_mask)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001167 adapter->eeprom_wol |= E1000_WUFC_MAG;
1168
1169 /* now that we have the eeprom settings, apply the special cases
1170 * where the eeprom may be wrong or the board simply won't support
1171 * wake on lan on a particular port */
1172 switch (pdev->device) {
1173 case E1000_DEV_ID_82546GB_PCIE:
1174 adapter->eeprom_wol = 0;
1175 break;
1176 case E1000_DEV_ID_82546EB_FIBER:
1177 case E1000_DEV_ID_82546GB_FIBER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001178 /* Wake events only supported on port A for dual fiber
1179 * regardless of eeprom setting */
Joe Perches1dc32912008-07-11 15:17:08 -07001180 if (er32(STATUS) & E1000_STATUS_FUNC_1)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001181 adapter->eeprom_wol = 0;
1182 break;
1183 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1184 /* if quad port adapter, disable WoL on all but port A */
1185 if (global_quad_port_a != 0)
1186 adapter->eeprom_wol = 0;
1187 else
Rusty Russell3db1cd52011-12-19 13:56:45 +00001188 adapter->quad_port_a = true;
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001189 /* Reset for multiple quad port adapters */
1190 if (++global_quad_port_a == 4)
1191 global_quad_port_a = 0;
1192 break;
1193 }
1194
1195 /* initialize the wol settings based on the eeprom settings */
1196 adapter->wol = adapter->eeprom_wol;
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001197 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Dirk Brandewie5377a412011-01-06 14:29:54 +00001199 /* Auto detect PHY address */
1200 if (hw->mac_type == e1000_ce4100) {
1201 for (i = 0; i < 32; i++) {
1202 hw->phy_addr = i;
1203 e1000_read_phy_reg(hw, PHY_ID2, &tmp);
1204 if (tmp == 0 || tmp == 0xFF) {
1205 if (i == 31)
1206 goto err_eeprom;
1207 continue;
1208 } else
1209 break;
1210 }
1211 }
1212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 /* reset the hardware with the new settings */
1214 e1000_reset(adapter);
1215
Auke Kok416b5d12007-06-01 10:22:39 -07001216 strcpy(netdev->name, "eth%d");
Joe Perchesc7be73b2008-07-11 15:17:28 -07001217 err = register_netdev(netdev);
1218 if (err)
Auke Kok416b5d12007-06-01 10:22:39 -07001219 goto err_register;
Auke Kok1314bbf2006-09-27 12:54:02 -07001220
Jiri Pirko5622e402011-07-21 03:26:31 +00001221 e1000_vlan_mode(netdev, netdev->features);
1222
Emil Tantilov675ad472010-04-27 14:02:58 +00001223 /* print bus type/speed/width info */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001224 e_info(probe, "(PCI%s:%dMHz:%d-bit) %pM\n",
Joe Perches7837e582010-06-11 12:51:49 +00001225 ((hw->bus_type == e1000_bus_type_pcix) ? "-X" : ""),
1226 ((hw->bus_speed == e1000_bus_speed_133) ? 133 :
1227 (hw->bus_speed == e1000_bus_speed_120) ? 120 :
1228 (hw->bus_speed == e1000_bus_speed_100) ? 100 :
1229 (hw->bus_speed == e1000_bus_speed_66) ? 66 : 33),
1230 ((hw->bus_width == e1000_bus_width_64) ? 64 : 32),
1231 netdev->dev_addr);
Emil Tantilov675ad472010-04-27 14:02:58 +00001232
Jesse Brandeburgeb62efd2009-04-17 20:44:36 +00001233 /* carrier off reporting is important to ethtool even BEFORE open */
1234 netif_carrier_off(netdev);
1235
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001236 e_info(probe, "Intel(R) PRO/1000 Network Connection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 cards_found++;
1239 return 0;
1240
1241err_register:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001242err_eeprom:
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001243 e1000_phy_hw_reset(hw);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001244
Joe Perches1dc32912008-07-11 15:17:08 -07001245 if (hw->flash_address)
1246 iounmap(hw->flash_address);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001247 kfree(adapter->tx_ring);
1248 kfree(adapter->rx_ring);
Jesse Brandeburge508be12010-09-07 21:01:12 +00001249err_dma:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250err_sw_init:
Dirk Brandewie5377a412011-01-06 14:29:54 +00001251err_mdio_ioremap:
1252 iounmap(ce4100_gbe_mdio_base_virt);
Joe Perches1dc32912008-07-11 15:17:08 -07001253 iounmap(hw->hw_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254err_ioremap:
1255 free_netdev(netdev);
1256err_alloc_etherdev:
Taku Izumi81250292008-07-11 15:17:44 -07001257 pci_release_selected_regions(pdev, bars);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001258err_pci_reg:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001259 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return err;
1261}
1262
1263/**
1264 * e1000_remove - Device Removal Routine
1265 * @pdev: PCI device information struct
1266 *
1267 * e1000_remove is called by the PCI subsystem to alert the driver
1268 * that it should release a PCI device. The could be caused by a
1269 * Hot-Plug event, or because the driver is going to be removed from
1270 * memory.
1271 **/
1272
Joe Perches64798842008-07-11 15:17:02 -07001273static void __devexit e1000_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
1275 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07001276 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001277 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Jesse Brandeburga4010af2011-10-05 07:24:41 +00001279 e1000_down_and_stop(adapter);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05001280 e1000_release_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001282 unregister_netdev(netdev);
1283
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001284 e1000_phy_hw_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001286 kfree(adapter->tx_ring);
1287 kfree(adapter->rx_ring);
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001288
Florian Fainelli1c267502012-01-04 20:23:34 +00001289 if (hw->mac_type == e1000_ce4100)
1290 iounmap(ce4100_gbe_mdio_base_virt);
Joe Perches1dc32912008-07-11 15:17:08 -07001291 iounmap(hw->hw_addr);
1292 if (hw->flash_address)
1293 iounmap(hw->flash_address);
Taku Izumi81250292008-07-11 15:17:44 -07001294 pci_release_selected_regions(pdev, adapter->bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 free_netdev(netdev);
1297
1298 pci_disable_device(pdev);
1299}
1300
1301/**
1302 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
1303 * @adapter: board private structure to initialize
1304 *
1305 * e1000_sw_init initializes the Adapter private data structure.
Jesse Brandeburge508be12010-09-07 21:01:12 +00001306 * e1000_init_hw_struct MUST be called before this function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 **/
1308
Joe Perches64798842008-07-11 15:17:02 -07001309static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
Auke Kokeb0f8052006-07-14 16:14:48 -07001311 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001313 adapter->num_tx_queues = 1;
1314 adapter->num_rx_queues = 1;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001315
1316 if (e1000_alloc_queues(adapter)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001317 e_err(probe, "Unable to allocate memory for queues\n");
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001318 return -ENOMEM;
1319 }
1320
Herbert Xu47313052007-05-29 15:07:31 -07001321 /* Explicitly disable IRQ since the NIC can be in any state. */
Herbert Xu47313052007-05-29 15:07:31 -07001322 e1000_irq_disable(adapter);
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 spin_lock_init(&adapter->stats_lock);
Jesse Brandeburg0ef4eed2011-10-05 07:24:51 +00001325 mutex_init(&adapter->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Auke Kok1314bbf2006-09-27 12:54:02 -07001327 set_bit(__E1000_DOWN, &adapter->flags);
1328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return 0;
1330}
1331
1332/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001333 * e1000_alloc_queues - Allocate memory for all rings
1334 * @adapter: board private structure to initialize
1335 *
1336 * We allocate one ring per queue at run-time since we don't know the
Wang Chen3e1d7cd2008-12-03 22:07:10 -08001337 * number of queues at compile-time.
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001338 **/
1339
Joe Perches64798842008-07-11 15:17:02 -07001340static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001341{
Yan Burman1c7e5b12007-03-06 08:58:04 -08001342 adapter->tx_ring = kcalloc(adapter->num_tx_queues,
1343 sizeof(struct e1000_tx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001344 if (!adapter->tx_ring)
1345 return -ENOMEM;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001346
Yan Burman1c7e5b12007-03-06 08:58:04 -08001347 adapter->rx_ring = kcalloc(adapter->num_rx_queues,
1348 sizeof(struct e1000_rx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001349 if (!adapter->rx_ring) {
1350 kfree(adapter->tx_ring);
1351 return -ENOMEM;
1352 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001353
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001354 return E1000_SUCCESS;
1355}
1356
1357/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 * e1000_open - Called when a network interface is made active
1359 * @netdev: network interface device structure
1360 *
1361 * Returns 0 on success, negative value on failure
1362 *
1363 * The open entry point is called when a network interface is made
1364 * active by the system (IFF_UP). At this point all resources needed
1365 * for transmit and receive operations are allocated, the interrupt
Jesse Brandeburga4010af2011-10-05 07:24:41 +00001366 * handler is registered with the OS, the watchdog task is started,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 * and the stack is notified that the interface is ready.
1368 **/
1369
Joe Perches64798842008-07-11 15:17:02 -07001370static int e1000_open(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001372 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001373 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 int err;
1375
Auke Kok2db10a02006-06-27 09:06:28 -07001376 /* disallow open during test */
Auke Kok1314bbf2006-09-27 12:54:02 -07001377 if (test_bit(__E1000_TESTING, &adapter->flags))
Auke Kok2db10a02006-06-27 09:06:28 -07001378 return -EBUSY;
1379
Jesse Brandeburgeb62efd2009-04-17 20:44:36 +00001380 netif_carrier_off(netdev);
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 /* allocate transmit descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001383 err = e1000_setup_all_tx_resources(adapter);
1384 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 goto err_setup_tx;
1386
1387 /* allocate receive descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001388 err = e1000_setup_all_rx_resources(adapter);
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001389 if (err)
Auke Koke0aac5a2007-03-06 08:57:21 -08001390 goto err_setup_rx;
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001391
Auke Kok79f05bf2006-06-27 09:06:32 -07001392 e1000_power_up_phy(adapter);
1393
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001394 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Joe Perches1dc32912008-07-11 15:17:08 -07001395 if ((hw->mng_cookie.status &
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001396 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT)) {
1397 e1000_update_mng_vlan(adapter);
1398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Auke Koke0aac5a2007-03-06 08:57:21 -08001400 /* before we allocate an interrupt, we must be ready to handle it.
1401 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
1402 * as soon as we call pci_request_irq, so we have to setup our
1403 * clean_rx handler before we do so. */
1404 e1000_configure(adapter);
1405
1406 err = e1000_request_irq(adapter);
1407 if (err)
1408 goto err_req_irq;
1409
1410 /* From here on the code is the same as e1000_up() */
1411 clear_bit(__E1000_DOWN, &adapter->flags);
1412
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001413 napi_enable(&adapter->napi);
Herbert Xu47313052007-05-29 15:07:31 -07001414
Auke Koke0aac5a2007-03-06 08:57:21 -08001415 e1000_irq_enable(adapter);
1416
Ben Hutchings076152d2008-07-18 17:50:57 -07001417 netif_start_queue(netdev);
1418
Auke Koke0aac5a2007-03-06 08:57:21 -08001419 /* fire a link status change interrupt to start the watchdog */
Joe Perches1dc32912008-07-11 15:17:08 -07001420 ew32(ICS, E1000_ICS_LSC);
Auke Koke0aac5a2007-03-06 08:57:21 -08001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 return E1000_SUCCESS;
1423
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001424err_req_irq:
Auke Koke0aac5a2007-03-06 08:57:21 -08001425 e1000_power_down_phy(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001426 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427err_setup_rx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001428 e1000_free_all_tx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429err_setup_tx:
1430 e1000_reset(adapter);
1431
1432 return err;
1433}
1434
1435/**
1436 * e1000_close - Disables a network interface
1437 * @netdev: network interface device structure
1438 *
1439 * Returns 0, this is not allowed to fail
1440 *
1441 * The close entry point is called when an interface is de-activated
1442 * by the OS. The hardware is still under the drivers control, but
1443 * needs to be disabled. A global MAC reset is issued to stop the
1444 * hardware, and all transmit and receive resources are freed.
1445 **/
1446
Joe Perches64798842008-07-11 15:17:02 -07001447static int e1000_close(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001449 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001450 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Auke Kok2db10a02006-06-27 09:06:28 -07001452 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 e1000_down(adapter);
Auke Kok79f05bf2006-06-27 09:06:32 -07001454 e1000_power_down_phy(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07001455 e1000_free_irq(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001457 e1000_free_all_tx_resources(adapter);
1458 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Bruce Allan46665602006-09-27 12:54:08 -07001460 /* kill manageability vlan ID if supported, but not if a vlan with
1461 * the same ID is registered on the host OS (let 8021q kill it) */
Joe Perches1dc32912008-07-11 15:17:08 -07001462 if ((hw->mng_cookie.status &
Bruce Allan46665602006-09-27 12:54:08 -07001463 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
Jiri Pirko5622e402011-07-21 03:26:31 +00001464 !test_bit(adapter->mng_vlan_id, adapter->active_vlans)) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001465 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
1466 }
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 return 0;
1469}
1470
1471/**
1472 * e1000_check_64k_bound - check that memory doesn't cross 64kB boundary
1473 * @adapter: address of board private structure
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001474 * @start: address of beginning of memory
1475 * @len: length of memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 **/
Joe Perches64798842008-07-11 15:17:02 -07001477static bool e1000_check_64k_bound(struct e1000_adapter *adapter, void *start,
1478 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Joe Perches1dc32912008-07-11 15:17:08 -07001480 struct e1000_hw *hw = &adapter->hw;
Joe Perchese982f172008-07-11 15:17:18 -07001481 unsigned long begin = (unsigned long)start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 unsigned long end = begin + len;
1483
Malli Chilakala26483452005-04-28 19:44:46 -07001484 /* First rev 82545 and 82546 need to not allow any memory
1485 * write location to cross 64k boundary due to errata 23 */
Joe Perches1dc32912008-07-11 15:17:08 -07001486 if (hw->mac_type == e1000_82545 ||
Dirk Brandewie5377a412011-01-06 14:29:54 +00001487 hw->mac_type == e1000_ce4100 ||
Joe Perches1dc32912008-07-11 15:17:08 -07001488 hw->mac_type == e1000_82546) {
Joe Perchesc3033b02008-03-21 11:06:25 -07001489 return ((begin ^ (end - 1)) >> 16) != 0 ? false : true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 }
1491
Joe Perchesc3033b02008-03-21 11:06:25 -07001492 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
1495/**
1496 * e1000_setup_tx_resources - allocate Tx resources (Descriptors)
1497 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001498 * @txdr: tx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 *
1500 * Return 0 on success, negative on failure
1501 **/
1502
Joe Perches64798842008-07-11 15:17:02 -07001503static int e1000_setup_tx_resources(struct e1000_adapter *adapter,
1504 struct e1000_tx_ring *txdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 struct pci_dev *pdev = adapter->pdev;
1507 int size;
1508
1509 size = sizeof(struct e1000_buffer) * txdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001510 txdr->buffer_info = vzalloc(size);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001511 if (!txdr->buffer_info) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001512 e_err(probe, "Unable to allocate memory for the Tx descriptor "
1513 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 return -ENOMEM;
1515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
1517 /* round up to nearest 4K */
1518
1519 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001520 txdr->size = ALIGN(txdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001522 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
1523 GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001524 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525setup_tx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 vfree(txdr->buffer_info);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001527 e_err(probe, "Unable to allocate memory for the Tx descriptor "
1528 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return -ENOMEM;
1530 }
1531
Malli Chilakala26483452005-04-28 19:44:46 -07001532 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1534 void *olddesc = txdr->desc;
1535 dma_addr_t olddma = txdr->dma;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001536 e_err(tx_err, "txdr align check failed: %u bytes at %p\n",
Emil Tantilov675ad472010-04-27 14:02:58 +00001537 txdr->size, txdr->desc);
Malli Chilakala26483452005-04-28 19:44:46 -07001538 /* Try again, without freeing the previous */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001539 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size,
1540 &txdr->dma, GFP_KERNEL);
Malli Chilakala26483452005-04-28 19:44:46 -07001541 /* Failed allocation, critical failure */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001542 if (!txdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001543 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1544 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 goto setup_tx_desc_die;
1546 }
1547
1548 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1549 /* give up */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001550 dma_free_coherent(&pdev->dev, txdr->size, txdr->desc,
1551 txdr->dma);
1552 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1553 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001554 e_err(probe, "Unable to allocate aligned memory "
Emil Tantilov675ad472010-04-27 14:02:58 +00001555 "for the transmit descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 vfree(txdr->buffer_info);
1557 return -ENOMEM;
1558 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001559 /* Free old allocation, new allocation was successful */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001560 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1561 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
1563 }
1564 memset(txdr->desc, 0, txdr->size);
1565
1566 txdr->next_to_use = 0;
1567 txdr->next_to_clean = 0;
1568
1569 return 0;
1570}
1571
1572/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001573 * e1000_setup_all_tx_resources - wrapper to allocate Tx resources
1574 * (Descriptors) for all queues
1575 * @adapter: board private structure
1576 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001577 * Return 0 on success, negative on failure
1578 **/
1579
Joe Perches64798842008-07-11 15:17:02 -07001580int e1000_setup_all_tx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001581{
1582 int i, err = 0;
1583
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001584 for (i = 0; i < adapter->num_tx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001585 err = e1000_setup_tx_resources(adapter, &adapter->tx_ring[i]);
1586 if (err) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001587 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001588 for (i-- ; i >= 0; i--)
1589 e1000_free_tx_resources(adapter,
1590 &adapter->tx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001591 break;
1592 }
1593 }
1594
1595 return err;
1596}
1597
1598/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
1600 * @adapter: board private structure
1601 *
1602 * Configure the Tx unit of the MAC after a reset.
1603 **/
1604
Joe Perches64798842008-07-11 15:17:02 -07001605static void e1000_configure_tx(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Joe Perches406874a2008-04-03 10:06:32 -07001607 u64 tdba;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001608 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001609 u32 tdlen, tctl, tipg;
Joe Perches406874a2008-04-03 10:06:32 -07001610 u32 ipgr1, ipgr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 /* Setup the HW Tx Head and Tail descriptor pointers */
1613
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001614 switch (adapter->num_tx_queues) {
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001615 case 1:
1616 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001617 tdba = adapter->tx_ring[0].dma;
1618 tdlen = adapter->tx_ring[0].count *
1619 sizeof(struct e1000_tx_desc);
Joe Perches1dc32912008-07-11 15:17:08 -07001620 ew32(TDLEN, tdlen);
1621 ew32(TDBAH, (tdba >> 32));
1622 ew32(TDBAL, (tdba & 0x00000000ffffffffULL));
1623 ew32(TDT, 0);
1624 ew32(TDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07001625 adapter->tx_ring[0].tdh = ((hw->mac_type >= e1000_82543) ? E1000_TDH : E1000_82542_TDH);
1626 adapter->tx_ring[0].tdt = ((hw->mac_type >= e1000_82543) ? E1000_TDT : E1000_82542_TDT);
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001627 break;
1628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 /* Set the default values for the Tx Inter Packet Gap timer */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001631 if ((hw->media_type == e1000_media_type_fiber ||
Jesse Brandeburgd89b6c62006-12-15 10:38:32 +01001632 hw->media_type == e1000_media_type_internal_serdes))
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001633 tipg = DEFAULT_82543_TIPG_IPGT_FIBER;
1634 else
1635 tipg = DEFAULT_82543_TIPG_IPGT_COPPER;
1636
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001637 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 case e1000_82542_rev2_0:
1639 case e1000_82542_rev2_1:
1640 tipg = DEFAULT_82542_TIPG_IPGT;
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001641 ipgr1 = DEFAULT_82542_TIPG_IPGR1;
1642 ipgr2 = DEFAULT_82542_TIPG_IPGR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 break;
1644 default:
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001645 ipgr1 = DEFAULT_82543_TIPG_IPGR1;
1646 ipgr2 = DEFAULT_82543_TIPG_IPGR2;
1647 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001649 tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
1650 tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
Joe Perches1dc32912008-07-11 15:17:08 -07001651 ew32(TIPG, tipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
1653 /* Set the Tx Interrupt Delay register */
1654
Joe Perches1dc32912008-07-11 15:17:08 -07001655 ew32(TIDV, adapter->tx_int_delay);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001656 if (hw->mac_type >= e1000_82540)
Joe Perches1dc32912008-07-11 15:17:08 -07001657 ew32(TADV, adapter->tx_abs_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 /* Program the Transmit Control Register */
1660
Joe Perches1dc32912008-07-11 15:17:08 -07001661 tctl = er32(TCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 tctl &= ~E1000_TCTL_CT;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001663 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
1665
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001666 e1000_config_collision_dist(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 /* Setup Transmit Descriptor Settings for eop descriptor */
Jesse Brandeburg6a042da2006-11-01 08:48:04 -08001669 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
1670
1671 /* only set IDE if we are delaying interrupts using the timers */
1672 if (adapter->tx_int_delay)
1673 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001675 if (hw->mac_type < e1000_82543)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 adapter->txd_cmd |= E1000_TXD_CMD_RPS;
1677 else
1678 adapter->txd_cmd |= E1000_TXD_CMD_RS;
1679
1680 /* Cache if we're 82544 running in PCI-X because we'll
1681 * need this to apply a workaround later in the send path. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001682 if (hw->mac_type == e1000_82544 &&
1683 hw->bus_type == e1000_bus_type_pcix)
Rusty Russell3db1cd52011-12-19 13:56:45 +00001684 adapter->pcix_82544 = true;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001685
Joe Perches1dc32912008-07-11 15:17:08 -07001686 ew32(TCTL, tctl);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688}
1689
1690/**
1691 * e1000_setup_rx_resources - allocate Rx resources (Descriptors)
1692 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001693 * @rxdr: rx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 *
1695 * Returns 0 on success, negative on failure
1696 **/
1697
Joe Perches64798842008-07-11 15:17:02 -07001698static int e1000_setup_rx_resources(struct e1000_adapter *adapter,
1699 struct e1000_rx_ring *rxdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 struct pci_dev *pdev = adapter->pdev;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001702 int size, desc_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704 size = sizeof(struct e1000_buffer) * rxdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001705 rxdr->buffer_info = vzalloc(size);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001706 if (!rxdr->buffer_info) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001707 e_err(probe, "Unable to allocate memory for the Rx descriptor "
1708 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 return -ENOMEM;
1710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001712 desc_len = sizeof(struct e1000_rx_desc);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 /* Round up to nearest 4K */
1715
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001716 rxdr->size = rxdr->count * desc_len;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001717 rxdr->size = ALIGN(rxdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001719 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
1720 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001722 if (!rxdr->desc) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001723 e_err(probe, "Unable to allocate memory for the Rx descriptor "
1724 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725setup_rx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 vfree(rxdr->buffer_info);
1727 return -ENOMEM;
1728 }
1729
Malli Chilakala26483452005-04-28 19:44:46 -07001730 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1732 void *olddesc = rxdr->desc;
1733 dma_addr_t olddma = rxdr->dma;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001734 e_err(rx_err, "rxdr align check failed: %u bytes at %p\n",
Emil Tantilov675ad472010-04-27 14:02:58 +00001735 rxdr->size, rxdr->desc);
Malli Chilakala26483452005-04-28 19:44:46 -07001736 /* Try again, without freeing the previous */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001737 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size,
1738 &rxdr->dma, GFP_KERNEL);
Malli Chilakala26483452005-04-28 19:44:46 -07001739 /* Failed allocation, critical failure */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001740 if (!rxdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001741 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1742 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001743 e_err(probe, "Unable to allocate memory for the Rx "
1744 "descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 goto setup_rx_desc_die;
1746 }
1747
1748 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1749 /* give up */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001750 dma_free_coherent(&pdev->dev, rxdr->size, rxdr->desc,
1751 rxdr->dma);
1752 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1753 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001754 e_err(probe, "Unable to allocate aligned memory for "
1755 "the Rx descriptor ring\n");
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001756 goto setup_rx_desc_die;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001758 /* Free old allocation, new allocation was successful */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001759 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1760 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
1762 }
1763 memset(rxdr->desc, 0, rxdr->size);
1764
1765 rxdr->next_to_clean = 0;
1766 rxdr->next_to_use = 0;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00001767 rxdr->rx_skb_top = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 return 0;
1770}
1771
1772/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001773 * e1000_setup_all_rx_resources - wrapper to allocate Rx resources
1774 * (Descriptors) for all queues
1775 * @adapter: board private structure
1776 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001777 * Return 0 on success, negative on failure
1778 **/
1779
Joe Perches64798842008-07-11 15:17:02 -07001780int e1000_setup_all_rx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001781{
1782 int i, err = 0;
1783
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001784 for (i = 0; i < adapter->num_rx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001785 err = e1000_setup_rx_resources(adapter, &adapter->rx_ring[i]);
1786 if (err) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001787 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001788 for (i-- ; i >= 0; i--)
1789 e1000_free_rx_resources(adapter,
1790 &adapter->rx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001791 break;
1792 }
1793 }
1794
1795 return err;
1796}
1797
1798/**
Malli Chilakala26483452005-04-28 19:44:46 -07001799 * e1000_setup_rctl - configure the receive control registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 * @adapter: Board private structure
1801 **/
Joe Perches64798842008-07-11 15:17:02 -07001802static void e1000_setup_rctl(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
Joe Perches1dc32912008-07-11 15:17:08 -07001804 struct e1000_hw *hw = &adapter->hw;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001805 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Joe Perches1dc32912008-07-11 15:17:08 -07001807 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
1810
Dean Nelsond5bc77a2011-09-16 16:52:54 +00001811 rctl |= E1000_RCTL_BAM | E1000_RCTL_LBM_NO |
1812 E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001813 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Joe Perches1dc32912008-07-11 15:17:08 -07001815 if (hw->tbi_compatibility_on == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 rctl |= E1000_RCTL_SBP;
1817 else
1818 rctl &= ~E1000_RCTL_SBP;
1819
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001820 if (adapter->netdev->mtu <= ETH_DATA_LEN)
1821 rctl &= ~E1000_RCTL_LPE;
1822 else
1823 rctl |= E1000_RCTL_LPE;
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 /* Setup buffer sizes */
Auke Kok9e2feac2006-04-14 19:05:18 -07001826 rctl &= ~E1000_RCTL_SZ_4096;
1827 rctl |= E1000_RCTL_BSEX;
1828 switch (adapter->rx_buffer_len) {
Jeff Kirshera1415ee2006-02-28 20:24:07 -08001829 case E1000_RXBUFFER_2048:
1830 default:
1831 rctl |= E1000_RCTL_SZ_2048;
1832 rctl &= ~E1000_RCTL_BSEX;
1833 break;
1834 case E1000_RXBUFFER_4096:
1835 rctl |= E1000_RCTL_SZ_4096;
1836 break;
1837 case E1000_RXBUFFER_8192:
1838 rctl |= E1000_RCTL_SZ_8192;
1839 break;
1840 case E1000_RXBUFFER_16384:
1841 rctl |= E1000_RCTL_SZ_16384;
1842 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001843 }
1844
Joe Perches1dc32912008-07-11 15:17:08 -07001845 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
1848/**
1849 * e1000_configure_rx - Configure 8254x Receive Unit after Reset
1850 * @adapter: board private structure
1851 *
1852 * Configure the Rx unit of the MAC after a reset.
1853 **/
1854
Joe Perches64798842008-07-11 15:17:02 -07001855static void e1000_configure_rx(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
Joe Perches406874a2008-04-03 10:06:32 -07001857 u64 rdba;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001858 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001859 u32 rdlen, rctl, rxcsum;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001860
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00001861 if (adapter->netdev->mtu > ETH_DATA_LEN) {
1862 rdlen = adapter->rx_ring[0].count *
1863 sizeof(struct e1000_rx_desc);
1864 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
1865 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
1866 } else {
1867 rdlen = adapter->rx_ring[0].count *
1868 sizeof(struct e1000_rx_desc);
1869 adapter->clean_rx = e1000_clean_rx_irq;
1870 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
1871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873 /* disable receives while setting up the descriptors */
Joe Perches1dc32912008-07-11 15:17:08 -07001874 rctl = er32(RCTL);
1875 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 /* set the Receive Delay Timer Register */
Joe Perches1dc32912008-07-11 15:17:08 -07001878 ew32(RDTR, adapter->rx_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001880 if (hw->mac_type >= e1000_82540) {
Joe Perches1dc32912008-07-11 15:17:08 -07001881 ew32(RADV, adapter->rx_abs_int_delay);
Jesse Brandeburg835bb122006-11-01 08:48:13 -08001882 if (adapter->itr_setting != 0)
Joe Perches1dc32912008-07-11 15:17:08 -07001883 ew32(ITR, 1000000000 / (adapter->itr * 256));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 }
1885
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001886 /* Setup the HW Rx Head and Tail Descriptor Pointers and
1887 * the Base and Length of the Rx Descriptor Ring */
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001888 switch (adapter->num_rx_queues) {
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001889 case 1:
1890 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001891 rdba = adapter->rx_ring[0].dma;
Joe Perches1dc32912008-07-11 15:17:08 -07001892 ew32(RDLEN, rdlen);
1893 ew32(RDBAH, (rdba >> 32));
1894 ew32(RDBAL, (rdba & 0x00000000ffffffffULL));
1895 ew32(RDT, 0);
1896 ew32(RDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07001897 adapter->rx_ring[0].rdh = ((hw->mac_type >= e1000_82543) ? E1000_RDH : E1000_82542_RDH);
1898 adapter->rx_ring[0].rdt = ((hw->mac_type >= e1000_82543) ? E1000_RDT : E1000_82542_RDT);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001899 break;
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001900 }
1901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 /* Enable 82543 Receive Checksum Offload for TCP and UDP */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001903 if (hw->mac_type >= e1000_82543) {
Joe Perches1dc32912008-07-11 15:17:08 -07001904 rxcsum = er32(RXCSUM);
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001905 if (adapter->rx_csum)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001906 rxcsum |= E1000_RXCSUM_TUOFL;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001907 else
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001908 /* don't need to clear IPPCSE as it defaults to 0 */
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001909 rxcsum &= ~E1000_RXCSUM_TUOFL;
Joe Perches1dc32912008-07-11 15:17:08 -07001910 ew32(RXCSUM, rxcsum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 }
1912
1913 /* Enable Receives */
Dean Nelsond5bc77a2011-09-16 16:52:54 +00001914 ew32(RCTL, rctl | E1000_RCTL_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915}
1916
1917/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001918 * e1000_free_tx_resources - Free Tx Resources per Queue
1919 * @adapter: board private structure
1920 * @tx_ring: Tx descriptor ring for a specific queue
1921 *
1922 * Free all transmit software resources
1923 **/
1924
Joe Perches64798842008-07-11 15:17:02 -07001925static void e1000_free_tx_resources(struct e1000_adapter *adapter,
1926 struct e1000_tx_ring *tx_ring)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001927{
1928 struct pci_dev *pdev = adapter->pdev;
1929
1930 e1000_clean_tx_ring(adapter, tx_ring);
1931
1932 vfree(tx_ring->buffer_info);
1933 tx_ring->buffer_info = NULL;
1934
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001935 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
1936 tx_ring->dma);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001937
1938 tx_ring->desc = NULL;
1939}
1940
1941/**
1942 * e1000_free_all_tx_resources - Free Tx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 * @adapter: board private structure
1944 *
1945 * Free all transmit software resources
1946 **/
1947
Joe Perches64798842008-07-11 15:17:02 -07001948void e1000_free_all_tx_resources(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001950 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001952 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001953 e1000_free_tx_resources(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954}
1955
Joe Perches64798842008-07-11 15:17:02 -07001956static void e1000_unmap_and_free_tx_resource(struct e1000_adapter *adapter,
1957 struct e1000_buffer *buffer_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958{
Alexander Duyck602c0552009-12-02 16:46:00 +00001959 if (buffer_info->dma) {
1960 if (buffer_info->mapped_as_page)
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001961 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
1962 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck602c0552009-12-02 16:46:00 +00001963 else
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001964 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
Alexander Duyck602c0552009-12-02 16:46:00 +00001965 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001966 DMA_TO_DEVICE);
Alexander Duyck602c0552009-12-02 16:46:00 +00001967 buffer_info->dma = 0;
1968 }
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001969 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 dev_kfree_skb_any(buffer_info->skb);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001971 buffer_info->skb = NULL;
1972 }
Alexander Duyck37e73df2009-03-25 21:58:45 +00001973 buffer_info->time_stamp = 0;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001974 /* buffer_info must be completely set up in the transmit path */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975}
1976
1977/**
1978 * e1000_clean_tx_ring - Free Tx Buffers
1979 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001980 * @tx_ring: ring to be cleaned
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 **/
1982
Joe Perches64798842008-07-11 15:17:02 -07001983static void e1000_clean_tx_ring(struct e1000_adapter *adapter,
1984 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
Joe Perches1dc32912008-07-11 15:17:08 -07001986 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 struct e1000_buffer *buffer_info;
1988 unsigned long size;
1989 unsigned int i;
1990
1991 /* Free all the Tx ring sk_buffs */
1992
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001993 for (i = 0; i < tx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 buffer_info = &tx_ring->buffer_info[i];
1995 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
1996 }
1997
1998 size = sizeof(struct e1000_buffer) * tx_ring->count;
1999 memset(tx_ring->buffer_info, 0, size);
2000
2001 /* Zero out the descriptor ring */
2002
2003 memset(tx_ring->desc, 0, tx_ring->size);
2004
2005 tx_ring->next_to_use = 0;
2006 tx_ring->next_to_clean = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +00002007 tx_ring->last_tx_tso = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Joe Perches1dc32912008-07-11 15:17:08 -07002009 writel(0, hw->hw_addr + tx_ring->tdh);
2010 writel(0, hw->hw_addr + tx_ring->tdt);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002011}
2012
2013/**
2014 * e1000_clean_all_tx_rings - Free Tx Buffers for all queues
2015 * @adapter: board private structure
2016 **/
2017
Joe Perches64798842008-07-11 15:17:02 -07002018static void e1000_clean_all_tx_rings(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002019{
2020 int i;
2021
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002022 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002023 e1000_clean_tx_ring(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
2026/**
2027 * e1000_free_rx_resources - Free Rx Resources
2028 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002029 * @rx_ring: ring to clean the resources from
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 *
2031 * Free all receive software resources
2032 **/
2033
Joe Perches64798842008-07-11 15:17:02 -07002034static void e1000_free_rx_resources(struct e1000_adapter *adapter,
2035 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 struct pci_dev *pdev = adapter->pdev;
2038
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002039 e1000_clean_rx_ring(adapter, rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 vfree(rx_ring->buffer_info);
2042 rx_ring->buffer_info = NULL;
2043
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002044 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
2045 rx_ring->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 rx_ring->desc = NULL;
2048}
2049
2050/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002051 * e1000_free_all_rx_resources - Free Rx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002053 *
2054 * Free all receive software resources
2055 **/
2056
Joe Perches64798842008-07-11 15:17:02 -07002057void e1000_free_all_rx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002058{
2059 int i;
2060
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002061 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002062 e1000_free_rx_resources(adapter, &adapter->rx_ring[i]);
2063}
2064
2065/**
2066 * e1000_clean_rx_ring - Free Rx Buffers per Queue
2067 * @adapter: board private structure
2068 * @rx_ring: ring to free buffers from
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 **/
2070
Joe Perches64798842008-07-11 15:17:02 -07002071static void e1000_clean_rx_ring(struct e1000_adapter *adapter,
2072 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073{
Joe Perches1dc32912008-07-11 15:17:08 -07002074 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 struct e1000_buffer *buffer_info;
2076 struct pci_dev *pdev = adapter->pdev;
2077 unsigned long size;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07002078 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 /* Free all the Rx ring sk_buffs */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002081 for (i = 0; i < rx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 buffer_info = &rx_ring->buffer_info[i];
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002083 if (buffer_info->dma &&
2084 adapter->clean_rx == e1000_clean_rx_irq) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002085 dma_unmap_single(&pdev->dev, buffer_info->dma,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002086 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002087 DMA_FROM_DEVICE);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002088 } else if (buffer_info->dma &&
2089 adapter->clean_rx == e1000_clean_jumbo_rx_irq) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002090 dma_unmap_page(&pdev->dev, buffer_info->dma,
2091 buffer_info->length,
2092 DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002095 buffer_info->dma = 0;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002096 if (buffer_info->page) {
2097 put_page(buffer_info->page);
2098 buffer_info->page = NULL;
2099 }
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002100 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 dev_kfree_skb(buffer_info->skb);
2102 buffer_info->skb = NULL;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08002103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 }
2105
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002106 /* there also may be some cached data from a chained receive */
2107 if (rx_ring->rx_skb_top) {
2108 dev_kfree_skb(rx_ring->rx_skb_top);
2109 rx_ring->rx_skb_top = NULL;
2110 }
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 size = sizeof(struct e1000_buffer) * rx_ring->count;
2113 memset(rx_ring->buffer_info, 0, size);
2114
2115 /* Zero out the descriptor ring */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 memset(rx_ring->desc, 0, rx_ring->size);
2117
2118 rx_ring->next_to_clean = 0;
2119 rx_ring->next_to_use = 0;
2120
Joe Perches1dc32912008-07-11 15:17:08 -07002121 writel(0, hw->hw_addr + rx_ring->rdh);
2122 writel(0, hw->hw_addr + rx_ring->rdt);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002123}
2124
2125/**
2126 * e1000_clean_all_rx_rings - Free Rx Buffers for all queues
2127 * @adapter: board private structure
2128 **/
2129
Joe Perches64798842008-07-11 15:17:02 -07002130static void e1000_clean_all_rx_rings(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002131{
2132 int i;
2133
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002134 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002135 e1000_clean_rx_ring(adapter, &adapter->rx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136}
2137
2138/* The 82542 2.0 (revision 2) needs to have the receive unit in reset
2139 * and memory write and invalidate disabled for certain operations
2140 */
Joe Perches64798842008-07-11 15:17:02 -07002141static void e1000_enter_82542_rst(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
Joe Perches1dc32912008-07-11 15:17:08 -07002143 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002145 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Joe Perches1dc32912008-07-11 15:17:08 -07002147 e1000_pci_clear_mwi(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Joe Perches1dc32912008-07-11 15:17:08 -07002149 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 rctl |= E1000_RCTL_RST;
Joe Perches1dc32912008-07-11 15:17:08 -07002151 ew32(RCTL, rctl);
2152 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 mdelay(5);
2154
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002155 if (netif_running(netdev))
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002156 e1000_clean_all_rx_rings(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157}
2158
Joe Perches64798842008-07-11 15:17:02 -07002159static void e1000_leave_82542_rst(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
Joe Perches1dc32912008-07-11 15:17:08 -07002161 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002163 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Joe Perches1dc32912008-07-11 15:17:08 -07002165 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 rctl &= ~E1000_RCTL_RST;
Joe Perches1dc32912008-07-11 15:17:08 -07002167 ew32(RCTL, rctl);
2168 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 mdelay(5);
2170
Joe Perches1dc32912008-07-11 15:17:08 -07002171 if (hw->pci_cmd_word & PCI_COMMAND_INVALIDATE)
2172 e1000_pci_set_mwi(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002174 if (netif_running(netdev)) {
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002175 /* No need to loop, because 82542 supports only 1 queue */
2176 struct e1000_rx_ring *ring = &adapter->rx_ring[0];
Jesse Brandeburg7c4d3362006-01-18 13:01:45 -08002177 e1000_configure_rx(adapter);
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002178 adapter->alloc_rx_buf(adapter, ring, E1000_DESC_UNUSED(ring));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 }
2180}
2181
2182/**
2183 * e1000_set_mac - Change the Ethernet Address of the NIC
2184 * @netdev: network interface device structure
2185 * @p: pointer to an address structure
2186 *
2187 * Returns 0 on success, negative on failure
2188 **/
2189
Joe Perches64798842008-07-11 15:17:02 -07002190static int e1000_set_mac(struct net_device *netdev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002192 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07002193 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 struct sockaddr *addr = p;
2195
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002196 if (!is_valid_ether_addr(addr->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 return -EADDRNOTAVAIL;
2198
2199 /* 82542 2.0 needs to be in reset to write receive address registers */
2200
Joe Perches1dc32912008-07-11 15:17:08 -07002201 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 e1000_enter_82542_rst(adapter);
2203
2204 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Joe Perches1dc32912008-07-11 15:17:08 -07002205 memcpy(hw->mac_addr, addr->sa_data, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Joe Perches1dc32912008-07-11 15:17:08 -07002207 e1000_rar_set(hw, hw->mac_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Joe Perches1dc32912008-07-11 15:17:08 -07002209 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 e1000_leave_82542_rst(adapter);
2211
2212 return 0;
2213}
2214
2215/**
Patrick McHardydb0ce502007-11-13 20:54:59 -08002216 * e1000_set_rx_mode - Secondary Unicast, Multicast and Promiscuous mode set
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 * @netdev: network interface device structure
2218 *
Patrick McHardydb0ce502007-11-13 20:54:59 -08002219 * The set_rx_mode entry point is called whenever the unicast or multicast
2220 * address lists or the network interface flags are updated. This routine is
2221 * responsible for configuring the hardware for proper unicast, multicast,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 * promiscuous mode, and all-multi behavior.
2223 **/
2224
Joe Perches64798842008-07-11 15:17:02 -07002225static void e1000_set_rx_mode(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002227 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 struct e1000_hw *hw = &adapter->hw;
Jiri Pirkoccffad252009-05-22 23:22:17 +00002229 struct netdev_hw_addr *ha;
2230 bool use_uc = false;
Joe Perches406874a2008-04-03 10:06:32 -07002231 u32 rctl;
2232 u32 hash_value;
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002233 int i, rar_entries = E1000_RAR_ENTRIES;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002234 int mta_reg_count = E1000_NUM_MTA_REGISTERS;
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002235 u32 *mcarray = kcalloc(mta_reg_count, sizeof(u32), GFP_ATOMIC);
2236
2237 if (!mcarray) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07002238 e_err(probe, "memory allocation failed\n");
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002239 return;
2240 }
Auke Kokcd94dd02006-06-27 09:08:22 -07002241
Malli Chilakala26483452005-04-28 19:44:46 -07002242 /* Check for Promiscuous and All Multicast modes */
2243
Joe Perches1dc32912008-07-11 15:17:08 -07002244 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002246 if (netdev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Patrick McHardy746b9f02008-07-16 20:15:45 -07002248 rctl &= ~E1000_RCTL_VFE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 } else {
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002250 if (netdev->flags & IFF_ALLMULTI)
Patrick McHardy746b9f02008-07-16 20:15:45 -07002251 rctl |= E1000_RCTL_MPE;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002252 else
Patrick McHardy746b9f02008-07-16 20:15:45 -07002253 rctl &= ~E1000_RCTL_MPE;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002254 /* Enable VLAN filter if there is a VLAN */
Jiri Pirko5622e402011-07-21 03:26:31 +00002255 if (e1000_vlan_used(adapter))
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002256 rctl |= E1000_RCTL_VFE;
Patrick McHardydb0ce502007-11-13 20:54:59 -08002257 }
2258
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08002259 if (netdev_uc_count(netdev) > rar_entries - 1) {
Patrick McHardydb0ce502007-11-13 20:54:59 -08002260 rctl |= E1000_RCTL_UPE;
2261 } else if (!(netdev->flags & IFF_PROMISC)) {
2262 rctl &= ~E1000_RCTL_UPE;
Jiri Pirkoccffad252009-05-22 23:22:17 +00002263 use_uc = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
2265
Joe Perches1dc32912008-07-11 15:17:08 -07002266 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
2268 /* 82542 2.0 needs to be in reset to write receive address registers */
2269
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002270 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 e1000_enter_82542_rst(adapter);
2272
Patrick McHardydb0ce502007-11-13 20:54:59 -08002273 /* load the first 14 addresses into the exact filters 1-14. Unicast
2274 * addresses take precedence to avoid disabling unicast filtering
2275 * when possible.
2276 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002277 * RAR 0 is used for the station MAC address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 * if there are not 14 addresses, go ahead and clear the filters
2279 */
Jiri Pirkoccffad252009-05-22 23:22:17 +00002280 i = 1;
2281 if (use_uc)
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08002282 netdev_for_each_uc_addr(ha, netdev) {
Jiri Pirkoccffad252009-05-22 23:22:17 +00002283 if (i == rar_entries)
2284 break;
2285 e1000_rar_set(hw, ha->addr, i++);
2286 }
2287
Jiri Pirko22bedad32010-04-01 21:22:57 +00002288 netdev_for_each_mc_addr(ha, netdev) {
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002289 if (i == rar_entries) {
2290 /* load any remaining addresses into the hash table */
2291 u32 hash_reg, hash_bit, mta;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002292 hash_value = e1000_hash_mc_addr(hw, ha->addr);
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002293 hash_reg = (hash_value >> 5) & 0x7F;
2294 hash_bit = hash_value & 0x1F;
2295 mta = (1 << hash_bit);
2296 mcarray[hash_reg] |= mta;
Jiri Pirko10886af2010-02-23 01:19:22 -08002297 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002298 e1000_rar_set(hw, ha->addr, i++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
2300 }
2301
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002302 for (; i < rar_entries; i++) {
2303 E1000_WRITE_REG_ARRAY(hw, RA, i << 1, 0);
2304 E1000_WRITE_FLUSH();
2305 E1000_WRITE_REG_ARRAY(hw, RA, (i << 1) + 1, 0);
2306 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 }
2308
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002309 /* write the hash table completely, write from bottom to avoid
2310 * both stupid write combining chipsets, and flushing each write */
2311 for (i = mta_reg_count - 1; i >= 0 ; i--) {
2312 /*
2313 * If we are on an 82544 has an errata where writing odd
2314 * offsets overwrites the previous even offset, but writing
2315 * backwards over the range solves the issue by always
2316 * writing the odd offset first
2317 */
2318 E1000_WRITE_REG_ARRAY(hw, MTA, i, mcarray[i]);
2319 }
2320 E1000_WRITE_FLUSH();
2321
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002322 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 e1000_leave_82542_rst(adapter);
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002324
2325 kfree(mcarray);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326}
2327
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002328/**
2329 * e1000_update_phy_info_task - get phy info
2330 * @work: work struct contained inside adapter struct
2331 *
2332 * Need to wait a few seconds after link up to get diagnostic information from
2333 * the phy
2334 */
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00002335static void e1000_update_phy_info_task(struct work_struct *work)
2336{
2337 struct e1000_adapter *adapter = container_of(work,
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002338 struct e1000_adapter,
2339 phy_info_task.work);
Jesse Brandeburg0ef4eed2011-10-05 07:24:51 +00002340 if (test_bit(__E1000_DOWN, &adapter->flags))
2341 return;
2342 mutex_lock(&adapter->mutex);
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002343 e1000_phy_get_info(&adapter->hw, &adapter->phy_info);
Jesse Brandeburg0ef4eed2011-10-05 07:24:51 +00002344 mutex_unlock(&adapter->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345}
2346
2347/**
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00002348 * e1000_82547_tx_fifo_stall_task - task to complete work
2349 * @work: work struct contained inside adapter struct
2350 **/
2351static void e1000_82547_tx_fifo_stall_task(struct work_struct *work)
2352{
2353 struct e1000_adapter *adapter = container_of(work,
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002354 struct e1000_adapter,
2355 fifo_stall_task.work);
Joe Perches1dc32912008-07-11 15:17:08 -07002356 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002358 u32 tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Jesse Brandeburg0ef4eed2011-10-05 07:24:51 +00002360 if (test_bit(__E1000_DOWN, &adapter->flags))
2361 return;
2362 mutex_lock(&adapter->mutex);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002363 if (atomic_read(&adapter->tx_fifo_stall)) {
Joe Perches1dc32912008-07-11 15:17:08 -07002364 if ((er32(TDT) == er32(TDH)) &&
2365 (er32(TDFT) == er32(TDFH)) &&
2366 (er32(TDFTS) == er32(TDFHS))) {
2367 tctl = er32(TCTL);
2368 ew32(TCTL, tctl & ~E1000_TCTL_EN);
2369 ew32(TDFT, adapter->tx_head_addr);
2370 ew32(TDFH, adapter->tx_head_addr);
2371 ew32(TDFTS, adapter->tx_head_addr);
2372 ew32(TDFHS, adapter->tx_head_addr);
2373 ew32(TCTL, tctl);
2374 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
2376 adapter->tx_fifo_head = 0;
2377 atomic_set(&adapter->tx_fifo_stall, 0);
2378 netif_wake_queue(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002379 } else if (!test_bit(__E1000_DOWN, &adapter->flags)) {
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002380 schedule_delayed_work(&adapter->fifo_stall_task, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 }
2382 }
Jesse Brandeburg0ef4eed2011-10-05 07:24:51 +00002383 mutex_unlock(&adapter->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384}
2385
Nick Nunleyb5481922010-02-03 14:49:28 +00002386bool e1000_has_link(struct e1000_adapter *adapter)
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002387{
2388 struct e1000_hw *hw = &adapter->hw;
2389 bool link_active = false;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002390
Nicolas Schichan6d9e5132011-07-09 00:24:18 +00002391 /* get_link_status is set on LSC (link status) interrupt or rx
2392 * sequence error interrupt (except on intel ce4100).
2393 * get_link_status will stay false until the
2394 * e1000_check_for_link establishes link for copper adapters
2395 * ONLY
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002396 */
2397 switch (hw->media_type) {
2398 case e1000_media_type_copper:
Nicolas Schichan6d9e5132011-07-09 00:24:18 +00002399 if (hw->mac_type == e1000_ce4100)
2400 hw->get_link_status = 1;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002401 if (hw->get_link_status) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002402 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002403 link_active = !hw->get_link_status;
2404 } else {
2405 link_active = true;
2406 }
2407 break;
2408 case e1000_media_type_fiber:
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002409 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002410 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
2411 break;
2412 case e1000_media_type_internal_serdes:
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002413 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002414 link_active = hw->serdes_has_link;
2415 break;
2416 default:
2417 break;
2418 }
2419
2420 return link_active;
2421}
2422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423/**
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002424 * e1000_watchdog - work function
2425 * @work: work struct contained inside adapter struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 **/
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002427static void e1000_watchdog(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428{
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002429 struct e1000_adapter *adapter = container_of(work,
2430 struct e1000_adapter,
2431 watchdog_task.work);
Joe Perches1dc32912008-07-11 15:17:08 -07002432 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 struct net_device *netdev = adapter->netdev;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002434 struct e1000_tx_ring *txdr = adapter->tx_ring;
Joe Perches406874a2008-04-03 10:06:32 -07002435 u32 link, tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
Jesse Brandeburg0ef4eed2011-10-05 07:24:51 +00002437 if (test_bit(__E1000_DOWN, &adapter->flags))
2438 return;
2439
2440 mutex_lock(&adapter->mutex);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002441 link = e1000_has_link(adapter);
2442 if ((netif_carrier_ok(netdev)) && link)
2443 goto link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002445 if (link) {
2446 if (!netif_carrier_ok(netdev)) {
Joe Perches406874a2008-04-03 10:06:32 -07002447 u32 ctrl;
Joe Perchesc3033b02008-03-21 11:06:25 -07002448 bool txb2b = true;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002449 /* update snapshot of PHY registers on LSC */
Joe Perches1dc32912008-07-11 15:17:08 -07002450 e1000_get_speed_and_duplex(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 &adapter->link_speed,
2452 &adapter->link_duplex);
2453
Joe Perches1dc32912008-07-11 15:17:08 -07002454 ctrl = er32(CTRL);
Emil Tantilov675ad472010-04-27 14:02:58 +00002455 pr_info("%s NIC Link is Up %d Mbps %s, "
2456 "Flow Control: %s\n",
2457 netdev->name,
2458 adapter->link_speed,
2459 adapter->link_duplex == FULL_DUPLEX ?
2460 "Full Duplex" : "Half Duplex",
2461 ((ctrl & E1000_CTRL_TFCE) && (ctrl &
2462 E1000_CTRL_RFCE)) ? "RX/TX" : ((ctrl &
2463 E1000_CTRL_RFCE) ? "RX" : ((ctrl &
2464 E1000_CTRL_TFCE) ? "TX" : "None")));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Emil Tantilov39ca5f02010-03-26 11:25:58 +00002466 /* adjust timeout factor according to speed/duplex */
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002467 adapter->tx_timeout_factor = 1;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002468 switch (adapter->link_speed) {
2469 case SPEED_10:
Joe Perchesc3033b02008-03-21 11:06:25 -07002470 txb2b = false;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002471 adapter->tx_timeout_factor = 16;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002472 break;
2473 case SPEED_100:
Joe Perchesc3033b02008-03-21 11:06:25 -07002474 txb2b = false;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002475 /* maybe add some timeout factor ? */
2476 break;
2477 }
2478
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002479 /* enable transmits in the hardware */
Joe Perches1dc32912008-07-11 15:17:08 -07002480 tctl = er32(TCTL);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002481 tctl |= E1000_TCTL_EN;
Joe Perches1dc32912008-07-11 15:17:08 -07002482 ew32(TCTL, tctl);
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 netif_carrier_on(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002485 if (!test_bit(__E1000_DOWN, &adapter->flags))
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002486 schedule_delayed_work(&adapter->phy_info_task,
2487 2 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 adapter->smartspeed = 0;
2489 }
2490 } else {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002491 if (netif_carrier_ok(netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 adapter->link_speed = 0;
2493 adapter->link_duplex = 0;
Emil Tantilov675ad472010-04-27 14:02:58 +00002494 pr_info("%s NIC Link is Down\n",
2495 netdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 netif_carrier_off(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002497
2498 if (!test_bit(__E1000_DOWN, &adapter->flags))
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002499 schedule_delayed_work(&adapter->phy_info_task,
2500 2 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 }
2502
2503 e1000_smartspeed(adapter);
2504 }
2505
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002506link_up:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 e1000_update_stats(adapter);
2508
Joe Perches1dc32912008-07-11 15:17:08 -07002509 hw->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 adapter->tpt_old = adapter->stats.tpt;
Joe Perches1dc32912008-07-11 15:17:08 -07002511 hw->collision_delta = adapter->stats.colc - adapter->colc_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 adapter->colc_old = adapter->stats.colc;
2513
2514 adapter->gorcl = adapter->stats.gorcl - adapter->gorcl_old;
2515 adapter->gorcl_old = adapter->stats.gorcl;
2516 adapter->gotcl = adapter->stats.gotcl - adapter->gotcl_old;
2517 adapter->gotcl_old = adapter->stats.gotcl;
2518
Joe Perches1dc32912008-07-11 15:17:08 -07002519 e1000_update_adaptive(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002521 if (!netif_carrier_ok(netdev)) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002522 if (E1000_DESC_UNUSED(txdr) + 1 < txdr->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 /* We've lost link, so the controller stops DMA,
2524 * but we've got queued Tx work that's never going
2525 * to get done, so reset controller to flush Tx.
2526 * (Do the reset outside of interrupt context). */
Jeff Kirsher87041632006-03-02 18:21:24 -08002527 adapter->tx_timeout_count++;
2528 schedule_work(&adapter->reset_task);
Jesse Brandeburg0ef4eed2011-10-05 07:24:51 +00002529 /* exit immediately since reset is imminent */
2530 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 }
2532 }
2533
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00002534 /* Simple mode for Interrupt Throttle Rate (ITR) */
2535 if (hw->mac_type >= e1000_82540 && adapter->itr_setting == 4) {
2536 /*
2537 * Symmetric Tx/Rx gets a reduced ITR=2000;
2538 * Total asymmetrical Tx or Rx gets ITR=8000;
2539 * everyone else is between 2000-8000.
2540 */
2541 u32 goc = (adapter->gotcl + adapter->gorcl) / 10000;
2542 u32 dif = (adapter->gotcl > adapter->gorcl ?
2543 adapter->gotcl - adapter->gorcl :
2544 adapter->gorcl - adapter->gotcl) / 10000;
2545 u32 itr = goc > 0 ? (dif * 6000 / goc + 2000) : 8000;
2546
2547 ew32(ITR, 1000000000 / (itr * 256));
2548 }
2549
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 /* Cause software interrupt to ensure rx ring is cleaned */
Joe Perches1dc32912008-07-11 15:17:08 -07002551 ew32(ICS, E1000_ICS_RXDMT0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
Malli Chilakala26483452005-04-28 19:44:46 -07002553 /* Force detection of hung controller every watchdog period */
Joe Perchesc3033b02008-03-21 11:06:25 -07002554 adapter->detect_tx_hung = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002556 /* Reschedule the task */
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002557 if (!test_bit(__E1000_DOWN, &adapter->flags))
Jesse Brandeburga4010af2011-10-05 07:24:41 +00002558 schedule_delayed_work(&adapter->watchdog_task, 2 * HZ);
Jesse Brandeburg0ef4eed2011-10-05 07:24:51 +00002559
2560unlock:
2561 mutex_unlock(&adapter->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562}
2563
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002564enum latency_range {
2565 lowest_latency = 0,
2566 low_latency = 1,
2567 bulk_latency = 2,
2568 latency_invalid = 255
2569};
2570
2571/**
2572 * e1000_update_itr - update the dynamic ITR value based on statistics
Jesse Brandeburg8fce4732009-09-25 12:18:41 +00002573 * @adapter: pointer to adapter
2574 * @itr_setting: current adapter->itr
2575 * @packets: the number of packets during this measurement interval
2576 * @bytes: the number of bytes during this measurement interval
2577 *
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002578 * Stores a new ITR value based on packets and byte
2579 * counts during the last interrupt. The advantage of per interrupt
2580 * computation is faster updates and more accurate ITR for the current
2581 * traffic pattern. Constants in this function were computed
2582 * based on theoretical maximum wire speed and thresholds were set based
2583 * on testing data as well as attempting to minimize response time
2584 * while increasing bulk throughput.
2585 * this functionality is controlled by the InterruptThrottleRate module
2586 * parameter (see e1000_param.c)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002587 **/
2588static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
Joe Perches64798842008-07-11 15:17:02 -07002589 u16 itr_setting, int packets, int bytes)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002590{
2591 unsigned int retval = itr_setting;
2592 struct e1000_hw *hw = &adapter->hw;
2593
2594 if (unlikely(hw->mac_type < e1000_82540))
2595 goto update_itr_done;
2596
2597 if (packets == 0)
2598 goto update_itr_done;
2599
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002600 switch (itr_setting) {
2601 case lowest_latency:
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002602 /* jumbo frames get bulk treatment*/
2603 if (bytes/packets > 8000)
2604 retval = bulk_latency;
2605 else if ((packets < 5) && (bytes > 512))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002606 retval = low_latency;
2607 break;
2608 case low_latency: /* 50 usec aka 20000 ints/s */
2609 if (bytes > 10000) {
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002610 /* jumbo frames need bulk latency setting */
2611 if (bytes/packets > 8000)
2612 retval = bulk_latency;
2613 else if ((packets < 10) || ((bytes/packets) > 1200))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002614 retval = bulk_latency;
2615 else if ((packets > 35))
2616 retval = lowest_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002617 } else if (bytes/packets > 2000)
2618 retval = bulk_latency;
2619 else if (packets <= 2 && bytes < 512)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002620 retval = lowest_latency;
2621 break;
2622 case bulk_latency: /* 250 usec aka 4000 ints/s */
2623 if (bytes > 25000) {
2624 if (packets > 35)
2625 retval = low_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002626 } else if (bytes < 6000) {
2627 retval = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002628 }
2629 break;
2630 }
2631
2632update_itr_done:
2633 return retval;
2634}
2635
2636static void e1000_set_itr(struct e1000_adapter *adapter)
2637{
2638 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07002639 u16 current_itr;
2640 u32 new_itr = adapter->itr;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002641
2642 if (unlikely(hw->mac_type < e1000_82540))
2643 return;
2644
2645 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2646 if (unlikely(adapter->link_speed != SPEED_1000)) {
2647 current_itr = 0;
2648 new_itr = 4000;
2649 goto set_itr_now;
2650 }
2651
2652 adapter->tx_itr = e1000_update_itr(adapter,
2653 adapter->tx_itr,
2654 adapter->total_tx_packets,
2655 adapter->total_tx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002656 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2657 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2658 adapter->tx_itr = low_latency;
2659
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002660 adapter->rx_itr = e1000_update_itr(adapter,
2661 adapter->rx_itr,
2662 adapter->total_rx_packets,
2663 adapter->total_rx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002664 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2665 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2666 adapter->rx_itr = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002667
2668 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2669
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002670 switch (current_itr) {
2671 /* counts and packets in update_itr are dependent on these numbers */
2672 case lowest_latency:
2673 new_itr = 70000;
2674 break;
2675 case low_latency:
2676 new_itr = 20000; /* aka hwitr = ~200 */
2677 break;
2678 case bulk_latency:
2679 new_itr = 4000;
2680 break;
2681 default:
2682 break;
2683 }
2684
2685set_itr_now:
2686 if (new_itr != adapter->itr) {
2687 /* this attempts to bias the interrupt rate towards Bulk
2688 * by adding intermediate steps when interrupt rate is
2689 * increasing */
2690 new_itr = new_itr > adapter->itr ?
2691 min(adapter->itr + (new_itr >> 2), new_itr) :
2692 new_itr;
2693 adapter->itr = new_itr;
Joe Perches1dc32912008-07-11 15:17:08 -07002694 ew32(ITR, 1000000000 / (new_itr * 256));
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002695 }
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002696}
2697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698#define E1000_TX_FLAGS_CSUM 0x00000001
2699#define E1000_TX_FLAGS_VLAN 0x00000002
2700#define E1000_TX_FLAGS_TSO 0x00000004
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002701#define E1000_TX_FLAGS_IPV4 0x00000008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
2703#define E1000_TX_FLAGS_VLAN_SHIFT 16
2704
Joe Perches64798842008-07-11 15:17:02 -07002705static int e1000_tso(struct e1000_adapter *adapter,
2706 struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002709 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 unsigned int i;
Joe Perches406874a2008-04-03 10:06:32 -07002711 u32 cmd_length = 0;
2712 u16 ipcse = 0, tucse, mss;
2713 u8 ipcss, ipcso, tucss, tucso, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 int err;
2715
Herbert Xu89114af2006-07-08 13:34:32 -07002716 if (skb_is_gso(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 if (skb_header_cloned(skb)) {
2718 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2719 if (err)
2720 return err;
2721 }
2722
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07002723 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Herbert Xu79671682006-06-22 02:40:14 -07002724 mss = skb_shinfo(skb)->gso_size;
Alexey Dobriyan60828232006-05-23 14:52:21 -07002725 if (skb->protocol == htons(ETH_P_IP)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002726 struct iphdr *iph = ip_hdr(skb);
2727 iph->tot_len = 0;
2728 iph->check = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002729 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
2730 iph->daddr, 0,
2731 IPPROTO_TCP,
2732 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002733 cmd_length = E1000_TXD_CMD_IP;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002734 ipcse = skb_transport_offset(skb) - 1;
Auke Koke15fdd02006-08-16 11:28:45 -07002735 } else if (skb->protocol == htons(ETH_P_IPV6)) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002736 ipv6_hdr(skb)->payload_len = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002737 tcp_hdr(skb)->check =
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002738 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
2739 &ipv6_hdr(skb)->daddr,
2740 0, IPPROTO_TCP, 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002741 ipcse = 0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002742 }
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03002743 ipcss = skb_network_offset(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002744 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002745 tucss = skb_transport_offset(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002746 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 tucse = 0;
2748
2749 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002750 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002752 i = tx_ring->next_to_use;
2753 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002754 buffer_info = &tx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756 context_desc->lower_setup.ip_fields.ipcss = ipcss;
2757 context_desc->lower_setup.ip_fields.ipcso = ipcso;
2758 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
2759 context_desc->upper_setup.tcp_fields.tucss = tucss;
2760 context_desc->upper_setup.tcp_fields.tucso = tucso;
2761 context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
2762 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
2763 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
2764 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
2765
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002766 buffer_info->time_stamp = jiffies;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002767 buffer_info->next_to_watch = i;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002768
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002769 if (++i == tx_ring->count) i = 0;
2770 tx_ring->next_to_use = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
Joe Perchesc3033b02008-03-21 11:06:25 -07002772 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 }
Joe Perchesc3033b02008-03-21 11:06:25 -07002774 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775}
2776
Joe Perches64798842008-07-11 15:17:02 -07002777static bool e1000_tx_csum(struct e1000_adapter *adapter,
2778 struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779{
2780 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002781 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 unsigned int i;
Joe Perches406874a2008-04-03 10:06:32 -07002783 u8 css;
Dave Graham3ed30672008-10-09 14:29:26 -07002784 u32 cmd_len = E1000_TXD_CMD_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Dave Graham3ed30672008-10-09 14:29:26 -07002786 if (skb->ip_summed != CHECKSUM_PARTIAL)
2787 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Dave Graham3ed30672008-10-09 14:29:26 -07002789 switch (skb->protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08002790 case cpu_to_be16(ETH_P_IP):
Dave Graham3ed30672008-10-09 14:29:26 -07002791 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
2792 cmd_len |= E1000_TXD_CMD_TCP;
2793 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08002794 case cpu_to_be16(ETH_P_IPV6):
Dave Graham3ed30672008-10-09 14:29:26 -07002795 /* XXX not handling all IPV6 headers */
2796 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
2797 cmd_len |= E1000_TXD_CMD_TCP;
2798 break;
2799 default:
2800 if (unlikely(net_ratelimit()))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07002801 e_warn(drv, "checksum_partial proto=%x!\n",
2802 skb->protocol);
Dave Graham3ed30672008-10-09 14:29:26 -07002803 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 }
2805
Michał Mirosław0d0b1672010-12-14 15:24:08 +00002806 css = skb_checksum_start_offset(skb);
Dave Graham3ed30672008-10-09 14:29:26 -07002807
2808 i = tx_ring->next_to_use;
2809 buffer_info = &tx_ring->buffer_info[i];
2810 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
2811
2812 context_desc->lower_setup.ip_config = 0;
2813 context_desc->upper_setup.tcp_fields.tucss = css;
2814 context_desc->upper_setup.tcp_fields.tucso =
2815 css + skb->csum_offset;
2816 context_desc->upper_setup.tcp_fields.tucse = 0;
2817 context_desc->tcp_seg_setup.data = 0;
2818 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
2819
2820 buffer_info->time_stamp = jiffies;
2821 buffer_info->next_to_watch = i;
2822
2823 if (unlikely(++i == tx_ring->count)) i = 0;
2824 tx_ring->next_to_use = i;
2825
2826 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827}
2828
2829#define E1000_MAX_TXD_PWR 12
2830#define E1000_MAX_DATA_PER_TXD (1<<E1000_MAX_TXD_PWR)
2831
Joe Perches64798842008-07-11 15:17:02 -07002832static int e1000_tx_map(struct e1000_adapter *adapter,
2833 struct e1000_tx_ring *tx_ring,
2834 struct sk_buff *skb, unsigned int first,
2835 unsigned int max_per_txd, unsigned int nr_frags,
2836 unsigned int mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837{
Joe Perches1dc32912008-07-11 15:17:08 -07002838 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck602c0552009-12-02 16:46:00 +00002839 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck37e73df2009-03-25 21:58:45 +00002840 struct e1000_buffer *buffer_info;
Jesse Brandeburgd20b6062009-03-02 16:03:21 -08002841 unsigned int len = skb_headlen(skb);
Alexander Duyck602c0552009-12-02 16:46:00 +00002842 unsigned int offset = 0, size, count = 0, i;
Dean Nelson31c15a22011-08-25 14:39:24 +00002843 unsigned int f, bytecount, segs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
2845 i = tx_ring->next_to_use;
2846
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002847 while (len) {
Alexander Duyck37e73df2009-03-25 21:58:45 +00002848 buffer_info = &tx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 size = min(len, max_per_txd);
Jeff Kirsherfd803242005-12-13 00:06:22 -05002850 /* Workaround for Controller erratum --
2851 * descriptor for non-tso packet in a linear SKB that follows a
2852 * tso gets written back prematurely before the data is fully
Jeff Kirsher0f15a8f2006-03-02 18:46:29 -08002853 * DMA'd to the controller */
Jeff Kirsherfd803242005-12-13 00:06:22 -05002854 if (!skb->data_len && tx_ring->last_tx_tso &&
Herbert Xu89114af2006-07-08 13:34:32 -07002855 !skb_is_gso(skb)) {
Rusty Russell3db1cd52011-12-19 13:56:45 +00002856 tx_ring->last_tx_tso = false;
Jeff Kirsherfd803242005-12-13 00:06:22 -05002857 size -= 4;
2858 }
2859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 /* Workaround for premature desc write-backs
2861 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002862 if (unlikely(mss && !nr_frags && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 size -= 4;
Malli Chilakala97338bd2005-04-28 19:41:46 -07002864 /* work-around for errata 10 and it applies
2865 * to all controllers in PCI-X mode
2866 * The fix is to make sure that the first descriptor of a
2867 * packet is smaller than 2048 - 16 - 16 (or 2016) bytes
2868 */
Joe Perches1dc32912008-07-11 15:17:08 -07002869 if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07002870 (size > 2015) && count == 0))
2871 size = 2015;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002872
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 /* Workaround for potential 82544 hang in PCI-X. Avoid
2874 * terminating buffers within evenly-aligned dwords. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002875 if (unlikely(adapter->pcix_82544 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 !((unsigned long)(skb->data + offset + size - 1) & 4) &&
2877 size > 4))
2878 size -= 4;
2879
2880 buffer_info->length = size;
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00002881 /* set time_stamp *before* dma to help avoid a possible race */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 buffer_info->time_stamp = jiffies;
Alexander Duyck602c0552009-12-02 16:46:00 +00002883 buffer_info->mapped_as_page = false;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002884 buffer_info->dma = dma_map_single(&pdev->dev,
2885 skb->data + offset,
2886 size, DMA_TO_DEVICE);
2887 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck602c0552009-12-02 16:46:00 +00002888 goto dma_error;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002889 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891 len -= size;
2892 offset += size;
2893 count++;
Alexander Duyck37e73df2009-03-25 21:58:45 +00002894 if (len) {
2895 i++;
2896 if (unlikely(i == tx_ring->count))
2897 i = 0;
2898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 }
2900
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002901 for (f = 0; f < nr_frags; f++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002902 const struct skb_frag_struct *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
2904 frag = &skb_shinfo(skb)->frags[f];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002905 len = skb_frag_size(frag);
Ian Campbell877749b2011-08-29 23:18:26 +00002906 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002908 while (len) {
Ian Campbell877749b2011-08-29 23:18:26 +00002909 unsigned long bufend;
Alexander Duyck37e73df2009-03-25 21:58:45 +00002910 i++;
2911 if (unlikely(i == tx_ring->count))
2912 i = 0;
2913
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 buffer_info = &tx_ring->buffer_info[i];
2915 size = min(len, max_per_txd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 /* Workaround for premature desc write-backs
2917 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002918 if (unlikely(mss && f == (nr_frags-1) && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 size -= 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 /* Workaround for potential 82544 hang in PCI-X.
2921 * Avoid terminating buffers within evenly-aligned
2922 * dwords. */
Ian Campbell877749b2011-08-29 23:18:26 +00002923 bufend = (unsigned long)
2924 page_to_phys(skb_frag_page(frag));
2925 bufend += offset + size - 1;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002926 if (unlikely(adapter->pcix_82544 &&
Ian Campbell877749b2011-08-29 23:18:26 +00002927 !(bufend & 4) &&
2928 size > 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 size -= 4;
2930
2931 buffer_info->length = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 buffer_info->time_stamp = jiffies;
Alexander Duyck602c0552009-12-02 16:46:00 +00002933 buffer_info->mapped_as_page = true;
Ian Campbell877749b2011-08-29 23:18:26 +00002934 buffer_info->dma = skb_frag_dma_map(&pdev->dev, frag,
2935 offset, size, DMA_TO_DEVICE);
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002936 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck602c0552009-12-02 16:46:00 +00002937 goto dma_error;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002938 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
2940 len -= size;
2941 offset += size;
2942 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 }
2944 }
2945
Dean Nelson31c15a22011-08-25 14:39:24 +00002946 segs = skb_shinfo(skb)->gso_segs ?: 1;
2947 /* multiply data chunks by size of headers */
2948 bytecount = ((segs - 1) * skb_headlen(skb)) + skb->len;
2949
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 tx_ring->buffer_info[i].skb = skb;
Dean Nelson31c15a22011-08-25 14:39:24 +00002951 tx_ring->buffer_info[i].segs = segs;
2952 tx_ring->buffer_info[i].bytecount = bytecount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 tx_ring->buffer_info[first].next_to_watch = i;
2954
2955 return count;
Alexander Duyck602c0552009-12-02 16:46:00 +00002956
2957dma_error:
2958 dev_err(&pdev->dev, "TX DMA map failed\n");
2959 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002960 if (count)
Alexander Duyck602c0552009-12-02 16:46:00 +00002961 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002962
2963 while (count--) {
2964 if (i==0)
Alexander Duyck602c0552009-12-02 16:46:00 +00002965 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002966 i--;
Alexander Duyck602c0552009-12-02 16:46:00 +00002967 buffer_info = &tx_ring->buffer_info[i];
2968 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
2969 }
2970
2971 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972}
2973
Joe Perches64798842008-07-11 15:17:02 -07002974static void e1000_tx_queue(struct e1000_adapter *adapter,
2975 struct e1000_tx_ring *tx_ring, int tx_flags,
2976 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977{
Joe Perches1dc32912008-07-11 15:17:08 -07002978 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 struct e1000_tx_desc *tx_desc = NULL;
2980 struct e1000_buffer *buffer_info;
Joe Perches406874a2008-04-03 10:06:32 -07002981 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 unsigned int i;
2983
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002984 if (likely(tx_flags & E1000_TX_FLAGS_TSO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
2986 E1000_TXD_CMD_TSE;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002987 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
2988
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002989 if (likely(tx_flags & E1000_TX_FLAGS_IPV4))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002990 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 }
2992
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002993 if (likely(tx_flags & E1000_TX_FLAGS_CSUM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
2995 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
2996 }
2997
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002998 if (unlikely(tx_flags & E1000_TX_FLAGS_VLAN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 txd_lower |= E1000_TXD_CMD_VLE;
3000 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
3001 }
3002
3003 i = tx_ring->next_to_use;
3004
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003005 while (count--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 buffer_info = &tx_ring->buffer_info[i];
3007 tx_desc = E1000_TX_DESC(*tx_ring, i);
3008 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
3009 tx_desc->lower.data =
3010 cpu_to_le32(txd_lower | buffer_info->length);
3011 tx_desc->upper.data = cpu_to_le32(txd_upper);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003012 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 }
3014
3015 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
3016
3017 /* Force memory writes to complete before letting h/w
3018 * know there are new descriptors to fetch. (Only
3019 * applicable for weak-ordered memory model archs,
3020 * such as IA-64). */
3021 wmb();
3022
3023 tx_ring->next_to_use = i;
Joe Perches1dc32912008-07-11 15:17:08 -07003024 writel(i, hw->hw_addr + tx_ring->tdt);
Jesse Brandeburg2ce90472006-11-01 08:47:42 -08003025 /* we need this if more than one processor can write to our tail
3026 * at a time, it syncronizes IO on IA64/Altix systems */
3027 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028}
3029
3030/**
3031 * 82547 workaround to avoid controller hang in half-duplex environment.
3032 * The workaround is to avoid queuing a large packet that would span
3033 * the internal Tx FIFO ring boundary by notifying the stack to resend
3034 * the packet at a later time. This gives the Tx FIFO an opportunity to
3035 * flush all packets. When that occurs, we reset the Tx FIFO pointers
3036 * to the beginning of the Tx FIFO.
3037 **/
3038
3039#define E1000_FIFO_HDR 0x10
3040#define E1000_82547_PAD_LEN 0x3E0
3041
Joe Perches64798842008-07-11 15:17:02 -07003042static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
3043 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044{
Joe Perches406874a2008-04-03 10:06:32 -07003045 u32 fifo_space = adapter->tx_fifo_size - adapter->tx_fifo_head;
3046 u32 skb_fifo_len = skb->len + E1000_FIFO_HDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07003048 skb_fifo_len = ALIGN(skb_fifo_len, E1000_FIFO_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003050 if (adapter->link_duplex != HALF_DUPLEX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 goto no_fifo_stall_required;
3052
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003053 if (atomic_read(&adapter->tx_fifo_stall))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 return 1;
3055
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003056 if (skb_fifo_len >= (E1000_82547_PAD_LEN + fifo_space)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 atomic_set(&adapter->tx_fifo_stall, 1);
3058 return 1;
3059 }
3060
3061no_fifo_stall_required:
3062 adapter->tx_fifo_head += skb_fifo_len;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003063 if (adapter->tx_fifo_head >= adapter->tx_fifo_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 adapter->tx_fifo_head -= adapter->tx_fifo_size;
3065 return 0;
3066}
3067
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003068static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
3069{
3070 struct e1000_adapter *adapter = netdev_priv(netdev);
3071 struct e1000_tx_ring *tx_ring = adapter->tx_ring;
3072
3073 netif_stop_queue(netdev);
3074 /* Herbert's original patch had:
3075 * smp_mb__after_netif_stop_queue();
3076 * but since that doesn't exist yet, just open code it. */
3077 smp_mb();
3078
3079 /* We need to check again in a case another CPU has just
3080 * made room available. */
3081 if (likely(E1000_DESC_UNUSED(tx_ring) < size))
3082 return -EBUSY;
3083
3084 /* A reprieve! */
3085 netif_start_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003086 ++adapter->restart_queue;
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003087 return 0;
3088}
3089
3090static int e1000_maybe_stop_tx(struct net_device *netdev,
3091 struct e1000_tx_ring *tx_ring, int size)
3092{
3093 if (likely(E1000_DESC_UNUSED(tx_ring) >= size))
3094 return 0;
3095 return __e1000_maybe_stop_tx(netdev, size);
3096}
3097
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098#define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
Stephen Hemminger3b29a562009-08-31 19:50:55 +00003099static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
3100 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003102 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07003103 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003104 struct e1000_tx_ring *tx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 unsigned int first, max_per_txd = E1000_MAX_DATA_PER_TXD;
3106 unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
3107 unsigned int tx_flags = 0;
Eric Dumazete743d312010-04-14 15:59:40 -07003108 unsigned int len = skb_headlen(skb);
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003109 unsigned int nr_frags;
3110 unsigned int mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 int count = 0;
Auke Kok76c224b2006-05-23 13:36:06 -07003112 int tso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003115 /* This goes back to the question of how to logically map a tx queue
3116 * to a flow. Right now, performance is impacted slightly negatively
3117 * if using multiple tx queues. If the stack breaks away from a
3118 * single qdisc implementation, we can look at this again. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003119 tx_ring = adapter->tx_ring;
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04003120
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003121 if (unlikely(skb->len <= 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 dev_kfree_skb_any(skb);
3123 return NETDEV_TX_OK;
3124 }
3125
Herbert Xu79671682006-06-22 02:40:14 -07003126 mss = skb_shinfo(skb)->gso_size;
Auke Kok76c224b2006-05-23 13:36:06 -07003127 /* The controller does a simple calculation to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 * make sure there is enough room in the FIFO before
3129 * initiating the DMA for each buffer. The calc is:
3130 * 4 = ceil(buffer len/mss). To make sure we don't
3131 * overrun the FIFO, adjust the max buffer len if mss
3132 * drops. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003133 if (mss) {
Joe Perches406874a2008-04-03 10:06:32 -07003134 u8 hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 max_per_txd = min(mss << 2, max_per_txd);
3136 max_txd_pwr = fls(max_per_txd) - 1;
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003137
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07003138 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003139 if (skb->data_len && hdr_len == len) {
Joe Perches1dc32912008-07-11 15:17:08 -07003140 switch (hw->mac_type) {
Jeff Kirsher9f687882006-03-02 18:20:17 -08003141 unsigned int pull_size;
Herbert Xu683a2aa2006-12-16 12:04:33 +11003142 case e1000_82544:
3143 /* Make sure we have room to chop off 4 bytes,
3144 * and that the end alignment will work out to
3145 * this hardware's requirements
3146 * NOTE: this is a TSO only workaround
3147 * if end byte alignment not correct move us
3148 * into the next dword */
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003149 if ((unsigned long)(skb_tail_pointer(skb) - 1) & 4)
Herbert Xu683a2aa2006-12-16 12:04:33 +11003150 break;
3151 /* fall through */
Jeff Kirsher9f687882006-03-02 18:20:17 -08003152 pull_size = min((unsigned int)4, skb->data_len);
3153 if (!__pskb_pull_tail(skb, pull_size)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003154 e_err(drv, "__pskb_pull_tail "
3155 "failed.\n");
Jeff Kirsher9f687882006-03-02 18:20:17 -08003156 dev_kfree_skb_any(skb);
Jeff Garzik749dfc702006-03-11 13:35:31 -05003157 return NETDEV_TX_OK;
Jeff Kirsher9f687882006-03-02 18:20:17 -08003158 }
Eric Dumazete743d312010-04-14 15:59:40 -07003159 len = skb_headlen(skb);
Jeff Kirsher9f687882006-03-02 18:20:17 -08003160 break;
3161 default:
3162 /* do nothing */
3163 break;
Jeff Kirsherd74bbd32006-01-12 16:51:07 -08003164 }
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 }
3167
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003168 /* reserve a descriptor for the offload context */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003169 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 count++;
Malli Chilakala26483452005-04-28 19:44:46 -07003171 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003172
Jeff Kirsherfd803242005-12-13 00:06:22 -05003173 /* Controller Erratum workaround */
Herbert Xu89114af2006-07-08 13:34:32 -07003174 if (!skb->data_len && tx_ring->last_tx_tso && !skb_is_gso(skb))
Jeff Kirsherfd803242005-12-13 00:06:22 -05003175 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003176
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 count += TXD_USE_COUNT(len, max_txd_pwr);
3178
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003179 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 count++;
3181
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003182 /* work-around for errata 10 and it applies to all controllers
Malli Chilakala97338bd2005-04-28 19:41:46 -07003183 * in PCI-X mode, so add one more descriptor to the count
3184 */
Joe Perches1dc32912008-07-11 15:17:08 -07003185 if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07003186 (len > 2015)))
3187 count++;
3188
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 nr_frags = skb_shinfo(skb)->nr_frags;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003190 for (f = 0; f < nr_frags; f++)
Eric Dumazet9e903e02011-10-18 21:00:24 +00003191 count += TXD_USE_COUNT(skb_frag_size(&skb_shinfo(skb)->frags[f]),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 max_txd_pwr);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003193 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 count += nr_frags;
3195
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 /* need: count + 2 desc gap to keep tail from touching
3197 * head, otherwise try next time */
Alexander Duyck80179432009-01-21 14:42:47 -08003198 if (unlikely(e1000_maybe_stop_tx(netdev, tx_ring, count + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
Jesse Brandeburga4010af2011-10-05 07:24:41 +00003201 if (unlikely((hw->mac_type == e1000_82547) &&
3202 (e1000_82547_fifo_workaround(adapter, skb)))) {
3203 netif_stop_queue(netdev);
3204 if (!test_bit(__E1000_DOWN, &adapter->flags))
3205 schedule_delayed_work(&adapter->fifo_stall_task, 1);
3206 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 }
3208
Jiri Pirko5622e402011-07-21 03:26:31 +00003209 if (vlan_tx_tag_present(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 tx_flags |= E1000_TX_FLAGS_VLAN;
3211 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
3212 }
3213
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003214 first = tx_ring->next_to_use;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003215
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003216 tso = e1000_tso(adapter, tx_ring, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 if (tso < 0) {
3218 dev_kfree_skb_any(skb);
3219 return NETDEV_TX_OK;
3220 }
3221
Jeff Kirsherfd803242005-12-13 00:06:22 -05003222 if (likely(tso)) {
Jesse Brandeburg8fce4732009-09-25 12:18:41 +00003223 if (likely(hw->mac_type != e1000_82544))
Rusty Russell3db1cd52011-12-19 13:56:45 +00003224 tx_ring->last_tx_tso = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 tx_flags |= E1000_TX_FLAGS_TSO;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003226 } else if (likely(e1000_tx_csum(adapter, tx_ring, skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 tx_flags |= E1000_TX_FLAGS_CSUM;
3228
Alexey Dobriyan60828232006-05-23 14:52:21 -07003229 if (likely(skb->protocol == htons(ETH_P_IP)))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003230 tx_flags |= E1000_TX_FLAGS_IPV4;
3231
Alexander Duyck37e73df2009-03-25 21:58:45 +00003232 count = e1000_tx_map(adapter, tx_ring, skb, first, max_per_txd,
3233 nr_frags, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
Alexander Duyck37e73df2009-03-25 21:58:45 +00003235 if (count) {
3236 e1000_tx_queue(adapter, tx_ring, tx_flags, count);
Alexander Duyck37e73df2009-03-25 21:58:45 +00003237 /* Make sure there is space in the ring for the next send. */
3238 e1000_maybe_stop_tx(netdev, tx_ring, MAX_SKB_FRAGS + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
Alexander Duyck37e73df2009-03-25 21:58:45 +00003240 } else {
3241 dev_kfree_skb_any(skb);
3242 tx_ring->buffer_info[first].time_stamp = 0;
3243 tx_ring->next_to_use = first;
3244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 return NETDEV_TX_OK;
3247}
3248
3249/**
3250 * e1000_tx_timeout - Respond to a Tx Hang
3251 * @netdev: network interface device structure
3252 **/
3253
Joe Perches64798842008-07-11 15:17:02 -07003254static void e1000_tx_timeout(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003256 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
3258 /* Do the reset outside of interrupt context */
Jeff Kirsher87041632006-03-02 18:21:24 -08003259 adapter->tx_timeout_count++;
3260 schedule_work(&adapter->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261}
3262
Joe Perches64798842008-07-11 15:17:02 -07003263static void e1000_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264{
David Howells65f27f32006-11-22 14:55:48 +00003265 struct e1000_adapter *adapter =
3266 container_of(work, struct e1000_adapter, reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
Jesse Brandeburg0ef4eed2011-10-05 07:24:51 +00003268 if (test_bit(__E1000_DOWN, &adapter->flags))
3269 return;
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00003270 e1000_reinit_safe(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271}
3272
3273/**
3274 * e1000_get_stats - Get System Network Statistics
3275 * @netdev: network interface device structure
3276 *
3277 * Returns the address of the device statistics structure.
Jesse Brandeburga4010af2011-10-05 07:24:41 +00003278 * The statistics are actually updated from the watchdog.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 **/
3280
Joe Perches64798842008-07-11 15:17:02 -07003281static struct net_device_stats *e1000_get_stats(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282{
Jeff Kirsher6b7660c2006-01-12 16:50:35 -08003283 /* only return the current stats */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003284 return &netdev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285}
3286
3287/**
3288 * e1000_change_mtu - Change the Maximum Transfer Unit
3289 * @netdev: network interface device structure
3290 * @new_mtu: new value for maximum frame size
3291 *
3292 * Returns 0 on success, negative on failure
3293 **/
3294
Joe Perches64798842008-07-11 15:17:02 -07003295static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003297 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07003298 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 int max_frame = new_mtu + ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
3300
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003301 if ((max_frame < MINIMUM_ETHERNET_FRAME_SIZE) ||
3302 (max_frame > MAX_JUMBO_FRAME_SIZE)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003303 e_err(probe, "Invalid MTU setting\n");
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04003304 return -EINVAL;
3305 }
3306
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003307 /* Adapter-specific max frame size limits. */
Joe Perches1dc32912008-07-11 15:17:08 -07003308 switch (hw->mac_type) {
Auke Kok9e2feac2006-04-14 19:05:18 -07003309 case e1000_undefined ... e1000_82542_rev2_1:
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +00003310 if (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003311 e_err(probe, "Jumbo Frames not supported.\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003312 return -EINVAL;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003313 }
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003314 break;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003315 default:
3316 /* Capable of supporting up to MAX_JUMBO_FRAME_SIZE limit. */
3317 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003318 }
3319
Jesse Brandeburg3d6114e2009-09-25 12:19:02 +00003320 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
3321 msleep(1);
3322 /* e1000_down has a dependency on max_frame_size */
3323 hw->max_frame_size = max_frame;
3324 if (netif_running(netdev))
3325 e1000_down(adapter);
3326
David S. Miller87f50322006-07-31 22:39:40 -07003327 /* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kok9e2feac2006-04-14 19:05:18 -07003328 * means we reserve 2 more, this pushes us to allocate from the next
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003329 * larger slab size.
3330 * i.e. RXBUFFER_2048 --> size-4096 slab
3331 * however with the new *_jumbo_rx* routines, jumbo receives will use
3332 * fragmented skbs */
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003333
Jesse Brandeburg99261462010-01-22 22:56:16 +00003334 if (max_frame <= E1000_RXBUFFER_2048)
Auke Kok9e2feac2006-04-14 19:05:18 -07003335 adapter->rx_buffer_len = E1000_RXBUFFER_2048;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003336 else
3337#if (PAGE_SIZE >= E1000_RXBUFFER_16384)
Auke Kok9e2feac2006-04-14 19:05:18 -07003338 adapter->rx_buffer_len = E1000_RXBUFFER_16384;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003339#elif (PAGE_SIZE >= E1000_RXBUFFER_4096)
3340 adapter->rx_buffer_len = PAGE_SIZE;
3341#endif
Auke Kok9e2feac2006-04-14 19:05:18 -07003342
3343 /* adjust allocation if LPE protects us, and we aren't using SBP */
Joe Perches1dc32912008-07-11 15:17:08 -07003344 if (!hw->tbi_compatibility_on &&
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +00003345 ((max_frame == (ETH_FRAME_LEN + ETH_FCS_LEN)) ||
Auke Kok9e2feac2006-04-14 19:05:18 -07003346 (max_frame == MAXIMUM_ETHERNET_VLAN_SIZE)))
3347 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003348
Emil Tantilov675ad472010-04-27 14:02:58 +00003349 pr_info("%s changing MTU from %d to %d\n",
3350 netdev->name, netdev->mtu, new_mtu);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003351 netdev->mtu = new_mtu;
3352
Auke Kok2db10a02006-06-27 09:06:28 -07003353 if (netif_running(netdev))
Jesse Brandeburg3d6114e2009-09-25 12:19:02 +00003354 e1000_up(adapter);
3355 else
3356 e1000_reset(adapter);
3357
3358 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 return 0;
3361}
3362
3363/**
3364 * e1000_update_stats - Update the board statistics counters
3365 * @adapter: board private structure
3366 **/
3367
Joe Perches64798842008-07-11 15:17:02 -07003368void e1000_update_stats(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369{
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003370 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 struct e1000_hw *hw = &adapter->hw;
Linas Vepstas282f33c2006-06-08 22:19:44 -07003372 struct pci_dev *pdev = adapter->pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 unsigned long flags;
Joe Perches406874a2008-04-03 10:06:32 -07003374 u16 phy_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375
3376#define PHY_IDLE_ERROR_COUNT_MASK 0x00FF
3377
Linas Vepstas282f33c2006-06-08 22:19:44 -07003378 /*
3379 * Prevent stats update while adapter is being reset, or if the pci
3380 * connection is down.
3381 */
Auke Kok90267292006-06-08 09:30:24 -07003382 if (adapter->link_speed == 0)
3383 return;
Linas Vepstas81b19552006-12-12 18:29:15 -06003384 if (pci_channel_offline(pdev))
Linas Vepstas282f33c2006-06-08 22:19:44 -07003385 return;
Auke Kok90267292006-06-08 09:30:24 -07003386
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 spin_lock_irqsave(&adapter->stats_lock, flags);
3388
Masatake YAMATO828d0552007-10-20 03:06:37 +02003389 /* these counters are modified from e1000_tbi_adjust_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 * called from the interrupt context, so they must only
3391 * be written while holding adapter->stats_lock
3392 */
3393
Joe Perches1dc32912008-07-11 15:17:08 -07003394 adapter->stats.crcerrs += er32(CRCERRS);
3395 adapter->stats.gprc += er32(GPRC);
3396 adapter->stats.gorcl += er32(GORCL);
3397 adapter->stats.gorch += er32(GORCH);
3398 adapter->stats.bprc += er32(BPRC);
3399 adapter->stats.mprc += er32(MPRC);
3400 adapter->stats.roc += er32(ROC);
Auke Kokcd94dd02006-06-27 09:08:22 -07003401
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003402 adapter->stats.prc64 += er32(PRC64);
3403 adapter->stats.prc127 += er32(PRC127);
3404 adapter->stats.prc255 += er32(PRC255);
3405 adapter->stats.prc511 += er32(PRC511);
3406 adapter->stats.prc1023 += er32(PRC1023);
3407 adapter->stats.prc1522 += er32(PRC1522);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Joe Perches1dc32912008-07-11 15:17:08 -07003409 adapter->stats.symerrs += er32(SYMERRS);
3410 adapter->stats.mpc += er32(MPC);
3411 adapter->stats.scc += er32(SCC);
3412 adapter->stats.ecol += er32(ECOL);
3413 adapter->stats.mcc += er32(MCC);
3414 adapter->stats.latecol += er32(LATECOL);
3415 adapter->stats.dc += er32(DC);
3416 adapter->stats.sec += er32(SEC);
3417 adapter->stats.rlec += er32(RLEC);
3418 adapter->stats.xonrxc += er32(XONRXC);
3419 adapter->stats.xontxc += er32(XONTXC);
3420 adapter->stats.xoffrxc += er32(XOFFRXC);
3421 adapter->stats.xofftxc += er32(XOFFTXC);
3422 adapter->stats.fcruc += er32(FCRUC);
3423 adapter->stats.gptc += er32(GPTC);
3424 adapter->stats.gotcl += er32(GOTCL);
3425 adapter->stats.gotch += er32(GOTCH);
3426 adapter->stats.rnbc += er32(RNBC);
3427 adapter->stats.ruc += er32(RUC);
3428 adapter->stats.rfc += er32(RFC);
3429 adapter->stats.rjc += er32(RJC);
3430 adapter->stats.torl += er32(TORL);
3431 adapter->stats.torh += er32(TORH);
3432 adapter->stats.totl += er32(TOTL);
3433 adapter->stats.toth += er32(TOTH);
3434 adapter->stats.tpr += er32(TPR);
Auke Kokcd94dd02006-06-27 09:08:22 -07003435
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003436 adapter->stats.ptc64 += er32(PTC64);
3437 adapter->stats.ptc127 += er32(PTC127);
3438 adapter->stats.ptc255 += er32(PTC255);
3439 adapter->stats.ptc511 += er32(PTC511);
3440 adapter->stats.ptc1023 += er32(PTC1023);
3441 adapter->stats.ptc1522 += er32(PTC1522);
Auke Kokcd94dd02006-06-27 09:08:22 -07003442
Joe Perches1dc32912008-07-11 15:17:08 -07003443 adapter->stats.mptc += er32(MPTC);
3444 adapter->stats.bptc += er32(BPTC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445
3446 /* used for adaptive IFS */
3447
Joe Perches1dc32912008-07-11 15:17:08 -07003448 hw->tx_packet_delta = er32(TPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 adapter->stats.tpt += hw->tx_packet_delta;
Joe Perches1dc32912008-07-11 15:17:08 -07003450 hw->collision_delta = er32(COLC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 adapter->stats.colc += hw->collision_delta;
3452
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003453 if (hw->mac_type >= e1000_82543) {
Joe Perches1dc32912008-07-11 15:17:08 -07003454 adapter->stats.algnerrc += er32(ALGNERRC);
3455 adapter->stats.rxerrc += er32(RXERRC);
3456 adapter->stats.tncrs += er32(TNCRS);
3457 adapter->stats.cexterr += er32(CEXTERR);
3458 adapter->stats.tsctc += er32(TSCTC);
3459 adapter->stats.tsctfc += er32(TSCTFC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 }
3461
3462 /* Fill out the OS statistics structure */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003463 netdev->stats.multicast = adapter->stats.mprc;
3464 netdev->stats.collisions = adapter->stats.colc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466 /* Rx Errors */
3467
Jeff Kirsher87041632006-03-02 18:21:24 -08003468 /* RLEC on some newer hardware can be incorrect so build
3469 * our own version based on RUC and ROC */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003470 netdev->stats.rx_errors = adapter->stats.rxerrc +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 adapter->stats.crcerrs + adapter->stats.algnerrc +
Jeff Kirsher87041632006-03-02 18:21:24 -08003472 adapter->stats.ruc + adapter->stats.roc +
3473 adapter->stats.cexterr;
Mitch Williams49559852006-09-27 12:53:37 -07003474 adapter->stats.rlerrc = adapter->stats.ruc + adapter->stats.roc;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003475 netdev->stats.rx_length_errors = adapter->stats.rlerrc;
3476 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
3477 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
3478 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
3480 /* Tx Errors */
Mitch Williams49559852006-09-27 12:53:37 -07003481 adapter->stats.txerrc = adapter->stats.ecol + adapter->stats.latecol;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003482 netdev->stats.tx_errors = adapter->stats.txerrc;
3483 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
3484 netdev->stats.tx_window_errors = adapter->stats.latecol;
3485 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Joe Perches1dc32912008-07-11 15:17:08 -07003486 if (hw->bad_tx_carr_stats_fd &&
Jeff Garzik167fb282006-12-15 10:41:15 -05003487 adapter->link_duplex == FULL_DUPLEX) {
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003488 netdev->stats.tx_carrier_errors = 0;
Jeff Garzik167fb282006-12-15 10:41:15 -05003489 adapter->stats.tncrs = 0;
3490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
3492 /* Tx Dropped needs to be maintained elsewhere */
3493
3494 /* Phy Stats */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003495 if (hw->media_type == e1000_media_type_copper) {
3496 if ((adapter->link_speed == SPEED_1000) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 (!e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_tmp))) {
3498 phy_tmp &= PHY_IDLE_ERROR_COUNT_MASK;
3499 adapter->phy_stats.idle_errors += phy_tmp;
3500 }
3501
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003502 if ((hw->mac_type <= e1000_82546) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 (hw->phy_type == e1000_phy_m88) &&
3504 !e1000_read_phy_reg(hw, M88E1000_RX_ERR_CNTR, &phy_tmp))
3505 adapter->phy_stats.receive_errors += phy_tmp;
3506 }
3507
Jeff Garzik15e376b2006-12-15 11:16:33 -05003508 /* Management Stats */
Joe Perches1dc32912008-07-11 15:17:08 -07003509 if (hw->has_smbus) {
3510 adapter->stats.mgptc += er32(MGTPTC);
3511 adapter->stats.mgprc += er32(MGTPRC);
3512 adapter->stats.mgpdc += er32(MGTPDC);
Jeff Garzik15e376b2006-12-15 11:16:33 -05003513 }
3514
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 spin_unlock_irqrestore(&adapter->stats_lock, flags);
3516}
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003517
3518/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 * e1000_intr - Interrupt Handler
3520 * @irq: interrupt number
3521 * @data: pointer to a network interface device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 **/
3523
Joe Perches64798842008-07-11 15:17:02 -07003524static irqreturn_t e1000_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525{
3526 struct net_device *netdev = data;
Malli Chilakala60490fe2005-06-17 17:41:45 -07003527 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003529 u32 icr = er32(ICR);
Francois Romieuc3570ac2008-07-11 15:17:38 -07003530
Jesse Brandeburg4c11b8a2011-01-13 07:48:13 +00003531 if (unlikely((!icr)))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003532 return IRQ_NONE; /* Not our interrupt */
3533
Jesse Brandeburg4c11b8a2011-01-13 07:48:13 +00003534 /*
3535 * we might have caused the interrupt, but the above
3536 * read cleared it, and just in case the driver is
3537 * down there is nothing to do so return handled
3538 */
3539 if (unlikely(test_bit(__E1000_DOWN, &adapter->flags)))
3540 return IRQ_HANDLED;
3541
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003542 if (unlikely(icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 hw->get_link_status = 1;
Auke Kok1314bbf2006-09-27 12:54:02 -07003544 /* guard against interrupt when we're going down */
3545 if (!test_bit(__E1000_DOWN, &adapter->flags))
Jesse Brandeburga4010af2011-10-05 07:24:41 +00003546 schedule_delayed_work(&adapter->watchdog_task, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 }
3548
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003549 /* disable interrupts, without the synchronize_irq bit */
3550 ew32(IMC, ~0);
3551 E1000_WRITE_FLUSH();
3552
Ben Hutchings288379f2009-01-19 16:43:59 -08003553 if (likely(napi_schedule_prep(&adapter->napi))) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003554 adapter->total_tx_bytes = 0;
3555 adapter->total_tx_packets = 0;
3556 adapter->total_rx_bytes = 0;
3557 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08003558 __napi_schedule(&adapter->napi);
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003559 } else {
Auke Kok90fb5132006-11-01 08:47:30 -08003560 /* this really should not happen! if it does it is basically a
3561 * bug, but not a hard error, so enable ints and continue */
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003562 if (!test_bit(__E1000_DOWN, &adapter->flags))
3563 e1000_irq_enable(adapter);
3564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 return IRQ_HANDLED;
3567}
3568
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569/**
3570 * e1000_clean - NAPI Rx polling callback
3571 * @adapter: board private structure
3572 **/
Joe Perches64798842008-07-11 15:17:02 -07003573static int e1000_clean(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003575 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003576 int tx_clean_complete = 0, work_done = 0;
Malli Chilakala26483452005-04-28 19:44:46 -07003577
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003578 tx_clean_complete = e1000_clean_tx_irq(adapter, &adapter->tx_ring[0]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003579
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003580 adapter->clean_rx(adapter, &adapter->rx_ring[0], &work_done, budget);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003581
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003582 if (!tx_clean_complete)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08003583 work_done = budget;
3584
David S. Miller53e52c72008-01-07 21:06:12 -08003585 /* If budget not fully consumed, exit the polling mode */
3586 if (work_done < budget) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003587 if (likely(adapter->itr_setting & 3))
3588 e1000_set_itr(adapter);
Ben Hutchings288379f2009-01-19 16:43:59 -08003589 napi_complete(napi);
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003590 if (!test_bit(__E1000_DOWN, &adapter->flags))
3591 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 }
3593
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003594 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595}
3596
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597/**
3598 * e1000_clean_tx_irq - Reclaim resources after transmit completes
3599 * @adapter: board private structure
3600 **/
Joe Perches64798842008-07-11 15:17:02 -07003601static bool e1000_clean_tx_irq(struct e1000_adapter *adapter,
3602 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603{
Joe Perches1dc32912008-07-11 15:17:08 -07003604 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 struct net_device *netdev = adapter->netdev;
3606 struct e1000_tx_desc *tx_desc, *eop_desc;
3607 struct e1000_buffer *buffer_info;
3608 unsigned int i, eop;
Jeff Kirsher2a1af5d2006-03-02 18:20:43 -08003609 unsigned int count = 0;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003610 unsigned int total_tx_bytes=0, total_tx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
3612 i = tx_ring->next_to_clean;
3613 eop = tx_ring->buffer_info[i].next_to_watch;
3614 eop_desc = E1000_TX_DESC(*tx_ring, eop);
3615
Alexander Duyckccfb3422009-03-25 21:59:04 +00003616 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
3617 (count < tx_ring->count)) {
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003618 bool cleaned = false;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00003619 rmb(); /* read buffer_info after eop_desc */
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003620 for ( ; !cleaned; count++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 tx_desc = E1000_TX_DESC(*tx_ring, i);
3622 buffer_info = &tx_ring->buffer_info[i];
3623 cleaned = (i == eop);
3624
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003625 if (cleaned) {
Dean Nelson31c15a22011-08-25 14:39:24 +00003626 total_tx_packets += buffer_info->segs;
3627 total_tx_bytes += buffer_info->bytecount;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003628 }
Jeff Kirsherfd803242005-12-13 00:06:22 -05003629 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08003630 tx_desc->upper.data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003632 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003634
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 eop = tx_ring->buffer_info[i].next_to_watch;
3636 eop_desc = E1000_TX_DESC(*tx_ring, eop);
3637 }
3638
3639 tx_ring->next_to_clean = i;
3640
Auke Kok77b2aad2006-04-14 19:05:25 -07003641#define TX_WAKE_THRESHOLD 32
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003642 if (unlikely(count && netif_carrier_ok(netdev) &&
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003643 E1000_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD)) {
3644 /* Make sure that anybody stopping the queue after this
3645 * sees the new next_to_clean.
3646 */
3647 smp_mb();
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003648
3649 if (netif_queue_stopped(netdev) &&
3650 !(test_bit(__E1000_DOWN, &adapter->flags))) {
Auke Kok77b2aad2006-04-14 19:05:25 -07003651 netif_wake_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003652 ++adapter->restart_queue;
3653 }
Auke Kok77b2aad2006-04-14 19:05:25 -07003654 }
Malli Chilakala26483452005-04-28 19:44:46 -07003655
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003656 if (adapter->detect_tx_hung) {
Malli Chilakala26483452005-04-28 19:44:46 -07003657 /* Detect a transmit hang in hardware, this serializes the
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 * check with the clearing of time_stamp and movement of i */
Joe Perchesc3033b02008-03-21 11:06:25 -07003659 adapter->detect_tx_hung = false;
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003660 if (tx_ring->buffer_info[eop].time_stamp &&
3661 time_after(jiffies, tx_ring->buffer_info[eop].time_stamp +
Joe Perches8e95a202009-12-03 07:58:21 +00003662 (adapter->tx_timeout_factor * HZ)) &&
3663 !(er32(STATUS) & E1000_STATUS_TXOFF)) {
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003664
3665 /* detected Tx unit hang */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003666 e_err(drv, "Detected Tx Unit Hang\n"
Emil Tantilov675ad472010-04-27 14:02:58 +00003667 " Tx Queue <%lu>\n"
3668 " TDH <%x>\n"
3669 " TDT <%x>\n"
3670 " next_to_use <%x>\n"
3671 " next_to_clean <%x>\n"
3672 "buffer_info[next_to_clean]\n"
3673 " time_stamp <%lx>\n"
3674 " next_to_watch <%x>\n"
3675 " jiffies <%lx>\n"
3676 " next_to_watch.status <%x>\n",
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08003677 (unsigned long)((tx_ring - adapter->tx_ring) /
3678 sizeof(struct e1000_tx_ring)),
Joe Perches1dc32912008-07-11 15:17:08 -07003679 readl(hw->hw_addr + tx_ring->tdh),
3680 readl(hw->hw_addr + tx_ring->tdt),
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003681 tx_ring->next_to_use,
Jeff Kirsher392137f2006-01-12 16:50:57 -08003682 tx_ring->next_to_clean,
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003683 tx_ring->buffer_info[eop].time_stamp,
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003684 eop,
3685 jiffies,
3686 eop_desc->upper.fields.status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 netif_stop_queue(netdev);
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 }
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003690 adapter->total_tx_bytes += total_tx_bytes;
3691 adapter->total_tx_packets += total_tx_packets;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003692 netdev->stats.tx_bytes += total_tx_bytes;
3693 netdev->stats.tx_packets += total_tx_packets;
Eric Dumazet807540b2010-09-23 05:40:09 +00003694 return count < tx_ring->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695}
3696
3697/**
3698 * e1000_rx_checksum - Receive Checksum Offload for 82543
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003699 * @adapter: board private structure
3700 * @status_err: receive descriptor status and error fields
3701 * @csum: receive descriptor csum field
3702 * @sk_buff: socket buffer with received data
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 **/
3704
Joe Perches64798842008-07-11 15:17:02 -07003705static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
3706 u32 csum, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707{
Joe Perches1dc32912008-07-11 15:17:08 -07003708 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07003709 u16 status = (u16)status_err;
3710 u8 errors = (u8)(status_err >> 24);
Eric Dumazetbc8acf22010-09-02 13:07:41 -07003711
3712 skb_checksum_none_assert(skb);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003713
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 /* 82543 or newer only */
Joe Perches1dc32912008-07-11 15:17:08 -07003715 if (unlikely(hw->mac_type < e1000_82543)) return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 /* Ignore Checksum bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003717 if (unlikely(status & E1000_RXD_STAT_IXSM)) return;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003718 /* TCP/UDP checksum error bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003719 if (unlikely(errors & E1000_RXD_ERR_TCPE)) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003720 /* let the stack verify checksum errors */
3721 adapter->hw_csum_err++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 return;
3723 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003724 /* TCP/UDP Checksum has not been calculated */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003725 if (!(status & E1000_RXD_STAT_TCPCS))
3726 return;
3727
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003728 /* It must be a TCP or UDP packet with a valid checksum */
3729 if (likely(status & E1000_RXD_STAT_TCPCS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 /* TCP checksum is good */
3731 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003733 adapter->hw_csum_good++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734}
3735
3736/**
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003737 * e1000_consume_page - helper function
3738 **/
3739static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
3740 u16 length)
3741{
3742 bi->page = NULL;
3743 skb->len += length;
3744 skb->data_len += length;
Eric Dumazeted64b3c2011-10-13 07:53:42 +00003745 skb->truesize += PAGE_SIZE;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003746}
3747
3748/**
3749 * e1000_receive_skb - helper function to handle rx indications
3750 * @adapter: board private structure
3751 * @status: descriptor status field as written by hardware
3752 * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
3753 * @skb: pointer to sk_buff to be indicated to stack
3754 */
3755static void e1000_receive_skb(struct e1000_adapter *adapter, u8 status,
3756 __le16 vlan, struct sk_buff *skb)
3757{
Jesse Brandeburg6a08d192010-09-22 18:23:05 +00003758 skb->protocol = eth_type_trans(skb, adapter->netdev);
3759
Jiri Pirko5622e402011-07-21 03:26:31 +00003760 if (status & E1000_RXD_STAT_VP) {
3761 u16 vid = le16_to_cpu(vlan) & E1000_RXD_SPC_VLAN_MASK;
3762
3763 __vlan_hwaccel_put_tag(skb, vid);
3764 }
3765 napi_gro_receive(&adapter->napi, skb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003766}
3767
3768/**
3769 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
3770 * @adapter: board private structure
3771 * @rx_ring: ring to clean
3772 * @work_done: amount of napi work completed this call
3773 * @work_to_do: max amount of work allowed for this call to do
3774 *
3775 * the return value indicates whether actual cleaning was done, there
3776 * is no guarantee that everything was cleaned
3777 */
3778static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
3779 struct e1000_rx_ring *rx_ring,
3780 int *work_done, int work_to_do)
3781{
3782 struct e1000_hw *hw = &adapter->hw;
3783 struct net_device *netdev = adapter->netdev;
3784 struct pci_dev *pdev = adapter->pdev;
3785 struct e1000_rx_desc *rx_desc, *next_rxd;
3786 struct e1000_buffer *buffer_info, *next_buffer;
3787 unsigned long irq_flags;
3788 u32 length;
3789 unsigned int i;
3790 int cleaned_count = 0;
3791 bool cleaned = false;
3792 unsigned int total_rx_bytes=0, total_rx_packets=0;
3793
3794 i = rx_ring->next_to_clean;
3795 rx_desc = E1000_RX_DESC(*rx_ring, i);
3796 buffer_info = &rx_ring->buffer_info[i];
3797
3798 while (rx_desc->status & E1000_RXD_STAT_DD) {
3799 struct sk_buff *skb;
3800 u8 status;
3801
3802 if (*work_done >= work_to_do)
3803 break;
3804 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00003805 rmb(); /* read descriptor and rx_buffer_info after status DD */
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003806
3807 status = rx_desc->status;
3808 skb = buffer_info->skb;
3809 buffer_info->skb = NULL;
3810
3811 if (++i == rx_ring->count) i = 0;
3812 next_rxd = E1000_RX_DESC(*rx_ring, i);
3813 prefetch(next_rxd);
3814
3815 next_buffer = &rx_ring->buffer_info[i];
3816
3817 cleaned = true;
3818 cleaned_count++;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00003819 dma_unmap_page(&pdev->dev, buffer_info->dma,
3820 buffer_info->length, DMA_FROM_DEVICE);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003821 buffer_info->dma = 0;
3822
3823 length = le16_to_cpu(rx_desc->length);
3824
3825 /* errors is only valid for DD + EOP descriptors */
3826 if (unlikely((status & E1000_RXD_STAT_EOP) &&
3827 (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) {
3828 u8 last_byte = *(skb->data + length - 1);
3829 if (TBI_ACCEPT(hw, status, rx_desc->errors, length,
3830 last_byte)) {
3831 spin_lock_irqsave(&adapter->stats_lock,
3832 irq_flags);
3833 e1000_tbi_adjust_stats(hw, &adapter->stats,
3834 length, skb->data);
3835 spin_unlock_irqrestore(&adapter->stats_lock,
3836 irq_flags);
3837 length--;
3838 } else {
3839 /* recycle both page and skb */
3840 buffer_info->skb = skb;
3841 /* an error means any chain goes out the window
3842 * too */
3843 if (rx_ring->rx_skb_top)
3844 dev_kfree_skb(rx_ring->rx_skb_top);
3845 rx_ring->rx_skb_top = NULL;
3846 goto next_desc;
3847 }
3848 }
3849
3850#define rxtop rx_ring->rx_skb_top
3851 if (!(status & E1000_RXD_STAT_EOP)) {
3852 /* this descriptor is only the beginning (or middle) */
3853 if (!rxtop) {
3854 /* this is the beginning of a chain */
3855 rxtop = skb;
3856 skb_fill_page_desc(rxtop, 0, buffer_info->page,
3857 0, length);
3858 } else {
3859 /* this is the middle of a chain */
3860 skb_fill_page_desc(rxtop,
3861 skb_shinfo(rxtop)->nr_frags,
3862 buffer_info->page, 0, length);
3863 /* re-use the skb, only consumed the page */
3864 buffer_info->skb = skb;
3865 }
3866 e1000_consume_page(buffer_info, rxtop, length);
3867 goto next_desc;
3868 } else {
3869 if (rxtop) {
3870 /* end of the chain */
3871 skb_fill_page_desc(rxtop,
3872 skb_shinfo(rxtop)->nr_frags,
3873 buffer_info->page, 0, length);
3874 /* re-use the current skb, we only consumed the
3875 * page */
3876 buffer_info->skb = skb;
3877 skb = rxtop;
3878 rxtop = NULL;
3879 e1000_consume_page(buffer_info, skb, length);
3880 } else {
3881 /* no chain, got EOP, this buf is the packet
3882 * copybreak to save the put_page/alloc_page */
3883 if (length <= copybreak &&
3884 skb_tailroom(skb) >= length) {
3885 u8 *vaddr;
3886 vaddr = kmap_atomic(buffer_info->page,
3887 KM_SKB_DATA_SOFTIRQ);
3888 memcpy(skb_tail_pointer(skb), vaddr, length);
3889 kunmap_atomic(vaddr,
3890 KM_SKB_DATA_SOFTIRQ);
3891 /* re-use the page, so don't erase
3892 * buffer_info->page */
3893 skb_put(skb, length);
3894 } else {
3895 skb_fill_page_desc(skb, 0,
3896 buffer_info->page, 0,
3897 length);
3898 e1000_consume_page(buffer_info, skb,
3899 length);
3900 }
3901 }
3902 }
3903
3904 /* Receive Checksum Offload XXX recompute due to CRC strip? */
3905 e1000_rx_checksum(adapter,
3906 (u32)(status) |
3907 ((u32)(rx_desc->errors) << 24),
3908 le16_to_cpu(rx_desc->csum), skb);
3909
3910 pskb_trim(skb, skb->len - 4);
3911
3912 /* probably a little skewed due to removing CRC */
3913 total_rx_bytes += skb->len;
3914 total_rx_packets++;
3915
3916 /* eth type trans needs skb->data to point to something */
3917 if (!pskb_may_pull(skb, ETH_HLEN)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003918 e_err(drv, "pskb_may_pull failed.\n");
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003919 dev_kfree_skb(skb);
3920 goto next_desc;
3921 }
3922
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003923 e1000_receive_skb(adapter, status, rx_desc->special, skb);
3924
3925next_desc:
3926 rx_desc->status = 0;
3927
3928 /* return some buffers to hardware, one at a time is too slow */
3929 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
3930 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
3931 cleaned_count = 0;
3932 }
3933
3934 /* use prefetched values */
3935 rx_desc = next_rxd;
3936 buffer_info = next_buffer;
3937 }
3938 rx_ring->next_to_clean = i;
3939
3940 cleaned_count = E1000_DESC_UNUSED(rx_ring);
3941 if (cleaned_count)
3942 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
3943
3944 adapter->total_rx_packets += total_rx_packets;
3945 adapter->total_rx_bytes += total_rx_bytes;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003946 netdev->stats.rx_bytes += total_rx_bytes;
3947 netdev->stats.rx_packets += total_rx_packets;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003948 return cleaned;
3949}
3950
Joe Perches57bf6ee2010-05-13 15:26:17 +00003951/*
3952 * this should improve performance for small packets with large amounts
3953 * of reassembly being done in the stack
3954 */
3955static void e1000_check_copybreak(struct net_device *netdev,
3956 struct e1000_buffer *buffer_info,
3957 u32 length, struct sk_buff **skb)
3958{
3959 struct sk_buff *new_skb;
3960
3961 if (length > copybreak)
3962 return;
3963
3964 new_skb = netdev_alloc_skb_ip_align(netdev, length);
3965 if (!new_skb)
3966 return;
3967
3968 skb_copy_to_linear_data_offset(new_skb, -NET_IP_ALIGN,
3969 (*skb)->data - NET_IP_ALIGN,
3970 length + NET_IP_ALIGN);
3971 /* save the skb in buffer_info as good */
3972 buffer_info->skb = *skb;
3973 *skb = new_skb;
3974}
3975
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003976/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003977 * e1000_clean_rx_irq - Send received data up the network stack; legacy
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 * @adapter: board private structure
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003979 * @rx_ring: ring to clean
3980 * @work_done: amount of napi work completed this call
3981 * @work_to_do: max amount of work allowed for this call to do
3982 */
Joe Perches64798842008-07-11 15:17:02 -07003983static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
3984 struct e1000_rx_ring *rx_ring,
3985 int *work_done, int work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986{
Joe Perches1dc32912008-07-11 15:17:08 -07003987 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 struct net_device *netdev = adapter->netdev;
3989 struct pci_dev *pdev = adapter->pdev;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003990 struct e1000_rx_desc *rx_desc, *next_rxd;
3991 struct e1000_buffer *buffer_info, *next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 unsigned long flags;
Joe Perches406874a2008-04-03 10:06:32 -07003993 u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 unsigned int i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08003995 int cleaned_count = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -07003996 bool cleaned = false;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003997 unsigned int total_rx_bytes=0, total_rx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998
3999 i = rx_ring->next_to_clean;
4000 rx_desc = E1000_RX_DESC(*rx_ring, i);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004001 buffer_info = &rx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004003 while (rx_desc->status & E1000_RXD_STAT_DD) {
Auke Kok24f476e2006-06-08 09:28:47 -07004004 struct sk_buff *skb;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004005 u8 status;
Auke Kok90fb5132006-11-01 08:47:30 -08004006
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004007 if (*work_done >= work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 break;
4009 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00004010 rmb(); /* read descriptor and rx_buffer_info after status DD */
Francois Romieuc3570ac2008-07-11 15:17:38 -07004011
Jeff Kirshera292ca62006-01-12 16:51:30 -08004012 status = rx_desc->status;
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004013 skb = buffer_info->skb;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004014 buffer_info->skb = NULL;
4015
Jeff Kirsher30320be2006-03-02 18:21:57 -08004016 prefetch(skb->data - NET_IP_ALIGN);
4017
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004018 if (++i == rx_ring->count) i = 0;
4019 next_rxd = E1000_RX_DESC(*rx_ring, i);
Jeff Kirsher30320be2006-03-02 18:21:57 -08004020 prefetch(next_rxd);
4021
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004022 next_buffer = &rx_ring->buffer_info[i];
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004023
Joe Perchesc3033b02008-03-21 11:06:25 -07004024 cleaned = true;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004025 cleaned_count++;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004026 dma_unmap_single(&pdev->dev, buffer_info->dma,
4027 buffer_info->length, DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00004028 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 length = le16_to_cpu(rx_desc->length);
Neil Hormanea30e112009-06-02 01:29:58 -07004031 /* !EOP means multiple descriptors were used to store a single
Jesse Brandeburg40a14de2010-01-19 14:15:38 +00004032 * packet, if thats the case we need to toss it. In fact, we
4033 * to toss every packet with the EOP bit clear and the next
4034 * frame that _does_ have the EOP bit set, as it is by
4035 * definition only a frame fragment
4036 */
4037 if (unlikely(!(status & E1000_RXD_STAT_EOP)))
4038 adapter->discarding = true;
4039
4040 if (adapter->discarding) {
Jeff Kirshera1415ee2006-02-28 20:24:07 -08004041 /* All receives must fit into a single buffer */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004042 e_dbg("Receive packet consumed multiple buffers\n");
Auke Kok864c4e42006-06-27 09:06:53 -07004043 /* recycle */
Auke Kok8fc897b2006-08-28 14:56:16 -07004044 buffer_info->skb = skb;
Jesse Brandeburg40a14de2010-01-19 14:15:38 +00004045 if (status & E1000_RXD_STAT_EOP)
4046 adapter->discarding = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 goto next_desc;
4048 }
4049
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004050 if (unlikely(rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK)) {
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004051 u8 last_byte = *(skb->data + length - 1);
Joe Perches1dc32912008-07-11 15:17:08 -07004052 if (TBI_ACCEPT(hw, status, rx_desc->errors, length,
4053 last_byte)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004055 e1000_tbi_adjust_stats(hw, &adapter->stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 length, skb->data);
4057 spin_unlock_irqrestore(&adapter->stats_lock,
4058 flags);
4059 length--;
4060 } else {
Auke Kok9e2feac2006-04-14 19:05:18 -07004061 /* recycle */
4062 buffer_info->skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 goto next_desc;
4064 }
Auke Kok1cb58212006-04-18 12:31:04 -07004065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
Jesse Brandeburgd2a1e212006-10-24 14:46:06 -07004067 /* adjust length to remove Ethernet CRC, this must be
4068 * done after the TBI_ACCEPT workaround above */
4069 length -= 4;
4070
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004071 /* probably a little skewed due to removing CRC */
4072 total_rx_bytes += length;
4073 total_rx_packets++;
4074
Joe Perches57bf6ee2010-05-13 15:26:17 +00004075 e1000_check_copybreak(netdev, buffer_info, length, &skb);
4076
Auke Kok996695d2006-11-01 08:47:50 -08004077 skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
4079 /* Receive Checksum Offload */
Jeff Kirshera292ca62006-01-12 16:51:30 -08004080 e1000_rx_checksum(adapter,
Joe Perches406874a2008-04-03 10:06:32 -07004081 (u32)(status) |
4082 ((u32)(rx_desc->errors) << 24),
David S. Millerc3d7a3a2006-03-15 14:26:28 -08004083 le16_to_cpu(rx_desc->csum), skb);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004084
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004085 e1000_receive_skb(adapter, status, rx_desc->special, skb);
Francois Romieuc3570ac2008-07-11 15:17:38 -07004086
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087next_desc:
4088 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004090 /* return some buffers to hardware, one at a time is too slow */
4091 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
4092 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
4093 cleaned_count = 0;
4094 }
4095
Jeff Kirsher30320be2006-03-02 18:21:57 -08004096 /* use prefetched values */
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004097 rx_desc = next_rxd;
4098 buffer_info = next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 rx_ring->next_to_clean = i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004101
4102 cleaned_count = E1000_DESC_UNUSED(rx_ring);
4103 if (cleaned_count)
4104 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004106 adapter->total_rx_packets += total_rx_packets;
4107 adapter->total_rx_bytes += total_rx_bytes;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00004108 netdev->stats.rx_bytes += total_rx_bytes;
4109 netdev->stats.rx_packets += total_rx_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 return cleaned;
4111}
4112
4113/**
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004114 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
4115 * @adapter: address of board private structure
4116 * @rx_ring: pointer to receive ring structure
4117 * @cleaned_count: number of buffers to allocate this pass
4118 **/
4119
4120static void
4121e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
4122 struct e1000_rx_ring *rx_ring, int cleaned_count)
4123{
4124 struct net_device *netdev = adapter->netdev;
4125 struct pci_dev *pdev = adapter->pdev;
4126 struct e1000_rx_desc *rx_desc;
4127 struct e1000_buffer *buffer_info;
4128 struct sk_buff *skb;
4129 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +00004130 unsigned int bufsz = 256 - 16 /*for skb_reserve */ ;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004131
4132 i = rx_ring->next_to_use;
4133 buffer_info = &rx_ring->buffer_info[i];
4134
4135 while (cleaned_count--) {
4136 skb = buffer_info->skb;
4137 if (skb) {
4138 skb_trim(skb, 0);
4139 goto check_page;
4140 }
4141
Eric Dumazet89d71a62009-10-13 05:34:20 +00004142 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004143 if (unlikely(!skb)) {
4144 /* Better luck next round */
4145 adapter->alloc_rx_buff_failed++;
4146 break;
4147 }
4148
4149 /* Fix for errata 23, can't cross 64kB boundary */
4150 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4151 struct sk_buff *oldskb = skb;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004152 e_err(rx_err, "skb align check failed: %u bytes at "
4153 "%p\n", bufsz, skb->data);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004154 /* Try again, without freeing the previous */
Eric Dumazet89d71a62009-10-13 05:34:20 +00004155 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004156 /* Failed allocation, critical failure */
4157 if (!skb) {
4158 dev_kfree_skb(oldskb);
4159 adapter->alloc_rx_buff_failed++;
4160 break;
4161 }
4162
4163 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4164 /* give up */
4165 dev_kfree_skb(skb);
4166 dev_kfree_skb(oldskb);
4167 break; /* while (cleaned_count--) */
4168 }
4169
4170 /* Use new allocation */
4171 dev_kfree_skb(oldskb);
4172 }
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004173 buffer_info->skb = skb;
4174 buffer_info->length = adapter->rx_buffer_len;
4175check_page:
4176 /* allocate a new page if necessary */
4177 if (!buffer_info->page) {
4178 buffer_info->page = alloc_page(GFP_ATOMIC);
4179 if (unlikely(!buffer_info->page)) {
4180 adapter->alloc_rx_buff_failed++;
4181 break;
4182 }
4183 }
4184
Anton Blanchardb5abb022010-02-19 17:54:53 +00004185 if (!buffer_info->dma) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004186 buffer_info->dma = dma_map_page(&pdev->dev,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004187 buffer_info->page, 0,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004188 buffer_info->length,
4189 DMA_FROM_DEVICE);
4190 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Anton Blanchardb5abb022010-02-19 17:54:53 +00004191 put_page(buffer_info->page);
4192 dev_kfree_skb(skb);
4193 buffer_info->page = NULL;
4194 buffer_info->skb = NULL;
4195 buffer_info->dma = 0;
4196 adapter->alloc_rx_buff_failed++;
4197 break; /* while !buffer_info->skb */
4198 }
4199 }
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004200
4201 rx_desc = E1000_RX_DESC(*rx_ring, i);
4202 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4203
4204 if (unlikely(++i == rx_ring->count))
4205 i = 0;
4206 buffer_info = &rx_ring->buffer_info[i];
4207 }
4208
4209 if (likely(rx_ring->next_to_use != i)) {
4210 rx_ring->next_to_use = i;
4211 if (unlikely(i-- == 0))
4212 i = (rx_ring->count - 1);
4213
4214 /* Force memory writes to complete before letting h/w
4215 * know there are new descriptors to fetch. (Only
4216 * applicable for weak-ordered memory model archs,
4217 * such as IA-64). */
4218 wmb();
4219 writel(i, adapter->hw.hw_addr + rx_ring->rdt);
4220 }
4221}
4222
4223/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004224 * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 * @adapter: address of board private structure
4226 **/
4227
Joe Perches64798842008-07-11 15:17:02 -07004228static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
4229 struct e1000_rx_ring *rx_ring,
4230 int cleaned_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231{
Joe Perches1dc32912008-07-11 15:17:08 -07004232 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 struct net_device *netdev = adapter->netdev;
4234 struct pci_dev *pdev = adapter->pdev;
4235 struct e1000_rx_desc *rx_desc;
4236 struct e1000_buffer *buffer_info;
4237 struct sk_buff *skb;
Malli Chilakala26483452005-04-28 19:44:46 -07004238 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +00004239 unsigned int bufsz = adapter->rx_buffer_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240
4241 i = rx_ring->next_to_use;
4242 buffer_info = &rx_ring->buffer_info[i];
4243
Jeff Kirshera292ca62006-01-12 16:51:30 -08004244 while (cleaned_count--) {
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004245 skb = buffer_info->skb;
4246 if (skb) {
Jeff Kirshera292ca62006-01-12 16:51:30 -08004247 skb_trim(skb, 0);
4248 goto map_skb;
4249 }
4250
Eric Dumazet89d71a62009-10-13 05:34:20 +00004251 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004252 if (unlikely(!skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 /* Better luck next round */
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004254 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 break;
4256 }
4257
Malli Chilakala26483452005-04-28 19:44:46 -07004258 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4260 struct sk_buff *oldskb = skb;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004261 e_err(rx_err, "skb align check failed: %u bytes at "
4262 "%p\n", bufsz, skb->data);
Malli Chilakala26483452005-04-28 19:44:46 -07004263 /* Try again, without freeing the previous */
Eric Dumazet89d71a62009-10-13 05:34:20 +00004264 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Malli Chilakala26483452005-04-28 19:44:46 -07004265 /* Failed allocation, critical failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 if (!skb) {
4267 dev_kfree_skb(oldskb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004268 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 break;
4270 }
Malli Chilakala26483452005-04-28 19:44:46 -07004271
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4273 /* give up */
4274 dev_kfree_skb(skb);
4275 dev_kfree_skb(oldskb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004276 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 break; /* while !buffer_info->skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 }
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004279
4280 /* Use new allocation */
4281 dev_kfree_skb(oldskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 buffer_info->skb = skb;
4284 buffer_info->length = adapter->rx_buffer_len;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004285map_skb:
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004286 buffer_info->dma = dma_map_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 skb->data,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004288 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004289 DMA_FROM_DEVICE);
4290 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Anton Blanchardb5abb022010-02-19 17:54:53 +00004291 dev_kfree_skb(skb);
4292 buffer_info->skb = NULL;
4293 buffer_info->dma = 0;
4294 adapter->alloc_rx_buff_failed++;
4295 break; /* while !buffer_info->skb */
4296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004298 /*
4299 * XXX if it was allocated cleanly it will never map to a
4300 * boundary crossing
4301 */
4302
Malli Chilakala26483452005-04-28 19:44:46 -07004303 /* Fix for errata 23, can't cross 64kB boundary */
4304 if (!e1000_check_64k_bound(adapter,
4305 (void *)(unsigned long)buffer_info->dma,
4306 adapter->rx_buffer_len)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004307 e_err(rx_err, "dma align check failed: %u bytes at "
4308 "%p\n", adapter->rx_buffer_len,
Emil Tantilov675ad472010-04-27 14:02:58 +00004309 (void *)(unsigned long)buffer_info->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 dev_kfree_skb(skb);
4311 buffer_info->skb = NULL;
4312
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004313 dma_unmap_single(&pdev->dev, buffer_info->dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 adapter->rx_buffer_len,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004315 DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00004316 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004318 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 break; /* while !buffer_info->skb */
4320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 rx_desc = E1000_RX_DESC(*rx_ring, i);
4322 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4323
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004324 if (unlikely(++i == rx_ring->count))
4325 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 buffer_info = &rx_ring->buffer_info[i];
4327 }
4328
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004329 if (likely(rx_ring->next_to_use != i)) {
4330 rx_ring->next_to_use = i;
4331 if (unlikely(i-- == 0))
4332 i = (rx_ring->count - 1);
4333
4334 /* Force memory writes to complete before letting h/w
4335 * know there are new descriptors to fetch. (Only
4336 * applicable for weak-ordered memory model archs,
4337 * such as IA-64). */
4338 wmb();
Joe Perches1dc32912008-07-11 15:17:08 -07004339 writel(i, hw->hw_addr + rx_ring->rdt);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341}
4342
4343/**
4344 * e1000_smartspeed - Workaround for SmartSpeed on 82541 and 82547 controllers.
4345 * @adapter:
4346 **/
4347
Joe Perches64798842008-07-11 15:17:02 -07004348static void e1000_smartspeed(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349{
Joe Perches1dc32912008-07-11 15:17:08 -07004350 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004351 u16 phy_status;
4352 u16 phy_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353
Joe Perches1dc32912008-07-11 15:17:08 -07004354 if ((hw->phy_type != e1000_phy_igp) || !hw->autoneg ||
4355 !(hw->autoneg_advertised & ADVERTISE_1000_FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 return;
4357
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004358 if (adapter->smartspeed == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 /* If Master/Slave config fault is asserted twice,
4360 * we assume back-to-back */
Joe Perches1dc32912008-07-11 15:17:08 -07004361 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_status);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004362 if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
Joe Perches1dc32912008-07-11 15:17:08 -07004363 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_status);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004364 if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
Joe Perches1dc32912008-07-11 15:17:08 -07004365 e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004366 if (phy_ctrl & CR_1000T_MS_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 phy_ctrl &= ~CR_1000T_MS_ENABLE;
Joe Perches1dc32912008-07-11 15:17:08 -07004368 e1000_write_phy_reg(hw, PHY_1000T_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 phy_ctrl);
4370 adapter->smartspeed++;
Joe Perches1dc32912008-07-11 15:17:08 -07004371 if (!e1000_phy_setup_autoneg(hw) &&
4372 !e1000_read_phy_reg(hw, PHY_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 &phy_ctrl)) {
4374 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4375 MII_CR_RESTART_AUTO_NEG);
Joe Perches1dc32912008-07-11 15:17:08 -07004376 e1000_write_phy_reg(hw, PHY_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 phy_ctrl);
4378 }
4379 }
4380 return;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004381 } else if (adapter->smartspeed == E1000_SMARTSPEED_DOWNSHIFT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 /* If still no link, perhaps using 2/3 pair cable */
Joe Perches1dc32912008-07-11 15:17:08 -07004383 e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 phy_ctrl |= CR_1000T_MS_ENABLE;
Joe Perches1dc32912008-07-11 15:17:08 -07004385 e1000_write_phy_reg(hw, PHY_1000T_CTRL, phy_ctrl);
4386 if (!e1000_phy_setup_autoneg(hw) &&
4387 !e1000_read_phy_reg(hw, PHY_CTRL, &phy_ctrl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4389 MII_CR_RESTART_AUTO_NEG);
Joe Perches1dc32912008-07-11 15:17:08 -07004390 e1000_write_phy_reg(hw, PHY_CTRL, phy_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 }
4392 }
4393 /* Restart process after E1000_SMARTSPEED_MAX iterations */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004394 if (adapter->smartspeed++ == E1000_SMARTSPEED_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 adapter->smartspeed = 0;
4396}
4397
4398/**
4399 * e1000_ioctl -
4400 * @netdev:
4401 * @ifreq:
4402 * @cmd:
4403 **/
4404
Joe Perches64798842008-07-11 15:17:02 -07004405static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406{
4407 switch (cmd) {
4408 case SIOCGMIIPHY:
4409 case SIOCGMIIREG:
4410 case SIOCSMIIREG:
4411 return e1000_mii_ioctl(netdev, ifr, cmd);
4412 default:
4413 return -EOPNOTSUPP;
4414 }
4415}
4416
4417/**
4418 * e1000_mii_ioctl -
4419 * @netdev:
4420 * @ifreq:
4421 * @cmd:
4422 **/
4423
Joe Perches64798842008-07-11 15:17:02 -07004424static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
4425 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004427 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004428 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 struct mii_ioctl_data *data = if_mii(ifr);
4430 int retval;
Joe Perches406874a2008-04-03 10:06:32 -07004431 u16 mii_reg;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004432 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
Joe Perches1dc32912008-07-11 15:17:08 -07004434 if (hw->media_type != e1000_media_type_copper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 return -EOPNOTSUPP;
4436
4437 switch (cmd) {
4438 case SIOCGMIIPHY:
Joe Perches1dc32912008-07-11 15:17:08 -07004439 data->phy_id = hw->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 break;
4441 case SIOCGMIIREG:
Malli Chilakala97876fc2005-06-17 17:40:19 -07004442 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004443 if (e1000_read_phy_reg(hw, data->reg_num & 0x1F,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004444 &data->val_out)) {
4445 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004447 }
4448 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 break;
4450 case SIOCSMIIREG:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004451 if (data->reg_num & ~(0x1F))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 return -EFAULT;
4453 mii_reg = data->val_in;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004454 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004455 if (e1000_write_phy_reg(hw, data->reg_num,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004456 mii_reg)) {
4457 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004459 }
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004460 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004461 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 switch (data->reg_num) {
4463 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004464 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 break;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004466 if (mii_reg & MII_CR_AUTO_NEG_EN) {
Joe Perches1dc32912008-07-11 15:17:08 -07004467 hw->autoneg = 1;
4468 hw->autoneg_advertised = 0x2F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 } else {
David Decotigny14ad2512011-04-27 18:32:43 +00004470 u32 speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 if (mii_reg & 0x40)
David Decotigny14ad2512011-04-27 18:32:43 +00004472 speed = SPEED_1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 else if (mii_reg & 0x2000)
David Decotigny14ad2512011-04-27 18:32:43 +00004474 speed = SPEED_100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 else
David Decotigny14ad2512011-04-27 18:32:43 +00004476 speed = SPEED_10;
4477 retval = e1000_set_spd_dplx(
4478 adapter, speed,
4479 ((mii_reg & 0x100)
4480 ? DUPLEX_FULL :
4481 DUPLEX_HALF));
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004482 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 return retval;
4484 }
Auke Kok2db10a02006-06-27 09:06:28 -07004485 if (netif_running(adapter->netdev))
4486 e1000_reinit_locked(adapter);
4487 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 e1000_reset(adapter);
4489 break;
4490 case M88E1000_PHY_SPEC_CTRL:
4491 case M88E1000_EXT_PHY_SPEC_CTRL:
Joe Perches1dc32912008-07-11 15:17:08 -07004492 if (e1000_phy_reset(hw))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493 return -EIO;
4494 break;
4495 }
4496 } else {
4497 switch (data->reg_num) {
4498 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004499 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 break;
Auke Kok2db10a02006-06-27 09:06:28 -07004501 if (netif_running(adapter->netdev))
4502 e1000_reinit_locked(adapter);
4503 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 e1000_reset(adapter);
4505 break;
4506 }
4507 }
4508 break;
4509 default:
4510 return -EOPNOTSUPP;
4511 }
4512 return E1000_SUCCESS;
4513}
4514
Joe Perches64798842008-07-11 15:17:02 -07004515void e1000_pci_set_mwi(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516{
4517 struct e1000_adapter *adapter = hw->back;
Malli Chilakala26483452005-04-28 19:44:46 -07004518 int ret_val = pci_set_mwi(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004520 if (ret_val)
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004521 e_err(probe, "Error in setting MWI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522}
4523
Joe Perches64798842008-07-11 15:17:02 -07004524void e1000_pci_clear_mwi(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525{
4526 struct e1000_adapter *adapter = hw->back;
4527
4528 pci_clear_mwi(adapter->pdev);
4529}
4530
Joe Perches64798842008-07-11 15:17:02 -07004531int e1000_pcix_get_mmrbc(struct e1000_hw *hw)
Peter Oruba007755e2007-09-28 22:42:06 -07004532{
4533 struct e1000_adapter *adapter = hw->back;
4534 return pcix_get_mmrbc(adapter->pdev);
4535}
4536
Joe Perches64798842008-07-11 15:17:02 -07004537void e1000_pcix_set_mmrbc(struct e1000_hw *hw, int mmrbc)
Peter Oruba007755e2007-09-28 22:42:06 -07004538{
4539 struct e1000_adapter *adapter = hw->back;
4540 pcix_set_mmrbc(adapter->pdev, mmrbc);
4541}
4542
Joe Perches64798842008-07-11 15:17:02 -07004543void e1000_io_write(struct e1000_hw *hw, unsigned long port, u32 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544{
4545 outl(value, port);
4546}
4547
Jiri Pirko5622e402011-07-21 03:26:31 +00004548static bool e1000_vlan_used(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549{
Jiri Pirko5622e402011-07-21 03:26:31 +00004550 u16 vid;
4551
4552 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
4553 return true;
4554 return false;
4555}
4556
4557static void e1000_vlan_filter_on_off(struct e1000_adapter *adapter,
4558 bool filter_on)
4559{
Joe Perches1dc32912008-07-11 15:17:08 -07004560 struct e1000_hw *hw = &adapter->hw;
Jiri Pirko5622e402011-07-21 03:26:31 +00004561 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004563 if (!test_bit(__E1000_DOWN, &adapter->flags))
4564 e1000_irq_disable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565
Jiri Pirko5622e402011-07-21 03:26:31 +00004566 if (filter_on) {
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004567 /* enable VLAN receive filtering */
4568 rctl = er32(RCTL);
4569 rctl &= ~E1000_RCTL_CFIEN;
Jiri Pirko5622e402011-07-21 03:26:31 +00004570 if (!(adapter->netdev->flags & IFF_PROMISC))
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004571 rctl |= E1000_RCTL_VFE;
4572 ew32(RCTL, rctl);
4573 e1000_update_mng_vlan(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 } else {
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004575 /* disable VLAN receive filtering */
4576 rctl = er32(RCTL);
4577 rctl &= ~E1000_RCTL_VFE;
4578 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 }
4580
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004581 if (!test_bit(__E1000_DOWN, &adapter->flags))
4582 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583}
4584
Michał Mirosławc8f44af2011-11-15 15:29:55 +00004585static void e1000_vlan_mode(struct net_device *netdev,
4586 netdev_features_t features)
Jiri Pirko5622e402011-07-21 03:26:31 +00004587{
4588 struct e1000_adapter *adapter = netdev_priv(netdev);
4589 struct e1000_hw *hw = &adapter->hw;
4590 u32 ctrl;
4591
4592 if (!test_bit(__E1000_DOWN, &adapter->flags))
4593 e1000_irq_disable(adapter);
4594
4595 ctrl = er32(CTRL);
4596 if (features & NETIF_F_HW_VLAN_RX) {
4597 /* enable VLAN tag insert/strip */
4598 ctrl |= E1000_CTRL_VME;
4599 } else {
4600 /* disable VLAN tag insert/strip */
4601 ctrl &= ~E1000_CTRL_VME;
4602 }
4603 ew32(CTRL, ctrl);
4604
4605 if (!test_bit(__E1000_DOWN, &adapter->flags))
4606 e1000_irq_enable(adapter);
4607}
4608
Jiri Pirko8e586132011-12-08 19:52:37 -05004609static int e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004611 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004612 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004613 u32 vfta, index;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004614
Joe Perches1dc32912008-07-11 15:17:08 -07004615 if ((hw->mng_cookie.status &
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004616 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
4617 (vid == adapter->mng_vlan_id))
Jiri Pirko8e586132011-12-08 19:52:37 -05004618 return 0;
Jiri Pirko5622e402011-07-21 03:26:31 +00004619
4620 if (!e1000_vlan_used(adapter))
4621 e1000_vlan_filter_on_off(adapter, true);
4622
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 /* add VID to filter table */
4624 index = (vid >> 5) & 0x7F;
Joe Perches1dc32912008-07-11 15:17:08 -07004625 vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 vfta |= (1 << (vid & 0x1F));
Joe Perches1dc32912008-07-11 15:17:08 -07004627 e1000_write_vfta(hw, index, vfta);
Jiri Pirko5622e402011-07-21 03:26:31 +00004628
4629 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05004630
4631 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632}
4633
Jiri Pirko8e586132011-12-08 19:52:37 -05004634static int e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004636 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004637 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004638 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004640 if (!test_bit(__E1000_DOWN, &adapter->flags))
4641 e1000_irq_disable(adapter);
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004642 if (!test_bit(__E1000_DOWN, &adapter->flags))
4643 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644
4645 /* remove VID from filter table */
4646 index = (vid >> 5) & 0x7F;
Joe Perches1dc32912008-07-11 15:17:08 -07004647 vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 vfta &= ~(1 << (vid & 0x1F));
Joe Perches1dc32912008-07-11 15:17:08 -07004649 e1000_write_vfta(hw, index, vfta);
Jiri Pirko5622e402011-07-21 03:26:31 +00004650
4651 clear_bit(vid, adapter->active_vlans);
4652
4653 if (!e1000_vlan_used(adapter))
4654 e1000_vlan_filter_on_off(adapter, false);
Jiri Pirko8e586132011-12-08 19:52:37 -05004655
4656 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657}
4658
Joe Perches64798842008-07-11 15:17:02 -07004659static void e1000_restore_vlan(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660{
Jiri Pirko5622e402011-07-21 03:26:31 +00004661 u16 vid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662
Jiri Pirko5622e402011-07-21 03:26:31 +00004663 if (!e1000_vlan_used(adapter))
4664 return;
4665
4666 e1000_vlan_filter_on_off(adapter, true);
4667 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
4668 e1000_vlan_rx_add_vid(adapter->netdev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669}
4670
David Decotigny14ad2512011-04-27 18:32:43 +00004671int e1000_set_spd_dplx(struct e1000_adapter *adapter, u32 spd, u8 dplx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672{
Joe Perches1dc32912008-07-11 15:17:08 -07004673 struct e1000_hw *hw = &adapter->hw;
4674
4675 hw->autoneg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
David Decotigny14ad2512011-04-27 18:32:43 +00004677 /* Make sure dplx is at most 1 bit and lsb of speed is not set
4678 * for the switch() below to work */
4679 if ((spd & 1) || (dplx & ~1))
4680 goto err_inval;
4681
Malli Chilakala69213682005-06-17 17:44:20 -07004682 /* Fiber NICs only allow 1000 gbps Full duplex */
Joe Perches1dc32912008-07-11 15:17:08 -07004683 if ((hw->media_type == e1000_media_type_fiber) &&
David Decotigny14ad2512011-04-27 18:32:43 +00004684 spd != SPEED_1000 &&
4685 dplx != DUPLEX_FULL)
4686 goto err_inval;
Malli Chilakala69213682005-06-17 17:44:20 -07004687
David Decotigny14ad2512011-04-27 18:32:43 +00004688 switch (spd + dplx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 case SPEED_10 + DUPLEX_HALF:
Joe Perches1dc32912008-07-11 15:17:08 -07004690 hw->forced_speed_duplex = e1000_10_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 break;
4692 case SPEED_10 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004693 hw->forced_speed_duplex = e1000_10_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 break;
4695 case SPEED_100 + DUPLEX_HALF:
Joe Perches1dc32912008-07-11 15:17:08 -07004696 hw->forced_speed_duplex = e1000_100_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 break;
4698 case SPEED_100 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004699 hw->forced_speed_duplex = e1000_100_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 break;
4701 case SPEED_1000 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004702 hw->autoneg = 1;
4703 hw->autoneg_advertised = ADVERTISE_1000_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 break;
4705 case SPEED_1000 + DUPLEX_HALF: /* not supported */
4706 default:
David Decotigny14ad2512011-04-27 18:32:43 +00004707 goto err_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 }
4709 return 0;
David Decotigny14ad2512011-04-27 18:32:43 +00004710
4711err_inval:
4712 e_err(probe, "Unsupported Speed/Duplex configuration\n");
4713 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714}
4715
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004716static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717{
4718 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07004719 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004720 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004721 u32 ctrl, ctrl_ext, rctl, status;
4722 u32 wufc = adapter->wol;
Auke Kok6fdfef12006-06-27 09:06:36 -07004723#ifdef CONFIG_PM
Jeff Kirsher240b1712006-01-12 16:51:28 -08004724 int retval = 0;
Auke Kok6fdfef12006-06-27 09:06:36 -07004725#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726
4727 netif_device_detach(netdev);
4728
Auke Kok2db10a02006-06-27 09:06:28 -07004729 if (netif_running(netdev)) {
4730 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 e1000_down(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07004732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004734#ifdef CONFIG_PM
Kok, Auke1d33e9c2007-02-16 14:39:28 -08004735 retval = pci_save_state(pdev);
Jesse Brandeburg3a3847e2012-01-04 20:23:33 +00004736 if (retval)
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004737 return retval;
4738#endif
4739
Joe Perches1dc32912008-07-11 15:17:08 -07004740 status = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004741 if (status & E1000_STATUS_LU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 wufc &= ~E1000_WUFC_LNKC;
4743
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004744 if (wufc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745 e1000_setup_rctl(adapter);
Patrick McHardydb0ce502007-11-13 20:54:59 -08004746 e1000_set_rx_mode(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747
4748 /* turn on all-multi mode if wake on multicast is enabled */
Jesse Brandeburg120cd572006-08-31 14:27:46 -07004749 if (wufc & E1000_WUFC_MC) {
Joe Perches1dc32912008-07-11 15:17:08 -07004750 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 rctl |= E1000_RCTL_MPE;
Joe Perches1dc32912008-07-11 15:17:08 -07004752 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753 }
4754
Joe Perches1dc32912008-07-11 15:17:08 -07004755 if (hw->mac_type >= e1000_82540) {
4756 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 /* advertise wake from D3Cold */
4758 #define E1000_CTRL_ADVD3WUC 0x00100000
4759 /* phy power management enable */
4760 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
4761 ctrl |= E1000_CTRL_ADVD3WUC |
4762 E1000_CTRL_EN_PHY_PWR_MGMT;
Joe Perches1dc32912008-07-11 15:17:08 -07004763 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 }
4765
Joe Perches1dc32912008-07-11 15:17:08 -07004766 if (hw->media_type == e1000_media_type_fiber ||
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004767 hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 /* keep the laser running in D3 */
Joe Perches1dc32912008-07-11 15:17:08 -07004769 ctrl_ext = er32(CTRL_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 ctrl_ext |= E1000_CTRL_EXT_SDP7_DATA;
Joe Perches1dc32912008-07-11 15:17:08 -07004771 ew32(CTRL_EXT, ctrl_ext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 }
4773
Joe Perches1dc32912008-07-11 15:17:08 -07004774 ew32(WUC, E1000_WUC_PME_EN);
4775 ew32(WUFC, wufc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07004777 ew32(WUC, 0);
4778 ew32(WUFC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 }
4780
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004781 e1000_release_manageability(adapter);
4782
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004783 *enable_wake = !!wufc;
4784
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004785 /* make sure adapter isn't asleep if manageability is enabled */
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004786 if (adapter->en_mng_pt)
4787 *enable_wake = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
Auke Kokedd106f2006-11-06 08:57:12 -08004789 if (netif_running(netdev))
4790 e1000_free_irq(adapter);
4791
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 pci_disable_device(pdev);
Jeff Kirsher240b1712006-01-12 16:51:28 -08004793
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 return 0;
4795}
4796
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004797#ifdef CONFIG_PM
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004798static int e1000_suspend(struct pci_dev *pdev, pm_message_t state)
4799{
4800 int retval;
4801 bool wake;
4802
4803 retval = __e1000_shutdown(pdev, &wake);
4804 if (retval)
4805 return retval;
4806
4807 if (wake) {
4808 pci_prepare_to_sleep(pdev);
4809 } else {
4810 pci_wake_from_d3(pdev, false);
4811 pci_set_power_state(pdev, PCI_D3hot);
4812 }
4813
4814 return 0;
4815}
4816
Joe Perches64798842008-07-11 15:17:02 -07004817static int e1000_resume(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818{
4819 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07004820 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004821 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004822 u32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823
Auke Kokd0e027d2006-04-14 19:04:40 -07004824 pci_set_power_state(pdev, PCI_D0);
Kok, Auke1d33e9c2007-02-16 14:39:28 -08004825 pci_restore_state(pdev);
Nick Nunleydbb5aae2010-02-03 14:49:48 +00004826 pci_save_state(pdev);
Taku Izumi81250292008-07-11 15:17:44 -07004827
4828 if (adapter->need_ioport)
4829 err = pci_enable_device(pdev);
4830 else
4831 err = pci_enable_device_mem(pdev);
Joe Perchesc7be73b2008-07-11 15:17:28 -07004832 if (err) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004833 pr_err("Cannot enable PCI device from suspend\n");
Auke Kok3d1dd8c2006-08-28 14:56:27 -07004834 return err;
4835 }
Malli Chilakalaa4cb8472005-04-28 19:41:28 -07004836 pci_set_master(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837
Auke Kokd0e027d2006-04-14 19:04:40 -07004838 pci_enable_wake(pdev, PCI_D3hot, 0);
4839 pci_enable_wake(pdev, PCI_D3cold, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840
Joe Perchesc7be73b2008-07-11 15:17:28 -07004841 if (netif_running(netdev)) {
4842 err = e1000_request_irq(adapter);
4843 if (err)
4844 return err;
4845 }
Auke Kokedd106f2006-11-06 08:57:12 -08004846
4847 e1000_power_up_phy(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 e1000_reset(adapter);
Joe Perches1dc32912008-07-11 15:17:08 -07004849 ew32(WUS, ~0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004851 e1000_init_manageability(adapter);
4852
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004853 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 e1000_up(adapter);
4855
4856 netif_device_attach(netdev);
4857
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858 return 0;
4859}
4860#endif
Auke Kokc653e632006-05-23 13:35:57 -07004861
4862static void e1000_shutdown(struct pci_dev *pdev)
4863{
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004864 bool wake;
4865
4866 __e1000_shutdown(pdev, &wake);
4867
4868 if (system_state == SYSTEM_POWER_OFF) {
4869 pci_wake_from_d3(pdev, wake);
4870 pci_set_power_state(pdev, PCI_D3hot);
4871 }
Auke Kokc653e632006-05-23 13:35:57 -07004872}
4873
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874#ifdef CONFIG_NET_POLL_CONTROLLER
4875/*
4876 * Polling 'interrupt' - used by things like netconsole to send skbs
4877 * without having to re-enable interrupts. It's not called while
4878 * the interrupt routine is executing.
4879 */
Joe Perches64798842008-07-11 15:17:02 -07004880static void e1000_netpoll(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004882 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kokd3d9e482006-07-14 16:14:23 -07004883
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 disable_irq(adapter->pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01004885 e1000_intr(adapter->pdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 enable_irq(adapter->pdev->irq);
4887}
4888#endif
4889
Auke Kok90267292006-06-08 09:30:24 -07004890/**
4891 * e1000_io_error_detected - called when PCI error is detected
4892 * @pdev: Pointer to PCI device
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004893 * @state: The current pci connection state
Auke Kok90267292006-06-08 09:30:24 -07004894 *
4895 * This function is called after a PCI bus error affecting
4896 * this device has been detected.
4897 */
Joe Perches64798842008-07-11 15:17:02 -07004898static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
4899 pci_channel_state_t state)
Auke Kok90267292006-06-08 09:30:24 -07004900{
4901 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004902 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kok90267292006-06-08 09:30:24 -07004903
4904 netif_device_detach(netdev);
4905
Andre Detscheab63302009-06-30 12:46:13 +00004906 if (state == pci_channel_io_perm_failure)
4907 return PCI_ERS_RESULT_DISCONNECT;
4908
Auke Kok90267292006-06-08 09:30:24 -07004909 if (netif_running(netdev))
4910 e1000_down(adapter);
Linas Vepstas72e8d6b2006-09-18 20:58:06 -07004911 pci_disable_device(pdev);
Auke Kok90267292006-06-08 09:30:24 -07004912
4913 /* Request a slot slot reset. */
4914 return PCI_ERS_RESULT_NEED_RESET;
4915}
4916
4917/**
4918 * e1000_io_slot_reset - called after the pci bus has been reset.
4919 * @pdev: Pointer to PCI device
4920 *
4921 * Restart the card from scratch, as if from a cold-boot. Implementation
4922 * resembles the first-half of the e1000_resume routine.
4923 */
4924static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
4925{
4926 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004927 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004928 struct e1000_hw *hw = &adapter->hw;
Taku Izumi81250292008-07-11 15:17:44 -07004929 int err;
Auke Kok90267292006-06-08 09:30:24 -07004930
Taku Izumi81250292008-07-11 15:17:44 -07004931 if (adapter->need_ioport)
4932 err = pci_enable_device(pdev);
4933 else
4934 err = pci_enable_device_mem(pdev);
4935 if (err) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004936 pr_err("Cannot re-enable PCI device after reset.\n");
Auke Kok90267292006-06-08 09:30:24 -07004937 return PCI_ERS_RESULT_DISCONNECT;
4938 }
4939 pci_set_master(pdev);
4940
Linas Vepstasdbf38c92006-09-27 12:54:11 -07004941 pci_enable_wake(pdev, PCI_D3hot, 0);
4942 pci_enable_wake(pdev, PCI_D3cold, 0);
Auke Kok90267292006-06-08 09:30:24 -07004943
Auke Kok90267292006-06-08 09:30:24 -07004944 e1000_reset(adapter);
Joe Perches1dc32912008-07-11 15:17:08 -07004945 ew32(WUS, ~0);
Auke Kok90267292006-06-08 09:30:24 -07004946
4947 return PCI_ERS_RESULT_RECOVERED;
4948}
4949
4950/**
4951 * e1000_io_resume - called when traffic can start flowing again.
4952 * @pdev: Pointer to PCI device
4953 *
4954 * This callback is called when the error recovery driver tells us that
4955 * its OK to resume normal operation. Implementation resembles the
4956 * second-half of the e1000_resume routine.
4957 */
4958static void e1000_io_resume(struct pci_dev *pdev)
4959{
4960 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004961 struct e1000_adapter *adapter = netdev_priv(netdev);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004962
4963 e1000_init_manageability(adapter);
Auke Kok90267292006-06-08 09:30:24 -07004964
4965 if (netif_running(netdev)) {
4966 if (e1000_up(adapter)) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004967 pr_info("can't bring device back up after reset\n");
Auke Kok90267292006-06-08 09:30:24 -07004968 return;
4969 }
4970 }
4971
4972 netif_device_attach(netdev);
Auke Kok90267292006-06-08 09:30:24 -07004973}
4974
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975/* e1000_main.c */