blob: 340e12d2e4a91eeea196c0b4edae97b530ed1f4d [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 Chilakala24025e4ec2005-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;
Jesse Brandeburge508be12010-09-07 21:01:12 +0000974 } else {
Dean Nelson19a0b672010-11-11 05:50:25 +0000975 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
976 if (err) {
977 pr_err("No usable DMA config, aborting\n");
978 goto err_dma;
979 }
980 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
Jesse Brandeburge508be12010-09-07 21:01:12 +0000981 }
982
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800983 netdev->netdev_ops = &e1000_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 e1000_set_ethtool_ops(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 netdev->watchdog_timeo = 5 * HZ;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700986 netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800987
Auke Kok0eb5a342006-09-27 12:53:17 -0700988 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 adapter->bd_number = cards_found;
991
992 /* setup the private structure */
993
Joe Perchesc7be73b2008-07-11 15:17:28 -0700994 err = e1000_sw_init(adapter);
995 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 goto err_sw_init;
997
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700998 err = -EIO;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700999
Joe Perches1dc32912008-07-11 15:17:08 -07001000 if (hw->mac_type >= e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 netdev->features = NETIF_F_SG |
1002 NETIF_F_HW_CSUM |
1003 NETIF_F_HW_VLAN_TX |
1004 NETIF_F_HW_VLAN_RX |
1005 NETIF_F_HW_VLAN_FILTER;
1006 }
1007
Joe Perches1dc32912008-07-11 15:17:08 -07001008 if ((hw->mac_type >= e1000_82544) &&
1009 (hw->mac_type != e1000_82547))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 netdev->features |= NETIF_F_TSO;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001011
Yi Zou7b872a52010-09-22 17:57:58 +00001012 if (pci_using_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00001014 netdev->vlan_features |= NETIF_F_HIGHDMA;
1015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Patrick McHardy20501a62008-10-11 12:25:59 -07001017 netdev->vlan_features |= NETIF_F_TSO;
Patrick McHardy20501a62008-10-11 12:25:59 -07001018 netdev->vlan_features |= NETIF_F_HW_CSUM;
1019 netdev->vlan_features |= NETIF_F_SG;
1020
Joe Perches1dc32912008-07-11 15:17:08 -07001021 adapter->en_mng_pt = e1000_enable_mng_pass_thru(hw);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001022
Auke Kokcd94dd02006-06-27 09:08:22 -07001023 /* initialize eeprom parameters */
Joe Perches1dc32912008-07-11 15:17:08 -07001024 if (e1000_init_eeprom_params(hw)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001025 e_err(probe, "EEPROM initialization failed\n");
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001026 goto err_eeprom;
Auke Kokcd94dd02006-06-27 09:08:22 -07001027 }
1028
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001029 /* before reading the EEPROM, reset the controller to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 * put the device in a known good starting state */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001031
Joe Perches1dc32912008-07-11 15:17:08 -07001032 e1000_reset_hw(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 /* make sure the EEPROM is good */
Joe Perches1dc32912008-07-11 15:17:08 -07001035 if (e1000_validate_eeprom_checksum(hw) < 0) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001036 e_err(probe, "The EEPROM Checksum Is Not Valid\n");
Auke Kok67b3c272007-12-17 13:50:23 -08001037 e1000_dump_eeprom(adapter);
1038 /*
1039 * set MAC address to all zeroes to invalidate and temporary
1040 * disable this device for the user. This blocks regular
1041 * traffic while still permitting ethtool ioctls from reaching
1042 * the hardware as well as allowing the user to run the
1043 * interface after manually setting a hw addr using
1044 * `ip set address`
1045 */
Joe Perches1dc32912008-07-11 15:17:08 -07001046 memset(hw->mac_addr, 0, netdev->addr_len);
Auke Kok67b3c272007-12-17 13:50:23 -08001047 } else {
1048 /* copy the MAC address out of the EEPROM */
Joe Perches1dc32912008-07-11 15:17:08 -07001049 if (e1000_read_mac_addr(hw))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001050 e_err(probe, "EEPROM Read Error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
Auke Kok67b3c272007-12-17 13:50:23 -08001052 /* don't block initalization here due to bad MAC address */
Joe Perches1dc32912008-07-11 15:17:08 -07001053 memcpy(netdev->dev_addr, hw->mac_addr, netdev->addr_len);
1054 memcpy(netdev->perm_addr, hw->mac_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Auke Kok67b3c272007-12-17 13:50:23 -08001056 if (!is_valid_ether_addr(netdev->perm_addr))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001057 e_err(probe, "Invalid MAC Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 init_timer(&adapter->tx_fifo_stall_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00001060 adapter->tx_fifo_stall_timer.function = e1000_82547_tx_fifo_stall;
Joe Perchese982f172008-07-11 15:17:18 -07001061 adapter->tx_fifo_stall_timer.data = (unsigned long)adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00001064 adapter->watchdog_timer.function = e1000_watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 adapter->watchdog_timer.data = (unsigned long) adapter;
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 init_timer(&adapter->phy_info_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00001068 adapter->phy_info_timer.function = e1000_update_phy_info;
Joe Perchese982f172008-07-11 15:17:18 -07001069 adapter->phy_info_timer.data = (unsigned long)adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00001071 INIT_WORK(&adapter->fifo_stall_task, e1000_82547_tx_fifo_stall_task);
David Howells65f27f32006-11-22 14:55:48 +00001072 INIT_WORK(&adapter->reset_task, e1000_reset_task);
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00001073 INIT_WORK(&adapter->phy_info_task, e1000_update_phy_info_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 e1000_check_options(adapter);
1076
1077 /* Initial Wake on LAN setting
1078 * If APM wake is enabled in the EEPROM,
1079 * enable the ACPI Magic Packet filter
1080 */
1081
Joe Perches1dc32912008-07-11 15:17:08 -07001082 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 case e1000_82542_rev2_0:
1084 case e1000_82542_rev2_1:
1085 case e1000_82543:
1086 break;
1087 case e1000_82544:
Joe Perches1dc32912008-07-11 15:17:08 -07001088 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 EEPROM_INIT_CONTROL2_REG, 1, &eeprom_data);
1090 eeprom_apme_mask = E1000_EEPROM_82544_APM;
1091 break;
1092 case e1000_82546:
1093 case e1000_82546_rev_3:
Joe Perches1dc32912008-07-11 15:17:08 -07001094 if (er32(STATUS) & E1000_STATUS_FUNC_1){
1095 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 EEPROM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
1097 break;
1098 }
1099 /* Fall Through */
1100 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001101 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 EEPROM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
1103 break;
1104 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001105 if (eeprom_data & eeprom_apme_mask)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001106 adapter->eeprom_wol |= E1000_WUFC_MAG;
1107
1108 /* now that we have the eeprom settings, apply the special cases
1109 * where the eeprom may be wrong or the board simply won't support
1110 * wake on lan on a particular port */
1111 switch (pdev->device) {
1112 case E1000_DEV_ID_82546GB_PCIE:
1113 adapter->eeprom_wol = 0;
1114 break;
1115 case E1000_DEV_ID_82546EB_FIBER:
1116 case E1000_DEV_ID_82546GB_FIBER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001117 /* Wake events only supported on port A for dual fiber
1118 * regardless of eeprom setting */
Joe Perches1dc32912008-07-11 15:17:08 -07001119 if (er32(STATUS) & E1000_STATUS_FUNC_1)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001120 adapter->eeprom_wol = 0;
1121 break;
1122 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1123 /* if quad port adapter, disable WoL on all but port A */
1124 if (global_quad_port_a != 0)
1125 adapter->eeprom_wol = 0;
1126 else
1127 adapter->quad_port_a = 1;
1128 /* Reset for multiple quad port adapters */
1129 if (++global_quad_port_a == 4)
1130 global_quad_port_a = 0;
1131 break;
1132 }
1133
1134 /* initialize the wol settings based on the eeprom settings */
1135 adapter->wol = adapter->eeprom_wol;
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001136 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 /* reset the hardware with the new settings */
1139 e1000_reset(adapter);
1140
Auke Kok416b5d12007-06-01 10:22:39 -07001141 strcpy(netdev->name, "eth%d");
Joe Perchesc7be73b2008-07-11 15:17:28 -07001142 err = register_netdev(netdev);
1143 if (err)
Auke Kok416b5d12007-06-01 10:22:39 -07001144 goto err_register;
Auke Kok1314bbf2006-09-27 12:54:02 -07001145
Emil Tantilov675ad472010-04-27 14:02:58 +00001146 /* print bus type/speed/width info */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001147 e_info(probe, "(PCI%s:%dMHz:%d-bit) %pM\n",
Joe Perches7837e582010-06-11 12:51:49 +00001148 ((hw->bus_type == e1000_bus_type_pcix) ? "-X" : ""),
1149 ((hw->bus_speed == e1000_bus_speed_133) ? 133 :
1150 (hw->bus_speed == e1000_bus_speed_120) ? 120 :
1151 (hw->bus_speed == e1000_bus_speed_100) ? 100 :
1152 (hw->bus_speed == e1000_bus_speed_66) ? 66 : 33),
1153 ((hw->bus_width == e1000_bus_width_64) ? 64 : 32),
1154 netdev->dev_addr);
Emil Tantilov675ad472010-04-27 14:02:58 +00001155
Jesse Brandeburgeb62efd2009-04-17 20:44:36 +00001156 /* carrier off reporting is important to ethtool even BEFORE open */
1157 netif_carrier_off(netdev);
1158
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001159 e_info(probe, "Intel(R) PRO/1000 Network Connection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 cards_found++;
1162 return 0;
1163
1164err_register:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001165err_eeprom:
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001166 e1000_phy_hw_reset(hw);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001167
Joe Perches1dc32912008-07-11 15:17:08 -07001168 if (hw->flash_address)
1169 iounmap(hw->flash_address);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001170 kfree(adapter->tx_ring);
1171 kfree(adapter->rx_ring);
Jesse Brandeburge508be12010-09-07 21:01:12 +00001172err_dma:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173err_sw_init:
Joe Perches1dc32912008-07-11 15:17:08 -07001174 iounmap(hw->hw_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175err_ioremap:
1176 free_netdev(netdev);
1177err_alloc_etherdev:
Taku Izumi81250292008-07-11 15:17:44 -07001178 pci_release_selected_regions(pdev, bars);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001179err_pci_reg:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001180 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return err;
1182}
1183
1184/**
1185 * e1000_remove - Device Removal Routine
1186 * @pdev: PCI device information struct
1187 *
1188 * e1000_remove is called by the PCI subsystem to alert the driver
1189 * that it should release a PCI device. The could be caused by a
1190 * Hot-Plug event, or because the driver is going to be removed from
1191 * memory.
1192 **/
1193
Joe Perches64798842008-07-11 15:17:02 -07001194static void __devexit e1000_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
1196 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07001197 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001198 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00001200 set_bit(__E1000_DOWN, &adapter->flags);
1201 del_timer_sync(&adapter->tx_fifo_stall_timer);
1202 del_timer_sync(&adapter->watchdog_timer);
1203 del_timer_sync(&adapter->phy_info_timer);
1204
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07001205 cancel_work_sync(&adapter->reset_task);
Jeff Garzikbe2b28e2005-10-04 07:13:43 -04001206
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05001207 e1000_release_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001209 unregister_netdev(netdev);
1210
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001211 e1000_phy_hw_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001213 kfree(adapter->tx_ring);
1214 kfree(adapter->rx_ring);
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001215
Joe Perches1dc32912008-07-11 15:17:08 -07001216 iounmap(hw->hw_addr);
1217 if (hw->flash_address)
1218 iounmap(hw->flash_address);
Taku Izumi81250292008-07-11 15:17:44 -07001219 pci_release_selected_regions(pdev, adapter->bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 free_netdev(netdev);
1222
1223 pci_disable_device(pdev);
1224}
1225
1226/**
1227 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
1228 * @adapter: board private structure to initialize
1229 *
1230 * e1000_sw_init initializes the Adapter private data structure.
Jesse Brandeburge508be12010-09-07 21:01:12 +00001231 * e1000_init_hw_struct MUST be called before this function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 **/
1233
Joe Perches64798842008-07-11 15:17:02 -07001234static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
Auke Kokeb0f8052006-07-14 16:14:48 -07001236 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001238 adapter->num_tx_queues = 1;
1239 adapter->num_rx_queues = 1;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001240
1241 if (e1000_alloc_queues(adapter)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001242 e_err(probe, "Unable to allocate memory for queues\n");
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001243 return -ENOMEM;
1244 }
1245
Herbert Xu47313052007-05-29 15:07:31 -07001246 /* Explicitly disable IRQ since the NIC can be in any state. */
Herbert Xu47313052007-05-29 15:07:31 -07001247 e1000_irq_disable(adapter);
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 spin_lock_init(&adapter->stats_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Auke Kok1314bbf2006-09-27 12:54:02 -07001251 set_bit(__E1000_DOWN, &adapter->flags);
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return 0;
1254}
1255
1256/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001257 * e1000_alloc_queues - Allocate memory for all rings
1258 * @adapter: board private structure to initialize
1259 *
1260 * We allocate one ring per queue at run-time since we don't know the
Wang Chen3e1d7cd2008-12-03 22:07:10 -08001261 * number of queues at compile-time.
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001262 **/
1263
Joe Perches64798842008-07-11 15:17:02 -07001264static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001265{
Yan Burman1c7e5b12007-03-06 08:58:04 -08001266 adapter->tx_ring = kcalloc(adapter->num_tx_queues,
1267 sizeof(struct e1000_tx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001268 if (!adapter->tx_ring)
1269 return -ENOMEM;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001270
Yan Burman1c7e5b12007-03-06 08:58:04 -08001271 adapter->rx_ring = kcalloc(adapter->num_rx_queues,
1272 sizeof(struct e1000_rx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001273 if (!adapter->rx_ring) {
1274 kfree(adapter->tx_ring);
1275 return -ENOMEM;
1276 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001277
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001278 return E1000_SUCCESS;
1279}
1280
1281/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 * e1000_open - Called when a network interface is made active
1283 * @netdev: network interface device structure
1284 *
1285 * Returns 0 on success, negative value on failure
1286 *
1287 * The open entry point is called when a network interface is made
1288 * active by the system (IFF_UP). At this point all resources needed
1289 * for transmit and receive operations are allocated, the interrupt
1290 * handler is registered with the OS, the watchdog timer is started,
1291 * and the stack is notified that the interface is ready.
1292 **/
1293
Joe Perches64798842008-07-11 15:17:02 -07001294static int e1000_open(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001296 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001297 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 int err;
1299
Auke Kok2db10a02006-06-27 09:06:28 -07001300 /* disallow open during test */
Auke Kok1314bbf2006-09-27 12:54:02 -07001301 if (test_bit(__E1000_TESTING, &adapter->flags))
Auke Kok2db10a02006-06-27 09:06:28 -07001302 return -EBUSY;
1303
Jesse Brandeburgeb62efd2009-04-17 20:44:36 +00001304 netif_carrier_off(netdev);
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 /* allocate transmit descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001307 err = e1000_setup_all_tx_resources(adapter);
1308 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 goto err_setup_tx;
1310
1311 /* allocate receive descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001312 err = e1000_setup_all_rx_resources(adapter);
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001313 if (err)
Auke Koke0aac5a2007-03-06 08:57:21 -08001314 goto err_setup_rx;
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001315
Auke Kok79f05bf2006-06-27 09:06:32 -07001316 e1000_power_up_phy(adapter);
1317
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001318 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Joe Perches1dc32912008-07-11 15:17:08 -07001319 if ((hw->mng_cookie.status &
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001320 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT)) {
1321 e1000_update_mng_vlan(adapter);
1322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Auke Koke0aac5a2007-03-06 08:57:21 -08001324 /* before we allocate an interrupt, we must be ready to handle it.
1325 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
1326 * as soon as we call pci_request_irq, so we have to setup our
1327 * clean_rx handler before we do so. */
1328 e1000_configure(adapter);
1329
1330 err = e1000_request_irq(adapter);
1331 if (err)
1332 goto err_req_irq;
1333
1334 /* From here on the code is the same as e1000_up() */
1335 clear_bit(__E1000_DOWN, &adapter->flags);
1336
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001337 napi_enable(&adapter->napi);
Herbert Xu47313052007-05-29 15:07:31 -07001338
Auke Koke0aac5a2007-03-06 08:57:21 -08001339 e1000_irq_enable(adapter);
1340
Ben Hutchings076152d2008-07-18 17:50:57 -07001341 netif_start_queue(netdev);
1342
Auke Koke0aac5a2007-03-06 08:57:21 -08001343 /* fire a link status change interrupt to start the watchdog */
Joe Perches1dc32912008-07-11 15:17:08 -07001344 ew32(ICS, E1000_ICS_LSC);
Auke Koke0aac5a2007-03-06 08:57:21 -08001345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 return E1000_SUCCESS;
1347
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001348err_req_irq:
Auke Koke0aac5a2007-03-06 08:57:21 -08001349 e1000_power_down_phy(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001350 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351err_setup_rx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001352 e1000_free_all_tx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353err_setup_tx:
1354 e1000_reset(adapter);
1355
1356 return err;
1357}
1358
1359/**
1360 * e1000_close - Disables a network interface
1361 * @netdev: network interface device structure
1362 *
1363 * Returns 0, this is not allowed to fail
1364 *
1365 * The close entry point is called when an interface is de-activated
1366 * by the OS. The hardware is still under the drivers control, but
1367 * needs to be disabled. A global MAC reset is issued to stop the
1368 * hardware, and all transmit and receive resources are freed.
1369 **/
1370
Joe Perches64798842008-07-11 15:17:02 -07001371static int e1000_close(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001373 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001374 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Auke Kok2db10a02006-06-27 09:06:28 -07001376 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 e1000_down(adapter);
Auke Kok79f05bf2006-06-27 09:06:32 -07001378 e1000_power_down_phy(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07001379 e1000_free_irq(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001381 e1000_free_all_tx_resources(adapter);
1382 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Bruce Allan46665602006-09-27 12:54:08 -07001384 /* kill manageability vlan ID if supported, but not if a vlan with
1385 * the same ID is registered on the host OS (let 8021q kill it) */
Joe Perches1dc32912008-07-11 15:17:08 -07001386 if ((hw->mng_cookie.status &
Bruce Allan46665602006-09-27 12:54:08 -07001387 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
1388 !(adapter->vlgrp &&
Dan Aloni5c15bde2007-03-02 20:44:51 -08001389 vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id))) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001390 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
1391 }
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return 0;
1394}
1395
1396/**
1397 * e1000_check_64k_bound - check that memory doesn't cross 64kB boundary
1398 * @adapter: address of board private structure
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001399 * @start: address of beginning of memory
1400 * @len: length of memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 **/
Joe Perches64798842008-07-11 15:17:02 -07001402static bool e1000_check_64k_bound(struct e1000_adapter *adapter, void *start,
1403 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Joe Perches1dc32912008-07-11 15:17:08 -07001405 struct e1000_hw *hw = &adapter->hw;
Joe Perchese982f172008-07-11 15:17:18 -07001406 unsigned long begin = (unsigned long)start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 unsigned long end = begin + len;
1408
Malli Chilakala26483452005-04-28 19:44:46 -07001409 /* First rev 82545 and 82546 need to not allow any memory
1410 * write location to cross 64k boundary due to errata 23 */
Joe Perches1dc32912008-07-11 15:17:08 -07001411 if (hw->mac_type == e1000_82545 ||
1412 hw->mac_type == e1000_82546) {
Joe Perchesc3033b02008-03-21 11:06:25 -07001413 return ((begin ^ (end - 1)) >> 16) != 0 ? false : true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
1415
Joe Perchesc3033b02008-03-21 11:06:25 -07001416 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417}
1418
1419/**
1420 * e1000_setup_tx_resources - allocate Tx resources (Descriptors)
1421 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001422 * @txdr: tx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 *
1424 * Return 0 on success, negative on failure
1425 **/
1426
Joe Perches64798842008-07-11 15:17:02 -07001427static int e1000_setup_tx_resources(struct e1000_adapter *adapter,
1428 struct e1000_tx_ring *txdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 struct pci_dev *pdev = adapter->pdev;
1431 int size;
1432
1433 size = sizeof(struct e1000_buffer) * txdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001434 txdr->buffer_info = vzalloc(size);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001435 if (!txdr->buffer_info) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001436 e_err(probe, "Unable to allocate memory for the Tx descriptor "
1437 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return -ENOMEM;
1439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 /* round up to nearest 4K */
1442
1443 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001444 txdr->size = ALIGN(txdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001446 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
1447 GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001448 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449setup_tx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 vfree(txdr->buffer_info);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001451 e_err(probe, "Unable to allocate memory for the Tx descriptor "
1452 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return -ENOMEM;
1454 }
1455
Malli Chilakala26483452005-04-28 19:44:46 -07001456 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1458 void *olddesc = txdr->desc;
1459 dma_addr_t olddma = txdr->dma;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001460 e_err(tx_err, "txdr align check failed: %u bytes at %p\n",
Emil Tantilov675ad472010-04-27 14:02:58 +00001461 txdr->size, txdr->desc);
Malli Chilakala26483452005-04-28 19:44:46 -07001462 /* Try again, without freeing the previous */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001463 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size,
1464 &txdr->dma, GFP_KERNEL);
Malli Chilakala26483452005-04-28 19:44:46 -07001465 /* Failed allocation, critical failure */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001466 if (!txdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001467 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1468 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 goto setup_tx_desc_die;
1470 }
1471
1472 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1473 /* give up */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001474 dma_free_coherent(&pdev->dev, txdr->size, txdr->desc,
1475 txdr->dma);
1476 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1477 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001478 e_err(probe, "Unable to allocate aligned memory "
Emil Tantilov675ad472010-04-27 14:02:58 +00001479 "for the transmit descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 vfree(txdr->buffer_info);
1481 return -ENOMEM;
1482 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001483 /* Free old allocation, new allocation was successful */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001484 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1485 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
1487 }
1488 memset(txdr->desc, 0, txdr->size);
1489
1490 txdr->next_to_use = 0;
1491 txdr->next_to_clean = 0;
1492
1493 return 0;
1494}
1495
1496/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001497 * e1000_setup_all_tx_resources - wrapper to allocate Tx resources
1498 * (Descriptors) for all queues
1499 * @adapter: board private structure
1500 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001501 * Return 0 on success, negative on failure
1502 **/
1503
Joe Perches64798842008-07-11 15:17:02 -07001504int e1000_setup_all_tx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001505{
1506 int i, err = 0;
1507
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001508 for (i = 0; i < adapter->num_tx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001509 err = e1000_setup_tx_resources(adapter, &adapter->tx_ring[i]);
1510 if (err) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001511 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001512 for (i-- ; i >= 0; i--)
1513 e1000_free_tx_resources(adapter,
1514 &adapter->tx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001515 break;
1516 }
1517 }
1518
1519 return err;
1520}
1521
1522/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
1524 * @adapter: board private structure
1525 *
1526 * Configure the Tx unit of the MAC after a reset.
1527 **/
1528
Joe Perches64798842008-07-11 15:17:02 -07001529static void e1000_configure_tx(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
Joe Perches406874a2008-04-03 10:06:32 -07001531 u64 tdba;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001532 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001533 u32 tdlen, tctl, tipg;
Joe Perches406874a2008-04-03 10:06:32 -07001534 u32 ipgr1, ipgr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 /* Setup the HW Tx Head and Tail descriptor pointers */
1537
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001538 switch (adapter->num_tx_queues) {
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001539 case 1:
1540 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001541 tdba = adapter->tx_ring[0].dma;
1542 tdlen = adapter->tx_ring[0].count *
1543 sizeof(struct e1000_tx_desc);
Joe Perches1dc32912008-07-11 15:17:08 -07001544 ew32(TDLEN, tdlen);
1545 ew32(TDBAH, (tdba >> 32));
1546 ew32(TDBAL, (tdba & 0x00000000ffffffffULL));
1547 ew32(TDT, 0);
1548 ew32(TDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07001549 adapter->tx_ring[0].tdh = ((hw->mac_type >= e1000_82543) ? E1000_TDH : E1000_82542_TDH);
1550 adapter->tx_ring[0].tdt = ((hw->mac_type >= e1000_82543) ? E1000_TDT : E1000_82542_TDT);
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001551 break;
1552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 /* Set the default values for the Tx Inter Packet Gap timer */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001555 if ((hw->media_type == e1000_media_type_fiber ||
Jesse Brandeburgd89b6c62006-12-15 10:38:32 +01001556 hw->media_type == e1000_media_type_internal_serdes))
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001557 tipg = DEFAULT_82543_TIPG_IPGT_FIBER;
1558 else
1559 tipg = DEFAULT_82543_TIPG_IPGT_COPPER;
1560
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001561 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 case e1000_82542_rev2_0:
1563 case e1000_82542_rev2_1:
1564 tipg = DEFAULT_82542_TIPG_IPGT;
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001565 ipgr1 = DEFAULT_82542_TIPG_IPGR1;
1566 ipgr2 = DEFAULT_82542_TIPG_IPGR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 break;
1568 default:
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001569 ipgr1 = DEFAULT_82543_TIPG_IPGR1;
1570 ipgr2 = DEFAULT_82543_TIPG_IPGR2;
1571 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001573 tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
1574 tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
Joe Perches1dc32912008-07-11 15:17:08 -07001575 ew32(TIPG, tipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 /* Set the Tx Interrupt Delay register */
1578
Joe Perches1dc32912008-07-11 15:17:08 -07001579 ew32(TIDV, adapter->tx_int_delay);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001580 if (hw->mac_type >= e1000_82540)
Joe Perches1dc32912008-07-11 15:17:08 -07001581 ew32(TADV, adapter->tx_abs_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 /* Program the Transmit Control Register */
1584
Joe Perches1dc32912008-07-11 15:17:08 -07001585 tctl = er32(TCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 tctl &= ~E1000_TCTL_CT;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001587 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
1589
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001590 e1000_config_collision_dist(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 /* Setup Transmit Descriptor Settings for eop descriptor */
Jesse Brandeburg6a042da2006-11-01 08:48:04 -08001593 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
1594
1595 /* only set IDE if we are delaying interrupts using the timers */
1596 if (adapter->tx_int_delay)
1597 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001599 if (hw->mac_type < e1000_82543)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 adapter->txd_cmd |= E1000_TXD_CMD_RPS;
1601 else
1602 adapter->txd_cmd |= E1000_TXD_CMD_RS;
1603
1604 /* Cache if we're 82544 running in PCI-X because we'll
1605 * need this to apply a workaround later in the send path. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001606 if (hw->mac_type == e1000_82544 &&
1607 hw->bus_type == e1000_bus_type_pcix)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 adapter->pcix_82544 = 1;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001609
Joe Perches1dc32912008-07-11 15:17:08 -07001610 ew32(TCTL, tctl);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
1614/**
1615 * e1000_setup_rx_resources - allocate Rx resources (Descriptors)
1616 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001617 * @rxdr: rx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 *
1619 * Returns 0 on success, negative on failure
1620 **/
1621
Joe Perches64798842008-07-11 15:17:02 -07001622static int e1000_setup_rx_resources(struct e1000_adapter *adapter,
1623 struct e1000_rx_ring *rxdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 struct pci_dev *pdev = adapter->pdev;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001626 int size, desc_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 size = sizeof(struct e1000_buffer) * rxdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001629 rxdr->buffer_info = vzalloc(size);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001630 if (!rxdr->buffer_info) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001631 e_err(probe, "Unable to allocate memory for the Rx descriptor "
1632 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 return -ENOMEM;
1634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001636 desc_len = sizeof(struct e1000_rx_desc);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 /* Round up to nearest 4K */
1639
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001640 rxdr->size = rxdr->count * desc_len;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001641 rxdr->size = ALIGN(rxdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001643 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
1644 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001646 if (!rxdr->desc) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001647 e_err(probe, "Unable to allocate memory for the Rx descriptor "
1648 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649setup_rx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 vfree(rxdr->buffer_info);
1651 return -ENOMEM;
1652 }
1653
Malli Chilakala26483452005-04-28 19:44:46 -07001654 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1656 void *olddesc = rxdr->desc;
1657 dma_addr_t olddma = rxdr->dma;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001658 e_err(rx_err, "rxdr align check failed: %u bytes at %p\n",
Emil Tantilov675ad472010-04-27 14:02:58 +00001659 rxdr->size, rxdr->desc);
Malli Chilakala26483452005-04-28 19:44:46 -07001660 /* Try again, without freeing the previous */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001661 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size,
1662 &rxdr->dma, GFP_KERNEL);
Malli Chilakala26483452005-04-28 19:44:46 -07001663 /* Failed allocation, critical failure */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001664 if (!rxdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001665 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1666 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001667 e_err(probe, "Unable to allocate memory for the Rx "
1668 "descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 goto setup_rx_desc_die;
1670 }
1671
1672 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1673 /* give up */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001674 dma_free_coherent(&pdev->dev, rxdr->size, rxdr->desc,
1675 rxdr->dma);
1676 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1677 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001678 e_err(probe, "Unable to allocate aligned memory for "
1679 "the Rx descriptor ring\n");
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001680 goto setup_rx_desc_die;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001682 /* Free old allocation, new allocation was successful */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001683 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1684 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
1686 }
1687 memset(rxdr->desc, 0, rxdr->size);
1688
1689 rxdr->next_to_clean = 0;
1690 rxdr->next_to_use = 0;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00001691 rxdr->rx_skb_top = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693 return 0;
1694}
1695
1696/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001697 * e1000_setup_all_rx_resources - wrapper to allocate Rx resources
1698 * (Descriptors) for all queues
1699 * @adapter: board private structure
1700 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001701 * Return 0 on success, negative on failure
1702 **/
1703
Joe Perches64798842008-07-11 15:17:02 -07001704int e1000_setup_all_rx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001705{
1706 int i, err = 0;
1707
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001708 for (i = 0; i < adapter->num_rx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001709 err = e1000_setup_rx_resources(adapter, &adapter->rx_ring[i]);
1710 if (err) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001711 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001712 for (i-- ; i >= 0; i--)
1713 e1000_free_rx_resources(adapter,
1714 &adapter->rx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001715 break;
1716 }
1717 }
1718
1719 return err;
1720}
1721
1722/**
Malli Chilakala26483452005-04-28 19:44:46 -07001723 * e1000_setup_rctl - configure the receive control registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 * @adapter: Board private structure
1725 **/
Joe Perches64798842008-07-11 15:17:02 -07001726static void e1000_setup_rctl(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
Joe Perches1dc32912008-07-11 15:17:08 -07001728 struct e1000_hw *hw = &adapter->hw;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001729 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Joe Perches1dc32912008-07-11 15:17:08 -07001731 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
1734
1735 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
1736 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001737 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Joe Perches1dc32912008-07-11 15:17:08 -07001739 if (hw->tbi_compatibility_on == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 rctl |= E1000_RCTL_SBP;
1741 else
1742 rctl &= ~E1000_RCTL_SBP;
1743
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001744 if (adapter->netdev->mtu <= ETH_DATA_LEN)
1745 rctl &= ~E1000_RCTL_LPE;
1746 else
1747 rctl |= E1000_RCTL_LPE;
1748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 /* Setup buffer sizes */
Auke Kok9e2feac2006-04-14 19:05:18 -07001750 rctl &= ~E1000_RCTL_SZ_4096;
1751 rctl |= E1000_RCTL_BSEX;
1752 switch (adapter->rx_buffer_len) {
Jeff Kirshera1415ee2006-02-28 20:24:07 -08001753 case E1000_RXBUFFER_2048:
1754 default:
1755 rctl |= E1000_RCTL_SZ_2048;
1756 rctl &= ~E1000_RCTL_BSEX;
1757 break;
1758 case E1000_RXBUFFER_4096:
1759 rctl |= E1000_RCTL_SZ_4096;
1760 break;
1761 case E1000_RXBUFFER_8192:
1762 rctl |= E1000_RCTL_SZ_8192;
1763 break;
1764 case E1000_RXBUFFER_16384:
1765 rctl |= E1000_RCTL_SZ_16384;
1766 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001767 }
1768
Joe Perches1dc32912008-07-11 15:17:08 -07001769 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
1771
1772/**
1773 * e1000_configure_rx - Configure 8254x Receive Unit after Reset
1774 * @adapter: board private structure
1775 *
1776 * Configure the Rx unit of the MAC after a reset.
1777 **/
1778
Joe Perches64798842008-07-11 15:17:02 -07001779static void e1000_configure_rx(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
Joe Perches406874a2008-04-03 10:06:32 -07001781 u64 rdba;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001782 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001783 u32 rdlen, rctl, rxcsum;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001784
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00001785 if (adapter->netdev->mtu > ETH_DATA_LEN) {
1786 rdlen = adapter->rx_ring[0].count *
1787 sizeof(struct e1000_rx_desc);
1788 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
1789 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
1790 } else {
1791 rdlen = adapter->rx_ring[0].count *
1792 sizeof(struct e1000_rx_desc);
1793 adapter->clean_rx = e1000_clean_rx_irq;
1794 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
1795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
1797 /* disable receives while setting up the descriptors */
Joe Perches1dc32912008-07-11 15:17:08 -07001798 rctl = er32(RCTL);
1799 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
1801 /* set the Receive Delay Timer Register */
Joe Perches1dc32912008-07-11 15:17:08 -07001802 ew32(RDTR, adapter->rx_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001804 if (hw->mac_type >= e1000_82540) {
Joe Perches1dc32912008-07-11 15:17:08 -07001805 ew32(RADV, adapter->rx_abs_int_delay);
Jesse Brandeburg835bb122006-11-01 08:48:13 -08001806 if (adapter->itr_setting != 0)
Joe Perches1dc32912008-07-11 15:17:08 -07001807 ew32(ITR, 1000000000 / (adapter->itr * 256));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
1809
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001810 /* Setup the HW Rx Head and Tail Descriptor Pointers and
1811 * the Base and Length of the Rx Descriptor Ring */
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001812 switch (adapter->num_rx_queues) {
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001813 case 1:
1814 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001815 rdba = adapter->rx_ring[0].dma;
Joe Perches1dc32912008-07-11 15:17:08 -07001816 ew32(RDLEN, rdlen);
1817 ew32(RDBAH, (rdba >> 32));
1818 ew32(RDBAL, (rdba & 0x00000000ffffffffULL));
1819 ew32(RDT, 0);
1820 ew32(RDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07001821 adapter->rx_ring[0].rdh = ((hw->mac_type >= e1000_82543) ? E1000_RDH : E1000_82542_RDH);
1822 adapter->rx_ring[0].rdt = ((hw->mac_type >= e1000_82543) ? E1000_RDT : E1000_82542_RDT);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001823 break;
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001824 }
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 /* Enable 82543 Receive Checksum Offload for TCP and UDP */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001827 if (hw->mac_type >= e1000_82543) {
Joe Perches1dc32912008-07-11 15:17:08 -07001828 rxcsum = er32(RXCSUM);
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001829 if (adapter->rx_csum)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001830 rxcsum |= E1000_RXCSUM_TUOFL;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001831 else
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001832 /* don't need to clear IPPCSE as it defaults to 0 */
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001833 rxcsum &= ~E1000_RXCSUM_TUOFL;
Joe Perches1dc32912008-07-11 15:17:08 -07001834 ew32(RXCSUM, rxcsum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 }
1836
1837 /* Enable Receives */
Joe Perches1dc32912008-07-11 15:17:08 -07001838 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
1841/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001842 * e1000_free_tx_resources - Free Tx Resources per Queue
1843 * @adapter: board private structure
1844 * @tx_ring: Tx descriptor ring for a specific queue
1845 *
1846 * Free all transmit software resources
1847 **/
1848
Joe Perches64798842008-07-11 15:17:02 -07001849static void e1000_free_tx_resources(struct e1000_adapter *adapter,
1850 struct e1000_tx_ring *tx_ring)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001851{
1852 struct pci_dev *pdev = adapter->pdev;
1853
1854 e1000_clean_tx_ring(adapter, tx_ring);
1855
1856 vfree(tx_ring->buffer_info);
1857 tx_ring->buffer_info = NULL;
1858
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001859 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
1860 tx_ring->dma);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001861
1862 tx_ring->desc = NULL;
1863}
1864
1865/**
1866 * e1000_free_all_tx_resources - Free Tx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 * @adapter: board private structure
1868 *
1869 * Free all transmit software resources
1870 **/
1871
Joe Perches64798842008-07-11 15:17:02 -07001872void e1000_free_all_tx_resources(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001874 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001876 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001877 e1000_free_tx_resources(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878}
1879
Joe Perches64798842008-07-11 15:17:02 -07001880static void e1000_unmap_and_free_tx_resource(struct e1000_adapter *adapter,
1881 struct e1000_buffer *buffer_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
Alexander Duyck602c0552009-12-02 16:46:00 +00001883 if (buffer_info->dma) {
1884 if (buffer_info->mapped_as_page)
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001885 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
1886 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck602c0552009-12-02 16:46:00 +00001887 else
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001888 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
Alexander Duyck602c0552009-12-02 16:46:00 +00001889 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001890 DMA_TO_DEVICE);
Alexander Duyck602c0552009-12-02 16:46:00 +00001891 buffer_info->dma = 0;
1892 }
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001893 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 dev_kfree_skb_any(buffer_info->skb);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001895 buffer_info->skb = NULL;
1896 }
Alexander Duyck37e73df2009-03-25 21:58:45 +00001897 buffer_info->time_stamp = 0;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001898 /* buffer_info must be completely set up in the transmit path */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899}
1900
1901/**
1902 * e1000_clean_tx_ring - Free Tx Buffers
1903 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001904 * @tx_ring: ring to be cleaned
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 **/
1906
Joe Perches64798842008-07-11 15:17:02 -07001907static void e1000_clean_tx_ring(struct e1000_adapter *adapter,
1908 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Joe Perches1dc32912008-07-11 15:17:08 -07001910 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 struct e1000_buffer *buffer_info;
1912 unsigned long size;
1913 unsigned int i;
1914
1915 /* Free all the Tx ring sk_buffs */
1916
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001917 for (i = 0; i < tx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 buffer_info = &tx_ring->buffer_info[i];
1919 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
1920 }
1921
1922 size = sizeof(struct e1000_buffer) * tx_ring->count;
1923 memset(tx_ring->buffer_info, 0, size);
1924
1925 /* Zero out the descriptor ring */
1926
1927 memset(tx_ring->desc, 0, tx_ring->size);
1928
1929 tx_ring->next_to_use = 0;
1930 tx_ring->next_to_clean = 0;
Jeff Kirsherfd803242005-12-13 00:06:22 -05001931 tx_ring->last_tx_tso = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Joe Perches1dc32912008-07-11 15:17:08 -07001933 writel(0, hw->hw_addr + tx_ring->tdh);
1934 writel(0, hw->hw_addr + tx_ring->tdt);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001935}
1936
1937/**
1938 * e1000_clean_all_tx_rings - Free Tx Buffers for all queues
1939 * @adapter: board private structure
1940 **/
1941
Joe Perches64798842008-07-11 15:17:02 -07001942static void e1000_clean_all_tx_rings(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001943{
1944 int i;
1945
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001946 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001947 e1000_clean_tx_ring(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
1949
1950/**
1951 * e1000_free_rx_resources - Free Rx Resources
1952 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001953 * @rx_ring: ring to clean the resources from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 *
1955 * Free all receive software resources
1956 **/
1957
Joe Perches64798842008-07-11 15:17:02 -07001958static void e1000_free_rx_resources(struct e1000_adapter *adapter,
1959 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 struct pci_dev *pdev = adapter->pdev;
1962
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001963 e1000_clean_rx_ring(adapter, rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 vfree(rx_ring->buffer_info);
1966 rx_ring->buffer_info = NULL;
1967
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001968 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
1969 rx_ring->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 rx_ring->desc = NULL;
1972}
1973
1974/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001975 * e1000_free_all_rx_resources - Free Rx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001977 *
1978 * Free all receive software resources
1979 **/
1980
Joe Perches64798842008-07-11 15:17:02 -07001981void e1000_free_all_rx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001982{
1983 int i;
1984
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001985 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001986 e1000_free_rx_resources(adapter, &adapter->rx_ring[i]);
1987}
1988
1989/**
1990 * e1000_clean_rx_ring - Free Rx Buffers per Queue
1991 * @adapter: board private structure
1992 * @rx_ring: ring to free buffers from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 **/
1994
Joe Perches64798842008-07-11 15:17:02 -07001995static void e1000_clean_rx_ring(struct e1000_adapter *adapter,
1996 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
Joe Perches1dc32912008-07-11 15:17:08 -07001998 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 struct e1000_buffer *buffer_info;
2000 struct pci_dev *pdev = adapter->pdev;
2001 unsigned long size;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07002002 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004 /* Free all the Rx ring sk_buffs */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002005 for (i = 0; i < rx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 buffer_info = &rx_ring->buffer_info[i];
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002007 if (buffer_info->dma &&
2008 adapter->clean_rx == e1000_clean_rx_irq) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002009 dma_unmap_single(&pdev->dev, buffer_info->dma,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002010 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002011 DMA_FROM_DEVICE);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002012 } else if (buffer_info->dma &&
2013 adapter->clean_rx == e1000_clean_jumbo_rx_irq) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002014 dma_unmap_page(&pdev->dev, buffer_info->dma,
2015 buffer_info->length,
2016 DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002019 buffer_info->dma = 0;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002020 if (buffer_info->page) {
2021 put_page(buffer_info->page);
2022 buffer_info->page = NULL;
2023 }
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002024 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 dev_kfree_skb(buffer_info->skb);
2026 buffer_info->skb = NULL;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08002027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
2029
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002030 /* there also may be some cached data from a chained receive */
2031 if (rx_ring->rx_skb_top) {
2032 dev_kfree_skb(rx_ring->rx_skb_top);
2033 rx_ring->rx_skb_top = NULL;
2034 }
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 size = sizeof(struct e1000_buffer) * rx_ring->count;
2037 memset(rx_ring->buffer_info, 0, size);
2038
2039 /* Zero out the descriptor ring */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 memset(rx_ring->desc, 0, rx_ring->size);
2041
2042 rx_ring->next_to_clean = 0;
2043 rx_ring->next_to_use = 0;
2044
Joe Perches1dc32912008-07-11 15:17:08 -07002045 writel(0, hw->hw_addr + rx_ring->rdh);
2046 writel(0, hw->hw_addr + rx_ring->rdt);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002047}
2048
2049/**
2050 * e1000_clean_all_rx_rings - Free Rx Buffers for all queues
2051 * @adapter: board private structure
2052 **/
2053
Joe Perches64798842008-07-11 15:17:02 -07002054static void e1000_clean_all_rx_rings(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002055{
2056 int i;
2057
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002058 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002059 e1000_clean_rx_ring(adapter, &adapter->rx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060}
2061
2062/* The 82542 2.0 (revision 2) needs to have the receive unit in reset
2063 * and memory write and invalidate disabled for certain operations
2064 */
Joe Perches64798842008-07-11 15:17:02 -07002065static void e1000_enter_82542_rst(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
Joe Perches1dc32912008-07-11 15:17:08 -07002067 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002069 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Joe Perches1dc32912008-07-11 15:17:08 -07002071 e1000_pci_clear_mwi(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Joe Perches1dc32912008-07-11 15:17:08 -07002073 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 rctl |= E1000_RCTL_RST;
Joe Perches1dc32912008-07-11 15:17:08 -07002075 ew32(RCTL, rctl);
2076 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 mdelay(5);
2078
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002079 if (netif_running(netdev))
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002080 e1000_clean_all_rx_rings(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}
2082
Joe Perches64798842008-07-11 15:17:02 -07002083static void e1000_leave_82542_rst(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Joe Perches1dc32912008-07-11 15:17:08 -07002085 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002087 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Joe Perches1dc32912008-07-11 15:17:08 -07002089 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 rctl &= ~E1000_RCTL_RST;
Joe Perches1dc32912008-07-11 15:17:08 -07002091 ew32(RCTL, rctl);
2092 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 mdelay(5);
2094
Joe Perches1dc32912008-07-11 15:17:08 -07002095 if (hw->pci_cmd_word & PCI_COMMAND_INVALIDATE)
2096 e1000_pci_set_mwi(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002098 if (netif_running(netdev)) {
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002099 /* No need to loop, because 82542 supports only 1 queue */
2100 struct e1000_rx_ring *ring = &adapter->rx_ring[0];
Jesse Brandeburg7c4d3362006-01-18 13:01:45 -08002101 e1000_configure_rx(adapter);
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002102 adapter->alloc_rx_buf(adapter, ring, E1000_DESC_UNUSED(ring));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 }
2104}
2105
2106/**
2107 * e1000_set_mac - Change the Ethernet Address of the NIC
2108 * @netdev: network interface device structure
2109 * @p: pointer to an address structure
2110 *
2111 * Returns 0 on success, negative on failure
2112 **/
2113
Joe Perches64798842008-07-11 15:17:02 -07002114static int e1000_set_mac(struct net_device *netdev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002116 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07002117 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 struct sockaddr *addr = p;
2119
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002120 if (!is_valid_ether_addr(addr->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 return -EADDRNOTAVAIL;
2122
2123 /* 82542 2.0 needs to be in reset to write receive address registers */
2124
Joe Perches1dc32912008-07-11 15:17:08 -07002125 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 e1000_enter_82542_rst(adapter);
2127
2128 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Joe Perches1dc32912008-07-11 15:17:08 -07002129 memcpy(hw->mac_addr, addr->sa_data, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Joe Perches1dc32912008-07-11 15:17:08 -07002131 e1000_rar_set(hw, hw->mac_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Joe Perches1dc32912008-07-11 15:17:08 -07002133 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 e1000_leave_82542_rst(adapter);
2135
2136 return 0;
2137}
2138
2139/**
Patrick McHardydb0ce502007-11-13 20:54:59 -08002140 * e1000_set_rx_mode - Secondary Unicast, Multicast and Promiscuous mode set
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 * @netdev: network interface device structure
2142 *
Patrick McHardydb0ce502007-11-13 20:54:59 -08002143 * The set_rx_mode entry point is called whenever the unicast or multicast
2144 * address lists or the network interface flags are updated. This routine is
2145 * responsible for configuring the hardware for proper unicast, multicast,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 * promiscuous mode, and all-multi behavior.
2147 **/
2148
Joe Perches64798842008-07-11 15:17:02 -07002149static void e1000_set_rx_mode(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002151 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 struct e1000_hw *hw = &adapter->hw;
Jiri Pirkoccffad252009-05-22 23:22:17 +00002153 struct netdev_hw_addr *ha;
2154 bool use_uc = false;
Joe Perches406874a2008-04-03 10:06:32 -07002155 u32 rctl;
2156 u32 hash_value;
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002157 int i, rar_entries = E1000_RAR_ENTRIES;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002158 int mta_reg_count = E1000_NUM_MTA_REGISTERS;
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002159 u32 *mcarray = kcalloc(mta_reg_count, sizeof(u32), GFP_ATOMIC);
2160
2161 if (!mcarray) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07002162 e_err(probe, "memory allocation failed\n");
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002163 return;
2164 }
Auke Kokcd94dd02006-06-27 09:08:22 -07002165
Malli Chilakala26483452005-04-28 19:44:46 -07002166 /* Check for Promiscuous and All Multicast modes */
2167
Joe Perches1dc32912008-07-11 15:17:08 -07002168 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002170 if (netdev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Patrick McHardy746b9f02008-07-16 20:15:45 -07002172 rctl &= ~E1000_RCTL_VFE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 } else {
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002174 if (netdev->flags & IFF_ALLMULTI)
Patrick McHardy746b9f02008-07-16 20:15:45 -07002175 rctl |= E1000_RCTL_MPE;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002176 else
Patrick McHardy746b9f02008-07-16 20:15:45 -07002177 rctl &= ~E1000_RCTL_MPE;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002178 /* Enable VLAN filter if there is a VLAN */
2179 if (adapter->vlgrp)
2180 rctl |= E1000_RCTL_VFE;
Patrick McHardydb0ce502007-11-13 20:54:59 -08002181 }
2182
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08002183 if (netdev_uc_count(netdev) > rar_entries - 1) {
Patrick McHardydb0ce502007-11-13 20:54:59 -08002184 rctl |= E1000_RCTL_UPE;
2185 } else if (!(netdev->flags & IFF_PROMISC)) {
2186 rctl &= ~E1000_RCTL_UPE;
Jiri Pirkoccffad252009-05-22 23:22:17 +00002187 use_uc = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 }
2189
Joe Perches1dc32912008-07-11 15:17:08 -07002190 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192 /* 82542 2.0 needs to be in reset to write receive address registers */
2193
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002194 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 e1000_enter_82542_rst(adapter);
2196
Patrick McHardydb0ce502007-11-13 20:54:59 -08002197 /* load the first 14 addresses into the exact filters 1-14. Unicast
2198 * addresses take precedence to avoid disabling unicast filtering
2199 * when possible.
2200 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 * RAR 0 is used for the station MAC adddress
2202 * if there are not 14 addresses, go ahead and clear the filters
2203 */
Jiri Pirkoccffad252009-05-22 23:22:17 +00002204 i = 1;
2205 if (use_uc)
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08002206 netdev_for_each_uc_addr(ha, netdev) {
Jiri Pirkoccffad252009-05-22 23:22:17 +00002207 if (i == rar_entries)
2208 break;
2209 e1000_rar_set(hw, ha->addr, i++);
2210 }
2211
Jiri Pirko22bedad32010-04-01 21:22:57 +00002212 netdev_for_each_mc_addr(ha, netdev) {
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002213 if (i == rar_entries) {
2214 /* load any remaining addresses into the hash table */
2215 u32 hash_reg, hash_bit, mta;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002216 hash_value = e1000_hash_mc_addr(hw, ha->addr);
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002217 hash_reg = (hash_value >> 5) & 0x7F;
2218 hash_bit = hash_value & 0x1F;
2219 mta = (1 << hash_bit);
2220 mcarray[hash_reg] |= mta;
Jiri Pirko10886af2010-02-23 01:19:22 -08002221 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002222 e1000_rar_set(hw, ha->addr, i++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 }
2224 }
2225
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002226 for (; i < rar_entries; i++) {
2227 E1000_WRITE_REG_ARRAY(hw, RA, i << 1, 0);
2228 E1000_WRITE_FLUSH();
2229 E1000_WRITE_REG_ARRAY(hw, RA, (i << 1) + 1, 0);
2230 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 }
2232
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002233 /* write the hash table completely, write from bottom to avoid
2234 * both stupid write combining chipsets, and flushing each write */
2235 for (i = mta_reg_count - 1; i >= 0 ; i--) {
2236 /*
2237 * If we are on an 82544 has an errata where writing odd
2238 * offsets overwrites the previous even offset, but writing
2239 * backwards over the range solves the issue by always
2240 * writing the odd offset first
2241 */
2242 E1000_WRITE_REG_ARRAY(hw, MTA, i, mcarray[i]);
2243 }
2244 E1000_WRITE_FLUSH();
2245
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002246 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 e1000_leave_82542_rst(adapter);
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002248
2249 kfree(mcarray);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250}
2251
2252/* Need to wait a few seconds after link up to get diagnostic information from
2253 * the phy */
2254
Joe Perches64798842008-07-11 15:17:02 -07002255static void e1000_update_phy_info(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
Joe Perchese982f172008-07-11 15:17:18 -07002257 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00002258 schedule_work(&adapter->phy_info_task);
2259}
2260
2261static void e1000_update_phy_info_task(struct work_struct *work)
2262{
2263 struct e1000_adapter *adapter = container_of(work,
2264 struct e1000_adapter,
2265 phy_info_task);
Joe Perches1dc32912008-07-11 15:17:08 -07002266 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002267
2268 rtnl_lock();
Joe Perches1dc32912008-07-11 15:17:08 -07002269 e1000_phy_get_info(hw, &adapter->phy_info);
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002270 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271}
2272
2273/**
2274 * e1000_82547_tx_fifo_stall - Timer Call-back
2275 * @data: pointer to adapter cast into an unsigned long
2276 **/
Joe Perches64798842008-07-11 15:17:02 -07002277static void e1000_82547_tx_fifo_stall(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
Joe Perchese982f172008-07-11 15:17:18 -07002279 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00002280 schedule_work(&adapter->fifo_stall_task);
2281}
2282
2283/**
2284 * e1000_82547_tx_fifo_stall_task - task to complete work
2285 * @work: work struct contained inside adapter struct
2286 **/
2287static void e1000_82547_tx_fifo_stall_task(struct work_struct *work)
2288{
2289 struct e1000_adapter *adapter = container_of(work,
2290 struct e1000_adapter,
2291 fifo_stall_task);
Joe Perches1dc32912008-07-11 15:17:08 -07002292 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002294 u32 tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002296 rtnl_lock();
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002297 if (atomic_read(&adapter->tx_fifo_stall)) {
Joe Perches1dc32912008-07-11 15:17:08 -07002298 if ((er32(TDT) == er32(TDH)) &&
2299 (er32(TDFT) == er32(TDFH)) &&
2300 (er32(TDFTS) == er32(TDFHS))) {
2301 tctl = er32(TCTL);
2302 ew32(TCTL, tctl & ~E1000_TCTL_EN);
2303 ew32(TDFT, adapter->tx_head_addr);
2304 ew32(TDFH, adapter->tx_head_addr);
2305 ew32(TDFTS, adapter->tx_head_addr);
2306 ew32(TDFHS, adapter->tx_head_addr);
2307 ew32(TCTL, tctl);
2308 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
2310 adapter->tx_fifo_head = 0;
2311 atomic_set(&adapter->tx_fifo_stall, 0);
2312 netif_wake_queue(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002313 } else if (!test_bit(__E1000_DOWN, &adapter->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 mod_timer(&adapter->tx_fifo_stall_timer, jiffies + 1);
2315 }
2316 }
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002317 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318}
2319
Nick Nunleyb5481922010-02-03 14:49:28 +00002320bool e1000_has_link(struct e1000_adapter *adapter)
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002321{
2322 struct e1000_hw *hw = &adapter->hw;
2323 bool link_active = false;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002324
2325 /* get_link_status is set on LSC (link status) interrupt or
2326 * rx sequence error interrupt. get_link_status will stay
2327 * false until the e1000_check_for_link establishes link
2328 * for copper adapters ONLY
2329 */
2330 switch (hw->media_type) {
2331 case e1000_media_type_copper:
2332 if (hw->get_link_status) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002333 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002334 link_active = !hw->get_link_status;
2335 } else {
2336 link_active = true;
2337 }
2338 break;
2339 case e1000_media_type_fiber:
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002340 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002341 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
2342 break;
2343 case e1000_media_type_internal_serdes:
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002344 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002345 link_active = hw->serdes_has_link;
2346 break;
2347 default:
2348 break;
2349 }
2350
2351 return link_active;
2352}
2353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354/**
2355 * e1000_watchdog - Timer Call-back
2356 * @data: pointer to adapter cast into an unsigned long
2357 **/
Joe Perches64798842008-07-11 15:17:02 -07002358static void e1000_watchdog(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
Joe Perchese982f172008-07-11 15:17:18 -07002360 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Joe Perches1dc32912008-07-11 15:17:08 -07002361 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 struct net_device *netdev = adapter->netdev;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002363 struct e1000_tx_ring *txdr = adapter->tx_ring;
Joe Perches406874a2008-04-03 10:06:32 -07002364 u32 link, tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002366 link = e1000_has_link(adapter);
2367 if ((netif_carrier_ok(netdev)) && link)
2368 goto link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002370 if (link) {
2371 if (!netif_carrier_ok(netdev)) {
Joe Perches406874a2008-04-03 10:06:32 -07002372 u32 ctrl;
Joe Perchesc3033b02008-03-21 11:06:25 -07002373 bool txb2b = true;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002374 /* update snapshot of PHY registers on LSC */
Joe Perches1dc32912008-07-11 15:17:08 -07002375 e1000_get_speed_and_duplex(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 &adapter->link_speed,
2377 &adapter->link_duplex);
2378
Joe Perches1dc32912008-07-11 15:17:08 -07002379 ctrl = er32(CTRL);
Emil Tantilov675ad472010-04-27 14:02:58 +00002380 pr_info("%s NIC Link is Up %d Mbps %s, "
2381 "Flow Control: %s\n",
2382 netdev->name,
2383 adapter->link_speed,
2384 adapter->link_duplex == FULL_DUPLEX ?
2385 "Full Duplex" : "Half Duplex",
2386 ((ctrl & E1000_CTRL_TFCE) && (ctrl &
2387 E1000_CTRL_RFCE)) ? "RX/TX" : ((ctrl &
2388 E1000_CTRL_RFCE) ? "RX" : ((ctrl &
2389 E1000_CTRL_TFCE) ? "TX" : "None")));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Emil Tantilov39ca5f02010-03-26 11:25:58 +00002391 /* adjust timeout factor according to speed/duplex */
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002392 adapter->tx_timeout_factor = 1;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002393 switch (adapter->link_speed) {
2394 case SPEED_10:
Joe Perchesc3033b02008-03-21 11:06:25 -07002395 txb2b = false;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002396 adapter->tx_timeout_factor = 16;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002397 break;
2398 case SPEED_100:
Joe Perchesc3033b02008-03-21 11:06:25 -07002399 txb2b = false;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002400 /* maybe add some timeout factor ? */
2401 break;
2402 }
2403
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002404 /* enable transmits in the hardware */
Joe Perches1dc32912008-07-11 15:17:08 -07002405 tctl = er32(TCTL);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002406 tctl |= E1000_TCTL_EN;
Joe Perches1dc32912008-07-11 15:17:08 -07002407 ew32(TCTL, tctl);
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 netif_carrier_on(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002410 if (!test_bit(__E1000_DOWN, &adapter->flags))
2411 mod_timer(&adapter->phy_info_timer,
2412 round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 adapter->smartspeed = 0;
2414 }
2415 } else {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002416 if (netif_carrier_ok(netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 adapter->link_speed = 0;
2418 adapter->link_duplex = 0;
Emil Tantilov675ad472010-04-27 14:02:58 +00002419 pr_info("%s NIC Link is Down\n",
2420 netdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 netif_carrier_off(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002422
2423 if (!test_bit(__E1000_DOWN, &adapter->flags))
2424 mod_timer(&adapter->phy_info_timer,
2425 round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 }
2427
2428 e1000_smartspeed(adapter);
2429 }
2430
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002431link_up:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 e1000_update_stats(adapter);
2433
Joe Perches1dc32912008-07-11 15:17:08 -07002434 hw->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 adapter->tpt_old = adapter->stats.tpt;
Joe Perches1dc32912008-07-11 15:17:08 -07002436 hw->collision_delta = adapter->stats.colc - adapter->colc_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 adapter->colc_old = adapter->stats.colc;
2438
2439 adapter->gorcl = adapter->stats.gorcl - adapter->gorcl_old;
2440 adapter->gorcl_old = adapter->stats.gorcl;
2441 adapter->gotcl = adapter->stats.gotcl - adapter->gotcl_old;
2442 adapter->gotcl_old = adapter->stats.gotcl;
2443
Joe Perches1dc32912008-07-11 15:17:08 -07002444 e1000_update_adaptive(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002446 if (!netif_carrier_ok(netdev)) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002447 if (E1000_DESC_UNUSED(txdr) + 1 < txdr->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 /* We've lost link, so the controller stops DMA,
2449 * but we've got queued Tx work that's never going
2450 * to get done, so reset controller to flush Tx.
2451 * (Do the reset outside of interrupt context). */
Jeff Kirsher87041632006-03-02 18:21:24 -08002452 adapter->tx_timeout_count++;
2453 schedule_work(&adapter->reset_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00002454 /* return immediately since reset is imminent */
2455 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 }
2457 }
2458
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00002459 /* Simple mode for Interrupt Throttle Rate (ITR) */
2460 if (hw->mac_type >= e1000_82540 && adapter->itr_setting == 4) {
2461 /*
2462 * Symmetric Tx/Rx gets a reduced ITR=2000;
2463 * Total asymmetrical Tx or Rx gets ITR=8000;
2464 * everyone else is between 2000-8000.
2465 */
2466 u32 goc = (adapter->gotcl + adapter->gorcl) / 10000;
2467 u32 dif = (adapter->gotcl > adapter->gorcl ?
2468 adapter->gotcl - adapter->gorcl :
2469 adapter->gorcl - adapter->gotcl) / 10000;
2470 u32 itr = goc > 0 ? (dif * 6000 / goc + 2000) : 8000;
2471
2472 ew32(ITR, 1000000000 / (itr * 256));
2473 }
2474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 /* Cause software interrupt to ensure rx ring is cleaned */
Joe Perches1dc32912008-07-11 15:17:08 -07002476 ew32(ICS, E1000_ICS_RXDMT0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Malli Chilakala26483452005-04-28 19:44:46 -07002478 /* Force detection of hung controller every watchdog period */
Joe Perchesc3033b02008-03-21 11:06:25 -07002479 adapter->detect_tx_hung = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
2481 /* Reset the timer */
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002482 if (!test_bit(__E1000_DOWN, &adapter->flags))
2483 mod_timer(&adapter->watchdog_timer,
2484 round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485}
2486
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002487enum latency_range {
2488 lowest_latency = 0,
2489 low_latency = 1,
2490 bulk_latency = 2,
2491 latency_invalid = 255
2492};
2493
2494/**
2495 * e1000_update_itr - update the dynamic ITR value based on statistics
Jesse Brandeburg8fce4732009-09-25 12:18:41 +00002496 * @adapter: pointer to adapter
2497 * @itr_setting: current adapter->itr
2498 * @packets: the number of packets during this measurement interval
2499 * @bytes: the number of bytes during this measurement interval
2500 *
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002501 * Stores a new ITR value based on packets and byte
2502 * counts during the last interrupt. The advantage of per interrupt
2503 * computation is faster updates and more accurate ITR for the current
2504 * traffic pattern. Constants in this function were computed
2505 * based on theoretical maximum wire speed and thresholds were set based
2506 * on testing data as well as attempting to minimize response time
2507 * while increasing bulk throughput.
2508 * this functionality is controlled by the InterruptThrottleRate module
2509 * parameter (see e1000_param.c)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002510 **/
2511static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
Joe Perches64798842008-07-11 15:17:02 -07002512 u16 itr_setting, int packets, int bytes)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002513{
2514 unsigned int retval = itr_setting;
2515 struct e1000_hw *hw = &adapter->hw;
2516
2517 if (unlikely(hw->mac_type < e1000_82540))
2518 goto update_itr_done;
2519
2520 if (packets == 0)
2521 goto update_itr_done;
2522
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002523 switch (itr_setting) {
2524 case lowest_latency:
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002525 /* jumbo frames get bulk treatment*/
2526 if (bytes/packets > 8000)
2527 retval = bulk_latency;
2528 else if ((packets < 5) && (bytes > 512))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002529 retval = low_latency;
2530 break;
2531 case low_latency: /* 50 usec aka 20000 ints/s */
2532 if (bytes > 10000) {
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002533 /* jumbo frames need bulk latency setting */
2534 if (bytes/packets > 8000)
2535 retval = bulk_latency;
2536 else if ((packets < 10) || ((bytes/packets) > 1200))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002537 retval = bulk_latency;
2538 else if ((packets > 35))
2539 retval = lowest_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002540 } else if (bytes/packets > 2000)
2541 retval = bulk_latency;
2542 else if (packets <= 2 && bytes < 512)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002543 retval = lowest_latency;
2544 break;
2545 case bulk_latency: /* 250 usec aka 4000 ints/s */
2546 if (bytes > 25000) {
2547 if (packets > 35)
2548 retval = low_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002549 } else if (bytes < 6000) {
2550 retval = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002551 }
2552 break;
2553 }
2554
2555update_itr_done:
2556 return retval;
2557}
2558
2559static void e1000_set_itr(struct e1000_adapter *adapter)
2560{
2561 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07002562 u16 current_itr;
2563 u32 new_itr = adapter->itr;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002564
2565 if (unlikely(hw->mac_type < e1000_82540))
2566 return;
2567
2568 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2569 if (unlikely(adapter->link_speed != SPEED_1000)) {
2570 current_itr = 0;
2571 new_itr = 4000;
2572 goto set_itr_now;
2573 }
2574
2575 adapter->tx_itr = e1000_update_itr(adapter,
2576 adapter->tx_itr,
2577 adapter->total_tx_packets,
2578 adapter->total_tx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002579 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2580 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2581 adapter->tx_itr = low_latency;
2582
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002583 adapter->rx_itr = e1000_update_itr(adapter,
2584 adapter->rx_itr,
2585 adapter->total_rx_packets,
2586 adapter->total_rx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002587 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2588 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2589 adapter->rx_itr = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002590
2591 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2592
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002593 switch (current_itr) {
2594 /* counts and packets in update_itr are dependent on these numbers */
2595 case lowest_latency:
2596 new_itr = 70000;
2597 break;
2598 case low_latency:
2599 new_itr = 20000; /* aka hwitr = ~200 */
2600 break;
2601 case bulk_latency:
2602 new_itr = 4000;
2603 break;
2604 default:
2605 break;
2606 }
2607
2608set_itr_now:
2609 if (new_itr != adapter->itr) {
2610 /* this attempts to bias the interrupt rate towards Bulk
2611 * by adding intermediate steps when interrupt rate is
2612 * increasing */
2613 new_itr = new_itr > adapter->itr ?
2614 min(adapter->itr + (new_itr >> 2), new_itr) :
2615 new_itr;
2616 adapter->itr = new_itr;
Joe Perches1dc32912008-07-11 15:17:08 -07002617 ew32(ITR, 1000000000 / (new_itr * 256));
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002618 }
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002619}
2620
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621#define E1000_TX_FLAGS_CSUM 0x00000001
2622#define E1000_TX_FLAGS_VLAN 0x00000002
2623#define E1000_TX_FLAGS_TSO 0x00000004
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002624#define E1000_TX_FLAGS_IPV4 0x00000008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
2626#define E1000_TX_FLAGS_VLAN_SHIFT 16
2627
Joe Perches64798842008-07-11 15:17:02 -07002628static int e1000_tso(struct e1000_adapter *adapter,
2629 struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002632 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 unsigned int i;
Joe Perches406874a2008-04-03 10:06:32 -07002634 u32 cmd_length = 0;
2635 u16 ipcse = 0, tucse, mss;
2636 u8 ipcss, ipcso, tucss, tucso, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 int err;
2638
Herbert Xu89114af2006-07-08 13:34:32 -07002639 if (skb_is_gso(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 if (skb_header_cloned(skb)) {
2641 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2642 if (err)
2643 return err;
2644 }
2645
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07002646 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Herbert Xu79671682006-06-22 02:40:14 -07002647 mss = skb_shinfo(skb)->gso_size;
Alexey Dobriyan60828232006-05-23 14:52:21 -07002648 if (skb->protocol == htons(ETH_P_IP)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002649 struct iphdr *iph = ip_hdr(skb);
2650 iph->tot_len = 0;
2651 iph->check = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002652 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
2653 iph->daddr, 0,
2654 IPPROTO_TCP,
2655 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002656 cmd_length = E1000_TXD_CMD_IP;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002657 ipcse = skb_transport_offset(skb) - 1;
Auke Koke15fdd02006-08-16 11:28:45 -07002658 } else if (skb->protocol == htons(ETH_P_IPV6)) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002659 ipv6_hdr(skb)->payload_len = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002660 tcp_hdr(skb)->check =
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002661 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
2662 &ipv6_hdr(skb)->daddr,
2663 0, IPPROTO_TCP, 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002664 ipcse = 0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002665 }
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03002666 ipcss = skb_network_offset(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002667 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002668 tucss = skb_transport_offset(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002669 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 tucse = 0;
2671
2672 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002673 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002675 i = tx_ring->next_to_use;
2676 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002677 buffer_info = &tx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
2679 context_desc->lower_setup.ip_fields.ipcss = ipcss;
2680 context_desc->lower_setup.ip_fields.ipcso = ipcso;
2681 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
2682 context_desc->upper_setup.tcp_fields.tucss = tucss;
2683 context_desc->upper_setup.tcp_fields.tucso = tucso;
2684 context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
2685 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
2686 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
2687 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
2688
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002689 buffer_info->time_stamp = jiffies;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002690 buffer_info->next_to_watch = i;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002691
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002692 if (++i == tx_ring->count) i = 0;
2693 tx_ring->next_to_use = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
Joe Perchesc3033b02008-03-21 11:06:25 -07002695 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 }
Joe Perchesc3033b02008-03-21 11:06:25 -07002697 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698}
2699
Joe Perches64798842008-07-11 15:17:02 -07002700static bool e1000_tx_csum(struct e1000_adapter *adapter,
2701 struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702{
2703 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002704 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 unsigned int i;
Joe Perches406874a2008-04-03 10:06:32 -07002706 u8 css;
Dave Graham3ed30672008-10-09 14:29:26 -07002707 u32 cmd_len = E1000_TXD_CMD_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
Dave Graham3ed30672008-10-09 14:29:26 -07002709 if (skb->ip_summed != CHECKSUM_PARTIAL)
2710 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Dave Graham3ed30672008-10-09 14:29:26 -07002712 switch (skb->protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08002713 case cpu_to_be16(ETH_P_IP):
Dave Graham3ed30672008-10-09 14:29:26 -07002714 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
2715 cmd_len |= E1000_TXD_CMD_TCP;
2716 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08002717 case cpu_to_be16(ETH_P_IPV6):
Dave Graham3ed30672008-10-09 14:29:26 -07002718 /* XXX not handling all IPV6 headers */
2719 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
2720 cmd_len |= E1000_TXD_CMD_TCP;
2721 break;
2722 default:
2723 if (unlikely(net_ratelimit()))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07002724 e_warn(drv, "checksum_partial proto=%x!\n",
2725 skb->protocol);
Dave Graham3ed30672008-10-09 14:29:26 -07002726 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 }
2728
Michał Mirosław0d0b1672010-12-14 15:24:08 +00002729 css = skb_checksum_start_offset(skb);
Dave Graham3ed30672008-10-09 14:29:26 -07002730
2731 i = tx_ring->next_to_use;
2732 buffer_info = &tx_ring->buffer_info[i];
2733 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
2734
2735 context_desc->lower_setup.ip_config = 0;
2736 context_desc->upper_setup.tcp_fields.tucss = css;
2737 context_desc->upper_setup.tcp_fields.tucso =
2738 css + skb->csum_offset;
2739 context_desc->upper_setup.tcp_fields.tucse = 0;
2740 context_desc->tcp_seg_setup.data = 0;
2741 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
2742
2743 buffer_info->time_stamp = jiffies;
2744 buffer_info->next_to_watch = i;
2745
2746 if (unlikely(++i == tx_ring->count)) i = 0;
2747 tx_ring->next_to_use = i;
2748
2749 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750}
2751
2752#define E1000_MAX_TXD_PWR 12
2753#define E1000_MAX_DATA_PER_TXD (1<<E1000_MAX_TXD_PWR)
2754
Joe Perches64798842008-07-11 15:17:02 -07002755static int e1000_tx_map(struct e1000_adapter *adapter,
2756 struct e1000_tx_ring *tx_ring,
2757 struct sk_buff *skb, unsigned int first,
2758 unsigned int max_per_txd, unsigned int nr_frags,
2759 unsigned int mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760{
Joe Perches1dc32912008-07-11 15:17:08 -07002761 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck602c0552009-12-02 16:46:00 +00002762 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck37e73df2009-03-25 21:58:45 +00002763 struct e1000_buffer *buffer_info;
Jesse Brandeburgd20b6062009-03-02 16:03:21 -08002764 unsigned int len = skb_headlen(skb);
Alexander Duyck602c0552009-12-02 16:46:00 +00002765 unsigned int offset = 0, size, count = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768 i = tx_ring->next_to_use;
2769
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002770 while (len) {
Alexander Duyck37e73df2009-03-25 21:58:45 +00002771 buffer_info = &tx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 size = min(len, max_per_txd);
Jeff Kirsherfd803242005-12-13 00:06:22 -05002773 /* Workaround for Controller erratum --
2774 * descriptor for non-tso packet in a linear SKB that follows a
2775 * tso gets written back prematurely before the data is fully
Jeff Kirsher0f15a8f2006-03-02 18:46:29 -08002776 * DMA'd to the controller */
Jeff Kirsherfd803242005-12-13 00:06:22 -05002777 if (!skb->data_len && tx_ring->last_tx_tso &&
Herbert Xu89114af2006-07-08 13:34:32 -07002778 !skb_is_gso(skb)) {
Jeff Kirsherfd803242005-12-13 00:06:22 -05002779 tx_ring->last_tx_tso = 0;
2780 size -= 4;
2781 }
2782
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 /* Workaround for premature desc write-backs
2784 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002785 if (unlikely(mss && !nr_frags && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 size -= 4;
Malli Chilakala97338bd2005-04-28 19:41:46 -07002787 /* work-around for errata 10 and it applies
2788 * to all controllers in PCI-X mode
2789 * The fix is to make sure that the first descriptor of a
2790 * packet is smaller than 2048 - 16 - 16 (or 2016) bytes
2791 */
Joe Perches1dc32912008-07-11 15:17:08 -07002792 if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07002793 (size > 2015) && count == 0))
2794 size = 2015;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 /* Workaround for potential 82544 hang in PCI-X. Avoid
2797 * terminating buffers within evenly-aligned dwords. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002798 if (unlikely(adapter->pcix_82544 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 !((unsigned long)(skb->data + offset + size - 1) & 4) &&
2800 size > 4))
2801 size -= 4;
2802
2803 buffer_info->length = size;
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00002804 /* set time_stamp *before* dma to help avoid a possible race */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 buffer_info->time_stamp = jiffies;
Alexander Duyck602c0552009-12-02 16:46:00 +00002806 buffer_info->mapped_as_page = false;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002807 buffer_info->dma = dma_map_single(&pdev->dev,
2808 skb->data + offset,
2809 size, DMA_TO_DEVICE);
2810 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck602c0552009-12-02 16:46:00 +00002811 goto dma_error;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002812 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
2814 len -= size;
2815 offset += size;
2816 count++;
Alexander Duyck37e73df2009-03-25 21:58:45 +00002817 if (len) {
2818 i++;
2819 if (unlikely(i == tx_ring->count))
2820 i = 0;
2821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 }
2823
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002824 for (f = 0; f < nr_frags; f++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 struct skb_frag_struct *frag;
2826
2827 frag = &skb_shinfo(skb)->frags[f];
2828 len = frag->size;
Alexander Duyck602c0552009-12-02 16:46:00 +00002829 offset = frag->page_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002831 while (len) {
Alexander Duyck37e73df2009-03-25 21:58:45 +00002832 i++;
2833 if (unlikely(i == tx_ring->count))
2834 i = 0;
2835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 buffer_info = &tx_ring->buffer_info[i];
2837 size = min(len, max_per_txd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 /* Workaround for premature desc write-backs
2839 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002840 if (unlikely(mss && f == (nr_frags-1) && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 size -= 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 /* Workaround for potential 82544 hang in PCI-X.
2843 * Avoid terminating buffers within evenly-aligned
2844 * dwords. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002845 if (unlikely(adapter->pcix_82544 &&
Jesse Brandeburg8fce4732009-09-25 12:18:41 +00002846 !((unsigned long)(page_to_phys(frag->page) + offset
2847 + size - 1) & 4) &&
2848 size > 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 size -= 4;
2850
2851 buffer_info->length = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 buffer_info->time_stamp = jiffies;
Alexander Duyck602c0552009-12-02 16:46:00 +00002853 buffer_info->mapped_as_page = true;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002854 buffer_info->dma = dma_map_page(&pdev->dev, frag->page,
Alexander Duyck602c0552009-12-02 16:46:00 +00002855 offset, size,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002856 DMA_TO_DEVICE);
2857 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck602c0552009-12-02 16:46:00 +00002858 goto dma_error;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002859 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
2861 len -= size;
2862 offset += size;
2863 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 }
2865 }
2866
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 tx_ring->buffer_info[i].skb = skb;
2868 tx_ring->buffer_info[first].next_to_watch = i;
2869
2870 return count;
Alexander Duyck602c0552009-12-02 16:46:00 +00002871
2872dma_error:
2873 dev_err(&pdev->dev, "TX DMA map failed\n");
2874 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002875 if (count)
Alexander Duyck602c0552009-12-02 16:46:00 +00002876 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002877
2878 while (count--) {
2879 if (i==0)
Alexander Duyck602c0552009-12-02 16:46:00 +00002880 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002881 i--;
Alexander Duyck602c0552009-12-02 16:46:00 +00002882 buffer_info = &tx_ring->buffer_info[i];
2883 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
2884 }
2885
2886 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887}
2888
Joe Perches64798842008-07-11 15:17:02 -07002889static void e1000_tx_queue(struct e1000_adapter *adapter,
2890 struct e1000_tx_ring *tx_ring, int tx_flags,
2891 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892{
Joe Perches1dc32912008-07-11 15:17:08 -07002893 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 struct e1000_tx_desc *tx_desc = NULL;
2895 struct e1000_buffer *buffer_info;
Joe Perches406874a2008-04-03 10:06:32 -07002896 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 unsigned int i;
2898
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002899 if (likely(tx_flags & E1000_TX_FLAGS_TSO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
2901 E1000_TXD_CMD_TSE;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002902 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
2903
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002904 if (likely(tx_flags & E1000_TX_FLAGS_IPV4))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002905 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 }
2907
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002908 if (likely(tx_flags & E1000_TX_FLAGS_CSUM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
2910 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
2911 }
2912
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002913 if (unlikely(tx_flags & E1000_TX_FLAGS_VLAN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 txd_lower |= E1000_TXD_CMD_VLE;
2915 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
2916 }
2917
2918 i = tx_ring->next_to_use;
2919
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002920 while (count--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 buffer_info = &tx_ring->buffer_info[i];
2922 tx_desc = E1000_TX_DESC(*tx_ring, i);
2923 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
2924 tx_desc->lower.data =
2925 cpu_to_le32(txd_lower | buffer_info->length);
2926 tx_desc->upper.data = cpu_to_le32(txd_upper);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002927 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 }
2929
2930 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
2931
2932 /* Force memory writes to complete before letting h/w
2933 * know there are new descriptors to fetch. (Only
2934 * applicable for weak-ordered memory model archs,
2935 * such as IA-64). */
2936 wmb();
2937
2938 tx_ring->next_to_use = i;
Joe Perches1dc32912008-07-11 15:17:08 -07002939 writel(i, hw->hw_addr + tx_ring->tdt);
Jesse Brandeburg2ce90472006-11-01 08:47:42 -08002940 /* we need this if more than one processor can write to our tail
2941 * at a time, it syncronizes IO on IA64/Altix systems */
2942 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943}
2944
2945/**
2946 * 82547 workaround to avoid controller hang in half-duplex environment.
2947 * The workaround is to avoid queuing a large packet that would span
2948 * the internal Tx FIFO ring boundary by notifying the stack to resend
2949 * the packet at a later time. This gives the Tx FIFO an opportunity to
2950 * flush all packets. When that occurs, we reset the Tx FIFO pointers
2951 * to the beginning of the Tx FIFO.
2952 **/
2953
2954#define E1000_FIFO_HDR 0x10
2955#define E1000_82547_PAD_LEN 0x3E0
2956
Joe Perches64798842008-07-11 15:17:02 -07002957static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
2958 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959{
Joe Perches406874a2008-04-03 10:06:32 -07002960 u32 fifo_space = adapter->tx_fifo_size - adapter->tx_fifo_head;
2961 u32 skb_fifo_len = skb->len + E1000_FIFO_HDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07002963 skb_fifo_len = ALIGN(skb_fifo_len, E1000_FIFO_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002965 if (adapter->link_duplex != HALF_DUPLEX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 goto no_fifo_stall_required;
2967
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002968 if (atomic_read(&adapter->tx_fifo_stall))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 return 1;
2970
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002971 if (skb_fifo_len >= (E1000_82547_PAD_LEN + fifo_space)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 atomic_set(&adapter->tx_fifo_stall, 1);
2973 return 1;
2974 }
2975
2976no_fifo_stall_required:
2977 adapter->tx_fifo_head += skb_fifo_len;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002978 if (adapter->tx_fifo_head >= adapter->tx_fifo_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 adapter->tx_fifo_head -= adapter->tx_fifo_size;
2980 return 0;
2981}
2982
Jesse Brandeburg65c79732006-09-27 12:53:48 -07002983static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
2984{
2985 struct e1000_adapter *adapter = netdev_priv(netdev);
2986 struct e1000_tx_ring *tx_ring = adapter->tx_ring;
2987
2988 netif_stop_queue(netdev);
2989 /* Herbert's original patch had:
2990 * smp_mb__after_netif_stop_queue();
2991 * but since that doesn't exist yet, just open code it. */
2992 smp_mb();
2993
2994 /* We need to check again in a case another CPU has just
2995 * made room available. */
2996 if (likely(E1000_DESC_UNUSED(tx_ring) < size))
2997 return -EBUSY;
2998
2999 /* A reprieve! */
3000 netif_start_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003001 ++adapter->restart_queue;
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003002 return 0;
3003}
3004
3005static int e1000_maybe_stop_tx(struct net_device *netdev,
3006 struct e1000_tx_ring *tx_ring, int size)
3007{
3008 if (likely(E1000_DESC_UNUSED(tx_ring) >= size))
3009 return 0;
3010 return __e1000_maybe_stop_tx(netdev, size);
3011}
3012
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013#define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
Stephen Hemminger3b29a562009-08-31 19:50:55 +00003014static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
3015 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003017 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07003018 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003019 struct e1000_tx_ring *tx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 unsigned int first, max_per_txd = E1000_MAX_DATA_PER_TXD;
3021 unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
3022 unsigned int tx_flags = 0;
Eric Dumazete743d312010-04-14 15:59:40 -07003023 unsigned int len = skb_headlen(skb);
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003024 unsigned int nr_frags;
3025 unsigned int mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 int count = 0;
Auke Kok76c224b2006-05-23 13:36:06 -07003027 int tso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003030 /* This goes back to the question of how to logically map a tx queue
3031 * to a flow. Right now, performance is impacted slightly negatively
3032 * if using multiple tx queues. If the stack breaks away from a
3033 * single qdisc implementation, we can look at this again. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003034 tx_ring = adapter->tx_ring;
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04003035
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003036 if (unlikely(skb->len <= 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 dev_kfree_skb_any(skb);
3038 return NETDEV_TX_OK;
3039 }
3040
Herbert Xu79671682006-06-22 02:40:14 -07003041 mss = skb_shinfo(skb)->gso_size;
Auke Kok76c224b2006-05-23 13:36:06 -07003042 /* The controller does a simple calculation to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 * make sure there is enough room in the FIFO before
3044 * initiating the DMA for each buffer. The calc is:
3045 * 4 = ceil(buffer len/mss). To make sure we don't
3046 * overrun the FIFO, adjust the max buffer len if mss
3047 * drops. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003048 if (mss) {
Joe Perches406874a2008-04-03 10:06:32 -07003049 u8 hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 max_per_txd = min(mss << 2, max_per_txd);
3051 max_txd_pwr = fls(max_per_txd) - 1;
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003052
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07003053 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003054 if (skb->data_len && hdr_len == len) {
Joe Perches1dc32912008-07-11 15:17:08 -07003055 switch (hw->mac_type) {
Jeff Kirsher9f687882006-03-02 18:20:17 -08003056 unsigned int pull_size;
Herbert Xu683a2aa2006-12-16 12:04:33 +11003057 case e1000_82544:
3058 /* Make sure we have room to chop off 4 bytes,
3059 * and that the end alignment will work out to
3060 * this hardware's requirements
3061 * NOTE: this is a TSO only workaround
3062 * if end byte alignment not correct move us
3063 * into the next dword */
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003064 if ((unsigned long)(skb_tail_pointer(skb) - 1) & 4)
Herbert Xu683a2aa2006-12-16 12:04:33 +11003065 break;
3066 /* fall through */
Jeff Kirsher9f687882006-03-02 18:20:17 -08003067 pull_size = min((unsigned int)4, skb->data_len);
3068 if (!__pskb_pull_tail(skb, pull_size)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003069 e_err(drv, "__pskb_pull_tail "
3070 "failed.\n");
Jeff Kirsher9f687882006-03-02 18:20:17 -08003071 dev_kfree_skb_any(skb);
Jeff Garzik749dfc702006-03-11 13:35:31 -05003072 return NETDEV_TX_OK;
Jeff Kirsher9f687882006-03-02 18:20:17 -08003073 }
Eric Dumazete743d312010-04-14 15:59:40 -07003074 len = skb_headlen(skb);
Jeff Kirsher9f687882006-03-02 18:20:17 -08003075 break;
3076 default:
3077 /* do nothing */
3078 break;
Jeff Kirsherd74bbd32006-01-12 16:51:07 -08003079 }
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 }
3082
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003083 /* reserve a descriptor for the offload context */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003084 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 count++;
Malli Chilakala26483452005-04-28 19:44:46 -07003086 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003087
Jeff Kirsherfd803242005-12-13 00:06:22 -05003088 /* Controller Erratum workaround */
Herbert Xu89114af2006-07-08 13:34:32 -07003089 if (!skb->data_len && tx_ring->last_tx_tso && !skb_is_gso(skb))
Jeff Kirsherfd803242005-12-13 00:06:22 -05003090 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003091
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 count += TXD_USE_COUNT(len, max_txd_pwr);
3093
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003094 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 count++;
3096
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003097 /* work-around for errata 10 and it applies to all controllers
Malli Chilakala97338bd2005-04-28 19:41:46 -07003098 * in PCI-X mode, so add one more descriptor to the count
3099 */
Joe Perches1dc32912008-07-11 15:17:08 -07003100 if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07003101 (len > 2015)))
3102 count++;
3103
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 nr_frags = skb_shinfo(skb)->nr_frags;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003105 for (f = 0; f < nr_frags; f++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size,
3107 max_txd_pwr);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003108 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 count += nr_frags;
3110
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 /* need: count + 2 desc gap to keep tail from touching
3112 * head, otherwise try next time */
Alexander Duyck80179432009-01-21 14:42:47 -08003113 if (unlikely(e1000_maybe_stop_tx(netdev, tx_ring, count + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
Joe Perches1dc32912008-07-11 15:17:08 -07003116 if (unlikely(hw->mac_type == e1000_82547)) {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003117 if (unlikely(e1000_82547_fifo_workaround(adapter, skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 netif_stop_queue(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00003119 if (!test_bit(__E1000_DOWN, &adapter->flags))
3120 mod_timer(&adapter->tx_fifo_stall_timer,
3121 jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 return NETDEV_TX_BUSY;
3123 }
3124 }
3125
Jesse Grosseab6d182010-10-20 13:56:03 +00003126 if (unlikely(vlan_tx_tag_present(skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 tx_flags |= E1000_TX_FLAGS_VLAN;
3128 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
3129 }
3130
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003131 first = tx_ring->next_to_use;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003132
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003133 tso = e1000_tso(adapter, tx_ring, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 if (tso < 0) {
3135 dev_kfree_skb_any(skb);
3136 return NETDEV_TX_OK;
3137 }
3138
Jeff Kirsherfd803242005-12-13 00:06:22 -05003139 if (likely(tso)) {
Jesse Brandeburg8fce4732009-09-25 12:18:41 +00003140 if (likely(hw->mac_type != e1000_82544))
3141 tx_ring->last_tx_tso = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 tx_flags |= E1000_TX_FLAGS_TSO;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003143 } else if (likely(e1000_tx_csum(adapter, tx_ring, skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 tx_flags |= E1000_TX_FLAGS_CSUM;
3145
Alexey Dobriyan60828232006-05-23 14:52:21 -07003146 if (likely(skb->protocol == htons(ETH_P_IP)))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003147 tx_flags |= E1000_TX_FLAGS_IPV4;
3148
Alexander Duyck37e73df2009-03-25 21:58:45 +00003149 count = e1000_tx_map(adapter, tx_ring, skb, first, max_per_txd,
3150 nr_frags, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Alexander Duyck37e73df2009-03-25 21:58:45 +00003152 if (count) {
3153 e1000_tx_queue(adapter, tx_ring, tx_flags, count);
Alexander Duyck37e73df2009-03-25 21:58:45 +00003154 /* Make sure there is space in the ring for the next send. */
3155 e1000_maybe_stop_tx(netdev, tx_ring, MAX_SKB_FRAGS + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Alexander Duyck37e73df2009-03-25 21:58:45 +00003157 } else {
3158 dev_kfree_skb_any(skb);
3159 tx_ring->buffer_info[first].time_stamp = 0;
3160 tx_ring->next_to_use = first;
3161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 return NETDEV_TX_OK;
3164}
3165
3166/**
3167 * e1000_tx_timeout - Respond to a Tx Hang
3168 * @netdev: network interface device structure
3169 **/
3170
Joe Perches64798842008-07-11 15:17:02 -07003171static void e1000_tx_timeout(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003173 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
3175 /* Do the reset outside of interrupt context */
Jeff Kirsher87041632006-03-02 18:21:24 -08003176 adapter->tx_timeout_count++;
3177 schedule_work(&adapter->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178}
3179
Joe Perches64798842008-07-11 15:17:02 -07003180static void e1000_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181{
David Howells65f27f32006-11-22 14:55:48 +00003182 struct e1000_adapter *adapter =
3183 container_of(work, struct e1000_adapter, reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00003185 e1000_reinit_safe(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186}
3187
3188/**
3189 * e1000_get_stats - Get System Network Statistics
3190 * @netdev: network interface device structure
3191 *
3192 * Returns the address of the device statistics structure.
3193 * The statistics are actually updated from the timer callback.
3194 **/
3195
Joe Perches64798842008-07-11 15:17:02 -07003196static struct net_device_stats *e1000_get_stats(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197{
Jeff Kirsher6b7660c2006-01-12 16:50:35 -08003198 /* only return the current stats */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003199 return &netdev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200}
3201
3202/**
3203 * e1000_change_mtu - Change the Maximum Transfer Unit
3204 * @netdev: network interface device structure
3205 * @new_mtu: new value for maximum frame size
3206 *
3207 * Returns 0 on success, negative on failure
3208 **/
3209
Joe Perches64798842008-07-11 15:17:02 -07003210static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003212 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07003213 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 int max_frame = new_mtu + ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
3215
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003216 if ((max_frame < MINIMUM_ETHERNET_FRAME_SIZE) ||
3217 (max_frame > MAX_JUMBO_FRAME_SIZE)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003218 e_err(probe, "Invalid MTU setting\n");
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04003219 return -EINVAL;
3220 }
3221
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003222 /* Adapter-specific max frame size limits. */
Joe Perches1dc32912008-07-11 15:17:08 -07003223 switch (hw->mac_type) {
Auke Kok9e2feac2006-04-14 19:05:18 -07003224 case e1000_undefined ... e1000_82542_rev2_1:
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +00003225 if (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003226 e_err(probe, "Jumbo Frames not supported.\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003227 return -EINVAL;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003228 }
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003229 break;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003230 default:
3231 /* Capable of supporting up to MAX_JUMBO_FRAME_SIZE limit. */
3232 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003233 }
3234
Jesse Brandeburg3d6114e2009-09-25 12:19:02 +00003235 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
3236 msleep(1);
3237 /* e1000_down has a dependency on max_frame_size */
3238 hw->max_frame_size = max_frame;
3239 if (netif_running(netdev))
3240 e1000_down(adapter);
3241
David S. Miller87f50322006-07-31 22:39:40 -07003242 /* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kok9e2feac2006-04-14 19:05:18 -07003243 * means we reserve 2 more, this pushes us to allocate from the next
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003244 * larger slab size.
3245 * i.e. RXBUFFER_2048 --> size-4096 slab
3246 * however with the new *_jumbo_rx* routines, jumbo receives will use
3247 * fragmented skbs */
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003248
Jesse Brandeburg99261462010-01-22 22:56:16 +00003249 if (max_frame <= E1000_RXBUFFER_2048)
Auke Kok9e2feac2006-04-14 19:05:18 -07003250 adapter->rx_buffer_len = E1000_RXBUFFER_2048;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003251 else
3252#if (PAGE_SIZE >= E1000_RXBUFFER_16384)
Auke Kok9e2feac2006-04-14 19:05:18 -07003253 adapter->rx_buffer_len = E1000_RXBUFFER_16384;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003254#elif (PAGE_SIZE >= E1000_RXBUFFER_4096)
3255 adapter->rx_buffer_len = PAGE_SIZE;
3256#endif
Auke Kok9e2feac2006-04-14 19:05:18 -07003257
3258 /* adjust allocation if LPE protects us, and we aren't using SBP */
Joe Perches1dc32912008-07-11 15:17:08 -07003259 if (!hw->tbi_compatibility_on &&
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +00003260 ((max_frame == (ETH_FRAME_LEN + ETH_FCS_LEN)) ||
Auke Kok9e2feac2006-04-14 19:05:18 -07003261 (max_frame == MAXIMUM_ETHERNET_VLAN_SIZE)))
3262 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003263
Emil Tantilov675ad472010-04-27 14:02:58 +00003264 pr_info("%s changing MTU from %d to %d\n",
3265 netdev->name, netdev->mtu, new_mtu);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003266 netdev->mtu = new_mtu;
3267
Auke Kok2db10a02006-06-27 09:06:28 -07003268 if (netif_running(netdev))
Jesse Brandeburg3d6114e2009-09-25 12:19:02 +00003269 e1000_up(adapter);
3270 else
3271 e1000_reset(adapter);
3272
3273 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 return 0;
3276}
3277
3278/**
3279 * e1000_update_stats - Update the board statistics counters
3280 * @adapter: board private structure
3281 **/
3282
Joe Perches64798842008-07-11 15:17:02 -07003283void e1000_update_stats(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284{
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003285 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 struct e1000_hw *hw = &adapter->hw;
Linas Vepstas282f33c2006-06-08 22:19:44 -07003287 struct pci_dev *pdev = adapter->pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 unsigned long flags;
Joe Perches406874a2008-04-03 10:06:32 -07003289 u16 phy_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
3291#define PHY_IDLE_ERROR_COUNT_MASK 0x00FF
3292
Linas Vepstas282f33c2006-06-08 22:19:44 -07003293 /*
3294 * Prevent stats update while adapter is being reset, or if the pci
3295 * connection is down.
3296 */
Auke Kok90267292006-06-08 09:30:24 -07003297 if (adapter->link_speed == 0)
3298 return;
Linas Vepstas81b19552006-12-12 18:29:15 -06003299 if (pci_channel_offline(pdev))
Linas Vepstas282f33c2006-06-08 22:19:44 -07003300 return;
Auke Kok90267292006-06-08 09:30:24 -07003301
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 spin_lock_irqsave(&adapter->stats_lock, flags);
3303
Masatake YAMATO828d0552007-10-20 03:06:37 +02003304 /* these counters are modified from e1000_tbi_adjust_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 * called from the interrupt context, so they must only
3306 * be written while holding adapter->stats_lock
3307 */
3308
Joe Perches1dc32912008-07-11 15:17:08 -07003309 adapter->stats.crcerrs += er32(CRCERRS);
3310 adapter->stats.gprc += er32(GPRC);
3311 adapter->stats.gorcl += er32(GORCL);
3312 adapter->stats.gorch += er32(GORCH);
3313 adapter->stats.bprc += er32(BPRC);
3314 adapter->stats.mprc += er32(MPRC);
3315 adapter->stats.roc += er32(ROC);
Auke Kokcd94dd02006-06-27 09:08:22 -07003316
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003317 adapter->stats.prc64 += er32(PRC64);
3318 adapter->stats.prc127 += er32(PRC127);
3319 adapter->stats.prc255 += er32(PRC255);
3320 adapter->stats.prc511 += er32(PRC511);
3321 adapter->stats.prc1023 += er32(PRC1023);
3322 adapter->stats.prc1522 += er32(PRC1522);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
Joe Perches1dc32912008-07-11 15:17:08 -07003324 adapter->stats.symerrs += er32(SYMERRS);
3325 adapter->stats.mpc += er32(MPC);
3326 adapter->stats.scc += er32(SCC);
3327 adapter->stats.ecol += er32(ECOL);
3328 adapter->stats.mcc += er32(MCC);
3329 adapter->stats.latecol += er32(LATECOL);
3330 adapter->stats.dc += er32(DC);
3331 adapter->stats.sec += er32(SEC);
3332 adapter->stats.rlec += er32(RLEC);
3333 adapter->stats.xonrxc += er32(XONRXC);
3334 adapter->stats.xontxc += er32(XONTXC);
3335 adapter->stats.xoffrxc += er32(XOFFRXC);
3336 adapter->stats.xofftxc += er32(XOFFTXC);
3337 adapter->stats.fcruc += er32(FCRUC);
3338 adapter->stats.gptc += er32(GPTC);
3339 adapter->stats.gotcl += er32(GOTCL);
3340 adapter->stats.gotch += er32(GOTCH);
3341 adapter->stats.rnbc += er32(RNBC);
3342 adapter->stats.ruc += er32(RUC);
3343 adapter->stats.rfc += er32(RFC);
3344 adapter->stats.rjc += er32(RJC);
3345 adapter->stats.torl += er32(TORL);
3346 adapter->stats.torh += er32(TORH);
3347 adapter->stats.totl += er32(TOTL);
3348 adapter->stats.toth += er32(TOTH);
3349 adapter->stats.tpr += er32(TPR);
Auke Kokcd94dd02006-06-27 09:08:22 -07003350
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003351 adapter->stats.ptc64 += er32(PTC64);
3352 adapter->stats.ptc127 += er32(PTC127);
3353 adapter->stats.ptc255 += er32(PTC255);
3354 adapter->stats.ptc511 += er32(PTC511);
3355 adapter->stats.ptc1023 += er32(PTC1023);
3356 adapter->stats.ptc1522 += er32(PTC1522);
Auke Kokcd94dd02006-06-27 09:08:22 -07003357
Joe Perches1dc32912008-07-11 15:17:08 -07003358 adapter->stats.mptc += er32(MPTC);
3359 adapter->stats.bptc += er32(BPTC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
3361 /* used for adaptive IFS */
3362
Joe Perches1dc32912008-07-11 15:17:08 -07003363 hw->tx_packet_delta = er32(TPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 adapter->stats.tpt += hw->tx_packet_delta;
Joe Perches1dc32912008-07-11 15:17:08 -07003365 hw->collision_delta = er32(COLC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 adapter->stats.colc += hw->collision_delta;
3367
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003368 if (hw->mac_type >= e1000_82543) {
Joe Perches1dc32912008-07-11 15:17:08 -07003369 adapter->stats.algnerrc += er32(ALGNERRC);
3370 adapter->stats.rxerrc += er32(RXERRC);
3371 adapter->stats.tncrs += er32(TNCRS);
3372 adapter->stats.cexterr += er32(CEXTERR);
3373 adapter->stats.tsctc += er32(TSCTC);
3374 adapter->stats.tsctfc += er32(TSCTFC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 }
3376
3377 /* Fill out the OS statistics structure */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003378 netdev->stats.multicast = adapter->stats.mprc;
3379 netdev->stats.collisions = adapter->stats.colc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
3381 /* Rx Errors */
3382
Jeff Kirsher87041632006-03-02 18:21:24 -08003383 /* RLEC on some newer hardware can be incorrect so build
3384 * our own version based on RUC and ROC */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003385 netdev->stats.rx_errors = adapter->stats.rxerrc +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 adapter->stats.crcerrs + adapter->stats.algnerrc +
Jeff Kirsher87041632006-03-02 18:21:24 -08003387 adapter->stats.ruc + adapter->stats.roc +
3388 adapter->stats.cexterr;
Mitch Williams49559852006-09-27 12:53:37 -07003389 adapter->stats.rlerrc = adapter->stats.ruc + adapter->stats.roc;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003390 netdev->stats.rx_length_errors = adapter->stats.rlerrc;
3391 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
3392 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
3393 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
3395 /* Tx Errors */
Mitch Williams49559852006-09-27 12:53:37 -07003396 adapter->stats.txerrc = adapter->stats.ecol + adapter->stats.latecol;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003397 netdev->stats.tx_errors = adapter->stats.txerrc;
3398 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
3399 netdev->stats.tx_window_errors = adapter->stats.latecol;
3400 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Joe Perches1dc32912008-07-11 15:17:08 -07003401 if (hw->bad_tx_carr_stats_fd &&
Jeff Garzik167fb282006-12-15 10:41:15 -05003402 adapter->link_duplex == FULL_DUPLEX) {
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003403 netdev->stats.tx_carrier_errors = 0;
Jeff Garzik167fb282006-12-15 10:41:15 -05003404 adapter->stats.tncrs = 0;
3405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
3407 /* Tx Dropped needs to be maintained elsewhere */
3408
3409 /* Phy Stats */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003410 if (hw->media_type == e1000_media_type_copper) {
3411 if ((adapter->link_speed == SPEED_1000) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 (!e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_tmp))) {
3413 phy_tmp &= PHY_IDLE_ERROR_COUNT_MASK;
3414 adapter->phy_stats.idle_errors += phy_tmp;
3415 }
3416
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003417 if ((hw->mac_type <= e1000_82546) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 (hw->phy_type == e1000_phy_m88) &&
3419 !e1000_read_phy_reg(hw, M88E1000_RX_ERR_CNTR, &phy_tmp))
3420 adapter->phy_stats.receive_errors += phy_tmp;
3421 }
3422
Jeff Garzik15e376b2006-12-15 11:16:33 -05003423 /* Management Stats */
Joe Perches1dc32912008-07-11 15:17:08 -07003424 if (hw->has_smbus) {
3425 adapter->stats.mgptc += er32(MGTPTC);
3426 adapter->stats.mgprc += er32(MGTPRC);
3427 adapter->stats.mgpdc += er32(MGTPDC);
Jeff Garzik15e376b2006-12-15 11:16:33 -05003428 }
3429
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 spin_unlock_irqrestore(&adapter->stats_lock, flags);
3431}
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003432
3433/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 * e1000_intr - Interrupt Handler
3435 * @irq: interrupt number
3436 * @data: pointer to a network interface device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 **/
3438
Joe Perches64798842008-07-11 15:17:02 -07003439static irqreturn_t e1000_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440{
3441 struct net_device *netdev = data;
Malli Chilakala60490fe2005-06-17 17:41:45 -07003442 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003444 u32 icr = er32(ICR);
Francois Romieuc3570ac2008-07-11 15:17:38 -07003445
Jesse Brandeburge151a602009-05-04 11:19:42 +00003446 if (unlikely((!icr) || test_bit(__E1000_DOWN, &adapter->flags)))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003447 return IRQ_NONE; /* Not our interrupt */
3448
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003449 if (unlikely(icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 hw->get_link_status = 1;
Auke Kok1314bbf2006-09-27 12:54:02 -07003451 /* guard against interrupt when we're going down */
3452 if (!test_bit(__E1000_DOWN, &adapter->flags))
3453 mod_timer(&adapter->watchdog_timer, jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 }
3455
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003456 /* disable interrupts, without the synchronize_irq bit */
3457 ew32(IMC, ~0);
3458 E1000_WRITE_FLUSH();
3459
Ben Hutchings288379f2009-01-19 16:43:59 -08003460 if (likely(napi_schedule_prep(&adapter->napi))) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003461 adapter->total_tx_bytes = 0;
3462 adapter->total_tx_packets = 0;
3463 adapter->total_rx_bytes = 0;
3464 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08003465 __napi_schedule(&adapter->napi);
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003466 } else {
Auke Kok90fb5132006-11-01 08:47:30 -08003467 /* this really should not happen! if it does it is basically a
3468 * bug, but not a hard error, so enable ints and continue */
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003469 if (!test_bit(__E1000_DOWN, &adapter->flags))
3470 e1000_irq_enable(adapter);
3471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 return IRQ_HANDLED;
3474}
3475
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476/**
3477 * e1000_clean - NAPI Rx polling callback
3478 * @adapter: board private structure
3479 **/
Joe Perches64798842008-07-11 15:17:02 -07003480static int e1000_clean(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003482 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003483 int tx_clean_complete = 0, work_done = 0;
Malli Chilakala26483452005-04-28 19:44:46 -07003484
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003485 tx_clean_complete = e1000_clean_tx_irq(adapter, &adapter->tx_ring[0]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003486
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003487 adapter->clean_rx(adapter, &adapter->rx_ring[0], &work_done, budget);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003488
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003489 if (!tx_clean_complete)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08003490 work_done = budget;
3491
David S. Miller53e52c72008-01-07 21:06:12 -08003492 /* If budget not fully consumed, exit the polling mode */
3493 if (work_done < budget) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003494 if (likely(adapter->itr_setting & 3))
3495 e1000_set_itr(adapter);
Ben Hutchings288379f2009-01-19 16:43:59 -08003496 napi_complete(napi);
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003497 if (!test_bit(__E1000_DOWN, &adapter->flags))
3498 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 }
3500
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003501 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502}
3503
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504/**
3505 * e1000_clean_tx_irq - Reclaim resources after transmit completes
3506 * @adapter: board private structure
3507 **/
Joe Perches64798842008-07-11 15:17:02 -07003508static bool e1000_clean_tx_irq(struct e1000_adapter *adapter,
3509 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510{
Joe Perches1dc32912008-07-11 15:17:08 -07003511 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 struct net_device *netdev = adapter->netdev;
3513 struct e1000_tx_desc *tx_desc, *eop_desc;
3514 struct e1000_buffer *buffer_info;
3515 unsigned int i, eop;
Jeff Kirsher2a1af5d2006-03-02 18:20:43 -08003516 unsigned int count = 0;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003517 unsigned int total_tx_bytes=0, total_tx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
3519 i = tx_ring->next_to_clean;
3520 eop = tx_ring->buffer_info[i].next_to_watch;
3521 eop_desc = E1000_TX_DESC(*tx_ring, eop);
3522
Alexander Duyckccfb3422009-03-25 21:59:04 +00003523 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
3524 (count < tx_ring->count)) {
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003525 bool cleaned = false;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00003526 rmb(); /* read buffer_info after eop_desc */
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003527 for ( ; !cleaned; count++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 tx_desc = E1000_TX_DESC(*tx_ring, i);
3529 buffer_info = &tx_ring->buffer_info[i];
3530 cleaned = (i == eop);
3531
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003532 if (cleaned) {
Jesse Brandeburg2b653262006-12-15 10:30:44 +01003533 struct sk_buff *skb = buffer_info->skb;
Jesse Brandeburg7753b172007-01-18 09:25:31 -08003534 unsigned int segs, bytecount;
3535 segs = skb_shinfo(skb)->gso_segs ?: 1;
3536 /* multiply data chunks by size of headers */
3537 bytecount = ((segs - 1) * skb_headlen(skb)) +
3538 skb->len;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01003539 total_tx_packets += segs;
Jesse Brandeburg7753b172007-01-18 09:25:31 -08003540 total_tx_bytes += bytecount;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003541 }
Jeff Kirsherfd803242005-12-13 00:06:22 -05003542 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08003543 tx_desc->upper.data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003545 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 eop = tx_ring->buffer_info[i].next_to_watch;
3549 eop_desc = E1000_TX_DESC(*tx_ring, eop);
3550 }
3551
3552 tx_ring->next_to_clean = i;
3553
Auke Kok77b2aad2006-04-14 19:05:25 -07003554#define TX_WAKE_THRESHOLD 32
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003555 if (unlikely(count && netif_carrier_ok(netdev) &&
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003556 E1000_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD)) {
3557 /* Make sure that anybody stopping the queue after this
3558 * sees the new next_to_clean.
3559 */
3560 smp_mb();
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003561
3562 if (netif_queue_stopped(netdev) &&
3563 !(test_bit(__E1000_DOWN, &adapter->flags))) {
Auke Kok77b2aad2006-04-14 19:05:25 -07003564 netif_wake_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003565 ++adapter->restart_queue;
3566 }
Auke Kok77b2aad2006-04-14 19:05:25 -07003567 }
Malli Chilakala26483452005-04-28 19:44:46 -07003568
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003569 if (adapter->detect_tx_hung) {
Malli Chilakala26483452005-04-28 19:44:46 -07003570 /* Detect a transmit hang in hardware, this serializes the
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 * check with the clearing of time_stamp and movement of i */
Joe Perchesc3033b02008-03-21 11:06:25 -07003572 adapter->detect_tx_hung = false;
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003573 if (tx_ring->buffer_info[eop].time_stamp &&
3574 time_after(jiffies, tx_ring->buffer_info[eop].time_stamp +
Joe Perches8e95a202009-12-03 07:58:21 +00003575 (adapter->tx_timeout_factor * HZ)) &&
3576 !(er32(STATUS) & E1000_STATUS_TXOFF)) {
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003577
3578 /* detected Tx unit hang */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003579 e_err(drv, "Detected Tx Unit Hang\n"
Emil Tantilov675ad472010-04-27 14:02:58 +00003580 " Tx Queue <%lu>\n"
3581 " TDH <%x>\n"
3582 " TDT <%x>\n"
3583 " next_to_use <%x>\n"
3584 " next_to_clean <%x>\n"
3585 "buffer_info[next_to_clean]\n"
3586 " time_stamp <%lx>\n"
3587 " next_to_watch <%x>\n"
3588 " jiffies <%lx>\n"
3589 " next_to_watch.status <%x>\n",
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08003590 (unsigned long)((tx_ring - adapter->tx_ring) /
3591 sizeof(struct e1000_tx_ring)),
Joe Perches1dc32912008-07-11 15:17:08 -07003592 readl(hw->hw_addr + tx_ring->tdh),
3593 readl(hw->hw_addr + tx_ring->tdt),
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003594 tx_ring->next_to_use,
Jeff Kirsher392137f2006-01-12 16:50:57 -08003595 tx_ring->next_to_clean,
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003596 tx_ring->buffer_info[eop].time_stamp,
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003597 eop,
3598 jiffies,
3599 eop_desc->upper.fields.status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 netif_stop_queue(netdev);
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 }
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003603 adapter->total_tx_bytes += total_tx_bytes;
3604 adapter->total_tx_packets += total_tx_packets;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003605 netdev->stats.tx_bytes += total_tx_bytes;
3606 netdev->stats.tx_packets += total_tx_packets;
Eric Dumazet807540b2010-09-23 05:40:09 +00003607 return count < tx_ring->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608}
3609
3610/**
3611 * e1000_rx_checksum - Receive Checksum Offload for 82543
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003612 * @adapter: board private structure
3613 * @status_err: receive descriptor status and error fields
3614 * @csum: receive descriptor csum field
3615 * @sk_buff: socket buffer with received data
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 **/
3617
Joe Perches64798842008-07-11 15:17:02 -07003618static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
3619 u32 csum, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620{
Joe Perches1dc32912008-07-11 15:17:08 -07003621 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07003622 u16 status = (u16)status_err;
3623 u8 errors = (u8)(status_err >> 24);
Eric Dumazetbc8acf22010-09-02 13:07:41 -07003624
3625 skb_checksum_none_assert(skb);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003626
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 /* 82543 or newer only */
Joe Perches1dc32912008-07-11 15:17:08 -07003628 if (unlikely(hw->mac_type < e1000_82543)) return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 /* Ignore Checksum bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003630 if (unlikely(status & E1000_RXD_STAT_IXSM)) return;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003631 /* TCP/UDP checksum error bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003632 if (unlikely(errors & E1000_RXD_ERR_TCPE)) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003633 /* let the stack verify checksum errors */
3634 adapter->hw_csum_err++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 return;
3636 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003637 /* TCP/UDP Checksum has not been calculated */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003638 if (!(status & E1000_RXD_STAT_TCPCS))
3639 return;
3640
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003641 /* It must be a TCP or UDP packet with a valid checksum */
3642 if (likely(status & E1000_RXD_STAT_TCPCS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 /* TCP checksum is good */
3644 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003646 adapter->hw_csum_good++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647}
3648
3649/**
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003650 * e1000_consume_page - helper function
3651 **/
3652static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
3653 u16 length)
3654{
3655 bi->page = NULL;
3656 skb->len += length;
3657 skb->data_len += length;
3658 skb->truesize += length;
3659}
3660
3661/**
3662 * e1000_receive_skb - helper function to handle rx indications
3663 * @adapter: board private structure
3664 * @status: descriptor status field as written by hardware
3665 * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
3666 * @skb: pointer to sk_buff to be indicated to stack
3667 */
3668static void e1000_receive_skb(struct e1000_adapter *adapter, u8 status,
3669 __le16 vlan, struct sk_buff *skb)
3670{
Jesse Brandeburg6a08d192010-09-22 18:23:05 +00003671 skb->protocol = eth_type_trans(skb, adapter->netdev);
3672
3673 if ((unlikely(adapter->vlgrp && (status & E1000_RXD_STAT_VP))))
3674 vlan_gro_receive(&adapter->napi, adapter->vlgrp,
3675 le16_to_cpu(vlan) & E1000_RXD_SPC_VLAN_MASK,
3676 skb);
3677 else
3678 napi_gro_receive(&adapter->napi, skb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003679}
3680
3681/**
3682 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
3683 * @adapter: board private structure
3684 * @rx_ring: ring to clean
3685 * @work_done: amount of napi work completed this call
3686 * @work_to_do: max amount of work allowed for this call to do
3687 *
3688 * the return value indicates whether actual cleaning was done, there
3689 * is no guarantee that everything was cleaned
3690 */
3691static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
3692 struct e1000_rx_ring *rx_ring,
3693 int *work_done, int work_to_do)
3694{
3695 struct e1000_hw *hw = &adapter->hw;
3696 struct net_device *netdev = adapter->netdev;
3697 struct pci_dev *pdev = adapter->pdev;
3698 struct e1000_rx_desc *rx_desc, *next_rxd;
3699 struct e1000_buffer *buffer_info, *next_buffer;
3700 unsigned long irq_flags;
3701 u32 length;
3702 unsigned int i;
3703 int cleaned_count = 0;
3704 bool cleaned = false;
3705 unsigned int total_rx_bytes=0, total_rx_packets=0;
3706
3707 i = rx_ring->next_to_clean;
3708 rx_desc = E1000_RX_DESC(*rx_ring, i);
3709 buffer_info = &rx_ring->buffer_info[i];
3710
3711 while (rx_desc->status & E1000_RXD_STAT_DD) {
3712 struct sk_buff *skb;
3713 u8 status;
3714
3715 if (*work_done >= work_to_do)
3716 break;
3717 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00003718 rmb(); /* read descriptor and rx_buffer_info after status DD */
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003719
3720 status = rx_desc->status;
3721 skb = buffer_info->skb;
3722 buffer_info->skb = NULL;
3723
3724 if (++i == rx_ring->count) i = 0;
3725 next_rxd = E1000_RX_DESC(*rx_ring, i);
3726 prefetch(next_rxd);
3727
3728 next_buffer = &rx_ring->buffer_info[i];
3729
3730 cleaned = true;
3731 cleaned_count++;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00003732 dma_unmap_page(&pdev->dev, buffer_info->dma,
3733 buffer_info->length, DMA_FROM_DEVICE);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003734 buffer_info->dma = 0;
3735
3736 length = le16_to_cpu(rx_desc->length);
3737
3738 /* errors is only valid for DD + EOP descriptors */
3739 if (unlikely((status & E1000_RXD_STAT_EOP) &&
3740 (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) {
3741 u8 last_byte = *(skb->data + length - 1);
3742 if (TBI_ACCEPT(hw, status, rx_desc->errors, length,
3743 last_byte)) {
3744 spin_lock_irqsave(&adapter->stats_lock,
3745 irq_flags);
3746 e1000_tbi_adjust_stats(hw, &adapter->stats,
3747 length, skb->data);
3748 spin_unlock_irqrestore(&adapter->stats_lock,
3749 irq_flags);
3750 length--;
3751 } else {
3752 /* recycle both page and skb */
3753 buffer_info->skb = skb;
3754 /* an error means any chain goes out the window
3755 * too */
3756 if (rx_ring->rx_skb_top)
3757 dev_kfree_skb(rx_ring->rx_skb_top);
3758 rx_ring->rx_skb_top = NULL;
3759 goto next_desc;
3760 }
3761 }
3762
3763#define rxtop rx_ring->rx_skb_top
3764 if (!(status & E1000_RXD_STAT_EOP)) {
3765 /* this descriptor is only the beginning (or middle) */
3766 if (!rxtop) {
3767 /* this is the beginning of a chain */
3768 rxtop = skb;
3769 skb_fill_page_desc(rxtop, 0, buffer_info->page,
3770 0, length);
3771 } else {
3772 /* this is the middle of a chain */
3773 skb_fill_page_desc(rxtop,
3774 skb_shinfo(rxtop)->nr_frags,
3775 buffer_info->page, 0, length);
3776 /* re-use the skb, only consumed the page */
3777 buffer_info->skb = skb;
3778 }
3779 e1000_consume_page(buffer_info, rxtop, length);
3780 goto next_desc;
3781 } else {
3782 if (rxtop) {
3783 /* end of the chain */
3784 skb_fill_page_desc(rxtop,
3785 skb_shinfo(rxtop)->nr_frags,
3786 buffer_info->page, 0, length);
3787 /* re-use the current skb, we only consumed the
3788 * page */
3789 buffer_info->skb = skb;
3790 skb = rxtop;
3791 rxtop = NULL;
3792 e1000_consume_page(buffer_info, skb, length);
3793 } else {
3794 /* no chain, got EOP, this buf is the packet
3795 * copybreak to save the put_page/alloc_page */
3796 if (length <= copybreak &&
3797 skb_tailroom(skb) >= length) {
3798 u8 *vaddr;
3799 vaddr = kmap_atomic(buffer_info->page,
3800 KM_SKB_DATA_SOFTIRQ);
3801 memcpy(skb_tail_pointer(skb), vaddr, length);
3802 kunmap_atomic(vaddr,
3803 KM_SKB_DATA_SOFTIRQ);
3804 /* re-use the page, so don't erase
3805 * buffer_info->page */
3806 skb_put(skb, length);
3807 } else {
3808 skb_fill_page_desc(skb, 0,
3809 buffer_info->page, 0,
3810 length);
3811 e1000_consume_page(buffer_info, skb,
3812 length);
3813 }
3814 }
3815 }
3816
3817 /* Receive Checksum Offload XXX recompute due to CRC strip? */
3818 e1000_rx_checksum(adapter,
3819 (u32)(status) |
3820 ((u32)(rx_desc->errors) << 24),
3821 le16_to_cpu(rx_desc->csum), skb);
3822
3823 pskb_trim(skb, skb->len - 4);
3824
3825 /* probably a little skewed due to removing CRC */
3826 total_rx_bytes += skb->len;
3827 total_rx_packets++;
3828
3829 /* eth type trans needs skb->data to point to something */
3830 if (!pskb_may_pull(skb, ETH_HLEN)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003831 e_err(drv, "pskb_may_pull failed.\n");
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003832 dev_kfree_skb(skb);
3833 goto next_desc;
3834 }
3835
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003836 e1000_receive_skb(adapter, status, rx_desc->special, skb);
3837
3838next_desc:
3839 rx_desc->status = 0;
3840
3841 /* return some buffers to hardware, one at a time is too slow */
3842 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
3843 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
3844 cleaned_count = 0;
3845 }
3846
3847 /* use prefetched values */
3848 rx_desc = next_rxd;
3849 buffer_info = next_buffer;
3850 }
3851 rx_ring->next_to_clean = i;
3852
3853 cleaned_count = E1000_DESC_UNUSED(rx_ring);
3854 if (cleaned_count)
3855 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
3856
3857 adapter->total_rx_packets += total_rx_packets;
3858 adapter->total_rx_bytes += total_rx_bytes;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003859 netdev->stats.rx_bytes += total_rx_bytes;
3860 netdev->stats.rx_packets += total_rx_packets;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003861 return cleaned;
3862}
3863
Joe Perches57bf6ee2010-05-13 15:26:17 +00003864/*
3865 * this should improve performance for small packets with large amounts
3866 * of reassembly being done in the stack
3867 */
3868static void e1000_check_copybreak(struct net_device *netdev,
3869 struct e1000_buffer *buffer_info,
3870 u32 length, struct sk_buff **skb)
3871{
3872 struct sk_buff *new_skb;
3873
3874 if (length > copybreak)
3875 return;
3876
3877 new_skb = netdev_alloc_skb_ip_align(netdev, length);
3878 if (!new_skb)
3879 return;
3880
3881 skb_copy_to_linear_data_offset(new_skb, -NET_IP_ALIGN,
3882 (*skb)->data - NET_IP_ALIGN,
3883 length + NET_IP_ALIGN);
3884 /* save the skb in buffer_info as good */
3885 buffer_info->skb = *skb;
3886 *skb = new_skb;
3887}
3888
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003889/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003890 * e1000_clean_rx_irq - Send received data up the network stack; legacy
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 * @adapter: board private structure
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003892 * @rx_ring: ring to clean
3893 * @work_done: amount of napi work completed this call
3894 * @work_to_do: max amount of work allowed for this call to do
3895 */
Joe Perches64798842008-07-11 15:17:02 -07003896static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
3897 struct e1000_rx_ring *rx_ring,
3898 int *work_done, int work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899{
Joe Perches1dc32912008-07-11 15:17:08 -07003900 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 struct net_device *netdev = adapter->netdev;
3902 struct pci_dev *pdev = adapter->pdev;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003903 struct e1000_rx_desc *rx_desc, *next_rxd;
3904 struct e1000_buffer *buffer_info, *next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 unsigned long flags;
Joe Perches406874a2008-04-03 10:06:32 -07003906 u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 unsigned int i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08003908 int cleaned_count = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -07003909 bool cleaned = false;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003910 unsigned int total_rx_bytes=0, total_rx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
3912 i = rx_ring->next_to_clean;
3913 rx_desc = E1000_RX_DESC(*rx_ring, i);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08003914 buffer_info = &rx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08003916 while (rx_desc->status & E1000_RXD_STAT_DD) {
Auke Kok24f476e2006-06-08 09:28:47 -07003917 struct sk_buff *skb;
Jeff Kirshera292ca62006-01-12 16:51:30 -08003918 u8 status;
Auke Kok90fb5132006-11-01 08:47:30 -08003919
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003920 if (*work_done >= work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 break;
3922 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00003923 rmb(); /* read descriptor and rx_buffer_info after status DD */
Francois Romieuc3570ac2008-07-11 15:17:38 -07003924
Jeff Kirshera292ca62006-01-12 16:51:30 -08003925 status = rx_desc->status;
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08003926 skb = buffer_info->skb;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003927 buffer_info->skb = NULL;
3928
Jeff Kirsher30320be2006-03-02 18:21:57 -08003929 prefetch(skb->data - NET_IP_ALIGN);
3930
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003931 if (++i == rx_ring->count) i = 0;
3932 next_rxd = E1000_RX_DESC(*rx_ring, i);
Jeff Kirsher30320be2006-03-02 18:21:57 -08003933 prefetch(next_rxd);
3934
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003935 next_buffer = &rx_ring->buffer_info[i];
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003936
Joe Perchesc3033b02008-03-21 11:06:25 -07003937 cleaned = true;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08003938 cleaned_count++;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00003939 dma_unmap_single(&pdev->dev, buffer_info->dma,
3940 buffer_info->length, DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00003941 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 length = le16_to_cpu(rx_desc->length);
Neil Hormanea30e112009-06-02 01:29:58 -07003944 /* !EOP means multiple descriptors were used to store a single
Jesse Brandeburg40a14de2010-01-19 14:15:38 +00003945 * packet, if thats the case we need to toss it. In fact, we
3946 * to toss every packet with the EOP bit clear and the next
3947 * frame that _does_ have the EOP bit set, as it is by
3948 * definition only a frame fragment
3949 */
3950 if (unlikely(!(status & E1000_RXD_STAT_EOP)))
3951 adapter->discarding = true;
3952
3953 if (adapter->discarding) {
Jeff Kirshera1415ee2006-02-28 20:24:07 -08003954 /* All receives must fit into a single buffer */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003955 e_dbg("Receive packet consumed multiple buffers\n");
Auke Kok864c4e42006-06-27 09:06:53 -07003956 /* recycle */
Auke Kok8fc897b2006-08-28 14:56:16 -07003957 buffer_info->skb = skb;
Jesse Brandeburg40a14de2010-01-19 14:15:38 +00003958 if (status & E1000_RXD_STAT_EOP)
3959 adapter->discarding = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 goto next_desc;
3961 }
3962
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003963 if (unlikely(rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK)) {
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003964 u8 last_byte = *(skb->data + length - 1);
Joe Perches1dc32912008-07-11 15:17:08 -07003965 if (TBI_ACCEPT(hw, status, rx_desc->errors, length,
3966 last_byte)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07003968 e1000_tbi_adjust_stats(hw, &adapter->stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 length, skb->data);
3970 spin_unlock_irqrestore(&adapter->stats_lock,
3971 flags);
3972 length--;
3973 } else {
Auke Kok9e2feac2006-04-14 19:05:18 -07003974 /* recycle */
3975 buffer_info->skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 goto next_desc;
3977 }
Auke Kok1cb58212006-04-18 12:31:04 -07003978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979
Jesse Brandeburgd2a1e212006-10-24 14:46:06 -07003980 /* adjust length to remove Ethernet CRC, this must be
3981 * done after the TBI_ACCEPT workaround above */
3982 length -= 4;
3983
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003984 /* probably a little skewed due to removing CRC */
3985 total_rx_bytes += length;
3986 total_rx_packets++;
3987
Joe Perches57bf6ee2010-05-13 15:26:17 +00003988 e1000_check_copybreak(netdev, buffer_info, length, &skb);
3989
Auke Kok996695d2006-11-01 08:47:50 -08003990 skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
3992 /* Receive Checksum Offload */
Jeff Kirshera292ca62006-01-12 16:51:30 -08003993 e1000_rx_checksum(adapter,
Joe Perches406874a2008-04-03 10:06:32 -07003994 (u32)(status) |
3995 ((u32)(rx_desc->errors) << 24),
David S. Millerc3d7a3a2006-03-15 14:26:28 -08003996 le16_to_cpu(rx_desc->csum), skb);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003997
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003998 e1000_receive_skb(adapter, status, rx_desc->special, skb);
Francois Romieuc3570ac2008-07-11 15:17:38 -07003999
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000next_desc:
4001 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004003 /* return some buffers to hardware, one at a time is too slow */
4004 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
4005 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
4006 cleaned_count = 0;
4007 }
4008
Jeff Kirsher30320be2006-03-02 18:21:57 -08004009 /* use prefetched values */
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004010 rx_desc = next_rxd;
4011 buffer_info = next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 rx_ring->next_to_clean = i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004014
4015 cleaned_count = E1000_DESC_UNUSED(rx_ring);
4016 if (cleaned_count)
4017 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004019 adapter->total_rx_packets += total_rx_packets;
4020 adapter->total_rx_bytes += total_rx_bytes;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00004021 netdev->stats.rx_bytes += total_rx_bytes;
4022 netdev->stats.rx_packets += total_rx_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 return cleaned;
4024}
4025
4026/**
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004027 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
4028 * @adapter: address of board private structure
4029 * @rx_ring: pointer to receive ring structure
4030 * @cleaned_count: number of buffers to allocate this pass
4031 **/
4032
4033static void
4034e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
4035 struct e1000_rx_ring *rx_ring, int cleaned_count)
4036{
4037 struct net_device *netdev = adapter->netdev;
4038 struct pci_dev *pdev = adapter->pdev;
4039 struct e1000_rx_desc *rx_desc;
4040 struct e1000_buffer *buffer_info;
4041 struct sk_buff *skb;
4042 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +00004043 unsigned int bufsz = 256 - 16 /*for skb_reserve */ ;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004044
4045 i = rx_ring->next_to_use;
4046 buffer_info = &rx_ring->buffer_info[i];
4047
4048 while (cleaned_count--) {
4049 skb = buffer_info->skb;
4050 if (skb) {
4051 skb_trim(skb, 0);
4052 goto check_page;
4053 }
4054
Eric Dumazet89d71a62009-10-13 05:34:20 +00004055 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004056 if (unlikely(!skb)) {
4057 /* Better luck next round */
4058 adapter->alloc_rx_buff_failed++;
4059 break;
4060 }
4061
4062 /* Fix for errata 23, can't cross 64kB boundary */
4063 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4064 struct sk_buff *oldskb = skb;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004065 e_err(rx_err, "skb align check failed: %u bytes at "
4066 "%p\n", bufsz, skb->data);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004067 /* Try again, without freeing the previous */
Eric Dumazet89d71a62009-10-13 05:34:20 +00004068 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004069 /* Failed allocation, critical failure */
4070 if (!skb) {
4071 dev_kfree_skb(oldskb);
4072 adapter->alloc_rx_buff_failed++;
4073 break;
4074 }
4075
4076 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4077 /* give up */
4078 dev_kfree_skb(skb);
4079 dev_kfree_skb(oldskb);
4080 break; /* while (cleaned_count--) */
4081 }
4082
4083 /* Use new allocation */
4084 dev_kfree_skb(oldskb);
4085 }
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004086 buffer_info->skb = skb;
4087 buffer_info->length = adapter->rx_buffer_len;
4088check_page:
4089 /* allocate a new page if necessary */
4090 if (!buffer_info->page) {
4091 buffer_info->page = alloc_page(GFP_ATOMIC);
4092 if (unlikely(!buffer_info->page)) {
4093 adapter->alloc_rx_buff_failed++;
4094 break;
4095 }
4096 }
4097
Anton Blanchardb5abb022010-02-19 17:54:53 +00004098 if (!buffer_info->dma) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004099 buffer_info->dma = dma_map_page(&pdev->dev,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004100 buffer_info->page, 0,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004101 buffer_info->length,
4102 DMA_FROM_DEVICE);
4103 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Anton Blanchardb5abb022010-02-19 17:54:53 +00004104 put_page(buffer_info->page);
4105 dev_kfree_skb(skb);
4106 buffer_info->page = NULL;
4107 buffer_info->skb = NULL;
4108 buffer_info->dma = 0;
4109 adapter->alloc_rx_buff_failed++;
4110 break; /* while !buffer_info->skb */
4111 }
4112 }
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004113
4114 rx_desc = E1000_RX_DESC(*rx_ring, i);
4115 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4116
4117 if (unlikely(++i == rx_ring->count))
4118 i = 0;
4119 buffer_info = &rx_ring->buffer_info[i];
4120 }
4121
4122 if (likely(rx_ring->next_to_use != i)) {
4123 rx_ring->next_to_use = i;
4124 if (unlikely(i-- == 0))
4125 i = (rx_ring->count - 1);
4126
4127 /* Force memory writes to complete before letting h/w
4128 * know there are new descriptors to fetch. (Only
4129 * applicable for weak-ordered memory model archs,
4130 * such as IA-64). */
4131 wmb();
4132 writel(i, adapter->hw.hw_addr + rx_ring->rdt);
4133 }
4134}
4135
4136/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004137 * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 * @adapter: address of board private structure
4139 **/
4140
Joe Perches64798842008-07-11 15:17:02 -07004141static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
4142 struct e1000_rx_ring *rx_ring,
4143 int cleaned_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144{
Joe Perches1dc32912008-07-11 15:17:08 -07004145 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 struct net_device *netdev = adapter->netdev;
4147 struct pci_dev *pdev = adapter->pdev;
4148 struct e1000_rx_desc *rx_desc;
4149 struct e1000_buffer *buffer_info;
4150 struct sk_buff *skb;
Malli Chilakala26483452005-04-28 19:44:46 -07004151 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +00004152 unsigned int bufsz = adapter->rx_buffer_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153
4154 i = rx_ring->next_to_use;
4155 buffer_info = &rx_ring->buffer_info[i];
4156
Jeff Kirshera292ca62006-01-12 16:51:30 -08004157 while (cleaned_count--) {
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004158 skb = buffer_info->skb;
4159 if (skb) {
Jeff Kirshera292ca62006-01-12 16:51:30 -08004160 skb_trim(skb, 0);
4161 goto map_skb;
4162 }
4163
Eric Dumazet89d71a62009-10-13 05:34:20 +00004164 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004165 if (unlikely(!skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 /* Better luck next round */
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004167 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 break;
4169 }
4170
Malli Chilakala26483452005-04-28 19:44:46 -07004171 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4173 struct sk_buff *oldskb = skb;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004174 e_err(rx_err, "skb align check failed: %u bytes at "
4175 "%p\n", bufsz, skb->data);
Malli Chilakala26483452005-04-28 19:44:46 -07004176 /* Try again, without freeing the previous */
Eric Dumazet89d71a62009-10-13 05:34:20 +00004177 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Malli Chilakala26483452005-04-28 19:44:46 -07004178 /* Failed allocation, critical failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 if (!skb) {
4180 dev_kfree_skb(oldskb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004181 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 break;
4183 }
Malli Chilakala26483452005-04-28 19:44:46 -07004184
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4186 /* give up */
4187 dev_kfree_skb(skb);
4188 dev_kfree_skb(oldskb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004189 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 break; /* while !buffer_info->skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 }
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004192
4193 /* Use new allocation */
4194 dev_kfree_skb(oldskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 buffer_info->skb = skb;
4197 buffer_info->length = adapter->rx_buffer_len;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004198map_skb:
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004199 buffer_info->dma = dma_map_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 skb->data,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004201 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004202 DMA_FROM_DEVICE);
4203 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Anton Blanchardb5abb022010-02-19 17:54:53 +00004204 dev_kfree_skb(skb);
4205 buffer_info->skb = NULL;
4206 buffer_info->dma = 0;
4207 adapter->alloc_rx_buff_failed++;
4208 break; /* while !buffer_info->skb */
4209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004211 /*
4212 * XXX if it was allocated cleanly it will never map to a
4213 * boundary crossing
4214 */
4215
Malli Chilakala26483452005-04-28 19:44:46 -07004216 /* Fix for errata 23, can't cross 64kB boundary */
4217 if (!e1000_check_64k_bound(adapter,
4218 (void *)(unsigned long)buffer_info->dma,
4219 adapter->rx_buffer_len)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004220 e_err(rx_err, "dma align check failed: %u bytes at "
4221 "%p\n", adapter->rx_buffer_len,
Emil Tantilov675ad472010-04-27 14:02:58 +00004222 (void *)(unsigned long)buffer_info->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 dev_kfree_skb(skb);
4224 buffer_info->skb = NULL;
4225
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004226 dma_unmap_single(&pdev->dev, buffer_info->dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 adapter->rx_buffer_len,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004228 DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00004229 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004231 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 break; /* while !buffer_info->skb */
4233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 rx_desc = E1000_RX_DESC(*rx_ring, i);
4235 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4236
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004237 if (unlikely(++i == rx_ring->count))
4238 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 buffer_info = &rx_ring->buffer_info[i];
4240 }
4241
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004242 if (likely(rx_ring->next_to_use != i)) {
4243 rx_ring->next_to_use = i;
4244 if (unlikely(i-- == 0))
4245 i = (rx_ring->count - 1);
4246
4247 /* Force memory writes to complete before letting h/w
4248 * know there are new descriptors to fetch. (Only
4249 * applicable for weak-ordered memory model archs,
4250 * such as IA-64). */
4251 wmb();
Joe Perches1dc32912008-07-11 15:17:08 -07004252 writel(i, hw->hw_addr + rx_ring->rdt);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254}
4255
4256/**
4257 * e1000_smartspeed - Workaround for SmartSpeed on 82541 and 82547 controllers.
4258 * @adapter:
4259 **/
4260
Joe Perches64798842008-07-11 15:17:02 -07004261static void e1000_smartspeed(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262{
Joe Perches1dc32912008-07-11 15:17:08 -07004263 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004264 u16 phy_status;
4265 u16 phy_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266
Joe Perches1dc32912008-07-11 15:17:08 -07004267 if ((hw->phy_type != e1000_phy_igp) || !hw->autoneg ||
4268 !(hw->autoneg_advertised & ADVERTISE_1000_FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 return;
4270
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004271 if (adapter->smartspeed == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 /* If Master/Slave config fault is asserted twice,
4273 * we assume back-to-back */
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_STATUS, &phy_status);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004277 if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
Joe Perches1dc32912008-07-11 15:17:08 -07004278 e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004279 if (phy_ctrl & CR_1000T_MS_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 phy_ctrl &= ~CR_1000T_MS_ENABLE;
Joe Perches1dc32912008-07-11 15:17:08 -07004281 e1000_write_phy_reg(hw, PHY_1000T_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 phy_ctrl);
4283 adapter->smartspeed++;
Joe Perches1dc32912008-07-11 15:17:08 -07004284 if (!e1000_phy_setup_autoneg(hw) &&
4285 !e1000_read_phy_reg(hw, PHY_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 &phy_ctrl)) {
4287 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4288 MII_CR_RESTART_AUTO_NEG);
Joe Perches1dc32912008-07-11 15:17:08 -07004289 e1000_write_phy_reg(hw, PHY_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 phy_ctrl);
4291 }
4292 }
4293 return;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004294 } else if (adapter->smartspeed == E1000_SMARTSPEED_DOWNSHIFT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 /* If still no link, perhaps using 2/3 pair cable */
Joe Perches1dc32912008-07-11 15:17:08 -07004296 e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 phy_ctrl |= CR_1000T_MS_ENABLE;
Joe Perches1dc32912008-07-11 15:17:08 -07004298 e1000_write_phy_reg(hw, PHY_1000T_CTRL, phy_ctrl);
4299 if (!e1000_phy_setup_autoneg(hw) &&
4300 !e1000_read_phy_reg(hw, PHY_CTRL, &phy_ctrl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4302 MII_CR_RESTART_AUTO_NEG);
Joe Perches1dc32912008-07-11 15:17:08 -07004303 e1000_write_phy_reg(hw, PHY_CTRL, phy_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 }
4305 }
4306 /* Restart process after E1000_SMARTSPEED_MAX iterations */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004307 if (adapter->smartspeed++ == E1000_SMARTSPEED_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 adapter->smartspeed = 0;
4309}
4310
4311/**
4312 * e1000_ioctl -
4313 * @netdev:
4314 * @ifreq:
4315 * @cmd:
4316 **/
4317
Joe Perches64798842008-07-11 15:17:02 -07004318static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319{
4320 switch (cmd) {
4321 case SIOCGMIIPHY:
4322 case SIOCGMIIREG:
4323 case SIOCSMIIREG:
4324 return e1000_mii_ioctl(netdev, ifr, cmd);
4325 default:
4326 return -EOPNOTSUPP;
4327 }
4328}
4329
4330/**
4331 * e1000_mii_ioctl -
4332 * @netdev:
4333 * @ifreq:
4334 * @cmd:
4335 **/
4336
Joe Perches64798842008-07-11 15:17:02 -07004337static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
4338 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004340 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004341 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 struct mii_ioctl_data *data = if_mii(ifr);
4343 int retval;
Joe Perches406874a2008-04-03 10:06:32 -07004344 u16 mii_reg;
4345 u16 spddplx;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004346 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347
Joe Perches1dc32912008-07-11 15:17:08 -07004348 if (hw->media_type != e1000_media_type_copper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 return -EOPNOTSUPP;
4350
4351 switch (cmd) {
4352 case SIOCGMIIPHY:
Joe Perches1dc32912008-07-11 15:17:08 -07004353 data->phy_id = hw->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 break;
4355 case SIOCGMIIREG:
Malli Chilakala97876fc2005-06-17 17:40:19 -07004356 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004357 if (e1000_read_phy_reg(hw, data->reg_num & 0x1F,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004358 &data->val_out)) {
4359 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004361 }
4362 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 break;
4364 case SIOCSMIIREG:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004365 if (data->reg_num & ~(0x1F))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 return -EFAULT;
4367 mii_reg = data->val_in;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004368 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004369 if (e1000_write_phy_reg(hw, data->reg_num,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004370 mii_reg)) {
4371 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004373 }
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004374 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004375 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 switch (data->reg_num) {
4377 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004378 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 break;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004380 if (mii_reg & MII_CR_AUTO_NEG_EN) {
Joe Perches1dc32912008-07-11 15:17:08 -07004381 hw->autoneg = 1;
4382 hw->autoneg_advertised = 0x2F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 } else {
4384 if (mii_reg & 0x40)
4385 spddplx = SPEED_1000;
4386 else if (mii_reg & 0x2000)
4387 spddplx = SPEED_100;
4388 else
4389 spddplx = SPEED_10;
4390 spddplx += (mii_reg & 0x100)
Jeff Kirshercb764322006-03-08 17:24:12 -08004391 ? DUPLEX_FULL :
4392 DUPLEX_HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 retval = e1000_set_spd_dplx(adapter,
4394 spddplx);
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004395 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 return retval;
4397 }
Auke Kok2db10a02006-06-27 09:06:28 -07004398 if (netif_running(adapter->netdev))
4399 e1000_reinit_locked(adapter);
4400 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 e1000_reset(adapter);
4402 break;
4403 case M88E1000_PHY_SPEC_CTRL:
4404 case M88E1000_EXT_PHY_SPEC_CTRL:
Joe Perches1dc32912008-07-11 15:17:08 -07004405 if (e1000_phy_reset(hw))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 return -EIO;
4407 break;
4408 }
4409 } else {
4410 switch (data->reg_num) {
4411 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004412 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 break;
Auke Kok2db10a02006-06-27 09:06:28 -07004414 if (netif_running(adapter->netdev))
4415 e1000_reinit_locked(adapter);
4416 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 e1000_reset(adapter);
4418 break;
4419 }
4420 }
4421 break;
4422 default:
4423 return -EOPNOTSUPP;
4424 }
4425 return E1000_SUCCESS;
4426}
4427
Joe Perches64798842008-07-11 15:17:02 -07004428void e1000_pci_set_mwi(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429{
4430 struct e1000_adapter *adapter = hw->back;
Malli Chilakala26483452005-04-28 19:44:46 -07004431 int ret_val = pci_set_mwi(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004433 if (ret_val)
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004434 e_err(probe, "Error in setting MWI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435}
4436
Joe Perches64798842008-07-11 15:17:02 -07004437void e1000_pci_clear_mwi(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438{
4439 struct e1000_adapter *adapter = hw->back;
4440
4441 pci_clear_mwi(adapter->pdev);
4442}
4443
Joe Perches64798842008-07-11 15:17:02 -07004444int e1000_pcix_get_mmrbc(struct e1000_hw *hw)
Peter Oruba007755e2007-09-28 22:42:06 -07004445{
4446 struct e1000_adapter *adapter = hw->back;
4447 return pcix_get_mmrbc(adapter->pdev);
4448}
4449
Joe Perches64798842008-07-11 15:17:02 -07004450void e1000_pcix_set_mmrbc(struct e1000_hw *hw, int mmrbc)
Peter Oruba007755e2007-09-28 22:42:06 -07004451{
4452 struct e1000_adapter *adapter = hw->back;
4453 pcix_set_mmrbc(adapter->pdev, mmrbc);
4454}
4455
Joe Perches64798842008-07-11 15:17:02 -07004456void e1000_io_write(struct e1000_hw *hw, unsigned long port, u32 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457{
4458 outl(value, port);
4459}
4460
Joe Perches64798842008-07-11 15:17:02 -07004461static void e1000_vlan_rx_register(struct net_device *netdev,
4462 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004464 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004465 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004466 u32 ctrl, rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004468 if (!test_bit(__E1000_DOWN, &adapter->flags))
4469 e1000_irq_disable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 adapter->vlgrp = grp;
4471
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004472 if (grp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 /* enable VLAN tag insert/strip */
Joe Perches1dc32912008-07-11 15:17:08 -07004474 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 ctrl |= E1000_CTRL_VME;
Joe Perches1dc32912008-07-11 15:17:08 -07004476 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004478 /* enable VLAN receive filtering */
4479 rctl = er32(RCTL);
4480 rctl &= ~E1000_RCTL_CFIEN;
4481 if (!(netdev->flags & IFF_PROMISC))
4482 rctl |= E1000_RCTL_VFE;
4483 ew32(RCTL, rctl);
4484 e1000_update_mng_vlan(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 } else {
4486 /* disable VLAN tag insert/strip */
Joe Perches1dc32912008-07-11 15:17:08 -07004487 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 ctrl &= ~E1000_CTRL_VME;
Joe Perches1dc32912008-07-11 15:17:08 -07004489 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004491 /* disable VLAN receive filtering */
4492 rctl = er32(RCTL);
4493 rctl &= ~E1000_RCTL_VFE;
4494 ew32(RCTL, rctl);
Graham, Davidfd38d7a2009-08-31 14:12:51 +00004495
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004496 if (adapter->mng_vlan_id != (u16)E1000_MNG_VLAN_NONE) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004497 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004498 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Auke Kokcd94dd02006-06-27 09:08:22 -07004499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 }
4501
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004502 if (!test_bit(__E1000_DOWN, &adapter->flags))
4503 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504}
4505
Joe Perches64798842008-07-11 15:17:02 -07004506static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004508 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004509 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004510 u32 vfta, index;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004511
Joe Perches1dc32912008-07-11 15:17:08 -07004512 if ((hw->mng_cookie.status &
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004513 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
4514 (vid == adapter->mng_vlan_id))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004515 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 /* add VID to filter table */
4517 index = (vid >> 5) & 0x7F;
Joe Perches1dc32912008-07-11 15:17:08 -07004518 vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 vfta |= (1 << (vid & 0x1F));
Joe Perches1dc32912008-07-11 15:17:08 -07004520 e1000_write_vfta(hw, index, vfta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521}
4522
Joe Perches64798842008-07-11 15:17:02 -07004523static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004525 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004526 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004527 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004529 if (!test_bit(__E1000_DOWN, &adapter->flags))
4530 e1000_irq_disable(adapter);
Dan Aloni5c15bde2007-03-02 20:44:51 -08004531 vlan_group_set_device(adapter->vlgrp, vid, NULL);
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004532 if (!test_bit(__E1000_DOWN, &adapter->flags))
4533 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534
4535 /* remove VID from filter table */
4536 index = (vid >> 5) & 0x7F;
Joe Perches1dc32912008-07-11 15:17:08 -07004537 vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 vfta &= ~(1 << (vid & 0x1F));
Joe Perches1dc32912008-07-11 15:17:08 -07004539 e1000_write_vfta(hw, index, vfta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540}
4541
Joe Perches64798842008-07-11 15:17:02 -07004542static void e1000_restore_vlan(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543{
4544 e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
4545
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004546 if (adapter->vlgrp) {
Joe Perches406874a2008-04-03 10:06:32 -07004547 u16 vid;
Jesse Grossb7381272010-10-20 13:56:02 +00004548 for (vid = 0; vid < VLAN_N_VID; vid++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08004549 if (!vlan_group_get_device(adapter->vlgrp, vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 continue;
4551 e1000_vlan_rx_add_vid(adapter->netdev, vid);
4552 }
4553 }
4554}
4555
Joe Perches64798842008-07-11 15:17:02 -07004556int e1000_set_spd_dplx(struct e1000_adapter *adapter, u16 spddplx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557{
Joe Perches1dc32912008-07-11 15:17:08 -07004558 struct e1000_hw *hw = &adapter->hw;
4559
4560 hw->autoneg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561
Malli Chilakala69213682005-06-17 17:44:20 -07004562 /* Fiber NICs only allow 1000 gbps Full duplex */
Joe Perches1dc32912008-07-11 15:17:08 -07004563 if ((hw->media_type == e1000_media_type_fiber) &&
Malli Chilakala69213682005-06-17 17:44:20 -07004564 spddplx != (SPEED_1000 + DUPLEX_FULL)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004565 e_err(probe, "Unsupported Speed/Duplex configuration\n");
Malli Chilakala69213682005-06-17 17:44:20 -07004566 return -EINVAL;
4567 }
4568
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004569 switch (spddplx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 case SPEED_10 + DUPLEX_HALF:
Joe Perches1dc32912008-07-11 15:17:08 -07004571 hw->forced_speed_duplex = e1000_10_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 break;
4573 case SPEED_10 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004574 hw->forced_speed_duplex = e1000_10_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575 break;
4576 case SPEED_100 + DUPLEX_HALF:
Joe Perches1dc32912008-07-11 15:17:08 -07004577 hw->forced_speed_duplex = e1000_100_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 break;
4579 case SPEED_100 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004580 hw->forced_speed_duplex = e1000_100_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 break;
4582 case SPEED_1000 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004583 hw->autoneg = 1;
4584 hw->autoneg_advertised = ADVERTISE_1000_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 break;
4586 case SPEED_1000 + DUPLEX_HALF: /* not supported */
4587 default:
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004588 e_err(probe, "Unsupported Speed/Duplex configuration\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 return -EINVAL;
4590 }
4591 return 0;
4592}
4593
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004594static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595{
4596 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07004597 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004598 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004599 u32 ctrl, ctrl_ext, rctl, status;
4600 u32 wufc = adapter->wol;
Auke Kok6fdfef12006-06-27 09:06:36 -07004601#ifdef CONFIG_PM
Jeff Kirsher240b1712006-01-12 16:51:28 -08004602 int retval = 0;
Auke Kok6fdfef12006-06-27 09:06:36 -07004603#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604
4605 netif_device_detach(netdev);
4606
Auke Kok2db10a02006-06-27 09:06:28 -07004607 if (netif_running(netdev)) {
4608 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 e1000_down(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07004610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004612#ifdef CONFIG_PM
Kok, Auke1d33e9c2007-02-16 14:39:28 -08004613 retval = pci_save_state(pdev);
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004614 if (retval)
4615 return retval;
4616#endif
4617
Joe Perches1dc32912008-07-11 15:17:08 -07004618 status = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004619 if (status & E1000_STATUS_LU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 wufc &= ~E1000_WUFC_LNKC;
4621
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004622 if (wufc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 e1000_setup_rctl(adapter);
Patrick McHardydb0ce502007-11-13 20:54:59 -08004624 e1000_set_rx_mode(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625
4626 /* turn on all-multi mode if wake on multicast is enabled */
Jesse Brandeburg120cd572006-08-31 14:27:46 -07004627 if (wufc & E1000_WUFC_MC) {
Joe Perches1dc32912008-07-11 15:17:08 -07004628 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 rctl |= E1000_RCTL_MPE;
Joe Perches1dc32912008-07-11 15:17:08 -07004630 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 }
4632
Joe Perches1dc32912008-07-11 15:17:08 -07004633 if (hw->mac_type >= e1000_82540) {
4634 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 /* advertise wake from D3Cold */
4636 #define E1000_CTRL_ADVD3WUC 0x00100000
4637 /* phy power management enable */
4638 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
4639 ctrl |= E1000_CTRL_ADVD3WUC |
4640 E1000_CTRL_EN_PHY_PWR_MGMT;
Joe Perches1dc32912008-07-11 15:17:08 -07004641 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 }
4643
Joe Perches1dc32912008-07-11 15:17:08 -07004644 if (hw->media_type == e1000_media_type_fiber ||
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004645 hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 /* keep the laser running in D3 */
Joe Perches1dc32912008-07-11 15:17:08 -07004647 ctrl_ext = er32(CTRL_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 ctrl_ext |= E1000_CTRL_EXT_SDP7_DATA;
Joe Perches1dc32912008-07-11 15:17:08 -07004649 ew32(CTRL_EXT, ctrl_ext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 }
4651
Joe Perches1dc32912008-07-11 15:17:08 -07004652 ew32(WUC, E1000_WUC_PME_EN);
4653 ew32(WUFC, wufc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07004655 ew32(WUC, 0);
4656 ew32(WUFC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 }
4658
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004659 e1000_release_manageability(adapter);
4660
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004661 *enable_wake = !!wufc;
4662
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004663 /* make sure adapter isn't asleep if manageability is enabled */
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004664 if (adapter->en_mng_pt)
4665 *enable_wake = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666
Auke Kokedd106f2006-11-06 08:57:12 -08004667 if (netif_running(netdev))
4668 e1000_free_irq(adapter);
4669
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 pci_disable_device(pdev);
Jeff Kirsher240b1712006-01-12 16:51:28 -08004671
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 return 0;
4673}
4674
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004675#ifdef CONFIG_PM
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004676static int e1000_suspend(struct pci_dev *pdev, pm_message_t state)
4677{
4678 int retval;
4679 bool wake;
4680
4681 retval = __e1000_shutdown(pdev, &wake);
4682 if (retval)
4683 return retval;
4684
4685 if (wake) {
4686 pci_prepare_to_sleep(pdev);
4687 } else {
4688 pci_wake_from_d3(pdev, false);
4689 pci_set_power_state(pdev, PCI_D3hot);
4690 }
4691
4692 return 0;
4693}
4694
Joe Perches64798842008-07-11 15:17:02 -07004695static int e1000_resume(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696{
4697 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07004698 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004699 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004700 u32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701
Auke Kokd0e027d2006-04-14 19:04:40 -07004702 pci_set_power_state(pdev, PCI_D0);
Kok, Auke1d33e9c2007-02-16 14:39:28 -08004703 pci_restore_state(pdev);
Nick Nunleydbb5aae2010-02-03 14:49:48 +00004704 pci_save_state(pdev);
Taku Izumi81250292008-07-11 15:17:44 -07004705
4706 if (adapter->need_ioport)
4707 err = pci_enable_device(pdev);
4708 else
4709 err = pci_enable_device_mem(pdev);
Joe Perchesc7be73b2008-07-11 15:17:28 -07004710 if (err) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004711 pr_err("Cannot enable PCI device from suspend\n");
Auke Kok3d1dd8c2006-08-28 14:56:27 -07004712 return err;
4713 }
Malli Chilakalaa4cb8472005-04-28 19:41:28 -07004714 pci_set_master(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715
Auke Kokd0e027d2006-04-14 19:04:40 -07004716 pci_enable_wake(pdev, PCI_D3hot, 0);
4717 pci_enable_wake(pdev, PCI_D3cold, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718
Joe Perchesc7be73b2008-07-11 15:17:28 -07004719 if (netif_running(netdev)) {
4720 err = e1000_request_irq(adapter);
4721 if (err)
4722 return err;
4723 }
Auke Kokedd106f2006-11-06 08:57:12 -08004724
4725 e1000_power_up_phy(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 e1000_reset(adapter);
Joe Perches1dc32912008-07-11 15:17:08 -07004727 ew32(WUS, ~0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004729 e1000_init_manageability(adapter);
4730
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004731 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 e1000_up(adapter);
4733
4734 netif_device_attach(netdev);
4735
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 return 0;
4737}
4738#endif
Auke Kokc653e632006-05-23 13:35:57 -07004739
4740static void e1000_shutdown(struct pci_dev *pdev)
4741{
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004742 bool wake;
4743
4744 __e1000_shutdown(pdev, &wake);
4745
4746 if (system_state == SYSTEM_POWER_OFF) {
4747 pci_wake_from_d3(pdev, wake);
4748 pci_set_power_state(pdev, PCI_D3hot);
4749 }
Auke Kokc653e632006-05-23 13:35:57 -07004750}
4751
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752#ifdef CONFIG_NET_POLL_CONTROLLER
4753/*
4754 * Polling 'interrupt' - used by things like netconsole to send skbs
4755 * without having to re-enable interrupts. It's not called while
4756 * the interrupt routine is executing.
4757 */
Joe Perches64798842008-07-11 15:17:02 -07004758static void e1000_netpoll(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004760 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kokd3d9e482006-07-14 16:14:23 -07004761
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 disable_irq(adapter->pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01004763 e1000_intr(adapter->pdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 enable_irq(adapter->pdev->irq);
4765}
4766#endif
4767
Auke Kok90267292006-06-08 09:30:24 -07004768/**
4769 * e1000_io_error_detected - called when PCI error is detected
4770 * @pdev: Pointer to PCI device
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004771 * @state: The current pci connection state
Auke Kok90267292006-06-08 09:30:24 -07004772 *
4773 * This function is called after a PCI bus error affecting
4774 * this device has been detected.
4775 */
Joe Perches64798842008-07-11 15:17:02 -07004776static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
4777 pci_channel_state_t state)
Auke Kok90267292006-06-08 09:30:24 -07004778{
4779 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004780 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kok90267292006-06-08 09:30:24 -07004781
4782 netif_device_detach(netdev);
4783
Andre Detscheab63302009-06-30 12:46:13 +00004784 if (state == pci_channel_io_perm_failure)
4785 return PCI_ERS_RESULT_DISCONNECT;
4786
Auke Kok90267292006-06-08 09:30:24 -07004787 if (netif_running(netdev))
4788 e1000_down(adapter);
Linas Vepstas72e8d6b2006-09-18 20:58:06 -07004789 pci_disable_device(pdev);
Auke Kok90267292006-06-08 09:30:24 -07004790
4791 /* Request a slot slot reset. */
4792 return PCI_ERS_RESULT_NEED_RESET;
4793}
4794
4795/**
4796 * e1000_io_slot_reset - called after the pci bus has been reset.
4797 * @pdev: Pointer to PCI device
4798 *
4799 * Restart the card from scratch, as if from a cold-boot. Implementation
4800 * resembles the first-half of the e1000_resume routine.
4801 */
4802static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
4803{
4804 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004805 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004806 struct e1000_hw *hw = &adapter->hw;
Taku Izumi81250292008-07-11 15:17:44 -07004807 int err;
Auke Kok90267292006-06-08 09:30:24 -07004808
Taku Izumi81250292008-07-11 15:17:44 -07004809 if (adapter->need_ioport)
4810 err = pci_enable_device(pdev);
4811 else
4812 err = pci_enable_device_mem(pdev);
4813 if (err) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004814 pr_err("Cannot re-enable PCI device after reset.\n");
Auke Kok90267292006-06-08 09:30:24 -07004815 return PCI_ERS_RESULT_DISCONNECT;
4816 }
4817 pci_set_master(pdev);
4818
Linas Vepstasdbf38c92006-09-27 12:54:11 -07004819 pci_enable_wake(pdev, PCI_D3hot, 0);
4820 pci_enable_wake(pdev, PCI_D3cold, 0);
Auke Kok90267292006-06-08 09:30:24 -07004821
Auke Kok90267292006-06-08 09:30:24 -07004822 e1000_reset(adapter);
Joe Perches1dc32912008-07-11 15:17:08 -07004823 ew32(WUS, ~0);
Auke Kok90267292006-06-08 09:30:24 -07004824
4825 return PCI_ERS_RESULT_RECOVERED;
4826}
4827
4828/**
4829 * e1000_io_resume - called when traffic can start flowing again.
4830 * @pdev: Pointer to PCI device
4831 *
4832 * This callback is called when the error recovery driver tells us that
4833 * its OK to resume normal operation. Implementation resembles the
4834 * second-half of the e1000_resume routine.
4835 */
4836static void e1000_io_resume(struct pci_dev *pdev)
4837{
4838 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004839 struct e1000_adapter *adapter = netdev_priv(netdev);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004840
4841 e1000_init_manageability(adapter);
Auke Kok90267292006-06-08 09:30:24 -07004842
4843 if (netif_running(netdev)) {
4844 if (e1000_up(adapter)) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004845 pr_info("can't bring device back up after reset\n");
Auke Kok90267292006-06-08 09:30:24 -07004846 return;
4847 }
4848 }
4849
4850 netif_device_attach(netdev);
Auke Kok90267292006-06-08 09:30:24 -07004851}
4852
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853/* e1000_main.c */