blob: 2c723b1b8820f5400f9b3e4459b20663e018e06f [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";
Jesse Brandeburg15b2bee2009-01-27 16:41:58 -080034#define DRV_VERSION "7.3.21-k3-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 */
45static struct pci_device_id e1000_pci_tbl[] = {
46 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);
126static void e1000_watchdog(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static void e1000_82547_tx_fifo_stall(unsigned long data);
Stephen Hemminger3b29a562009-08-31 19:50:55 +0000128static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
129 struct net_device *netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static struct net_device_stats * e1000_get_stats(struct net_device *netdev);
131static int e1000_change_mtu(struct net_device *netdev, int new_mtu);
132static int e1000_set_mac(struct net_device *netdev, void *p);
David Howells7d12e782006-10-05 14:55:46 +0100133static irqreturn_t e1000_intr(int irq, void *data);
Jesse Brandeburg9ac98282006-11-01 08:48:10 -0800134static irqreturn_t e1000_intr_msi(int irq, void *data);
Joe Perchesc3033b02008-03-21 11:06:25 -0700135static bool e1000_clean_tx_irq(struct e1000_adapter *adapter,
136 struct e1000_tx_ring *tx_ring);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700137static int e1000_clean(struct napi_struct *napi, int budget);
Joe Perchesc3033b02008-03-21 11:06:25 -0700138static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
139 struct e1000_rx_ring *rx_ring,
140 int *work_done, int work_to_do);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000141static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
142 struct e1000_rx_ring *rx_ring,
143 int *work_done, int work_to_do);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400144static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000145 struct e1000_rx_ring *rx_ring,
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800146 int cleaned_count);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000147static void e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
148 struct e1000_rx_ring *rx_ring,
149 int cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd);
151static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
152 int cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static void e1000_enter_82542_rst(struct e1000_adapter *adapter);
154static void e1000_leave_82542_rst(struct e1000_adapter *adapter);
155static void e1000_tx_timeout(struct net_device *dev);
David Howells65f27f32006-11-22 14:55:48 +0000156static void e1000_reset_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static void e1000_smartspeed(struct e1000_adapter *adapter);
Auke Koke619d522006-04-14 19:04:52 -0700158static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
159 struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161static void e1000_vlan_rx_register(struct net_device *netdev, struct vlan_group *grp);
Joe Perches406874a2008-04-03 10:06:32 -0700162static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid);
163static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164static void e1000_restore_vlan(struct e1000_adapter *adapter);
165
Auke Kok6fdfef12006-06-27 09:06:36 -0700166#ifdef CONFIG_PM
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +0000167static int e1000_suspend(struct pci_dev *pdev, pm_message_t state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168static int e1000_resume(struct pci_dev *pdev);
169#endif
Auke Kokc653e632006-05-23 13:35:57 -0700170static void e1000_shutdown(struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172#ifdef CONFIG_NET_POLL_CONTROLLER
173/* for netdump / net console */
174static void e1000_netpoll (struct net_device *netdev);
175#endif
176
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100177#define COPYBREAK_DEFAULT 256
178static unsigned int copybreak __read_mostly = COPYBREAK_DEFAULT;
179module_param(copybreak, uint, 0644);
180MODULE_PARM_DESC(copybreak,
181 "Maximum size of packet that is copied to a new buffer on receive");
182
Auke Kok90267292006-06-08 09:30:24 -0700183static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
184 pci_channel_state_t state);
185static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev);
186static void e1000_io_resume(struct pci_dev *pdev);
187
188static struct pci_error_handlers e1000_err_handler = {
189 .error_detected = e1000_io_error_detected,
190 .slot_reset = e1000_io_slot_reset,
191 .resume = e1000_io_resume,
192};
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -0400193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194static struct pci_driver e1000_driver = {
195 .name = e1000_driver_name,
196 .id_table = e1000_pci_tbl,
197 .probe = e1000_probe,
198 .remove = __devexit_p(e1000_remove),
Auke Kokc4e24f02006-09-27 12:53:19 -0700199#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 /* Power Managment Hooks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 .suspend = e1000_suspend,
Auke Kokc653e632006-05-23 13:35:57 -0700202 .resume = e1000_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203#endif
Auke Kok90267292006-06-08 09:30:24 -0700204 .shutdown = e1000_shutdown,
205 .err_handler = &e1000_err_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
208MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
209MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
210MODULE_LICENSE("GPL");
211MODULE_VERSION(DRV_VERSION);
212
213static int debug = NETIF_MSG_DRV | NETIF_MSG_PROBE;
214module_param(debug, int, 0);
215MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
216
217/**
218 * e1000_init_module - Driver Registration Routine
219 *
220 * e1000_init_module is the first routine called when the driver is
221 * loaded. All it does is register with the PCI subsystem.
222 **/
223
Joe Perches64798842008-07-11 15:17:02 -0700224static int __init e1000_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 int ret;
227 printk(KERN_INFO "%s - version %s\n",
228 e1000_driver_string, e1000_driver_version);
229
230 printk(KERN_INFO "%s\n", e1000_copyright);
231
Jeff Garzik29917622006-08-19 17:48:59 -0400232 ret = pci_register_driver(&e1000_driver);
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100233 if (copybreak != COPYBREAK_DEFAULT) {
234 if (copybreak == 0)
235 printk(KERN_INFO "e1000: copybreak disabled\n");
236 else
237 printk(KERN_INFO "e1000: copybreak enabled for "
238 "packets <= %u bytes\n", copybreak);
239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return ret;
241}
242
243module_init(e1000_init_module);
244
245/**
246 * e1000_exit_module - Driver Exit Cleanup Routine
247 *
248 * e1000_exit_module is called just before the driver is removed
249 * from memory.
250 **/
251
Joe Perches64798842008-07-11 15:17:02 -0700252static void __exit e1000_exit_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 pci_unregister_driver(&e1000_driver);
255}
256
257module_exit(e1000_exit_module);
258
Auke Kok2db10a02006-06-27 09:06:28 -0700259static int e1000_request_irq(struct e1000_adapter *adapter)
260{
Joe Perches1dc32912008-07-11 15:17:08 -0700261 struct e1000_hw *hw = &adapter->hw;
Auke Kok2db10a02006-06-27 09:06:28 -0700262 struct net_device *netdev = adapter->netdev;
Al Viro3e188262007-12-11 19:49:39 +0000263 irq_handler_t handler = e1000_intr;
Auke Koke94bd232007-05-16 01:49:46 -0700264 int irq_flags = IRQF_SHARED;
265 int err;
Auke Kok2db10a02006-06-27 09:06:28 -0700266
Joe Perches1dc32912008-07-11 15:17:08 -0700267 if (hw->mac_type >= e1000_82571) {
Auke Koke94bd232007-05-16 01:49:46 -0700268 adapter->have_msi = !pci_enable_msi(adapter->pdev);
269 if (adapter->have_msi) {
Al Viro3e188262007-12-11 19:49:39 +0000270 handler = e1000_intr_msi;
Auke Koke94bd232007-05-16 01:49:46 -0700271 irq_flags = 0;
Auke Kok2db10a02006-06-27 09:06:28 -0700272 }
273 }
Auke Koke94bd232007-05-16 01:49:46 -0700274
275 err = request_irq(adapter->pdev->irq, handler, irq_flags, netdev->name,
276 netdev);
277 if (err) {
278 if (adapter->have_msi)
279 pci_disable_msi(adapter->pdev);
Auke Kok2db10a02006-06-27 09:06:28 -0700280 DPRINTK(PROBE, ERR,
281 "Unable to allocate interrupt Error: %d\n", err);
Auke Koke94bd232007-05-16 01:49:46 -0700282 }
Auke Kok2db10a02006-06-27 09:06:28 -0700283
284 return err;
285}
286
287static void e1000_free_irq(struct e1000_adapter *adapter)
288{
289 struct net_device *netdev = adapter->netdev;
290
291 free_irq(adapter->pdev->irq, netdev);
292
Auke Kok2db10a02006-06-27 09:06:28 -0700293 if (adapter->have_msi)
294 pci_disable_msi(adapter->pdev);
Auke Kok2db10a02006-06-27 09:06:28 -0700295}
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297/**
298 * e1000_irq_disable - Mask off interrupt generation on the NIC
299 * @adapter: board private structure
300 **/
301
Joe Perches64798842008-07-11 15:17:02 -0700302static void e1000_irq_disable(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Joe Perches1dc32912008-07-11 15:17:08 -0700304 struct e1000_hw *hw = &adapter->hw;
305
306 ew32(IMC, ~0);
307 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 synchronize_irq(adapter->pdev->irq);
309}
310
311/**
312 * e1000_irq_enable - Enable default interrupt generation settings
313 * @adapter: board private structure
314 **/
315
Joe Perches64798842008-07-11 15:17:02 -0700316static void e1000_irq_enable(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Joe Perches1dc32912008-07-11 15:17:08 -0700318 struct e1000_hw *hw = &adapter->hw;
319
320 ew32(IMS, IMS_ENABLE_MASK);
321 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100323
Joe Perches64798842008-07-11 15:17:02 -0700324static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700325{
Joe Perches1dc32912008-07-11 15:17:08 -0700326 struct e1000_hw *hw = &adapter->hw;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700327 struct net_device *netdev = adapter->netdev;
Joe Perches1dc32912008-07-11 15:17:08 -0700328 u16 vid = hw->mng_cookie.vlan_id;
Joe Perches406874a2008-04-03 10:06:32 -0700329 u16 old_vid = adapter->mng_vlan_id;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800330 if (adapter->vlgrp) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800331 if (!vlan_group_get_device(adapter->vlgrp, vid)) {
Joe Perches1dc32912008-07-11 15:17:08 -0700332 if (hw->mng_cookie.status &
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700333 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) {
334 e1000_vlan_rx_add_vid(netdev, vid);
335 adapter->mng_vlan_id = vid;
336 } else
337 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800338
Joe Perches406874a2008-04-03 10:06:32 -0700339 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) &&
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800340 (vid != old_vid) &&
Dan Aloni5c15bde2007-03-02 20:44:51 -0800341 !vlan_group_get_device(adapter->vlgrp, old_vid))
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700342 e1000_vlan_rx_kill_vid(netdev, old_vid);
Jeff Kirsherc5f226f2006-03-02 18:17:55 -0800343 } else
344 adapter->mng_vlan_id = vid;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700345 }
346}
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800347
348/**
349 * e1000_release_hw_control - release control of the h/w to f/w
350 * @adapter: address of board private structure
351 *
352 * e1000_release_hw_control resets {CTRL_EXT|FWSM}:DRV_LOAD bit.
353 * For ASF and Pass Through versions of f/w this means that the
354 * driver is no longer loaded. For AMT version (only with 82573) i
Auke Kok90fb5132006-11-01 08:47:30 -0800355 * of the f/w this means that the network i/f is closed.
Auke Kok76c224b2006-05-23 13:36:06 -0700356 *
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800357 **/
358
Joe Perches64798842008-07-11 15:17:02 -0700359static void e1000_release_hw_control(struct e1000_adapter *adapter)
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800360{
Joe Perches406874a2008-04-03 10:06:32 -0700361 u32 ctrl_ext;
362 u32 swsm;
Joe Perches1dc32912008-07-11 15:17:08 -0700363 struct e1000_hw *hw = &adapter->hw;
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800364
365 /* Let firmware taken over control of h/w */
Joe Perches1dc32912008-07-11 15:17:08 -0700366 switch (hw->mac_type) {
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800367 case e1000_82573:
Joe Perches1dc32912008-07-11 15:17:08 -0700368 swsm = er32(SWSM);
369 ew32(SWSM, swsm & ~E1000_SWSM_DRV_LOAD);
Bruce Allan31d76442007-03-06 08:57:24 -0800370 break;
371 case e1000_82571:
372 case e1000_82572:
373 case e1000_80003es2lan:
Auke Kokcd94dd02006-06-27 09:08:22 -0700374 case e1000_ich8lan:
Joe Perches1dc32912008-07-11 15:17:08 -0700375 ctrl_ext = er32(CTRL_EXT);
376 ew32(CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
Auke Kokcd94dd02006-06-27 09:08:22 -0700377 break;
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800378 default:
379 break;
380 }
381}
382
383/**
384 * e1000_get_hw_control - get control of the h/w from f/w
385 * @adapter: address of board private structure
386 *
387 * e1000_get_hw_control sets {CTRL_EXT|FWSM}:DRV_LOAD bit.
Auke Kok76c224b2006-05-23 13:36:06 -0700388 * For ASF and Pass Through versions of f/w this means that
389 * the driver is loaded. For AMT version (only with 82573)
Auke Kok90fb5132006-11-01 08:47:30 -0800390 * of the f/w this means that the network i/f is open.
Auke Kok76c224b2006-05-23 13:36:06 -0700391 *
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800392 **/
393
Joe Perches64798842008-07-11 15:17:02 -0700394static void e1000_get_hw_control(struct e1000_adapter *adapter)
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800395{
Joe Perches406874a2008-04-03 10:06:32 -0700396 u32 ctrl_ext;
397 u32 swsm;
Joe Perches1dc32912008-07-11 15:17:08 -0700398 struct e1000_hw *hw = &adapter->hw;
Auke Kok90fb5132006-11-01 08:47:30 -0800399
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800400 /* Let firmware know the driver has taken over */
Joe Perches1dc32912008-07-11 15:17:08 -0700401 switch (hw->mac_type) {
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800402 case e1000_82573:
Joe Perches1dc32912008-07-11 15:17:08 -0700403 swsm = er32(SWSM);
404 ew32(SWSM, swsm | E1000_SWSM_DRV_LOAD);
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800405 break;
Bruce Allan31d76442007-03-06 08:57:24 -0800406 case e1000_82571:
407 case e1000_82572:
408 case e1000_80003es2lan:
Auke Kokcd94dd02006-06-27 09:08:22 -0700409 case e1000_ich8lan:
Joe Perches1dc32912008-07-11 15:17:08 -0700410 ctrl_ext = er32(CTRL_EXT);
411 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
Auke Kokcd94dd02006-06-27 09:08:22 -0700412 break;
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800413 default:
414 break;
415 }
416}
417
Joe Perches64798842008-07-11 15:17:02 -0700418static void e1000_init_manageability(struct e1000_adapter *adapter)
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500419{
Joe Perches1dc32912008-07-11 15:17:08 -0700420 struct e1000_hw *hw = &adapter->hw;
421
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500422 if (adapter->en_mng_pt) {
Joe Perches1dc32912008-07-11 15:17:08 -0700423 u32 manc = er32(MANC);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500424
425 /* disable hardware interception of ARP */
426 manc &= ~(E1000_MANC_ARP_EN);
427
428 /* enable receiving management packets to the host */
429 /* this will probably generate destination unreachable messages
430 * from the host OS, but the packets will be handled on SMBUS */
Joe Perches1dc32912008-07-11 15:17:08 -0700431 if (hw->has_manc2h) {
432 u32 manc2h = er32(MANC2H);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500433
434 manc |= E1000_MANC_EN_MNG2HOST;
435#define E1000_MNG2HOST_PORT_623 (1 << 5)
436#define E1000_MNG2HOST_PORT_664 (1 << 6)
437 manc2h |= E1000_MNG2HOST_PORT_623;
438 manc2h |= E1000_MNG2HOST_PORT_664;
Joe Perches1dc32912008-07-11 15:17:08 -0700439 ew32(MANC2H, manc2h);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500440 }
441
Joe Perches1dc32912008-07-11 15:17:08 -0700442 ew32(MANC, manc);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500443 }
444}
445
Joe Perches64798842008-07-11 15:17:02 -0700446static void e1000_release_manageability(struct e1000_adapter *adapter)
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500447{
Joe Perches1dc32912008-07-11 15:17:08 -0700448 struct e1000_hw *hw = &adapter->hw;
449
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500450 if (adapter->en_mng_pt) {
Joe Perches1dc32912008-07-11 15:17:08 -0700451 u32 manc = er32(MANC);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500452
453 /* re-enable hardware interception of ARP */
454 manc |= E1000_MANC_ARP_EN;
455
Joe Perches1dc32912008-07-11 15:17:08 -0700456 if (hw->has_manc2h)
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500457 manc &= ~E1000_MANC_EN_MNG2HOST;
458
459 /* don't explicitly have to mess with MANC2H since
460 * MANC has an enable disable that gates MANC2H */
461
Joe Perches1dc32912008-07-11 15:17:08 -0700462 ew32(MANC, manc);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500463 }
464}
465
Auke Koke0aac5a2007-03-06 08:57:21 -0800466/**
467 * e1000_configure - configure the hardware for RX and TX
468 * @adapter = private board structure
469 **/
470static void e1000_configure(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 struct net_device *netdev = adapter->netdev;
Auke Kok2db10a02006-06-27 09:06:28 -0700473 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Patrick McHardydb0ce502007-11-13 20:54:59 -0800475 e1000_set_rx_mode(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 e1000_restore_vlan(adapter);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500478 e1000_init_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 e1000_configure_tx(adapter);
481 e1000_setup_rctl(adapter);
482 e1000_configure_rx(adapter);
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800483 /* call E1000_DESC_UNUSED which always leaves
484 * at least 1 descriptor unused to make sure
485 * next_to_use != next_to_clean */
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800486 for (i = 0; i < adapter->num_rx_queues; i++) {
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800487 struct e1000_rx_ring *ring = &adapter->rx_ring[i];
Jeff Kirshera292ca62006-01-12 16:51:30 -0800488 adapter->alloc_rx_buf(adapter, ring,
489 E1000_DESC_UNUSED(ring));
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Jeff Kirsher7bfa4812006-01-12 16:50:41 -0800492 adapter->tx_queue_len = netdev->tx_queue_len;
Auke Koke0aac5a2007-03-06 08:57:21 -0800493}
Jeff Kirsher7bfa4812006-01-12 16:50:41 -0800494
Auke Koke0aac5a2007-03-06 08:57:21 -0800495int e1000_up(struct e1000_adapter *adapter)
496{
Joe Perches1dc32912008-07-11 15:17:08 -0700497 struct e1000_hw *hw = &adapter->hw;
498
Auke Koke0aac5a2007-03-06 08:57:21 -0800499 /* hardware has been reset, we need to reload some things */
500 e1000_configure(adapter);
Malli Chilakala5de55622005-04-28 19:39:30 -0700501
Auke Kok1314bbf2006-09-27 12:54:02 -0700502 clear_bit(__E1000_DOWN, &adapter->flags);
503
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700504 napi_enable(&adapter->napi);
Francois Romieuc3570ac2008-07-11 15:17:38 -0700505
Auke Koke0aac5a2007-03-06 08:57:21 -0800506 e1000_irq_enable(adapter);
507
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +0000508 netif_wake_queue(adapter->netdev);
509
Jesse Brandeburg79f3d392006-12-15 10:42:34 +0100510 /* fire a link change interrupt to start the watchdog */
Joe Perches1dc32912008-07-11 15:17:08 -0700511 ew32(ICS, E1000_ICS_LSC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return 0;
513}
514
Auke Kok79f05bf2006-06-27 09:06:32 -0700515/**
516 * e1000_power_up_phy - restore link in case the phy was powered down
517 * @adapter: address of board private structure
518 *
519 * The phy may be powered down to save power and turn off link when the
520 * driver is unloaded and wake on lan is not enabled (among others)
521 * *** this routine MUST be followed by a call to e1000_reset ***
522 *
523 **/
524
Jesse Brandeburgd6582662006-08-16 13:31:33 -0700525void e1000_power_up_phy(struct e1000_adapter *adapter)
Auke Kok79f05bf2006-06-27 09:06:32 -0700526{
Joe Perches1dc32912008-07-11 15:17:08 -0700527 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700528 u16 mii_reg = 0;
Auke Kok79f05bf2006-06-27 09:06:32 -0700529
530 /* Just clear the power down bit to wake the phy back up */
Joe Perches1dc32912008-07-11 15:17:08 -0700531 if (hw->media_type == e1000_media_type_copper) {
Auke Kok79f05bf2006-06-27 09:06:32 -0700532 /* according to the manual, the phy will retain its
533 * settings across a power-down/up cycle */
Joe Perches1dc32912008-07-11 15:17:08 -0700534 e1000_read_phy_reg(hw, PHY_CTRL, &mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700535 mii_reg &= ~MII_CR_POWER_DOWN;
Joe Perches1dc32912008-07-11 15:17:08 -0700536 e1000_write_phy_reg(hw, PHY_CTRL, mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700537 }
538}
539
540static void e1000_power_down_phy(struct e1000_adapter *adapter)
541{
Joe Perches1dc32912008-07-11 15:17:08 -0700542 struct e1000_hw *hw = &adapter->hw;
543
Bruce Allan61c25052006-09-27 12:53:54 -0700544 /* Power down the PHY so no link is implied when interface is down *
Joe Perchesc3033b02008-03-21 11:06:25 -0700545 * The PHY cannot be powered down if any of the following is true *
Auke Kok79f05bf2006-06-27 09:06:32 -0700546 * (a) WoL is enabled
547 * (b) AMT is active
548 * (c) SoL/IDER session is active */
Joe Perches1dc32912008-07-11 15:17:08 -0700549 if (!adapter->wol && hw->mac_type >= e1000_82540 &&
550 hw->media_type == e1000_media_type_copper) {
Joe Perches406874a2008-04-03 10:06:32 -0700551 u16 mii_reg = 0;
Bruce Allan61c25052006-09-27 12:53:54 -0700552
Joe Perches1dc32912008-07-11 15:17:08 -0700553 switch (hw->mac_type) {
Bruce Allan61c25052006-09-27 12:53:54 -0700554 case e1000_82540:
555 case e1000_82545:
556 case e1000_82545_rev_3:
557 case e1000_82546:
558 case e1000_82546_rev_3:
559 case e1000_82541:
560 case e1000_82541_rev_2:
561 case e1000_82547:
562 case e1000_82547_rev_2:
Joe Perches1dc32912008-07-11 15:17:08 -0700563 if (er32(MANC) & E1000_MANC_SMBUS_EN)
Bruce Allan61c25052006-09-27 12:53:54 -0700564 goto out;
565 break;
566 case e1000_82571:
567 case e1000_82572:
568 case e1000_82573:
569 case e1000_80003es2lan:
570 case e1000_ich8lan:
Joe Perches1dc32912008-07-11 15:17:08 -0700571 if (e1000_check_mng_mode(hw) ||
572 e1000_check_phy_reset_block(hw))
Bruce Allan61c25052006-09-27 12:53:54 -0700573 goto out;
574 break;
575 default:
576 goto out;
577 }
Joe Perches1dc32912008-07-11 15:17:08 -0700578 e1000_read_phy_reg(hw, PHY_CTRL, &mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700579 mii_reg |= MII_CR_POWER_DOWN;
Joe Perches1dc32912008-07-11 15:17:08 -0700580 e1000_write_phy_reg(hw, PHY_CTRL, mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700581 mdelay(1);
582 }
Bruce Allan61c25052006-09-27 12:53:54 -0700583out:
584 return;
Auke Kok79f05bf2006-06-27 09:06:32 -0700585}
586
Joe Perches64798842008-07-11 15:17:02 -0700587void e1000_down(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000589 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 struct net_device *netdev = adapter->netdev;
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000591 u32 rctl, tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Auke Kok1314bbf2006-09-27 12:54:02 -0700593 /* signal that we're down so the interrupt handler does not
594 * reschedule our watchdog timer */
595 set_bit(__E1000_DOWN, &adapter->flags);
596
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000597 /* disable receives in the hardware */
598 rctl = er32(RCTL);
599 ew32(RCTL, rctl & ~E1000_RCTL_EN);
600 /* flush and sleep below */
601
602 /* can be netif_tx_disable when NETIF_F_LLTX is removed */
603 netif_stop_queue(netdev);
604
605 /* disable transmits in the hardware */
606 tctl = er32(TCTL);
607 tctl &= ~E1000_TCTL_EN;
608 ew32(TCTL, tctl);
609 /* flush both disables and wait for them to finish */
610 E1000_WRITE_FLUSH();
611 msleep(10);
612
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700613 napi_disable(&adapter->napi);
Francois Romieuc3570ac2008-07-11 15:17:38 -0700614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 e1000_irq_disable(adapter);
Jeff Kirsherc1605eb2006-03-02 18:16:38 -0800616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 del_timer_sync(&adapter->tx_fifo_stall_timer);
618 del_timer_sync(&adapter->watchdog_timer);
619 del_timer_sync(&adapter->phy_info_timer);
620
Jeff Kirsher7bfa4812006-01-12 16:50:41 -0800621 netdev->tx_queue_len = adapter->tx_queue_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 adapter->link_speed = 0;
623 adapter->link_duplex = 0;
624 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 e1000_reset(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400627 e1000_clean_all_tx_rings(adapter);
628 e1000_clean_all_rx_rings(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Joe Perches64798842008-07-11 15:17:02 -0700631void e1000_reinit_locked(struct e1000_adapter *adapter)
Auke Kok2db10a02006-06-27 09:06:28 -0700632{
633 WARN_ON(in_interrupt());
634 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
635 msleep(1);
636 e1000_down(adapter);
637 e1000_up(adapter);
638 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Joe Perches64798842008-07-11 15:17:02 -0700641void e1000_reset(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Joe Perches1dc32912008-07-11 15:17:08 -0700643 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700644 u32 pba = 0, tx_space, min_tx_space, min_rx_space;
Joe Perchesc3033b02008-03-21 11:06:25 -0700645 bool legacy_pba_adjust = false;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000646 u16 hwm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 /* Repartition Pba for greater than 9k mtu
649 * To take effect CTRL.RST is required.
650 */
651
Joe Perches1dc32912008-07-11 15:17:08 -0700652 switch (hw->mac_type) {
Bruce Allan018ea442006-12-15 10:39:45 +0100653 case e1000_82542_rev2_0:
654 case e1000_82542_rev2_1:
655 case e1000_82543:
656 case e1000_82544:
657 case e1000_82540:
658 case e1000_82541:
659 case e1000_82541_rev_2:
Joe Perchesc3033b02008-03-21 11:06:25 -0700660 legacy_pba_adjust = true;
Bruce Allan018ea442006-12-15 10:39:45 +0100661 pba = E1000_PBA_48K;
662 break;
663 case e1000_82545:
664 case e1000_82545_rev_3:
665 case e1000_82546:
666 case e1000_82546_rev_3:
667 pba = E1000_PBA_48K;
668 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700669 case e1000_82547:
Malli Chilakala0e6ef3e2005-04-28 19:44:14 -0700670 case e1000_82547_rev_2:
Joe Perchesc3033b02008-03-21 11:06:25 -0700671 legacy_pba_adjust = true;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700672 pba = E1000_PBA_30K;
673 break;
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400674 case e1000_82571:
675 case e1000_82572:
Jeff Kirsher6418ecc2006-03-02 18:21:10 -0800676 case e1000_80003es2lan:
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400677 pba = E1000_PBA_38K;
678 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700679 case e1000_82573:
Bruce Allan018ea442006-12-15 10:39:45 +0100680 pba = E1000_PBA_20K;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700681 break;
Auke Kokcd94dd02006-06-27 09:08:22 -0700682 case e1000_ich8lan:
683 pba = E1000_PBA_8K;
Bruce Allan018ea442006-12-15 10:39:45 +0100684 case e1000_undefined:
685 case e1000_num_macs:
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700686 break;
687 }
688
Joe Perchesc3033b02008-03-21 11:06:25 -0700689 if (legacy_pba_adjust) {
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000690 if (hw->max_frame_size > E1000_RXBUFFER_8192)
Bruce Allan018ea442006-12-15 10:39:45 +0100691 pba -= 8; /* allocate more FIFO for Tx */
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700692
Joe Perches1dc32912008-07-11 15:17:08 -0700693 if (hw->mac_type == e1000_82547) {
Bruce Allan018ea442006-12-15 10:39:45 +0100694 adapter->tx_fifo_head = 0;
695 adapter->tx_head_addr = pba << E1000_TX_HEAD_ADDR_SHIFT;
696 adapter->tx_fifo_size =
697 (E1000_PBA_40K - pba) << E1000_PBA_BYTES_SHIFT;
698 atomic_set(&adapter->tx_fifo_stall, 0);
699 }
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000700 } else if (hw->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allan018ea442006-12-15 10:39:45 +0100701 /* adjust PBA for jumbo frames */
Joe Perches1dc32912008-07-11 15:17:08 -0700702 ew32(PBA, pba);
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700703
Bruce Allan018ea442006-12-15 10:39:45 +0100704 /* To maintain wire speed transmits, the Tx FIFO should be
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000705 * large enough to accommodate two full transmit packets,
Bruce Allan018ea442006-12-15 10:39:45 +0100706 * rounded up to the next 1KB and expressed in KB. Likewise,
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000707 * the Rx FIFO should be large enough to accommodate at least
Bruce Allan018ea442006-12-15 10:39:45 +0100708 * one full receive packet and is similarly rounded up and
709 * expressed in KB. */
Joe Perches1dc32912008-07-11 15:17:08 -0700710 pba = er32(PBA);
Bruce Allan018ea442006-12-15 10:39:45 +0100711 /* upper 16 bits has Tx packet buffer allocation size in KB */
712 tx_space = pba >> 16;
713 /* lower 16 bits has Rx packet buffer allocation size in KB */
714 pba &= 0xffff;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000715 /*
716 * the tx fifo also stores 16 bytes of information about the tx
717 * but don't include ethernet FCS because hardware appends it
718 */
719 min_tx_space = (hw->max_frame_size +
720 sizeof(struct e1000_tx_desc) -
721 ETH_FCS_LEN) * 2;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700722 min_tx_space = ALIGN(min_tx_space, 1024);
Bruce Allan018ea442006-12-15 10:39:45 +0100723 min_tx_space >>= 10;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000724 /* software strips receive CRC, so leave room for it */
725 min_rx_space = hw->max_frame_size;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700726 min_rx_space = ALIGN(min_rx_space, 1024);
Bruce Allan018ea442006-12-15 10:39:45 +0100727 min_rx_space >>= 10;
728
729 /* If current Tx allocation is less than the min Tx FIFO size,
730 * and the min Tx FIFO size is less than the current Rx FIFO
731 * allocation, take space away from current Rx allocation */
732 if (tx_space < min_tx_space &&
733 ((min_tx_space - tx_space) < pba)) {
734 pba = pba - (min_tx_space - tx_space);
735
736 /* PCI/PCIx hardware has PBA alignment constraints */
Joe Perches1dc32912008-07-11 15:17:08 -0700737 switch (hw->mac_type) {
Bruce Allan018ea442006-12-15 10:39:45 +0100738 case e1000_82545 ... e1000_82546_rev_3:
739 pba &= ~(E1000_PBA_8K - 1);
740 break;
741 default:
742 break;
743 }
744
745 /* if short on rx space, rx wins and must trump tx
746 * adjustment or use Early Receive if available */
747 if (pba < min_rx_space) {
Joe Perches1dc32912008-07-11 15:17:08 -0700748 switch (hw->mac_type) {
Bruce Allan018ea442006-12-15 10:39:45 +0100749 case e1000_82573:
750 /* ERT enabled in e1000_configure_rx */
751 break;
752 default:
753 pba = min_rx_space;
754 break;
755 }
756 }
757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700759
Joe Perches1dc32912008-07-11 15:17:08 -0700760 ew32(PBA, pba);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000762 /*
763 * flow control settings:
764 * The high water mark must be low enough to fit one full frame
765 * (or the size used for early receive) above it in the Rx FIFO.
766 * Set it to the lower of:
767 * - 90% of the Rx FIFO size, and
768 * - the full Rx FIFO size minus the early receive size (for parts
769 * with ERT support assuming ERT set to E1000_ERT_2048), or
770 * - the full Rx FIFO size minus one full frame
771 */
772 hwm = min(((pba << 10) * 9 / 10),
773 ((pba << 10) - hw->max_frame_size));
Jeff Kirsherf11b7f82006-01-12 16:50:51 -0800774
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000775 hw->fc_high_water = hwm & 0xFFF8; /* 8-byte granularity */
776 hw->fc_low_water = hw->fc_high_water - 8;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000777 hw->fc_pause_time = E1000_FC_PAUSE_TIME;
Joe Perches1dc32912008-07-11 15:17:08 -0700778 hw->fc_send_xon = 1;
779 hw->fc = hw->original_fc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700781 /* Allow time for pending master requests to run */
Joe Perches1dc32912008-07-11 15:17:08 -0700782 e1000_reset_hw(hw);
783 if (hw->mac_type >= e1000_82544)
784 ew32(WUC, 0);
Jeff Kirsher09ae3e82006-09-27 12:53:51 -0700785
Joe Perches1dc32912008-07-11 15:17:08 -0700786 if (e1000_init_hw(hw))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 DPRINTK(PROBE, ERR, "Hardware Error\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700788 e1000_update_mng_vlan(adapter);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100789
790 /* if (adapter->hwflags & HWFLAGS_PHY_PWR_BIT) { */
Joe Perches1dc32912008-07-11 15:17:08 -0700791 if (hw->mac_type >= e1000_82544 &&
792 hw->mac_type <= e1000_82547_rev_2 &&
793 hw->autoneg == 1 &&
794 hw->autoneg_advertised == ADVERTISE_1000_FULL) {
795 u32 ctrl = er32(CTRL);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100796 /* clear phy power management bit if we are in gig only mode,
797 * which if enabled will attempt negotiation to 100Mb, which
798 * can cause a loss of link at power off or driver unload */
799 ctrl &= ~E1000_CTRL_SWDPIN3;
Joe Perches1dc32912008-07-11 15:17:08 -0700800 ew32(CTRL, ctrl);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100801 }
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
Joe Perches1dc32912008-07-11 15:17:08 -0700804 ew32(VET, ETHERNET_IEEE_VLAN_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Joe Perches1dc32912008-07-11 15:17:08 -0700806 e1000_reset_adaptive(hw);
807 e1000_phy_get_info(hw, &adapter->phy_info);
Auke Kok9a53a202006-06-27 09:06:45 -0700808
809 if (!adapter->smart_power_down &&
Joe Perches1dc32912008-07-11 15:17:08 -0700810 (hw->mac_type == e1000_82571 ||
811 hw->mac_type == e1000_82572)) {
Joe Perches406874a2008-04-03 10:06:32 -0700812 u16 phy_data = 0;
Auke Kok9a53a202006-06-27 09:06:45 -0700813 /* speed up time to link by disabling smart power down, ignore
814 * the return value of this function because there is nothing
815 * different we would do if it failed */
Joe Perches1dc32912008-07-11 15:17:08 -0700816 e1000_read_phy_reg(hw, IGP02E1000_PHY_POWER_MGMT,
Auke Kok9a53a202006-06-27 09:06:45 -0700817 &phy_data);
818 phy_data &= ~IGP02E1000_PM_SPD;
Joe Perches1dc32912008-07-11 15:17:08 -0700819 e1000_write_phy_reg(hw, IGP02E1000_PHY_POWER_MGMT,
Auke Kok9a53a202006-06-27 09:06:45 -0700820 phy_data);
821 }
822
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500823 e1000_release_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
826/**
Auke Kok67b3c272007-12-17 13:50:23 -0800827 * Dump the eeprom for users having checksum issues
828 **/
Adrian Bunkb4ea8952008-02-01 08:21:28 -0800829static void e1000_dump_eeprom(struct e1000_adapter *adapter)
Auke Kok67b3c272007-12-17 13:50:23 -0800830{
831 struct net_device *netdev = adapter->netdev;
832 struct ethtool_eeprom eeprom;
833 const struct ethtool_ops *ops = netdev->ethtool_ops;
834 u8 *data;
835 int i;
836 u16 csum_old, csum_new = 0;
837
838 eeprom.len = ops->get_eeprom_len(netdev);
839 eeprom.offset = 0;
840
841 data = kmalloc(eeprom.len, GFP_KERNEL);
842 if (!data) {
843 printk(KERN_ERR "Unable to allocate memory to dump EEPROM"
844 " data\n");
845 return;
846 }
847
848 ops->get_eeprom(netdev, &eeprom, data);
849
850 csum_old = (data[EEPROM_CHECKSUM_REG * 2]) +
851 (data[EEPROM_CHECKSUM_REG * 2 + 1] << 8);
852 for (i = 0; i < EEPROM_CHECKSUM_REG * 2; i += 2)
853 csum_new += data[i] + (data[i + 1] << 8);
854 csum_new = EEPROM_SUM - csum_new;
855
856 printk(KERN_ERR "/*********************/\n");
857 printk(KERN_ERR "Current EEPROM Checksum : 0x%04x\n", csum_old);
858 printk(KERN_ERR "Calculated : 0x%04x\n", csum_new);
859
860 printk(KERN_ERR "Offset Values\n");
861 printk(KERN_ERR "======== ======\n");
862 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, data, 128, 0);
863
864 printk(KERN_ERR "Include this output when contacting your support "
865 "provider.\n");
866 printk(KERN_ERR "This is not a software error! Something bad "
867 "happened to your hardware or\n");
868 printk(KERN_ERR "EEPROM image. Ignoring this "
869 "problem could result in further problems,\n");
870 printk(KERN_ERR "possibly loss of data, corruption or system hangs!\n");
871 printk(KERN_ERR "The MAC Address will be reset to 00:00:00:00:00:00, "
872 "which is invalid\n");
873 printk(KERN_ERR "and requires you to set the proper MAC "
874 "address manually before continuing\n");
875 printk(KERN_ERR "to enable this network device.\n");
876 printk(KERN_ERR "Please inspect the EEPROM dump and report the issue "
877 "to your hardware vendor\n");
Jeff Kirsher63cd31f2008-07-11 15:17:33 -0700878 printk(KERN_ERR "or Intel Customer Support.\n");
Auke Kok67b3c272007-12-17 13:50:23 -0800879 printk(KERN_ERR "/*********************/\n");
880
881 kfree(data);
882}
883
884/**
Taku Izumi81250292008-07-11 15:17:44 -0700885 * e1000_is_need_ioport - determine if an adapter needs ioport resources or not
886 * @pdev: PCI device information struct
887 *
888 * Return true if an adapter needs ioport resources
889 **/
890static int e1000_is_need_ioport(struct pci_dev *pdev)
891{
892 switch (pdev->device) {
893 case E1000_DEV_ID_82540EM:
894 case E1000_DEV_ID_82540EM_LOM:
895 case E1000_DEV_ID_82540EP:
896 case E1000_DEV_ID_82540EP_LOM:
897 case E1000_DEV_ID_82540EP_LP:
898 case E1000_DEV_ID_82541EI:
899 case E1000_DEV_ID_82541EI_MOBILE:
900 case E1000_DEV_ID_82541ER:
901 case E1000_DEV_ID_82541ER_LOM:
902 case E1000_DEV_ID_82541GI:
903 case E1000_DEV_ID_82541GI_LF:
904 case E1000_DEV_ID_82541GI_MOBILE:
905 case E1000_DEV_ID_82544EI_COPPER:
906 case E1000_DEV_ID_82544EI_FIBER:
907 case E1000_DEV_ID_82544GC_COPPER:
908 case E1000_DEV_ID_82544GC_LOM:
909 case E1000_DEV_ID_82545EM_COPPER:
910 case E1000_DEV_ID_82545EM_FIBER:
911 case E1000_DEV_ID_82546EB_COPPER:
912 case E1000_DEV_ID_82546EB_FIBER:
913 case E1000_DEV_ID_82546EB_QUAD_COPPER:
914 return true;
915 default:
916 return false;
917 }
918}
919
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800920static const struct net_device_ops e1000_netdev_ops = {
921 .ndo_open = e1000_open,
922 .ndo_stop = e1000_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800923 .ndo_start_xmit = e1000_xmit_frame,
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800924 .ndo_get_stats = e1000_get_stats,
925 .ndo_set_rx_mode = e1000_set_rx_mode,
926 .ndo_set_mac_address = e1000_set_mac,
927 .ndo_tx_timeout = e1000_tx_timeout,
928 .ndo_change_mtu = e1000_change_mtu,
929 .ndo_do_ioctl = e1000_ioctl,
930 .ndo_validate_addr = eth_validate_addr,
931
932 .ndo_vlan_rx_register = e1000_vlan_rx_register,
933 .ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
934 .ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
935#ifdef CONFIG_NET_POLL_CONTROLLER
936 .ndo_poll_controller = e1000_netpoll,
937#endif
938};
939
Taku Izumi81250292008-07-11 15:17:44 -0700940/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 * e1000_probe - Device Initialization Routine
942 * @pdev: PCI device information struct
943 * @ent: entry in e1000_pci_tbl
944 *
945 * Returns 0 on success, negative on failure
946 *
947 * e1000_probe initializes an adapter identified by a pci_dev structure.
948 * The OS initialization, configuring of the adapter private structure,
949 * and a hardware reset occur.
950 **/
Joe Perches1dc32912008-07-11 15:17:08 -0700951static int __devinit e1000_probe(struct pci_dev *pdev,
952 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
954 struct net_device *netdev;
955 struct e1000_adapter *adapter;
Joe Perches1dc32912008-07-11 15:17:08 -0700956 struct e1000_hw *hw;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 static int cards_found = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -0700959 static int global_quad_port_a = 0; /* global ksp3 port a indication */
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700960 int i, err, pci_using_dac;
Joe Perches406874a2008-04-03 10:06:32 -0700961 u16 eeprom_data = 0;
962 u16 eeprom_apme_mask = E1000_EEPROM_APME;
Taku Izumi81250292008-07-11 15:17:44 -0700963 int bars, need_ioport;
Joe Perches0795af52007-10-03 17:59:30 -0700964
Taku Izumi81250292008-07-11 15:17:44 -0700965 /* do not allocate ioport bars when not needed */
966 need_ioport = e1000_is_need_ioport(pdev);
967 if (need_ioport) {
968 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
969 err = pci_enable_device(pdev);
970 } else {
971 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Karsten Keil4d7155b2009-02-03 15:18:01 -0800972 err = pci_enable_device_mem(pdev);
Taku Izumi81250292008-07-11 15:17:44 -0700973 }
Joe Perchesc7be73b2008-07-11 15:17:28 -0700974 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return err;
976
Yang Hongyang6a355282009-04-06 19:01:13 -0700977 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) &&
978 !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 pci_using_dac = 1;
980 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -0700981 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Joe Perchesc7be73b2008-07-11 15:17:28 -0700982 if (err) {
Yang Hongyang284901a2009-04-06 19:01:15 -0700983 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Joe Perchesc7be73b2008-07-11 15:17:28 -0700984 if (err) {
985 E1000_ERR("No usable DMA configuration, "
986 "aborting\n");
987 goto err_dma;
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990 pci_using_dac = 0;
991 }
992
Taku Izumi81250292008-07-11 15:17:44 -0700993 err = pci_request_selected_regions(pdev, bars, e1000_driver_name);
Joe Perchesc7be73b2008-07-11 15:17:28 -0700994 if (err)
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700995 goto err_pci_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 pci_set_master(pdev);
998
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700999 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001001 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 goto err_alloc_etherdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 SET_NETDEV_DEV(netdev, &pdev->dev);
1005
1006 pci_set_drvdata(pdev, netdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07001007 adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 adapter->netdev = netdev;
1009 adapter->pdev = pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 adapter->msg_enable = (1 << debug) - 1;
Taku Izumi81250292008-07-11 15:17:44 -07001011 adapter->bars = bars;
1012 adapter->need_ioport = need_ioport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Joe Perches1dc32912008-07-11 15:17:08 -07001014 hw = &adapter->hw;
1015 hw->back = adapter;
1016
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001017 err = -EIO;
Arjan van de Ven275f1652008-10-20 21:42:39 -07001018 hw->hw_addr = pci_ioremap_bar(pdev, BAR_0);
Joe Perches1dc32912008-07-11 15:17:08 -07001019 if (!hw->hw_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 goto err_ioremap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Taku Izumi81250292008-07-11 15:17:44 -07001022 if (adapter->need_ioport) {
1023 for (i = BAR_1; i <= BAR_5; i++) {
1024 if (pci_resource_len(pdev, i) == 0)
1025 continue;
1026 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
1027 hw->io_base = pci_resource_start(pdev, i);
1028 break;
1029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031 }
1032
Stephen Hemminger0e7614b2008-11-19 22:18:22 -08001033 netdev->netdev_ops = &e1000_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 e1000_set_ethtool_ops(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 netdev->watchdog_timeo = 5 * HZ;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001036 netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
Stephen Hemminger0e7614b2008-11-19 22:18:22 -08001037
Auke Kok0eb5a342006-09-27 12:53:17 -07001038 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 adapter->bd_number = cards_found;
1041
1042 /* setup the private structure */
1043
Joe Perchesc7be73b2008-07-11 15:17:28 -07001044 err = e1000_sw_init(adapter);
1045 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 goto err_sw_init;
1047
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001048 err = -EIO;
Auke Kokcd94dd02006-06-27 09:08:22 -07001049 /* Flash BAR mapping must happen after e1000_sw_init
1050 * because it depends on mac_type */
Joe Perches1dc32912008-07-11 15:17:08 -07001051 if ((hw->mac_type == e1000_ich8lan) &&
Auke Kokcd94dd02006-06-27 09:08:22 -07001052 (pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
Arjan van de Ven275f1652008-10-20 21:42:39 -07001053 hw->flash_address = pci_ioremap_bar(pdev, 1);
Joe Perches1dc32912008-07-11 15:17:08 -07001054 if (!hw->flash_address)
Auke Kokcd94dd02006-06-27 09:08:22 -07001055 goto err_flashmap;
Auke Kokcd94dd02006-06-27 09:08:22 -07001056 }
1057
Joe Perches1dc32912008-07-11 15:17:08 -07001058 if (e1000_check_phy_reset_block(hw))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001059 DPRINTK(PROBE, INFO, "PHY reset is blocked due to SOL/IDER session.\n");
1060
Joe Perches1dc32912008-07-11 15:17:08 -07001061 if (hw->mac_type >= e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 netdev->features = NETIF_F_SG |
1063 NETIF_F_HW_CSUM |
1064 NETIF_F_HW_VLAN_TX |
1065 NETIF_F_HW_VLAN_RX |
1066 NETIF_F_HW_VLAN_FILTER;
Joe Perches1dc32912008-07-11 15:17:08 -07001067 if (hw->mac_type == e1000_ich8lan)
Auke Kokcd94dd02006-06-27 09:08:22 -07001068 netdev->features &= ~NETIF_F_HW_VLAN_FILTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070
Joe Perches1dc32912008-07-11 15:17:08 -07001071 if ((hw->mac_type >= e1000_82544) &&
1072 (hw->mac_type != e1000_82547))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 netdev->features |= NETIF_F_TSO;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001074
Joe Perches1dc32912008-07-11 15:17:08 -07001075 if (hw->mac_type > e1000_82547_rev_2)
Auke Kok87ca4e52006-11-01 08:47:36 -08001076 netdev->features |= NETIF_F_TSO6;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001077 if (pci_using_dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 netdev->features |= NETIF_F_HIGHDMA;
1079
Patrick McHardy20501a62008-10-11 12:25:59 -07001080 netdev->vlan_features |= NETIF_F_TSO;
1081 netdev->vlan_features |= NETIF_F_TSO6;
1082 netdev->vlan_features |= NETIF_F_HW_CSUM;
1083 netdev->vlan_features |= NETIF_F_SG;
1084
Joe Perches1dc32912008-07-11 15:17:08 -07001085 adapter->en_mng_pt = e1000_enable_mng_pass_thru(hw);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001086
Auke Kokcd94dd02006-06-27 09:08:22 -07001087 /* initialize eeprom parameters */
Joe Perches1dc32912008-07-11 15:17:08 -07001088 if (e1000_init_eeprom_params(hw)) {
Auke Kokcd94dd02006-06-27 09:08:22 -07001089 E1000_ERR("EEPROM initialization failed\n");
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001090 goto err_eeprom;
Auke Kokcd94dd02006-06-27 09:08:22 -07001091 }
1092
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001093 /* before reading the EEPROM, reset the controller to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 * put the device in a known good starting state */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001095
Joe Perches1dc32912008-07-11 15:17:08 -07001096 e1000_reset_hw(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 /* make sure the EEPROM is good */
Joe Perches1dc32912008-07-11 15:17:08 -07001099 if (e1000_validate_eeprom_checksum(hw) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 DPRINTK(PROBE, ERR, "The EEPROM Checksum Is Not Valid\n");
Auke Kok67b3c272007-12-17 13:50:23 -08001101 e1000_dump_eeprom(adapter);
1102 /*
1103 * set MAC address to all zeroes to invalidate and temporary
1104 * disable this device for the user. This blocks regular
1105 * traffic while still permitting ethtool ioctls from reaching
1106 * the hardware as well as allowing the user to run the
1107 * interface after manually setting a hw addr using
1108 * `ip set address`
1109 */
Joe Perches1dc32912008-07-11 15:17:08 -07001110 memset(hw->mac_addr, 0, netdev->addr_len);
Auke Kok67b3c272007-12-17 13:50:23 -08001111 } else {
1112 /* copy the MAC address out of the EEPROM */
Joe Perches1dc32912008-07-11 15:17:08 -07001113 if (e1000_read_mac_addr(hw))
Auke Kok67b3c272007-12-17 13:50:23 -08001114 DPRINTK(PROBE, ERR, "EEPROM Read Error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
Auke Kok67b3c272007-12-17 13:50:23 -08001116 /* don't block initalization here due to bad MAC address */
Joe Perches1dc32912008-07-11 15:17:08 -07001117 memcpy(netdev->dev_addr, hw->mac_addr, netdev->addr_len);
1118 memcpy(netdev->perm_addr, hw->mac_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Auke Kok67b3c272007-12-17 13:50:23 -08001120 if (!is_valid_ether_addr(netdev->perm_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 DPRINTK(PROBE, ERR, "Invalid MAC Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Joe Perches1dc32912008-07-11 15:17:08 -07001123 e1000_get_bus_info(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 init_timer(&adapter->tx_fifo_stall_timer);
1126 adapter->tx_fifo_stall_timer.function = &e1000_82547_tx_fifo_stall;
Joe Perchese982f172008-07-11 15:17:18 -07001127 adapter->tx_fifo_stall_timer.data = (unsigned long)adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 init_timer(&adapter->watchdog_timer);
1130 adapter->watchdog_timer.function = &e1000_watchdog;
1131 adapter->watchdog_timer.data = (unsigned long) adapter;
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 init_timer(&adapter->phy_info_timer);
1134 adapter->phy_info_timer.function = &e1000_update_phy_info;
Joe Perchese982f172008-07-11 15:17:18 -07001135 adapter->phy_info_timer.data = (unsigned long)adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
David Howells65f27f32006-11-22 14:55:48 +00001137 INIT_WORK(&adapter->reset_task, e1000_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 e1000_check_options(adapter);
1140
1141 /* Initial Wake on LAN setting
1142 * If APM wake is enabled in the EEPROM,
1143 * enable the ACPI Magic Packet filter
1144 */
1145
Joe Perches1dc32912008-07-11 15:17:08 -07001146 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 case e1000_82542_rev2_0:
1148 case e1000_82542_rev2_1:
1149 case e1000_82543:
1150 break;
1151 case e1000_82544:
Joe Perches1dc32912008-07-11 15:17:08 -07001152 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 EEPROM_INIT_CONTROL2_REG, 1, &eeprom_data);
1154 eeprom_apme_mask = E1000_EEPROM_82544_APM;
1155 break;
Auke Kokcd94dd02006-06-27 09:08:22 -07001156 case e1000_ich8lan:
Joe Perches1dc32912008-07-11 15:17:08 -07001157 e1000_read_eeprom(hw,
Auke Kokcd94dd02006-06-27 09:08:22 -07001158 EEPROM_INIT_CONTROL1_REG, 1, &eeprom_data);
1159 eeprom_apme_mask = E1000_EEPROM_ICH8_APME;
1160 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 case e1000_82546:
1162 case e1000_82546_rev_3:
Jeff Kirsherfd803242005-12-13 00:06:22 -05001163 case e1000_82571:
Jeff Kirsher6418ecc2006-03-02 18:21:10 -08001164 case e1000_80003es2lan:
Joe Perches1dc32912008-07-11 15:17:08 -07001165 if (er32(STATUS) & E1000_STATUS_FUNC_1){
1166 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 EEPROM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
1168 break;
1169 }
1170 /* Fall Through */
1171 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001172 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 EEPROM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
1174 break;
1175 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001176 if (eeprom_data & eeprom_apme_mask)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001177 adapter->eeprom_wol |= E1000_WUFC_MAG;
1178
1179 /* now that we have the eeprom settings, apply the special cases
1180 * where the eeprom may be wrong or the board simply won't support
1181 * wake on lan on a particular port */
1182 switch (pdev->device) {
1183 case E1000_DEV_ID_82546GB_PCIE:
1184 adapter->eeprom_wol = 0;
1185 break;
1186 case E1000_DEV_ID_82546EB_FIBER:
1187 case E1000_DEV_ID_82546GB_FIBER:
1188 case E1000_DEV_ID_82571EB_FIBER:
1189 /* Wake events only supported on port A for dual fiber
1190 * regardless of eeprom setting */
Joe Perches1dc32912008-07-11 15:17:08 -07001191 if (er32(STATUS) & E1000_STATUS_FUNC_1)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001192 adapter->eeprom_wol = 0;
1193 break;
1194 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jesse Brandeburg5881cde2006-08-31 14:27:47 -07001195 case E1000_DEV_ID_82571EB_QUAD_COPPER:
Auke Kokce57a022007-08-09 14:09:34 -07001196 case E1000_DEV_ID_82571EB_QUAD_FIBER:
Auke Kokfc2307d2006-11-01 08:47:56 -08001197 case E1000_DEV_ID_82571EB_QUAD_COPPER_LOWPROFILE:
Auke Kokf4ec7f92007-08-30 11:23:58 -07001198 case E1000_DEV_ID_82571PT_QUAD_COPPER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001199 /* if quad port adapter, disable WoL on all but port A */
1200 if (global_quad_port_a != 0)
1201 adapter->eeprom_wol = 0;
1202 else
1203 adapter->quad_port_a = 1;
1204 /* Reset for multiple quad port adapters */
1205 if (++global_quad_port_a == 4)
1206 global_quad_port_a = 0;
1207 break;
1208 }
1209
1210 /* initialize the wol settings based on the eeprom settings */
1211 adapter->wol = adapter->eeprom_wol;
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001212 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Jeff Kirsherfb3d47d2006-01-12 16:51:25 -08001214 /* print bus type/speed/width info */
Jeff Kirsherfb3d47d2006-01-12 16:51:25 -08001215 DPRINTK(PROBE, INFO, "(PCI%s:%s:%s) ",
1216 ((hw->bus_type == e1000_bus_type_pcix) ? "-X" :
1217 (hw->bus_type == e1000_bus_type_pci_express ? " Express":"")),
1218 ((hw->bus_speed == e1000_bus_speed_2500) ? "2.5Gb/s" :
1219 (hw->bus_speed == e1000_bus_speed_133) ? "133MHz" :
1220 (hw->bus_speed == e1000_bus_speed_120) ? "120MHz" :
1221 (hw->bus_speed == e1000_bus_speed_100) ? "100MHz" :
1222 (hw->bus_speed == e1000_bus_speed_66) ? "66MHz" : "33MHz"),
1223 ((hw->bus_width == e1000_bus_width_64) ? "64-bit" :
1224 (hw->bus_width == e1000_bus_width_pciex_4) ? "Width x4" :
1225 (hw->bus_width == e1000_bus_width_pciex_1) ? "Width x1" :
1226 "32-bit"));
Jeff Kirsherfb3d47d2006-01-12 16:51:25 -08001227
Johannes Berge1749612008-10-27 15:59:26 -07001228 printk("%pM\n", netdev->dev_addr);
Jeff Kirsherfb3d47d2006-01-12 16:51:25 -08001229
Joe Perches1dc32912008-07-11 15:17:08 -07001230 if (hw->bus_type == e1000_bus_type_pci_express) {
Auke Kok14782ca2008-02-11 09:25:46 -08001231 DPRINTK(PROBE, WARNING, "This device (id %04x:%04x) will no "
1232 "longer be supported by this driver in the future.\n",
1233 pdev->vendor, pdev->device);
1234 DPRINTK(PROBE, WARNING, "please use the \"e1000e\" "
1235 "driver instead.\n");
1236 }
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 /* reset the hardware with the new settings */
1239 e1000_reset(adapter);
1240
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001241 /* If the controller is 82573 and f/w is AMT, do not set
1242 * DRV_LOAD until the interface is up. For all other cases,
1243 * let the f/w know that the h/w is now under the control
1244 * of the driver. */
Joe Perches1dc32912008-07-11 15:17:08 -07001245 if (hw->mac_type != e1000_82573 ||
1246 !e1000_check_mng_mode(hw))
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001247 e1000_get_hw_control(adapter);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001248
Auke Kok416b5d12007-06-01 10:22:39 -07001249 strcpy(netdev->name, "eth%d");
Joe Perchesc7be73b2008-07-11 15:17:28 -07001250 err = register_netdev(netdev);
1251 if (err)
Auke Kok416b5d12007-06-01 10:22:39 -07001252 goto err_register;
Auke Kok1314bbf2006-09-27 12:54:02 -07001253
Jesse Brandeburgeb62efd2009-04-17 20:44:36 +00001254 /* carrier off reporting is important to ethtool even BEFORE open */
1255 netif_carrier_off(netdev);
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 DPRINTK(PROBE, INFO, "Intel(R) PRO/1000 Network Connection\n");
1258
1259 cards_found++;
1260 return 0;
1261
1262err_register:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001263 e1000_release_hw_control(adapter);
1264err_eeprom:
Joe Perches1dc32912008-07-11 15:17:08 -07001265 if (!e1000_check_phy_reset_block(hw))
1266 e1000_phy_hw_reset(hw);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001267
Joe Perches1dc32912008-07-11 15:17:08 -07001268 if (hw->flash_address)
1269 iounmap(hw->flash_address);
Auke Kokcd94dd02006-06-27 09:08:22 -07001270err_flashmap:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001271 kfree(adapter->tx_ring);
1272 kfree(adapter->rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273err_sw_init:
Joe Perches1dc32912008-07-11 15:17:08 -07001274 iounmap(hw->hw_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275err_ioremap:
1276 free_netdev(netdev);
1277err_alloc_etherdev:
Taku Izumi81250292008-07-11 15:17:44 -07001278 pci_release_selected_regions(pdev, bars);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001279err_pci_reg:
1280err_dma:
1281 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 return err;
1283}
1284
1285/**
1286 * e1000_remove - Device Removal Routine
1287 * @pdev: PCI device information struct
1288 *
1289 * e1000_remove is called by the PCI subsystem to alert the driver
1290 * that it should release a PCI device. The could be caused by a
1291 * Hot-Plug event, or because the driver is going to be removed from
1292 * memory.
1293 **/
1294
Joe Perches64798842008-07-11 15:17:02 -07001295static void __devexit e1000_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
1297 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07001298 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001299 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07001301 cancel_work_sync(&adapter->reset_task);
Jeff Garzikbe2b28e2005-10-04 07:13:43 -04001302
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05001303 e1000_release_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001305 /* Release control of h/w to f/w. If f/w is AMT enabled, this
1306 * would have already happened in close and is redundant. */
1307 e1000_release_hw_control(adapter);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001308
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001309 unregister_netdev(netdev);
1310
Joe Perches1dc32912008-07-11 15:17:08 -07001311 if (!e1000_check_phy_reset_block(hw))
1312 e1000_phy_hw_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04001314 kfree(adapter->tx_ring);
1315 kfree(adapter->rx_ring);
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04001316
Joe Perches1dc32912008-07-11 15:17:08 -07001317 iounmap(hw->hw_addr);
1318 if (hw->flash_address)
1319 iounmap(hw->flash_address);
Taku Izumi81250292008-07-11 15:17:44 -07001320 pci_release_selected_regions(pdev, adapter->bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 free_netdev(netdev);
1323
1324 pci_disable_device(pdev);
1325}
1326
1327/**
1328 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
1329 * @adapter: board private structure to initialize
1330 *
1331 * e1000_sw_init initializes the Adapter private data structure.
1332 * Fields are initialized based on PCI device information and
1333 * OS network device settings (MTU size).
1334 **/
1335
Joe Perches64798842008-07-11 15:17:02 -07001336static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
1338 struct e1000_hw *hw = &adapter->hw;
1339 struct net_device *netdev = adapter->netdev;
1340 struct pci_dev *pdev = adapter->pdev;
1341
1342 /* PCI config space info */
1343
1344 hw->vendor_id = pdev->vendor;
1345 hw->device_id = pdev->device;
1346 hw->subsystem_vendor_id = pdev->subsystem_vendor;
1347 hw->subsystem_id = pdev->subsystem_device;
Auke Kok44c10132007-06-08 15:46:36 -07001348 hw->revision_id = pdev->revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350 pci_read_config_word(pdev, PCI_COMMAND, &hw->pci_cmd_word);
1351
Auke Kokeb0f8052006-07-14 16:14:48 -07001352 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 hw->max_frame_size = netdev->mtu +
1354 ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
1355 hw->min_frame_size = MINIMUM_ETHERNET_FRAME_SIZE;
1356
1357 /* identify the MAC */
1358
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001359 if (e1000_set_mac_type(hw)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 DPRINTK(PROBE, ERR, "Unknown MAC Type\n");
1361 return -EIO;
1362 }
1363
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001364 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 default:
1366 break;
1367 case e1000_82541:
1368 case e1000_82547:
1369 case e1000_82541_rev_2:
1370 case e1000_82547_rev_2:
1371 hw->phy_init_script = 1;
1372 break;
1373 }
1374
1375 e1000_set_media_type(hw);
1376
Joe Perchesc3033b02008-03-21 11:06:25 -07001377 hw->wait_autoneg_complete = false;
1378 hw->tbi_compatibility_en = true;
1379 hw->adaptive_ifs = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 /* Copper options */
1382
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001383 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 hw->mdix = AUTO_ALL_MODES;
Joe Perchesc3033b02008-03-21 11:06:25 -07001385 hw->disable_polarity_correction = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 hw->master_slave = E1000_MASTER_SLAVE;
1387 }
1388
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001389 adapter->num_tx_queues = 1;
1390 adapter->num_rx_queues = 1;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001391
1392 if (e1000_alloc_queues(adapter)) {
1393 DPRINTK(PROBE, ERR, "Unable to allocate memory for queues\n");
1394 return -ENOMEM;
1395 }
1396
Herbert Xu47313052007-05-29 15:07:31 -07001397 /* Explicitly disable IRQ since the NIC can be in any state. */
Herbert Xu47313052007-05-29 15:07:31 -07001398 e1000_irq_disable(adapter);
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 spin_lock_init(&adapter->stats_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Auke Kok1314bbf2006-09-27 12:54:02 -07001402 set_bit(__E1000_DOWN, &adapter->flags);
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return 0;
1405}
1406
1407/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001408 * e1000_alloc_queues - Allocate memory for all rings
1409 * @adapter: board private structure to initialize
1410 *
1411 * We allocate one ring per queue at run-time since we don't know the
Wang Chen3e1d7cd2008-12-03 22:07:10 -08001412 * number of queues at compile-time.
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001413 **/
1414
Joe Perches64798842008-07-11 15:17:02 -07001415static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001416{
Yan Burman1c7e5b12007-03-06 08:58:04 -08001417 adapter->tx_ring = kcalloc(adapter->num_tx_queues,
1418 sizeof(struct e1000_tx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001419 if (!adapter->tx_ring)
1420 return -ENOMEM;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001421
Yan Burman1c7e5b12007-03-06 08:58:04 -08001422 adapter->rx_ring = kcalloc(adapter->num_rx_queues,
1423 sizeof(struct e1000_rx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001424 if (!adapter->rx_ring) {
1425 kfree(adapter->tx_ring);
1426 return -ENOMEM;
1427 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001428
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001429 return E1000_SUCCESS;
1430}
1431
1432/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 * e1000_open - Called when a network interface is made active
1434 * @netdev: network interface device structure
1435 *
1436 * Returns 0 on success, negative value on failure
1437 *
1438 * The open entry point is called when a network interface is made
1439 * active by the system (IFF_UP). At this point all resources needed
1440 * for transmit and receive operations are allocated, the interrupt
1441 * handler is registered with the OS, the watchdog timer is started,
1442 * and the stack is notified that the interface is ready.
1443 **/
1444
Joe Perches64798842008-07-11 15:17:02 -07001445static int e1000_open(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001447 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001448 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 int err;
1450
Auke Kok2db10a02006-06-27 09:06:28 -07001451 /* disallow open during test */
Auke Kok1314bbf2006-09-27 12:54:02 -07001452 if (test_bit(__E1000_TESTING, &adapter->flags))
Auke Kok2db10a02006-06-27 09:06:28 -07001453 return -EBUSY;
1454
Jesse Brandeburgeb62efd2009-04-17 20:44:36 +00001455 netif_carrier_off(netdev);
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 /* allocate transmit descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001458 err = e1000_setup_all_tx_resources(adapter);
1459 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 goto err_setup_tx;
1461
1462 /* allocate receive descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001463 err = e1000_setup_all_rx_resources(adapter);
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001464 if (err)
Auke Koke0aac5a2007-03-06 08:57:21 -08001465 goto err_setup_rx;
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001466
Auke Kok79f05bf2006-06-27 09:06:32 -07001467 e1000_power_up_phy(adapter);
1468
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001469 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Joe Perches1dc32912008-07-11 15:17:08 -07001470 if ((hw->mng_cookie.status &
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001471 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT)) {
1472 e1000_update_mng_vlan(adapter);
1473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001475 /* If AMT is enabled, let the firmware know that the network
1476 * interface is now open */
Joe Perches1dc32912008-07-11 15:17:08 -07001477 if (hw->mac_type == e1000_82573 &&
1478 e1000_check_mng_mode(hw))
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001479 e1000_get_hw_control(adapter);
1480
Auke Koke0aac5a2007-03-06 08:57:21 -08001481 /* before we allocate an interrupt, we must be ready to handle it.
1482 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
1483 * as soon as we call pci_request_irq, so we have to setup our
1484 * clean_rx handler before we do so. */
1485 e1000_configure(adapter);
1486
1487 err = e1000_request_irq(adapter);
1488 if (err)
1489 goto err_req_irq;
1490
1491 /* From here on the code is the same as e1000_up() */
1492 clear_bit(__E1000_DOWN, &adapter->flags);
1493
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001494 napi_enable(&adapter->napi);
Herbert Xu47313052007-05-29 15:07:31 -07001495
Auke Koke0aac5a2007-03-06 08:57:21 -08001496 e1000_irq_enable(adapter);
1497
Ben Hutchings076152d2008-07-18 17:50:57 -07001498 netif_start_queue(netdev);
1499
Auke Koke0aac5a2007-03-06 08:57:21 -08001500 /* fire a link status change interrupt to start the watchdog */
Joe Perches1dc32912008-07-11 15:17:08 -07001501 ew32(ICS, E1000_ICS_LSC);
Auke Koke0aac5a2007-03-06 08:57:21 -08001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return E1000_SUCCESS;
1504
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001505err_req_irq:
Auke Koke0aac5a2007-03-06 08:57:21 -08001506 e1000_release_hw_control(adapter);
1507 e1000_power_down_phy(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001508 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509err_setup_rx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001510 e1000_free_all_tx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511err_setup_tx:
1512 e1000_reset(adapter);
1513
1514 return err;
1515}
1516
1517/**
1518 * e1000_close - Disables a network interface
1519 * @netdev: network interface device structure
1520 *
1521 * Returns 0, this is not allowed to fail
1522 *
1523 * The close entry point is called when an interface is de-activated
1524 * by the OS. The hardware is still under the drivers control, but
1525 * needs to be disabled. A global MAC reset is issued to stop the
1526 * hardware, and all transmit and receive resources are freed.
1527 **/
1528
Joe Perches64798842008-07-11 15:17:02 -07001529static int e1000_close(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001531 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001532 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Auke Kok2db10a02006-06-27 09:06:28 -07001534 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 e1000_down(adapter);
Auke Kok79f05bf2006-06-27 09:06:32 -07001536 e1000_power_down_phy(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07001537 e1000_free_irq(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001539 e1000_free_all_tx_resources(adapter);
1540 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Bruce Allan46665602006-09-27 12:54:08 -07001542 /* kill manageability vlan ID if supported, but not if a vlan with
1543 * the same ID is registered on the host OS (let 8021q kill it) */
Joe Perches1dc32912008-07-11 15:17:08 -07001544 if ((hw->mng_cookie.status &
Bruce Allan46665602006-09-27 12:54:08 -07001545 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
1546 !(adapter->vlgrp &&
Dan Aloni5c15bde2007-03-02 20:44:51 -08001547 vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id))) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001548 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
1549 }
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001550
1551 /* If AMT is enabled, let the firmware know that the network
1552 * interface is now closed */
Joe Perches1dc32912008-07-11 15:17:08 -07001553 if (hw->mac_type == e1000_82573 &&
1554 e1000_check_mng_mode(hw))
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001555 e1000_release_hw_control(adapter);
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 return 0;
1558}
1559
1560/**
1561 * e1000_check_64k_bound - check that memory doesn't cross 64kB boundary
1562 * @adapter: address of board private structure
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001563 * @start: address of beginning of memory
1564 * @len: length of memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 **/
Joe Perches64798842008-07-11 15:17:02 -07001566static bool e1000_check_64k_bound(struct e1000_adapter *adapter, void *start,
1567 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
Joe Perches1dc32912008-07-11 15:17:08 -07001569 struct e1000_hw *hw = &adapter->hw;
Joe Perchese982f172008-07-11 15:17:18 -07001570 unsigned long begin = (unsigned long)start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 unsigned long end = begin + len;
1572
Malli Chilakala26483452005-04-28 19:44:46 -07001573 /* First rev 82545 and 82546 need to not allow any memory
1574 * write location to cross 64k boundary due to errata 23 */
Joe Perches1dc32912008-07-11 15:17:08 -07001575 if (hw->mac_type == e1000_82545 ||
1576 hw->mac_type == e1000_82546) {
Joe Perchesc3033b02008-03-21 11:06:25 -07001577 return ((begin ^ (end - 1)) >> 16) != 0 ? false : true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
1579
Joe Perchesc3033b02008-03-21 11:06:25 -07001580 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
1583/**
1584 * e1000_setup_tx_resources - allocate Tx resources (Descriptors)
1585 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001586 * @txdr: tx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 *
1588 * Return 0 on success, negative on failure
1589 **/
1590
Joe Perches64798842008-07-11 15:17:02 -07001591static int e1000_setup_tx_resources(struct e1000_adapter *adapter,
1592 struct e1000_tx_ring *txdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 struct pci_dev *pdev = adapter->pdev;
1595 int size;
1596
1597 size = sizeof(struct e1000_buffer) * txdr->count;
Auke Kokcd94dd02006-06-27 09:08:22 -07001598 txdr->buffer_info = vmalloc(size);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001599 if (!txdr->buffer_info) {
Malli Chilakala26483452005-04-28 19:44:46 -07001600 DPRINTK(PROBE, ERR,
1601 "Unable to allocate memory for the transmit descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 return -ENOMEM;
1603 }
1604 memset(txdr->buffer_info, 0, size);
1605
1606 /* round up to nearest 4K */
1607
1608 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001609 txdr->size = ALIGN(txdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 txdr->desc = pci_alloc_consistent(pdev, txdr->size, &txdr->dma);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001612 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613setup_tx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 vfree(txdr->buffer_info);
Malli Chilakala26483452005-04-28 19:44:46 -07001615 DPRINTK(PROBE, ERR,
1616 "Unable to allocate memory for the transmit descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 return -ENOMEM;
1618 }
1619
Malli Chilakala26483452005-04-28 19:44:46 -07001620 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1622 void *olddesc = txdr->desc;
1623 dma_addr_t olddma = txdr->dma;
Malli Chilakala26483452005-04-28 19:44:46 -07001624 DPRINTK(TX_ERR, ERR, "txdr align check failed: %u bytes "
1625 "at %p\n", txdr->size, txdr->desc);
1626 /* Try again, without freeing the previous */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 txdr->desc = pci_alloc_consistent(pdev, txdr->size, &txdr->dma);
Malli Chilakala26483452005-04-28 19:44:46 -07001628 /* Failed allocation, critical failure */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001629 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 pci_free_consistent(pdev, txdr->size, olddesc, olddma);
1631 goto setup_tx_desc_die;
1632 }
1633
1634 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1635 /* give up */
Malli Chilakala26483452005-04-28 19:44:46 -07001636 pci_free_consistent(pdev, txdr->size, txdr->desc,
1637 txdr->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 pci_free_consistent(pdev, txdr->size, olddesc, olddma);
1639 DPRINTK(PROBE, ERR,
Malli Chilakala26483452005-04-28 19:44:46 -07001640 "Unable to allocate aligned memory "
1641 "for the transmit descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 vfree(txdr->buffer_info);
1643 return -ENOMEM;
1644 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001645 /* Free old allocation, new allocation was successful */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 pci_free_consistent(pdev, txdr->size, olddesc, olddma);
1647 }
1648 }
1649 memset(txdr->desc, 0, txdr->size);
1650
1651 txdr->next_to_use = 0;
1652 txdr->next_to_clean = 0;
1653
1654 return 0;
1655}
1656
1657/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001658 * e1000_setup_all_tx_resources - wrapper to allocate Tx resources
1659 * (Descriptors) for all queues
1660 * @adapter: board private structure
1661 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001662 * Return 0 on success, negative on failure
1663 **/
1664
Joe Perches64798842008-07-11 15:17:02 -07001665int e1000_setup_all_tx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001666{
1667 int i, err = 0;
1668
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001669 for (i = 0; i < adapter->num_tx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001670 err = e1000_setup_tx_resources(adapter, &adapter->tx_ring[i]);
1671 if (err) {
1672 DPRINTK(PROBE, ERR,
1673 "Allocation for Tx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001674 for (i-- ; i >= 0; i--)
1675 e1000_free_tx_resources(adapter,
1676 &adapter->tx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001677 break;
1678 }
1679 }
1680
1681 return err;
1682}
1683
1684/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
1686 * @adapter: board private structure
1687 *
1688 * Configure the Tx unit of the MAC after a reset.
1689 **/
1690
Joe Perches64798842008-07-11 15:17:02 -07001691static void e1000_configure_tx(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
Joe Perches406874a2008-04-03 10:06:32 -07001693 u64 tdba;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001694 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001695 u32 tdlen, tctl, tipg, tarc;
1696 u32 ipgr1, ipgr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
1698 /* Setup the HW Tx Head and Tail descriptor pointers */
1699
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001700 switch (adapter->num_tx_queues) {
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04001701 case 1:
1702 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001703 tdba = adapter->tx_ring[0].dma;
1704 tdlen = adapter->tx_ring[0].count *
1705 sizeof(struct e1000_tx_desc);
Joe Perches1dc32912008-07-11 15:17:08 -07001706 ew32(TDLEN, tdlen);
1707 ew32(TDBAH, (tdba >> 32));
1708 ew32(TDBAL, (tdba & 0x00000000ffffffffULL));
1709 ew32(TDT, 0);
1710 ew32(TDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07001711 adapter->tx_ring[0].tdh = ((hw->mac_type >= e1000_82543) ? E1000_TDH : E1000_82542_TDH);
1712 adapter->tx_ring[0].tdt = ((hw->mac_type >= e1000_82543) ? E1000_TDT : E1000_82542_TDT);
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04001713 break;
1714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 /* Set the default values for the Tx Inter Packet Gap timer */
Joe Perches1dc32912008-07-11 15:17:08 -07001717 if (hw->mac_type <= e1000_82547_rev_2 &&
Jesse Brandeburgd89b6c62006-12-15 10:38:32 +01001718 (hw->media_type == e1000_media_type_fiber ||
1719 hw->media_type == e1000_media_type_internal_serdes))
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001720 tipg = DEFAULT_82543_TIPG_IPGT_FIBER;
1721 else
1722 tipg = DEFAULT_82543_TIPG_IPGT_COPPER;
1723
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001724 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 case e1000_82542_rev2_0:
1726 case e1000_82542_rev2_1:
1727 tipg = DEFAULT_82542_TIPG_IPGT;
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001728 ipgr1 = DEFAULT_82542_TIPG_IPGR1;
1729 ipgr2 = DEFAULT_82542_TIPG_IPGR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 break;
Jeff Kirsher87041632006-03-02 18:21:24 -08001731 case e1000_80003es2lan:
1732 ipgr1 = DEFAULT_82543_TIPG_IPGR1;
1733 ipgr2 = DEFAULT_80003ES2LAN_TIPG_IPGR2;
1734 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 default:
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001736 ipgr1 = DEFAULT_82543_TIPG_IPGR1;
1737 ipgr2 = DEFAULT_82543_TIPG_IPGR2;
1738 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 }
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001740 tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
1741 tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
Joe Perches1dc32912008-07-11 15:17:08 -07001742 ew32(TIPG, tipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 /* Set the Tx Interrupt Delay register */
1745
Joe Perches1dc32912008-07-11 15:17:08 -07001746 ew32(TIDV, adapter->tx_int_delay);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001747 if (hw->mac_type >= e1000_82540)
Joe Perches1dc32912008-07-11 15:17:08 -07001748 ew32(TADV, adapter->tx_abs_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 /* Program the Transmit Control Register */
1751
Joe Perches1dc32912008-07-11 15:17:08 -07001752 tctl = er32(TCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 tctl &= ~E1000_TCTL_CT;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001754 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
1756
Mallikarjuna R Chilakala2ae76d92005-10-04 07:04:22 -04001757 if (hw->mac_type == e1000_82571 || hw->mac_type == e1000_82572) {
Joe Perches1dc32912008-07-11 15:17:08 -07001758 tarc = er32(TARC0);
Auke Kok90fb5132006-11-01 08:47:30 -08001759 /* set the speed mode bit, we'll clear it if we're not at
1760 * gigabit link later */
Jeff Kirsher09ae3e82006-09-27 12:53:51 -07001761 tarc |= (1 << 21);
Joe Perches1dc32912008-07-11 15:17:08 -07001762 ew32(TARC0, tarc);
Jeff Kirsher87041632006-03-02 18:21:24 -08001763 } else if (hw->mac_type == e1000_80003es2lan) {
Joe Perches1dc32912008-07-11 15:17:08 -07001764 tarc = er32(TARC0);
Jeff Kirsher87041632006-03-02 18:21:24 -08001765 tarc |= 1;
Joe Perches1dc32912008-07-11 15:17:08 -07001766 ew32(TARC0, tarc);
1767 tarc = er32(TARC1);
Jeff Kirsher87041632006-03-02 18:21:24 -08001768 tarc |= 1;
Joe Perches1dc32912008-07-11 15:17:08 -07001769 ew32(TARC1, tarc);
Mallikarjuna R Chilakala2ae76d92005-10-04 07:04:22 -04001770 }
1771
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001772 e1000_config_collision_dist(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 /* Setup Transmit Descriptor Settings for eop descriptor */
Jesse Brandeburg6a042da2006-11-01 08:48:04 -08001775 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
1776
1777 /* only set IDE if we are delaying interrupts using the timers */
1778 if (adapter->tx_int_delay)
1779 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001781 if (hw->mac_type < e1000_82543)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 adapter->txd_cmd |= E1000_TXD_CMD_RPS;
1783 else
1784 adapter->txd_cmd |= E1000_TXD_CMD_RS;
1785
1786 /* Cache if we're 82544 running in PCI-X because we'll
1787 * need this to apply a workaround later in the send path. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001788 if (hw->mac_type == e1000_82544 &&
1789 hw->bus_type == e1000_bus_type_pcix)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 adapter->pcix_82544 = 1;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001791
Joe Perches1dc32912008-07-11 15:17:08 -07001792 ew32(TCTL, tctl);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794}
1795
1796/**
1797 * e1000_setup_rx_resources - allocate Rx resources (Descriptors)
1798 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001799 * @rxdr: rx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 *
1801 * Returns 0 on success, negative on failure
1802 **/
1803
Joe Perches64798842008-07-11 15:17:02 -07001804static int e1000_setup_rx_resources(struct e1000_adapter *adapter,
1805 struct e1000_rx_ring *rxdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806{
Joe Perches1dc32912008-07-11 15:17:08 -07001807 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 struct pci_dev *pdev = adapter->pdev;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001809 int size, desc_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811 size = sizeof(struct e1000_buffer) * rxdr->count;
Auke Kokcd94dd02006-06-27 09:08:22 -07001812 rxdr->buffer_info = vmalloc(size);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001813 if (!rxdr->buffer_info) {
Malli Chilakala26483452005-04-28 19:44:46 -07001814 DPRINTK(PROBE, ERR,
1815 "Unable to allocate memory for the receive descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return -ENOMEM;
1817 }
1818 memset(rxdr->buffer_info, 0, size);
1819
Joe Perches1dc32912008-07-11 15:17:08 -07001820 if (hw->mac_type <= e1000_82547_rev_2)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001821 desc_len = sizeof(struct e1000_rx_desc);
1822 else
1823 desc_len = sizeof(union e1000_rx_desc_packet_split);
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 /* Round up to nearest 4K */
1826
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001827 rxdr->size = rxdr->count * desc_len;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001828 rxdr->size = ALIGN(rxdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830 rxdr->desc = pci_alloc_consistent(pdev, rxdr->size, &rxdr->dma);
1831
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001832 if (!rxdr->desc) {
1833 DPRINTK(PROBE, ERR,
1834 "Unable to allocate memory for the receive descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835setup_rx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 vfree(rxdr->buffer_info);
1837 return -ENOMEM;
1838 }
1839
Malli Chilakala26483452005-04-28 19:44:46 -07001840 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1842 void *olddesc = rxdr->desc;
1843 dma_addr_t olddma = rxdr->dma;
Malli Chilakala26483452005-04-28 19:44:46 -07001844 DPRINTK(RX_ERR, ERR, "rxdr align check failed: %u bytes "
1845 "at %p\n", rxdr->size, rxdr->desc);
1846 /* Try again, without freeing the previous */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 rxdr->desc = pci_alloc_consistent(pdev, rxdr->size, &rxdr->dma);
Malli Chilakala26483452005-04-28 19:44:46 -07001848 /* Failed allocation, critical failure */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001849 if (!rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 pci_free_consistent(pdev, rxdr->size, olddesc, olddma);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001851 DPRINTK(PROBE, ERR,
1852 "Unable to allocate memory "
1853 "for the receive descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 goto setup_rx_desc_die;
1855 }
1856
1857 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1858 /* give up */
Malli Chilakala26483452005-04-28 19:44:46 -07001859 pci_free_consistent(pdev, rxdr->size, rxdr->desc,
1860 rxdr->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 pci_free_consistent(pdev, rxdr->size, olddesc, olddma);
Malli Chilakala26483452005-04-28 19:44:46 -07001862 DPRINTK(PROBE, ERR,
1863 "Unable to allocate aligned memory "
1864 "for the receive descriptor ring\n");
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001865 goto setup_rx_desc_die;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001867 /* Free old allocation, new allocation was successful */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 pci_free_consistent(pdev, rxdr->size, olddesc, olddma);
1869 }
1870 }
1871 memset(rxdr->desc, 0, rxdr->size);
1872
1873 rxdr->next_to_clean = 0;
1874 rxdr->next_to_use = 0;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00001875 rxdr->rx_skb_top = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 return 0;
1878}
1879
1880/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001881 * e1000_setup_all_rx_resources - wrapper to allocate Rx resources
1882 * (Descriptors) for all queues
1883 * @adapter: board private structure
1884 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001885 * Return 0 on success, negative on failure
1886 **/
1887
Joe Perches64798842008-07-11 15:17:02 -07001888int e1000_setup_all_rx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001889{
1890 int i, err = 0;
1891
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001892 for (i = 0; i < adapter->num_rx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001893 err = e1000_setup_rx_resources(adapter, &adapter->rx_ring[i]);
1894 if (err) {
1895 DPRINTK(PROBE, ERR,
1896 "Allocation for Rx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001897 for (i-- ; i >= 0; i--)
1898 e1000_free_rx_resources(adapter,
1899 &adapter->rx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001900 break;
1901 }
1902 }
1903
1904 return err;
1905}
1906
1907/**
Malli Chilakala26483452005-04-28 19:44:46 -07001908 * e1000_setup_rctl - configure the receive control registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 * @adapter: Board private structure
1910 **/
Joe Perches64798842008-07-11 15:17:02 -07001911static void e1000_setup_rctl(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
Joe Perches1dc32912008-07-11 15:17:08 -07001913 struct e1000_hw *hw = &adapter->hw;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001914 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Joe Perches1dc32912008-07-11 15:17:08 -07001916 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
1918 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
1919
1920 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
1921 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001922 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Joe Perches1dc32912008-07-11 15:17:08 -07001924 if (hw->tbi_compatibility_on == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 rctl |= E1000_RCTL_SBP;
1926 else
1927 rctl &= ~E1000_RCTL_SBP;
1928
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001929 if (adapter->netdev->mtu <= ETH_DATA_LEN)
1930 rctl &= ~E1000_RCTL_LPE;
1931 else
1932 rctl |= E1000_RCTL_LPE;
1933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 /* Setup buffer sizes */
Auke Kok9e2feac2006-04-14 19:05:18 -07001935 rctl &= ~E1000_RCTL_SZ_4096;
1936 rctl |= E1000_RCTL_BSEX;
1937 switch (adapter->rx_buffer_len) {
1938 case E1000_RXBUFFER_256:
1939 rctl |= E1000_RCTL_SZ_256;
1940 rctl &= ~E1000_RCTL_BSEX;
1941 break;
1942 case E1000_RXBUFFER_512:
1943 rctl |= E1000_RCTL_SZ_512;
1944 rctl &= ~E1000_RCTL_BSEX;
1945 break;
1946 case E1000_RXBUFFER_1024:
1947 rctl |= E1000_RCTL_SZ_1024;
1948 rctl &= ~E1000_RCTL_BSEX;
1949 break;
Jeff Kirshera1415ee2006-02-28 20:24:07 -08001950 case E1000_RXBUFFER_2048:
1951 default:
1952 rctl |= E1000_RCTL_SZ_2048;
1953 rctl &= ~E1000_RCTL_BSEX;
1954 break;
1955 case E1000_RXBUFFER_4096:
1956 rctl |= E1000_RCTL_SZ_4096;
1957 break;
1958 case E1000_RXBUFFER_8192:
1959 rctl |= E1000_RCTL_SZ_8192;
1960 break;
1961 case E1000_RXBUFFER_16384:
1962 rctl |= E1000_RCTL_SZ_16384;
1963 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001964 }
1965
Joe Perches1dc32912008-07-11 15:17:08 -07001966 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967}
1968
1969/**
1970 * e1000_configure_rx - Configure 8254x Receive Unit after Reset
1971 * @adapter: board private structure
1972 *
1973 * Configure the Rx unit of the MAC after a reset.
1974 **/
1975
Joe Perches64798842008-07-11 15:17:02 -07001976static void e1000_configure_rx(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
Joe Perches406874a2008-04-03 10:06:32 -07001978 u64 rdba;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001979 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07001980 u32 rdlen, rctl, rxcsum, ctrl_ext;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001981
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00001982 if (adapter->netdev->mtu > ETH_DATA_LEN) {
1983 rdlen = adapter->rx_ring[0].count *
1984 sizeof(struct e1000_rx_desc);
1985 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
1986 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
1987 } else {
1988 rdlen = adapter->rx_ring[0].count *
1989 sizeof(struct e1000_rx_desc);
1990 adapter->clean_rx = e1000_clean_rx_irq;
1991 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
1992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 /* disable receives while setting up the descriptors */
Joe Perches1dc32912008-07-11 15:17:08 -07001995 rctl = er32(RCTL);
1996 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 /* set the Receive Delay Timer Register */
Joe Perches1dc32912008-07-11 15:17:08 -07001999 ew32(RDTR, adapter->rx_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002001 if (hw->mac_type >= e1000_82540) {
Joe Perches1dc32912008-07-11 15:17:08 -07002002 ew32(RADV, adapter->rx_abs_int_delay);
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002003 if (adapter->itr_setting != 0)
Joe Perches1dc32912008-07-11 15:17:08 -07002004 ew32(ITR, 1000000000 / (adapter->itr * 256));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006
Mallikarjuna R Chilakala2ae76d92005-10-04 07:04:22 -04002007 if (hw->mac_type >= e1000_82571) {
Joe Perches1dc32912008-07-11 15:17:08 -07002008 ctrl_ext = er32(CTRL_EXT);
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08002009 /* Reset delay timers after every interrupt */
Auke Kok6fc7a7e2006-04-14 19:05:12 -07002010 ctrl_ext |= E1000_CTRL_EXT_INT_TIMER_CLR;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002011 /* Auto-Mask interrupts upon ICR access */
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08002012 ctrl_ext |= E1000_CTRL_EXT_IAME;
Joe Perches1dc32912008-07-11 15:17:08 -07002013 ew32(IAM, 0xffffffff);
Joe Perches1dc32912008-07-11 15:17:08 -07002014 ew32(CTRL_EXT, ctrl_ext);
2015 E1000_WRITE_FLUSH();
Mallikarjuna R Chilakala2ae76d92005-10-04 07:04:22 -04002016 }
2017
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002018 /* Setup the HW Rx Head and Tail Descriptor Pointers and
2019 * the Base and Length of the Rx Descriptor Ring */
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002020 switch (adapter->num_rx_queues) {
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04002021 case 1:
2022 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002023 rdba = adapter->rx_ring[0].dma;
Joe Perches1dc32912008-07-11 15:17:08 -07002024 ew32(RDLEN, rdlen);
2025 ew32(RDBAH, (rdba >> 32));
2026 ew32(RDBAL, (rdba & 0x00000000ffffffffULL));
2027 ew32(RDT, 0);
2028 ew32(RDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07002029 adapter->rx_ring[0].rdh = ((hw->mac_type >= e1000_82543) ? E1000_RDH : E1000_82542_RDH);
2030 adapter->rx_ring[0].rdt = ((hw->mac_type >= e1000_82543) ? E1000_RDT : E1000_82542_RDT);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002031 break;
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04002032 }
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 /* Enable 82543 Receive Checksum Offload for TCP and UDP */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002035 if (hw->mac_type >= e1000_82543) {
Joe Perches1dc32912008-07-11 15:17:08 -07002036 rxcsum = er32(RXCSUM);
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07002037 if (adapter->rx_csum)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002038 rxcsum |= E1000_RXCSUM_TUOFL;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07002039 else
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002040 /* don't need to clear IPPCSE as it defaults to 0 */
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07002041 rxcsum &= ~E1000_RXCSUM_TUOFL;
Joe Perches1dc32912008-07-11 15:17:08 -07002042 ew32(RXCSUM, rxcsum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 }
2044
2045 /* Enable Receives */
Joe Perches1dc32912008-07-11 15:17:08 -07002046 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047}
2048
2049/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002050 * e1000_free_tx_resources - Free Tx Resources per Queue
2051 * @adapter: board private structure
2052 * @tx_ring: Tx descriptor ring for a specific queue
2053 *
2054 * Free all transmit software resources
2055 **/
2056
Joe Perches64798842008-07-11 15:17:02 -07002057static void e1000_free_tx_resources(struct e1000_adapter *adapter,
2058 struct e1000_tx_ring *tx_ring)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002059{
2060 struct pci_dev *pdev = adapter->pdev;
2061
2062 e1000_clean_tx_ring(adapter, tx_ring);
2063
2064 vfree(tx_ring->buffer_info);
2065 tx_ring->buffer_info = NULL;
2066
2067 pci_free_consistent(pdev, tx_ring->size, tx_ring->desc, tx_ring->dma);
2068
2069 tx_ring->desc = NULL;
2070}
2071
2072/**
2073 * e1000_free_all_tx_resources - Free Tx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 * @adapter: board private structure
2075 *
2076 * Free all transmit software resources
2077 **/
2078
Joe Perches64798842008-07-11 15:17:02 -07002079void e1000_free_all_tx_resources(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002081 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002083 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002084 e1000_free_tx_resources(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085}
2086
Joe Perches64798842008-07-11 15:17:02 -07002087static void e1000_unmap_and_free_tx_resource(struct e1000_adapter *adapter,
2088 struct e1000_buffer *buffer_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
Jesse Brandeburgd20b6062009-03-02 16:03:21 -08002090 buffer_info->dma = 0;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002091 if (buffer_info->skb) {
Jesse Brandeburgd20b6062009-03-02 16:03:21 -08002092 skb_dma_unmap(&adapter->pdev->dev, buffer_info->skb,
2093 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 dev_kfree_skb_any(buffer_info->skb);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002095 buffer_info->skb = NULL;
2096 }
Alexander Duyck37e73df2009-03-25 21:58:45 +00002097 buffer_info->time_stamp = 0;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002098 /* buffer_info must be completely set up in the transmit path */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100
2101/**
2102 * e1000_clean_tx_ring - Free Tx Buffers
2103 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002104 * @tx_ring: ring to be cleaned
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 **/
2106
Joe Perches64798842008-07-11 15:17:02 -07002107static void e1000_clean_tx_ring(struct e1000_adapter *adapter,
2108 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
Joe Perches1dc32912008-07-11 15:17:08 -07002110 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 struct e1000_buffer *buffer_info;
2112 unsigned long size;
2113 unsigned int i;
2114
2115 /* Free all the Tx ring sk_buffs */
2116
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002117 for (i = 0; i < tx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 buffer_info = &tx_ring->buffer_info[i];
2119 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
2120 }
2121
2122 size = sizeof(struct e1000_buffer) * tx_ring->count;
2123 memset(tx_ring->buffer_info, 0, size);
2124
2125 /* Zero out the descriptor ring */
2126
2127 memset(tx_ring->desc, 0, tx_ring->size);
2128
2129 tx_ring->next_to_use = 0;
2130 tx_ring->next_to_clean = 0;
Jeff Kirsherfd803242005-12-13 00:06:22 -05002131 tx_ring->last_tx_tso = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Joe Perches1dc32912008-07-11 15:17:08 -07002133 writel(0, hw->hw_addr + tx_ring->tdh);
2134 writel(0, hw->hw_addr + tx_ring->tdt);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002135}
2136
2137/**
2138 * e1000_clean_all_tx_rings - Free Tx Buffers for all queues
2139 * @adapter: board private structure
2140 **/
2141
Joe Perches64798842008-07-11 15:17:02 -07002142static void e1000_clean_all_tx_rings(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002143{
2144 int i;
2145
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002146 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002147 e1000_clean_tx_ring(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148}
2149
2150/**
2151 * e1000_free_rx_resources - Free Rx Resources
2152 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002153 * @rx_ring: ring to clean the resources from
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 *
2155 * Free all receive software resources
2156 **/
2157
Joe Perches64798842008-07-11 15:17:02 -07002158static void e1000_free_rx_resources(struct e1000_adapter *adapter,
2159 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 struct pci_dev *pdev = adapter->pdev;
2162
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002163 e1000_clean_rx_ring(adapter, rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 vfree(rx_ring->buffer_info);
2166 rx_ring->buffer_info = NULL;
2167
2168 pci_free_consistent(pdev, rx_ring->size, rx_ring->desc, rx_ring->dma);
2169
2170 rx_ring->desc = NULL;
2171}
2172
2173/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002174 * e1000_free_all_rx_resources - Free Rx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002176 *
2177 * Free all receive software resources
2178 **/
2179
Joe Perches64798842008-07-11 15:17:02 -07002180void e1000_free_all_rx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002181{
2182 int i;
2183
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002184 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002185 e1000_free_rx_resources(adapter, &adapter->rx_ring[i]);
2186}
2187
2188/**
2189 * e1000_clean_rx_ring - Free Rx Buffers per Queue
2190 * @adapter: board private structure
2191 * @rx_ring: ring to free buffers from
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 **/
2193
Joe Perches64798842008-07-11 15:17:02 -07002194static void e1000_clean_rx_ring(struct e1000_adapter *adapter,
2195 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196{
Joe Perches1dc32912008-07-11 15:17:08 -07002197 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 struct e1000_buffer *buffer_info;
2199 struct pci_dev *pdev = adapter->pdev;
2200 unsigned long size;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07002201 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
2203 /* Free all the Rx ring sk_buffs */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002204 for (i = 0; i < rx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 buffer_info = &rx_ring->buffer_info[i];
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002206 if (buffer_info->dma &&
2207 adapter->clean_rx == e1000_clean_rx_irq) {
2208 pci_unmap_single(pdev, buffer_info->dma,
2209 buffer_info->length,
2210 PCI_DMA_FROMDEVICE);
2211 } else if (buffer_info->dma &&
2212 adapter->clean_rx == e1000_clean_jumbo_rx_irq) {
2213 pci_unmap_page(pdev, buffer_info->dma,
2214 buffer_info->length,
2215 PCI_DMA_FROMDEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002218 buffer_info->dma = 0;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002219 if (buffer_info->page) {
2220 put_page(buffer_info->page);
2221 buffer_info->page = NULL;
2222 }
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002223 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 dev_kfree_skb(buffer_info->skb);
2225 buffer_info->skb = NULL;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08002226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 }
2228
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002229 /* there also may be some cached data from a chained receive */
2230 if (rx_ring->rx_skb_top) {
2231 dev_kfree_skb(rx_ring->rx_skb_top);
2232 rx_ring->rx_skb_top = NULL;
2233 }
2234
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 size = sizeof(struct e1000_buffer) * rx_ring->count;
2236 memset(rx_ring->buffer_info, 0, size);
2237
2238 /* Zero out the descriptor ring */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 memset(rx_ring->desc, 0, rx_ring->size);
2240
2241 rx_ring->next_to_clean = 0;
2242 rx_ring->next_to_use = 0;
2243
Joe Perches1dc32912008-07-11 15:17:08 -07002244 writel(0, hw->hw_addr + rx_ring->rdh);
2245 writel(0, hw->hw_addr + rx_ring->rdt);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002246}
2247
2248/**
2249 * e1000_clean_all_rx_rings - Free Rx Buffers for all queues
2250 * @adapter: board private structure
2251 **/
2252
Joe Perches64798842008-07-11 15:17:02 -07002253static void e1000_clean_all_rx_rings(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002254{
2255 int i;
2256
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002257 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002258 e1000_clean_rx_ring(adapter, &adapter->rx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259}
2260
2261/* The 82542 2.0 (revision 2) needs to have the receive unit in reset
2262 * and memory write and invalidate disabled for certain operations
2263 */
Joe Perches64798842008-07-11 15:17:02 -07002264static void e1000_enter_82542_rst(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265{
Joe Perches1dc32912008-07-11 15:17:08 -07002266 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002268 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Joe Perches1dc32912008-07-11 15:17:08 -07002270 e1000_pci_clear_mwi(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Joe Perches1dc32912008-07-11 15:17:08 -07002272 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 rctl |= E1000_RCTL_RST;
Joe Perches1dc32912008-07-11 15:17:08 -07002274 ew32(RCTL, rctl);
2275 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 mdelay(5);
2277
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002278 if (netif_running(netdev))
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002279 e1000_clean_all_rx_rings(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280}
2281
Joe Perches64798842008-07-11 15:17:02 -07002282static void e1000_leave_82542_rst(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283{
Joe Perches1dc32912008-07-11 15:17:08 -07002284 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002286 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Joe Perches1dc32912008-07-11 15:17:08 -07002288 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 rctl &= ~E1000_RCTL_RST;
Joe Perches1dc32912008-07-11 15:17:08 -07002290 ew32(RCTL, rctl);
2291 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 mdelay(5);
2293
Joe Perches1dc32912008-07-11 15:17:08 -07002294 if (hw->pci_cmd_word & PCI_COMMAND_INVALIDATE)
2295 e1000_pci_set_mwi(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002297 if (netif_running(netdev)) {
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002298 /* No need to loop, because 82542 supports only 1 queue */
2299 struct e1000_rx_ring *ring = &adapter->rx_ring[0];
Jesse Brandeburg7c4d3362006-01-18 13:01:45 -08002300 e1000_configure_rx(adapter);
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002301 adapter->alloc_rx_buf(adapter, ring, E1000_DESC_UNUSED(ring));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 }
2303}
2304
2305/**
2306 * e1000_set_mac - Change the Ethernet Address of the NIC
2307 * @netdev: network interface device structure
2308 * @p: pointer to an address structure
2309 *
2310 * Returns 0 on success, negative on failure
2311 **/
2312
Joe Perches64798842008-07-11 15:17:02 -07002313static int e1000_set_mac(struct net_device *netdev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002315 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07002316 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 struct sockaddr *addr = p;
2318
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002319 if (!is_valid_ether_addr(addr->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 return -EADDRNOTAVAIL;
2321
2322 /* 82542 2.0 needs to be in reset to write receive address registers */
2323
Joe Perches1dc32912008-07-11 15:17:08 -07002324 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 e1000_enter_82542_rst(adapter);
2326
2327 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Joe Perches1dc32912008-07-11 15:17:08 -07002328 memcpy(hw->mac_addr, addr->sa_data, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Joe Perches1dc32912008-07-11 15:17:08 -07002330 e1000_rar_set(hw, hw->mac_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002332 /* With 82571 controllers, LAA may be overwritten (with the default)
2333 * due to controller reset from the other port. */
Joe Perches1dc32912008-07-11 15:17:08 -07002334 if (hw->mac_type == e1000_82571) {
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002335 /* activate the work around */
Joe Perches1dc32912008-07-11 15:17:08 -07002336 hw->laa_is_present = 1;
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002337
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002338 /* Hold a copy of the LAA in RAR[14] This is done so that
2339 * between the time RAR[0] gets clobbered and the time it
2340 * gets fixed (in e1000_watchdog), the actual LAA is in one
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002341 * of the RARs and no incoming packets directed to this port
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002342 * are dropped. Eventaully the LAA will be in RAR[0] and
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002343 * RAR[14] */
Joe Perches1dc32912008-07-11 15:17:08 -07002344 e1000_rar_set(hw, hw->mac_addr,
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002345 E1000_RAR_ENTRIES - 1);
2346 }
2347
Joe Perches1dc32912008-07-11 15:17:08 -07002348 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 e1000_leave_82542_rst(adapter);
2350
2351 return 0;
2352}
2353
2354/**
Patrick McHardydb0ce502007-11-13 20:54:59 -08002355 * e1000_set_rx_mode - Secondary Unicast, Multicast and Promiscuous mode set
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 * @netdev: network interface device structure
2357 *
Patrick McHardydb0ce502007-11-13 20:54:59 -08002358 * The set_rx_mode entry point is called whenever the unicast or multicast
2359 * address lists or the network interface flags are updated. This routine is
2360 * responsible for configuring the hardware for proper unicast, multicast,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 * promiscuous mode, and all-multi behavior.
2362 **/
2363
Joe Perches64798842008-07-11 15:17:02 -07002364static void e1000_set_rx_mode(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002366 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 struct e1000_hw *hw = &adapter->hw;
Jiri Pirkoccffad22009-05-22 23:22:17 +00002368 struct netdev_hw_addr *ha;
2369 bool use_uc = false;
Patrick McHardydb0ce502007-11-13 20:54:59 -08002370 struct dev_addr_list *mc_ptr;
Joe Perches406874a2008-04-03 10:06:32 -07002371 u32 rctl;
2372 u32 hash_value;
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002373 int i, rar_entries = E1000_RAR_ENTRIES;
Auke Kokcd94dd02006-06-27 09:08:22 -07002374 int mta_reg_count = (hw->mac_type == e1000_ich8lan) ?
2375 E1000_NUM_MTA_REGISTERS_ICH8LAN :
2376 E1000_NUM_MTA_REGISTERS;
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002377 u32 *mcarray = kcalloc(mta_reg_count, sizeof(u32), GFP_ATOMIC);
2378
2379 if (!mcarray) {
2380 DPRINTK(PROBE, ERR, "memory allocation failed\n");
2381 return;
2382 }
Auke Kokcd94dd02006-06-27 09:08:22 -07002383
Joe Perches1dc32912008-07-11 15:17:08 -07002384 if (hw->mac_type == e1000_ich8lan)
Auke Kokcd94dd02006-06-27 09:08:22 -07002385 rar_entries = E1000_RAR_ENTRIES_ICH8LAN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002387 /* reserve RAR[14] for LAA over-write work-around */
Joe Perches1dc32912008-07-11 15:17:08 -07002388 if (hw->mac_type == e1000_82571)
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002389 rar_entries--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Malli Chilakala26483452005-04-28 19:44:46 -07002391 /* Check for Promiscuous and All Multicast modes */
2392
Joe Perches1dc32912008-07-11 15:17:08 -07002393 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002395 if (netdev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Patrick McHardy746b9f02008-07-16 20:15:45 -07002397 rctl &= ~E1000_RCTL_VFE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07002399 if (netdev->flags & IFF_ALLMULTI) {
2400 rctl |= E1000_RCTL_MPE;
2401 } else {
2402 rctl &= ~E1000_RCTL_MPE;
2403 }
Patrick McHardy78ed11a2008-07-16 20:16:14 -07002404 if (adapter->hw.mac_type != e1000_ich8lan)
Graham, Davidfd38d7a2009-08-31 14:12:51 +00002405 /* Enable VLAN filter if there is a VLAN */
2406 if (adapter->vlgrp)
2407 rctl |= E1000_RCTL_VFE;
Patrick McHardydb0ce502007-11-13 20:54:59 -08002408 }
2409
Jiri Pirko31278e72009-06-17 01:12:19 +00002410 if (netdev->uc.count > rar_entries - 1) {
Patrick McHardydb0ce502007-11-13 20:54:59 -08002411 rctl |= E1000_RCTL_UPE;
2412 } else if (!(netdev->flags & IFF_PROMISC)) {
2413 rctl &= ~E1000_RCTL_UPE;
Jiri Pirkoccffad22009-05-22 23:22:17 +00002414 use_uc = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 }
2416
Joe Perches1dc32912008-07-11 15:17:08 -07002417 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 /* 82542 2.0 needs to be in reset to write receive address registers */
2420
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002421 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 e1000_enter_82542_rst(adapter);
2423
Patrick McHardydb0ce502007-11-13 20:54:59 -08002424 /* load the first 14 addresses into the exact filters 1-14. Unicast
2425 * addresses take precedence to avoid disabling unicast filtering
2426 * when possible.
2427 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 * RAR 0 is used for the station MAC adddress
2429 * if there are not 14 addresses, go ahead and clear the filters
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002430 * -- with 82571 controllers only 0-13 entries are filled here
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 */
Jiri Pirkoccffad22009-05-22 23:22:17 +00002432 i = 1;
2433 if (use_uc)
Jiri Pirko31278e72009-06-17 01:12:19 +00002434 list_for_each_entry(ha, &netdev->uc.list, list) {
Jiri Pirkoccffad22009-05-22 23:22:17 +00002435 if (i == rar_entries)
2436 break;
2437 e1000_rar_set(hw, ha->addr, i++);
2438 }
2439
2440 WARN_ON(i == rar_entries);
2441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 mc_ptr = netdev->mc_list;
2443
Jiri Pirkoccffad22009-05-22 23:22:17 +00002444 for (; i < rar_entries; i++) {
2445 if (mc_ptr) {
Patrick McHardydb0ce502007-11-13 20:54:59 -08002446 e1000_rar_set(hw, mc_ptr->da_addr, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 mc_ptr = mc_ptr->next;
2448 } else {
2449 E1000_WRITE_REG_ARRAY(hw, RA, i << 1, 0);
Joe Perches1dc32912008-07-11 15:17:08 -07002450 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 E1000_WRITE_REG_ARRAY(hw, RA, (i << 1) + 1, 0);
Joe Perches1dc32912008-07-11 15:17:08 -07002452 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 }
2454 }
2455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 /* load any remaining addresses into the hash table */
2457
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002458 for (; mc_ptr; mc_ptr = mc_ptr->next) {
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002459 u32 hash_reg, hash_bit, mta;
Patrick McHardydb0ce502007-11-13 20:54:59 -08002460 hash_value = e1000_hash_mc_addr(hw, mc_ptr->da_addr);
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002461 hash_reg = (hash_value >> 5) & 0x7F;
2462 hash_bit = hash_value & 0x1F;
2463 mta = (1 << hash_bit);
2464 mcarray[hash_reg] |= mta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 }
2466
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002467 /* write the hash table completely, write from bottom to avoid
2468 * both stupid write combining chipsets, and flushing each write */
2469 for (i = mta_reg_count - 1; i >= 0 ; i--) {
2470 /*
2471 * If we are on an 82544 has an errata where writing odd
2472 * offsets overwrites the previous even offset, but writing
2473 * backwards over the range solves the issue by always
2474 * writing the odd offset first
2475 */
2476 E1000_WRITE_REG_ARRAY(hw, MTA, i, mcarray[i]);
2477 }
2478 E1000_WRITE_FLUSH();
2479
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002480 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 e1000_leave_82542_rst(adapter);
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002482
2483 kfree(mcarray);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484}
2485
2486/* Need to wait a few seconds after link up to get diagnostic information from
2487 * the phy */
2488
Joe Perches64798842008-07-11 15:17:02 -07002489static void e1000_update_phy_info(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490{
Joe Perchese982f172008-07-11 15:17:18 -07002491 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Joe Perches1dc32912008-07-11 15:17:08 -07002492 struct e1000_hw *hw = &adapter->hw;
2493 e1000_phy_get_info(hw, &adapter->phy_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494}
2495
2496/**
2497 * e1000_82547_tx_fifo_stall - Timer Call-back
2498 * @data: pointer to adapter cast into an unsigned long
2499 **/
2500
Joe Perches64798842008-07-11 15:17:02 -07002501static void e1000_82547_tx_fifo_stall(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502{
Joe Perchese982f172008-07-11 15:17:18 -07002503 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Joe Perches1dc32912008-07-11 15:17:08 -07002504 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002506 u32 tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002508 if (atomic_read(&adapter->tx_fifo_stall)) {
Joe Perches1dc32912008-07-11 15:17:08 -07002509 if ((er32(TDT) == er32(TDH)) &&
2510 (er32(TDFT) == er32(TDFH)) &&
2511 (er32(TDFTS) == er32(TDFHS))) {
2512 tctl = er32(TCTL);
2513 ew32(TCTL, tctl & ~E1000_TCTL_EN);
2514 ew32(TDFT, adapter->tx_head_addr);
2515 ew32(TDFH, adapter->tx_head_addr);
2516 ew32(TDFTS, adapter->tx_head_addr);
2517 ew32(TDFHS, adapter->tx_head_addr);
2518 ew32(TCTL, tctl);
2519 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521 adapter->tx_fifo_head = 0;
2522 atomic_set(&adapter->tx_fifo_stall, 0);
2523 netif_wake_queue(netdev);
2524 } else {
2525 mod_timer(&adapter->tx_fifo_stall_timer, jiffies + 1);
2526 }
2527 }
2528}
2529
2530/**
2531 * e1000_watchdog - Timer Call-back
2532 * @data: pointer to adapter cast into an unsigned long
2533 **/
Joe Perches64798842008-07-11 15:17:02 -07002534static void e1000_watchdog(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535{
Joe Perchese982f172008-07-11 15:17:18 -07002536 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Joe Perches1dc32912008-07-11 15:17:08 -07002537 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 struct net_device *netdev = adapter->netdev;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002539 struct e1000_tx_ring *txdr = adapter->tx_ring;
Joe Perches406874a2008-04-03 10:06:32 -07002540 u32 link, tctl;
2541 s32 ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Joe Perches1dc32912008-07-11 15:17:08 -07002543 ret_val = e1000_check_for_link(hw);
Auke Kokcd94dd02006-06-27 09:08:22 -07002544 if ((ret_val == E1000_ERR_PHY) &&
Joe Perches1dc32912008-07-11 15:17:08 -07002545 (hw->phy_type == e1000_phy_igp_3) &&
2546 (er32(CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
Auke Kokcd94dd02006-06-27 09:08:22 -07002547 /* See e1000_kumeran_lock_loss_workaround() */
2548 DPRINTK(LINK, INFO,
2549 "Gigabit has been disabled, downgrading speed\n");
2550 }
Auke Kok90fb5132006-11-01 08:47:30 -08002551
Joe Perches1dc32912008-07-11 15:17:08 -07002552 if (hw->mac_type == e1000_82573) {
2553 e1000_enable_tx_pkt_filtering(hw);
2554 if (adapter->mng_vlan_id != hw->mng_cookie.vlan_id)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002555 e1000_update_mng_vlan(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Joe Perches1dc32912008-07-11 15:17:08 -07002558 if ((hw->media_type == e1000_media_type_internal_serdes) &&
2559 !(er32(TXCW) & E1000_TXCW_ANE))
2560 link = !hw->serdes_link_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 else
Joe Perches1dc32912008-07-11 15:17:08 -07002562 link = er32(STATUS) & E1000_STATUS_LU;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002564 if (link) {
2565 if (!netif_carrier_ok(netdev)) {
Joe Perches406874a2008-04-03 10:06:32 -07002566 u32 ctrl;
Joe Perchesc3033b02008-03-21 11:06:25 -07002567 bool txb2b = true;
Joe Perches1dc32912008-07-11 15:17:08 -07002568 e1000_get_speed_and_duplex(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 &adapter->link_speed,
2570 &adapter->link_duplex);
2571
Joe Perches1dc32912008-07-11 15:17:08 -07002572 ctrl = er32(CTRL);
Jeff Kirsherb30c4d82008-11-27 00:22:45 -08002573 printk(KERN_INFO "e1000: %s NIC Link is Up %d Mbps %s, "
2574 "Flow Control: %s\n",
2575 netdev->name,
2576 adapter->link_speed,
2577 adapter->link_duplex == FULL_DUPLEX ?
Auke Kok9669f532007-01-18 09:25:26 -08002578 "Full Duplex" : "Half Duplex",
2579 ((ctrl & E1000_CTRL_TFCE) && (ctrl &
2580 E1000_CTRL_RFCE)) ? "RX/TX" : ((ctrl &
2581 E1000_CTRL_RFCE) ? "RX" : ((ctrl &
2582 E1000_CTRL_TFCE) ? "TX" : "None" )));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002584 /* tweak tx_queue_len according to speed/duplex
2585 * and adjust the timeout factor */
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002586 netdev->tx_queue_len = adapter->tx_queue_len;
2587 adapter->tx_timeout_factor = 1;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002588 switch (adapter->link_speed) {
2589 case SPEED_10:
Joe Perchesc3033b02008-03-21 11:06:25 -07002590 txb2b = false;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002591 netdev->tx_queue_len = 10;
2592 adapter->tx_timeout_factor = 8;
2593 break;
2594 case SPEED_100:
Joe Perchesc3033b02008-03-21 11:06:25 -07002595 txb2b = false;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002596 netdev->tx_queue_len = 100;
2597 /* maybe add some timeout factor ? */
2598 break;
2599 }
2600
Joe Perches1dc32912008-07-11 15:17:08 -07002601 if ((hw->mac_type == e1000_82571 ||
2602 hw->mac_type == e1000_82572) &&
Joe Perchesc3033b02008-03-21 11:06:25 -07002603 !txb2b) {
Joe Perches406874a2008-04-03 10:06:32 -07002604 u32 tarc0;
Joe Perches1dc32912008-07-11 15:17:08 -07002605 tarc0 = er32(TARC0);
Auke Kok90fb5132006-11-01 08:47:30 -08002606 tarc0 &= ~(1 << 21);
Joe Perches1dc32912008-07-11 15:17:08 -07002607 ew32(TARC0, tarc0);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002608 }
Auke Kok90fb5132006-11-01 08:47:30 -08002609
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002610 /* disable TSO for pcie and 10/100 speeds, to avoid
2611 * some hardware issues */
2612 if (!adapter->tso_force &&
Joe Perches1dc32912008-07-11 15:17:08 -07002613 hw->bus_type == e1000_bus_type_pci_express){
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002614 switch (adapter->link_speed) {
2615 case SPEED_10:
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002616 case SPEED_100:
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002617 DPRINTK(PROBE,INFO,
2618 "10/100 speed: disabling TSO\n");
2619 netdev->features &= ~NETIF_F_TSO;
Auke Kok87ca4e52006-11-01 08:47:36 -08002620 netdev->features &= ~NETIF_F_TSO6;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002621 break;
2622 case SPEED_1000:
2623 netdev->features |= NETIF_F_TSO;
Auke Kok87ca4e52006-11-01 08:47:36 -08002624 netdev->features |= NETIF_F_TSO6;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002625 break;
2626 default:
2627 /* oops */
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002628 break;
2629 }
2630 }
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002631
2632 /* enable transmits in the hardware, need to do this
2633 * after setting TARC0 */
Joe Perches1dc32912008-07-11 15:17:08 -07002634 tctl = er32(TCTL);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002635 tctl |= E1000_TCTL_EN;
Joe Perches1dc32912008-07-11 15:17:08 -07002636 ew32(TCTL, tctl);
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002637
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 netif_carrier_on(netdev);
Arjan van de Ven56e13932007-03-06 02:41:48 -08002639 mod_timer(&adapter->phy_info_timer, round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 adapter->smartspeed = 0;
Jeff Garzikbb8e3312006-12-15 11:06:17 -05002641 } else {
2642 /* make sure the receive unit is started */
Joe Perches1dc32912008-07-11 15:17:08 -07002643 if (hw->rx_needs_kicking) {
2644 u32 rctl = er32(RCTL);
2645 ew32(RCTL, rctl | E1000_RCTL_EN);
Jeff Garzikbb8e3312006-12-15 11:06:17 -05002646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 }
2648 } else {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002649 if (netif_carrier_ok(netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 adapter->link_speed = 0;
2651 adapter->link_duplex = 0;
Jeff Kirsherb30c4d82008-11-27 00:22:45 -08002652 printk(KERN_INFO "e1000: %s NIC Link is Down\n",
2653 netdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 netif_carrier_off(netdev);
Arjan van de Ven56e13932007-03-06 02:41:48 -08002655 mod_timer(&adapter->phy_info_timer, round_jiffies(jiffies + 2 * HZ));
Jeff Kirsher87041632006-03-02 18:21:24 -08002656
2657 /* 80003ES2LAN workaround--
2658 * For packet buffer work-around on link down event;
2659 * disable receives in the ISR and
2660 * reset device here in the watchdog
2661 */
Joe Perches1dc32912008-07-11 15:17:08 -07002662 if (hw->mac_type == e1000_80003es2lan)
Jeff Kirsher87041632006-03-02 18:21:24 -08002663 /* reset device */
2664 schedule_work(&adapter->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 }
2666
2667 e1000_smartspeed(adapter);
2668 }
2669
2670 e1000_update_stats(adapter);
2671
Joe Perches1dc32912008-07-11 15:17:08 -07002672 hw->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 adapter->tpt_old = adapter->stats.tpt;
Joe Perches1dc32912008-07-11 15:17:08 -07002674 hw->collision_delta = adapter->stats.colc - adapter->colc_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 adapter->colc_old = adapter->stats.colc;
2676
2677 adapter->gorcl = adapter->stats.gorcl - adapter->gorcl_old;
2678 adapter->gorcl_old = adapter->stats.gorcl;
2679 adapter->gotcl = adapter->stats.gotcl - adapter->gotcl_old;
2680 adapter->gotcl_old = adapter->stats.gotcl;
2681
Joe Perches1dc32912008-07-11 15:17:08 -07002682 e1000_update_adaptive(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002684 if (!netif_carrier_ok(netdev)) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002685 if (E1000_DESC_UNUSED(txdr) + 1 < txdr->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 /* We've lost link, so the controller stops DMA,
2687 * but we've got queued Tx work that's never going
2688 * to get done, so reset controller to flush Tx.
2689 * (Do the reset outside of interrupt context). */
Jeff Kirsher87041632006-03-02 18:21:24 -08002690 adapter->tx_timeout_count++;
2691 schedule_work(&adapter->reset_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00002692 /* return immediately since reset is imminent */
2693 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 }
2695 }
2696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 /* Cause software interrupt to ensure rx ring is cleaned */
Joe Perches1dc32912008-07-11 15:17:08 -07002698 ew32(ICS, E1000_ICS_RXDMT0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Malli Chilakala26483452005-04-28 19:44:46 -07002700 /* Force detection of hung controller every watchdog period */
Joe Perchesc3033b02008-03-21 11:06:25 -07002701 adapter->detect_tx_hung = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002703 /* With 82571 controllers, LAA may be overwritten due to controller
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002704 * reset from the other port. Set the appropriate LAA in RAR[0] */
Joe Perches1dc32912008-07-11 15:17:08 -07002705 if (hw->mac_type == e1000_82571 && hw->laa_is_present)
2706 e1000_rar_set(hw, hw->mac_addr, 0);
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 /* Reset the timer */
Arjan van de Ven56e13932007-03-06 02:41:48 -08002709 mod_timer(&adapter->watchdog_timer, round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710}
2711
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002712enum latency_range {
2713 lowest_latency = 0,
2714 low_latency = 1,
2715 bulk_latency = 2,
2716 latency_invalid = 255
2717};
2718
2719/**
2720 * e1000_update_itr - update the dynamic ITR value based on statistics
2721 * Stores a new ITR value based on packets and byte
2722 * counts during the last interrupt. The advantage of per interrupt
2723 * computation is faster updates and more accurate ITR for the current
2724 * traffic pattern. Constants in this function were computed
2725 * based on theoretical maximum wire speed and thresholds were set based
2726 * on testing data as well as attempting to minimize response time
2727 * while increasing bulk throughput.
2728 * this functionality is controlled by the InterruptThrottleRate module
2729 * parameter (see e1000_param.c)
2730 * @adapter: pointer to adapter
2731 * @itr_setting: current adapter->itr
2732 * @packets: the number of packets during this measurement interval
2733 * @bytes: the number of bytes during this measurement interval
2734 **/
2735static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
Joe Perches64798842008-07-11 15:17:02 -07002736 u16 itr_setting, int packets, int bytes)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002737{
2738 unsigned int retval = itr_setting;
2739 struct e1000_hw *hw = &adapter->hw;
2740
2741 if (unlikely(hw->mac_type < e1000_82540))
2742 goto update_itr_done;
2743
2744 if (packets == 0)
2745 goto update_itr_done;
2746
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002747 switch (itr_setting) {
2748 case lowest_latency:
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002749 /* jumbo frames get bulk treatment*/
2750 if (bytes/packets > 8000)
2751 retval = bulk_latency;
2752 else if ((packets < 5) && (bytes > 512))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002753 retval = low_latency;
2754 break;
2755 case low_latency: /* 50 usec aka 20000 ints/s */
2756 if (bytes > 10000) {
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002757 /* jumbo frames need bulk latency setting */
2758 if (bytes/packets > 8000)
2759 retval = bulk_latency;
2760 else if ((packets < 10) || ((bytes/packets) > 1200))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002761 retval = bulk_latency;
2762 else if ((packets > 35))
2763 retval = lowest_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002764 } else if (bytes/packets > 2000)
2765 retval = bulk_latency;
2766 else if (packets <= 2 && bytes < 512)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002767 retval = lowest_latency;
2768 break;
2769 case bulk_latency: /* 250 usec aka 4000 ints/s */
2770 if (bytes > 25000) {
2771 if (packets > 35)
2772 retval = low_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002773 } else if (bytes < 6000) {
2774 retval = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002775 }
2776 break;
2777 }
2778
2779update_itr_done:
2780 return retval;
2781}
2782
2783static void e1000_set_itr(struct e1000_adapter *adapter)
2784{
2785 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07002786 u16 current_itr;
2787 u32 new_itr = adapter->itr;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002788
2789 if (unlikely(hw->mac_type < e1000_82540))
2790 return;
2791
2792 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2793 if (unlikely(adapter->link_speed != SPEED_1000)) {
2794 current_itr = 0;
2795 new_itr = 4000;
2796 goto set_itr_now;
2797 }
2798
2799 adapter->tx_itr = e1000_update_itr(adapter,
2800 adapter->tx_itr,
2801 adapter->total_tx_packets,
2802 adapter->total_tx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002803 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2804 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2805 adapter->tx_itr = low_latency;
2806
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002807 adapter->rx_itr = e1000_update_itr(adapter,
2808 adapter->rx_itr,
2809 adapter->total_rx_packets,
2810 adapter->total_rx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002811 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2812 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2813 adapter->rx_itr = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002814
2815 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2816
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002817 switch (current_itr) {
2818 /* counts and packets in update_itr are dependent on these numbers */
2819 case lowest_latency:
2820 new_itr = 70000;
2821 break;
2822 case low_latency:
2823 new_itr = 20000; /* aka hwitr = ~200 */
2824 break;
2825 case bulk_latency:
2826 new_itr = 4000;
2827 break;
2828 default:
2829 break;
2830 }
2831
2832set_itr_now:
2833 if (new_itr != adapter->itr) {
2834 /* this attempts to bias the interrupt rate towards Bulk
2835 * by adding intermediate steps when interrupt rate is
2836 * increasing */
2837 new_itr = new_itr > adapter->itr ?
2838 min(adapter->itr + (new_itr >> 2), new_itr) :
2839 new_itr;
2840 adapter->itr = new_itr;
Joe Perches1dc32912008-07-11 15:17:08 -07002841 ew32(ITR, 1000000000 / (new_itr * 256));
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002842 }
2843
2844 return;
2845}
2846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847#define E1000_TX_FLAGS_CSUM 0x00000001
2848#define E1000_TX_FLAGS_VLAN 0x00000002
2849#define E1000_TX_FLAGS_TSO 0x00000004
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002850#define E1000_TX_FLAGS_IPV4 0x00000008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
2852#define E1000_TX_FLAGS_VLAN_SHIFT 16
2853
Joe Perches64798842008-07-11 15:17:02 -07002854static int e1000_tso(struct e1000_adapter *adapter,
2855 struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002858 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 unsigned int i;
Joe Perches406874a2008-04-03 10:06:32 -07002860 u32 cmd_length = 0;
2861 u16 ipcse = 0, tucse, mss;
2862 u8 ipcss, ipcso, tucss, tucso, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 int err;
2864
Herbert Xu89114af2006-07-08 13:34:32 -07002865 if (skb_is_gso(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 if (skb_header_cloned(skb)) {
2867 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2868 if (err)
2869 return err;
2870 }
2871
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07002872 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Herbert Xu79671682006-06-22 02:40:14 -07002873 mss = skb_shinfo(skb)->gso_size;
Alexey Dobriyan60828232006-05-23 14:52:21 -07002874 if (skb->protocol == htons(ETH_P_IP)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002875 struct iphdr *iph = ip_hdr(skb);
2876 iph->tot_len = 0;
2877 iph->check = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002878 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
2879 iph->daddr, 0,
2880 IPPROTO_TCP,
2881 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002882 cmd_length = E1000_TXD_CMD_IP;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002883 ipcse = skb_transport_offset(skb) - 1;
Auke Koke15fdd02006-08-16 11:28:45 -07002884 } else if (skb->protocol == htons(ETH_P_IPV6)) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002885 ipv6_hdr(skb)->payload_len = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002886 tcp_hdr(skb)->check =
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002887 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
2888 &ipv6_hdr(skb)->daddr,
2889 0, IPPROTO_TCP, 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002890 ipcse = 0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002891 }
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03002892 ipcss = skb_network_offset(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002893 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002894 tucss = skb_transport_offset(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002895 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 tucse = 0;
2897
2898 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002899 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002901 i = tx_ring->next_to_use;
2902 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002903 buffer_info = &tx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
2905 context_desc->lower_setup.ip_fields.ipcss = ipcss;
2906 context_desc->lower_setup.ip_fields.ipcso = ipcso;
2907 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
2908 context_desc->upper_setup.tcp_fields.tucss = tucss;
2909 context_desc->upper_setup.tcp_fields.tucso = tucso;
2910 context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
2911 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
2912 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
2913 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
2914
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002915 buffer_info->time_stamp = jiffies;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002916 buffer_info->next_to_watch = i;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002917
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002918 if (++i == tx_ring->count) i = 0;
2919 tx_ring->next_to_use = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Joe Perchesc3033b02008-03-21 11:06:25 -07002921 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 }
Joe Perchesc3033b02008-03-21 11:06:25 -07002923 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924}
2925
Joe Perches64798842008-07-11 15:17:02 -07002926static bool e1000_tx_csum(struct e1000_adapter *adapter,
2927 struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928{
2929 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002930 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 unsigned int i;
Joe Perches406874a2008-04-03 10:06:32 -07002932 u8 css;
Dave Graham3ed30672008-10-09 14:29:26 -07002933 u32 cmd_len = E1000_TXD_CMD_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Dave Graham3ed30672008-10-09 14:29:26 -07002935 if (skb->ip_summed != CHECKSUM_PARTIAL)
2936 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
Dave Graham3ed30672008-10-09 14:29:26 -07002938 switch (skb->protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08002939 case cpu_to_be16(ETH_P_IP):
Dave Graham3ed30672008-10-09 14:29:26 -07002940 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
2941 cmd_len |= E1000_TXD_CMD_TCP;
2942 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08002943 case cpu_to_be16(ETH_P_IPV6):
Dave Graham3ed30672008-10-09 14:29:26 -07002944 /* XXX not handling all IPV6 headers */
2945 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
2946 cmd_len |= E1000_TXD_CMD_TCP;
2947 break;
2948 default:
2949 if (unlikely(net_ratelimit()))
2950 DPRINTK(DRV, WARNING,
2951 "checksum_partial proto=%x!\n", skb->protocol);
2952 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 }
2954
Dave Graham3ed30672008-10-09 14:29:26 -07002955 css = skb_transport_offset(skb);
2956
2957 i = tx_ring->next_to_use;
2958 buffer_info = &tx_ring->buffer_info[i];
2959 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
2960
2961 context_desc->lower_setup.ip_config = 0;
2962 context_desc->upper_setup.tcp_fields.tucss = css;
2963 context_desc->upper_setup.tcp_fields.tucso =
2964 css + skb->csum_offset;
2965 context_desc->upper_setup.tcp_fields.tucse = 0;
2966 context_desc->tcp_seg_setup.data = 0;
2967 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
2968
2969 buffer_info->time_stamp = jiffies;
2970 buffer_info->next_to_watch = i;
2971
2972 if (unlikely(++i == tx_ring->count)) i = 0;
2973 tx_ring->next_to_use = i;
2974
2975 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976}
2977
2978#define E1000_MAX_TXD_PWR 12
2979#define E1000_MAX_DATA_PER_TXD (1<<E1000_MAX_TXD_PWR)
2980
Joe Perches64798842008-07-11 15:17:02 -07002981static int e1000_tx_map(struct e1000_adapter *adapter,
2982 struct e1000_tx_ring *tx_ring,
2983 struct sk_buff *skb, unsigned int first,
2984 unsigned int max_per_txd, unsigned int nr_frags,
2985 unsigned int mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986{
Joe Perches1dc32912008-07-11 15:17:08 -07002987 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck37e73df2009-03-25 21:58:45 +00002988 struct e1000_buffer *buffer_info;
Jesse Brandeburgd20b6062009-03-02 16:03:21 -08002989 unsigned int len = skb_headlen(skb);
2990 unsigned int offset, size, count = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 unsigned int f;
Alexander Duyck37e73df2009-03-25 21:58:45 +00002992 dma_addr_t *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
2994 i = tx_ring->next_to_use;
2995
Jesse Brandeburgd20b6062009-03-02 16:03:21 -08002996 if (skb_dma_map(&adapter->pdev->dev, skb, DMA_TO_DEVICE)) {
2997 dev_err(&adapter->pdev->dev, "TX DMA map failed\n");
Alexander Duyck37e73df2009-03-25 21:58:45 +00002998 return 0;
Jesse Brandeburgd20b6062009-03-02 16:03:21 -08002999 }
3000
Alexander Duyck37e73df2009-03-25 21:58:45 +00003001 map = skb_shinfo(skb)->dma_maps;
Jesse Brandeburgd20b6062009-03-02 16:03:21 -08003002 offset = 0;
3003
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003004 while (len) {
Alexander Duyck37e73df2009-03-25 21:58:45 +00003005 buffer_info = &tx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 size = min(len, max_per_txd);
Jeff Kirsherfd803242005-12-13 00:06:22 -05003007 /* Workaround for Controller erratum --
3008 * descriptor for non-tso packet in a linear SKB that follows a
3009 * tso gets written back prematurely before the data is fully
Jeff Kirsher0f15a8f2006-03-02 18:46:29 -08003010 * DMA'd to the controller */
Jeff Kirsherfd803242005-12-13 00:06:22 -05003011 if (!skb->data_len && tx_ring->last_tx_tso &&
Herbert Xu89114af2006-07-08 13:34:32 -07003012 !skb_is_gso(skb)) {
Jeff Kirsherfd803242005-12-13 00:06:22 -05003013 tx_ring->last_tx_tso = 0;
3014 size -= 4;
3015 }
3016
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 /* Workaround for premature desc write-backs
3018 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003019 if (unlikely(mss && !nr_frags && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 size -= 4;
Malli Chilakala97338bd2005-04-28 19:41:46 -07003021 /* work-around for errata 10 and it applies
3022 * to all controllers in PCI-X mode
3023 * The fix is to make sure that the first descriptor of a
3024 * packet is smaller than 2048 - 16 - 16 (or 2016) bytes
3025 */
Joe Perches1dc32912008-07-11 15:17:08 -07003026 if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07003027 (size > 2015) && count == 0))
3028 size = 2015;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003029
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 /* Workaround for potential 82544 hang in PCI-X. Avoid
3031 * terminating buffers within evenly-aligned dwords. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003032 if (unlikely(adapter->pcix_82544 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 !((unsigned long)(skb->data + offset + size - 1) & 4) &&
3034 size > 4))
3035 size -= 4;
3036
3037 buffer_info->length = size;
Eric Dumazet042a53a2009-06-05 04:04:16 +00003038 buffer_info->dma = skb_shinfo(skb)->dma_head + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 buffer_info->time_stamp = jiffies;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08003040 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
3042 len -= size;
3043 offset += size;
3044 count++;
Alexander Duyck37e73df2009-03-25 21:58:45 +00003045 if (len) {
3046 i++;
3047 if (unlikely(i == tx_ring->count))
3048 i = 0;
3049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 }
3051
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003052 for (f = 0; f < nr_frags; f++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 struct skb_frag_struct *frag;
3054
3055 frag = &skb_shinfo(skb)->frags[f];
3056 len = frag->size;
Jesse Brandeburgd20b6062009-03-02 16:03:21 -08003057 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003059 while (len) {
Alexander Duyck37e73df2009-03-25 21:58:45 +00003060 i++;
3061 if (unlikely(i == tx_ring->count))
3062 i = 0;
3063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 buffer_info = &tx_ring->buffer_info[i];
3065 size = min(len, max_per_txd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 /* Workaround for premature desc write-backs
3067 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003068 if (unlikely(mss && f == (nr_frags-1) && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 size -= 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 /* Workaround for potential 82544 hang in PCI-X.
3071 * Avoid terminating buffers within evenly-aligned
3072 * dwords. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003073 if (unlikely(adapter->pcix_82544 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 !((unsigned long)(frag->page+offset+size-1) & 4) &&
3075 size > 4))
3076 size -= 4;
3077
3078 buffer_info->length = size;
Eric Dumazet042a53a2009-06-05 04:04:16 +00003079 buffer_info->dma = map[f] + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 buffer_info->time_stamp = jiffies;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08003081 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
3083 len -= size;
3084 offset += size;
3085 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 }
3087 }
3088
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 tx_ring->buffer_info[i].skb = skb;
3090 tx_ring->buffer_info[first].next_to_watch = i;
3091
3092 return count;
3093}
3094
Joe Perches64798842008-07-11 15:17:02 -07003095static void e1000_tx_queue(struct e1000_adapter *adapter,
3096 struct e1000_tx_ring *tx_ring, int tx_flags,
3097 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
Joe Perches1dc32912008-07-11 15:17:08 -07003099 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 struct e1000_tx_desc *tx_desc = NULL;
3101 struct e1000_buffer *buffer_info;
Joe Perches406874a2008-04-03 10:06:32 -07003102 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 unsigned int i;
3104
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003105 if (likely(tx_flags & E1000_TX_FLAGS_TSO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
3107 E1000_TXD_CMD_TSE;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003108 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
3109
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003110 if (likely(tx_flags & E1000_TX_FLAGS_IPV4))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003111 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 }
3113
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003114 if (likely(tx_flags & E1000_TX_FLAGS_CSUM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
3116 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
3117 }
3118
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003119 if (unlikely(tx_flags & E1000_TX_FLAGS_VLAN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 txd_lower |= E1000_TXD_CMD_VLE;
3121 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
3122 }
3123
3124 i = tx_ring->next_to_use;
3125
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003126 while (count--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 buffer_info = &tx_ring->buffer_info[i];
3128 tx_desc = E1000_TX_DESC(*tx_ring, i);
3129 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
3130 tx_desc->lower.data =
3131 cpu_to_le32(txd_lower | buffer_info->length);
3132 tx_desc->upper.data = cpu_to_le32(txd_upper);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003133 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 }
3135
3136 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
3137
3138 /* Force memory writes to complete before letting h/w
3139 * know there are new descriptors to fetch. (Only
3140 * applicable for weak-ordered memory model archs,
3141 * such as IA-64). */
3142 wmb();
3143
3144 tx_ring->next_to_use = i;
Joe Perches1dc32912008-07-11 15:17:08 -07003145 writel(i, hw->hw_addr + tx_ring->tdt);
Jesse Brandeburg2ce90472006-11-01 08:47:42 -08003146 /* we need this if more than one processor can write to our tail
3147 * at a time, it syncronizes IO on IA64/Altix systems */
3148 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149}
3150
3151/**
3152 * 82547 workaround to avoid controller hang in half-duplex environment.
3153 * The workaround is to avoid queuing a large packet that would span
3154 * the internal Tx FIFO ring boundary by notifying the stack to resend
3155 * the packet at a later time. This gives the Tx FIFO an opportunity to
3156 * flush all packets. When that occurs, we reset the Tx FIFO pointers
3157 * to the beginning of the Tx FIFO.
3158 **/
3159
3160#define E1000_FIFO_HDR 0x10
3161#define E1000_82547_PAD_LEN 0x3E0
3162
Joe Perches64798842008-07-11 15:17:02 -07003163static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
3164 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165{
Joe Perches406874a2008-04-03 10:06:32 -07003166 u32 fifo_space = adapter->tx_fifo_size - adapter->tx_fifo_head;
3167 u32 skb_fifo_len = skb->len + E1000_FIFO_HDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07003169 skb_fifo_len = ALIGN(skb_fifo_len, E1000_FIFO_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003171 if (adapter->link_duplex != HALF_DUPLEX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 goto no_fifo_stall_required;
3173
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003174 if (atomic_read(&adapter->tx_fifo_stall))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 return 1;
3176
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003177 if (skb_fifo_len >= (E1000_82547_PAD_LEN + fifo_space)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 atomic_set(&adapter->tx_fifo_stall, 1);
3179 return 1;
3180 }
3181
3182no_fifo_stall_required:
3183 adapter->tx_fifo_head += skb_fifo_len;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003184 if (adapter->tx_fifo_head >= adapter->tx_fifo_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 adapter->tx_fifo_head -= adapter->tx_fifo_size;
3186 return 0;
3187}
3188
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003189#define MINIMUM_DHCP_PACKET_SIZE 282
Joe Perches64798842008-07-11 15:17:02 -07003190static int e1000_transfer_dhcp_info(struct e1000_adapter *adapter,
3191 struct sk_buff *skb)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003192{
3193 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07003194 u16 length, offset;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003195 if (vlan_tx_tag_present(skb)) {
Joe Perches1dc32912008-07-11 15:17:08 -07003196 if (!((vlan_tx_tag_get(skb) == hw->mng_cookie.vlan_id) &&
3197 ( hw->mng_cookie.status &
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003198 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT)) )
3199 return 0;
3200 }
Jeff Kirsher20a44022006-03-02 18:18:08 -08003201 if (skb->len > MINIMUM_DHCP_PACKET_SIZE) {
Joe Perchese982f172008-07-11 15:17:18 -07003202 struct ethhdr *eth = (struct ethhdr *)skb->data;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003203 if ((htons(ETH_P_IP) == eth->h_proto)) {
3204 const struct iphdr *ip =
Joe Perches406874a2008-04-03 10:06:32 -07003205 (struct iphdr *)((u8 *)skb->data+14);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003206 if (IPPROTO_UDP == ip->protocol) {
3207 struct udphdr *udp =
Joe Perches406874a2008-04-03 10:06:32 -07003208 (struct udphdr *)((u8 *)ip +
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003209 (ip->ihl << 2));
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003210 if (ntohs(udp->dest) == 67) {
Joe Perches406874a2008-04-03 10:06:32 -07003211 offset = (u8 *)udp + 8 - skb->data;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003212 length = skb->len - offset;
3213
3214 return e1000_mng_write_dhcp_info(hw,
Joe Perches406874a2008-04-03 10:06:32 -07003215 (u8 *)udp + 8,
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003216 length);
3217 }
3218 }
3219 }
3220 }
3221 return 0;
3222}
3223
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003224static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
3225{
3226 struct e1000_adapter *adapter = netdev_priv(netdev);
3227 struct e1000_tx_ring *tx_ring = adapter->tx_ring;
3228
3229 netif_stop_queue(netdev);
3230 /* Herbert's original patch had:
3231 * smp_mb__after_netif_stop_queue();
3232 * but since that doesn't exist yet, just open code it. */
3233 smp_mb();
3234
3235 /* We need to check again in a case another CPU has just
3236 * made room available. */
3237 if (likely(E1000_DESC_UNUSED(tx_ring) < size))
3238 return -EBUSY;
3239
3240 /* A reprieve! */
3241 netif_start_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003242 ++adapter->restart_queue;
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003243 return 0;
3244}
3245
3246static int e1000_maybe_stop_tx(struct net_device *netdev,
3247 struct e1000_tx_ring *tx_ring, int size)
3248{
3249 if (likely(E1000_DESC_UNUSED(tx_ring) >= size))
3250 return 0;
3251 return __e1000_maybe_stop_tx(netdev, size);
3252}
3253
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254#define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
Stephen Hemminger3b29a562009-08-31 19:50:55 +00003255static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
3256 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003258 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07003259 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003260 struct e1000_tx_ring *tx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 unsigned int first, max_per_txd = E1000_MAX_DATA_PER_TXD;
3262 unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
3263 unsigned int tx_flags = 0;
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003264 unsigned int len = skb->len - skb->data_len;
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003265 unsigned int nr_frags;
3266 unsigned int mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 int count = 0;
Auke Kok76c224b2006-05-23 13:36:06 -07003268 int tso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003271 /* This goes back to the question of how to logically map a tx queue
3272 * to a flow. Right now, performance is impacted slightly negatively
3273 * if using multiple tx queues. If the stack breaks away from a
3274 * single qdisc implementation, we can look at this again. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003275 tx_ring = adapter->tx_ring;
Mallikarjuna R Chilakala24025e42005-10-04 07:03:23 -04003276
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003277 if (unlikely(skb->len <= 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 dev_kfree_skb_any(skb);
3279 return NETDEV_TX_OK;
3280 }
3281
Jesse Brandeburg032fe6e2006-10-24 14:46:04 -07003282 /* 82571 and newer doesn't need the workaround that limited descriptor
3283 * length to 4kB */
Joe Perches1dc32912008-07-11 15:17:08 -07003284 if (hw->mac_type >= e1000_82571)
Jesse Brandeburg032fe6e2006-10-24 14:46:04 -07003285 max_per_txd = 8192;
3286
Herbert Xu79671682006-06-22 02:40:14 -07003287 mss = skb_shinfo(skb)->gso_size;
Auke Kok76c224b2006-05-23 13:36:06 -07003288 /* The controller does a simple calculation to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 * make sure there is enough room in the FIFO before
3290 * initiating the DMA for each buffer. The calc is:
3291 * 4 = ceil(buffer len/mss). To make sure we don't
3292 * overrun the FIFO, adjust the max buffer len if mss
3293 * drops. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003294 if (mss) {
Joe Perches406874a2008-04-03 10:06:32 -07003295 u8 hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 max_per_txd = min(mss << 2, max_per_txd);
3297 max_txd_pwr = fls(max_per_txd) - 1;
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003298
Auke Kok90fb5132006-11-01 08:47:30 -08003299 /* TSO Workaround for 82571/2/3 Controllers -- if skb->data
3300 * points to just header, pull a few bytes of payload from
3301 * frags into skb->data */
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07003302 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003303 if (skb->data_len && hdr_len == len) {
Joe Perches1dc32912008-07-11 15:17:08 -07003304 switch (hw->mac_type) {
Jeff Kirsher9f687882006-03-02 18:20:17 -08003305 unsigned int pull_size;
Herbert Xu683a2aa2006-12-16 12:04:33 +11003306 case e1000_82544:
3307 /* Make sure we have room to chop off 4 bytes,
3308 * and that the end alignment will work out to
3309 * this hardware's requirements
3310 * NOTE: this is a TSO only workaround
3311 * if end byte alignment not correct move us
3312 * into the next dword */
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003313 if ((unsigned long)(skb_tail_pointer(skb) - 1) & 4)
Herbert Xu683a2aa2006-12-16 12:04:33 +11003314 break;
3315 /* fall through */
Jeff Kirsher9f687882006-03-02 18:20:17 -08003316 case e1000_82571:
3317 case e1000_82572:
3318 case e1000_82573:
Auke Kokcd94dd02006-06-27 09:08:22 -07003319 case e1000_ich8lan:
Jeff Kirsher9f687882006-03-02 18:20:17 -08003320 pull_size = min((unsigned int)4, skb->data_len);
3321 if (!__pskb_pull_tail(skb, pull_size)) {
Auke Koka5eafce2006-06-27 09:06:49 -07003322 DPRINTK(DRV, ERR,
Jeff Kirsher9f687882006-03-02 18:20:17 -08003323 "__pskb_pull_tail failed.\n");
3324 dev_kfree_skb_any(skb);
Jeff Garzik749dfc72006-03-11 13:35:31 -05003325 return NETDEV_TX_OK;
Jeff Kirsher9f687882006-03-02 18:20:17 -08003326 }
3327 len = skb->len - skb->data_len;
3328 break;
3329 default:
3330 /* do nothing */
3331 break;
Jeff Kirsherd74bbd32006-01-12 16:51:07 -08003332 }
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 }
3335
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003336 /* reserve a descriptor for the offload context */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003337 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 count++;
Malli Chilakala26483452005-04-28 19:44:46 -07003339 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003340
Jeff Kirsherfd803242005-12-13 00:06:22 -05003341 /* Controller Erratum workaround */
Herbert Xu89114af2006-07-08 13:34:32 -07003342 if (!skb->data_len && tx_ring->last_tx_tso && !skb_is_gso(skb))
Jeff Kirsherfd803242005-12-13 00:06:22 -05003343 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003344
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 count += TXD_USE_COUNT(len, max_txd_pwr);
3346
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003347 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 count++;
3349
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003350 /* work-around for errata 10 and it applies to all controllers
Malli Chilakala97338bd2005-04-28 19:41:46 -07003351 * in PCI-X mode, so add one more descriptor to the count
3352 */
Joe Perches1dc32912008-07-11 15:17:08 -07003353 if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07003354 (len > 2015)))
3355 count++;
3356
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 nr_frags = skb_shinfo(skb)->nr_frags;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003358 for (f = 0; f < nr_frags; f++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size,
3360 max_txd_pwr);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003361 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 count += nr_frags;
3363
Jeff Kirsher0f15a8f2006-03-02 18:46:29 -08003364
Joe Perches1dc32912008-07-11 15:17:08 -07003365 if (hw->tx_pkt_filtering &&
3366 (hw->mac_type == e1000_82573))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003367 e1000_transfer_dhcp_info(adapter, skb);
3368
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 /* need: count + 2 desc gap to keep tail from touching
3370 * head, otherwise try next time */
Alexander Duyck80179432009-01-21 14:42:47 -08003371 if (unlikely(e1000_maybe_stop_tx(netdev, tx_ring, count + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373
Joe Perches1dc32912008-07-11 15:17:08 -07003374 if (unlikely(hw->mac_type == e1000_82547)) {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003375 if (unlikely(e1000_82547_fifo_workaround(adapter, skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 netif_stop_queue(netdev);
Auke Kok1314bbf2006-09-27 12:54:02 -07003377 mod_timer(&adapter->tx_fifo_stall_timer, jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 return NETDEV_TX_BUSY;
3379 }
3380 }
3381
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003382 if (unlikely(adapter->vlgrp && vlan_tx_tag_present(skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 tx_flags |= E1000_TX_FLAGS_VLAN;
3384 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
3385 }
3386
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003387 first = tx_ring->next_to_use;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003388
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003389 tso = e1000_tso(adapter, tx_ring, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 if (tso < 0) {
3391 dev_kfree_skb_any(skb);
3392 return NETDEV_TX_OK;
3393 }
3394
Jeff Kirsherfd803242005-12-13 00:06:22 -05003395 if (likely(tso)) {
3396 tx_ring->last_tx_tso = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 tx_flags |= E1000_TX_FLAGS_TSO;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003398 } else if (likely(e1000_tx_csum(adapter, tx_ring, skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 tx_flags |= E1000_TX_FLAGS_CSUM;
3400
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003401 /* Old method was to assume IPv4 packet by default if TSO was enabled.
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04003402 * 82571 hardware supports TSO capabilities for IPv6 as well...
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003403 * no longer assume, we must. */
Alexey Dobriyan60828232006-05-23 14:52:21 -07003404 if (likely(skb->protocol == htons(ETH_P_IP)))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003405 tx_flags |= E1000_TX_FLAGS_IPV4;
3406
Alexander Duyck37e73df2009-03-25 21:58:45 +00003407 count = e1000_tx_map(adapter, tx_ring, skb, first, max_per_txd,
3408 nr_frags, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409
Alexander Duyck37e73df2009-03-25 21:58:45 +00003410 if (count) {
3411 e1000_tx_queue(adapter, tx_ring, tx_flags, count);
Alexander Duyck37e73df2009-03-25 21:58:45 +00003412 /* Make sure there is space in the ring for the next send. */
3413 e1000_maybe_stop_tx(netdev, tx_ring, MAX_SKB_FRAGS + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
Alexander Duyck37e73df2009-03-25 21:58:45 +00003415 } else {
3416 dev_kfree_skb_any(skb);
3417 tx_ring->buffer_info[first].time_stamp = 0;
3418 tx_ring->next_to_use = first;
3419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 return NETDEV_TX_OK;
3422}
3423
3424/**
3425 * e1000_tx_timeout - Respond to a Tx Hang
3426 * @netdev: network interface device structure
3427 **/
3428
Joe Perches64798842008-07-11 15:17:02 -07003429static void e1000_tx_timeout(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003431 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432
3433 /* Do the reset outside of interrupt context */
Jeff Kirsher87041632006-03-02 18:21:24 -08003434 adapter->tx_timeout_count++;
3435 schedule_work(&adapter->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436}
3437
Joe Perches64798842008-07-11 15:17:02 -07003438static void e1000_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439{
David Howells65f27f32006-11-22 14:55:48 +00003440 struct e1000_adapter *adapter =
3441 container_of(work, struct e1000_adapter, reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Auke Kok2db10a02006-06-27 09:06:28 -07003443 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444}
3445
3446/**
3447 * e1000_get_stats - Get System Network Statistics
3448 * @netdev: network interface device structure
3449 *
3450 * Returns the address of the device statistics structure.
3451 * The statistics are actually updated from the timer callback.
3452 **/
3453
Joe Perches64798842008-07-11 15:17:02 -07003454static struct net_device_stats *e1000_get_stats(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003456 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
Jeff Kirsher6b7660c2006-01-12 16:50:35 -08003458 /* only return the current stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 return &adapter->net_stats;
3460}
3461
3462/**
3463 * e1000_change_mtu - Change the Maximum Transfer Unit
3464 * @netdev: network interface device structure
3465 * @new_mtu: new value for maximum frame size
3466 *
3467 * Returns 0 on success, negative on failure
3468 **/
3469
Joe Perches64798842008-07-11 15:17:02 -07003470static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003472 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07003473 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 int max_frame = new_mtu + ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
Joe Perches406874a2008-04-03 10:06:32 -07003475 u16 eeprom_data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003477 if ((max_frame < MINIMUM_ETHERNET_FRAME_SIZE) ||
3478 (max_frame > MAX_JUMBO_FRAME_SIZE)) {
3479 DPRINTK(PROBE, ERR, "Invalid MTU setting\n");
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04003480 return -EINVAL;
3481 }
3482
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003483 /* Adapter-specific max frame size limits. */
Joe Perches1dc32912008-07-11 15:17:08 -07003484 switch (hw->mac_type) {
Auke Kok9e2feac2006-04-14 19:05:18 -07003485 case e1000_undefined ... e1000_82542_rev2_1:
Auke Kokcd94dd02006-06-27 09:08:22 -07003486 case e1000_ich8lan:
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +00003487 if (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)) {
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003488 DPRINTK(PROBE, ERR, "Jumbo Frames not supported.\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003489 return -EINVAL;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003490 }
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003491 break;
Jeff Kirsher85b22eb2006-03-02 18:20:29 -08003492 case e1000_82573:
Bruce Allan249d71d2006-09-27 12:53:45 -07003493 /* Jumbo Frames not supported if:
3494 * - this is not an 82573L device
3495 * - ASPM is enabled in any way (0x1A bits 3:2) */
Joe Perches1dc32912008-07-11 15:17:08 -07003496 e1000_read_eeprom(hw, EEPROM_INIT_3GIO_3, 1,
Jeff Kirsher85b22eb2006-03-02 18:20:29 -08003497 &eeprom_data);
Joe Perches1dc32912008-07-11 15:17:08 -07003498 if ((hw->device_id != E1000_DEV_ID_82573L) ||
Bruce Allan249d71d2006-09-27 12:53:45 -07003499 (eeprom_data & EEPROM_WORD1A_ASPM_MASK)) {
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +00003500 if (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)) {
Jeff Kirsher85b22eb2006-03-02 18:20:29 -08003501 DPRINTK(PROBE, ERR,
3502 "Jumbo Frames not supported.\n");
3503 return -EINVAL;
3504 }
3505 break;
3506 }
Bruce Allan249d71d2006-09-27 12:53:45 -07003507 /* ERT will be enabled later to enable wire speed receives */
3508
Jeff Kirsher85b22eb2006-03-02 18:20:29 -08003509 /* fall through to get support */
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003510 case e1000_82571:
3511 case e1000_82572:
Jeff Kirsher87041632006-03-02 18:21:24 -08003512 case e1000_80003es2lan:
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003513#define MAX_STD_JUMBO_FRAME_SIZE 9234
3514 if (max_frame > MAX_STD_JUMBO_FRAME_SIZE) {
3515 DPRINTK(PROBE, ERR, "MTU > 9216 not supported.\n");
3516 return -EINVAL;
3517 }
3518 break;
3519 default:
3520 /* Capable of supporting up to MAX_JUMBO_FRAME_SIZE limit. */
3521 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003522 }
3523
David S. Miller87f50322006-07-31 22:39:40 -07003524 /* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kok9e2feac2006-04-14 19:05:18 -07003525 * means we reserve 2 more, this pushes us to allocate from the next
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003526 * larger slab size.
3527 * i.e. RXBUFFER_2048 --> size-4096 slab
3528 * however with the new *_jumbo_rx* routines, jumbo receives will use
3529 * fragmented skbs */
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003530
Auke Kok9e2feac2006-04-14 19:05:18 -07003531 if (max_frame <= E1000_RXBUFFER_256)
3532 adapter->rx_buffer_len = E1000_RXBUFFER_256;
3533 else if (max_frame <= E1000_RXBUFFER_512)
3534 adapter->rx_buffer_len = E1000_RXBUFFER_512;
3535 else if (max_frame <= E1000_RXBUFFER_1024)
3536 adapter->rx_buffer_len = E1000_RXBUFFER_1024;
3537 else if (max_frame <= E1000_RXBUFFER_2048)
3538 adapter->rx_buffer_len = E1000_RXBUFFER_2048;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003539 else
3540#if (PAGE_SIZE >= E1000_RXBUFFER_16384)
Auke Kok9e2feac2006-04-14 19:05:18 -07003541 adapter->rx_buffer_len = E1000_RXBUFFER_16384;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003542#elif (PAGE_SIZE >= E1000_RXBUFFER_4096)
3543 adapter->rx_buffer_len = PAGE_SIZE;
3544#endif
Auke Kok9e2feac2006-04-14 19:05:18 -07003545
3546 /* adjust allocation if LPE protects us, and we aren't using SBP */
Joe Perches1dc32912008-07-11 15:17:08 -07003547 if (!hw->tbi_compatibility_on &&
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +00003548 ((max_frame == (ETH_FRAME_LEN + ETH_FCS_LEN)) ||
Auke Kok9e2feac2006-04-14 19:05:18 -07003549 (max_frame == MAXIMUM_ETHERNET_VLAN_SIZE)))
3550 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003551
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003552 netdev->mtu = new_mtu;
Joe Perches1dc32912008-07-11 15:17:08 -07003553 hw->max_frame_size = max_frame;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003554
Auke Kok2db10a02006-06-27 09:06:28 -07003555 if (netif_running(netdev))
3556 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 return 0;
3559}
3560
3561/**
3562 * e1000_update_stats - Update the board statistics counters
3563 * @adapter: board private structure
3564 **/
3565
Joe Perches64798842008-07-11 15:17:02 -07003566void e1000_update_stats(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567{
3568 struct e1000_hw *hw = &adapter->hw;
Linas Vepstas282f33c2006-06-08 22:19:44 -07003569 struct pci_dev *pdev = adapter->pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 unsigned long flags;
Joe Perches406874a2008-04-03 10:06:32 -07003571 u16 phy_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
3573#define PHY_IDLE_ERROR_COUNT_MASK 0x00FF
3574
Linas Vepstas282f33c2006-06-08 22:19:44 -07003575 /*
3576 * Prevent stats update while adapter is being reset, or if the pci
3577 * connection is down.
3578 */
Auke Kok90267292006-06-08 09:30:24 -07003579 if (adapter->link_speed == 0)
3580 return;
Linas Vepstas81b19552006-12-12 18:29:15 -06003581 if (pci_channel_offline(pdev))
Linas Vepstas282f33c2006-06-08 22:19:44 -07003582 return;
Auke Kok90267292006-06-08 09:30:24 -07003583
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 spin_lock_irqsave(&adapter->stats_lock, flags);
3585
Masatake YAMATO828d0552007-10-20 03:06:37 +02003586 /* these counters are modified from e1000_tbi_adjust_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 * called from the interrupt context, so they must only
3588 * be written while holding adapter->stats_lock
3589 */
3590
Joe Perches1dc32912008-07-11 15:17:08 -07003591 adapter->stats.crcerrs += er32(CRCERRS);
3592 adapter->stats.gprc += er32(GPRC);
3593 adapter->stats.gorcl += er32(GORCL);
3594 adapter->stats.gorch += er32(GORCH);
3595 adapter->stats.bprc += er32(BPRC);
3596 adapter->stats.mprc += er32(MPRC);
3597 adapter->stats.roc += er32(ROC);
Auke Kokcd94dd02006-06-27 09:08:22 -07003598
Joe Perches1dc32912008-07-11 15:17:08 -07003599 if (hw->mac_type != e1000_ich8lan) {
3600 adapter->stats.prc64 += er32(PRC64);
3601 adapter->stats.prc127 += er32(PRC127);
3602 adapter->stats.prc255 += er32(PRC255);
3603 adapter->stats.prc511 += er32(PRC511);
3604 adapter->stats.prc1023 += er32(PRC1023);
3605 adapter->stats.prc1522 += er32(PRC1522);
Auke Kokcd94dd02006-06-27 09:08:22 -07003606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
Joe Perches1dc32912008-07-11 15:17:08 -07003608 adapter->stats.symerrs += er32(SYMERRS);
3609 adapter->stats.mpc += er32(MPC);
3610 adapter->stats.scc += er32(SCC);
3611 adapter->stats.ecol += er32(ECOL);
3612 adapter->stats.mcc += er32(MCC);
3613 adapter->stats.latecol += er32(LATECOL);
3614 adapter->stats.dc += er32(DC);
3615 adapter->stats.sec += er32(SEC);
3616 adapter->stats.rlec += er32(RLEC);
3617 adapter->stats.xonrxc += er32(XONRXC);
3618 adapter->stats.xontxc += er32(XONTXC);
3619 adapter->stats.xoffrxc += er32(XOFFRXC);
3620 adapter->stats.xofftxc += er32(XOFFTXC);
3621 adapter->stats.fcruc += er32(FCRUC);
3622 adapter->stats.gptc += er32(GPTC);
3623 adapter->stats.gotcl += er32(GOTCL);
3624 adapter->stats.gotch += er32(GOTCH);
3625 adapter->stats.rnbc += er32(RNBC);
3626 adapter->stats.ruc += er32(RUC);
3627 adapter->stats.rfc += er32(RFC);
3628 adapter->stats.rjc += er32(RJC);
3629 adapter->stats.torl += er32(TORL);
3630 adapter->stats.torh += er32(TORH);
3631 adapter->stats.totl += er32(TOTL);
3632 adapter->stats.toth += er32(TOTH);
3633 adapter->stats.tpr += er32(TPR);
Auke Kokcd94dd02006-06-27 09:08:22 -07003634
Joe Perches1dc32912008-07-11 15:17:08 -07003635 if (hw->mac_type != e1000_ich8lan) {
3636 adapter->stats.ptc64 += er32(PTC64);
3637 adapter->stats.ptc127 += er32(PTC127);
3638 adapter->stats.ptc255 += er32(PTC255);
3639 adapter->stats.ptc511 += er32(PTC511);
3640 adapter->stats.ptc1023 += er32(PTC1023);
3641 adapter->stats.ptc1522 += er32(PTC1522);
Auke Kokcd94dd02006-06-27 09:08:22 -07003642 }
3643
Joe Perches1dc32912008-07-11 15:17:08 -07003644 adapter->stats.mptc += er32(MPTC);
3645 adapter->stats.bptc += er32(BPTC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
3647 /* used for adaptive IFS */
3648
Joe Perches1dc32912008-07-11 15:17:08 -07003649 hw->tx_packet_delta = er32(TPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 adapter->stats.tpt += hw->tx_packet_delta;
Joe Perches1dc32912008-07-11 15:17:08 -07003651 hw->collision_delta = er32(COLC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 adapter->stats.colc += hw->collision_delta;
3653
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003654 if (hw->mac_type >= e1000_82543) {
Joe Perches1dc32912008-07-11 15:17:08 -07003655 adapter->stats.algnerrc += er32(ALGNERRC);
3656 adapter->stats.rxerrc += er32(RXERRC);
3657 adapter->stats.tncrs += er32(TNCRS);
3658 adapter->stats.cexterr += er32(CEXTERR);
3659 adapter->stats.tsctc += er32(TSCTC);
3660 adapter->stats.tsctfc += er32(TSCTFC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003662 if (hw->mac_type > e1000_82547_rev_2) {
Joe Perches1dc32912008-07-11 15:17:08 -07003663 adapter->stats.iac += er32(IAC);
3664 adapter->stats.icrxoc += er32(ICRXOC);
Auke Kokcd94dd02006-06-27 09:08:22 -07003665
Joe Perches1dc32912008-07-11 15:17:08 -07003666 if (hw->mac_type != e1000_ich8lan) {
3667 adapter->stats.icrxptc += er32(ICRXPTC);
3668 adapter->stats.icrxatc += er32(ICRXATC);
3669 adapter->stats.ictxptc += er32(ICTXPTC);
3670 adapter->stats.ictxatc += er32(ICTXATC);
3671 adapter->stats.ictxqec += er32(ICTXQEC);
3672 adapter->stats.ictxqmtc += er32(ICTXQMTC);
3673 adapter->stats.icrxdmtc += er32(ICRXDMTC);
Auke Kokcd94dd02006-06-27 09:08:22 -07003674 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676
3677 /* Fill out the OS statistics structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 adapter->net_stats.multicast = adapter->stats.mprc;
3679 adapter->net_stats.collisions = adapter->stats.colc;
3680
3681 /* Rx Errors */
3682
Jeff Kirsher87041632006-03-02 18:21:24 -08003683 /* RLEC on some newer hardware can be incorrect so build
3684 * our own version based on RUC and ROC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 adapter->net_stats.rx_errors = adapter->stats.rxerrc +
3686 adapter->stats.crcerrs + adapter->stats.algnerrc +
Jeff Kirsher87041632006-03-02 18:21:24 -08003687 adapter->stats.ruc + adapter->stats.roc +
3688 adapter->stats.cexterr;
Mitch Williams49559852006-09-27 12:53:37 -07003689 adapter->stats.rlerrc = adapter->stats.ruc + adapter->stats.roc;
3690 adapter->net_stats.rx_length_errors = adapter->stats.rlerrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 adapter->net_stats.rx_crc_errors = adapter->stats.crcerrs;
3692 adapter->net_stats.rx_frame_errors = adapter->stats.algnerrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 adapter->net_stats.rx_missed_errors = adapter->stats.mpc;
3694
3695 /* Tx Errors */
Mitch Williams49559852006-09-27 12:53:37 -07003696 adapter->stats.txerrc = adapter->stats.ecol + adapter->stats.latecol;
3697 adapter->net_stats.tx_errors = adapter->stats.txerrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 adapter->net_stats.tx_aborted_errors = adapter->stats.ecol;
3699 adapter->net_stats.tx_window_errors = adapter->stats.latecol;
3700 adapter->net_stats.tx_carrier_errors = adapter->stats.tncrs;
Joe Perches1dc32912008-07-11 15:17:08 -07003701 if (hw->bad_tx_carr_stats_fd &&
Jeff Garzik167fb282006-12-15 10:41:15 -05003702 adapter->link_duplex == FULL_DUPLEX) {
3703 adapter->net_stats.tx_carrier_errors = 0;
3704 adapter->stats.tncrs = 0;
3705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
3707 /* Tx Dropped needs to be maintained elsewhere */
3708
3709 /* Phy Stats */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003710 if (hw->media_type == e1000_media_type_copper) {
3711 if ((adapter->link_speed == SPEED_1000) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 (!e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_tmp))) {
3713 phy_tmp &= PHY_IDLE_ERROR_COUNT_MASK;
3714 adapter->phy_stats.idle_errors += phy_tmp;
3715 }
3716
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003717 if ((hw->mac_type <= e1000_82546) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 (hw->phy_type == e1000_phy_m88) &&
3719 !e1000_read_phy_reg(hw, M88E1000_RX_ERR_CNTR, &phy_tmp))
3720 adapter->phy_stats.receive_errors += phy_tmp;
3721 }
3722
Jeff Garzik15e376b2006-12-15 11:16:33 -05003723 /* Management Stats */
Joe Perches1dc32912008-07-11 15:17:08 -07003724 if (hw->has_smbus) {
3725 adapter->stats.mgptc += er32(MGTPTC);
3726 adapter->stats.mgprc += er32(MGTPRC);
3727 adapter->stats.mgpdc += er32(MGTPDC);
Jeff Garzik15e376b2006-12-15 11:16:33 -05003728 }
3729
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 spin_unlock_irqrestore(&adapter->stats_lock, flags);
3731}
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003732
3733/**
3734 * e1000_intr_msi - Interrupt Handler
3735 * @irq: interrupt number
3736 * @data: pointer to a network interface device structure
3737 **/
3738
Joe Perches64798842008-07-11 15:17:02 -07003739static irqreturn_t e1000_intr_msi(int irq, void *data)
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003740{
3741 struct net_device *netdev = data;
3742 struct e1000_adapter *adapter = netdev_priv(netdev);
3743 struct e1000_hw *hw = &adapter->hw;
Joe Perches1dc32912008-07-11 15:17:08 -07003744 u32 icr = er32(ICR);
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003745
Jesse Brandeburg9150b762008-03-21 11:06:58 -07003746 /* in NAPI mode read ICR disables interrupts using IAM */
3747
Jesse Brandeburgb5fc8f02007-01-18 09:25:21 -08003748 if (icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC)) {
3749 hw->get_link_status = 1;
3750 /* 80003ES2LAN workaround-- For packet buffer work-around on
3751 * link down event; disable receives here in the ISR and reset
3752 * adapter in watchdog */
3753 if (netif_carrier_ok(netdev) &&
Joe Perches1dc32912008-07-11 15:17:08 -07003754 (hw->mac_type == e1000_80003es2lan)) {
Jesse Brandeburgb5fc8f02007-01-18 09:25:21 -08003755 /* disable receives */
Joe Perches1dc32912008-07-11 15:17:08 -07003756 u32 rctl = er32(RCTL);
3757 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003758 }
Jesse Brandeburgb5fc8f02007-01-18 09:25:21 -08003759 /* guard against interrupt when we're going down */
3760 if (!test_bit(__E1000_DOWN, &adapter->flags))
3761 mod_timer(&adapter->watchdog_timer, jiffies + 1);
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003762 }
3763
Ben Hutchings288379f2009-01-19 16:43:59 -08003764 if (likely(napi_schedule_prep(&adapter->napi))) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003765 adapter->total_tx_bytes = 0;
3766 adapter->total_tx_packets = 0;
3767 adapter->total_rx_bytes = 0;
3768 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08003769 __napi_schedule(&adapter->napi);
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003770 } else
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003771 e1000_irq_enable(adapter);
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003772
3773 return IRQ_HANDLED;
3774}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775
3776/**
3777 * e1000_intr - Interrupt Handler
3778 * @irq: interrupt number
3779 * @data: pointer to a network interface device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 **/
3781
Joe Perches64798842008-07-11 15:17:02 -07003782static irqreturn_t e1000_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783{
3784 struct net_device *netdev = data;
Malli Chilakala60490fe2005-06-17 17:41:45 -07003785 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 struct e1000_hw *hw = &adapter->hw;
Joe Perches1dc32912008-07-11 15:17:08 -07003787 u32 rctl, icr = er32(ICR);
Francois Romieuc3570ac2008-07-11 15:17:38 -07003788
Jesse Brandeburge151a602009-05-04 11:19:42 +00003789 if (unlikely((!icr) || test_bit(__E1000_DOWN, &adapter->flags)))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003790 return IRQ_NONE; /* Not our interrupt */
3791
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003792 /* IMS will not auto-mask if INT_ASSERTED is not set, and if it is
3793 * not set, then the adapter didn't send an interrupt */
3794 if (unlikely(hw->mac_type >= e1000_82571 &&
3795 !(icr & E1000_ICR_INT_ASSERTED)))
3796 return IRQ_NONE;
3797
Jesse Brandeburg9150b762008-03-21 11:06:58 -07003798 /* Interrupt Auto-Mask...upon reading ICR, interrupts are masked. No
3799 * need for the IMC write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003801 if (unlikely(icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 hw->get_link_status = 1;
Jeff Kirsher87041632006-03-02 18:21:24 -08003803 /* 80003ES2LAN workaround--
3804 * For packet buffer work-around on link down event;
3805 * disable receives here in the ISR and
3806 * reset adapter in watchdog
3807 */
3808 if (netif_carrier_ok(netdev) &&
Joe Perches1dc32912008-07-11 15:17:08 -07003809 (hw->mac_type == e1000_80003es2lan)) {
Jeff Kirsher87041632006-03-02 18:21:24 -08003810 /* disable receives */
Joe Perches1dc32912008-07-11 15:17:08 -07003811 rctl = er32(RCTL);
3812 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Jeff Kirsher87041632006-03-02 18:21:24 -08003813 }
Auke Kok1314bbf2006-09-27 12:54:02 -07003814 /* guard against interrupt when we're going down */
3815 if (!test_bit(__E1000_DOWN, &adapter->flags))
3816 mod_timer(&adapter->watchdog_timer, jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 }
3818
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08003819 if (unlikely(hw->mac_type < e1000_82571)) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003820 /* disable interrupts, without the synchronize_irq bit */
Joe Perches1dc32912008-07-11 15:17:08 -07003821 ew32(IMC, ~0);
3822 E1000_WRITE_FLUSH();
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08003823 }
Ben Hutchings288379f2009-01-19 16:43:59 -08003824 if (likely(napi_schedule_prep(&adapter->napi))) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003825 adapter->total_tx_bytes = 0;
3826 adapter->total_tx_packets = 0;
3827 adapter->total_rx_bytes = 0;
3828 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08003829 __napi_schedule(&adapter->napi);
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003830 } else {
Auke Kok90fb5132006-11-01 08:47:30 -08003831 /* this really should not happen! if it does it is basically a
3832 * bug, but not a hard error, so enable ints and continue */
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003833 if (!test_bit(__E1000_DOWN, &adapter->flags))
3834 e1000_irq_enable(adapter);
3835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 return IRQ_HANDLED;
3838}
3839
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840/**
3841 * e1000_clean - NAPI Rx polling callback
3842 * @adapter: board private structure
3843 **/
Joe Perches64798842008-07-11 15:17:02 -07003844static int e1000_clean(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003846 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
3847 struct net_device *poll_dev = adapter->netdev;
David S. Millerd2c7ddd2008-01-15 22:43:24 -08003848 int tx_cleaned = 0, work_done = 0;
Malli Chilakala26483452005-04-28 19:44:46 -07003849
Wang Chen4cf16532008-11-12 23:38:14 -08003850 adapter = netdev_priv(poll_dev);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003851
Alexander Duyck80179432009-01-21 14:42:47 -08003852 tx_cleaned = e1000_clean_tx_irq(adapter, &adapter->tx_ring[0]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003853
Auke Kokd3d9e482006-07-14 16:14:23 -07003854 adapter->clean_rx(adapter, &adapter->rx_ring[0],
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003855 &work_done, budget);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003856
Alexander Duyckccfb3422009-03-25 21:59:04 +00003857 if (!tx_cleaned)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08003858 work_done = budget;
3859
David S. Miller53e52c72008-01-07 21:06:12 -08003860 /* If budget not fully consumed, exit the polling mode */
3861 if (work_done < budget) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003862 if (likely(adapter->itr_setting & 3))
3863 e1000_set_itr(adapter);
Ben Hutchings288379f2009-01-19 16:43:59 -08003864 napi_complete(napi);
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003865 if (!test_bit(__E1000_DOWN, &adapter->flags))
3866 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 }
3868
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003869 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870}
3871
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872/**
3873 * e1000_clean_tx_irq - Reclaim resources after transmit completes
3874 * @adapter: board private structure
3875 **/
Joe Perches64798842008-07-11 15:17:02 -07003876static bool e1000_clean_tx_irq(struct e1000_adapter *adapter,
3877 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878{
Joe Perches1dc32912008-07-11 15:17:08 -07003879 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 struct net_device *netdev = adapter->netdev;
3881 struct e1000_tx_desc *tx_desc, *eop_desc;
3882 struct e1000_buffer *buffer_info;
3883 unsigned int i, eop;
Jeff Kirsher2a1af5d2006-03-02 18:20:43 -08003884 unsigned int count = 0;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003885 unsigned int total_tx_bytes=0, total_tx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
3887 i = tx_ring->next_to_clean;
3888 eop = tx_ring->buffer_info[i].next_to_watch;
3889 eop_desc = E1000_TX_DESC(*tx_ring, eop);
3890
Alexander Duyckccfb3422009-03-25 21:59:04 +00003891 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
3892 (count < tx_ring->count)) {
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003893 bool cleaned = false;
3894 for ( ; !cleaned; count++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 tx_desc = E1000_TX_DESC(*tx_ring, i);
3896 buffer_info = &tx_ring->buffer_info[i];
3897 cleaned = (i == eop);
3898
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003899 if (cleaned) {
Jesse Brandeburg2b653262006-12-15 10:30:44 +01003900 struct sk_buff *skb = buffer_info->skb;
Jesse Brandeburg7753b172007-01-18 09:25:31 -08003901 unsigned int segs, bytecount;
3902 segs = skb_shinfo(skb)->gso_segs ?: 1;
3903 /* multiply data chunks by size of headers */
3904 bytecount = ((segs - 1) * skb_headlen(skb)) +
3905 skb->len;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01003906 total_tx_packets += segs;
Jesse Brandeburg7753b172007-01-18 09:25:31 -08003907 total_tx_bytes += bytecount;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003908 }
Jeff Kirsherfd803242005-12-13 00:06:22 -05003909 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08003910 tx_desc->upper.data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003912 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003914
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 eop = tx_ring->buffer_info[i].next_to_watch;
3916 eop_desc = E1000_TX_DESC(*tx_ring, eop);
3917 }
3918
3919 tx_ring->next_to_clean = i;
3920
Auke Kok77b2aad2006-04-14 19:05:25 -07003921#define TX_WAKE_THRESHOLD 32
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003922 if (unlikely(count && netif_carrier_ok(netdev) &&
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003923 E1000_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD)) {
3924 /* Make sure that anybody stopping the queue after this
3925 * sees the new next_to_clean.
3926 */
3927 smp_mb();
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003928 if (netif_queue_stopped(netdev)) {
Auke Kok77b2aad2006-04-14 19:05:25 -07003929 netif_wake_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003930 ++adapter->restart_queue;
3931 }
Auke Kok77b2aad2006-04-14 19:05:25 -07003932 }
Malli Chilakala26483452005-04-28 19:44:46 -07003933
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003934 if (adapter->detect_tx_hung) {
Malli Chilakala26483452005-04-28 19:44:46 -07003935 /* Detect a transmit hang in hardware, this serializes the
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 * check with the clearing of time_stamp and movement of i */
Joe Perchesc3033b02008-03-21 11:06:25 -07003937 adapter->detect_tx_hung = false;
Alexander Duyckccfb3422009-03-25 21:59:04 +00003938 if (tx_ring->buffer_info[i].time_stamp &&
3939 time_after(jiffies, tx_ring->buffer_info[i].time_stamp +
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08003940 (adapter->tx_timeout_factor * HZ))
Joe Perches1dc32912008-07-11 15:17:08 -07003941 && !(er32(STATUS) & E1000_STATUS_TXOFF)) {
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003942
3943 /* detected Tx unit hang */
Malli Chilakalac6963ef2005-06-17 17:42:07 -07003944 DPRINTK(DRV, ERR, "Detected Tx Unit Hang\n"
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08003945 " Tx Queue <%lu>\n"
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003946 " TDH <%x>\n"
3947 " TDT <%x>\n"
3948 " next_to_use <%x>\n"
3949 " next_to_clean <%x>\n"
3950 "buffer_info[next_to_clean]\n"
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003951 " time_stamp <%lx>\n"
3952 " next_to_watch <%x>\n"
3953 " jiffies <%lx>\n"
3954 " next_to_watch.status <%x>\n",
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08003955 (unsigned long)((tx_ring - adapter->tx_ring) /
3956 sizeof(struct e1000_tx_ring)),
Joe Perches1dc32912008-07-11 15:17:08 -07003957 readl(hw->hw_addr + tx_ring->tdh),
3958 readl(hw->hw_addr + tx_ring->tdt),
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003959 tx_ring->next_to_use,
Jeff Kirsher392137f2006-01-12 16:50:57 -08003960 tx_ring->next_to_clean,
Alexander Duyckccfb3422009-03-25 21:59:04 +00003961 tx_ring->buffer_info[i].time_stamp,
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003962 eop,
3963 jiffies,
3964 eop_desc->upper.fields.status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 netif_stop_queue(netdev);
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 }
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003968 adapter->total_tx_bytes += total_tx_bytes;
3969 adapter->total_tx_packets += total_tx_packets;
Auke Kokef90e4e2007-11-13 20:49:15 -08003970 adapter->net_stats.tx_bytes += total_tx_bytes;
3971 adapter->net_stats.tx_packets += total_tx_packets;
Alexander Duyckccfb3422009-03-25 21:59:04 +00003972 return (count < tx_ring->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973}
3974
3975/**
3976 * e1000_rx_checksum - Receive Checksum Offload for 82543
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003977 * @adapter: board private structure
3978 * @status_err: receive descriptor status and error fields
3979 * @csum: receive descriptor csum field
3980 * @sk_buff: socket buffer with received data
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 **/
3982
Joe Perches64798842008-07-11 15:17:02 -07003983static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
3984 u32 csum, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985{
Joe Perches1dc32912008-07-11 15:17:08 -07003986 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07003987 u16 status = (u16)status_err;
3988 u8 errors = (u8)(status_err >> 24);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003989 skb->ip_summed = CHECKSUM_NONE;
3990
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 /* 82543 or newer only */
Joe Perches1dc32912008-07-11 15:17:08 -07003992 if (unlikely(hw->mac_type < e1000_82543)) return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 /* Ignore Checksum bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003994 if (unlikely(status & E1000_RXD_STAT_IXSM)) return;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003995 /* TCP/UDP checksum error bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003996 if (unlikely(errors & E1000_RXD_ERR_TCPE)) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003997 /* let the stack verify checksum errors */
3998 adapter->hw_csum_err++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 return;
4000 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004001 /* TCP/UDP Checksum has not been calculated */
Joe Perches1dc32912008-07-11 15:17:08 -07004002 if (hw->mac_type <= e1000_82547_rev_2) {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004003 if (!(status & E1000_RXD_STAT_TCPCS))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004004 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 } else {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004006 if (!(status & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004007 return;
4008 }
4009 /* It must be a TCP or UDP packet with a valid checksum */
4010 if (likely(status & E1000_RXD_STAT_TCPCS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 /* TCP checksum is good */
4012 skb->ip_summed = CHECKSUM_UNNECESSARY;
Joe Perches1dc32912008-07-11 15:17:08 -07004013 } else if (hw->mac_type > e1000_82547_rev_2) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004014 /* IP fragment with UDP payload */
4015 /* Hardware complements the payload checksum, so we undo it
4016 * and then put the value in host order for further stack use.
4017 */
Al Viro3e188262007-12-11 19:49:39 +00004018 __sum16 sum = (__force __sum16)htons(csum);
4019 skb->csum = csum_unfold(~sum);
Patrick McHardy84fa7932006-08-29 16:44:56 -07004020 skb->ip_summed = CHECKSUM_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004022 adapter->hw_csum_good++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023}
4024
4025/**
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004026 * e1000_consume_page - helper function
4027 **/
4028static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
4029 u16 length)
4030{
4031 bi->page = NULL;
4032 skb->len += length;
4033 skb->data_len += length;
4034 skb->truesize += length;
4035}
4036
4037/**
4038 * e1000_receive_skb - helper function to handle rx indications
4039 * @adapter: board private structure
4040 * @status: descriptor status field as written by hardware
4041 * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
4042 * @skb: pointer to sk_buff to be indicated to stack
4043 */
4044static void e1000_receive_skb(struct e1000_adapter *adapter, u8 status,
4045 __le16 vlan, struct sk_buff *skb)
4046{
4047 if (unlikely(adapter->vlgrp && (status & E1000_RXD_STAT_VP))) {
4048 vlan_hwaccel_receive_skb(skb, adapter->vlgrp,
4049 le16_to_cpu(vlan) &
4050 E1000_RXD_SPC_VLAN_MASK);
4051 } else {
4052 netif_receive_skb(skb);
4053 }
4054}
4055
4056/**
4057 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
4058 * @adapter: board private structure
4059 * @rx_ring: ring to clean
4060 * @work_done: amount of napi work completed this call
4061 * @work_to_do: max amount of work allowed for this call to do
4062 *
4063 * the return value indicates whether actual cleaning was done, there
4064 * is no guarantee that everything was cleaned
4065 */
4066static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
4067 struct e1000_rx_ring *rx_ring,
4068 int *work_done, int work_to_do)
4069{
4070 struct e1000_hw *hw = &adapter->hw;
4071 struct net_device *netdev = adapter->netdev;
4072 struct pci_dev *pdev = adapter->pdev;
4073 struct e1000_rx_desc *rx_desc, *next_rxd;
4074 struct e1000_buffer *buffer_info, *next_buffer;
4075 unsigned long irq_flags;
4076 u32 length;
4077 unsigned int i;
4078 int cleaned_count = 0;
4079 bool cleaned = false;
4080 unsigned int total_rx_bytes=0, total_rx_packets=0;
4081
4082 i = rx_ring->next_to_clean;
4083 rx_desc = E1000_RX_DESC(*rx_ring, i);
4084 buffer_info = &rx_ring->buffer_info[i];
4085
4086 while (rx_desc->status & E1000_RXD_STAT_DD) {
4087 struct sk_buff *skb;
4088 u8 status;
4089
4090 if (*work_done >= work_to_do)
4091 break;
4092 (*work_done)++;
4093
4094 status = rx_desc->status;
4095 skb = buffer_info->skb;
4096 buffer_info->skb = NULL;
4097
4098 if (++i == rx_ring->count) i = 0;
4099 next_rxd = E1000_RX_DESC(*rx_ring, i);
4100 prefetch(next_rxd);
4101
4102 next_buffer = &rx_ring->buffer_info[i];
4103
4104 cleaned = true;
4105 cleaned_count++;
4106 pci_unmap_page(pdev, buffer_info->dma, buffer_info->length,
4107 PCI_DMA_FROMDEVICE);
4108 buffer_info->dma = 0;
4109
4110 length = le16_to_cpu(rx_desc->length);
4111
4112 /* errors is only valid for DD + EOP descriptors */
4113 if (unlikely((status & E1000_RXD_STAT_EOP) &&
4114 (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) {
4115 u8 last_byte = *(skb->data + length - 1);
4116 if (TBI_ACCEPT(hw, status, rx_desc->errors, length,
4117 last_byte)) {
4118 spin_lock_irqsave(&adapter->stats_lock,
4119 irq_flags);
4120 e1000_tbi_adjust_stats(hw, &adapter->stats,
4121 length, skb->data);
4122 spin_unlock_irqrestore(&adapter->stats_lock,
4123 irq_flags);
4124 length--;
4125 } else {
4126 /* recycle both page and skb */
4127 buffer_info->skb = skb;
4128 /* an error means any chain goes out the window
4129 * too */
4130 if (rx_ring->rx_skb_top)
4131 dev_kfree_skb(rx_ring->rx_skb_top);
4132 rx_ring->rx_skb_top = NULL;
4133 goto next_desc;
4134 }
4135 }
4136
4137#define rxtop rx_ring->rx_skb_top
4138 if (!(status & E1000_RXD_STAT_EOP)) {
4139 /* this descriptor is only the beginning (or middle) */
4140 if (!rxtop) {
4141 /* this is the beginning of a chain */
4142 rxtop = skb;
4143 skb_fill_page_desc(rxtop, 0, buffer_info->page,
4144 0, length);
4145 } else {
4146 /* this is the middle of a chain */
4147 skb_fill_page_desc(rxtop,
4148 skb_shinfo(rxtop)->nr_frags,
4149 buffer_info->page, 0, length);
4150 /* re-use the skb, only consumed the page */
4151 buffer_info->skb = skb;
4152 }
4153 e1000_consume_page(buffer_info, rxtop, length);
4154 goto next_desc;
4155 } else {
4156 if (rxtop) {
4157 /* end of the chain */
4158 skb_fill_page_desc(rxtop,
4159 skb_shinfo(rxtop)->nr_frags,
4160 buffer_info->page, 0, length);
4161 /* re-use the current skb, we only consumed the
4162 * page */
4163 buffer_info->skb = skb;
4164 skb = rxtop;
4165 rxtop = NULL;
4166 e1000_consume_page(buffer_info, skb, length);
4167 } else {
4168 /* no chain, got EOP, this buf is the packet
4169 * copybreak to save the put_page/alloc_page */
4170 if (length <= copybreak &&
4171 skb_tailroom(skb) >= length) {
4172 u8 *vaddr;
4173 vaddr = kmap_atomic(buffer_info->page,
4174 KM_SKB_DATA_SOFTIRQ);
4175 memcpy(skb_tail_pointer(skb), vaddr, length);
4176 kunmap_atomic(vaddr,
4177 KM_SKB_DATA_SOFTIRQ);
4178 /* re-use the page, so don't erase
4179 * buffer_info->page */
4180 skb_put(skb, length);
4181 } else {
4182 skb_fill_page_desc(skb, 0,
4183 buffer_info->page, 0,
4184 length);
4185 e1000_consume_page(buffer_info, skb,
4186 length);
4187 }
4188 }
4189 }
4190
4191 /* Receive Checksum Offload XXX recompute due to CRC strip? */
4192 e1000_rx_checksum(adapter,
4193 (u32)(status) |
4194 ((u32)(rx_desc->errors) << 24),
4195 le16_to_cpu(rx_desc->csum), skb);
4196
4197 pskb_trim(skb, skb->len - 4);
4198
4199 /* probably a little skewed due to removing CRC */
4200 total_rx_bytes += skb->len;
4201 total_rx_packets++;
4202
4203 /* eth type trans needs skb->data to point to something */
4204 if (!pskb_may_pull(skb, ETH_HLEN)) {
4205 DPRINTK(DRV, ERR, "pskb_may_pull failed.\n");
4206 dev_kfree_skb(skb);
4207 goto next_desc;
4208 }
4209
4210 skb->protocol = eth_type_trans(skb, netdev);
4211
4212 e1000_receive_skb(adapter, status, rx_desc->special, skb);
4213
4214next_desc:
4215 rx_desc->status = 0;
4216
4217 /* return some buffers to hardware, one at a time is too slow */
4218 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
4219 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
4220 cleaned_count = 0;
4221 }
4222
4223 /* use prefetched values */
4224 rx_desc = next_rxd;
4225 buffer_info = next_buffer;
4226 }
4227 rx_ring->next_to_clean = i;
4228
4229 cleaned_count = E1000_DESC_UNUSED(rx_ring);
4230 if (cleaned_count)
4231 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
4232
4233 adapter->total_rx_packets += total_rx_packets;
4234 adapter->total_rx_bytes += total_rx_bytes;
4235 adapter->net_stats.rx_bytes += total_rx_bytes;
4236 adapter->net_stats.rx_packets += total_rx_packets;
4237 return cleaned;
4238}
4239
4240/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004241 * e1000_clean_rx_irq - Send received data up the network stack; legacy
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 * @adapter: board private structure
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004243 * @rx_ring: ring to clean
4244 * @work_done: amount of napi work completed this call
4245 * @work_to_do: max amount of work allowed for this call to do
4246 */
Joe Perches64798842008-07-11 15:17:02 -07004247static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
4248 struct e1000_rx_ring *rx_ring,
4249 int *work_done, int work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250{
Joe Perches1dc32912008-07-11 15:17:08 -07004251 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 struct net_device *netdev = adapter->netdev;
4253 struct pci_dev *pdev = adapter->pdev;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004254 struct e1000_rx_desc *rx_desc, *next_rxd;
4255 struct e1000_buffer *buffer_info, *next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 unsigned long flags;
Joe Perches406874a2008-04-03 10:06:32 -07004257 u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 unsigned int i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004259 int cleaned_count = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -07004260 bool cleaned = false;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004261 unsigned int total_rx_bytes=0, total_rx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
4263 i = rx_ring->next_to_clean;
4264 rx_desc = E1000_RX_DESC(*rx_ring, i);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004265 buffer_info = &rx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004267 while (rx_desc->status & E1000_RXD_STAT_DD) {
Auke Kok24f476e2006-06-08 09:28:47 -07004268 struct sk_buff *skb;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004269 u8 status;
Auke Kok90fb5132006-11-01 08:47:30 -08004270
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004271 if (*work_done >= work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 break;
4273 (*work_done)++;
Francois Romieuc3570ac2008-07-11 15:17:38 -07004274
Jeff Kirshera292ca62006-01-12 16:51:30 -08004275 status = rx_desc->status;
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004276 skb = buffer_info->skb;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004277 buffer_info->skb = NULL;
4278
Jeff Kirsher30320be2006-03-02 18:21:57 -08004279 prefetch(skb->data - NET_IP_ALIGN);
4280
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004281 if (++i == rx_ring->count) i = 0;
4282 next_rxd = E1000_RX_DESC(*rx_ring, i);
Jeff Kirsher30320be2006-03-02 18:21:57 -08004283 prefetch(next_rxd);
4284
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004285 next_buffer = &rx_ring->buffer_info[i];
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004286
Joe Perchesc3033b02008-03-21 11:06:25 -07004287 cleaned = true;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004288 cleaned_count++;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004289 pci_unmap_single(pdev, buffer_info->dma, buffer_info->length,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 PCI_DMA_FROMDEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00004291 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 length = le16_to_cpu(rx_desc->length);
Neil Hormanea30e112009-06-02 01:29:58 -07004294 /* !EOP means multiple descriptors were used to store a single
4295 * packet, also make sure the frame isn't just CRC only */
4296 if (unlikely(!(status & E1000_RXD_STAT_EOP) || (length <= 4))) {
Jeff Kirshera1415ee2006-02-28 20:24:07 -08004297 /* All receives must fit into a single buffer */
4298 E1000_DBG("%s: Receive packet consumed multiple"
4299 " buffers\n", netdev->name);
Auke Kok864c4e42006-06-27 09:06:53 -07004300 /* recycle */
Auke Kok8fc897b2006-08-28 14:56:16 -07004301 buffer_info->skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 goto next_desc;
4303 }
4304
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004305 if (unlikely(rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK)) {
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004306 u8 last_byte = *(skb->data + length - 1);
Joe Perches1dc32912008-07-11 15:17:08 -07004307 if (TBI_ACCEPT(hw, status, rx_desc->errors, length,
4308 last_byte)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004310 e1000_tbi_adjust_stats(hw, &adapter->stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 length, skb->data);
4312 spin_unlock_irqrestore(&adapter->stats_lock,
4313 flags);
4314 length--;
4315 } else {
Auke Kok9e2feac2006-04-14 19:05:18 -07004316 /* recycle */
4317 buffer_info->skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 goto next_desc;
4319 }
Auke Kok1cb58212006-04-18 12:31:04 -07004320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321
Jesse Brandeburgd2a1e212006-10-24 14:46:06 -07004322 /* adjust length to remove Ethernet CRC, this must be
4323 * done after the TBI_ACCEPT workaround above */
4324 length -= 4;
4325
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004326 /* probably a little skewed due to removing CRC */
4327 total_rx_bytes += length;
4328 total_rx_packets++;
4329
Jeff Kirshera292ca62006-01-12 16:51:30 -08004330 /* code added for copybreak, this should improve
4331 * performance for small packets with large amounts
4332 * of reassembly being done in the stack */
Jesse Brandeburg1f753862006-12-15 10:40:39 +01004333 if (length < copybreak) {
Jeff Kirshera292ca62006-01-12 16:51:30 -08004334 struct sk_buff *new_skb =
David S. Miller87f50322006-07-31 22:39:40 -07004335 netdev_alloc_skb(netdev, length + NET_IP_ALIGN);
Jeff Kirshera292ca62006-01-12 16:51:30 -08004336 if (new_skb) {
4337 skb_reserve(new_skb, NET_IP_ALIGN);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03004338 skb_copy_to_linear_data_offset(new_skb,
4339 -NET_IP_ALIGN,
4340 (skb->data -
4341 NET_IP_ALIGN),
4342 (length +
4343 NET_IP_ALIGN));
Jeff Kirshera292ca62006-01-12 16:51:30 -08004344 /* save the skb in buffer_info as good */
4345 buffer_info->skb = skb;
4346 skb = new_skb;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004347 }
Auke Kok996695d2006-11-01 08:47:50 -08004348 /* else just continue with the old one */
4349 }
Jeff Kirshera292ca62006-01-12 16:51:30 -08004350 /* end copybreak code */
Auke Kok996695d2006-11-01 08:47:50 -08004351 skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352
4353 /* Receive Checksum Offload */
Jeff Kirshera292ca62006-01-12 16:51:30 -08004354 e1000_rx_checksum(adapter,
Joe Perches406874a2008-04-03 10:06:32 -07004355 (u32)(status) |
4356 ((u32)(rx_desc->errors) << 24),
David S. Millerc3d7a3a2006-03-15 14:26:28 -08004357 le16_to_cpu(rx_desc->csum), skb);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004358
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 skb->protocol = eth_type_trans(skb, netdev);
Francois Romieuc3570ac2008-07-11 15:17:38 -07004360
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004361 e1000_receive_skb(adapter, status, rx_desc->special, skb);
Francois Romieuc3570ac2008-07-11 15:17:38 -07004362
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363next_desc:
4364 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004366 /* return some buffers to hardware, one at a time is too slow */
4367 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
4368 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
4369 cleaned_count = 0;
4370 }
4371
Jeff Kirsher30320be2006-03-02 18:21:57 -08004372 /* use prefetched values */
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004373 rx_desc = next_rxd;
4374 buffer_info = next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 rx_ring->next_to_clean = i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004377
4378 cleaned_count = E1000_DESC_UNUSED(rx_ring);
4379 if (cleaned_count)
4380 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004382 adapter->total_rx_packets += total_rx_packets;
4383 adapter->total_rx_bytes += total_rx_bytes;
Auke Kokef90e4e2007-11-13 20:49:15 -08004384 adapter->net_stats.rx_bytes += total_rx_bytes;
4385 adapter->net_stats.rx_packets += total_rx_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 return cleaned;
4387}
4388
4389/**
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004390 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
4391 * @adapter: address of board private structure
4392 * @rx_ring: pointer to receive ring structure
4393 * @cleaned_count: number of buffers to allocate this pass
4394 **/
4395
4396static void
4397e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
4398 struct e1000_rx_ring *rx_ring, int cleaned_count)
4399{
4400 struct net_device *netdev = adapter->netdev;
4401 struct pci_dev *pdev = adapter->pdev;
4402 struct e1000_rx_desc *rx_desc;
4403 struct e1000_buffer *buffer_info;
4404 struct sk_buff *skb;
4405 unsigned int i;
4406 unsigned int bufsz = 256 -
4407 16 /*for skb_reserve */ -
4408 NET_IP_ALIGN;
4409
4410 i = rx_ring->next_to_use;
4411 buffer_info = &rx_ring->buffer_info[i];
4412
4413 while (cleaned_count--) {
4414 skb = buffer_info->skb;
4415 if (skb) {
4416 skb_trim(skb, 0);
4417 goto check_page;
4418 }
4419
4420 skb = netdev_alloc_skb(netdev, bufsz);
4421 if (unlikely(!skb)) {
4422 /* Better luck next round */
4423 adapter->alloc_rx_buff_failed++;
4424 break;
4425 }
4426
4427 /* Fix for errata 23, can't cross 64kB boundary */
4428 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4429 struct sk_buff *oldskb = skb;
4430 DPRINTK(PROBE, ERR, "skb align check failed: %u bytes "
4431 "at %p\n", bufsz, skb->data);
4432 /* Try again, without freeing the previous */
4433 skb = netdev_alloc_skb(netdev, bufsz);
4434 /* Failed allocation, critical failure */
4435 if (!skb) {
4436 dev_kfree_skb(oldskb);
4437 adapter->alloc_rx_buff_failed++;
4438 break;
4439 }
4440
4441 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4442 /* give up */
4443 dev_kfree_skb(skb);
4444 dev_kfree_skb(oldskb);
4445 break; /* while (cleaned_count--) */
4446 }
4447
4448 /* Use new allocation */
4449 dev_kfree_skb(oldskb);
4450 }
4451 /* Make buffer alignment 2 beyond a 16 byte boundary
4452 * this will result in a 16 byte aligned IP header after
4453 * the 14 byte MAC header is removed
4454 */
4455 skb_reserve(skb, NET_IP_ALIGN);
4456
4457 buffer_info->skb = skb;
4458 buffer_info->length = adapter->rx_buffer_len;
4459check_page:
4460 /* allocate a new page if necessary */
4461 if (!buffer_info->page) {
4462 buffer_info->page = alloc_page(GFP_ATOMIC);
4463 if (unlikely(!buffer_info->page)) {
4464 adapter->alloc_rx_buff_failed++;
4465 break;
4466 }
4467 }
4468
4469 if (!buffer_info->dma)
4470 buffer_info->dma = pci_map_page(pdev,
4471 buffer_info->page, 0,
4472 buffer_info->length,
4473 PCI_DMA_FROMDEVICE);
4474
4475 rx_desc = E1000_RX_DESC(*rx_ring, i);
4476 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4477
4478 if (unlikely(++i == rx_ring->count))
4479 i = 0;
4480 buffer_info = &rx_ring->buffer_info[i];
4481 }
4482
4483 if (likely(rx_ring->next_to_use != i)) {
4484 rx_ring->next_to_use = i;
4485 if (unlikely(i-- == 0))
4486 i = (rx_ring->count - 1);
4487
4488 /* Force memory writes to complete before letting h/w
4489 * know there are new descriptors to fetch. (Only
4490 * applicable for weak-ordered memory model archs,
4491 * such as IA-64). */
4492 wmb();
4493 writel(i, adapter->hw.hw_addr + rx_ring->rdt);
4494 }
4495}
4496
4497/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004498 * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 * @adapter: address of board private structure
4500 **/
4501
Joe Perches64798842008-07-11 15:17:02 -07004502static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
4503 struct e1000_rx_ring *rx_ring,
4504 int cleaned_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505{
Joe Perches1dc32912008-07-11 15:17:08 -07004506 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 struct net_device *netdev = adapter->netdev;
4508 struct pci_dev *pdev = adapter->pdev;
4509 struct e1000_rx_desc *rx_desc;
4510 struct e1000_buffer *buffer_info;
4511 struct sk_buff *skb;
Malli Chilakala26483452005-04-28 19:44:46 -07004512 unsigned int i;
4513 unsigned int bufsz = adapter->rx_buffer_len + NET_IP_ALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514
4515 i = rx_ring->next_to_use;
4516 buffer_info = &rx_ring->buffer_info[i];
4517
Jeff Kirshera292ca62006-01-12 16:51:30 -08004518 while (cleaned_count--) {
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004519 skb = buffer_info->skb;
4520 if (skb) {
Jeff Kirshera292ca62006-01-12 16:51:30 -08004521 skb_trim(skb, 0);
4522 goto map_skb;
4523 }
4524
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004525 skb = netdev_alloc_skb(netdev, bufsz);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004526 if (unlikely(!skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 /* Better luck next round */
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004528 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 break;
4530 }
4531
Malli Chilakala26483452005-04-28 19:44:46 -07004532 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4534 struct sk_buff *oldskb = skb;
Malli Chilakala26483452005-04-28 19:44:46 -07004535 DPRINTK(RX_ERR, ERR, "skb align check failed: %u bytes "
4536 "at %p\n", bufsz, skb->data);
4537 /* Try again, without freeing the previous */
David S. Miller87f50322006-07-31 22:39:40 -07004538 skb = netdev_alloc_skb(netdev, bufsz);
Malli Chilakala26483452005-04-28 19:44:46 -07004539 /* Failed allocation, critical failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 if (!skb) {
4541 dev_kfree_skb(oldskb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004542 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 break;
4544 }
Malli Chilakala26483452005-04-28 19:44:46 -07004545
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4547 /* give up */
4548 dev_kfree_skb(skb);
4549 dev_kfree_skb(oldskb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004550 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 break; /* while !buffer_info->skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552 }
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004553
4554 /* Use new allocation */
4555 dev_kfree_skb(oldskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 /* Make buffer alignment 2 beyond a 16 byte boundary
4558 * this will result in a 16 byte aligned IP header after
4559 * the 14 byte MAC header is removed
4560 */
4561 skb_reserve(skb, NET_IP_ALIGN);
4562
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 buffer_info->skb = skb;
4564 buffer_info->length = adapter->rx_buffer_len;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004565map_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 buffer_info->dma = pci_map_single(pdev,
4567 skb->data,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004568 buffer_info->length,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569 PCI_DMA_FROMDEVICE);
4570
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004571 /*
4572 * XXX if it was allocated cleanly it will never map to a
4573 * boundary crossing
4574 */
4575
Malli Chilakala26483452005-04-28 19:44:46 -07004576 /* Fix for errata 23, can't cross 64kB boundary */
4577 if (!e1000_check_64k_bound(adapter,
4578 (void *)(unsigned long)buffer_info->dma,
4579 adapter->rx_buffer_len)) {
4580 DPRINTK(RX_ERR, ERR,
4581 "dma align check failed: %u bytes at %p\n",
4582 adapter->rx_buffer_len,
4583 (void *)(unsigned long)buffer_info->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 dev_kfree_skb(skb);
4585 buffer_info->skb = NULL;
4586
Malli Chilakala26483452005-04-28 19:44:46 -07004587 pci_unmap_single(pdev, buffer_info->dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 adapter->rx_buffer_len,
4589 PCI_DMA_FROMDEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00004590 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004592 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 break; /* while !buffer_info->skb */
4594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 rx_desc = E1000_RX_DESC(*rx_ring, i);
4596 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4597
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004598 if (unlikely(++i == rx_ring->count))
4599 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 buffer_info = &rx_ring->buffer_info[i];
4601 }
4602
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004603 if (likely(rx_ring->next_to_use != i)) {
4604 rx_ring->next_to_use = i;
4605 if (unlikely(i-- == 0))
4606 i = (rx_ring->count - 1);
4607
4608 /* Force memory writes to complete before letting h/w
4609 * know there are new descriptors to fetch. (Only
4610 * applicable for weak-ordered memory model archs,
4611 * such as IA-64). */
4612 wmb();
Joe Perches1dc32912008-07-11 15:17:08 -07004613 writel(i, hw->hw_addr + rx_ring->rdt);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615}
4616
4617/**
4618 * e1000_smartspeed - Workaround for SmartSpeed on 82541 and 82547 controllers.
4619 * @adapter:
4620 **/
4621
Joe Perches64798842008-07-11 15:17:02 -07004622static void e1000_smartspeed(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623{
Joe Perches1dc32912008-07-11 15:17:08 -07004624 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004625 u16 phy_status;
4626 u16 phy_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627
Joe Perches1dc32912008-07-11 15:17:08 -07004628 if ((hw->phy_type != e1000_phy_igp) || !hw->autoneg ||
4629 !(hw->autoneg_advertised & ADVERTISE_1000_FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 return;
4631
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004632 if (adapter->smartspeed == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 /* If Master/Slave config fault is asserted twice,
4634 * we assume back-to-back */
Joe Perches1dc32912008-07-11 15:17:08 -07004635 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_status);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004636 if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
Joe Perches1dc32912008-07-11 15:17:08 -07004637 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_status);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004638 if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
Joe Perches1dc32912008-07-11 15:17:08 -07004639 e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004640 if (phy_ctrl & CR_1000T_MS_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 phy_ctrl &= ~CR_1000T_MS_ENABLE;
Joe Perches1dc32912008-07-11 15:17:08 -07004642 e1000_write_phy_reg(hw, PHY_1000T_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 phy_ctrl);
4644 adapter->smartspeed++;
Joe Perches1dc32912008-07-11 15:17:08 -07004645 if (!e1000_phy_setup_autoneg(hw) &&
4646 !e1000_read_phy_reg(hw, PHY_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 &phy_ctrl)) {
4648 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4649 MII_CR_RESTART_AUTO_NEG);
Joe Perches1dc32912008-07-11 15:17:08 -07004650 e1000_write_phy_reg(hw, PHY_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 phy_ctrl);
4652 }
4653 }
4654 return;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004655 } else if (adapter->smartspeed == E1000_SMARTSPEED_DOWNSHIFT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 /* If still no link, perhaps using 2/3 pair cable */
Joe Perches1dc32912008-07-11 15:17:08 -07004657 e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 phy_ctrl |= CR_1000T_MS_ENABLE;
Joe Perches1dc32912008-07-11 15:17:08 -07004659 e1000_write_phy_reg(hw, PHY_1000T_CTRL, phy_ctrl);
4660 if (!e1000_phy_setup_autoneg(hw) &&
4661 !e1000_read_phy_reg(hw, PHY_CTRL, &phy_ctrl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4663 MII_CR_RESTART_AUTO_NEG);
Joe Perches1dc32912008-07-11 15:17:08 -07004664 e1000_write_phy_reg(hw, PHY_CTRL, phy_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 }
4666 }
4667 /* Restart process after E1000_SMARTSPEED_MAX iterations */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004668 if (adapter->smartspeed++ == E1000_SMARTSPEED_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 adapter->smartspeed = 0;
4670}
4671
4672/**
4673 * e1000_ioctl -
4674 * @netdev:
4675 * @ifreq:
4676 * @cmd:
4677 **/
4678
Joe Perches64798842008-07-11 15:17:02 -07004679static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680{
4681 switch (cmd) {
4682 case SIOCGMIIPHY:
4683 case SIOCGMIIREG:
4684 case SIOCSMIIREG:
4685 return e1000_mii_ioctl(netdev, ifr, cmd);
4686 default:
4687 return -EOPNOTSUPP;
4688 }
4689}
4690
4691/**
4692 * e1000_mii_ioctl -
4693 * @netdev:
4694 * @ifreq:
4695 * @cmd:
4696 **/
4697
Joe Perches64798842008-07-11 15:17:02 -07004698static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
4699 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004701 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004702 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 struct mii_ioctl_data *data = if_mii(ifr);
4704 int retval;
Joe Perches406874a2008-04-03 10:06:32 -07004705 u16 mii_reg;
4706 u16 spddplx;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004707 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708
Joe Perches1dc32912008-07-11 15:17:08 -07004709 if (hw->media_type != e1000_media_type_copper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 return -EOPNOTSUPP;
4711
4712 switch (cmd) {
4713 case SIOCGMIIPHY:
Joe Perches1dc32912008-07-11 15:17:08 -07004714 data->phy_id = hw->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 break;
4716 case SIOCGMIIREG:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004717 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 return -EPERM;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004719 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004720 if (e1000_read_phy_reg(hw, data->reg_num & 0x1F,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004721 &data->val_out)) {
4722 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004724 }
4725 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 break;
4727 case SIOCSMIIREG:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004728 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 return -EPERM;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004730 if (data->reg_num & ~(0x1F))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 return -EFAULT;
4732 mii_reg = data->val_in;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004733 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004734 if (e1000_write_phy_reg(hw, data->reg_num,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004735 mii_reg)) {
4736 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004738 }
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004739 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004740 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 switch (data->reg_num) {
4742 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004743 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744 break;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004745 if (mii_reg & MII_CR_AUTO_NEG_EN) {
Joe Perches1dc32912008-07-11 15:17:08 -07004746 hw->autoneg = 1;
4747 hw->autoneg_advertised = 0x2F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748 } else {
4749 if (mii_reg & 0x40)
4750 spddplx = SPEED_1000;
4751 else if (mii_reg & 0x2000)
4752 spddplx = SPEED_100;
4753 else
4754 spddplx = SPEED_10;
4755 spddplx += (mii_reg & 0x100)
Jeff Kirshercb764322006-03-08 17:24:12 -08004756 ? DUPLEX_FULL :
4757 DUPLEX_HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 retval = e1000_set_spd_dplx(adapter,
4759 spddplx);
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004760 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 return retval;
4762 }
Auke Kok2db10a02006-06-27 09:06:28 -07004763 if (netif_running(adapter->netdev))
4764 e1000_reinit_locked(adapter);
4765 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 e1000_reset(adapter);
4767 break;
4768 case M88E1000_PHY_SPEC_CTRL:
4769 case M88E1000_EXT_PHY_SPEC_CTRL:
Joe Perches1dc32912008-07-11 15:17:08 -07004770 if (e1000_phy_reset(hw))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 return -EIO;
4772 break;
4773 }
4774 } else {
4775 switch (data->reg_num) {
4776 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004777 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 break;
Auke Kok2db10a02006-06-27 09:06:28 -07004779 if (netif_running(adapter->netdev))
4780 e1000_reinit_locked(adapter);
4781 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782 e1000_reset(adapter);
4783 break;
4784 }
4785 }
4786 break;
4787 default:
4788 return -EOPNOTSUPP;
4789 }
4790 return E1000_SUCCESS;
4791}
4792
Joe Perches64798842008-07-11 15:17:02 -07004793void e1000_pci_set_mwi(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794{
4795 struct e1000_adapter *adapter = hw->back;
Malli Chilakala26483452005-04-28 19:44:46 -07004796 int ret_val = pci_set_mwi(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004798 if (ret_val)
Malli Chilakala26483452005-04-28 19:44:46 -07004799 DPRINTK(PROBE, ERR, "Error in setting MWI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800}
4801
Joe Perches64798842008-07-11 15:17:02 -07004802void e1000_pci_clear_mwi(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803{
4804 struct e1000_adapter *adapter = hw->back;
4805
4806 pci_clear_mwi(adapter->pdev);
4807}
4808
Joe Perches64798842008-07-11 15:17:02 -07004809int e1000_pcix_get_mmrbc(struct e1000_hw *hw)
Peter Oruba007755e2007-09-28 22:42:06 -07004810{
4811 struct e1000_adapter *adapter = hw->back;
4812 return pcix_get_mmrbc(adapter->pdev);
4813}
4814
Joe Perches64798842008-07-11 15:17:02 -07004815void e1000_pcix_set_mmrbc(struct e1000_hw *hw, int mmrbc)
Peter Oruba007755e2007-09-28 22:42:06 -07004816{
4817 struct e1000_adapter *adapter = hw->back;
4818 pcix_set_mmrbc(adapter->pdev, mmrbc);
4819}
4820
Joe Perches64798842008-07-11 15:17:02 -07004821s32 e1000_read_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value)
Jeff Kirshercaeccb62006-09-27 12:53:57 -07004822{
4823 struct e1000_adapter *adapter = hw->back;
Joe Perches406874a2008-04-03 10:06:32 -07004824 u16 cap_offset;
Jeff Kirshercaeccb62006-09-27 12:53:57 -07004825
4826 cap_offset = pci_find_capability(adapter->pdev, PCI_CAP_ID_EXP);
4827 if (!cap_offset)
4828 return -E1000_ERR_CONFIG;
4829
4830 pci_read_config_word(adapter->pdev, cap_offset + reg, value);
4831
4832 return E1000_SUCCESS;
4833}
4834
Joe Perches64798842008-07-11 15:17:02 -07004835void e1000_io_write(struct e1000_hw *hw, unsigned long port, u32 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836{
4837 outl(value, port);
4838}
4839
Joe Perches64798842008-07-11 15:17:02 -07004840static void e1000_vlan_rx_register(struct net_device *netdev,
4841 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004843 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004844 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004845 u32 ctrl, rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004847 if (!test_bit(__E1000_DOWN, &adapter->flags))
4848 e1000_irq_disable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 adapter->vlgrp = grp;
4850
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004851 if (grp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 /* enable VLAN tag insert/strip */
Joe Perches1dc32912008-07-11 15:17:08 -07004853 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 ctrl |= E1000_CTRL_VME;
Joe Perches1dc32912008-07-11 15:17:08 -07004855 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856
Auke Kokcd94dd02006-06-27 09:08:22 -07004857 if (adapter->hw.mac_type != e1000_ich8lan) {
Auke Kok90fb5132006-11-01 08:47:30 -08004858 /* enable VLAN receive filtering */
Joe Perches1dc32912008-07-11 15:17:08 -07004859 rctl = er32(RCTL);
Auke Kok90fb5132006-11-01 08:47:30 -08004860 rctl &= ~E1000_RCTL_CFIEN;
Graham, Davidfd38d7a2009-08-31 14:12:51 +00004861 if (!(netdev->flags & IFF_PROMISC))
4862 rctl |= E1000_RCTL_VFE;
Joe Perches1dc32912008-07-11 15:17:08 -07004863 ew32(RCTL, rctl);
Auke Kok90fb5132006-11-01 08:47:30 -08004864 e1000_update_mng_vlan(adapter);
Auke Kokcd94dd02006-06-27 09:08:22 -07004865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 } else {
4867 /* disable VLAN tag insert/strip */
Joe Perches1dc32912008-07-11 15:17:08 -07004868 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869 ctrl &= ~E1000_CTRL_VME;
Joe Perches1dc32912008-07-11 15:17:08 -07004870 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871
Auke Kokcd94dd02006-06-27 09:08:22 -07004872 if (adapter->hw.mac_type != e1000_ich8lan) {
Graham, Davidfd38d7a2009-08-31 14:12:51 +00004873 /* disable VLAN receive filtering */
4874 rctl = er32(RCTL);
4875 rctl &= ~E1000_RCTL_VFE;
4876 ew32(RCTL, rctl);
4877
Auke Kok90fb5132006-11-01 08:47:30 -08004878 if (adapter->mng_vlan_id !=
Joe Perches406874a2008-04-03 10:06:32 -07004879 (u16)E1000_MNG_VLAN_NONE) {
Auke Kok90fb5132006-11-01 08:47:30 -08004880 e1000_vlan_rx_kill_vid(netdev,
4881 adapter->mng_vlan_id);
4882 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
4883 }
Auke Kokcd94dd02006-06-27 09:08:22 -07004884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885 }
4886
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004887 if (!test_bit(__E1000_DOWN, &adapter->flags))
4888 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889}
4890
Joe Perches64798842008-07-11 15:17:02 -07004891static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004893 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004894 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004895 u32 vfta, index;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004896
Joe Perches1dc32912008-07-11 15:17:08 -07004897 if ((hw->mng_cookie.status &
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004898 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
4899 (vid == adapter->mng_vlan_id))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004900 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 /* add VID to filter table */
4902 index = (vid >> 5) & 0x7F;
Joe Perches1dc32912008-07-11 15:17:08 -07004903 vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 vfta |= (1 << (vid & 0x1F));
Joe Perches1dc32912008-07-11 15:17:08 -07004905 e1000_write_vfta(hw, index, vfta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906}
4907
Joe Perches64798842008-07-11 15:17:02 -07004908static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004910 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004911 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004912 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004914 if (!test_bit(__E1000_DOWN, &adapter->flags))
4915 e1000_irq_disable(adapter);
Dan Aloni5c15bde2007-03-02 20:44:51 -08004916 vlan_group_set_device(adapter->vlgrp, vid, NULL);
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004917 if (!test_bit(__E1000_DOWN, &adapter->flags))
4918 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919
Joe Perches1dc32912008-07-11 15:17:08 -07004920 if ((hw->mng_cookie.status &
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004921 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
Jeff Kirsherff147012006-01-12 16:51:10 -08004922 (vid == adapter->mng_vlan_id)) {
4923 /* release control to f/w */
4924 e1000_release_hw_control(adapter);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004925 return;
Jeff Kirsherff147012006-01-12 16:51:10 -08004926 }
4927
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 /* remove VID from filter table */
4929 index = (vid >> 5) & 0x7F;
Joe Perches1dc32912008-07-11 15:17:08 -07004930 vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 vfta &= ~(1 << (vid & 0x1F));
Joe Perches1dc32912008-07-11 15:17:08 -07004932 e1000_write_vfta(hw, index, vfta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933}
4934
Joe Perches64798842008-07-11 15:17:02 -07004935static void e1000_restore_vlan(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936{
4937 e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
4938
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004939 if (adapter->vlgrp) {
Joe Perches406874a2008-04-03 10:06:32 -07004940 u16 vid;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004941 for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08004942 if (!vlan_group_get_device(adapter->vlgrp, vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 continue;
4944 e1000_vlan_rx_add_vid(adapter->netdev, vid);
4945 }
4946 }
4947}
4948
Joe Perches64798842008-07-11 15:17:02 -07004949int e1000_set_spd_dplx(struct e1000_adapter *adapter, u16 spddplx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950{
Joe Perches1dc32912008-07-11 15:17:08 -07004951 struct e1000_hw *hw = &adapter->hw;
4952
4953 hw->autoneg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954
Malli Chilakala69213682005-06-17 17:44:20 -07004955 /* Fiber NICs only allow 1000 gbps Full duplex */
Joe Perches1dc32912008-07-11 15:17:08 -07004956 if ((hw->media_type == e1000_media_type_fiber) &&
Malli Chilakala69213682005-06-17 17:44:20 -07004957 spddplx != (SPEED_1000 + DUPLEX_FULL)) {
4958 DPRINTK(PROBE, ERR, "Unsupported Speed/Duplex configuration\n");
4959 return -EINVAL;
4960 }
4961
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004962 switch (spddplx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 case SPEED_10 + DUPLEX_HALF:
Joe Perches1dc32912008-07-11 15:17:08 -07004964 hw->forced_speed_duplex = e1000_10_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965 break;
4966 case SPEED_10 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004967 hw->forced_speed_duplex = e1000_10_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968 break;
4969 case SPEED_100 + DUPLEX_HALF:
Joe Perches1dc32912008-07-11 15:17:08 -07004970 hw->forced_speed_duplex = e1000_100_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 break;
4972 case SPEED_100 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004973 hw->forced_speed_duplex = e1000_100_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 break;
4975 case SPEED_1000 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004976 hw->autoneg = 1;
4977 hw->autoneg_advertised = ADVERTISE_1000_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978 break;
4979 case SPEED_1000 + DUPLEX_HALF: /* not supported */
4980 default:
Malli Chilakala26483452005-04-28 19:44:46 -07004981 DPRINTK(PROBE, ERR, "Unsupported Speed/Duplex configuration\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982 return -EINVAL;
4983 }
4984 return 0;
4985}
4986
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004987static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988{
4989 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07004990 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004991 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004992 u32 ctrl, ctrl_ext, rctl, status;
4993 u32 wufc = adapter->wol;
Auke Kok6fdfef12006-06-27 09:06:36 -07004994#ifdef CONFIG_PM
Jeff Kirsher240b1712006-01-12 16:51:28 -08004995 int retval = 0;
Auke Kok6fdfef12006-06-27 09:06:36 -07004996#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997
4998 netif_device_detach(netdev);
4999
Auke Kok2db10a02006-06-27 09:06:28 -07005000 if (netif_running(netdev)) {
5001 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002 e1000_down(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07005003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004
Jesse Brandeburg2f826652006-01-18 13:01:34 -08005005#ifdef CONFIG_PM
Kok, Auke1d33e9c2007-02-16 14:39:28 -08005006 retval = pci_save_state(pdev);
Jesse Brandeburg2f826652006-01-18 13:01:34 -08005007 if (retval)
5008 return retval;
5009#endif
5010
Joe Perches1dc32912008-07-11 15:17:08 -07005011 status = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08005012 if (status & E1000_STATUS_LU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 wufc &= ~E1000_WUFC_LNKC;
5014
Jesse Brandeburg96838a42006-01-18 13:01:39 -08005015 if (wufc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 e1000_setup_rctl(adapter);
Patrick McHardydb0ce502007-11-13 20:54:59 -08005017 e1000_set_rx_mode(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
5019 /* turn on all-multi mode if wake on multicast is enabled */
Jesse Brandeburg120cd572006-08-31 14:27:46 -07005020 if (wufc & E1000_WUFC_MC) {
Joe Perches1dc32912008-07-11 15:17:08 -07005021 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 rctl |= E1000_RCTL_MPE;
Joe Perches1dc32912008-07-11 15:17:08 -07005023 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024 }
5025
Joe Perches1dc32912008-07-11 15:17:08 -07005026 if (hw->mac_type >= e1000_82540) {
5027 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 /* advertise wake from D3Cold */
5029 #define E1000_CTRL_ADVD3WUC 0x00100000
5030 /* phy power management enable */
5031 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
5032 ctrl |= E1000_CTRL_ADVD3WUC |
5033 E1000_CTRL_EN_PHY_PWR_MGMT;
Joe Perches1dc32912008-07-11 15:17:08 -07005034 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 }
5036
Joe Perches1dc32912008-07-11 15:17:08 -07005037 if (hw->media_type == e1000_media_type_fiber ||
5038 hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 /* keep the laser running in D3 */
Joe Perches1dc32912008-07-11 15:17:08 -07005040 ctrl_ext = er32(CTRL_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041 ctrl_ext |= E1000_CTRL_EXT_SDP7_DATA;
Joe Perches1dc32912008-07-11 15:17:08 -07005042 ew32(CTRL_EXT, ctrl_ext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043 }
5044
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005045 /* Allow time for pending master requests to run */
Joe Perches1dc32912008-07-11 15:17:08 -07005046 e1000_disable_pciex_master(hw);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005047
Joe Perches1dc32912008-07-11 15:17:08 -07005048 ew32(WUC, E1000_WUC_PME_EN);
5049 ew32(WUFC, wufc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07005051 ew32(WUC, 0);
5052 ew32(WUFC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053 }
5054
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005055 e1000_release_manageability(adapter);
5056
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00005057 *enable_wake = !!wufc;
5058
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005059 /* make sure adapter isn't asleep if manageability is enabled */
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00005060 if (adapter->en_mng_pt)
5061 *enable_wake = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062
Joe Perches1dc32912008-07-11 15:17:08 -07005063 if (hw->phy_type == e1000_phy_igp_3)
5064 e1000_phy_powerdown_workaround(hw);
Auke Kokcd94dd02006-06-27 09:08:22 -07005065
Auke Kokedd106f2006-11-06 08:57:12 -08005066 if (netif_running(netdev))
5067 e1000_free_irq(adapter);
5068
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08005069 /* Release control of h/w to f/w. If f/w is AMT enabled, this
5070 * would have already happened in close and is redundant. */
5071 e1000_release_hw_control(adapter);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005072
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073 pci_disable_device(pdev);
Jeff Kirsher240b1712006-01-12 16:51:28 -08005074
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 return 0;
5076}
5077
Jesse Brandeburg2f826652006-01-18 13:01:34 -08005078#ifdef CONFIG_PM
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00005079static int e1000_suspend(struct pci_dev *pdev, pm_message_t state)
5080{
5081 int retval;
5082 bool wake;
5083
5084 retval = __e1000_shutdown(pdev, &wake);
5085 if (retval)
5086 return retval;
5087
5088 if (wake) {
5089 pci_prepare_to_sleep(pdev);
5090 } else {
5091 pci_wake_from_d3(pdev, false);
5092 pci_set_power_state(pdev, PCI_D3hot);
5093 }
5094
5095 return 0;
5096}
5097
Joe Perches64798842008-07-11 15:17:02 -07005098static int e1000_resume(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099{
5100 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07005101 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07005102 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07005103 u32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104
Auke Kokd0e027d2006-04-14 19:04:40 -07005105 pci_set_power_state(pdev, PCI_D0);
Kok, Auke1d33e9c2007-02-16 14:39:28 -08005106 pci_restore_state(pdev);
Taku Izumi81250292008-07-11 15:17:44 -07005107
5108 if (adapter->need_ioport)
5109 err = pci_enable_device(pdev);
5110 else
5111 err = pci_enable_device_mem(pdev);
Joe Perchesc7be73b2008-07-11 15:17:28 -07005112 if (err) {
Auke Kok3d1dd8c2006-08-28 14:56:27 -07005113 printk(KERN_ERR "e1000: Cannot enable PCI device from suspend\n");
5114 return err;
5115 }
Malli Chilakalaa4cb8472005-04-28 19:41:28 -07005116 pci_set_master(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117
Auke Kokd0e027d2006-04-14 19:04:40 -07005118 pci_enable_wake(pdev, PCI_D3hot, 0);
5119 pci_enable_wake(pdev, PCI_D3cold, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120
Joe Perchesc7be73b2008-07-11 15:17:28 -07005121 if (netif_running(netdev)) {
5122 err = e1000_request_irq(adapter);
5123 if (err)
5124 return err;
5125 }
Auke Kokedd106f2006-11-06 08:57:12 -08005126
5127 e1000_power_up_phy(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128 e1000_reset(adapter);
Joe Perches1dc32912008-07-11 15:17:08 -07005129 ew32(WUS, ~0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005131 e1000_init_manageability(adapter);
5132
Jesse Brandeburg96838a42006-01-18 13:01:39 -08005133 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 e1000_up(adapter);
5135
5136 netif_device_attach(netdev);
5137
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08005138 /* If the controller is 82573 and f/w is AMT, do not set
5139 * DRV_LOAD until the interface is up. For all other cases,
5140 * let the f/w know that the h/w is now under the control
5141 * of the driver. */
Joe Perches1dc32912008-07-11 15:17:08 -07005142 if (hw->mac_type != e1000_82573 ||
5143 !e1000_check_mng_mode(hw))
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08005144 e1000_get_hw_control(adapter);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005145
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 return 0;
5147}
5148#endif
Auke Kokc653e632006-05-23 13:35:57 -07005149
5150static void e1000_shutdown(struct pci_dev *pdev)
5151{
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00005152 bool wake;
5153
5154 __e1000_shutdown(pdev, &wake);
5155
5156 if (system_state == SYSTEM_POWER_OFF) {
5157 pci_wake_from_d3(pdev, wake);
5158 pci_set_power_state(pdev, PCI_D3hot);
5159 }
Auke Kokc653e632006-05-23 13:35:57 -07005160}
5161
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162#ifdef CONFIG_NET_POLL_CONTROLLER
5163/*
5164 * Polling 'interrupt' - used by things like netconsole to send skbs
5165 * without having to re-enable interrupts. It's not called while
5166 * the interrupt routine is executing.
5167 */
Joe Perches64798842008-07-11 15:17:02 -07005168static void e1000_netpoll(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169{
Malli Chilakala60490fe2005-06-17 17:41:45 -07005170 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kokd3d9e482006-07-14 16:14:23 -07005171
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172 disable_irq(adapter->pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01005173 e1000_intr(adapter->pdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 enable_irq(adapter->pdev->irq);
5175}
5176#endif
5177
Auke Kok90267292006-06-08 09:30:24 -07005178/**
5179 * e1000_io_error_detected - called when PCI error is detected
5180 * @pdev: Pointer to PCI device
5181 * @state: The current pci conneection state
5182 *
5183 * This function is called after a PCI bus error affecting
5184 * this device has been detected.
5185 */
Joe Perches64798842008-07-11 15:17:02 -07005186static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
5187 pci_channel_state_t state)
Auke Kok90267292006-06-08 09:30:24 -07005188{
5189 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08005190 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kok90267292006-06-08 09:30:24 -07005191
5192 netif_device_detach(netdev);
5193
Andre Detscheab63302009-06-30 12:46:13 +00005194 if (state == pci_channel_io_perm_failure)
5195 return PCI_ERS_RESULT_DISCONNECT;
5196
Auke Kok90267292006-06-08 09:30:24 -07005197 if (netif_running(netdev))
5198 e1000_down(adapter);
Linas Vepstas72e8d6b2006-09-18 20:58:06 -07005199 pci_disable_device(pdev);
Auke Kok90267292006-06-08 09:30:24 -07005200
5201 /* Request a slot slot reset. */
5202 return PCI_ERS_RESULT_NEED_RESET;
5203}
5204
5205/**
5206 * e1000_io_slot_reset - called after the pci bus has been reset.
5207 * @pdev: Pointer to PCI device
5208 *
5209 * Restart the card from scratch, as if from a cold-boot. Implementation
5210 * resembles the first-half of the e1000_resume routine.
5211 */
5212static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
5213{
5214 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08005215 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07005216 struct e1000_hw *hw = &adapter->hw;
Taku Izumi81250292008-07-11 15:17:44 -07005217 int err;
Auke Kok90267292006-06-08 09:30:24 -07005218
Taku Izumi81250292008-07-11 15:17:44 -07005219 if (adapter->need_ioport)
5220 err = pci_enable_device(pdev);
5221 else
5222 err = pci_enable_device_mem(pdev);
5223 if (err) {
Auke Kok90267292006-06-08 09:30:24 -07005224 printk(KERN_ERR "e1000: Cannot re-enable PCI device after reset.\n");
5225 return PCI_ERS_RESULT_DISCONNECT;
5226 }
5227 pci_set_master(pdev);
5228
Linas Vepstasdbf38c92006-09-27 12:54:11 -07005229 pci_enable_wake(pdev, PCI_D3hot, 0);
5230 pci_enable_wake(pdev, PCI_D3cold, 0);
Auke Kok90267292006-06-08 09:30:24 -07005231
Auke Kok90267292006-06-08 09:30:24 -07005232 e1000_reset(adapter);
Joe Perches1dc32912008-07-11 15:17:08 -07005233 ew32(WUS, ~0);
Auke Kok90267292006-06-08 09:30:24 -07005234
5235 return PCI_ERS_RESULT_RECOVERED;
5236}
5237
5238/**
5239 * e1000_io_resume - called when traffic can start flowing again.
5240 * @pdev: Pointer to PCI device
5241 *
5242 * This callback is called when the error recovery driver tells us that
5243 * its OK to resume normal operation. Implementation resembles the
5244 * second-half of the e1000_resume routine.
5245 */
5246static void e1000_io_resume(struct pci_dev *pdev)
5247{
5248 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08005249 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07005250 struct e1000_hw *hw = &adapter->hw;
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005251
5252 e1000_init_manageability(adapter);
Auke Kok90267292006-06-08 09:30:24 -07005253
5254 if (netif_running(netdev)) {
5255 if (e1000_up(adapter)) {
5256 printk("e1000: can't bring device back up after reset\n");
5257 return;
5258 }
5259 }
5260
5261 netif_device_attach(netdev);
5262
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005263 /* If the controller is 82573 and f/w is AMT, do not set
5264 * DRV_LOAD until the interface is up. For all other cases,
5265 * let the f/w know that the h/w is now under the control
5266 * of the driver. */
Joe Perches1dc32912008-07-11 15:17:08 -07005267 if (hw->mac_type != e1000_82573 ||
5268 !e1000_check_mng_mode(hw))
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005269 e1000_get_hw_control(adapter);
Auke Kok90267292006-06-08 09:30:24 -07005270
Auke Kok90267292006-06-08 09:30:24 -07005271}
5272
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273/* e1000_main.c */