blob: 06c7d1c675175f561e0a596f7f72ceabced2b40a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032char e1000_driver_name[] = "e1000";
Adrian Bunk3ad2cc62005-10-30 16:53:34 +010033static char e1000_driver_string[] = "Intel(R) PRO/1000 Network Driver";
Anupam Chandaab088532010-11-21 09:54:21 -080034#define DRV_VERSION "7.3.21-k8-NAPI"
Stephen Hemmingerabec42a2007-10-29 10:46:19 -070035const char e1000_driver_version[] = DRV_VERSION;
36static const char e1000_copyright[] = "Copyright (c) 1999-2006 Intel Corporation.";
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* e1000_pci_tbl - PCI Device ID Table
39 *
40 * Last entry must be all 0s
41 *
42 * Macro expands to...
43 * {PCI_DEVICE(PCI_VENDOR_ID_INTEL, device_id)}
44 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000045static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 INTEL_E1000_ETHERNET_DEVICE(0x1000),
47 INTEL_E1000_ETHERNET_DEVICE(0x1001),
48 INTEL_E1000_ETHERNET_DEVICE(0x1004),
49 INTEL_E1000_ETHERNET_DEVICE(0x1008),
50 INTEL_E1000_ETHERNET_DEVICE(0x1009),
51 INTEL_E1000_ETHERNET_DEVICE(0x100C),
52 INTEL_E1000_ETHERNET_DEVICE(0x100D),
53 INTEL_E1000_ETHERNET_DEVICE(0x100E),
54 INTEL_E1000_ETHERNET_DEVICE(0x100F),
55 INTEL_E1000_ETHERNET_DEVICE(0x1010),
56 INTEL_E1000_ETHERNET_DEVICE(0x1011),
57 INTEL_E1000_ETHERNET_DEVICE(0x1012),
58 INTEL_E1000_ETHERNET_DEVICE(0x1013),
59 INTEL_E1000_ETHERNET_DEVICE(0x1014),
60 INTEL_E1000_ETHERNET_DEVICE(0x1015),
61 INTEL_E1000_ETHERNET_DEVICE(0x1016),
62 INTEL_E1000_ETHERNET_DEVICE(0x1017),
63 INTEL_E1000_ETHERNET_DEVICE(0x1018),
64 INTEL_E1000_ETHERNET_DEVICE(0x1019),
Malli Chilakala26483452005-04-28 19:44:46 -070065 INTEL_E1000_ETHERNET_DEVICE(0x101A),
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 INTEL_E1000_ETHERNET_DEVICE(0x101D),
67 INTEL_E1000_ETHERNET_DEVICE(0x101E),
68 INTEL_E1000_ETHERNET_DEVICE(0x1026),
69 INTEL_E1000_ETHERNET_DEVICE(0x1027),
70 INTEL_E1000_ETHERNET_DEVICE(0x1028),
71 INTEL_E1000_ETHERNET_DEVICE(0x1075),
72 INTEL_E1000_ETHERNET_DEVICE(0x1076),
73 INTEL_E1000_ETHERNET_DEVICE(0x1077),
74 INTEL_E1000_ETHERNET_DEVICE(0x1078),
75 INTEL_E1000_ETHERNET_DEVICE(0x1079),
76 INTEL_E1000_ETHERNET_DEVICE(0x107A),
77 INTEL_E1000_ETHERNET_DEVICE(0x107B),
78 INTEL_E1000_ETHERNET_DEVICE(0x107C),
79 INTEL_E1000_ETHERNET_DEVICE(0x108A),
Jeff Kirsherb7ee49d2006-01-12 16:51:21 -080080 INTEL_E1000_ETHERNET_DEVICE(0x1099),
Jeff Kirsherb7ee49d2006-01-12 16:51:21 -080081 INTEL_E1000_ETHERNET_DEVICE(0x10B5),
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 /* required last entry */
83 {0,}
84};
85
86MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
87
Nicholas Nunley35574762006-09-27 12:53:34 -070088int e1000_up(struct e1000_adapter *adapter);
89void e1000_down(struct e1000_adapter *adapter);
90void e1000_reinit_locked(struct e1000_adapter *adapter);
91void e1000_reset(struct e1000_adapter *adapter);
Joe Perches406874a2008-04-03 10:06:32 -070092int e1000_set_spd_dplx(struct e1000_adapter *adapter, u16 spddplx);
Nicholas Nunley35574762006-09-27 12:53:34 -070093int e1000_setup_all_tx_resources(struct e1000_adapter *adapter);
94int e1000_setup_all_rx_resources(struct e1000_adapter *adapter);
95void e1000_free_all_tx_resources(struct e1000_adapter *adapter);
96void e1000_free_all_rx_resources(struct e1000_adapter *adapter);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +010097static int e1000_setup_tx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -070098 struct e1000_tx_ring *txdr);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +010099static int e1000_setup_rx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700100 struct e1000_rx_ring *rxdr);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100101static void e1000_free_tx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700102 struct e1000_tx_ring *tx_ring);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100103static void e1000_free_rx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700104 struct e1000_rx_ring *rx_ring);
105void e1000_update_stats(struct e1000_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107static int e1000_init_module(void);
108static void e1000_exit_module(void);
109static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
110static void __devexit e1000_remove(struct pci_dev *pdev);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400111static int e1000_alloc_queues(struct e1000_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static int e1000_sw_init(struct e1000_adapter *adapter);
113static int e1000_open(struct net_device *netdev);
114static int e1000_close(struct net_device *netdev);
115static void e1000_configure_tx(struct e1000_adapter *adapter);
116static void e1000_configure_rx(struct e1000_adapter *adapter);
117static void e1000_setup_rctl(struct e1000_adapter *adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400118static void e1000_clean_all_tx_rings(struct e1000_adapter *adapter);
119static void e1000_clean_all_rx_rings(struct e1000_adapter *adapter);
120static void e1000_clean_tx_ring(struct e1000_adapter *adapter,
121 struct e1000_tx_ring *tx_ring);
122static void e1000_clean_rx_ring(struct e1000_adapter *adapter,
123 struct e1000_rx_ring *rx_ring);
Patrick McHardydb0ce502007-11-13 20:54:59 -0800124static void e1000_set_rx_mode(struct net_device *netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static void e1000_update_phy_info(unsigned long data);
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +0000126static void e1000_update_phy_info_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static void e1000_watchdog(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static void e1000_82547_tx_fifo_stall(unsigned long data);
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +0000129static void e1000_82547_tx_fifo_stall_task(struct work_struct *work);
Stephen Hemminger3b29a562009-08-31 19:50:55 +0000130static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
131 struct net_device *netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static struct net_device_stats * e1000_get_stats(struct net_device *netdev);
133static int e1000_change_mtu(struct net_device *netdev, int new_mtu);
134static int e1000_set_mac(struct net_device *netdev, void *p);
David Howells7d12e782006-10-05 14:55:46 +0100135static irqreturn_t e1000_intr(int irq, void *data);
Joe Perchesc3033b02008-03-21 11:06:25 -0700136static bool e1000_clean_tx_irq(struct e1000_adapter *adapter,
137 struct e1000_tx_ring *tx_ring);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700138static int e1000_clean(struct napi_struct *napi, int budget);
Joe Perchesc3033b02008-03-21 11:06:25 -0700139static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
140 struct e1000_rx_ring *rx_ring,
141 int *work_done, int work_to_do);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000142static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
143 struct e1000_rx_ring *rx_ring,
144 int *work_done, int work_to_do);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400145static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000146 struct e1000_rx_ring *rx_ring,
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800147 int cleaned_count);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000148static void e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
149 struct e1000_rx_ring *rx_ring,
150 int cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd);
152static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
153 int cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static void e1000_enter_82542_rst(struct e1000_adapter *adapter);
155static void e1000_leave_82542_rst(struct e1000_adapter *adapter);
156static void e1000_tx_timeout(struct net_device *dev);
David Howells65f27f32006-11-22 14:55:48 +0000157static void e1000_reset_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static void e1000_smartspeed(struct e1000_adapter *adapter);
Auke Koke619d522006-04-14 19:04:52 -0700159static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
160 struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162static void e1000_vlan_rx_register(struct net_device *netdev, struct vlan_group *grp);
Joe Perches406874a2008-04-03 10:06:32 -0700163static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid);
164static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static void e1000_restore_vlan(struct e1000_adapter *adapter);
166
Auke Kok6fdfef12006-06-27 09:06:36 -0700167#ifdef CONFIG_PM
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +0000168static int e1000_suspend(struct pci_dev *pdev, pm_message_t state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169static int e1000_resume(struct pci_dev *pdev);
170#endif
Auke Kokc653e632006-05-23 13:35:57 -0700171static void e1000_shutdown(struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173#ifdef CONFIG_NET_POLL_CONTROLLER
174/* for netdump / net console */
175static void e1000_netpoll (struct net_device *netdev);
176#endif
177
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100178#define COPYBREAK_DEFAULT 256
179static unsigned int copybreak __read_mostly = COPYBREAK_DEFAULT;
180module_param(copybreak, uint, 0644);
181MODULE_PARM_DESC(copybreak,
182 "Maximum size of packet that is copied to a new buffer on receive");
183
Auke Kok90267292006-06-08 09:30:24 -0700184static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
185 pci_channel_state_t state);
186static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev);
187static void e1000_io_resume(struct pci_dev *pdev);
188
189static struct pci_error_handlers e1000_err_handler = {
190 .error_detected = e1000_io_error_detected,
191 .slot_reset = e1000_io_slot_reset,
192 .resume = e1000_io_resume,
193};
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -0400194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static struct pci_driver e1000_driver = {
196 .name = e1000_driver_name,
197 .id_table = e1000_pci_tbl,
198 .probe = e1000_probe,
199 .remove = __devexit_p(e1000_remove),
Auke Kokc4e24f02006-09-27 12:53:19 -0700200#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /* Power Managment Hooks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 .suspend = e1000_suspend,
Auke Kokc653e632006-05-23 13:35:57 -0700203 .resume = e1000_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#endif
Auke Kok90267292006-06-08 09:30:24 -0700205 .shutdown = e1000_shutdown,
206 .err_handler = &e1000_err_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};
208
209MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
210MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
211MODULE_LICENSE("GPL");
212MODULE_VERSION(DRV_VERSION);
213
214static int debug = NETIF_MSG_DRV | NETIF_MSG_PROBE;
215module_param(debug, int, 0);
216MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
217
218/**
Emil Tantilov675ad472010-04-27 14:02:58 +0000219 * e1000_get_hw_dev - return device
220 * used by hardware layer to print debugging information
221 *
222 **/
223struct net_device *e1000_get_hw_dev(struct e1000_hw *hw)
224{
225 struct e1000_adapter *adapter = hw->back;
226 return adapter->netdev;
227}
228
229/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 * e1000_init_module - Driver Registration Routine
231 *
232 * e1000_init_module is the first routine called when the driver is
233 * loaded. All it does is register with the PCI subsystem.
234 **/
235
Joe Perches64798842008-07-11 15:17:02 -0700236static int __init e1000_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 int ret;
Emil Tantilov675ad472010-04-27 14:02:58 +0000239 pr_info("%s - version %s\n", e1000_driver_string, e1000_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Emil Tantilov675ad472010-04-27 14:02:58 +0000241 pr_info("%s\n", e1000_copyright);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Jeff Garzik29917622006-08-19 17:48:59 -0400243 ret = pci_register_driver(&e1000_driver);
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100244 if (copybreak != COPYBREAK_DEFAULT) {
245 if (copybreak == 0)
Emil Tantilov675ad472010-04-27 14:02:58 +0000246 pr_info("copybreak disabled\n");
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100247 else
Emil Tantilov675ad472010-04-27 14:02:58 +0000248 pr_info("copybreak enabled for "
249 "packets <= %u bytes\n", copybreak);
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 return ret;
252}
253
254module_init(e1000_init_module);
255
256/**
257 * e1000_exit_module - Driver Exit Cleanup Routine
258 *
259 * e1000_exit_module is called just before the driver is removed
260 * from memory.
261 **/
262
Joe Perches64798842008-07-11 15:17:02 -0700263static void __exit e1000_exit_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 pci_unregister_driver(&e1000_driver);
266}
267
268module_exit(e1000_exit_module);
269
Auke Kok2db10a02006-06-27 09:06:28 -0700270static int e1000_request_irq(struct e1000_adapter *adapter)
271{
272 struct net_device *netdev = adapter->netdev;
Al Viro3e188262007-12-11 19:49:39 +0000273 irq_handler_t handler = e1000_intr;
Auke Koke94bd232007-05-16 01:49:46 -0700274 int irq_flags = IRQF_SHARED;
275 int err;
Auke Kok2db10a02006-06-27 09:06:28 -0700276
Auke Koke94bd232007-05-16 01:49:46 -0700277 err = request_irq(adapter->pdev->irq, handler, irq_flags, netdev->name,
278 netdev);
279 if (err) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700280 e_err(probe, "Unable to allocate interrupt Error: %d\n", err);
Auke Koke94bd232007-05-16 01:49:46 -0700281 }
Auke Kok2db10a02006-06-27 09:06:28 -0700282
283 return err;
284}
285
286static void e1000_free_irq(struct e1000_adapter *adapter)
287{
288 struct net_device *netdev = adapter->netdev;
289
290 free_irq(adapter->pdev->irq, netdev);
Auke Kok2db10a02006-06-27 09:06:28 -0700291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/**
294 * e1000_irq_disable - Mask off interrupt generation on the NIC
295 * @adapter: board private structure
296 **/
297
Joe Perches64798842008-07-11 15:17:02 -0700298static void e1000_irq_disable(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Joe Perches1dc32912008-07-11 15:17:08 -0700300 struct e1000_hw *hw = &adapter->hw;
301
302 ew32(IMC, ~0);
303 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 synchronize_irq(adapter->pdev->irq);
305}
306
307/**
308 * e1000_irq_enable - Enable default interrupt generation settings
309 * @adapter: board private structure
310 **/
311
Joe Perches64798842008-07-11 15:17:02 -0700312static void e1000_irq_enable(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Joe Perches1dc32912008-07-11 15:17:08 -0700314 struct e1000_hw *hw = &adapter->hw;
315
316 ew32(IMS, IMS_ENABLE_MASK);
317 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100319
Joe Perches64798842008-07-11 15:17:02 -0700320static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700321{
Joe Perches1dc32912008-07-11 15:17:08 -0700322 struct e1000_hw *hw = &adapter->hw;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700323 struct net_device *netdev = adapter->netdev;
Joe Perches1dc32912008-07-11 15:17:08 -0700324 u16 vid = hw->mng_cookie.vlan_id;
Joe Perches406874a2008-04-03 10:06:32 -0700325 u16 old_vid = adapter->mng_vlan_id;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800326 if (adapter->vlgrp) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800327 if (!vlan_group_get_device(adapter->vlgrp, vid)) {
Joe Perches1dc32912008-07-11 15:17:08 -0700328 if (hw->mng_cookie.status &
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700329 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) {
330 e1000_vlan_rx_add_vid(netdev, vid);
331 adapter->mng_vlan_id = vid;
332 } else
333 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800334
Joe Perches406874a2008-04-03 10:06:32 -0700335 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) &&
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800336 (vid != old_vid) &&
Dan Aloni5c15bde2007-03-02 20:44:51 -0800337 !vlan_group_get_device(adapter->vlgrp, old_vid))
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700338 e1000_vlan_rx_kill_vid(netdev, old_vid);
Jeff Kirsherc5f226f2006-03-02 18:17:55 -0800339 } else
340 adapter->mng_vlan_id = vid;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700341 }
342}
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800343
Joe Perches64798842008-07-11 15:17:02 -0700344static void e1000_init_manageability(struct e1000_adapter *adapter)
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500345{
Joe Perches1dc32912008-07-11 15:17:08 -0700346 struct e1000_hw *hw = &adapter->hw;
347
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500348 if (adapter->en_mng_pt) {
Joe Perches1dc32912008-07-11 15:17:08 -0700349 u32 manc = er32(MANC);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500350
351 /* disable hardware interception of ARP */
352 manc &= ~(E1000_MANC_ARP_EN);
353
Joe Perches1dc32912008-07-11 15:17:08 -0700354 ew32(MANC, manc);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500355 }
356}
357
Joe Perches64798842008-07-11 15:17:02 -0700358static void e1000_release_manageability(struct e1000_adapter *adapter)
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500359{
Joe Perches1dc32912008-07-11 15:17:08 -0700360 struct e1000_hw *hw = &adapter->hw;
361
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500362 if (adapter->en_mng_pt) {
Joe Perches1dc32912008-07-11 15:17:08 -0700363 u32 manc = er32(MANC);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500364
365 /* re-enable hardware interception of ARP */
366 manc |= E1000_MANC_ARP_EN;
367
Joe Perches1dc32912008-07-11 15:17:08 -0700368 ew32(MANC, manc);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500369 }
370}
371
Auke Koke0aac5a2007-03-06 08:57:21 -0800372/**
373 * e1000_configure - configure the hardware for RX and TX
374 * @adapter = private board structure
375 **/
376static void e1000_configure(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 struct net_device *netdev = adapter->netdev;
Auke Kok2db10a02006-06-27 09:06:28 -0700379 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Patrick McHardydb0ce502007-11-13 20:54:59 -0800381 e1000_set_rx_mode(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 e1000_restore_vlan(adapter);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500384 e1000_init_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 e1000_configure_tx(adapter);
387 e1000_setup_rctl(adapter);
388 e1000_configure_rx(adapter);
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800389 /* call E1000_DESC_UNUSED which always leaves
390 * at least 1 descriptor unused to make sure
391 * next_to_use != next_to_clean */
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800392 for (i = 0; i < adapter->num_rx_queues; i++) {
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800393 struct e1000_rx_ring *ring = &adapter->rx_ring[i];
Jeff Kirshera292ca62006-01-12 16:51:30 -0800394 adapter->alloc_rx_buf(adapter, ring,
395 E1000_DESC_UNUSED(ring));
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800396 }
Auke Koke0aac5a2007-03-06 08:57:21 -0800397}
Jeff Kirsher7bfa4812006-01-12 16:50:41 -0800398
Auke Koke0aac5a2007-03-06 08:57:21 -0800399int e1000_up(struct e1000_adapter *adapter)
400{
Joe Perches1dc32912008-07-11 15:17:08 -0700401 struct e1000_hw *hw = &adapter->hw;
402
Auke Koke0aac5a2007-03-06 08:57:21 -0800403 /* hardware has been reset, we need to reload some things */
404 e1000_configure(adapter);
Malli Chilakala5de55622005-04-28 19:39:30 -0700405
Auke Kok1314bbf2006-09-27 12:54:02 -0700406 clear_bit(__E1000_DOWN, &adapter->flags);
407
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700408 napi_enable(&adapter->napi);
Francois Romieuc3570ac2008-07-11 15:17:38 -0700409
Auke Koke0aac5a2007-03-06 08:57:21 -0800410 e1000_irq_enable(adapter);
411
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +0000412 netif_wake_queue(adapter->netdev);
413
Jesse Brandeburg79f3d392006-12-15 10:42:34 +0100414 /* fire a link change interrupt to start the watchdog */
Joe Perches1dc32912008-07-11 15:17:08 -0700415 ew32(ICS, E1000_ICS_LSC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return 0;
417}
418
Auke Kok79f05bf2006-06-27 09:06:32 -0700419/**
420 * e1000_power_up_phy - restore link in case the phy was powered down
421 * @adapter: address of board private structure
422 *
423 * The phy may be powered down to save power and turn off link when the
424 * driver is unloaded and wake on lan is not enabled (among others)
425 * *** this routine MUST be followed by a call to e1000_reset ***
426 *
427 **/
428
Jesse Brandeburgd6582662006-08-16 13:31:33 -0700429void e1000_power_up_phy(struct e1000_adapter *adapter)
Auke Kok79f05bf2006-06-27 09:06:32 -0700430{
Joe Perches1dc32912008-07-11 15:17:08 -0700431 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700432 u16 mii_reg = 0;
Auke Kok79f05bf2006-06-27 09:06:32 -0700433
434 /* Just clear the power down bit to wake the phy back up */
Joe Perches1dc32912008-07-11 15:17:08 -0700435 if (hw->media_type == e1000_media_type_copper) {
Auke Kok79f05bf2006-06-27 09:06:32 -0700436 /* according to the manual, the phy will retain its
437 * settings across a power-down/up cycle */
Joe Perches1dc32912008-07-11 15:17:08 -0700438 e1000_read_phy_reg(hw, PHY_CTRL, &mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700439 mii_reg &= ~MII_CR_POWER_DOWN;
Joe Perches1dc32912008-07-11 15:17:08 -0700440 e1000_write_phy_reg(hw, PHY_CTRL, mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700441 }
442}
443
444static void e1000_power_down_phy(struct e1000_adapter *adapter)
445{
Joe Perches1dc32912008-07-11 15:17:08 -0700446 struct e1000_hw *hw = &adapter->hw;
447
Bruce Allan61c25052006-09-27 12:53:54 -0700448 /* Power down the PHY so no link is implied when interface is down *
Joe Perchesc3033b02008-03-21 11:06:25 -0700449 * The PHY cannot be powered down if any of the following is true *
Auke Kok79f05bf2006-06-27 09:06:32 -0700450 * (a) WoL is enabled
451 * (b) AMT is active
452 * (c) SoL/IDER session is active */
Joe Perches1dc32912008-07-11 15:17:08 -0700453 if (!adapter->wol && hw->mac_type >= e1000_82540 &&
454 hw->media_type == e1000_media_type_copper) {
Joe Perches406874a2008-04-03 10:06:32 -0700455 u16 mii_reg = 0;
Bruce Allan61c25052006-09-27 12:53:54 -0700456
Joe Perches1dc32912008-07-11 15:17:08 -0700457 switch (hw->mac_type) {
Bruce Allan61c25052006-09-27 12:53:54 -0700458 case e1000_82540:
459 case e1000_82545:
460 case e1000_82545_rev_3:
461 case e1000_82546:
462 case e1000_82546_rev_3:
463 case e1000_82541:
464 case e1000_82541_rev_2:
465 case e1000_82547:
466 case e1000_82547_rev_2:
Joe Perches1dc32912008-07-11 15:17:08 -0700467 if (er32(MANC) & E1000_MANC_SMBUS_EN)
Bruce Allan61c25052006-09-27 12:53:54 -0700468 goto out;
469 break;
Bruce Allan61c25052006-09-27 12:53:54 -0700470 default:
471 goto out;
472 }
Joe Perches1dc32912008-07-11 15:17:08 -0700473 e1000_read_phy_reg(hw, PHY_CTRL, &mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700474 mii_reg |= MII_CR_POWER_DOWN;
Joe Perches1dc32912008-07-11 15:17:08 -0700475 e1000_write_phy_reg(hw, PHY_CTRL, mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700476 mdelay(1);
477 }
Bruce Allan61c25052006-09-27 12:53:54 -0700478out:
479 return;
Auke Kok79f05bf2006-06-27 09:06:32 -0700480}
481
Joe Perches64798842008-07-11 15:17:02 -0700482void e1000_down(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000484 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 struct net_device *netdev = adapter->netdev;
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000486 u32 rctl, tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Auke Kok1314bbf2006-09-27 12:54:02 -0700488
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000489 /* disable receives in the hardware */
490 rctl = er32(RCTL);
491 ew32(RCTL, rctl & ~E1000_RCTL_EN);
492 /* flush and sleep below */
493
Jesse Brandeburg51851072009-09-25 12:17:01 +0000494 netif_tx_disable(netdev);
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000495
496 /* disable transmits in the hardware */
497 tctl = er32(TCTL);
498 tctl &= ~E1000_TCTL_EN;
499 ew32(TCTL, tctl);
500 /* flush both disables and wait for them to finish */
501 E1000_WRITE_FLUSH();
502 msleep(10);
503
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700504 napi_disable(&adapter->napi);
Francois Romieuc3570ac2008-07-11 15:17:38 -0700505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 e1000_irq_disable(adapter);
Jeff Kirsherc1605eb2006-03-02 18:16:38 -0800507
Anupam Chandaab088532010-11-21 09:54:21 -0800508 /*
509 * Setting DOWN must be after irq_disable to prevent
510 * a screaming interrupt. Setting DOWN also prevents
511 * timers and tasks from rescheduling.
512 */
513 set_bit(__E1000_DOWN, &adapter->flags);
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 del_timer_sync(&adapter->tx_fifo_stall_timer);
516 del_timer_sync(&adapter->watchdog_timer);
517 del_timer_sync(&adapter->phy_info_timer);
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 adapter->link_speed = 0;
520 adapter->link_duplex = 0;
521 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 e1000_reset(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400524 e1000_clean_all_tx_rings(adapter);
525 e1000_clean_all_rx_rings(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
stephen hemminger38df7a32010-10-21 07:50:57 +0000528static void e1000_reinit_safe(struct e1000_adapter *adapter)
Jesse Brandeburg338c15e2010-09-22 18:22:42 +0000529{
530 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
531 msleep(1);
532 rtnl_lock();
533 e1000_down(adapter);
534 e1000_up(adapter);
535 rtnl_unlock();
536 clear_bit(__E1000_RESETTING, &adapter->flags);
537}
538
Joe Perches64798842008-07-11 15:17:02 -0700539void e1000_reinit_locked(struct e1000_adapter *adapter)
Auke Kok2db10a02006-06-27 09:06:28 -0700540{
Jesse Brandeburg338c15e2010-09-22 18:22:42 +0000541 /* if rtnl_lock is not held the call path is bogus */
542 ASSERT_RTNL();
Auke Kok2db10a02006-06-27 09:06:28 -0700543 WARN_ON(in_interrupt());
544 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
545 msleep(1);
546 e1000_down(adapter);
547 e1000_up(adapter);
548 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Joe Perches64798842008-07-11 15:17:02 -0700551void e1000_reset(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Joe Perches1dc32912008-07-11 15:17:08 -0700553 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700554 u32 pba = 0, tx_space, min_tx_space, min_rx_space;
Joe Perchesc3033b02008-03-21 11:06:25 -0700555 bool legacy_pba_adjust = false;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000556 u16 hwm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 /* Repartition Pba for greater than 9k mtu
559 * To take effect CTRL.RST is required.
560 */
561
Joe Perches1dc32912008-07-11 15:17:08 -0700562 switch (hw->mac_type) {
Bruce Allan018ea442006-12-15 10:39:45 +0100563 case e1000_82542_rev2_0:
564 case e1000_82542_rev2_1:
565 case e1000_82543:
566 case e1000_82544:
567 case e1000_82540:
568 case e1000_82541:
569 case e1000_82541_rev_2:
Joe Perchesc3033b02008-03-21 11:06:25 -0700570 legacy_pba_adjust = true;
Bruce Allan018ea442006-12-15 10:39:45 +0100571 pba = E1000_PBA_48K;
572 break;
573 case e1000_82545:
574 case e1000_82545_rev_3:
575 case e1000_82546:
576 case e1000_82546_rev_3:
577 pba = E1000_PBA_48K;
578 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700579 case e1000_82547:
Malli Chilakala0e6ef3e2005-04-28 19:44:14 -0700580 case e1000_82547_rev_2:
Joe Perchesc3033b02008-03-21 11:06:25 -0700581 legacy_pba_adjust = true;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700582 pba = E1000_PBA_30K;
583 break;
Bruce Allan018ea442006-12-15 10:39:45 +0100584 case e1000_undefined:
585 case e1000_num_macs:
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700586 break;
587 }
588
Joe Perchesc3033b02008-03-21 11:06:25 -0700589 if (legacy_pba_adjust) {
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000590 if (hw->max_frame_size > E1000_RXBUFFER_8192)
Bruce Allan018ea442006-12-15 10:39:45 +0100591 pba -= 8; /* allocate more FIFO for Tx */
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700592
Joe Perches1dc32912008-07-11 15:17:08 -0700593 if (hw->mac_type == e1000_82547) {
Bruce Allan018ea442006-12-15 10:39:45 +0100594 adapter->tx_fifo_head = 0;
595 adapter->tx_head_addr = pba << E1000_TX_HEAD_ADDR_SHIFT;
596 adapter->tx_fifo_size =
597 (E1000_PBA_40K - pba) << E1000_PBA_BYTES_SHIFT;
598 atomic_set(&adapter->tx_fifo_stall, 0);
599 }
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000600 } else if (hw->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allan018ea442006-12-15 10:39:45 +0100601 /* adjust PBA for jumbo frames */
Joe Perches1dc32912008-07-11 15:17:08 -0700602 ew32(PBA, pba);
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700603
Bruce Allan018ea442006-12-15 10:39:45 +0100604 /* To maintain wire speed transmits, the Tx FIFO should be
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000605 * large enough to accommodate two full transmit packets,
Bruce Allan018ea442006-12-15 10:39:45 +0100606 * rounded up to the next 1KB and expressed in KB. Likewise,
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000607 * the Rx FIFO should be large enough to accommodate at least
Bruce Allan018ea442006-12-15 10:39:45 +0100608 * one full receive packet and is similarly rounded up and
609 * expressed in KB. */
Joe Perches1dc32912008-07-11 15:17:08 -0700610 pba = er32(PBA);
Bruce Allan018ea442006-12-15 10:39:45 +0100611 /* upper 16 bits has Tx packet buffer allocation size in KB */
612 tx_space = pba >> 16;
613 /* lower 16 bits has Rx packet buffer allocation size in KB */
614 pba &= 0xffff;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000615 /*
616 * the tx fifo also stores 16 bytes of information about the tx
617 * but don't include ethernet FCS because hardware appends it
618 */
619 min_tx_space = (hw->max_frame_size +
620 sizeof(struct e1000_tx_desc) -
621 ETH_FCS_LEN) * 2;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700622 min_tx_space = ALIGN(min_tx_space, 1024);
Bruce Allan018ea442006-12-15 10:39:45 +0100623 min_tx_space >>= 10;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000624 /* software strips receive CRC, so leave room for it */
625 min_rx_space = hw->max_frame_size;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700626 min_rx_space = ALIGN(min_rx_space, 1024);
Bruce Allan018ea442006-12-15 10:39:45 +0100627 min_rx_space >>= 10;
628
629 /* If current Tx allocation is less than the min Tx FIFO size,
630 * and the min Tx FIFO size is less than the current Rx FIFO
631 * allocation, take space away from current Rx allocation */
632 if (tx_space < min_tx_space &&
633 ((min_tx_space - tx_space) < pba)) {
634 pba = pba - (min_tx_space - tx_space);
635
636 /* PCI/PCIx hardware has PBA alignment constraints */
Joe Perches1dc32912008-07-11 15:17:08 -0700637 switch (hw->mac_type) {
Bruce Allan018ea442006-12-15 10:39:45 +0100638 case e1000_82545 ... e1000_82546_rev_3:
639 pba &= ~(E1000_PBA_8K - 1);
640 break;
641 default:
642 break;
643 }
644
645 /* if short on rx space, rx wins and must trump tx
646 * adjustment or use Early Receive if available */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000647 if (pba < min_rx_space)
648 pba = min_rx_space;
Bruce Allan018ea442006-12-15 10:39:45 +0100649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700651
Joe Perches1dc32912008-07-11 15:17:08 -0700652 ew32(PBA, pba);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000654 /*
655 * flow control settings:
656 * The high water mark must be low enough to fit one full frame
657 * (or the size used for early receive) above it in the Rx FIFO.
658 * Set it to the lower of:
659 * - 90% of the Rx FIFO size, and
660 * - the full Rx FIFO size minus the early receive size (for parts
661 * with ERT support assuming ERT set to E1000_ERT_2048), or
662 * - the full Rx FIFO size minus one full frame
663 */
664 hwm = min(((pba << 10) * 9 / 10),
665 ((pba << 10) - hw->max_frame_size));
Jeff Kirsherf11b7f82006-01-12 16:50:51 -0800666
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000667 hw->fc_high_water = hwm & 0xFFF8; /* 8-byte granularity */
668 hw->fc_low_water = hw->fc_high_water - 8;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000669 hw->fc_pause_time = E1000_FC_PAUSE_TIME;
Joe Perches1dc32912008-07-11 15:17:08 -0700670 hw->fc_send_xon = 1;
671 hw->fc = hw->original_fc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700673 /* Allow time for pending master requests to run */
Joe Perches1dc32912008-07-11 15:17:08 -0700674 e1000_reset_hw(hw);
675 if (hw->mac_type >= e1000_82544)
676 ew32(WUC, 0);
Jeff Kirsher09ae3e82006-09-27 12:53:51 -0700677
Joe Perches1dc32912008-07-11 15:17:08 -0700678 if (e1000_init_hw(hw))
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700679 e_dev_err("Hardware Error\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700680 e1000_update_mng_vlan(adapter);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100681
682 /* if (adapter->hwflags & HWFLAGS_PHY_PWR_BIT) { */
Joe Perches1dc32912008-07-11 15:17:08 -0700683 if (hw->mac_type >= e1000_82544 &&
Joe Perches1dc32912008-07-11 15:17:08 -0700684 hw->autoneg == 1 &&
685 hw->autoneg_advertised == ADVERTISE_1000_FULL) {
686 u32 ctrl = er32(CTRL);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100687 /* clear phy power management bit if we are in gig only mode,
688 * which if enabled will attempt negotiation to 100Mb, which
689 * can cause a loss of link at power off or driver unload */
690 ctrl &= ~E1000_CTRL_SWDPIN3;
Joe Perches1dc32912008-07-11 15:17:08 -0700691 ew32(CTRL, ctrl);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100692 }
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
Joe Perches1dc32912008-07-11 15:17:08 -0700695 ew32(VET, ETHERNET_IEEE_VLAN_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Joe Perches1dc32912008-07-11 15:17:08 -0700697 e1000_reset_adaptive(hw);
698 e1000_phy_get_info(hw, &adapter->phy_info);
Auke Kok9a53a202006-06-27 09:06:45 -0700699
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500700 e1000_release_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
703/**
Auke Kok67b3c272007-12-17 13:50:23 -0800704 * Dump the eeprom for users having checksum issues
705 **/
Adrian Bunkb4ea8952008-02-01 08:21:28 -0800706static void e1000_dump_eeprom(struct e1000_adapter *adapter)
Auke Kok67b3c272007-12-17 13:50:23 -0800707{
708 struct net_device *netdev = adapter->netdev;
709 struct ethtool_eeprom eeprom;
710 const struct ethtool_ops *ops = netdev->ethtool_ops;
711 u8 *data;
712 int i;
713 u16 csum_old, csum_new = 0;
714
715 eeprom.len = ops->get_eeprom_len(netdev);
716 eeprom.offset = 0;
717
718 data = kmalloc(eeprom.len, GFP_KERNEL);
719 if (!data) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000720 pr_err("Unable to allocate memory to dump EEPROM data\n");
Auke Kok67b3c272007-12-17 13:50:23 -0800721 return;
722 }
723
724 ops->get_eeprom(netdev, &eeprom, data);
725
726 csum_old = (data[EEPROM_CHECKSUM_REG * 2]) +
727 (data[EEPROM_CHECKSUM_REG * 2 + 1] << 8);
728 for (i = 0; i < EEPROM_CHECKSUM_REG * 2; i += 2)
729 csum_new += data[i] + (data[i + 1] << 8);
730 csum_new = EEPROM_SUM - csum_new;
731
Emil Tantilov675ad472010-04-27 14:02:58 +0000732 pr_err("/*********************/\n");
733 pr_err("Current EEPROM Checksum : 0x%04x\n", csum_old);
734 pr_err("Calculated : 0x%04x\n", csum_new);
Auke Kok67b3c272007-12-17 13:50:23 -0800735
Emil Tantilov675ad472010-04-27 14:02:58 +0000736 pr_err("Offset Values\n");
737 pr_err("======== ======\n");
Auke Kok67b3c272007-12-17 13:50:23 -0800738 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, data, 128, 0);
739
Emil Tantilov675ad472010-04-27 14:02:58 +0000740 pr_err("Include this output when contacting your support provider.\n");
741 pr_err("This is not a software error! Something bad happened to\n");
742 pr_err("your hardware or EEPROM image. Ignoring this problem could\n");
743 pr_err("result in further problems, possibly loss of data,\n");
744 pr_err("corruption or system hangs!\n");
745 pr_err("The MAC Address will be reset to 00:00:00:00:00:00,\n");
746 pr_err("which is invalid and requires you to set the proper MAC\n");
747 pr_err("address manually before continuing to enable this network\n");
748 pr_err("device. Please inspect the EEPROM dump and report the\n");
749 pr_err("issue to your hardware vendor or Intel Customer Support.\n");
750 pr_err("/*********************/\n");
Auke Kok67b3c272007-12-17 13:50:23 -0800751
752 kfree(data);
753}
754
755/**
Taku Izumi81250292008-07-11 15:17:44 -0700756 * e1000_is_need_ioport - determine if an adapter needs ioport resources or not
757 * @pdev: PCI device information struct
758 *
759 * Return true if an adapter needs ioport resources
760 **/
761static int e1000_is_need_ioport(struct pci_dev *pdev)
762{
763 switch (pdev->device) {
764 case E1000_DEV_ID_82540EM:
765 case E1000_DEV_ID_82540EM_LOM:
766 case E1000_DEV_ID_82540EP:
767 case E1000_DEV_ID_82540EP_LOM:
768 case E1000_DEV_ID_82540EP_LP:
769 case E1000_DEV_ID_82541EI:
770 case E1000_DEV_ID_82541EI_MOBILE:
771 case E1000_DEV_ID_82541ER:
772 case E1000_DEV_ID_82541ER_LOM:
773 case E1000_DEV_ID_82541GI:
774 case E1000_DEV_ID_82541GI_LF:
775 case E1000_DEV_ID_82541GI_MOBILE:
776 case E1000_DEV_ID_82544EI_COPPER:
777 case E1000_DEV_ID_82544EI_FIBER:
778 case E1000_DEV_ID_82544GC_COPPER:
779 case E1000_DEV_ID_82544GC_LOM:
780 case E1000_DEV_ID_82545EM_COPPER:
781 case E1000_DEV_ID_82545EM_FIBER:
782 case E1000_DEV_ID_82546EB_COPPER:
783 case E1000_DEV_ID_82546EB_FIBER:
784 case E1000_DEV_ID_82546EB_QUAD_COPPER:
785 return true;
786 default:
787 return false;
788 }
789}
790
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800791static const struct net_device_ops e1000_netdev_ops = {
792 .ndo_open = e1000_open,
793 .ndo_stop = e1000_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800794 .ndo_start_xmit = e1000_xmit_frame,
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800795 .ndo_get_stats = e1000_get_stats,
796 .ndo_set_rx_mode = e1000_set_rx_mode,
797 .ndo_set_mac_address = e1000_set_mac,
798 .ndo_tx_timeout = e1000_tx_timeout,
799 .ndo_change_mtu = e1000_change_mtu,
800 .ndo_do_ioctl = e1000_ioctl,
801 .ndo_validate_addr = eth_validate_addr,
802
803 .ndo_vlan_rx_register = e1000_vlan_rx_register,
804 .ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
805 .ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
806#ifdef CONFIG_NET_POLL_CONTROLLER
807 .ndo_poll_controller = e1000_netpoll,
808#endif
809};
810
Taku Izumi81250292008-07-11 15:17:44 -0700811/**
Jesse Brandeburge508be12010-09-07 21:01:12 +0000812 * e1000_init_hw_struct - initialize members of hw struct
813 * @adapter: board private struct
814 * @hw: structure used by e1000_hw.c
815 *
816 * Factors out initialization of the e1000_hw struct to its own function
817 * that can be called very early at init (just after struct allocation).
818 * Fields are initialized based on PCI device information and
819 * OS network device settings (MTU size).
820 * Returns negative error codes if MAC type setup fails.
821 */
822static int e1000_init_hw_struct(struct e1000_adapter *adapter,
823 struct e1000_hw *hw)
824{
825 struct pci_dev *pdev = adapter->pdev;
826
827 /* PCI config space info */
828 hw->vendor_id = pdev->vendor;
829 hw->device_id = pdev->device;
830 hw->subsystem_vendor_id = pdev->subsystem_vendor;
831 hw->subsystem_id = pdev->subsystem_device;
832 hw->revision_id = pdev->revision;
833
834 pci_read_config_word(pdev, PCI_COMMAND, &hw->pci_cmd_word);
835
836 hw->max_frame_size = adapter->netdev->mtu +
837 ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
838 hw->min_frame_size = MINIMUM_ETHERNET_FRAME_SIZE;
839
840 /* identify the MAC */
841 if (e1000_set_mac_type(hw)) {
842 e_err(probe, "Unknown MAC Type\n");
843 return -EIO;
844 }
845
846 switch (hw->mac_type) {
847 default:
848 break;
849 case e1000_82541:
850 case e1000_82547:
851 case e1000_82541_rev_2:
852 case e1000_82547_rev_2:
853 hw->phy_init_script = 1;
854 break;
855 }
856
857 e1000_set_media_type(hw);
858 e1000_get_bus_info(hw);
859
860 hw->wait_autoneg_complete = false;
861 hw->tbi_compatibility_en = true;
862 hw->adaptive_ifs = true;
863
864 /* Copper options */
865
866 if (hw->media_type == e1000_media_type_copper) {
867 hw->mdix = AUTO_ALL_MODES;
868 hw->disable_polarity_correction = false;
869 hw->master_slave = E1000_MASTER_SLAVE;
870 }
871
872 return 0;
873}
874
875/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 * e1000_probe - Device Initialization Routine
877 * @pdev: PCI device information struct
878 * @ent: entry in e1000_pci_tbl
879 *
880 * Returns 0 on success, negative on failure
881 *
882 * e1000_probe initializes an adapter identified by a pci_dev structure.
883 * The OS initialization, configuring of the adapter private structure,
884 * and a hardware reset occur.
885 **/
Joe Perches1dc32912008-07-11 15:17:08 -0700886static int __devinit e1000_probe(struct pci_dev *pdev,
887 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 struct net_device *netdev;
890 struct e1000_adapter *adapter;
Joe Perches1dc32912008-07-11 15:17:08 -0700891 struct e1000_hw *hw;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 static int cards_found = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -0700894 static int global_quad_port_a = 0; /* global ksp3 port a indication */
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700895 int i, err, pci_using_dac;
Joe Perches406874a2008-04-03 10:06:32 -0700896 u16 eeprom_data = 0;
897 u16 eeprom_apme_mask = E1000_EEPROM_APME;
Taku Izumi81250292008-07-11 15:17:44 -0700898 int bars, need_ioport;
Joe Perches0795af52007-10-03 17:59:30 -0700899
Taku Izumi81250292008-07-11 15:17:44 -0700900 /* do not allocate ioport bars when not needed */
901 need_ioport = e1000_is_need_ioport(pdev);
902 if (need_ioport) {
903 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
904 err = pci_enable_device(pdev);
905 } else {
906 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Karsten Keil4d7155b2009-02-03 15:18:01 -0800907 err = pci_enable_device_mem(pdev);
Taku Izumi81250292008-07-11 15:17:44 -0700908 }
Joe Perchesc7be73b2008-07-11 15:17:28 -0700909 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return err;
911
Taku Izumi81250292008-07-11 15:17:44 -0700912 err = pci_request_selected_regions(pdev, bars, e1000_driver_name);
Joe Perchesc7be73b2008-07-11 15:17:28 -0700913 if (err)
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700914 goto err_pci_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 pci_set_master(pdev);
Nick Nunleydbb5aae2010-02-03 14:49:48 +0000917 err = pci_save_state(pdev);
918 if (err)
919 goto err_alloc_etherdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700921 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700923 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 goto err_alloc_etherdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 SET_NETDEV_DEV(netdev, &pdev->dev);
927
928 pci_set_drvdata(pdev, netdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -0700929 adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 adapter->netdev = netdev;
931 adapter->pdev = pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 adapter->msg_enable = (1 << debug) - 1;
Taku Izumi81250292008-07-11 15:17:44 -0700933 adapter->bars = bars;
934 adapter->need_ioport = need_ioport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Joe Perches1dc32912008-07-11 15:17:08 -0700936 hw = &adapter->hw;
937 hw->back = adapter;
938
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700939 err = -EIO;
Arjan van de Ven275f1652008-10-20 21:42:39 -0700940 hw->hw_addr = pci_ioremap_bar(pdev, BAR_0);
Joe Perches1dc32912008-07-11 15:17:08 -0700941 if (!hw->hw_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 goto err_ioremap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Taku Izumi81250292008-07-11 15:17:44 -0700944 if (adapter->need_ioport) {
945 for (i = BAR_1; i <= BAR_5; i++) {
946 if (pci_resource_len(pdev, i) == 0)
947 continue;
948 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
949 hw->io_base = pci_resource_start(pdev, i);
950 break;
951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953 }
954
Jesse Brandeburge508be12010-09-07 21:01:12 +0000955 /* make ready for any if (hw->...) below */
956 err = e1000_init_hw_struct(adapter, hw);
957 if (err)
958 goto err_sw_init;
959
960 /*
961 * there is a workaround being applied below that limits
962 * 64-bit DMA addresses to 64-bit hardware. There are some
963 * 32-bit adapters that Tx hang when given 64-bit DMA addresses
964 */
965 pci_using_dac = 0;
966 if ((hw->bus_type == e1000_bus_type_pcix) &&
967 !dma_set_mask(&pdev->dev, DMA_BIT_MASK(64))) {
968 /*
969 * according to DMA-API-HOWTO, coherent calls will always
970 * succeed if the set call did
971 */
972 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
973 pci_using_dac = 1;
974 } else if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(32))) {
975 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
976 } else {
977 pr_err("No usable DMA config, aborting\n");
978 goto err_dma;
979 }
980
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800981 netdev->netdev_ops = &e1000_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 e1000_set_ethtool_ops(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 netdev->watchdog_timeo = 5 * HZ;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700984 netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800985
Auke Kok0eb5a342006-09-27 12:53:17 -0700986 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 adapter->bd_number = cards_found;
989
990 /* setup the private structure */
991
Joe Perchesc7be73b2008-07-11 15:17:28 -0700992 err = e1000_sw_init(adapter);
993 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 goto err_sw_init;
995
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700996 err = -EIO;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700997
Joe Perches1dc32912008-07-11 15:17:08 -0700998 if (hw->mac_type >= e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 netdev->features = NETIF_F_SG |
1000 NETIF_F_HW_CSUM |
1001 NETIF_F_HW_VLAN_TX |
1002 NETIF_F_HW_VLAN_RX |
1003 NETIF_F_HW_VLAN_FILTER;
1004 }
1005
Joe Perches1dc32912008-07-11 15:17:08 -07001006 if ((hw->mac_type >= e1000_82544) &&
1007 (hw->mac_type != e1000_82547))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 netdev->features |= NETIF_F_TSO;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001009
Yi Zou7b872a52010-09-22 17:57:58 +00001010 if (pci_using_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00001012 netdev->vlan_features |= NETIF_F_HIGHDMA;
1013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Patrick McHardy20501a62008-10-11 12:25:59 -07001015 netdev->vlan_features |= NETIF_F_TSO;
Patrick McHardy20501a62008-10-11 12:25:59 -07001016 netdev->vlan_features |= NETIF_F_HW_CSUM;
1017 netdev->vlan_features |= NETIF_F_SG;
1018
Joe Perches1dc32912008-07-11 15:17:08 -07001019 adapter->en_mng_pt = e1000_enable_mng_pass_thru(hw);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001020
Auke Kokcd94dd02006-06-27 09:08:22 -07001021 /* initialize eeprom parameters */
Joe Perches1dc32912008-07-11 15:17:08 -07001022 if (e1000_init_eeprom_params(hw)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001023 e_err(probe, "EEPROM initialization failed\n");
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001024 goto err_eeprom;
Auke Kokcd94dd02006-06-27 09:08:22 -07001025 }
1026
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001027 /* before reading the EEPROM, reset the controller to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 * put the device in a known good starting state */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001029
Joe Perches1dc32912008-07-11 15:17:08 -07001030 e1000_reset_hw(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 /* make sure the EEPROM is good */
Joe Perches1dc32912008-07-11 15:17:08 -07001033 if (e1000_validate_eeprom_checksum(hw) < 0) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001034 e_err(probe, "The EEPROM Checksum Is Not Valid\n");
Auke Kok67b3c272007-12-17 13:50:23 -08001035 e1000_dump_eeprom(adapter);
1036 /*
1037 * set MAC address to all zeroes to invalidate and temporary
1038 * disable this device for the user. This blocks regular
1039 * traffic while still permitting ethtool ioctls from reaching
1040 * the hardware as well as allowing the user to run the
1041 * interface after manually setting a hw addr using
1042 * `ip set address`
1043 */
Joe Perches1dc32912008-07-11 15:17:08 -07001044 memset(hw->mac_addr, 0, netdev->addr_len);
Auke Kok67b3c272007-12-17 13:50:23 -08001045 } else {
1046 /* copy the MAC address out of the EEPROM */
Joe Perches1dc32912008-07-11 15:17:08 -07001047 if (e1000_read_mac_addr(hw))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001048 e_err(probe, "EEPROM Read Error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
Auke Kok67b3c272007-12-17 13:50:23 -08001050 /* don't block initalization here due to bad MAC address */
Joe Perches1dc32912008-07-11 15:17:08 -07001051 memcpy(netdev->dev_addr, hw->mac_addr, netdev->addr_len);
1052 memcpy(netdev->perm_addr, hw->mac_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Auke Kok67b3c272007-12-17 13:50:23 -08001054 if (!is_valid_ether_addr(netdev->perm_addr))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001055 e_err(probe, "Invalid MAC Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 init_timer(&adapter->tx_fifo_stall_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00001058 adapter->tx_fifo_stall_timer.function = e1000_82547_tx_fifo_stall;
Joe Perchese982f172008-07-11 15:17:18 -07001059 adapter->tx_fifo_stall_timer.data = (unsigned long)adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00001062 adapter->watchdog_timer.function = e1000_watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 adapter->watchdog_timer.data = (unsigned long) adapter;
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 init_timer(&adapter->phy_info_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00001066 adapter->phy_info_timer.function = e1000_update_phy_info;
Joe Perchese982f172008-07-11 15:17:18 -07001067 adapter->phy_info_timer.data = (unsigned long)adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00001069 INIT_WORK(&adapter->fifo_stall_task, e1000_82547_tx_fifo_stall_task);
David Howells65f27f32006-11-22 14:55:48 +00001070 INIT_WORK(&adapter->reset_task, e1000_reset_task);
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00001071 INIT_WORK(&adapter->phy_info_task, e1000_update_phy_info_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 e1000_check_options(adapter);
1074
1075 /* Initial Wake on LAN setting
1076 * If APM wake is enabled in the EEPROM,
1077 * enable the ACPI Magic Packet filter
1078 */
1079
Joe Perches1dc32912008-07-11 15:17:08 -07001080 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 case e1000_82542_rev2_0:
1082 case e1000_82542_rev2_1:
1083 case e1000_82543:
1084 break;
1085 case e1000_82544:
Joe Perches1dc32912008-07-11 15:17:08 -07001086 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 EEPROM_INIT_CONTROL2_REG, 1, &eeprom_data);
1088 eeprom_apme_mask = E1000_EEPROM_82544_APM;
1089 break;
1090 case e1000_82546:
1091 case e1000_82546_rev_3:
Joe Perches1dc32912008-07-11 15:17:08 -07001092 if (er32(STATUS) & E1000_STATUS_FUNC_1){
1093 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 EEPROM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
1095 break;
1096 }
1097 /* Fall Through */
1098 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001099 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 EEPROM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
1101 break;
1102 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001103 if (eeprom_data & eeprom_apme_mask)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001104 adapter->eeprom_wol |= E1000_WUFC_MAG;
1105
1106 /* now that we have the eeprom settings, apply the special cases
1107 * where the eeprom may be wrong or the board simply won't support
1108 * wake on lan on a particular port */
1109 switch (pdev->device) {
1110 case E1000_DEV_ID_82546GB_PCIE:
1111 adapter->eeprom_wol = 0;
1112 break;
1113 case E1000_DEV_ID_82546EB_FIBER:
1114 case E1000_DEV_ID_82546GB_FIBER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001115 /* Wake events only supported on port A for dual fiber
1116 * regardless of eeprom setting */
Joe Perches1dc32912008-07-11 15:17:08 -07001117 if (er32(STATUS) & E1000_STATUS_FUNC_1)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001118 adapter->eeprom_wol = 0;
1119 break;
1120 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1121 /* if quad port adapter, disable WoL on all but port A */
1122 if (global_quad_port_a != 0)
1123 adapter->eeprom_wol = 0;
1124 else
1125 adapter->quad_port_a = 1;
1126 /* Reset for multiple quad port adapters */
1127 if (++global_quad_port_a == 4)
1128 global_quad_port_a = 0;
1129 break;
1130 }
1131
1132 /* initialize the wol settings based on the eeprom settings */
1133 adapter->wol = adapter->eeprom_wol;
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001134 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
1136 /* reset the hardware with the new settings */
1137 e1000_reset(adapter);
1138
Auke Kok416b5d12007-06-01 10:22:39 -07001139 strcpy(netdev->name, "eth%d");
Joe Perchesc7be73b2008-07-11 15:17:28 -07001140 err = register_netdev(netdev);
1141 if (err)
Auke Kok416b5d12007-06-01 10:22:39 -07001142 goto err_register;
Auke Kok1314bbf2006-09-27 12:54:02 -07001143
Emil Tantilov675ad472010-04-27 14:02:58 +00001144 /* print bus type/speed/width info */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001145 e_info(probe, "(PCI%s:%dMHz:%d-bit) %pM\n",
Joe Perches7837e582010-06-11 12:51:49 +00001146 ((hw->bus_type == e1000_bus_type_pcix) ? "-X" : ""),
1147 ((hw->bus_speed == e1000_bus_speed_133) ? 133 :
1148 (hw->bus_speed == e1000_bus_speed_120) ? 120 :
1149 (hw->bus_speed == e1000_bus_speed_100) ? 100 :
1150 (hw->bus_speed == e1000_bus_speed_66) ? 66 : 33),
1151 ((hw->bus_width == e1000_bus_width_64) ? 64 : 32),
1152 netdev->dev_addr);
Emil Tantilov675ad472010-04-27 14:02:58 +00001153
Jesse Brandeburgeb62efd2009-04-17 20:44:36 +00001154 /* carrier off reporting is important to ethtool even BEFORE open */
1155 netif_carrier_off(netdev);
1156
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001157 e_info(probe, "Intel(R) PRO/1000 Network Connection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 cards_found++;
1160 return 0;
1161
1162err_register:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001163err_eeprom:
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001164 e1000_phy_hw_reset(hw);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001165
Joe Perches1dc32912008-07-11 15:17:08 -07001166 if (hw->flash_address)
1167 iounmap(hw->flash_address);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001168 kfree(adapter->tx_ring);
1169 kfree(adapter->rx_ring);
Jesse Brandeburge508be12010-09-07 21:01:12 +00001170err_dma:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171err_sw_init:
Joe Perches1dc32912008-07-11 15:17:08 -07001172 iounmap(hw->hw_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173err_ioremap:
1174 free_netdev(netdev);
1175err_alloc_etherdev:
Taku Izumi81250292008-07-11 15:17:44 -07001176 pci_release_selected_regions(pdev, bars);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001177err_pci_reg:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001178 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return err;
1180}
1181
1182/**
1183 * e1000_remove - Device Removal Routine
1184 * @pdev: PCI device information struct
1185 *
1186 * e1000_remove is called by the PCI subsystem to alert the driver
1187 * that it should release a PCI device. The could be caused by a
1188 * Hot-Plug event, or because the driver is going to be removed from
1189 * memory.
1190 **/
1191
Joe Perches64798842008-07-11 15:17:02 -07001192static void __devexit e1000_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
1194 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07001195 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001196 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00001198 set_bit(__E1000_DOWN, &adapter->flags);
1199 del_timer_sync(&adapter->tx_fifo_stall_timer);
1200 del_timer_sync(&adapter->watchdog_timer);
1201 del_timer_sync(&adapter->phy_info_timer);
1202
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07001203 cancel_work_sync(&adapter->reset_task);
Jeff Garzikbe2b28e2005-10-04 07:13:43 -04001204
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05001205 e1000_release_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001207 unregister_netdev(netdev);
1208
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001209 e1000_phy_hw_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04001211 kfree(adapter->tx_ring);
1212 kfree(adapter->rx_ring);
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04001213
Joe Perches1dc32912008-07-11 15:17:08 -07001214 iounmap(hw->hw_addr);
1215 if (hw->flash_address)
1216 iounmap(hw->flash_address);
Taku Izumi81250292008-07-11 15:17:44 -07001217 pci_release_selected_regions(pdev, adapter->bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 free_netdev(netdev);
1220
1221 pci_disable_device(pdev);
1222}
1223
1224/**
1225 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
1226 * @adapter: board private structure to initialize
1227 *
1228 * e1000_sw_init initializes the Adapter private data structure.
Jesse Brandeburge508be12010-09-07 21:01:12 +00001229 * e1000_init_hw_struct MUST be called before this function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 **/
1231
Joe Perches64798842008-07-11 15:17:02 -07001232static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Auke Kokeb0f8052006-07-14 16:14:48 -07001234 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001236 adapter->num_tx_queues = 1;
1237 adapter->num_rx_queues = 1;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001238
1239 if (e1000_alloc_queues(adapter)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001240 e_err(probe, "Unable to allocate memory for queues\n");
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001241 return -ENOMEM;
1242 }
1243
Herbert Xu47313052007-05-29 15:07:31 -07001244 /* Explicitly disable IRQ since the NIC can be in any state. */
Herbert Xu47313052007-05-29 15:07:31 -07001245 e1000_irq_disable(adapter);
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 spin_lock_init(&adapter->stats_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Auke Kok1314bbf2006-09-27 12:54:02 -07001249 set_bit(__E1000_DOWN, &adapter->flags);
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return 0;
1252}
1253
1254/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001255 * e1000_alloc_queues - Allocate memory for all rings
1256 * @adapter: board private structure to initialize
1257 *
1258 * We allocate one ring per queue at run-time since we don't know the
Wang Chen3e1d7cd2008-12-03 22:07:10 -08001259 * number of queues at compile-time.
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001260 **/
1261
Joe Perches64798842008-07-11 15:17:02 -07001262static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001263{
Yan Burman1c7e5b12007-03-06 08:58:04 -08001264 adapter->tx_ring = kcalloc(adapter->num_tx_queues,
1265 sizeof(struct e1000_tx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001266 if (!adapter->tx_ring)
1267 return -ENOMEM;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001268
Yan Burman1c7e5b12007-03-06 08:58:04 -08001269 adapter->rx_ring = kcalloc(adapter->num_rx_queues,
1270 sizeof(struct e1000_rx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001271 if (!adapter->rx_ring) {
1272 kfree(adapter->tx_ring);
1273 return -ENOMEM;
1274 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001275
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001276 return E1000_SUCCESS;
1277}
1278
1279/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 * e1000_open - Called when a network interface is made active
1281 * @netdev: network interface device structure
1282 *
1283 * Returns 0 on success, negative value on failure
1284 *
1285 * The open entry point is called when a network interface is made
1286 * active by the system (IFF_UP). At this point all resources needed
1287 * for transmit and receive operations are allocated, the interrupt
1288 * handler is registered with the OS, the watchdog timer is started,
1289 * and the stack is notified that the interface is ready.
1290 **/
1291
Joe Perches64798842008-07-11 15:17:02 -07001292static int e1000_open(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001294 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001295 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 int err;
1297
Auke Kok2db10a02006-06-27 09:06:28 -07001298 /* disallow open during test */
Auke Kok1314bbf2006-09-27 12:54:02 -07001299 if (test_bit(__E1000_TESTING, &adapter->flags))
Auke Kok2db10a02006-06-27 09:06:28 -07001300 return -EBUSY;
1301
Jesse Brandeburgeb62efd2009-04-17 20:44:36 +00001302 netif_carrier_off(netdev);
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 /* allocate transmit descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001305 err = e1000_setup_all_tx_resources(adapter);
1306 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 goto err_setup_tx;
1308
1309 /* allocate receive descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001310 err = e1000_setup_all_rx_resources(adapter);
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001311 if (err)
Auke Koke0aac5a2007-03-06 08:57:21 -08001312 goto err_setup_rx;
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001313
Auke Kok79f05bf2006-06-27 09:06:32 -07001314 e1000_power_up_phy(adapter);
1315
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001316 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Joe Perches1dc32912008-07-11 15:17:08 -07001317 if ((hw->mng_cookie.status &
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001318 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT)) {
1319 e1000_update_mng_vlan(adapter);
1320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Auke Koke0aac5a2007-03-06 08:57:21 -08001322 /* before we allocate an interrupt, we must be ready to handle it.
1323 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
1324 * as soon as we call pci_request_irq, so we have to setup our
1325 * clean_rx handler before we do so. */
1326 e1000_configure(adapter);
1327
1328 err = e1000_request_irq(adapter);
1329 if (err)
1330 goto err_req_irq;
1331
1332 /* From here on the code is the same as e1000_up() */
1333 clear_bit(__E1000_DOWN, &adapter->flags);
1334
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001335 napi_enable(&adapter->napi);
Herbert Xu47313052007-05-29 15:07:31 -07001336
Auke Koke0aac5a2007-03-06 08:57:21 -08001337 e1000_irq_enable(adapter);
1338
Ben Hutchings076152d2008-07-18 17:50:57 -07001339 netif_start_queue(netdev);
1340
Auke Koke0aac5a2007-03-06 08:57:21 -08001341 /* fire a link status change interrupt to start the watchdog */
Joe Perches1dc32912008-07-11 15:17:08 -07001342 ew32(ICS, E1000_ICS_LSC);
Auke Koke0aac5a2007-03-06 08:57:21 -08001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 return E1000_SUCCESS;
1345
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001346err_req_irq:
Auke Koke0aac5a2007-03-06 08:57:21 -08001347 e1000_power_down_phy(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001348 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349err_setup_rx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001350 e1000_free_all_tx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351err_setup_tx:
1352 e1000_reset(adapter);
1353
1354 return err;
1355}
1356
1357/**
1358 * e1000_close - Disables a network interface
1359 * @netdev: network interface device structure
1360 *
1361 * Returns 0, this is not allowed to fail
1362 *
1363 * The close entry point is called when an interface is de-activated
1364 * by the OS. The hardware is still under the drivers control, but
1365 * needs to be disabled. A global MAC reset is issued to stop the
1366 * hardware, and all transmit and receive resources are freed.
1367 **/
1368
Joe Perches64798842008-07-11 15:17:02 -07001369static int e1000_close(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001371 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001372 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Auke Kok2db10a02006-06-27 09:06:28 -07001374 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 e1000_down(adapter);
Auke Kok79f05bf2006-06-27 09:06:32 -07001376 e1000_power_down_phy(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07001377 e1000_free_irq(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001379 e1000_free_all_tx_resources(adapter);
1380 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Bruce Allan46665602006-09-27 12:54:08 -07001382 /* kill manageability vlan ID if supported, but not if a vlan with
1383 * the same ID is registered on the host OS (let 8021q kill it) */
Joe Perches1dc32912008-07-11 15:17:08 -07001384 if ((hw->mng_cookie.status &
Bruce Allan46665602006-09-27 12:54:08 -07001385 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
1386 !(adapter->vlgrp &&
Dan Aloni5c15bde2007-03-02 20:44:51 -08001387 vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id))) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001388 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
1389 }
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return 0;
1392}
1393
1394/**
1395 * e1000_check_64k_bound - check that memory doesn't cross 64kB boundary
1396 * @adapter: address of board private structure
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001397 * @start: address of beginning of memory
1398 * @len: length of memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 **/
Joe Perches64798842008-07-11 15:17:02 -07001400static bool e1000_check_64k_bound(struct e1000_adapter *adapter, void *start,
1401 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Joe Perches1dc32912008-07-11 15:17:08 -07001403 struct e1000_hw *hw = &adapter->hw;
Joe Perchese982f172008-07-11 15:17:18 -07001404 unsigned long begin = (unsigned long)start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 unsigned long end = begin + len;
1406
Malli Chilakala26483452005-04-28 19:44:46 -07001407 /* First rev 82545 and 82546 need to not allow any memory
1408 * write location to cross 64k boundary due to errata 23 */
Joe Perches1dc32912008-07-11 15:17:08 -07001409 if (hw->mac_type == e1000_82545 ||
1410 hw->mac_type == e1000_82546) {
Joe Perchesc3033b02008-03-21 11:06:25 -07001411 return ((begin ^ (end - 1)) >> 16) != 0 ? false : true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413
Joe Perchesc3033b02008-03-21 11:06:25 -07001414 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
1417/**
1418 * e1000_setup_tx_resources - allocate Tx resources (Descriptors)
1419 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001420 * @txdr: tx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 *
1422 * Return 0 on success, negative on failure
1423 **/
1424
Joe Perches64798842008-07-11 15:17:02 -07001425static int e1000_setup_tx_resources(struct e1000_adapter *adapter,
1426 struct e1000_tx_ring *txdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 struct pci_dev *pdev = adapter->pdev;
1429 int size;
1430
1431 size = sizeof(struct e1000_buffer) * txdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001432 txdr->buffer_info = vzalloc(size);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001433 if (!txdr->buffer_info) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001434 e_err(probe, "Unable to allocate memory for the Tx descriptor "
1435 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 return -ENOMEM;
1437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 /* round up to nearest 4K */
1440
1441 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001442 txdr->size = ALIGN(txdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001444 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
1445 GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001446 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447setup_tx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 vfree(txdr->buffer_info);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001449 e_err(probe, "Unable to allocate memory for the Tx descriptor "
1450 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 return -ENOMEM;
1452 }
1453
Malli Chilakala26483452005-04-28 19:44:46 -07001454 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1456 void *olddesc = txdr->desc;
1457 dma_addr_t olddma = txdr->dma;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001458 e_err(tx_err, "txdr align check failed: %u bytes at %p\n",
Emil Tantilov675ad472010-04-27 14:02:58 +00001459 txdr->size, txdr->desc);
Malli Chilakala26483452005-04-28 19:44:46 -07001460 /* Try again, without freeing the previous */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001461 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size,
1462 &txdr->dma, GFP_KERNEL);
Malli Chilakala26483452005-04-28 19:44:46 -07001463 /* Failed allocation, critical failure */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001464 if (!txdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001465 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1466 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 goto setup_tx_desc_die;
1468 }
1469
1470 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1471 /* give up */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001472 dma_free_coherent(&pdev->dev, txdr->size, txdr->desc,
1473 txdr->dma);
1474 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1475 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001476 e_err(probe, "Unable to allocate aligned memory "
Emil Tantilov675ad472010-04-27 14:02:58 +00001477 "for the transmit descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 vfree(txdr->buffer_info);
1479 return -ENOMEM;
1480 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001481 /* Free old allocation, new allocation was successful */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001482 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1483 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
1485 }
1486 memset(txdr->desc, 0, txdr->size);
1487
1488 txdr->next_to_use = 0;
1489 txdr->next_to_clean = 0;
1490
1491 return 0;
1492}
1493
1494/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001495 * e1000_setup_all_tx_resources - wrapper to allocate Tx resources
1496 * (Descriptors) for all queues
1497 * @adapter: board private structure
1498 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001499 * Return 0 on success, negative on failure
1500 **/
1501
Joe Perches64798842008-07-11 15:17:02 -07001502int e1000_setup_all_tx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001503{
1504 int i, err = 0;
1505
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001506 for (i = 0; i < adapter->num_tx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001507 err = e1000_setup_tx_resources(adapter, &adapter->tx_ring[i]);
1508 if (err) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001509 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001510 for (i-- ; i >= 0; i--)
1511 e1000_free_tx_resources(adapter,
1512 &adapter->tx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001513 break;
1514 }
1515 }
1516
1517 return err;
1518}
1519
1520/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
1522 * @adapter: board private structure
1523 *
1524 * Configure the Tx unit of the MAC after a reset.
1525 **/
1526
Joe Perches64798842008-07-11 15:17:02 -07001527static void e1000_configure_tx(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Joe Perches406874a2008-04-03 10:06:32 -07001529 u64 tdba;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001530 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001531 u32 tdlen, tctl, tipg;
Joe Perches406874a2008-04-03 10:06:32 -07001532 u32 ipgr1, ipgr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 /* Setup the HW Tx Head and Tail descriptor pointers */
1535
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001536 switch (adapter->num_tx_queues) {
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04001537 case 1:
1538 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001539 tdba = adapter->tx_ring[0].dma;
1540 tdlen = adapter->tx_ring[0].count *
1541 sizeof(struct e1000_tx_desc);
Joe Perches1dc32912008-07-11 15:17:08 -07001542 ew32(TDLEN, tdlen);
1543 ew32(TDBAH, (tdba >> 32));
1544 ew32(TDBAL, (tdba & 0x00000000ffffffffULL));
1545 ew32(TDT, 0);
1546 ew32(TDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07001547 adapter->tx_ring[0].tdh = ((hw->mac_type >= e1000_82543) ? E1000_TDH : E1000_82542_TDH);
1548 adapter->tx_ring[0].tdt = ((hw->mac_type >= e1000_82543) ? E1000_TDT : E1000_82542_TDT);
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04001549 break;
1550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 /* Set the default values for the Tx Inter Packet Gap timer */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001553 if ((hw->media_type == e1000_media_type_fiber ||
Jesse Brandeburgd89b6c62006-12-15 10:38:32 +01001554 hw->media_type == e1000_media_type_internal_serdes))
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001555 tipg = DEFAULT_82543_TIPG_IPGT_FIBER;
1556 else
1557 tipg = DEFAULT_82543_TIPG_IPGT_COPPER;
1558
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001559 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 case e1000_82542_rev2_0:
1561 case e1000_82542_rev2_1:
1562 tipg = DEFAULT_82542_TIPG_IPGT;
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001563 ipgr1 = DEFAULT_82542_TIPG_IPGR1;
1564 ipgr2 = DEFAULT_82542_TIPG_IPGR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 break;
1566 default:
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001567 ipgr1 = DEFAULT_82543_TIPG_IPGR1;
1568 ipgr2 = DEFAULT_82543_TIPG_IPGR2;
1569 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001571 tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
1572 tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
Joe Perches1dc32912008-07-11 15:17:08 -07001573 ew32(TIPG, tipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 /* Set the Tx Interrupt Delay register */
1576
Joe Perches1dc32912008-07-11 15:17:08 -07001577 ew32(TIDV, adapter->tx_int_delay);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001578 if (hw->mac_type >= e1000_82540)
Joe Perches1dc32912008-07-11 15:17:08 -07001579 ew32(TADV, adapter->tx_abs_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 /* Program the Transmit Control Register */
1582
Joe Perches1dc32912008-07-11 15:17:08 -07001583 tctl = er32(TCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 tctl &= ~E1000_TCTL_CT;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001585 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
1587
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001588 e1000_config_collision_dist(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 /* Setup Transmit Descriptor Settings for eop descriptor */
Jesse Brandeburg6a042da2006-11-01 08:48:04 -08001591 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
1592
1593 /* only set IDE if we are delaying interrupts using the timers */
1594 if (adapter->tx_int_delay)
1595 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001597 if (hw->mac_type < e1000_82543)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 adapter->txd_cmd |= E1000_TXD_CMD_RPS;
1599 else
1600 adapter->txd_cmd |= E1000_TXD_CMD_RS;
1601
1602 /* Cache if we're 82544 running in PCI-X because we'll
1603 * need this to apply a workaround later in the send path. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001604 if (hw->mac_type == e1000_82544 &&
1605 hw->bus_type == e1000_bus_type_pcix)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 adapter->pcix_82544 = 1;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001607
Joe Perches1dc32912008-07-11 15:17:08 -07001608 ew32(TCTL, tctl);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610}
1611
1612/**
1613 * e1000_setup_rx_resources - allocate Rx resources (Descriptors)
1614 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001615 * @rxdr: rx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 *
1617 * Returns 0 on success, negative on failure
1618 **/
1619
Joe Perches64798842008-07-11 15:17:02 -07001620static int e1000_setup_rx_resources(struct e1000_adapter *adapter,
1621 struct e1000_rx_ring *rxdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 struct pci_dev *pdev = adapter->pdev;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001624 int size, desc_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 size = sizeof(struct e1000_buffer) * rxdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001627 rxdr->buffer_info = vzalloc(size);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001628 if (!rxdr->buffer_info) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001629 e_err(probe, "Unable to allocate memory for the Rx descriptor "
1630 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 return -ENOMEM;
1632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001634 desc_len = sizeof(struct e1000_rx_desc);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 /* Round up to nearest 4K */
1637
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001638 rxdr->size = rxdr->count * desc_len;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001639 rxdr->size = ALIGN(rxdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001641 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
1642 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001644 if (!rxdr->desc) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001645 e_err(probe, "Unable to allocate memory for the Rx descriptor "
1646 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647setup_rx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 vfree(rxdr->buffer_info);
1649 return -ENOMEM;
1650 }
1651
Malli Chilakala26483452005-04-28 19:44:46 -07001652 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1654 void *olddesc = rxdr->desc;
1655 dma_addr_t olddma = rxdr->dma;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001656 e_err(rx_err, "rxdr align check failed: %u bytes at %p\n",
Emil Tantilov675ad472010-04-27 14:02:58 +00001657 rxdr->size, rxdr->desc);
Malli Chilakala26483452005-04-28 19:44:46 -07001658 /* Try again, without freeing the previous */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001659 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size,
1660 &rxdr->dma, GFP_KERNEL);
Malli Chilakala26483452005-04-28 19:44:46 -07001661 /* Failed allocation, critical failure */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001662 if (!rxdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001663 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1664 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001665 e_err(probe, "Unable to allocate memory for the Rx "
1666 "descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 goto setup_rx_desc_die;
1668 }
1669
1670 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1671 /* give up */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001672 dma_free_coherent(&pdev->dev, rxdr->size, rxdr->desc,
1673 rxdr->dma);
1674 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1675 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001676 e_err(probe, "Unable to allocate aligned memory for "
1677 "the Rx descriptor ring\n");
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001678 goto setup_rx_desc_die;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001680 /* Free old allocation, new allocation was successful */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001681 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1682 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 }
1684 }
1685 memset(rxdr->desc, 0, rxdr->size);
1686
1687 rxdr->next_to_clean = 0;
1688 rxdr->next_to_use = 0;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00001689 rxdr->rx_skb_top = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 return 0;
1692}
1693
1694/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001695 * e1000_setup_all_rx_resources - wrapper to allocate Rx resources
1696 * (Descriptors) for all queues
1697 * @adapter: board private structure
1698 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001699 * Return 0 on success, negative on failure
1700 **/
1701
Joe Perches64798842008-07-11 15:17:02 -07001702int e1000_setup_all_rx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001703{
1704 int i, err = 0;
1705
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001706 for (i = 0; i < adapter->num_rx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001707 err = e1000_setup_rx_resources(adapter, &adapter->rx_ring[i]);
1708 if (err) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001709 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001710 for (i-- ; i >= 0; i--)
1711 e1000_free_rx_resources(adapter,
1712 &adapter->rx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001713 break;
1714 }
1715 }
1716
1717 return err;
1718}
1719
1720/**
Malli Chilakala26483452005-04-28 19:44:46 -07001721 * e1000_setup_rctl - configure the receive control registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 * @adapter: Board private structure
1723 **/
Joe Perches64798842008-07-11 15:17:02 -07001724static void e1000_setup_rctl(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Joe Perches1dc32912008-07-11 15:17:08 -07001726 struct e1000_hw *hw = &adapter->hw;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001727 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Joe Perches1dc32912008-07-11 15:17:08 -07001729 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
1731 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
1732
1733 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
1734 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001735 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Joe Perches1dc32912008-07-11 15:17:08 -07001737 if (hw->tbi_compatibility_on == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 rctl |= E1000_RCTL_SBP;
1739 else
1740 rctl &= ~E1000_RCTL_SBP;
1741
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001742 if (adapter->netdev->mtu <= ETH_DATA_LEN)
1743 rctl &= ~E1000_RCTL_LPE;
1744 else
1745 rctl |= E1000_RCTL_LPE;
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 /* Setup buffer sizes */
Auke Kok9e2feac2006-04-14 19:05:18 -07001748 rctl &= ~E1000_RCTL_SZ_4096;
1749 rctl |= E1000_RCTL_BSEX;
1750 switch (adapter->rx_buffer_len) {
Jeff Kirshera1415ee2006-02-28 20:24:07 -08001751 case E1000_RXBUFFER_2048:
1752 default:
1753 rctl |= E1000_RCTL_SZ_2048;
1754 rctl &= ~E1000_RCTL_BSEX;
1755 break;
1756 case E1000_RXBUFFER_4096:
1757 rctl |= E1000_RCTL_SZ_4096;
1758 break;
1759 case E1000_RXBUFFER_8192:
1760 rctl |= E1000_RCTL_SZ_8192;
1761 break;
1762 case E1000_RXBUFFER_16384:
1763 rctl |= E1000_RCTL_SZ_16384;
1764 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001765 }
1766
Joe Perches1dc32912008-07-11 15:17:08 -07001767 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
1770/**
1771 * e1000_configure_rx - Configure 8254x Receive Unit after Reset
1772 * @adapter: board private structure
1773 *
1774 * Configure the Rx unit of the MAC after a reset.
1775 **/
1776
Joe Perches64798842008-07-11 15:17:02 -07001777static void e1000_configure_rx(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
Joe Perches406874a2008-04-03 10:06:32 -07001779 u64 rdba;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001780 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001781 u32 rdlen, rctl, rxcsum;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001782
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00001783 if (adapter->netdev->mtu > ETH_DATA_LEN) {
1784 rdlen = adapter->rx_ring[0].count *
1785 sizeof(struct e1000_rx_desc);
1786 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
1787 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
1788 } else {
1789 rdlen = adapter->rx_ring[0].count *
1790 sizeof(struct e1000_rx_desc);
1791 adapter->clean_rx = e1000_clean_rx_irq;
1792 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
1793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
1795 /* disable receives while setting up the descriptors */
Joe Perches1dc32912008-07-11 15:17:08 -07001796 rctl = er32(RCTL);
1797 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
1799 /* set the Receive Delay Timer Register */
Joe Perches1dc32912008-07-11 15:17:08 -07001800 ew32(RDTR, adapter->rx_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001802 if (hw->mac_type >= e1000_82540) {
Joe Perches1dc32912008-07-11 15:17:08 -07001803 ew32(RADV, adapter->rx_abs_int_delay);
Jesse Brandeburg835bb122006-11-01 08:48:13 -08001804 if (adapter->itr_setting != 0)
Joe Perches1dc32912008-07-11 15:17:08 -07001805 ew32(ITR, 1000000000 / (adapter->itr * 256));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 }
1807
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001808 /* Setup the HW Rx Head and Tail Descriptor Pointers and
1809 * the Base and Length of the Rx Descriptor Ring */
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001810 switch (adapter->num_rx_queues) {
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04001811 case 1:
1812 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001813 rdba = adapter->rx_ring[0].dma;
Joe Perches1dc32912008-07-11 15:17:08 -07001814 ew32(RDLEN, rdlen);
1815 ew32(RDBAH, (rdba >> 32));
1816 ew32(RDBAL, (rdba & 0x00000000ffffffffULL));
1817 ew32(RDT, 0);
1818 ew32(RDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07001819 adapter->rx_ring[0].rdh = ((hw->mac_type >= e1000_82543) ? E1000_RDH : E1000_82542_RDH);
1820 adapter->rx_ring[0].rdt = ((hw->mac_type >= e1000_82543) ? E1000_RDT : E1000_82542_RDT);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001821 break;
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04001822 }
1823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 /* Enable 82543 Receive Checksum Offload for TCP and UDP */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001825 if (hw->mac_type >= e1000_82543) {
Joe Perches1dc32912008-07-11 15:17:08 -07001826 rxcsum = er32(RXCSUM);
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001827 if (adapter->rx_csum)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001828 rxcsum |= E1000_RXCSUM_TUOFL;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001829 else
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001830 /* don't need to clear IPPCSE as it defaults to 0 */
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001831 rxcsum &= ~E1000_RXCSUM_TUOFL;
Joe Perches1dc32912008-07-11 15:17:08 -07001832 ew32(RXCSUM, rxcsum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 }
1834
1835 /* Enable Receives */
Joe Perches1dc32912008-07-11 15:17:08 -07001836 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837}
1838
1839/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001840 * e1000_free_tx_resources - Free Tx Resources per Queue
1841 * @adapter: board private structure
1842 * @tx_ring: Tx descriptor ring for a specific queue
1843 *
1844 * Free all transmit software resources
1845 **/
1846
Joe Perches64798842008-07-11 15:17:02 -07001847static void e1000_free_tx_resources(struct e1000_adapter *adapter,
1848 struct e1000_tx_ring *tx_ring)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001849{
1850 struct pci_dev *pdev = adapter->pdev;
1851
1852 e1000_clean_tx_ring(adapter, tx_ring);
1853
1854 vfree(tx_ring->buffer_info);
1855 tx_ring->buffer_info = NULL;
1856
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001857 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
1858 tx_ring->dma);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001859
1860 tx_ring->desc = NULL;
1861}
1862
1863/**
1864 * e1000_free_all_tx_resources - Free Tx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 * @adapter: board private structure
1866 *
1867 * Free all transmit software resources
1868 **/
1869
Joe Perches64798842008-07-11 15:17:02 -07001870void e1000_free_all_tx_resources(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001872 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001874 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001875 e1000_free_tx_resources(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}
1877
Joe Perches64798842008-07-11 15:17:02 -07001878static void e1000_unmap_and_free_tx_resource(struct e1000_adapter *adapter,
1879 struct e1000_buffer *buffer_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
Alexander Duyck602c0552009-12-02 16:46:00 +00001881 if (buffer_info->dma) {
1882 if (buffer_info->mapped_as_page)
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001883 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
1884 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck602c0552009-12-02 16:46:00 +00001885 else
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001886 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
Alexander Duyck602c0552009-12-02 16:46:00 +00001887 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001888 DMA_TO_DEVICE);
Alexander Duyck602c0552009-12-02 16:46:00 +00001889 buffer_info->dma = 0;
1890 }
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001891 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 dev_kfree_skb_any(buffer_info->skb);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001893 buffer_info->skb = NULL;
1894 }
Alexander Duyck37e73df2009-03-25 21:58:45 +00001895 buffer_info->time_stamp = 0;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001896 /* buffer_info must be completely set up in the transmit path */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897}
1898
1899/**
1900 * e1000_clean_tx_ring - Free Tx Buffers
1901 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001902 * @tx_ring: ring to be cleaned
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 **/
1904
Joe Perches64798842008-07-11 15:17:02 -07001905static void e1000_clean_tx_ring(struct e1000_adapter *adapter,
1906 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
Joe Perches1dc32912008-07-11 15:17:08 -07001908 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 struct e1000_buffer *buffer_info;
1910 unsigned long size;
1911 unsigned int i;
1912
1913 /* Free all the Tx ring sk_buffs */
1914
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001915 for (i = 0; i < tx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 buffer_info = &tx_ring->buffer_info[i];
1917 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
1918 }
1919
1920 size = sizeof(struct e1000_buffer) * tx_ring->count;
1921 memset(tx_ring->buffer_info, 0, size);
1922
1923 /* Zero out the descriptor ring */
1924
1925 memset(tx_ring->desc, 0, tx_ring->size);
1926
1927 tx_ring->next_to_use = 0;
1928 tx_ring->next_to_clean = 0;
Jeff Kirsherfd803242005-12-13 00:06:22 -05001929 tx_ring->last_tx_tso = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Joe Perches1dc32912008-07-11 15:17:08 -07001931 writel(0, hw->hw_addr + tx_ring->tdh);
1932 writel(0, hw->hw_addr + tx_ring->tdt);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001933}
1934
1935/**
1936 * e1000_clean_all_tx_rings - Free Tx Buffers for all queues
1937 * @adapter: board private structure
1938 **/
1939
Joe Perches64798842008-07-11 15:17:02 -07001940static void e1000_clean_all_tx_rings(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001941{
1942 int i;
1943
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001944 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001945 e1000_clean_tx_ring(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
1947
1948/**
1949 * e1000_free_rx_resources - Free Rx Resources
1950 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001951 * @rx_ring: ring to clean the resources from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 *
1953 * Free all receive software resources
1954 **/
1955
Joe Perches64798842008-07-11 15:17:02 -07001956static void e1000_free_rx_resources(struct e1000_adapter *adapter,
1957 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 struct pci_dev *pdev = adapter->pdev;
1960
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001961 e1000_clean_rx_ring(adapter, rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963 vfree(rx_ring->buffer_info);
1964 rx_ring->buffer_info = NULL;
1965
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001966 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
1967 rx_ring->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 rx_ring->desc = NULL;
1970}
1971
1972/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001973 * e1000_free_all_rx_resources - Free Rx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001975 *
1976 * Free all receive software resources
1977 **/
1978
Joe Perches64798842008-07-11 15:17:02 -07001979void e1000_free_all_rx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001980{
1981 int i;
1982
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001983 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001984 e1000_free_rx_resources(adapter, &adapter->rx_ring[i]);
1985}
1986
1987/**
1988 * e1000_clean_rx_ring - Free Rx Buffers per Queue
1989 * @adapter: board private structure
1990 * @rx_ring: ring to free buffers from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 **/
1992
Joe Perches64798842008-07-11 15:17:02 -07001993static void e1000_clean_rx_ring(struct e1000_adapter *adapter,
1994 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
Joe Perches1dc32912008-07-11 15:17:08 -07001996 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 struct e1000_buffer *buffer_info;
1998 struct pci_dev *pdev = adapter->pdev;
1999 unsigned long size;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07002000 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002 /* Free all the Rx ring sk_buffs */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002003 for (i = 0; i < rx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 buffer_info = &rx_ring->buffer_info[i];
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002005 if (buffer_info->dma &&
2006 adapter->clean_rx == e1000_clean_rx_irq) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002007 dma_unmap_single(&pdev->dev, buffer_info->dma,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002008 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002009 DMA_FROM_DEVICE);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002010 } else if (buffer_info->dma &&
2011 adapter->clean_rx == e1000_clean_jumbo_rx_irq) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002012 dma_unmap_page(&pdev->dev, buffer_info->dma,
2013 buffer_info->length,
2014 DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002017 buffer_info->dma = 0;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002018 if (buffer_info->page) {
2019 put_page(buffer_info->page);
2020 buffer_info->page = NULL;
2021 }
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002022 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 dev_kfree_skb(buffer_info->skb);
2024 buffer_info->skb = NULL;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08002025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 }
2027
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002028 /* there also may be some cached data from a chained receive */
2029 if (rx_ring->rx_skb_top) {
2030 dev_kfree_skb(rx_ring->rx_skb_top);
2031 rx_ring->rx_skb_top = NULL;
2032 }
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 size = sizeof(struct e1000_buffer) * rx_ring->count;
2035 memset(rx_ring->buffer_info, 0, size);
2036
2037 /* Zero out the descriptor ring */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 memset(rx_ring->desc, 0, rx_ring->size);
2039
2040 rx_ring->next_to_clean = 0;
2041 rx_ring->next_to_use = 0;
2042
Joe Perches1dc32912008-07-11 15:17:08 -07002043 writel(0, hw->hw_addr + rx_ring->rdh);
2044 writel(0, hw->hw_addr + rx_ring->rdt);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002045}
2046
2047/**
2048 * e1000_clean_all_rx_rings - Free Rx Buffers for all queues
2049 * @adapter: board private structure
2050 **/
2051
Joe Perches64798842008-07-11 15:17:02 -07002052static void e1000_clean_all_rx_rings(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002053{
2054 int i;
2055
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002056 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002057 e1000_clean_rx_ring(adapter, &adapter->rx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}
2059
2060/* The 82542 2.0 (revision 2) needs to have the receive unit in reset
2061 * and memory write and invalidate disabled for certain operations
2062 */
Joe Perches64798842008-07-11 15:17:02 -07002063static void e1000_enter_82542_rst(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
Joe Perches1dc32912008-07-11 15:17:08 -07002065 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002067 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Joe Perches1dc32912008-07-11 15:17:08 -07002069 e1000_pci_clear_mwi(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Joe Perches1dc32912008-07-11 15:17:08 -07002071 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 rctl |= E1000_RCTL_RST;
Joe Perches1dc32912008-07-11 15:17:08 -07002073 ew32(RCTL, rctl);
2074 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 mdelay(5);
2076
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002077 if (netif_running(netdev))
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002078 e1000_clean_all_rx_rings(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079}
2080
Joe Perches64798842008-07-11 15:17:02 -07002081static void e1000_leave_82542_rst(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
Joe Perches1dc32912008-07-11 15:17:08 -07002083 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002085 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Joe Perches1dc32912008-07-11 15:17:08 -07002087 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 rctl &= ~E1000_RCTL_RST;
Joe Perches1dc32912008-07-11 15:17:08 -07002089 ew32(RCTL, rctl);
2090 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 mdelay(5);
2092
Joe Perches1dc32912008-07-11 15:17:08 -07002093 if (hw->pci_cmd_word & PCI_COMMAND_INVALIDATE)
2094 e1000_pci_set_mwi(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002096 if (netif_running(netdev)) {
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002097 /* No need to loop, because 82542 supports only 1 queue */
2098 struct e1000_rx_ring *ring = &adapter->rx_ring[0];
Jesse Brandeburg7c4d3362006-01-18 13:01:45 -08002099 e1000_configure_rx(adapter);
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002100 adapter->alloc_rx_buf(adapter, ring, E1000_DESC_UNUSED(ring));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 }
2102}
2103
2104/**
2105 * e1000_set_mac - Change the Ethernet Address of the NIC
2106 * @netdev: network interface device structure
2107 * @p: pointer to an address structure
2108 *
2109 * Returns 0 on success, negative on failure
2110 **/
2111
Joe Perches64798842008-07-11 15:17:02 -07002112static int e1000_set_mac(struct net_device *netdev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002114 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07002115 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 struct sockaddr *addr = p;
2117
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002118 if (!is_valid_ether_addr(addr->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return -EADDRNOTAVAIL;
2120
2121 /* 82542 2.0 needs to be in reset to write receive address registers */
2122
Joe Perches1dc32912008-07-11 15:17:08 -07002123 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 e1000_enter_82542_rst(adapter);
2125
2126 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Joe Perches1dc32912008-07-11 15:17:08 -07002127 memcpy(hw->mac_addr, addr->sa_data, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Joe Perches1dc32912008-07-11 15:17:08 -07002129 e1000_rar_set(hw, hw->mac_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Joe Perches1dc32912008-07-11 15:17:08 -07002131 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 e1000_leave_82542_rst(adapter);
2133
2134 return 0;
2135}
2136
2137/**
Patrick McHardydb0ce502007-11-13 20:54:59 -08002138 * e1000_set_rx_mode - Secondary Unicast, Multicast and Promiscuous mode set
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 * @netdev: network interface device structure
2140 *
Patrick McHardydb0ce502007-11-13 20:54:59 -08002141 * The set_rx_mode entry point is called whenever the unicast or multicast
2142 * address lists or the network interface flags are updated. This routine is
2143 * responsible for configuring the hardware for proper unicast, multicast,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 * promiscuous mode, and all-multi behavior.
2145 **/
2146
Joe Perches64798842008-07-11 15:17:02 -07002147static void e1000_set_rx_mode(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002149 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 struct e1000_hw *hw = &adapter->hw;
Jiri Pirkoccffad22009-05-22 23:22:17 +00002151 struct netdev_hw_addr *ha;
2152 bool use_uc = false;
Joe Perches406874a2008-04-03 10:06:32 -07002153 u32 rctl;
2154 u32 hash_value;
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002155 int i, rar_entries = E1000_RAR_ENTRIES;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002156 int mta_reg_count = E1000_NUM_MTA_REGISTERS;
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002157 u32 *mcarray = kcalloc(mta_reg_count, sizeof(u32), GFP_ATOMIC);
2158
2159 if (!mcarray) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07002160 e_err(probe, "memory allocation failed\n");
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002161 return;
2162 }
Auke Kokcd94dd02006-06-27 09:08:22 -07002163
Malli Chilakala26483452005-04-28 19:44:46 -07002164 /* Check for Promiscuous and All Multicast modes */
2165
Joe Perches1dc32912008-07-11 15:17:08 -07002166 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002168 if (netdev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Patrick McHardy746b9f02008-07-16 20:15:45 -07002170 rctl &= ~E1000_RCTL_VFE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 } else {
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002172 if (netdev->flags & IFF_ALLMULTI)
Patrick McHardy746b9f02008-07-16 20:15:45 -07002173 rctl |= E1000_RCTL_MPE;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002174 else
Patrick McHardy746b9f02008-07-16 20:15:45 -07002175 rctl &= ~E1000_RCTL_MPE;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002176 /* Enable VLAN filter if there is a VLAN */
2177 if (adapter->vlgrp)
2178 rctl |= E1000_RCTL_VFE;
Patrick McHardydb0ce502007-11-13 20:54:59 -08002179 }
2180
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08002181 if (netdev_uc_count(netdev) > rar_entries - 1) {
Patrick McHardydb0ce502007-11-13 20:54:59 -08002182 rctl |= E1000_RCTL_UPE;
2183 } else if (!(netdev->flags & IFF_PROMISC)) {
2184 rctl &= ~E1000_RCTL_UPE;
Jiri Pirkoccffad22009-05-22 23:22:17 +00002185 use_uc = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 }
2187
Joe Perches1dc32912008-07-11 15:17:08 -07002188 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190 /* 82542 2.0 needs to be in reset to write receive address registers */
2191
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002192 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 e1000_enter_82542_rst(adapter);
2194
Patrick McHardydb0ce502007-11-13 20:54:59 -08002195 /* load the first 14 addresses into the exact filters 1-14. Unicast
2196 * addresses take precedence to avoid disabling unicast filtering
2197 * when possible.
2198 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 * RAR 0 is used for the station MAC adddress
2200 * if there are not 14 addresses, go ahead and clear the filters
2201 */
Jiri Pirkoccffad22009-05-22 23:22:17 +00002202 i = 1;
2203 if (use_uc)
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08002204 netdev_for_each_uc_addr(ha, netdev) {
Jiri Pirkoccffad22009-05-22 23:22:17 +00002205 if (i == rar_entries)
2206 break;
2207 e1000_rar_set(hw, ha->addr, i++);
2208 }
2209
Jiri Pirko22bedad2010-04-01 21:22:57 +00002210 netdev_for_each_mc_addr(ha, netdev) {
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002211 if (i == rar_entries) {
2212 /* load any remaining addresses into the hash table */
2213 u32 hash_reg, hash_bit, mta;
Jiri Pirko22bedad2010-04-01 21:22:57 +00002214 hash_value = e1000_hash_mc_addr(hw, ha->addr);
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002215 hash_reg = (hash_value >> 5) & 0x7F;
2216 hash_bit = hash_value & 0x1F;
2217 mta = (1 << hash_bit);
2218 mcarray[hash_reg] |= mta;
Jiri Pirko10886af2010-02-23 01:19:22 -08002219 } else {
Jiri Pirko22bedad2010-04-01 21:22:57 +00002220 e1000_rar_set(hw, ha->addr, i++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 }
2222 }
2223
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002224 for (; i < rar_entries; i++) {
2225 E1000_WRITE_REG_ARRAY(hw, RA, i << 1, 0);
2226 E1000_WRITE_FLUSH();
2227 E1000_WRITE_REG_ARRAY(hw, RA, (i << 1) + 1, 0);
2228 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 }
2230
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002231 /* write the hash table completely, write from bottom to avoid
2232 * both stupid write combining chipsets, and flushing each write */
2233 for (i = mta_reg_count - 1; i >= 0 ; i--) {
2234 /*
2235 * If we are on an 82544 has an errata where writing odd
2236 * offsets overwrites the previous even offset, but writing
2237 * backwards over the range solves the issue by always
2238 * writing the odd offset first
2239 */
2240 E1000_WRITE_REG_ARRAY(hw, MTA, i, mcarray[i]);
2241 }
2242 E1000_WRITE_FLUSH();
2243
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002244 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 e1000_leave_82542_rst(adapter);
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002246
2247 kfree(mcarray);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248}
2249
2250/* Need to wait a few seconds after link up to get diagnostic information from
2251 * the phy */
2252
Joe Perches64798842008-07-11 15:17:02 -07002253static void e1000_update_phy_info(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254{
Joe Perchese982f172008-07-11 15:17:18 -07002255 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00002256 schedule_work(&adapter->phy_info_task);
2257}
2258
2259static void e1000_update_phy_info_task(struct work_struct *work)
2260{
2261 struct e1000_adapter *adapter = container_of(work,
2262 struct e1000_adapter,
2263 phy_info_task);
Joe Perches1dc32912008-07-11 15:17:08 -07002264 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002265
2266 rtnl_lock();
Joe Perches1dc32912008-07-11 15:17:08 -07002267 e1000_phy_get_info(hw, &adapter->phy_info);
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002268 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269}
2270
2271/**
2272 * e1000_82547_tx_fifo_stall - Timer Call-back
2273 * @data: pointer to adapter cast into an unsigned long
2274 **/
Joe Perches64798842008-07-11 15:17:02 -07002275static void e1000_82547_tx_fifo_stall(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
Joe Perchese982f172008-07-11 15:17:18 -07002277 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00002278 schedule_work(&adapter->fifo_stall_task);
2279}
2280
2281/**
2282 * e1000_82547_tx_fifo_stall_task - task to complete work
2283 * @work: work struct contained inside adapter struct
2284 **/
2285static void e1000_82547_tx_fifo_stall_task(struct work_struct *work)
2286{
2287 struct e1000_adapter *adapter = container_of(work,
2288 struct e1000_adapter,
2289 fifo_stall_task);
Joe Perches1dc32912008-07-11 15:17:08 -07002290 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002292 u32 tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002294 rtnl_lock();
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002295 if (atomic_read(&adapter->tx_fifo_stall)) {
Joe Perches1dc32912008-07-11 15:17:08 -07002296 if ((er32(TDT) == er32(TDH)) &&
2297 (er32(TDFT) == er32(TDFH)) &&
2298 (er32(TDFTS) == er32(TDFHS))) {
2299 tctl = er32(TCTL);
2300 ew32(TCTL, tctl & ~E1000_TCTL_EN);
2301 ew32(TDFT, adapter->tx_head_addr);
2302 ew32(TDFH, adapter->tx_head_addr);
2303 ew32(TDFTS, adapter->tx_head_addr);
2304 ew32(TDFHS, adapter->tx_head_addr);
2305 ew32(TCTL, tctl);
2306 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 adapter->tx_fifo_head = 0;
2309 atomic_set(&adapter->tx_fifo_stall, 0);
2310 netif_wake_queue(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002311 } else if (!test_bit(__E1000_DOWN, &adapter->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 mod_timer(&adapter->tx_fifo_stall_timer, jiffies + 1);
2313 }
2314 }
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002315 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316}
2317
Nick Nunleyb5481922010-02-03 14:49:28 +00002318bool e1000_has_link(struct e1000_adapter *adapter)
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002319{
2320 struct e1000_hw *hw = &adapter->hw;
2321 bool link_active = false;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002322
2323 /* get_link_status is set on LSC (link status) interrupt or
2324 * rx sequence error interrupt. get_link_status will stay
2325 * false until the e1000_check_for_link establishes link
2326 * for copper adapters ONLY
2327 */
2328 switch (hw->media_type) {
2329 case e1000_media_type_copper:
2330 if (hw->get_link_status) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002331 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002332 link_active = !hw->get_link_status;
2333 } else {
2334 link_active = true;
2335 }
2336 break;
2337 case e1000_media_type_fiber:
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002338 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002339 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
2340 break;
2341 case e1000_media_type_internal_serdes:
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002342 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002343 link_active = hw->serdes_has_link;
2344 break;
2345 default:
2346 break;
2347 }
2348
2349 return link_active;
2350}
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352/**
2353 * e1000_watchdog - Timer Call-back
2354 * @data: pointer to adapter cast into an unsigned long
2355 **/
Joe Perches64798842008-07-11 15:17:02 -07002356static void e1000_watchdog(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357{
Joe Perchese982f172008-07-11 15:17:18 -07002358 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Joe Perches1dc32912008-07-11 15:17:08 -07002359 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 struct net_device *netdev = adapter->netdev;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002361 struct e1000_tx_ring *txdr = adapter->tx_ring;
Joe Perches406874a2008-04-03 10:06:32 -07002362 u32 link, tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002364 link = e1000_has_link(adapter);
2365 if ((netif_carrier_ok(netdev)) && link)
2366 goto link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002368 if (link) {
2369 if (!netif_carrier_ok(netdev)) {
Joe Perches406874a2008-04-03 10:06:32 -07002370 u32 ctrl;
Joe Perchesc3033b02008-03-21 11:06:25 -07002371 bool txb2b = true;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002372 /* update snapshot of PHY registers on LSC */
Joe Perches1dc32912008-07-11 15:17:08 -07002373 e1000_get_speed_and_duplex(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 &adapter->link_speed,
2375 &adapter->link_duplex);
2376
Joe Perches1dc32912008-07-11 15:17:08 -07002377 ctrl = er32(CTRL);
Emil Tantilov675ad472010-04-27 14:02:58 +00002378 pr_info("%s NIC Link is Up %d Mbps %s, "
2379 "Flow Control: %s\n",
2380 netdev->name,
2381 adapter->link_speed,
2382 adapter->link_duplex == FULL_DUPLEX ?
2383 "Full Duplex" : "Half Duplex",
2384 ((ctrl & E1000_CTRL_TFCE) && (ctrl &
2385 E1000_CTRL_RFCE)) ? "RX/TX" : ((ctrl &
2386 E1000_CTRL_RFCE) ? "RX" : ((ctrl &
2387 E1000_CTRL_TFCE) ? "TX" : "None")));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Emil Tantilov39ca5f02010-03-26 11:25:58 +00002389 /* adjust timeout factor according to speed/duplex */
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002390 adapter->tx_timeout_factor = 1;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002391 switch (adapter->link_speed) {
2392 case SPEED_10:
Joe Perchesc3033b02008-03-21 11:06:25 -07002393 txb2b = false;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002394 adapter->tx_timeout_factor = 16;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002395 break;
2396 case SPEED_100:
Joe Perchesc3033b02008-03-21 11:06:25 -07002397 txb2b = false;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002398 /* maybe add some timeout factor ? */
2399 break;
2400 }
2401
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002402 /* enable transmits in the hardware */
Joe Perches1dc32912008-07-11 15:17:08 -07002403 tctl = er32(TCTL);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002404 tctl |= E1000_TCTL_EN;
Joe Perches1dc32912008-07-11 15:17:08 -07002405 ew32(TCTL, tctl);
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002406
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 netif_carrier_on(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002408 if (!test_bit(__E1000_DOWN, &adapter->flags))
2409 mod_timer(&adapter->phy_info_timer,
2410 round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 adapter->smartspeed = 0;
2412 }
2413 } else {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002414 if (netif_carrier_ok(netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 adapter->link_speed = 0;
2416 adapter->link_duplex = 0;
Emil Tantilov675ad472010-04-27 14:02:58 +00002417 pr_info("%s NIC Link is Down\n",
2418 netdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 netif_carrier_off(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002420
2421 if (!test_bit(__E1000_DOWN, &adapter->flags))
2422 mod_timer(&adapter->phy_info_timer,
2423 round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 }
2425
2426 e1000_smartspeed(adapter);
2427 }
2428
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002429link_up:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 e1000_update_stats(adapter);
2431
Joe Perches1dc32912008-07-11 15:17:08 -07002432 hw->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 adapter->tpt_old = adapter->stats.tpt;
Joe Perches1dc32912008-07-11 15:17:08 -07002434 hw->collision_delta = adapter->stats.colc - adapter->colc_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 adapter->colc_old = adapter->stats.colc;
2436
2437 adapter->gorcl = adapter->stats.gorcl - adapter->gorcl_old;
2438 adapter->gorcl_old = adapter->stats.gorcl;
2439 adapter->gotcl = adapter->stats.gotcl - adapter->gotcl_old;
2440 adapter->gotcl_old = adapter->stats.gotcl;
2441
Joe Perches1dc32912008-07-11 15:17:08 -07002442 e1000_update_adaptive(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002444 if (!netif_carrier_ok(netdev)) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002445 if (E1000_DESC_UNUSED(txdr) + 1 < txdr->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 /* We've lost link, so the controller stops DMA,
2447 * but we've got queued Tx work that's never going
2448 * to get done, so reset controller to flush Tx.
2449 * (Do the reset outside of interrupt context). */
Jeff Kirsher87041632006-03-02 18:21:24 -08002450 adapter->tx_timeout_count++;
2451 schedule_work(&adapter->reset_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00002452 /* return immediately since reset is imminent */
2453 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 }
2455 }
2456
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00002457 /* Simple mode for Interrupt Throttle Rate (ITR) */
2458 if (hw->mac_type >= e1000_82540 && adapter->itr_setting == 4) {
2459 /*
2460 * Symmetric Tx/Rx gets a reduced ITR=2000;
2461 * Total asymmetrical Tx or Rx gets ITR=8000;
2462 * everyone else is between 2000-8000.
2463 */
2464 u32 goc = (adapter->gotcl + adapter->gorcl) / 10000;
2465 u32 dif = (adapter->gotcl > adapter->gorcl ?
2466 adapter->gotcl - adapter->gorcl :
2467 adapter->gorcl - adapter->gotcl) / 10000;
2468 u32 itr = goc > 0 ? (dif * 6000 / goc + 2000) : 8000;
2469
2470 ew32(ITR, 1000000000 / (itr * 256));
2471 }
2472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 /* Cause software interrupt to ensure rx ring is cleaned */
Joe Perches1dc32912008-07-11 15:17:08 -07002474 ew32(ICS, E1000_ICS_RXDMT0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Malli Chilakala26483452005-04-28 19:44:46 -07002476 /* Force detection of hung controller every watchdog period */
Joe Perchesc3033b02008-03-21 11:06:25 -07002477 adapter->detect_tx_hung = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479 /* Reset the timer */
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002480 if (!test_bit(__E1000_DOWN, &adapter->flags))
2481 mod_timer(&adapter->watchdog_timer,
2482 round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483}
2484
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002485enum latency_range {
2486 lowest_latency = 0,
2487 low_latency = 1,
2488 bulk_latency = 2,
2489 latency_invalid = 255
2490};
2491
2492/**
2493 * e1000_update_itr - update the dynamic ITR value based on statistics
Jesse Brandeburg8fce4732009-09-25 12:18:41 +00002494 * @adapter: pointer to adapter
2495 * @itr_setting: current adapter->itr
2496 * @packets: the number of packets during this measurement interval
2497 * @bytes: the number of bytes during this measurement interval
2498 *
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002499 * Stores a new ITR value based on packets and byte
2500 * counts during the last interrupt. The advantage of per interrupt
2501 * computation is faster updates and more accurate ITR for the current
2502 * traffic pattern. Constants in this function were computed
2503 * based on theoretical maximum wire speed and thresholds were set based
2504 * on testing data as well as attempting to minimize response time
2505 * while increasing bulk throughput.
2506 * this functionality is controlled by the InterruptThrottleRate module
2507 * parameter (see e1000_param.c)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002508 **/
2509static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
Joe Perches64798842008-07-11 15:17:02 -07002510 u16 itr_setting, int packets, int bytes)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002511{
2512 unsigned int retval = itr_setting;
2513 struct e1000_hw *hw = &adapter->hw;
2514
2515 if (unlikely(hw->mac_type < e1000_82540))
2516 goto update_itr_done;
2517
2518 if (packets == 0)
2519 goto update_itr_done;
2520
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002521 switch (itr_setting) {
2522 case lowest_latency:
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002523 /* jumbo frames get bulk treatment*/
2524 if (bytes/packets > 8000)
2525 retval = bulk_latency;
2526 else if ((packets < 5) && (bytes > 512))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002527 retval = low_latency;
2528 break;
2529 case low_latency: /* 50 usec aka 20000 ints/s */
2530 if (bytes > 10000) {
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002531 /* jumbo frames need bulk latency setting */
2532 if (bytes/packets > 8000)
2533 retval = bulk_latency;
2534 else if ((packets < 10) || ((bytes/packets) > 1200))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002535 retval = bulk_latency;
2536 else if ((packets > 35))
2537 retval = lowest_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002538 } else if (bytes/packets > 2000)
2539 retval = bulk_latency;
2540 else if (packets <= 2 && bytes < 512)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002541 retval = lowest_latency;
2542 break;
2543 case bulk_latency: /* 250 usec aka 4000 ints/s */
2544 if (bytes > 25000) {
2545 if (packets > 35)
2546 retval = low_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002547 } else if (bytes < 6000) {
2548 retval = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002549 }
2550 break;
2551 }
2552
2553update_itr_done:
2554 return retval;
2555}
2556
2557static void e1000_set_itr(struct e1000_adapter *adapter)
2558{
2559 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07002560 u16 current_itr;
2561 u32 new_itr = adapter->itr;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002562
2563 if (unlikely(hw->mac_type < e1000_82540))
2564 return;
2565
2566 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2567 if (unlikely(adapter->link_speed != SPEED_1000)) {
2568 current_itr = 0;
2569 new_itr = 4000;
2570 goto set_itr_now;
2571 }
2572
2573 adapter->tx_itr = e1000_update_itr(adapter,
2574 adapter->tx_itr,
2575 adapter->total_tx_packets,
2576 adapter->total_tx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002577 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2578 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2579 adapter->tx_itr = low_latency;
2580
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002581 adapter->rx_itr = e1000_update_itr(adapter,
2582 adapter->rx_itr,
2583 adapter->total_rx_packets,
2584 adapter->total_rx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002585 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2586 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2587 adapter->rx_itr = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002588
2589 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2590
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002591 switch (current_itr) {
2592 /* counts and packets in update_itr are dependent on these numbers */
2593 case lowest_latency:
2594 new_itr = 70000;
2595 break;
2596 case low_latency:
2597 new_itr = 20000; /* aka hwitr = ~200 */
2598 break;
2599 case bulk_latency:
2600 new_itr = 4000;
2601 break;
2602 default:
2603 break;
2604 }
2605
2606set_itr_now:
2607 if (new_itr != adapter->itr) {
2608 /* this attempts to bias the interrupt rate towards Bulk
2609 * by adding intermediate steps when interrupt rate is
2610 * increasing */
2611 new_itr = new_itr > adapter->itr ?
2612 min(adapter->itr + (new_itr >> 2), new_itr) :
2613 new_itr;
2614 adapter->itr = new_itr;
Joe Perches1dc32912008-07-11 15:17:08 -07002615 ew32(ITR, 1000000000 / (new_itr * 256));
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002616 }
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002617}
2618
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619#define E1000_TX_FLAGS_CSUM 0x00000001
2620#define E1000_TX_FLAGS_VLAN 0x00000002
2621#define E1000_TX_FLAGS_TSO 0x00000004
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002622#define E1000_TX_FLAGS_IPV4 0x00000008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
2624#define E1000_TX_FLAGS_VLAN_SHIFT 16
2625
Joe Perches64798842008-07-11 15:17:02 -07002626static int e1000_tso(struct e1000_adapter *adapter,
2627 struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002630 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 unsigned int i;
Joe Perches406874a2008-04-03 10:06:32 -07002632 u32 cmd_length = 0;
2633 u16 ipcse = 0, tucse, mss;
2634 u8 ipcss, ipcso, tucss, tucso, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 int err;
2636
Herbert Xu89114af2006-07-08 13:34:32 -07002637 if (skb_is_gso(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 if (skb_header_cloned(skb)) {
2639 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2640 if (err)
2641 return err;
2642 }
2643
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07002644 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Herbert Xu79671682006-06-22 02:40:14 -07002645 mss = skb_shinfo(skb)->gso_size;
Alexey Dobriyan60828232006-05-23 14:52:21 -07002646 if (skb->protocol == htons(ETH_P_IP)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002647 struct iphdr *iph = ip_hdr(skb);
2648 iph->tot_len = 0;
2649 iph->check = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002650 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
2651 iph->daddr, 0,
2652 IPPROTO_TCP,
2653 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002654 cmd_length = E1000_TXD_CMD_IP;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002655 ipcse = skb_transport_offset(skb) - 1;
Auke Koke15fdd02006-08-16 11:28:45 -07002656 } else if (skb->protocol == htons(ETH_P_IPV6)) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002657 ipv6_hdr(skb)->payload_len = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002658 tcp_hdr(skb)->check =
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002659 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
2660 &ipv6_hdr(skb)->daddr,
2661 0, IPPROTO_TCP, 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002662 ipcse = 0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002663 }
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03002664 ipcss = skb_network_offset(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002665 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002666 tucss = skb_transport_offset(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002667 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 tucse = 0;
2669
2670 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002671 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002673 i = tx_ring->next_to_use;
2674 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002675 buffer_info = &tx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 context_desc->lower_setup.ip_fields.ipcss = ipcss;
2678 context_desc->lower_setup.ip_fields.ipcso = ipcso;
2679 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
2680 context_desc->upper_setup.tcp_fields.tucss = tucss;
2681 context_desc->upper_setup.tcp_fields.tucso = tucso;
2682 context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
2683 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
2684 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
2685 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
2686
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002687 buffer_info->time_stamp = jiffies;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002688 buffer_info->next_to_watch = i;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002689
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002690 if (++i == tx_ring->count) i = 0;
2691 tx_ring->next_to_use = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
Joe Perchesc3033b02008-03-21 11:06:25 -07002693 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 }
Joe Perchesc3033b02008-03-21 11:06:25 -07002695 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696}
2697
Joe Perches64798842008-07-11 15:17:02 -07002698static bool e1000_tx_csum(struct e1000_adapter *adapter,
2699 struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700{
2701 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002702 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 unsigned int i;
Joe Perches406874a2008-04-03 10:06:32 -07002704 u8 css;
Dave Graham3ed30672008-10-09 14:29:26 -07002705 u32 cmd_len = E1000_TXD_CMD_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Dave Graham3ed30672008-10-09 14:29:26 -07002707 if (skb->ip_summed != CHECKSUM_PARTIAL)
2708 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Dave Graham3ed30672008-10-09 14:29:26 -07002710 switch (skb->protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08002711 case cpu_to_be16(ETH_P_IP):
Dave Graham3ed30672008-10-09 14:29:26 -07002712 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
2713 cmd_len |= E1000_TXD_CMD_TCP;
2714 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08002715 case cpu_to_be16(ETH_P_IPV6):
Dave Graham3ed30672008-10-09 14:29:26 -07002716 /* XXX not handling all IPV6 headers */
2717 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
2718 cmd_len |= E1000_TXD_CMD_TCP;
2719 break;
2720 default:
2721 if (unlikely(net_ratelimit()))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07002722 e_warn(drv, "checksum_partial proto=%x!\n",
2723 skb->protocol);
Dave Graham3ed30672008-10-09 14:29:26 -07002724 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 }
2726
Dave Graham3ed30672008-10-09 14:29:26 -07002727 css = skb_transport_offset(skb);
2728
2729 i = tx_ring->next_to_use;
2730 buffer_info = &tx_ring->buffer_info[i];
2731 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
2732
2733 context_desc->lower_setup.ip_config = 0;
2734 context_desc->upper_setup.tcp_fields.tucss = css;
2735 context_desc->upper_setup.tcp_fields.tucso =
2736 css + skb->csum_offset;
2737 context_desc->upper_setup.tcp_fields.tucse = 0;
2738 context_desc->tcp_seg_setup.data = 0;
2739 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
2740
2741 buffer_info->time_stamp = jiffies;
2742 buffer_info->next_to_watch = i;
2743
2744 if (unlikely(++i == tx_ring->count)) i = 0;
2745 tx_ring->next_to_use = i;
2746
2747 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748}
2749
2750#define E1000_MAX_TXD_PWR 12
2751#define E1000_MAX_DATA_PER_TXD (1<<E1000_MAX_TXD_PWR)
2752
Joe Perches64798842008-07-11 15:17:02 -07002753static int e1000_tx_map(struct e1000_adapter *adapter,
2754 struct e1000_tx_ring *tx_ring,
2755 struct sk_buff *skb, unsigned int first,
2756 unsigned int max_per_txd, unsigned int nr_frags,
2757 unsigned int mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758{
Joe Perches1dc32912008-07-11 15:17:08 -07002759 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck602c0552009-12-02 16:46:00 +00002760 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck37e73df2009-03-25 21:58:45 +00002761 struct e1000_buffer *buffer_info;
Jesse Brandeburgd20b6062009-03-02 16:03:21 -08002762 unsigned int len = skb_headlen(skb);
Alexander Duyck602c0552009-12-02 16:46:00 +00002763 unsigned int offset = 0, size, count = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766 i = tx_ring->next_to_use;
2767
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002768 while (len) {
Alexander Duyck37e73df2009-03-25 21:58:45 +00002769 buffer_info = &tx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 size = min(len, max_per_txd);
Jeff Kirsherfd803242005-12-13 00:06:22 -05002771 /* Workaround for Controller erratum --
2772 * descriptor for non-tso packet in a linear SKB that follows a
2773 * tso gets written back prematurely before the data is fully
Jeff Kirsher0f15a8f2006-03-02 18:46:29 -08002774 * DMA'd to the controller */
Jeff Kirsherfd803242005-12-13 00:06:22 -05002775 if (!skb->data_len && tx_ring->last_tx_tso &&
Herbert Xu89114af2006-07-08 13:34:32 -07002776 !skb_is_gso(skb)) {
Jeff Kirsherfd803242005-12-13 00:06:22 -05002777 tx_ring->last_tx_tso = 0;
2778 size -= 4;
2779 }
2780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 /* Workaround for premature desc write-backs
2782 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002783 if (unlikely(mss && !nr_frags && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 size -= 4;
Malli Chilakala97338bd2005-04-28 19:41:46 -07002785 /* work-around for errata 10 and it applies
2786 * to all controllers in PCI-X mode
2787 * The fix is to make sure that the first descriptor of a
2788 * packet is smaller than 2048 - 16 - 16 (or 2016) bytes
2789 */
Joe Perches1dc32912008-07-11 15:17:08 -07002790 if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07002791 (size > 2015) && count == 0))
2792 size = 2015;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002793
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 /* Workaround for potential 82544 hang in PCI-X. Avoid
2795 * terminating buffers within evenly-aligned dwords. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002796 if (unlikely(adapter->pcix_82544 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 !((unsigned long)(skb->data + offset + size - 1) & 4) &&
2798 size > 4))
2799 size -= 4;
2800
2801 buffer_info->length = size;
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00002802 /* set time_stamp *before* dma to help avoid a possible race */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 buffer_info->time_stamp = jiffies;
Alexander Duyck602c0552009-12-02 16:46:00 +00002804 buffer_info->mapped_as_page = false;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002805 buffer_info->dma = dma_map_single(&pdev->dev,
2806 skb->data + offset,
2807 size, DMA_TO_DEVICE);
2808 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck602c0552009-12-02 16:46:00 +00002809 goto dma_error;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002810 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
2812 len -= size;
2813 offset += size;
2814 count++;
Alexander Duyck37e73df2009-03-25 21:58:45 +00002815 if (len) {
2816 i++;
2817 if (unlikely(i == tx_ring->count))
2818 i = 0;
2819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 }
2821
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002822 for (f = 0; f < nr_frags; f++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 struct skb_frag_struct *frag;
2824
2825 frag = &skb_shinfo(skb)->frags[f];
2826 len = frag->size;
Alexander Duyck602c0552009-12-02 16:46:00 +00002827 offset = frag->page_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002829 while (len) {
Alexander Duyck37e73df2009-03-25 21:58:45 +00002830 i++;
2831 if (unlikely(i == tx_ring->count))
2832 i = 0;
2833
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 buffer_info = &tx_ring->buffer_info[i];
2835 size = min(len, max_per_txd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 /* Workaround for premature desc write-backs
2837 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002838 if (unlikely(mss && f == (nr_frags-1) && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 size -= 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 /* Workaround for potential 82544 hang in PCI-X.
2841 * Avoid terminating buffers within evenly-aligned
2842 * dwords. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002843 if (unlikely(adapter->pcix_82544 &&
Jesse Brandeburg8fce4732009-09-25 12:18:41 +00002844 !((unsigned long)(page_to_phys(frag->page) + offset
2845 + size - 1) & 4) &&
2846 size > 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 size -= 4;
2848
2849 buffer_info->length = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 buffer_info->time_stamp = jiffies;
Alexander Duyck602c0552009-12-02 16:46:00 +00002851 buffer_info->mapped_as_page = true;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002852 buffer_info->dma = dma_map_page(&pdev->dev, frag->page,
Alexander Duyck602c0552009-12-02 16:46:00 +00002853 offset, size,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002854 DMA_TO_DEVICE);
2855 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck602c0552009-12-02 16:46:00 +00002856 goto dma_error;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002857 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859 len -= size;
2860 offset += size;
2861 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 }
2863 }
2864
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 tx_ring->buffer_info[i].skb = skb;
2866 tx_ring->buffer_info[first].next_to_watch = i;
2867
2868 return count;
Alexander Duyck602c0552009-12-02 16:46:00 +00002869
2870dma_error:
2871 dev_err(&pdev->dev, "TX DMA map failed\n");
2872 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002873 if (count)
Alexander Duyck602c0552009-12-02 16:46:00 +00002874 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002875
2876 while (count--) {
2877 if (i==0)
Alexander Duyck602c0552009-12-02 16:46:00 +00002878 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002879 i--;
Alexander Duyck602c0552009-12-02 16:46:00 +00002880 buffer_info = &tx_ring->buffer_info[i];
2881 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
2882 }
2883
2884 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885}
2886
Joe Perches64798842008-07-11 15:17:02 -07002887static void e1000_tx_queue(struct e1000_adapter *adapter,
2888 struct e1000_tx_ring *tx_ring, int tx_flags,
2889 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890{
Joe Perches1dc32912008-07-11 15:17:08 -07002891 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 struct e1000_tx_desc *tx_desc = NULL;
2893 struct e1000_buffer *buffer_info;
Joe Perches406874a2008-04-03 10:06:32 -07002894 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 unsigned int i;
2896
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002897 if (likely(tx_flags & E1000_TX_FLAGS_TSO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
2899 E1000_TXD_CMD_TSE;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002900 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
2901
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002902 if (likely(tx_flags & E1000_TX_FLAGS_IPV4))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002903 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 }
2905
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002906 if (likely(tx_flags & E1000_TX_FLAGS_CSUM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
2908 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
2909 }
2910
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002911 if (unlikely(tx_flags & E1000_TX_FLAGS_VLAN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 txd_lower |= E1000_TXD_CMD_VLE;
2913 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
2914 }
2915
2916 i = tx_ring->next_to_use;
2917
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002918 while (count--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 buffer_info = &tx_ring->buffer_info[i];
2920 tx_desc = E1000_TX_DESC(*tx_ring, i);
2921 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
2922 tx_desc->lower.data =
2923 cpu_to_le32(txd_lower | buffer_info->length);
2924 tx_desc->upper.data = cpu_to_le32(txd_upper);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002925 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 }
2927
2928 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
2929
2930 /* Force memory writes to complete before letting h/w
2931 * know there are new descriptors to fetch. (Only
2932 * applicable for weak-ordered memory model archs,
2933 * such as IA-64). */
2934 wmb();
2935
2936 tx_ring->next_to_use = i;
Joe Perches1dc32912008-07-11 15:17:08 -07002937 writel(i, hw->hw_addr + tx_ring->tdt);
Jesse Brandeburg2ce90472006-11-01 08:47:42 -08002938 /* we need this if more than one processor can write to our tail
2939 * at a time, it syncronizes IO on IA64/Altix systems */
2940 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941}
2942
2943/**
2944 * 82547 workaround to avoid controller hang in half-duplex environment.
2945 * The workaround is to avoid queuing a large packet that would span
2946 * the internal Tx FIFO ring boundary by notifying the stack to resend
2947 * the packet at a later time. This gives the Tx FIFO an opportunity to
2948 * flush all packets. When that occurs, we reset the Tx FIFO pointers
2949 * to the beginning of the Tx FIFO.
2950 **/
2951
2952#define E1000_FIFO_HDR 0x10
2953#define E1000_82547_PAD_LEN 0x3E0
2954
Joe Perches64798842008-07-11 15:17:02 -07002955static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
2956 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957{
Joe Perches406874a2008-04-03 10:06:32 -07002958 u32 fifo_space = adapter->tx_fifo_size - adapter->tx_fifo_head;
2959 u32 skb_fifo_len = skb->len + E1000_FIFO_HDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07002961 skb_fifo_len = ALIGN(skb_fifo_len, E1000_FIFO_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002963 if (adapter->link_duplex != HALF_DUPLEX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 goto no_fifo_stall_required;
2965
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002966 if (atomic_read(&adapter->tx_fifo_stall))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 return 1;
2968
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002969 if (skb_fifo_len >= (E1000_82547_PAD_LEN + fifo_space)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 atomic_set(&adapter->tx_fifo_stall, 1);
2971 return 1;
2972 }
2973
2974no_fifo_stall_required:
2975 adapter->tx_fifo_head += skb_fifo_len;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002976 if (adapter->tx_fifo_head >= adapter->tx_fifo_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 adapter->tx_fifo_head -= adapter->tx_fifo_size;
2978 return 0;
2979}
2980
Jesse Brandeburg65c79732006-09-27 12:53:48 -07002981static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
2982{
2983 struct e1000_adapter *adapter = netdev_priv(netdev);
2984 struct e1000_tx_ring *tx_ring = adapter->tx_ring;
2985
2986 netif_stop_queue(netdev);
2987 /* Herbert's original patch had:
2988 * smp_mb__after_netif_stop_queue();
2989 * but since that doesn't exist yet, just open code it. */
2990 smp_mb();
2991
2992 /* We need to check again in a case another CPU has just
2993 * made room available. */
2994 if (likely(E1000_DESC_UNUSED(tx_ring) < size))
2995 return -EBUSY;
2996
2997 /* A reprieve! */
2998 netif_start_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08002999 ++adapter->restart_queue;
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003000 return 0;
3001}
3002
3003static int e1000_maybe_stop_tx(struct net_device *netdev,
3004 struct e1000_tx_ring *tx_ring, int size)
3005{
3006 if (likely(E1000_DESC_UNUSED(tx_ring) >= size))
3007 return 0;
3008 return __e1000_maybe_stop_tx(netdev, size);
3009}
3010
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011#define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
Stephen Hemminger3b29a562009-08-31 19:50:55 +00003012static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
3013 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003015 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07003016 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003017 struct e1000_tx_ring *tx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 unsigned int first, max_per_txd = E1000_MAX_DATA_PER_TXD;
3019 unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
3020 unsigned int tx_flags = 0;
Eric Dumazete743d312010-04-14 15:59:40 -07003021 unsigned int len = skb_headlen(skb);
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003022 unsigned int nr_frags;
3023 unsigned int mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 int count = 0;
Auke Kok76c224b2006-05-23 13:36:06 -07003025 int tso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003028 /* This goes back to the question of how to logically map a tx queue
3029 * to a flow. Right now, performance is impacted slightly negatively
3030 * if using multiple tx queues. If the stack breaks away from a
3031 * single qdisc implementation, we can look at this again. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003032 tx_ring = adapter->tx_ring;
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04003033
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003034 if (unlikely(skb->len <= 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 dev_kfree_skb_any(skb);
3036 return NETDEV_TX_OK;
3037 }
3038
Herbert Xu79671682006-06-22 02:40:14 -07003039 mss = skb_shinfo(skb)->gso_size;
Auke Kok76c224b2006-05-23 13:36:06 -07003040 /* The controller does a simple calculation to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 * make sure there is enough room in the FIFO before
3042 * initiating the DMA for each buffer. The calc is:
3043 * 4 = ceil(buffer len/mss). To make sure we don't
3044 * overrun the FIFO, adjust the max buffer len if mss
3045 * drops. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003046 if (mss) {
Joe Perches406874a2008-04-03 10:06:32 -07003047 u8 hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 max_per_txd = min(mss << 2, max_per_txd);
3049 max_txd_pwr = fls(max_per_txd) - 1;
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003050
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07003051 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003052 if (skb->data_len && hdr_len == len) {
Joe Perches1dc32912008-07-11 15:17:08 -07003053 switch (hw->mac_type) {
Jeff Kirsher9f687882006-03-02 18:20:17 -08003054 unsigned int pull_size;
Herbert Xu683a2aa2006-12-16 12:04:33 +11003055 case e1000_82544:
3056 /* Make sure we have room to chop off 4 bytes,
3057 * and that the end alignment will work out to
3058 * this hardware's requirements
3059 * NOTE: this is a TSO only workaround
3060 * if end byte alignment not correct move us
3061 * into the next dword */
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003062 if ((unsigned long)(skb_tail_pointer(skb) - 1) & 4)
Herbert Xu683a2aa2006-12-16 12:04:33 +11003063 break;
3064 /* fall through */
Jeff Kirsher9f687882006-03-02 18:20:17 -08003065 pull_size = min((unsigned int)4, skb->data_len);
3066 if (!__pskb_pull_tail(skb, pull_size)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003067 e_err(drv, "__pskb_pull_tail "
3068 "failed.\n");
Jeff Kirsher9f687882006-03-02 18:20:17 -08003069 dev_kfree_skb_any(skb);
Jeff Garzik749dfc72006-03-11 13:35:31 -05003070 return NETDEV_TX_OK;
Jeff Kirsher9f687882006-03-02 18:20:17 -08003071 }
Eric Dumazete743d312010-04-14 15:59:40 -07003072 len = skb_headlen(skb);
Jeff Kirsher9f687882006-03-02 18:20:17 -08003073 break;
3074 default:
3075 /* do nothing */
3076 break;
Jeff Kirsherd74bbd32006-01-12 16:51:07 -08003077 }
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 }
3080
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003081 /* reserve a descriptor for the offload context */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003082 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 count++;
Malli Chilakala26483452005-04-28 19:44:46 -07003084 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003085
Jeff Kirsherfd803242005-12-13 00:06:22 -05003086 /* Controller Erratum workaround */
Herbert Xu89114af2006-07-08 13:34:32 -07003087 if (!skb->data_len && tx_ring->last_tx_tso && !skb_is_gso(skb))
Jeff Kirsherfd803242005-12-13 00:06:22 -05003088 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003089
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 count += TXD_USE_COUNT(len, max_txd_pwr);
3091
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003092 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 count++;
3094
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003095 /* work-around for errata 10 and it applies to all controllers
Malli Chilakala97338bd2005-04-28 19:41:46 -07003096 * in PCI-X mode, so add one more descriptor to the count
3097 */
Joe Perches1dc32912008-07-11 15:17:08 -07003098 if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07003099 (len > 2015)))
3100 count++;
3101
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 nr_frags = skb_shinfo(skb)->nr_frags;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003103 for (f = 0; f < nr_frags; f++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size,
3105 max_txd_pwr);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003106 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 count += nr_frags;
3108
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 /* need: count + 2 desc gap to keep tail from touching
3110 * head, otherwise try next time */
Alexander Duyck80179432009-01-21 14:42:47 -08003111 if (unlikely(e1000_maybe_stop_tx(netdev, tx_ring, count + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Joe Perches1dc32912008-07-11 15:17:08 -07003114 if (unlikely(hw->mac_type == e1000_82547)) {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003115 if (unlikely(e1000_82547_fifo_workaround(adapter, skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 netif_stop_queue(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00003117 if (!test_bit(__E1000_DOWN, &adapter->flags))
3118 mod_timer(&adapter->tx_fifo_stall_timer,
3119 jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 return NETDEV_TX_BUSY;
3121 }
3122 }
3123
Jesse Grosseab6d182010-10-20 13:56:03 +00003124 if (unlikely(vlan_tx_tag_present(skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 tx_flags |= E1000_TX_FLAGS_VLAN;
3126 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
3127 }
3128
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003129 first = tx_ring->next_to_use;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003130
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003131 tso = e1000_tso(adapter, tx_ring, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 if (tso < 0) {
3133 dev_kfree_skb_any(skb);
3134 return NETDEV_TX_OK;
3135 }
3136
Jeff Kirsherfd803242005-12-13 00:06:22 -05003137 if (likely(tso)) {
Jesse Brandeburg8fce4732009-09-25 12:18:41 +00003138 if (likely(hw->mac_type != e1000_82544))
3139 tx_ring->last_tx_tso = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 tx_flags |= E1000_TX_FLAGS_TSO;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003141 } else if (likely(e1000_tx_csum(adapter, tx_ring, skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 tx_flags |= E1000_TX_FLAGS_CSUM;
3143
Alexey Dobriyan60828232006-05-23 14:52:21 -07003144 if (likely(skb->protocol == htons(ETH_P_IP)))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003145 tx_flags |= E1000_TX_FLAGS_IPV4;
3146
Alexander Duyck37e73df2009-03-25 21:58:45 +00003147 count = e1000_tx_map(adapter, tx_ring, skb, first, max_per_txd,
3148 nr_frags, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Alexander Duyck37e73df2009-03-25 21:58:45 +00003150 if (count) {
3151 e1000_tx_queue(adapter, tx_ring, tx_flags, count);
Alexander Duyck37e73df2009-03-25 21:58:45 +00003152 /* Make sure there is space in the ring for the next send. */
3153 e1000_maybe_stop_tx(netdev, tx_ring, MAX_SKB_FRAGS + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Alexander Duyck37e73df2009-03-25 21:58:45 +00003155 } else {
3156 dev_kfree_skb_any(skb);
3157 tx_ring->buffer_info[first].time_stamp = 0;
3158 tx_ring->next_to_use = first;
3159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 return NETDEV_TX_OK;
3162}
3163
3164/**
3165 * e1000_tx_timeout - Respond to a Tx Hang
3166 * @netdev: network interface device structure
3167 **/
3168
Joe Perches64798842008-07-11 15:17:02 -07003169static void e1000_tx_timeout(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003171 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
3173 /* Do the reset outside of interrupt context */
Jeff Kirsher87041632006-03-02 18:21:24 -08003174 adapter->tx_timeout_count++;
3175 schedule_work(&adapter->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176}
3177
Joe Perches64798842008-07-11 15:17:02 -07003178static void e1000_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179{
David Howells65f27f32006-11-22 14:55:48 +00003180 struct e1000_adapter *adapter =
3181 container_of(work, struct e1000_adapter, reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00003183 e1000_reinit_safe(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184}
3185
3186/**
3187 * e1000_get_stats - Get System Network Statistics
3188 * @netdev: network interface device structure
3189 *
3190 * Returns the address of the device statistics structure.
3191 * The statistics are actually updated from the timer callback.
3192 **/
3193
Joe Perches64798842008-07-11 15:17:02 -07003194static struct net_device_stats *e1000_get_stats(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195{
Jeff Kirsher6b7660c2006-01-12 16:50:35 -08003196 /* only return the current stats */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003197 return &netdev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198}
3199
3200/**
3201 * e1000_change_mtu - Change the Maximum Transfer Unit
3202 * @netdev: network interface device structure
3203 * @new_mtu: new value for maximum frame size
3204 *
3205 * Returns 0 on success, negative on failure
3206 **/
3207
Joe Perches64798842008-07-11 15:17:02 -07003208static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003210 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07003211 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 int max_frame = new_mtu + ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
3213
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003214 if ((max_frame < MINIMUM_ETHERNET_FRAME_SIZE) ||
3215 (max_frame > MAX_JUMBO_FRAME_SIZE)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003216 e_err(probe, "Invalid MTU setting\n");
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04003217 return -EINVAL;
3218 }
3219
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003220 /* Adapter-specific max frame size limits. */
Joe Perches1dc32912008-07-11 15:17:08 -07003221 switch (hw->mac_type) {
Auke Kok9e2feac2006-04-14 19:05:18 -07003222 case e1000_undefined ... e1000_82542_rev2_1:
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +00003223 if (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003224 e_err(probe, "Jumbo Frames not supported.\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003225 return -EINVAL;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003226 }
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003227 break;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003228 default:
3229 /* Capable of supporting up to MAX_JUMBO_FRAME_SIZE limit. */
3230 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003231 }
3232
Jesse Brandeburg3d6114e2009-09-25 12:19:02 +00003233 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
3234 msleep(1);
3235 /* e1000_down has a dependency on max_frame_size */
3236 hw->max_frame_size = max_frame;
3237 if (netif_running(netdev))
3238 e1000_down(adapter);
3239
David S. Miller87f50322006-07-31 22:39:40 -07003240 /* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kok9e2feac2006-04-14 19:05:18 -07003241 * means we reserve 2 more, this pushes us to allocate from the next
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003242 * larger slab size.
3243 * i.e. RXBUFFER_2048 --> size-4096 slab
3244 * however with the new *_jumbo_rx* routines, jumbo receives will use
3245 * fragmented skbs */
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003246
Jesse Brandeburg99261462010-01-22 22:56:16 +00003247 if (max_frame <= E1000_RXBUFFER_2048)
Auke Kok9e2feac2006-04-14 19:05:18 -07003248 adapter->rx_buffer_len = E1000_RXBUFFER_2048;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003249 else
3250#if (PAGE_SIZE >= E1000_RXBUFFER_16384)
Auke Kok9e2feac2006-04-14 19:05:18 -07003251 adapter->rx_buffer_len = E1000_RXBUFFER_16384;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003252#elif (PAGE_SIZE >= E1000_RXBUFFER_4096)
3253 adapter->rx_buffer_len = PAGE_SIZE;
3254#endif
Auke Kok9e2feac2006-04-14 19:05:18 -07003255
3256 /* adjust allocation if LPE protects us, and we aren't using SBP */
Joe Perches1dc32912008-07-11 15:17:08 -07003257 if (!hw->tbi_compatibility_on &&
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +00003258 ((max_frame == (ETH_FRAME_LEN + ETH_FCS_LEN)) ||
Auke Kok9e2feac2006-04-14 19:05:18 -07003259 (max_frame == MAXIMUM_ETHERNET_VLAN_SIZE)))
3260 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003261
Emil Tantilov675ad472010-04-27 14:02:58 +00003262 pr_info("%s changing MTU from %d to %d\n",
3263 netdev->name, netdev->mtu, new_mtu);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003264 netdev->mtu = new_mtu;
3265
Auke Kok2db10a02006-06-27 09:06:28 -07003266 if (netif_running(netdev))
Jesse Brandeburg3d6114e2009-09-25 12:19:02 +00003267 e1000_up(adapter);
3268 else
3269 e1000_reset(adapter);
3270
3271 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 return 0;
3274}
3275
3276/**
3277 * e1000_update_stats - Update the board statistics counters
3278 * @adapter: board private structure
3279 **/
3280
Joe Perches64798842008-07-11 15:17:02 -07003281void e1000_update_stats(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282{
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003283 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 struct e1000_hw *hw = &adapter->hw;
Linas Vepstas282f33c2006-06-08 22:19:44 -07003285 struct pci_dev *pdev = adapter->pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 unsigned long flags;
Joe Perches406874a2008-04-03 10:06:32 -07003287 u16 phy_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
3289#define PHY_IDLE_ERROR_COUNT_MASK 0x00FF
3290
Linas Vepstas282f33c2006-06-08 22:19:44 -07003291 /*
3292 * Prevent stats update while adapter is being reset, or if the pci
3293 * connection is down.
3294 */
Auke Kok90267292006-06-08 09:30:24 -07003295 if (adapter->link_speed == 0)
3296 return;
Linas Vepstas81b19552006-12-12 18:29:15 -06003297 if (pci_channel_offline(pdev))
Linas Vepstas282f33c2006-06-08 22:19:44 -07003298 return;
Auke Kok90267292006-06-08 09:30:24 -07003299
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 spin_lock_irqsave(&adapter->stats_lock, flags);
3301
Masatake YAMATO828d0552007-10-20 03:06:37 +02003302 /* these counters are modified from e1000_tbi_adjust_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 * called from the interrupt context, so they must only
3304 * be written while holding adapter->stats_lock
3305 */
3306
Joe Perches1dc32912008-07-11 15:17:08 -07003307 adapter->stats.crcerrs += er32(CRCERRS);
3308 adapter->stats.gprc += er32(GPRC);
3309 adapter->stats.gorcl += er32(GORCL);
3310 adapter->stats.gorch += er32(GORCH);
3311 adapter->stats.bprc += er32(BPRC);
3312 adapter->stats.mprc += er32(MPRC);
3313 adapter->stats.roc += er32(ROC);
Auke Kokcd94dd02006-06-27 09:08:22 -07003314
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003315 adapter->stats.prc64 += er32(PRC64);
3316 adapter->stats.prc127 += er32(PRC127);
3317 adapter->stats.prc255 += er32(PRC255);
3318 adapter->stats.prc511 += er32(PRC511);
3319 adapter->stats.prc1023 += er32(PRC1023);
3320 adapter->stats.prc1522 += er32(PRC1522);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
Joe Perches1dc32912008-07-11 15:17:08 -07003322 adapter->stats.symerrs += er32(SYMERRS);
3323 adapter->stats.mpc += er32(MPC);
3324 adapter->stats.scc += er32(SCC);
3325 adapter->stats.ecol += er32(ECOL);
3326 adapter->stats.mcc += er32(MCC);
3327 adapter->stats.latecol += er32(LATECOL);
3328 adapter->stats.dc += er32(DC);
3329 adapter->stats.sec += er32(SEC);
3330 adapter->stats.rlec += er32(RLEC);
3331 adapter->stats.xonrxc += er32(XONRXC);
3332 adapter->stats.xontxc += er32(XONTXC);
3333 adapter->stats.xoffrxc += er32(XOFFRXC);
3334 adapter->stats.xofftxc += er32(XOFFTXC);
3335 adapter->stats.fcruc += er32(FCRUC);
3336 adapter->stats.gptc += er32(GPTC);
3337 adapter->stats.gotcl += er32(GOTCL);
3338 adapter->stats.gotch += er32(GOTCH);
3339 adapter->stats.rnbc += er32(RNBC);
3340 adapter->stats.ruc += er32(RUC);
3341 adapter->stats.rfc += er32(RFC);
3342 adapter->stats.rjc += er32(RJC);
3343 adapter->stats.torl += er32(TORL);
3344 adapter->stats.torh += er32(TORH);
3345 adapter->stats.totl += er32(TOTL);
3346 adapter->stats.toth += er32(TOTH);
3347 adapter->stats.tpr += er32(TPR);
Auke Kokcd94dd02006-06-27 09:08:22 -07003348
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003349 adapter->stats.ptc64 += er32(PTC64);
3350 adapter->stats.ptc127 += er32(PTC127);
3351 adapter->stats.ptc255 += er32(PTC255);
3352 adapter->stats.ptc511 += er32(PTC511);
3353 adapter->stats.ptc1023 += er32(PTC1023);
3354 adapter->stats.ptc1522 += er32(PTC1522);
Auke Kokcd94dd02006-06-27 09:08:22 -07003355
Joe Perches1dc32912008-07-11 15:17:08 -07003356 adapter->stats.mptc += er32(MPTC);
3357 adapter->stats.bptc += er32(BPTC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358
3359 /* used for adaptive IFS */
3360
Joe Perches1dc32912008-07-11 15:17:08 -07003361 hw->tx_packet_delta = er32(TPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 adapter->stats.tpt += hw->tx_packet_delta;
Joe Perches1dc32912008-07-11 15:17:08 -07003363 hw->collision_delta = er32(COLC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 adapter->stats.colc += hw->collision_delta;
3365
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003366 if (hw->mac_type >= e1000_82543) {
Joe Perches1dc32912008-07-11 15:17:08 -07003367 adapter->stats.algnerrc += er32(ALGNERRC);
3368 adapter->stats.rxerrc += er32(RXERRC);
3369 adapter->stats.tncrs += er32(TNCRS);
3370 adapter->stats.cexterr += er32(CEXTERR);
3371 adapter->stats.tsctc += er32(TSCTC);
3372 adapter->stats.tsctfc += er32(TSCTFC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 }
3374
3375 /* Fill out the OS statistics structure */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003376 netdev->stats.multicast = adapter->stats.mprc;
3377 netdev->stats.collisions = adapter->stats.colc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
3379 /* Rx Errors */
3380
Jeff Kirsher87041632006-03-02 18:21:24 -08003381 /* RLEC on some newer hardware can be incorrect so build
3382 * our own version based on RUC and ROC */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003383 netdev->stats.rx_errors = adapter->stats.rxerrc +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 adapter->stats.crcerrs + adapter->stats.algnerrc +
Jeff Kirsher87041632006-03-02 18:21:24 -08003385 adapter->stats.ruc + adapter->stats.roc +
3386 adapter->stats.cexterr;
Mitch Williams49559852006-09-27 12:53:37 -07003387 adapter->stats.rlerrc = adapter->stats.ruc + adapter->stats.roc;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003388 netdev->stats.rx_length_errors = adapter->stats.rlerrc;
3389 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
3390 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
3391 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
3393 /* Tx Errors */
Mitch Williams49559852006-09-27 12:53:37 -07003394 adapter->stats.txerrc = adapter->stats.ecol + adapter->stats.latecol;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003395 netdev->stats.tx_errors = adapter->stats.txerrc;
3396 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
3397 netdev->stats.tx_window_errors = adapter->stats.latecol;
3398 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Joe Perches1dc32912008-07-11 15:17:08 -07003399 if (hw->bad_tx_carr_stats_fd &&
Jeff Garzik167fb282006-12-15 10:41:15 -05003400 adapter->link_duplex == FULL_DUPLEX) {
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003401 netdev->stats.tx_carrier_errors = 0;
Jeff Garzik167fb282006-12-15 10:41:15 -05003402 adapter->stats.tncrs = 0;
3403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
3405 /* Tx Dropped needs to be maintained elsewhere */
3406
3407 /* Phy Stats */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003408 if (hw->media_type == e1000_media_type_copper) {
3409 if ((adapter->link_speed == SPEED_1000) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 (!e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_tmp))) {
3411 phy_tmp &= PHY_IDLE_ERROR_COUNT_MASK;
3412 adapter->phy_stats.idle_errors += phy_tmp;
3413 }
3414
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003415 if ((hw->mac_type <= e1000_82546) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 (hw->phy_type == e1000_phy_m88) &&
3417 !e1000_read_phy_reg(hw, M88E1000_RX_ERR_CNTR, &phy_tmp))
3418 adapter->phy_stats.receive_errors += phy_tmp;
3419 }
3420
Jeff Garzik15e376b2006-12-15 11:16:33 -05003421 /* Management Stats */
Joe Perches1dc32912008-07-11 15:17:08 -07003422 if (hw->has_smbus) {
3423 adapter->stats.mgptc += er32(MGTPTC);
3424 adapter->stats.mgprc += er32(MGTPRC);
3425 adapter->stats.mgpdc += er32(MGTPDC);
Jeff Garzik15e376b2006-12-15 11:16:33 -05003426 }
3427
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 spin_unlock_irqrestore(&adapter->stats_lock, flags);
3429}
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003430
3431/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 * e1000_intr - Interrupt Handler
3433 * @irq: interrupt number
3434 * @data: pointer to a network interface device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 **/
3436
Joe Perches64798842008-07-11 15:17:02 -07003437static irqreturn_t e1000_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438{
3439 struct net_device *netdev = data;
Malli Chilakala60490fe2005-06-17 17:41:45 -07003440 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003442 u32 icr = er32(ICR);
Francois Romieuc3570ac2008-07-11 15:17:38 -07003443
Jesse Brandeburge151a602009-05-04 11:19:42 +00003444 if (unlikely((!icr) || test_bit(__E1000_DOWN, &adapter->flags)))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003445 return IRQ_NONE; /* Not our interrupt */
3446
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003447 if (unlikely(icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 hw->get_link_status = 1;
Auke Kok1314bbf2006-09-27 12:54:02 -07003449 /* guard against interrupt when we're going down */
3450 if (!test_bit(__E1000_DOWN, &adapter->flags))
3451 mod_timer(&adapter->watchdog_timer, jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 }
3453
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003454 /* disable interrupts, without the synchronize_irq bit */
3455 ew32(IMC, ~0);
3456 E1000_WRITE_FLUSH();
3457
Ben Hutchings288379f2009-01-19 16:43:59 -08003458 if (likely(napi_schedule_prep(&adapter->napi))) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003459 adapter->total_tx_bytes = 0;
3460 adapter->total_tx_packets = 0;
3461 adapter->total_rx_bytes = 0;
3462 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08003463 __napi_schedule(&adapter->napi);
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003464 } else {
Auke Kok90fb5132006-11-01 08:47:30 -08003465 /* this really should not happen! if it does it is basically a
3466 * bug, but not a hard error, so enable ints and continue */
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003467 if (!test_bit(__E1000_DOWN, &adapter->flags))
3468 e1000_irq_enable(adapter);
3469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 return IRQ_HANDLED;
3472}
3473
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474/**
3475 * e1000_clean - NAPI Rx polling callback
3476 * @adapter: board private structure
3477 **/
Joe Perches64798842008-07-11 15:17:02 -07003478static int e1000_clean(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003480 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003481 int tx_clean_complete = 0, work_done = 0;
Malli Chilakala26483452005-04-28 19:44:46 -07003482
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003483 tx_clean_complete = e1000_clean_tx_irq(adapter, &adapter->tx_ring[0]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003484
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003485 adapter->clean_rx(adapter, &adapter->rx_ring[0], &work_done, budget);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003486
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003487 if (!tx_clean_complete)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08003488 work_done = budget;
3489
David S. Miller53e52c72008-01-07 21:06:12 -08003490 /* If budget not fully consumed, exit the polling mode */
3491 if (work_done < budget) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003492 if (likely(adapter->itr_setting & 3))
3493 e1000_set_itr(adapter);
Ben Hutchings288379f2009-01-19 16:43:59 -08003494 napi_complete(napi);
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003495 if (!test_bit(__E1000_DOWN, &adapter->flags))
3496 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 }
3498
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003499 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500}
3501
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502/**
3503 * e1000_clean_tx_irq - Reclaim resources after transmit completes
3504 * @adapter: board private structure
3505 **/
Joe Perches64798842008-07-11 15:17:02 -07003506static bool e1000_clean_tx_irq(struct e1000_adapter *adapter,
3507 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508{
Joe Perches1dc32912008-07-11 15:17:08 -07003509 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 struct net_device *netdev = adapter->netdev;
3511 struct e1000_tx_desc *tx_desc, *eop_desc;
3512 struct e1000_buffer *buffer_info;
3513 unsigned int i, eop;
Jeff Kirsher2a1af5d2006-03-02 18:20:43 -08003514 unsigned int count = 0;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003515 unsigned int total_tx_bytes=0, total_tx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
3517 i = tx_ring->next_to_clean;
3518 eop = tx_ring->buffer_info[i].next_to_watch;
3519 eop_desc = E1000_TX_DESC(*tx_ring, eop);
3520
Alexander Duyckccfb3422009-03-25 21:59:04 +00003521 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
3522 (count < tx_ring->count)) {
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003523 bool cleaned = false;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00003524 rmb(); /* read buffer_info after eop_desc */
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003525 for ( ; !cleaned; count++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 tx_desc = E1000_TX_DESC(*tx_ring, i);
3527 buffer_info = &tx_ring->buffer_info[i];
3528 cleaned = (i == eop);
3529
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003530 if (cleaned) {
Jesse Brandeburg2b653262006-12-15 10:30:44 +01003531 struct sk_buff *skb = buffer_info->skb;
Jesse Brandeburg7753b172007-01-18 09:25:31 -08003532 unsigned int segs, bytecount;
3533 segs = skb_shinfo(skb)->gso_segs ?: 1;
3534 /* multiply data chunks by size of headers */
3535 bytecount = ((segs - 1) * skb_headlen(skb)) +
3536 skb->len;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01003537 total_tx_packets += segs;
Jesse Brandeburg7753b172007-01-18 09:25:31 -08003538 total_tx_bytes += bytecount;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003539 }
Jeff Kirsherfd803242005-12-13 00:06:22 -05003540 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08003541 tx_desc->upper.data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003543 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003545
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 eop = tx_ring->buffer_info[i].next_to_watch;
3547 eop_desc = E1000_TX_DESC(*tx_ring, eop);
3548 }
3549
3550 tx_ring->next_to_clean = i;
3551
Auke Kok77b2aad2006-04-14 19:05:25 -07003552#define TX_WAKE_THRESHOLD 32
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003553 if (unlikely(count && netif_carrier_ok(netdev) &&
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003554 E1000_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD)) {
3555 /* Make sure that anybody stopping the queue after this
3556 * sees the new next_to_clean.
3557 */
3558 smp_mb();
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003559
3560 if (netif_queue_stopped(netdev) &&
3561 !(test_bit(__E1000_DOWN, &adapter->flags))) {
Auke Kok77b2aad2006-04-14 19:05:25 -07003562 netif_wake_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003563 ++adapter->restart_queue;
3564 }
Auke Kok77b2aad2006-04-14 19:05:25 -07003565 }
Malli Chilakala26483452005-04-28 19:44:46 -07003566
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003567 if (adapter->detect_tx_hung) {
Malli Chilakala26483452005-04-28 19:44:46 -07003568 /* Detect a transmit hang in hardware, this serializes the
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 * check with the clearing of time_stamp and movement of i */
Joe Perchesc3033b02008-03-21 11:06:25 -07003570 adapter->detect_tx_hung = false;
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003571 if (tx_ring->buffer_info[eop].time_stamp &&
3572 time_after(jiffies, tx_ring->buffer_info[eop].time_stamp +
Joe Perches8e95a202009-12-03 07:58:21 +00003573 (adapter->tx_timeout_factor * HZ)) &&
3574 !(er32(STATUS) & E1000_STATUS_TXOFF)) {
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003575
3576 /* detected Tx unit hang */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003577 e_err(drv, "Detected Tx Unit Hang\n"
Emil Tantilov675ad472010-04-27 14:02:58 +00003578 " Tx Queue <%lu>\n"
3579 " TDH <%x>\n"
3580 " TDT <%x>\n"
3581 " next_to_use <%x>\n"
3582 " next_to_clean <%x>\n"
3583 "buffer_info[next_to_clean]\n"
3584 " time_stamp <%lx>\n"
3585 " next_to_watch <%x>\n"
3586 " jiffies <%lx>\n"
3587 " next_to_watch.status <%x>\n",
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08003588 (unsigned long)((tx_ring - adapter->tx_ring) /
3589 sizeof(struct e1000_tx_ring)),
Joe Perches1dc32912008-07-11 15:17:08 -07003590 readl(hw->hw_addr + tx_ring->tdh),
3591 readl(hw->hw_addr + tx_ring->tdt),
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003592 tx_ring->next_to_use,
Jeff Kirsher392137f2006-01-12 16:50:57 -08003593 tx_ring->next_to_clean,
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003594 tx_ring->buffer_info[eop].time_stamp,
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003595 eop,
3596 jiffies,
3597 eop_desc->upper.fields.status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 netif_stop_queue(netdev);
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 }
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003601 adapter->total_tx_bytes += total_tx_bytes;
3602 adapter->total_tx_packets += total_tx_packets;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003603 netdev->stats.tx_bytes += total_tx_bytes;
3604 netdev->stats.tx_packets += total_tx_packets;
Eric Dumazet807540b2010-09-23 05:40:09 +00003605 return count < tx_ring->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606}
3607
3608/**
3609 * e1000_rx_checksum - Receive Checksum Offload for 82543
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003610 * @adapter: board private structure
3611 * @status_err: receive descriptor status and error fields
3612 * @csum: receive descriptor csum field
3613 * @sk_buff: socket buffer with received data
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 **/
3615
Joe Perches64798842008-07-11 15:17:02 -07003616static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
3617 u32 csum, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618{
Joe Perches1dc32912008-07-11 15:17:08 -07003619 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07003620 u16 status = (u16)status_err;
3621 u8 errors = (u8)(status_err >> 24);
Eric Dumazetbc8acf22010-09-02 13:07:41 -07003622
3623 skb_checksum_none_assert(skb);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003624
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 /* 82543 or newer only */
Joe Perches1dc32912008-07-11 15:17:08 -07003626 if (unlikely(hw->mac_type < e1000_82543)) return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 /* Ignore Checksum bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003628 if (unlikely(status & E1000_RXD_STAT_IXSM)) return;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003629 /* TCP/UDP checksum error bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003630 if (unlikely(errors & E1000_RXD_ERR_TCPE)) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003631 /* let the stack verify checksum errors */
3632 adapter->hw_csum_err++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 return;
3634 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003635 /* TCP/UDP Checksum has not been calculated */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003636 if (!(status & E1000_RXD_STAT_TCPCS))
3637 return;
3638
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003639 /* It must be a TCP or UDP packet with a valid checksum */
3640 if (likely(status & E1000_RXD_STAT_TCPCS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 /* TCP checksum is good */
3642 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003644 adapter->hw_csum_good++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645}
3646
3647/**
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003648 * e1000_consume_page - helper function
3649 **/
3650static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
3651 u16 length)
3652{
3653 bi->page = NULL;
3654 skb->len += length;
3655 skb->data_len += length;
3656 skb->truesize += length;
3657}
3658
3659/**
3660 * e1000_receive_skb - helper function to handle rx indications
3661 * @adapter: board private structure
3662 * @status: descriptor status field as written by hardware
3663 * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
3664 * @skb: pointer to sk_buff to be indicated to stack
3665 */
3666static void e1000_receive_skb(struct e1000_adapter *adapter, u8 status,
3667 __le16 vlan, struct sk_buff *skb)
3668{
Jesse Brandeburg6a08d192010-09-22 18:23:05 +00003669 skb->protocol = eth_type_trans(skb, adapter->netdev);
3670
3671 if ((unlikely(adapter->vlgrp && (status & E1000_RXD_STAT_VP))))
3672 vlan_gro_receive(&adapter->napi, adapter->vlgrp,
3673 le16_to_cpu(vlan) & E1000_RXD_SPC_VLAN_MASK,
3674 skb);
3675 else
3676 napi_gro_receive(&adapter->napi, skb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003677}
3678
3679/**
3680 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
3681 * @adapter: board private structure
3682 * @rx_ring: ring to clean
3683 * @work_done: amount of napi work completed this call
3684 * @work_to_do: max amount of work allowed for this call to do
3685 *
3686 * the return value indicates whether actual cleaning was done, there
3687 * is no guarantee that everything was cleaned
3688 */
3689static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
3690 struct e1000_rx_ring *rx_ring,
3691 int *work_done, int work_to_do)
3692{
3693 struct e1000_hw *hw = &adapter->hw;
3694 struct net_device *netdev = adapter->netdev;
3695 struct pci_dev *pdev = adapter->pdev;
3696 struct e1000_rx_desc *rx_desc, *next_rxd;
3697 struct e1000_buffer *buffer_info, *next_buffer;
3698 unsigned long irq_flags;
3699 u32 length;
3700 unsigned int i;
3701 int cleaned_count = 0;
3702 bool cleaned = false;
3703 unsigned int total_rx_bytes=0, total_rx_packets=0;
3704
3705 i = rx_ring->next_to_clean;
3706 rx_desc = E1000_RX_DESC(*rx_ring, i);
3707 buffer_info = &rx_ring->buffer_info[i];
3708
3709 while (rx_desc->status & E1000_RXD_STAT_DD) {
3710 struct sk_buff *skb;
3711 u8 status;
3712
3713 if (*work_done >= work_to_do)
3714 break;
3715 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00003716 rmb(); /* read descriptor and rx_buffer_info after status DD */
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003717
3718 status = rx_desc->status;
3719 skb = buffer_info->skb;
3720 buffer_info->skb = NULL;
3721
3722 if (++i == rx_ring->count) i = 0;
3723 next_rxd = E1000_RX_DESC(*rx_ring, i);
3724 prefetch(next_rxd);
3725
3726 next_buffer = &rx_ring->buffer_info[i];
3727
3728 cleaned = true;
3729 cleaned_count++;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00003730 dma_unmap_page(&pdev->dev, buffer_info->dma,
3731 buffer_info->length, DMA_FROM_DEVICE);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003732 buffer_info->dma = 0;
3733
3734 length = le16_to_cpu(rx_desc->length);
3735
3736 /* errors is only valid for DD + EOP descriptors */
3737 if (unlikely((status & E1000_RXD_STAT_EOP) &&
3738 (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) {
3739 u8 last_byte = *(skb->data + length - 1);
3740 if (TBI_ACCEPT(hw, status, rx_desc->errors, length,
3741 last_byte)) {
3742 spin_lock_irqsave(&adapter->stats_lock,
3743 irq_flags);
3744 e1000_tbi_adjust_stats(hw, &adapter->stats,
3745 length, skb->data);
3746 spin_unlock_irqrestore(&adapter->stats_lock,
3747 irq_flags);
3748 length--;
3749 } else {
3750 /* recycle both page and skb */
3751 buffer_info->skb = skb;
3752 /* an error means any chain goes out the window
3753 * too */
3754 if (rx_ring->rx_skb_top)
3755 dev_kfree_skb(rx_ring->rx_skb_top);
3756 rx_ring->rx_skb_top = NULL;
3757 goto next_desc;
3758 }
3759 }
3760
3761#define rxtop rx_ring->rx_skb_top
3762 if (!(status & E1000_RXD_STAT_EOP)) {
3763 /* this descriptor is only the beginning (or middle) */
3764 if (!rxtop) {
3765 /* this is the beginning of a chain */
3766 rxtop = skb;
3767 skb_fill_page_desc(rxtop, 0, buffer_info->page,
3768 0, length);
3769 } else {
3770 /* this is the middle of a chain */
3771 skb_fill_page_desc(rxtop,
3772 skb_shinfo(rxtop)->nr_frags,
3773 buffer_info->page, 0, length);
3774 /* re-use the skb, only consumed the page */
3775 buffer_info->skb = skb;
3776 }
3777 e1000_consume_page(buffer_info, rxtop, length);
3778 goto next_desc;
3779 } else {
3780 if (rxtop) {
3781 /* end of the chain */
3782 skb_fill_page_desc(rxtop,
3783 skb_shinfo(rxtop)->nr_frags,
3784 buffer_info->page, 0, length);
3785 /* re-use the current skb, we only consumed the
3786 * page */
3787 buffer_info->skb = skb;
3788 skb = rxtop;
3789 rxtop = NULL;
3790 e1000_consume_page(buffer_info, skb, length);
3791 } else {
3792 /* no chain, got EOP, this buf is the packet
3793 * copybreak to save the put_page/alloc_page */
3794 if (length <= copybreak &&
3795 skb_tailroom(skb) >= length) {
3796 u8 *vaddr;
3797 vaddr = kmap_atomic(buffer_info->page,
3798 KM_SKB_DATA_SOFTIRQ);
3799 memcpy(skb_tail_pointer(skb), vaddr, length);
3800 kunmap_atomic(vaddr,
3801 KM_SKB_DATA_SOFTIRQ);
3802 /* re-use the page, so don't erase
3803 * buffer_info->page */
3804 skb_put(skb, length);
3805 } else {
3806 skb_fill_page_desc(skb, 0,
3807 buffer_info->page, 0,
3808 length);
3809 e1000_consume_page(buffer_info, skb,
3810 length);
3811 }
3812 }
3813 }
3814
3815 /* Receive Checksum Offload XXX recompute due to CRC strip? */
3816 e1000_rx_checksum(adapter,
3817 (u32)(status) |
3818 ((u32)(rx_desc->errors) << 24),
3819 le16_to_cpu(rx_desc->csum), skb);
3820
3821 pskb_trim(skb, skb->len - 4);
3822
3823 /* probably a little skewed due to removing CRC */
3824 total_rx_bytes += skb->len;
3825 total_rx_packets++;
3826
3827 /* eth type trans needs skb->data to point to something */
3828 if (!pskb_may_pull(skb, ETH_HLEN)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003829 e_err(drv, "pskb_may_pull failed.\n");
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003830 dev_kfree_skb(skb);
3831 goto next_desc;
3832 }
3833
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003834 e1000_receive_skb(adapter, status, rx_desc->special, skb);
3835
3836next_desc:
3837 rx_desc->status = 0;
3838
3839 /* return some buffers to hardware, one at a time is too slow */
3840 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
3841 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
3842 cleaned_count = 0;
3843 }
3844
3845 /* use prefetched values */
3846 rx_desc = next_rxd;
3847 buffer_info = next_buffer;
3848 }
3849 rx_ring->next_to_clean = i;
3850
3851 cleaned_count = E1000_DESC_UNUSED(rx_ring);
3852 if (cleaned_count)
3853 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
3854
3855 adapter->total_rx_packets += total_rx_packets;
3856 adapter->total_rx_bytes += total_rx_bytes;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003857 netdev->stats.rx_bytes += total_rx_bytes;
3858 netdev->stats.rx_packets += total_rx_packets;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003859 return cleaned;
3860}
3861
Joe Perches57bf6ee2010-05-13 15:26:17 +00003862/*
3863 * this should improve performance for small packets with large amounts
3864 * of reassembly being done in the stack
3865 */
3866static void e1000_check_copybreak(struct net_device *netdev,
3867 struct e1000_buffer *buffer_info,
3868 u32 length, struct sk_buff **skb)
3869{
3870 struct sk_buff *new_skb;
3871
3872 if (length > copybreak)
3873 return;
3874
3875 new_skb = netdev_alloc_skb_ip_align(netdev, length);
3876 if (!new_skb)
3877 return;
3878
3879 skb_copy_to_linear_data_offset(new_skb, -NET_IP_ALIGN,
3880 (*skb)->data - NET_IP_ALIGN,
3881 length + NET_IP_ALIGN);
3882 /* save the skb in buffer_info as good */
3883 buffer_info->skb = *skb;
3884 *skb = new_skb;
3885}
3886
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003887/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003888 * e1000_clean_rx_irq - Send received data up the network stack; legacy
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 * @adapter: board private structure
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003890 * @rx_ring: ring to clean
3891 * @work_done: amount of napi work completed this call
3892 * @work_to_do: max amount of work allowed for this call to do
3893 */
Joe Perches64798842008-07-11 15:17:02 -07003894static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
3895 struct e1000_rx_ring *rx_ring,
3896 int *work_done, int work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897{
Joe Perches1dc32912008-07-11 15:17:08 -07003898 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 struct net_device *netdev = adapter->netdev;
3900 struct pci_dev *pdev = adapter->pdev;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003901 struct e1000_rx_desc *rx_desc, *next_rxd;
3902 struct e1000_buffer *buffer_info, *next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 unsigned long flags;
Joe Perches406874a2008-04-03 10:06:32 -07003904 u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 unsigned int i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08003906 int cleaned_count = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -07003907 bool cleaned = false;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003908 unsigned int total_rx_bytes=0, total_rx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
3910 i = rx_ring->next_to_clean;
3911 rx_desc = E1000_RX_DESC(*rx_ring, i);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08003912 buffer_info = &rx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08003914 while (rx_desc->status & E1000_RXD_STAT_DD) {
Auke Kok24f476e2006-06-08 09:28:47 -07003915 struct sk_buff *skb;
Jeff Kirshera292ca62006-01-12 16:51:30 -08003916 u8 status;
Auke Kok90fb5132006-11-01 08:47:30 -08003917
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003918 if (*work_done >= work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 break;
3920 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00003921 rmb(); /* read descriptor and rx_buffer_info after status DD */
Francois Romieuc3570ac2008-07-11 15:17:38 -07003922
Jeff Kirshera292ca62006-01-12 16:51:30 -08003923 status = rx_desc->status;
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08003924 skb = buffer_info->skb;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003925 buffer_info->skb = NULL;
3926
Jeff Kirsher30320be2006-03-02 18:21:57 -08003927 prefetch(skb->data - NET_IP_ALIGN);
3928
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003929 if (++i == rx_ring->count) i = 0;
3930 next_rxd = E1000_RX_DESC(*rx_ring, i);
Jeff Kirsher30320be2006-03-02 18:21:57 -08003931 prefetch(next_rxd);
3932
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003933 next_buffer = &rx_ring->buffer_info[i];
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003934
Joe Perchesc3033b02008-03-21 11:06:25 -07003935 cleaned = true;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08003936 cleaned_count++;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00003937 dma_unmap_single(&pdev->dev, buffer_info->dma,
3938 buffer_info->length, DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00003939 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 length = le16_to_cpu(rx_desc->length);
Neil Hormanea30e112009-06-02 01:29:58 -07003942 /* !EOP means multiple descriptors were used to store a single
Jesse Brandeburg40a14de2010-01-19 14:15:38 +00003943 * packet, if thats the case we need to toss it. In fact, we
3944 * to toss every packet with the EOP bit clear and the next
3945 * frame that _does_ have the EOP bit set, as it is by
3946 * definition only a frame fragment
3947 */
3948 if (unlikely(!(status & E1000_RXD_STAT_EOP)))
3949 adapter->discarding = true;
3950
3951 if (adapter->discarding) {
Jeff Kirshera1415ee2006-02-28 20:24:07 -08003952 /* All receives must fit into a single buffer */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003953 e_dbg("Receive packet consumed multiple buffers\n");
Auke Kok864c4e42006-06-27 09:06:53 -07003954 /* recycle */
Auke Kok8fc897b2006-08-28 14:56:16 -07003955 buffer_info->skb = skb;
Jesse Brandeburg40a14de2010-01-19 14:15:38 +00003956 if (status & E1000_RXD_STAT_EOP)
3957 adapter->discarding = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 goto next_desc;
3959 }
3960
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003961 if (unlikely(rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK)) {
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003962 u8 last_byte = *(skb->data + length - 1);
Joe Perches1dc32912008-07-11 15:17:08 -07003963 if (TBI_ACCEPT(hw, status, rx_desc->errors, length,
3964 last_byte)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07003966 e1000_tbi_adjust_stats(hw, &adapter->stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 length, skb->data);
3968 spin_unlock_irqrestore(&adapter->stats_lock,
3969 flags);
3970 length--;
3971 } else {
Auke Kok9e2feac2006-04-14 19:05:18 -07003972 /* recycle */
3973 buffer_info->skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 goto next_desc;
3975 }
Auke Kok1cb58212006-04-18 12:31:04 -07003976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
Jesse Brandeburgd2a1e212006-10-24 14:46:06 -07003978 /* adjust length to remove Ethernet CRC, this must be
3979 * done after the TBI_ACCEPT workaround above */
3980 length -= 4;
3981
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003982 /* probably a little skewed due to removing CRC */
3983 total_rx_bytes += length;
3984 total_rx_packets++;
3985
Joe Perches57bf6ee2010-05-13 15:26:17 +00003986 e1000_check_copybreak(netdev, buffer_info, length, &skb);
3987
Auke Kok996695d2006-11-01 08:47:50 -08003988 skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989
3990 /* Receive Checksum Offload */
Jeff Kirshera292ca62006-01-12 16:51:30 -08003991 e1000_rx_checksum(adapter,
Joe Perches406874a2008-04-03 10:06:32 -07003992 (u32)(status) |
3993 ((u32)(rx_desc->errors) << 24),
David S. Millerc3d7a3a2006-03-15 14:26:28 -08003994 le16_to_cpu(rx_desc->csum), skb);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003995
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003996 e1000_receive_skb(adapter, status, rx_desc->special, skb);
Francois Romieuc3570ac2008-07-11 15:17:38 -07003997
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998next_desc:
3999 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004001 /* return some buffers to hardware, one at a time is too slow */
4002 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
4003 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
4004 cleaned_count = 0;
4005 }
4006
Jeff Kirsher30320be2006-03-02 18:21:57 -08004007 /* use prefetched values */
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004008 rx_desc = next_rxd;
4009 buffer_info = next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 rx_ring->next_to_clean = i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004012
4013 cleaned_count = E1000_DESC_UNUSED(rx_ring);
4014 if (cleaned_count)
4015 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004017 adapter->total_rx_packets += total_rx_packets;
4018 adapter->total_rx_bytes += total_rx_bytes;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00004019 netdev->stats.rx_bytes += total_rx_bytes;
4020 netdev->stats.rx_packets += total_rx_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 return cleaned;
4022}
4023
4024/**
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004025 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
4026 * @adapter: address of board private structure
4027 * @rx_ring: pointer to receive ring structure
4028 * @cleaned_count: number of buffers to allocate this pass
4029 **/
4030
4031static void
4032e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
4033 struct e1000_rx_ring *rx_ring, int cleaned_count)
4034{
4035 struct net_device *netdev = adapter->netdev;
4036 struct pci_dev *pdev = adapter->pdev;
4037 struct e1000_rx_desc *rx_desc;
4038 struct e1000_buffer *buffer_info;
4039 struct sk_buff *skb;
4040 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +00004041 unsigned int bufsz = 256 - 16 /*for skb_reserve */ ;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004042
4043 i = rx_ring->next_to_use;
4044 buffer_info = &rx_ring->buffer_info[i];
4045
4046 while (cleaned_count--) {
4047 skb = buffer_info->skb;
4048 if (skb) {
4049 skb_trim(skb, 0);
4050 goto check_page;
4051 }
4052
Eric Dumazet89d71a62009-10-13 05:34:20 +00004053 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004054 if (unlikely(!skb)) {
4055 /* Better luck next round */
4056 adapter->alloc_rx_buff_failed++;
4057 break;
4058 }
4059
4060 /* Fix for errata 23, can't cross 64kB boundary */
4061 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4062 struct sk_buff *oldskb = skb;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004063 e_err(rx_err, "skb align check failed: %u bytes at "
4064 "%p\n", bufsz, skb->data);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004065 /* Try again, without freeing the previous */
Eric Dumazet89d71a62009-10-13 05:34:20 +00004066 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004067 /* Failed allocation, critical failure */
4068 if (!skb) {
4069 dev_kfree_skb(oldskb);
4070 adapter->alloc_rx_buff_failed++;
4071 break;
4072 }
4073
4074 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4075 /* give up */
4076 dev_kfree_skb(skb);
4077 dev_kfree_skb(oldskb);
4078 break; /* while (cleaned_count--) */
4079 }
4080
4081 /* Use new allocation */
4082 dev_kfree_skb(oldskb);
4083 }
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004084 buffer_info->skb = skb;
4085 buffer_info->length = adapter->rx_buffer_len;
4086check_page:
4087 /* allocate a new page if necessary */
4088 if (!buffer_info->page) {
4089 buffer_info->page = alloc_page(GFP_ATOMIC);
4090 if (unlikely(!buffer_info->page)) {
4091 adapter->alloc_rx_buff_failed++;
4092 break;
4093 }
4094 }
4095
Anton Blanchardb5abb022010-02-19 17:54:53 +00004096 if (!buffer_info->dma) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004097 buffer_info->dma = dma_map_page(&pdev->dev,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004098 buffer_info->page, 0,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004099 buffer_info->length,
4100 DMA_FROM_DEVICE);
4101 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Anton Blanchardb5abb022010-02-19 17:54:53 +00004102 put_page(buffer_info->page);
4103 dev_kfree_skb(skb);
4104 buffer_info->page = NULL;
4105 buffer_info->skb = NULL;
4106 buffer_info->dma = 0;
4107 adapter->alloc_rx_buff_failed++;
4108 break; /* while !buffer_info->skb */
4109 }
4110 }
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004111
4112 rx_desc = E1000_RX_DESC(*rx_ring, i);
4113 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4114
4115 if (unlikely(++i == rx_ring->count))
4116 i = 0;
4117 buffer_info = &rx_ring->buffer_info[i];
4118 }
4119
4120 if (likely(rx_ring->next_to_use != i)) {
4121 rx_ring->next_to_use = i;
4122 if (unlikely(i-- == 0))
4123 i = (rx_ring->count - 1);
4124
4125 /* Force memory writes to complete before letting h/w
4126 * know there are new descriptors to fetch. (Only
4127 * applicable for weak-ordered memory model archs,
4128 * such as IA-64). */
4129 wmb();
4130 writel(i, adapter->hw.hw_addr + rx_ring->rdt);
4131 }
4132}
4133
4134/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004135 * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 * @adapter: address of board private structure
4137 **/
4138
Joe Perches64798842008-07-11 15:17:02 -07004139static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
4140 struct e1000_rx_ring *rx_ring,
4141 int cleaned_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142{
Joe Perches1dc32912008-07-11 15:17:08 -07004143 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 struct net_device *netdev = adapter->netdev;
4145 struct pci_dev *pdev = adapter->pdev;
4146 struct e1000_rx_desc *rx_desc;
4147 struct e1000_buffer *buffer_info;
4148 struct sk_buff *skb;
Malli Chilakala26483452005-04-28 19:44:46 -07004149 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +00004150 unsigned int bufsz = adapter->rx_buffer_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151
4152 i = rx_ring->next_to_use;
4153 buffer_info = &rx_ring->buffer_info[i];
4154
Jeff Kirshera292ca62006-01-12 16:51:30 -08004155 while (cleaned_count--) {
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004156 skb = buffer_info->skb;
4157 if (skb) {
Jeff Kirshera292ca62006-01-12 16:51:30 -08004158 skb_trim(skb, 0);
4159 goto map_skb;
4160 }
4161
Eric Dumazet89d71a62009-10-13 05:34:20 +00004162 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004163 if (unlikely(!skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 /* Better luck next round */
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004165 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 break;
4167 }
4168
Malli Chilakala26483452005-04-28 19:44:46 -07004169 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4171 struct sk_buff *oldskb = skb;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004172 e_err(rx_err, "skb align check failed: %u bytes at "
4173 "%p\n", bufsz, skb->data);
Malli Chilakala26483452005-04-28 19:44:46 -07004174 /* Try again, without freeing the previous */
Eric Dumazet89d71a62009-10-13 05:34:20 +00004175 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Malli Chilakala26483452005-04-28 19:44:46 -07004176 /* Failed allocation, critical failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 if (!skb) {
4178 dev_kfree_skb(oldskb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004179 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 break;
4181 }
Malli Chilakala26483452005-04-28 19:44:46 -07004182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4184 /* give up */
4185 dev_kfree_skb(skb);
4186 dev_kfree_skb(oldskb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004187 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 break; /* while !buffer_info->skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189 }
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004190
4191 /* Use new allocation */
4192 dev_kfree_skb(oldskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 buffer_info->skb = skb;
4195 buffer_info->length = adapter->rx_buffer_len;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004196map_skb:
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004197 buffer_info->dma = dma_map_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 skb->data,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004199 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004200 DMA_FROM_DEVICE);
4201 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Anton Blanchardb5abb022010-02-19 17:54:53 +00004202 dev_kfree_skb(skb);
4203 buffer_info->skb = NULL;
4204 buffer_info->dma = 0;
4205 adapter->alloc_rx_buff_failed++;
4206 break; /* while !buffer_info->skb */
4207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004209 /*
4210 * XXX if it was allocated cleanly it will never map to a
4211 * boundary crossing
4212 */
4213
Malli Chilakala26483452005-04-28 19:44:46 -07004214 /* Fix for errata 23, can't cross 64kB boundary */
4215 if (!e1000_check_64k_bound(adapter,
4216 (void *)(unsigned long)buffer_info->dma,
4217 adapter->rx_buffer_len)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004218 e_err(rx_err, "dma align check failed: %u bytes at "
4219 "%p\n", adapter->rx_buffer_len,
Emil Tantilov675ad472010-04-27 14:02:58 +00004220 (void *)(unsigned long)buffer_info->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 dev_kfree_skb(skb);
4222 buffer_info->skb = NULL;
4223
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004224 dma_unmap_single(&pdev->dev, buffer_info->dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 adapter->rx_buffer_len,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004226 DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00004227 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004229 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 break; /* while !buffer_info->skb */
4231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 rx_desc = E1000_RX_DESC(*rx_ring, i);
4233 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4234
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004235 if (unlikely(++i == rx_ring->count))
4236 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 buffer_info = &rx_ring->buffer_info[i];
4238 }
4239
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004240 if (likely(rx_ring->next_to_use != i)) {
4241 rx_ring->next_to_use = i;
4242 if (unlikely(i-- == 0))
4243 i = (rx_ring->count - 1);
4244
4245 /* Force memory writes to complete before letting h/w
4246 * know there are new descriptors to fetch. (Only
4247 * applicable for weak-ordered memory model archs,
4248 * such as IA-64). */
4249 wmb();
Joe Perches1dc32912008-07-11 15:17:08 -07004250 writel(i, hw->hw_addr + rx_ring->rdt);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252}
4253
4254/**
4255 * e1000_smartspeed - Workaround for SmartSpeed on 82541 and 82547 controllers.
4256 * @adapter:
4257 **/
4258
Joe Perches64798842008-07-11 15:17:02 -07004259static void e1000_smartspeed(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260{
Joe Perches1dc32912008-07-11 15:17:08 -07004261 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004262 u16 phy_status;
4263 u16 phy_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Joe Perches1dc32912008-07-11 15:17:08 -07004265 if ((hw->phy_type != e1000_phy_igp) || !hw->autoneg ||
4266 !(hw->autoneg_advertised & ADVERTISE_1000_FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 return;
4268
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004269 if (adapter->smartspeed == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 /* If Master/Slave config fault is asserted twice,
4271 * we assume back-to-back */
Joe Perches1dc32912008-07-11 15:17:08 -07004272 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_status);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004273 if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
Joe Perches1dc32912008-07-11 15:17:08 -07004274 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_status);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004275 if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
Joe Perches1dc32912008-07-11 15:17:08 -07004276 e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004277 if (phy_ctrl & CR_1000T_MS_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 phy_ctrl &= ~CR_1000T_MS_ENABLE;
Joe Perches1dc32912008-07-11 15:17:08 -07004279 e1000_write_phy_reg(hw, PHY_1000T_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 phy_ctrl);
4281 adapter->smartspeed++;
Joe Perches1dc32912008-07-11 15:17:08 -07004282 if (!e1000_phy_setup_autoneg(hw) &&
4283 !e1000_read_phy_reg(hw, PHY_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 &phy_ctrl)) {
4285 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4286 MII_CR_RESTART_AUTO_NEG);
Joe Perches1dc32912008-07-11 15:17:08 -07004287 e1000_write_phy_reg(hw, PHY_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 phy_ctrl);
4289 }
4290 }
4291 return;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004292 } else if (adapter->smartspeed == E1000_SMARTSPEED_DOWNSHIFT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 /* If still no link, perhaps using 2/3 pair cable */
Joe Perches1dc32912008-07-11 15:17:08 -07004294 e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 phy_ctrl |= CR_1000T_MS_ENABLE;
Joe Perches1dc32912008-07-11 15:17:08 -07004296 e1000_write_phy_reg(hw, PHY_1000T_CTRL, phy_ctrl);
4297 if (!e1000_phy_setup_autoneg(hw) &&
4298 !e1000_read_phy_reg(hw, PHY_CTRL, &phy_ctrl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4300 MII_CR_RESTART_AUTO_NEG);
Joe Perches1dc32912008-07-11 15:17:08 -07004301 e1000_write_phy_reg(hw, PHY_CTRL, phy_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 }
4303 }
4304 /* Restart process after E1000_SMARTSPEED_MAX iterations */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004305 if (adapter->smartspeed++ == E1000_SMARTSPEED_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 adapter->smartspeed = 0;
4307}
4308
4309/**
4310 * e1000_ioctl -
4311 * @netdev:
4312 * @ifreq:
4313 * @cmd:
4314 **/
4315
Joe Perches64798842008-07-11 15:17:02 -07004316static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317{
4318 switch (cmd) {
4319 case SIOCGMIIPHY:
4320 case SIOCGMIIREG:
4321 case SIOCSMIIREG:
4322 return e1000_mii_ioctl(netdev, ifr, cmd);
4323 default:
4324 return -EOPNOTSUPP;
4325 }
4326}
4327
4328/**
4329 * e1000_mii_ioctl -
4330 * @netdev:
4331 * @ifreq:
4332 * @cmd:
4333 **/
4334
Joe Perches64798842008-07-11 15:17:02 -07004335static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
4336 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004338 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004339 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 struct mii_ioctl_data *data = if_mii(ifr);
4341 int retval;
Joe Perches406874a2008-04-03 10:06:32 -07004342 u16 mii_reg;
4343 u16 spddplx;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004344 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
Joe Perches1dc32912008-07-11 15:17:08 -07004346 if (hw->media_type != e1000_media_type_copper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 return -EOPNOTSUPP;
4348
4349 switch (cmd) {
4350 case SIOCGMIIPHY:
Joe Perches1dc32912008-07-11 15:17:08 -07004351 data->phy_id = hw->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 break;
4353 case SIOCGMIIREG:
Malli Chilakala97876fc2005-06-17 17:40:19 -07004354 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004355 if (e1000_read_phy_reg(hw, data->reg_num & 0x1F,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004356 &data->val_out)) {
4357 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004359 }
4360 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 break;
4362 case SIOCSMIIREG:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004363 if (data->reg_num & ~(0x1F))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364 return -EFAULT;
4365 mii_reg = data->val_in;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004366 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004367 if (e1000_write_phy_reg(hw, data->reg_num,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004368 mii_reg)) {
4369 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004371 }
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004372 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004373 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 switch (data->reg_num) {
4375 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004376 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 break;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004378 if (mii_reg & MII_CR_AUTO_NEG_EN) {
Joe Perches1dc32912008-07-11 15:17:08 -07004379 hw->autoneg = 1;
4380 hw->autoneg_advertised = 0x2F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 } else {
4382 if (mii_reg & 0x40)
4383 spddplx = SPEED_1000;
4384 else if (mii_reg & 0x2000)
4385 spddplx = SPEED_100;
4386 else
4387 spddplx = SPEED_10;
4388 spddplx += (mii_reg & 0x100)
Jeff Kirshercb764322006-03-08 17:24:12 -08004389 ? DUPLEX_FULL :
4390 DUPLEX_HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 retval = e1000_set_spd_dplx(adapter,
4392 spddplx);
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004393 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 return retval;
4395 }
Auke Kok2db10a02006-06-27 09:06:28 -07004396 if (netif_running(adapter->netdev))
4397 e1000_reinit_locked(adapter);
4398 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 e1000_reset(adapter);
4400 break;
4401 case M88E1000_PHY_SPEC_CTRL:
4402 case M88E1000_EXT_PHY_SPEC_CTRL:
Joe Perches1dc32912008-07-11 15:17:08 -07004403 if (e1000_phy_reset(hw))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404 return -EIO;
4405 break;
4406 }
4407 } else {
4408 switch (data->reg_num) {
4409 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004410 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 break;
Auke Kok2db10a02006-06-27 09:06:28 -07004412 if (netif_running(adapter->netdev))
4413 e1000_reinit_locked(adapter);
4414 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415 e1000_reset(adapter);
4416 break;
4417 }
4418 }
4419 break;
4420 default:
4421 return -EOPNOTSUPP;
4422 }
4423 return E1000_SUCCESS;
4424}
4425
Joe Perches64798842008-07-11 15:17:02 -07004426void e1000_pci_set_mwi(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427{
4428 struct e1000_adapter *adapter = hw->back;
Malli Chilakala26483452005-04-28 19:44:46 -07004429 int ret_val = pci_set_mwi(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004431 if (ret_val)
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004432 e_err(probe, "Error in setting MWI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433}
4434
Joe Perches64798842008-07-11 15:17:02 -07004435void e1000_pci_clear_mwi(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436{
4437 struct e1000_adapter *adapter = hw->back;
4438
4439 pci_clear_mwi(adapter->pdev);
4440}
4441
Joe Perches64798842008-07-11 15:17:02 -07004442int e1000_pcix_get_mmrbc(struct e1000_hw *hw)
Peter Oruba007755e2007-09-28 22:42:06 -07004443{
4444 struct e1000_adapter *adapter = hw->back;
4445 return pcix_get_mmrbc(adapter->pdev);
4446}
4447
Joe Perches64798842008-07-11 15:17:02 -07004448void e1000_pcix_set_mmrbc(struct e1000_hw *hw, int mmrbc)
Peter Oruba007755e2007-09-28 22:42:06 -07004449{
4450 struct e1000_adapter *adapter = hw->back;
4451 pcix_set_mmrbc(adapter->pdev, mmrbc);
4452}
4453
Joe Perches64798842008-07-11 15:17:02 -07004454void e1000_io_write(struct e1000_hw *hw, unsigned long port, u32 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455{
4456 outl(value, port);
4457}
4458
Joe Perches64798842008-07-11 15:17:02 -07004459static void e1000_vlan_rx_register(struct net_device *netdev,
4460 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004462 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004463 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004464 u32 ctrl, rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004466 if (!test_bit(__E1000_DOWN, &adapter->flags))
4467 e1000_irq_disable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 adapter->vlgrp = grp;
4469
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004470 if (grp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 /* enable VLAN tag insert/strip */
Joe Perches1dc32912008-07-11 15:17:08 -07004472 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 ctrl |= E1000_CTRL_VME;
Joe Perches1dc32912008-07-11 15:17:08 -07004474 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004476 /* enable VLAN receive filtering */
4477 rctl = er32(RCTL);
4478 rctl &= ~E1000_RCTL_CFIEN;
4479 if (!(netdev->flags & IFF_PROMISC))
4480 rctl |= E1000_RCTL_VFE;
4481 ew32(RCTL, rctl);
4482 e1000_update_mng_vlan(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 } else {
4484 /* disable VLAN tag insert/strip */
Joe Perches1dc32912008-07-11 15:17:08 -07004485 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 ctrl &= ~E1000_CTRL_VME;
Joe Perches1dc32912008-07-11 15:17:08 -07004487 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004489 /* disable VLAN receive filtering */
4490 rctl = er32(RCTL);
4491 rctl &= ~E1000_RCTL_VFE;
4492 ew32(RCTL, rctl);
Graham, Davidfd38d7a2009-08-31 14:12:51 +00004493
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004494 if (adapter->mng_vlan_id != (u16)E1000_MNG_VLAN_NONE) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004495 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004496 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Auke Kokcd94dd02006-06-27 09:08:22 -07004497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 }
4499
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004500 if (!test_bit(__E1000_DOWN, &adapter->flags))
4501 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502}
4503
Joe Perches64798842008-07-11 15:17:02 -07004504static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004506 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004507 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004508 u32 vfta, index;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004509
Joe Perches1dc32912008-07-11 15:17:08 -07004510 if ((hw->mng_cookie.status &
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004511 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
4512 (vid == adapter->mng_vlan_id))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004513 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 /* add VID to filter table */
4515 index = (vid >> 5) & 0x7F;
Joe Perches1dc32912008-07-11 15:17:08 -07004516 vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 vfta |= (1 << (vid & 0x1F));
Joe Perches1dc32912008-07-11 15:17:08 -07004518 e1000_write_vfta(hw, index, vfta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519}
4520
Joe Perches64798842008-07-11 15:17:02 -07004521static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004523 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004524 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004525 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004527 if (!test_bit(__E1000_DOWN, &adapter->flags))
4528 e1000_irq_disable(adapter);
Dan Aloni5c15bde2007-03-02 20:44:51 -08004529 vlan_group_set_device(adapter->vlgrp, vid, NULL);
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004530 if (!test_bit(__E1000_DOWN, &adapter->flags))
4531 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532
4533 /* remove VID from filter table */
4534 index = (vid >> 5) & 0x7F;
Joe Perches1dc32912008-07-11 15:17:08 -07004535 vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 vfta &= ~(1 << (vid & 0x1F));
Joe Perches1dc32912008-07-11 15:17:08 -07004537 e1000_write_vfta(hw, index, vfta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538}
4539
Joe Perches64798842008-07-11 15:17:02 -07004540static void e1000_restore_vlan(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541{
4542 e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
4543
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004544 if (adapter->vlgrp) {
Joe Perches406874a2008-04-03 10:06:32 -07004545 u16 vid;
Jesse Grossb7381272010-10-20 13:56:02 +00004546 for (vid = 0; vid < VLAN_N_VID; vid++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08004547 if (!vlan_group_get_device(adapter->vlgrp, vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 continue;
4549 e1000_vlan_rx_add_vid(adapter->netdev, vid);
4550 }
4551 }
4552}
4553
Joe Perches64798842008-07-11 15:17:02 -07004554int e1000_set_spd_dplx(struct e1000_adapter *adapter, u16 spddplx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555{
Joe Perches1dc32912008-07-11 15:17:08 -07004556 struct e1000_hw *hw = &adapter->hw;
4557
4558 hw->autoneg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Malli Chilakala69213682005-06-17 17:44:20 -07004560 /* Fiber NICs only allow 1000 gbps Full duplex */
Joe Perches1dc32912008-07-11 15:17:08 -07004561 if ((hw->media_type == e1000_media_type_fiber) &&
Malli Chilakala69213682005-06-17 17:44:20 -07004562 spddplx != (SPEED_1000 + DUPLEX_FULL)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004563 e_err(probe, "Unsupported Speed/Duplex configuration\n");
Malli Chilakala69213682005-06-17 17:44:20 -07004564 return -EINVAL;
4565 }
4566
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004567 switch (spddplx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 case SPEED_10 + DUPLEX_HALF:
Joe Perches1dc32912008-07-11 15:17:08 -07004569 hw->forced_speed_duplex = e1000_10_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 break;
4571 case SPEED_10 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004572 hw->forced_speed_duplex = e1000_10_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 break;
4574 case SPEED_100 + DUPLEX_HALF:
Joe Perches1dc32912008-07-11 15:17:08 -07004575 hw->forced_speed_duplex = e1000_100_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 break;
4577 case SPEED_100 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004578 hw->forced_speed_duplex = e1000_100_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 break;
4580 case SPEED_1000 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004581 hw->autoneg = 1;
4582 hw->autoneg_advertised = ADVERTISE_1000_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 break;
4584 case SPEED_1000 + DUPLEX_HALF: /* not supported */
4585 default:
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004586 e_err(probe, "Unsupported Speed/Duplex configuration\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 return -EINVAL;
4588 }
4589 return 0;
4590}
4591
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004592static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593{
4594 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07004595 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004596 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004597 u32 ctrl, ctrl_ext, rctl, status;
4598 u32 wufc = adapter->wol;
Auke Kok6fdfef12006-06-27 09:06:36 -07004599#ifdef CONFIG_PM
Jeff Kirsher240b1712006-01-12 16:51:28 -08004600 int retval = 0;
Auke Kok6fdfef12006-06-27 09:06:36 -07004601#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602
4603 netif_device_detach(netdev);
4604
Auke Kok2db10a02006-06-27 09:06:28 -07004605 if (netif_running(netdev)) {
4606 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 e1000_down(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07004608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004610#ifdef CONFIG_PM
Kok, Auke1d33e9c2007-02-16 14:39:28 -08004611 retval = pci_save_state(pdev);
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004612 if (retval)
4613 return retval;
4614#endif
4615
Joe Perches1dc32912008-07-11 15:17:08 -07004616 status = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004617 if (status & E1000_STATUS_LU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 wufc &= ~E1000_WUFC_LNKC;
4619
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004620 if (wufc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 e1000_setup_rctl(adapter);
Patrick McHardydb0ce502007-11-13 20:54:59 -08004622 e1000_set_rx_mode(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623
4624 /* turn on all-multi mode if wake on multicast is enabled */
Jesse Brandeburg120cd572006-08-31 14:27:46 -07004625 if (wufc & E1000_WUFC_MC) {
Joe Perches1dc32912008-07-11 15:17:08 -07004626 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 rctl |= E1000_RCTL_MPE;
Joe Perches1dc32912008-07-11 15:17:08 -07004628 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 }
4630
Joe Perches1dc32912008-07-11 15:17:08 -07004631 if (hw->mac_type >= e1000_82540) {
4632 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 /* advertise wake from D3Cold */
4634 #define E1000_CTRL_ADVD3WUC 0x00100000
4635 /* phy power management enable */
4636 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
4637 ctrl |= E1000_CTRL_ADVD3WUC |
4638 E1000_CTRL_EN_PHY_PWR_MGMT;
Joe Perches1dc32912008-07-11 15:17:08 -07004639 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 }
4641
Joe Perches1dc32912008-07-11 15:17:08 -07004642 if (hw->media_type == e1000_media_type_fiber ||
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004643 hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644 /* keep the laser running in D3 */
Joe Perches1dc32912008-07-11 15:17:08 -07004645 ctrl_ext = er32(CTRL_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 ctrl_ext |= E1000_CTRL_EXT_SDP7_DATA;
Joe Perches1dc32912008-07-11 15:17:08 -07004647 ew32(CTRL_EXT, ctrl_ext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 }
4649
Joe Perches1dc32912008-07-11 15:17:08 -07004650 ew32(WUC, E1000_WUC_PME_EN);
4651 ew32(WUFC, wufc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07004653 ew32(WUC, 0);
4654 ew32(WUFC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 }
4656
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004657 e1000_release_manageability(adapter);
4658
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004659 *enable_wake = !!wufc;
4660
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004661 /* make sure adapter isn't asleep if manageability is enabled */
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004662 if (adapter->en_mng_pt)
4663 *enable_wake = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664
Auke Kokedd106f2006-11-06 08:57:12 -08004665 if (netif_running(netdev))
4666 e1000_free_irq(adapter);
4667
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 pci_disable_device(pdev);
Jeff Kirsher240b1712006-01-12 16:51:28 -08004669
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 return 0;
4671}
4672
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004673#ifdef CONFIG_PM
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004674static int e1000_suspend(struct pci_dev *pdev, pm_message_t state)
4675{
4676 int retval;
4677 bool wake;
4678
4679 retval = __e1000_shutdown(pdev, &wake);
4680 if (retval)
4681 return retval;
4682
4683 if (wake) {
4684 pci_prepare_to_sleep(pdev);
4685 } else {
4686 pci_wake_from_d3(pdev, false);
4687 pci_set_power_state(pdev, PCI_D3hot);
4688 }
4689
4690 return 0;
4691}
4692
Joe Perches64798842008-07-11 15:17:02 -07004693static int e1000_resume(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694{
4695 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07004696 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004697 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004698 u32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699
Auke Kokd0e027d2006-04-14 19:04:40 -07004700 pci_set_power_state(pdev, PCI_D0);
Kok, Auke1d33e9c2007-02-16 14:39:28 -08004701 pci_restore_state(pdev);
Nick Nunleydbb5aae2010-02-03 14:49:48 +00004702 pci_save_state(pdev);
Taku Izumi81250292008-07-11 15:17:44 -07004703
4704 if (adapter->need_ioport)
4705 err = pci_enable_device(pdev);
4706 else
4707 err = pci_enable_device_mem(pdev);
Joe Perchesc7be73b2008-07-11 15:17:28 -07004708 if (err) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004709 pr_err("Cannot enable PCI device from suspend\n");
Auke Kok3d1dd8c2006-08-28 14:56:27 -07004710 return err;
4711 }
Malli Chilakalaa4cb8472005-04-28 19:41:28 -07004712 pci_set_master(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
Auke Kokd0e027d2006-04-14 19:04:40 -07004714 pci_enable_wake(pdev, PCI_D3hot, 0);
4715 pci_enable_wake(pdev, PCI_D3cold, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716
Joe Perchesc7be73b2008-07-11 15:17:28 -07004717 if (netif_running(netdev)) {
4718 err = e1000_request_irq(adapter);
4719 if (err)
4720 return err;
4721 }
Auke Kokedd106f2006-11-06 08:57:12 -08004722
4723 e1000_power_up_phy(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724 e1000_reset(adapter);
Joe Perches1dc32912008-07-11 15:17:08 -07004725 ew32(WUS, ~0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004727 e1000_init_manageability(adapter);
4728
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004729 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 e1000_up(adapter);
4731
4732 netif_device_attach(netdev);
4733
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 return 0;
4735}
4736#endif
Auke Kokc653e632006-05-23 13:35:57 -07004737
4738static void e1000_shutdown(struct pci_dev *pdev)
4739{
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004740 bool wake;
4741
4742 __e1000_shutdown(pdev, &wake);
4743
4744 if (system_state == SYSTEM_POWER_OFF) {
4745 pci_wake_from_d3(pdev, wake);
4746 pci_set_power_state(pdev, PCI_D3hot);
4747 }
Auke Kokc653e632006-05-23 13:35:57 -07004748}
4749
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750#ifdef CONFIG_NET_POLL_CONTROLLER
4751/*
4752 * Polling 'interrupt' - used by things like netconsole to send skbs
4753 * without having to re-enable interrupts. It's not called while
4754 * the interrupt routine is executing.
4755 */
Joe Perches64798842008-07-11 15:17:02 -07004756static void e1000_netpoll(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004758 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kokd3d9e482006-07-14 16:14:23 -07004759
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760 disable_irq(adapter->pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01004761 e1000_intr(adapter->pdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 enable_irq(adapter->pdev->irq);
4763}
4764#endif
4765
Auke Kok90267292006-06-08 09:30:24 -07004766/**
4767 * e1000_io_error_detected - called when PCI error is detected
4768 * @pdev: Pointer to PCI device
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004769 * @state: The current pci connection state
Auke Kok90267292006-06-08 09:30:24 -07004770 *
4771 * This function is called after a PCI bus error affecting
4772 * this device has been detected.
4773 */
Joe Perches64798842008-07-11 15:17:02 -07004774static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
4775 pci_channel_state_t state)
Auke Kok90267292006-06-08 09:30:24 -07004776{
4777 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004778 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kok90267292006-06-08 09:30:24 -07004779
4780 netif_device_detach(netdev);
4781
Andre Detscheab63302009-06-30 12:46:13 +00004782 if (state == pci_channel_io_perm_failure)
4783 return PCI_ERS_RESULT_DISCONNECT;
4784
Auke Kok90267292006-06-08 09:30:24 -07004785 if (netif_running(netdev))
4786 e1000_down(adapter);
Linas Vepstas72e8d6b2006-09-18 20:58:06 -07004787 pci_disable_device(pdev);
Auke Kok90267292006-06-08 09:30:24 -07004788
4789 /* Request a slot slot reset. */
4790 return PCI_ERS_RESULT_NEED_RESET;
4791}
4792
4793/**
4794 * e1000_io_slot_reset - called after the pci bus has been reset.
4795 * @pdev: Pointer to PCI device
4796 *
4797 * Restart the card from scratch, as if from a cold-boot. Implementation
4798 * resembles the first-half of the e1000_resume routine.
4799 */
4800static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
4801{
4802 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004803 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004804 struct e1000_hw *hw = &adapter->hw;
Taku Izumi81250292008-07-11 15:17:44 -07004805 int err;
Auke Kok90267292006-06-08 09:30:24 -07004806
Taku Izumi81250292008-07-11 15:17:44 -07004807 if (adapter->need_ioport)
4808 err = pci_enable_device(pdev);
4809 else
4810 err = pci_enable_device_mem(pdev);
4811 if (err) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004812 pr_err("Cannot re-enable PCI device after reset.\n");
Auke Kok90267292006-06-08 09:30:24 -07004813 return PCI_ERS_RESULT_DISCONNECT;
4814 }
4815 pci_set_master(pdev);
4816
Linas Vepstasdbf38c92006-09-27 12:54:11 -07004817 pci_enable_wake(pdev, PCI_D3hot, 0);
4818 pci_enable_wake(pdev, PCI_D3cold, 0);
Auke Kok90267292006-06-08 09:30:24 -07004819
Auke Kok90267292006-06-08 09:30:24 -07004820 e1000_reset(adapter);
Joe Perches1dc32912008-07-11 15:17:08 -07004821 ew32(WUS, ~0);
Auke Kok90267292006-06-08 09:30:24 -07004822
4823 return PCI_ERS_RESULT_RECOVERED;
4824}
4825
4826/**
4827 * e1000_io_resume - called when traffic can start flowing again.
4828 * @pdev: Pointer to PCI device
4829 *
4830 * This callback is called when the error recovery driver tells us that
4831 * its OK to resume normal operation. Implementation resembles the
4832 * second-half of the e1000_resume routine.
4833 */
4834static void e1000_io_resume(struct pci_dev *pdev)
4835{
4836 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004837 struct e1000_adapter *adapter = netdev_priv(netdev);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004838
4839 e1000_init_manageability(adapter);
Auke Kok90267292006-06-08 09:30:24 -07004840
4841 if (netif_running(netdev)) {
4842 if (e1000_up(adapter)) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004843 pr_info("can't bring device back up after reset\n");
Auke Kok90267292006-06-08 09:30:24 -07004844 return;
4845 }
4846 }
4847
4848 netif_device_attach(netdev);
Auke Kok90267292006-06-08 09:30:24 -07004849}
4850
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851/* e1000_main.c */