blob: 188d99ae9084cb7ad90a5117ba8e51fa48e9d7eb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2
Auke Kok0abb6eb2006-09-27 12:53:14 -07003 Intel PRO/1000 Linux driver
4 Copyright(c) 1999 - 2006 Intel Corporation.
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 more details.
Auke Kok0abb6eb2006-09-27 12:53:14 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 You should have received a copy of the GNU General Public License along with
Auke Kok0abb6eb2006-09-27 12:53:14 -070016 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 Contact Information:
23 Linux NICS <linux.nics@intel.com>
Auke Kok3d41e302006-04-14 19:05:31 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29#include "e1000.h"
Andrew Mortond0bb53e2006-11-14 10:35:03 -050030#include <net/ip6_checksum.h>
Dirk Brandewie5377a412011-01-06 14:29:54 +000031#include <linux/io.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040032#include <linux/prefetch.h>
Dirk Brandewie5377a412011-01-06 14:29:54 +000033
34/* Intel Media SOC GbE MDIO physical base address */
35static unsigned long ce4100_gbe_mdio_base_phy;
36/* Intel Media SOC GbE MDIO virtual base address */
37void __iomem *ce4100_gbe_mdio_base_virt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039char e1000_driver_name[] = "e1000";
Adrian Bunk3ad2cc62005-10-30 16:53:34 +010040static char e1000_driver_string[] = "Intel(R) PRO/1000 Network Driver";
Anupam Chandaab088532010-11-21 09:54:21 -080041#define DRV_VERSION "7.3.21-k8-NAPI"
Stephen Hemmingerabec42a2007-10-29 10:46:19 -070042const char e1000_driver_version[] = DRV_VERSION;
43static const char e1000_copyright[] = "Copyright (c) 1999-2006 Intel Corporation.";
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/* e1000_pci_tbl - PCI Device ID Table
46 *
47 * Last entry must be all 0s
48 *
49 * Macro expands to...
50 * {PCI_DEVICE(PCI_VENDOR_ID_INTEL, device_id)}
51 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000052static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 INTEL_E1000_ETHERNET_DEVICE(0x1000),
54 INTEL_E1000_ETHERNET_DEVICE(0x1001),
55 INTEL_E1000_ETHERNET_DEVICE(0x1004),
56 INTEL_E1000_ETHERNET_DEVICE(0x1008),
57 INTEL_E1000_ETHERNET_DEVICE(0x1009),
58 INTEL_E1000_ETHERNET_DEVICE(0x100C),
59 INTEL_E1000_ETHERNET_DEVICE(0x100D),
60 INTEL_E1000_ETHERNET_DEVICE(0x100E),
61 INTEL_E1000_ETHERNET_DEVICE(0x100F),
62 INTEL_E1000_ETHERNET_DEVICE(0x1010),
63 INTEL_E1000_ETHERNET_DEVICE(0x1011),
64 INTEL_E1000_ETHERNET_DEVICE(0x1012),
65 INTEL_E1000_ETHERNET_DEVICE(0x1013),
66 INTEL_E1000_ETHERNET_DEVICE(0x1014),
67 INTEL_E1000_ETHERNET_DEVICE(0x1015),
68 INTEL_E1000_ETHERNET_DEVICE(0x1016),
69 INTEL_E1000_ETHERNET_DEVICE(0x1017),
70 INTEL_E1000_ETHERNET_DEVICE(0x1018),
71 INTEL_E1000_ETHERNET_DEVICE(0x1019),
Malli Chilakala26483452005-04-28 19:44:46 -070072 INTEL_E1000_ETHERNET_DEVICE(0x101A),
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 INTEL_E1000_ETHERNET_DEVICE(0x101D),
74 INTEL_E1000_ETHERNET_DEVICE(0x101E),
75 INTEL_E1000_ETHERNET_DEVICE(0x1026),
76 INTEL_E1000_ETHERNET_DEVICE(0x1027),
77 INTEL_E1000_ETHERNET_DEVICE(0x1028),
78 INTEL_E1000_ETHERNET_DEVICE(0x1075),
79 INTEL_E1000_ETHERNET_DEVICE(0x1076),
80 INTEL_E1000_ETHERNET_DEVICE(0x1077),
81 INTEL_E1000_ETHERNET_DEVICE(0x1078),
82 INTEL_E1000_ETHERNET_DEVICE(0x1079),
83 INTEL_E1000_ETHERNET_DEVICE(0x107A),
84 INTEL_E1000_ETHERNET_DEVICE(0x107B),
85 INTEL_E1000_ETHERNET_DEVICE(0x107C),
86 INTEL_E1000_ETHERNET_DEVICE(0x108A),
Jeff Kirsherb7ee49d2006-01-12 16:51:21 -080087 INTEL_E1000_ETHERNET_DEVICE(0x1099),
Jeff Kirsherb7ee49d2006-01-12 16:51:21 -080088 INTEL_E1000_ETHERNET_DEVICE(0x10B5),
Dirk Brandewie5377a412011-01-06 14:29:54 +000089 INTEL_E1000_ETHERNET_DEVICE(0x2E6E),
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 /* required last entry */
91 {0,}
92};
93
94MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
95
Nicholas Nunley35574762006-09-27 12:53:34 -070096int e1000_up(struct e1000_adapter *adapter);
97void e1000_down(struct e1000_adapter *adapter);
98void e1000_reinit_locked(struct e1000_adapter *adapter);
99void e1000_reset(struct e1000_adapter *adapter);
Nicholas Nunley35574762006-09-27 12:53:34 -0700100int e1000_setup_all_tx_resources(struct e1000_adapter *adapter);
101int e1000_setup_all_rx_resources(struct e1000_adapter *adapter);
102void e1000_free_all_tx_resources(struct e1000_adapter *adapter);
103void e1000_free_all_rx_resources(struct e1000_adapter *adapter);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100104static int e1000_setup_tx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700105 struct e1000_tx_ring *txdr);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100106static int e1000_setup_rx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700107 struct e1000_rx_ring *rxdr);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100108static void e1000_free_tx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700109 struct e1000_tx_ring *tx_ring);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100110static void e1000_free_rx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700111 struct e1000_rx_ring *rx_ring);
112void e1000_update_stats(struct e1000_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114static int e1000_init_module(void);
115static void e1000_exit_module(void);
116static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
117static void __devexit e1000_remove(struct pci_dev *pdev);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400118static int e1000_alloc_queues(struct e1000_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119static int e1000_sw_init(struct e1000_adapter *adapter);
120static int e1000_open(struct net_device *netdev);
121static int e1000_close(struct net_device *netdev);
122static void e1000_configure_tx(struct e1000_adapter *adapter);
123static void e1000_configure_rx(struct e1000_adapter *adapter);
124static void e1000_setup_rctl(struct e1000_adapter *adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400125static void e1000_clean_all_tx_rings(struct e1000_adapter *adapter);
126static void e1000_clean_all_rx_rings(struct e1000_adapter *adapter);
127static void e1000_clean_tx_ring(struct e1000_adapter *adapter,
128 struct e1000_tx_ring *tx_ring);
129static void e1000_clean_rx_ring(struct e1000_adapter *adapter,
130 struct e1000_rx_ring *rx_ring);
Patrick McHardydb0ce502007-11-13 20:54:59 -0800131static void e1000_set_rx_mode(struct net_device *netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static void e1000_update_phy_info(unsigned long data);
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +0000133static void e1000_update_phy_info_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static void e1000_watchdog(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135static void e1000_82547_tx_fifo_stall(unsigned long data);
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +0000136static void e1000_82547_tx_fifo_stall_task(struct work_struct *work);
Stephen Hemminger3b29a562009-08-31 19:50:55 +0000137static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
138 struct net_device *netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static struct net_device_stats * e1000_get_stats(struct net_device *netdev);
140static int e1000_change_mtu(struct net_device *netdev, int new_mtu);
141static int e1000_set_mac(struct net_device *netdev, void *p);
David Howells7d12e782006-10-05 14:55:46 +0100142static irqreturn_t e1000_intr(int irq, void *data);
Joe Perchesc3033b02008-03-21 11:06:25 -0700143static bool e1000_clean_tx_irq(struct e1000_adapter *adapter,
144 struct e1000_tx_ring *tx_ring);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700145static int e1000_clean(struct napi_struct *napi, int budget);
Joe Perchesc3033b02008-03-21 11:06:25 -0700146static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
147 struct e1000_rx_ring *rx_ring,
148 int *work_done, int work_to_do);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000149static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
150 struct e1000_rx_ring *rx_ring,
151 int *work_done, int work_to_do);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400152static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000153 struct e1000_rx_ring *rx_ring,
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800154 int cleaned_count);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000155static void e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
156 struct e1000_rx_ring *rx_ring,
157 int cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd);
159static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
160 int cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161static void e1000_enter_82542_rst(struct e1000_adapter *adapter);
162static void e1000_leave_82542_rst(struct e1000_adapter *adapter);
163static void e1000_tx_timeout(struct net_device *dev);
David Howells65f27f32006-11-22 14:55:48 +0000164static void e1000_reset_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static void e1000_smartspeed(struct e1000_adapter *adapter);
Auke Koke619d522006-04-14 19:04:52 -0700166static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
167 struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169static void e1000_vlan_rx_register(struct net_device *netdev, struct vlan_group *grp);
Joe Perches406874a2008-04-03 10:06:32 -0700170static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid);
171static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172static void e1000_restore_vlan(struct e1000_adapter *adapter);
173
Auke Kok6fdfef12006-06-27 09:06:36 -0700174#ifdef CONFIG_PM
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +0000175static int e1000_suspend(struct pci_dev *pdev, pm_message_t state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176static int e1000_resume(struct pci_dev *pdev);
177#endif
Auke Kokc653e632006-05-23 13:35:57 -0700178static void e1000_shutdown(struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180#ifdef CONFIG_NET_POLL_CONTROLLER
181/* for netdump / net console */
182static void e1000_netpoll (struct net_device *netdev);
183#endif
184
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100185#define COPYBREAK_DEFAULT 256
186static unsigned int copybreak __read_mostly = COPYBREAK_DEFAULT;
187module_param(copybreak, uint, 0644);
188MODULE_PARM_DESC(copybreak,
189 "Maximum size of packet that is copied to a new buffer on receive");
190
Auke Kok90267292006-06-08 09:30:24 -0700191static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
192 pci_channel_state_t state);
193static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev);
194static void e1000_io_resume(struct pci_dev *pdev);
195
196static struct pci_error_handlers e1000_err_handler = {
197 .error_detected = e1000_io_error_detected,
198 .slot_reset = e1000_io_slot_reset,
199 .resume = e1000_io_resume,
200};
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -0400201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static struct pci_driver e1000_driver = {
203 .name = e1000_driver_name,
204 .id_table = e1000_pci_tbl,
205 .probe = e1000_probe,
206 .remove = __devexit_p(e1000_remove),
Auke Kokc4e24f02006-09-27 12:53:19 -0700207#ifdef CONFIG_PM
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300208 /* Power Management Hooks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 .suspend = e1000_suspend,
Auke Kokc653e632006-05-23 13:35:57 -0700210 .resume = e1000_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#endif
Auke Kok90267292006-06-08 09:30:24 -0700212 .shutdown = e1000_shutdown,
213 .err_handler = &e1000_err_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
216MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
217MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
218MODULE_LICENSE("GPL");
219MODULE_VERSION(DRV_VERSION);
220
221static int debug = NETIF_MSG_DRV | NETIF_MSG_PROBE;
222module_param(debug, int, 0);
223MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
224
225/**
Emil Tantilov675ad472010-04-27 14:02:58 +0000226 * e1000_get_hw_dev - return device
227 * used by hardware layer to print debugging information
228 *
229 **/
230struct net_device *e1000_get_hw_dev(struct e1000_hw *hw)
231{
232 struct e1000_adapter *adapter = hw->back;
233 return adapter->netdev;
234}
235
236/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 * e1000_init_module - Driver Registration Routine
238 *
239 * e1000_init_module is the first routine called when the driver is
240 * loaded. All it does is register with the PCI subsystem.
241 **/
242
Joe Perches64798842008-07-11 15:17:02 -0700243static int __init e1000_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 int ret;
Emil Tantilov675ad472010-04-27 14:02:58 +0000246 pr_info("%s - version %s\n", e1000_driver_string, e1000_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Emil Tantilov675ad472010-04-27 14:02:58 +0000248 pr_info("%s\n", e1000_copyright);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Jeff Garzik29917622006-08-19 17:48:59 -0400250 ret = pci_register_driver(&e1000_driver);
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100251 if (copybreak != COPYBREAK_DEFAULT) {
252 if (copybreak == 0)
Emil Tantilov675ad472010-04-27 14:02:58 +0000253 pr_info("copybreak disabled\n");
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100254 else
Emil Tantilov675ad472010-04-27 14:02:58 +0000255 pr_info("copybreak enabled for "
256 "packets <= %u bytes\n", copybreak);
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return ret;
259}
260
261module_init(e1000_init_module);
262
263/**
264 * e1000_exit_module - Driver Exit Cleanup Routine
265 *
266 * e1000_exit_module is called just before the driver is removed
267 * from memory.
268 **/
269
Joe Perches64798842008-07-11 15:17:02 -0700270static void __exit e1000_exit_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 pci_unregister_driver(&e1000_driver);
273}
274
275module_exit(e1000_exit_module);
276
Auke Kok2db10a02006-06-27 09:06:28 -0700277static int e1000_request_irq(struct e1000_adapter *adapter)
278{
279 struct net_device *netdev = adapter->netdev;
Al Viro3e188262007-12-11 19:49:39 +0000280 irq_handler_t handler = e1000_intr;
Auke Koke94bd232007-05-16 01:49:46 -0700281 int irq_flags = IRQF_SHARED;
282 int err;
Auke Kok2db10a02006-06-27 09:06:28 -0700283
Auke Koke94bd232007-05-16 01:49:46 -0700284 err = request_irq(adapter->pdev->irq, handler, irq_flags, netdev->name,
285 netdev);
286 if (err) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700287 e_err(probe, "Unable to allocate interrupt Error: %d\n", err);
Auke Koke94bd232007-05-16 01:49:46 -0700288 }
Auke Kok2db10a02006-06-27 09:06:28 -0700289
290 return err;
291}
292
293static void e1000_free_irq(struct e1000_adapter *adapter)
294{
295 struct net_device *netdev = adapter->netdev;
296
297 free_irq(adapter->pdev->irq, netdev);
Auke Kok2db10a02006-06-27 09:06:28 -0700298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/**
301 * e1000_irq_disable - Mask off interrupt generation on the NIC
302 * @adapter: board private structure
303 **/
304
Joe Perches64798842008-07-11 15:17:02 -0700305static void e1000_irq_disable(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Joe Perches1dc32912008-07-11 15:17:08 -0700307 struct e1000_hw *hw = &adapter->hw;
308
309 ew32(IMC, ~0);
310 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 synchronize_irq(adapter->pdev->irq);
312}
313
314/**
315 * e1000_irq_enable - Enable default interrupt generation settings
316 * @adapter: board private structure
317 **/
318
Joe Perches64798842008-07-11 15:17:02 -0700319static void e1000_irq_enable(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Joe Perches1dc32912008-07-11 15:17:08 -0700321 struct e1000_hw *hw = &adapter->hw;
322
323 ew32(IMS, IMS_ENABLE_MASK);
324 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100326
Joe Perches64798842008-07-11 15:17:02 -0700327static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700328{
Joe Perches1dc32912008-07-11 15:17:08 -0700329 struct e1000_hw *hw = &adapter->hw;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700330 struct net_device *netdev = adapter->netdev;
Joe Perches1dc32912008-07-11 15:17:08 -0700331 u16 vid = hw->mng_cookie.vlan_id;
Joe Perches406874a2008-04-03 10:06:32 -0700332 u16 old_vid = adapter->mng_vlan_id;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800333 if (adapter->vlgrp) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800334 if (!vlan_group_get_device(adapter->vlgrp, vid)) {
Joe Perches1dc32912008-07-11 15:17:08 -0700335 if (hw->mng_cookie.status &
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700336 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) {
337 e1000_vlan_rx_add_vid(netdev, vid);
338 adapter->mng_vlan_id = vid;
339 } else
340 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800341
Joe Perches406874a2008-04-03 10:06:32 -0700342 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) &&
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800343 (vid != old_vid) &&
Dan Aloni5c15bde2007-03-02 20:44:51 -0800344 !vlan_group_get_device(adapter->vlgrp, old_vid))
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700345 e1000_vlan_rx_kill_vid(netdev, old_vid);
Jeff Kirsherc5f226f2006-03-02 18:17:55 -0800346 } else
347 adapter->mng_vlan_id = vid;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700348 }
349}
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800350
Joe Perches64798842008-07-11 15:17:02 -0700351static void e1000_init_manageability(struct e1000_adapter *adapter)
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500352{
Joe Perches1dc32912008-07-11 15:17:08 -0700353 struct e1000_hw *hw = &adapter->hw;
354
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500355 if (adapter->en_mng_pt) {
Joe Perches1dc32912008-07-11 15:17:08 -0700356 u32 manc = er32(MANC);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500357
358 /* disable hardware interception of ARP */
359 manc &= ~(E1000_MANC_ARP_EN);
360
Joe Perches1dc32912008-07-11 15:17:08 -0700361 ew32(MANC, manc);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500362 }
363}
364
Joe Perches64798842008-07-11 15:17:02 -0700365static void e1000_release_manageability(struct e1000_adapter *adapter)
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500366{
Joe Perches1dc32912008-07-11 15:17:08 -0700367 struct e1000_hw *hw = &adapter->hw;
368
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500369 if (adapter->en_mng_pt) {
Joe Perches1dc32912008-07-11 15:17:08 -0700370 u32 manc = er32(MANC);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500371
372 /* re-enable hardware interception of ARP */
373 manc |= E1000_MANC_ARP_EN;
374
Joe Perches1dc32912008-07-11 15:17:08 -0700375 ew32(MANC, manc);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500376 }
377}
378
Auke Koke0aac5a2007-03-06 08:57:21 -0800379/**
380 * e1000_configure - configure the hardware for RX and TX
381 * @adapter = private board structure
382 **/
383static void e1000_configure(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 struct net_device *netdev = adapter->netdev;
Auke Kok2db10a02006-06-27 09:06:28 -0700386 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Patrick McHardydb0ce502007-11-13 20:54:59 -0800388 e1000_set_rx_mode(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 e1000_restore_vlan(adapter);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500391 e1000_init_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 e1000_configure_tx(adapter);
394 e1000_setup_rctl(adapter);
395 e1000_configure_rx(adapter);
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800396 /* call E1000_DESC_UNUSED which always leaves
397 * at least 1 descriptor unused to make sure
398 * next_to_use != next_to_clean */
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800399 for (i = 0; i < adapter->num_rx_queues; i++) {
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800400 struct e1000_rx_ring *ring = &adapter->rx_ring[i];
Jeff Kirshera292ca62006-01-12 16:51:30 -0800401 adapter->alloc_rx_buf(adapter, ring,
402 E1000_DESC_UNUSED(ring));
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800403 }
Auke Koke0aac5a2007-03-06 08:57:21 -0800404}
Jeff Kirsher7bfa4812006-01-12 16:50:41 -0800405
Auke Koke0aac5a2007-03-06 08:57:21 -0800406int e1000_up(struct e1000_adapter *adapter)
407{
Joe Perches1dc32912008-07-11 15:17:08 -0700408 struct e1000_hw *hw = &adapter->hw;
409
Auke Koke0aac5a2007-03-06 08:57:21 -0800410 /* hardware has been reset, we need to reload some things */
411 e1000_configure(adapter);
Malli Chilakala5de55622005-04-28 19:39:30 -0700412
Auke Kok1314bbf2006-09-27 12:54:02 -0700413 clear_bit(__E1000_DOWN, &adapter->flags);
414
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700415 napi_enable(&adapter->napi);
Francois Romieuc3570ac2008-07-11 15:17:38 -0700416
Auke Koke0aac5a2007-03-06 08:57:21 -0800417 e1000_irq_enable(adapter);
418
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +0000419 netif_wake_queue(adapter->netdev);
420
Jesse Brandeburg79f3d392006-12-15 10:42:34 +0100421 /* fire a link change interrupt to start the watchdog */
Joe Perches1dc32912008-07-11 15:17:08 -0700422 ew32(ICS, E1000_ICS_LSC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return 0;
424}
425
Auke Kok79f05bf2006-06-27 09:06:32 -0700426/**
427 * e1000_power_up_phy - restore link in case the phy was powered down
428 * @adapter: address of board private structure
429 *
430 * The phy may be powered down to save power and turn off link when the
431 * driver is unloaded and wake on lan is not enabled (among others)
432 * *** this routine MUST be followed by a call to e1000_reset ***
433 *
434 **/
435
Jesse Brandeburgd6582662006-08-16 13:31:33 -0700436void e1000_power_up_phy(struct e1000_adapter *adapter)
Auke Kok79f05bf2006-06-27 09:06:32 -0700437{
Joe Perches1dc32912008-07-11 15:17:08 -0700438 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700439 u16 mii_reg = 0;
Auke Kok79f05bf2006-06-27 09:06:32 -0700440
441 /* Just clear the power down bit to wake the phy back up */
Joe Perches1dc32912008-07-11 15:17:08 -0700442 if (hw->media_type == e1000_media_type_copper) {
Auke Kok79f05bf2006-06-27 09:06:32 -0700443 /* according to the manual, the phy will retain its
444 * settings across a power-down/up cycle */
Joe Perches1dc32912008-07-11 15:17:08 -0700445 e1000_read_phy_reg(hw, PHY_CTRL, &mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700446 mii_reg &= ~MII_CR_POWER_DOWN;
Joe Perches1dc32912008-07-11 15:17:08 -0700447 e1000_write_phy_reg(hw, PHY_CTRL, mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700448 }
449}
450
451static void e1000_power_down_phy(struct e1000_adapter *adapter)
452{
Joe Perches1dc32912008-07-11 15:17:08 -0700453 struct e1000_hw *hw = &adapter->hw;
454
Bruce Allan61c25052006-09-27 12:53:54 -0700455 /* Power down the PHY so no link is implied when interface is down *
Joe Perchesc3033b02008-03-21 11:06:25 -0700456 * The PHY cannot be powered down if any of the following is true *
Auke Kok79f05bf2006-06-27 09:06:32 -0700457 * (a) WoL is enabled
458 * (b) AMT is active
459 * (c) SoL/IDER session is active */
Joe Perches1dc32912008-07-11 15:17:08 -0700460 if (!adapter->wol && hw->mac_type >= e1000_82540 &&
461 hw->media_type == e1000_media_type_copper) {
Joe Perches406874a2008-04-03 10:06:32 -0700462 u16 mii_reg = 0;
Bruce Allan61c25052006-09-27 12:53:54 -0700463
Joe Perches1dc32912008-07-11 15:17:08 -0700464 switch (hw->mac_type) {
Bruce Allan61c25052006-09-27 12:53:54 -0700465 case e1000_82540:
466 case e1000_82545:
467 case e1000_82545_rev_3:
468 case e1000_82546:
Dirk Brandewie5377a412011-01-06 14:29:54 +0000469 case e1000_ce4100:
Bruce Allan61c25052006-09-27 12:53:54 -0700470 case e1000_82546_rev_3:
471 case e1000_82541:
472 case e1000_82541_rev_2:
473 case e1000_82547:
474 case e1000_82547_rev_2:
Joe Perches1dc32912008-07-11 15:17:08 -0700475 if (er32(MANC) & E1000_MANC_SMBUS_EN)
Bruce Allan61c25052006-09-27 12:53:54 -0700476 goto out;
477 break;
Bruce Allan61c25052006-09-27 12:53:54 -0700478 default:
479 goto out;
480 }
Joe Perches1dc32912008-07-11 15:17:08 -0700481 e1000_read_phy_reg(hw, PHY_CTRL, &mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700482 mii_reg |= MII_CR_POWER_DOWN;
Joe Perches1dc32912008-07-11 15:17:08 -0700483 e1000_write_phy_reg(hw, PHY_CTRL, mii_reg);
Auke Kok79f05bf2006-06-27 09:06:32 -0700484 mdelay(1);
485 }
Bruce Allan61c25052006-09-27 12:53:54 -0700486out:
487 return;
Auke Kok79f05bf2006-06-27 09:06:32 -0700488}
489
Joe Perches64798842008-07-11 15:17:02 -0700490void e1000_down(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000492 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 struct net_device *netdev = adapter->netdev;
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000494 u32 rctl, tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Auke Kok1314bbf2006-09-27 12:54:02 -0700496
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000497 /* disable receives in the hardware */
498 rctl = er32(RCTL);
499 ew32(RCTL, rctl & ~E1000_RCTL_EN);
500 /* flush and sleep below */
501
Jesse Brandeburg51851072009-09-25 12:17:01 +0000502 netif_tx_disable(netdev);
Jesse Brandeburga6c42322009-03-25 21:59:22 +0000503
504 /* disable transmits in the hardware */
505 tctl = er32(TCTL);
506 tctl &= ~E1000_TCTL_EN;
507 ew32(TCTL, tctl);
508 /* flush both disables and wait for them to finish */
509 E1000_WRITE_FLUSH();
510 msleep(10);
511
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700512 napi_disable(&adapter->napi);
Francois Romieuc3570ac2008-07-11 15:17:38 -0700513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 e1000_irq_disable(adapter);
Jeff Kirsherc1605eb2006-03-02 18:16:38 -0800515
Anupam Chandaab088532010-11-21 09:54:21 -0800516 /*
517 * Setting DOWN must be after irq_disable to prevent
518 * a screaming interrupt. Setting DOWN also prevents
519 * timers and tasks from rescheduling.
520 */
521 set_bit(__E1000_DOWN, &adapter->flags);
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 del_timer_sync(&adapter->tx_fifo_stall_timer);
524 del_timer_sync(&adapter->watchdog_timer);
525 del_timer_sync(&adapter->phy_info_timer);
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 adapter->link_speed = 0;
528 adapter->link_duplex = 0;
529 netif_carrier_off(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 e1000_reset(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400532 e1000_clean_all_tx_rings(adapter);
533 e1000_clean_all_rx_rings(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
stephen hemminger38df7a32010-10-21 07:50:57 +0000536static void e1000_reinit_safe(struct e1000_adapter *adapter)
Jesse Brandeburg338c15e2010-09-22 18:22:42 +0000537{
538 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
539 msleep(1);
540 rtnl_lock();
541 e1000_down(adapter);
542 e1000_up(adapter);
543 rtnl_unlock();
544 clear_bit(__E1000_RESETTING, &adapter->flags);
545}
546
Joe Perches64798842008-07-11 15:17:02 -0700547void e1000_reinit_locked(struct e1000_adapter *adapter)
Auke Kok2db10a02006-06-27 09:06:28 -0700548{
Jesse Brandeburg338c15e2010-09-22 18:22:42 +0000549 /* if rtnl_lock is not held the call path is bogus */
550 ASSERT_RTNL();
Auke Kok2db10a02006-06-27 09:06:28 -0700551 WARN_ON(in_interrupt());
552 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
553 msleep(1);
554 e1000_down(adapter);
555 e1000_up(adapter);
556 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Joe Perches64798842008-07-11 15:17:02 -0700559void e1000_reset(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Joe Perches1dc32912008-07-11 15:17:08 -0700561 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -0700562 u32 pba = 0, tx_space, min_tx_space, min_rx_space;
Joe Perchesc3033b02008-03-21 11:06:25 -0700563 bool legacy_pba_adjust = false;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000564 u16 hwm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 /* Repartition Pba for greater than 9k mtu
567 * To take effect CTRL.RST is required.
568 */
569
Joe Perches1dc32912008-07-11 15:17:08 -0700570 switch (hw->mac_type) {
Bruce Allan018ea442006-12-15 10:39:45 +0100571 case e1000_82542_rev2_0:
572 case e1000_82542_rev2_1:
573 case e1000_82543:
574 case e1000_82544:
575 case e1000_82540:
576 case e1000_82541:
577 case e1000_82541_rev_2:
Joe Perchesc3033b02008-03-21 11:06:25 -0700578 legacy_pba_adjust = true;
Bruce Allan018ea442006-12-15 10:39:45 +0100579 pba = E1000_PBA_48K;
580 break;
581 case e1000_82545:
582 case e1000_82545_rev_3:
583 case e1000_82546:
Dirk Brandewie5377a412011-01-06 14:29:54 +0000584 case e1000_ce4100:
Bruce Allan018ea442006-12-15 10:39:45 +0100585 case e1000_82546_rev_3:
586 pba = E1000_PBA_48K;
587 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700588 case e1000_82547:
Malli Chilakala0e6ef3e2005-04-28 19:44:14 -0700589 case e1000_82547_rev_2:
Joe Perchesc3033b02008-03-21 11:06:25 -0700590 legacy_pba_adjust = true;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700591 pba = E1000_PBA_30K;
592 break;
Bruce Allan018ea442006-12-15 10:39:45 +0100593 case e1000_undefined:
594 case e1000_num_macs:
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700595 break;
596 }
597
Joe Perchesc3033b02008-03-21 11:06:25 -0700598 if (legacy_pba_adjust) {
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000599 if (hw->max_frame_size > E1000_RXBUFFER_8192)
Bruce Allan018ea442006-12-15 10:39:45 +0100600 pba -= 8; /* allocate more FIFO for Tx */
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700601
Joe Perches1dc32912008-07-11 15:17:08 -0700602 if (hw->mac_type == e1000_82547) {
Bruce Allan018ea442006-12-15 10:39:45 +0100603 adapter->tx_fifo_head = 0;
604 adapter->tx_head_addr = pba << E1000_TX_HEAD_ADDR_SHIFT;
605 adapter->tx_fifo_size =
606 (E1000_PBA_40K - pba) << E1000_PBA_BYTES_SHIFT;
607 atomic_set(&adapter->tx_fifo_stall, 0);
608 }
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000609 } else if (hw->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allan018ea442006-12-15 10:39:45 +0100610 /* adjust PBA for jumbo frames */
Joe Perches1dc32912008-07-11 15:17:08 -0700611 ew32(PBA, pba);
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700612
Bruce Allan018ea442006-12-15 10:39:45 +0100613 /* To maintain wire speed transmits, the Tx FIFO should be
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000614 * large enough to accommodate two full transmit packets,
Bruce Allan018ea442006-12-15 10:39:45 +0100615 * rounded up to the next 1KB and expressed in KB. Likewise,
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000616 * the Rx FIFO should be large enough to accommodate at least
Bruce Allan018ea442006-12-15 10:39:45 +0100617 * one full receive packet and is similarly rounded up and
618 * expressed in KB. */
Joe Perches1dc32912008-07-11 15:17:08 -0700619 pba = er32(PBA);
Bruce Allan018ea442006-12-15 10:39:45 +0100620 /* upper 16 bits has Tx packet buffer allocation size in KB */
621 tx_space = pba >> 16;
622 /* lower 16 bits has Rx packet buffer allocation size in KB */
623 pba &= 0xffff;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000624 /*
625 * the tx fifo also stores 16 bytes of information about the tx
626 * but don't include ethernet FCS because hardware appends it
627 */
628 min_tx_space = (hw->max_frame_size +
629 sizeof(struct e1000_tx_desc) -
630 ETH_FCS_LEN) * 2;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700631 min_tx_space = ALIGN(min_tx_space, 1024);
Bruce Allan018ea442006-12-15 10:39:45 +0100632 min_tx_space >>= 10;
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000633 /* software strips receive CRC, so leave room for it */
634 min_rx_space = hw->max_frame_size;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700635 min_rx_space = ALIGN(min_rx_space, 1024);
Bruce Allan018ea442006-12-15 10:39:45 +0100636 min_rx_space >>= 10;
637
638 /* If current Tx allocation is less than the min Tx FIFO size,
639 * and the min Tx FIFO size is less than the current Rx FIFO
640 * allocation, take space away from current Rx allocation */
641 if (tx_space < min_tx_space &&
642 ((min_tx_space - tx_space) < pba)) {
643 pba = pba - (min_tx_space - tx_space);
644
645 /* PCI/PCIx hardware has PBA alignment constraints */
Joe Perches1dc32912008-07-11 15:17:08 -0700646 switch (hw->mac_type) {
Bruce Allan018ea442006-12-15 10:39:45 +0100647 case e1000_82545 ... e1000_82546_rev_3:
648 pba &= ~(E1000_PBA_8K - 1);
649 break;
650 default:
651 break;
652 }
653
654 /* if short on rx space, rx wins and must trump tx
655 * adjustment or use Early Receive if available */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +0000656 if (pba < min_rx_space)
657 pba = min_rx_space;
Bruce Allan018ea442006-12-15 10:39:45 +0100658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700660
Joe Perches1dc32912008-07-11 15:17:08 -0700661 ew32(PBA, pba);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000663 /*
664 * flow control settings:
665 * The high water mark must be low enough to fit one full frame
666 * (or the size used for early receive) above it in the Rx FIFO.
667 * Set it to the lower of:
668 * - 90% of the Rx FIFO size, and
669 * - the full Rx FIFO size minus the early receive size (for parts
670 * with ERT support assuming ERT set to E1000_ERT_2048), or
671 * - the full Rx FIFO size minus one full frame
672 */
673 hwm = min(((pba << 10) * 9 / 10),
674 ((pba << 10) - hw->max_frame_size));
Jeff Kirsherf11b7f82006-01-12 16:50:51 -0800675
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +0000676 hw->fc_high_water = hwm & 0xFFF8; /* 8-byte granularity */
677 hw->fc_low_water = hw->fc_high_water - 8;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +0000678 hw->fc_pause_time = E1000_FC_PAUSE_TIME;
Joe Perches1dc32912008-07-11 15:17:08 -0700679 hw->fc_send_xon = 1;
680 hw->fc = hw->original_fc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700682 /* Allow time for pending master requests to run */
Joe Perches1dc32912008-07-11 15:17:08 -0700683 e1000_reset_hw(hw);
684 if (hw->mac_type >= e1000_82544)
685 ew32(WUC, 0);
Jeff Kirsher09ae3e82006-09-27 12:53:51 -0700686
Joe Perches1dc32912008-07-11 15:17:08 -0700687 if (e1000_init_hw(hw))
Emil Tantilovfeb8f472010-07-26 23:37:21 -0700688 e_dev_err("Hardware Error\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700689 e1000_update_mng_vlan(adapter);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100690
691 /* if (adapter->hwflags & HWFLAGS_PHY_PWR_BIT) { */
Joe Perches1dc32912008-07-11 15:17:08 -0700692 if (hw->mac_type >= e1000_82544 &&
Joe Perches1dc32912008-07-11 15:17:08 -0700693 hw->autoneg == 1 &&
694 hw->autoneg_advertised == ADVERTISE_1000_FULL) {
695 u32 ctrl = er32(CTRL);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100696 /* clear phy power management bit if we are in gig only mode,
697 * which if enabled will attempt negotiation to 100Mb, which
698 * can cause a loss of link at power off or driver unload */
699 ctrl &= ~E1000_CTRL_SWDPIN3;
Joe Perches1dc32912008-07-11 15:17:08 -0700700 ew32(CTRL, ctrl);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100701 }
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
Joe Perches1dc32912008-07-11 15:17:08 -0700704 ew32(VET, ETHERNET_IEEE_VLAN_TYPE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Joe Perches1dc32912008-07-11 15:17:08 -0700706 e1000_reset_adaptive(hw);
707 e1000_phy_get_info(hw, &adapter->phy_info);
Auke Kok9a53a202006-06-27 09:06:45 -0700708
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500709 e1000_release_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
712/**
Auke Kok67b3c272007-12-17 13:50:23 -0800713 * Dump the eeprom for users having checksum issues
714 **/
Adrian Bunkb4ea8952008-02-01 08:21:28 -0800715static void e1000_dump_eeprom(struct e1000_adapter *adapter)
Auke Kok67b3c272007-12-17 13:50:23 -0800716{
717 struct net_device *netdev = adapter->netdev;
718 struct ethtool_eeprom eeprom;
719 const struct ethtool_ops *ops = netdev->ethtool_ops;
720 u8 *data;
721 int i;
722 u16 csum_old, csum_new = 0;
723
724 eeprom.len = ops->get_eeprom_len(netdev);
725 eeprom.offset = 0;
726
727 data = kmalloc(eeprom.len, GFP_KERNEL);
728 if (!data) {
Emil Tantilov675ad472010-04-27 14:02:58 +0000729 pr_err("Unable to allocate memory to dump EEPROM data\n");
Auke Kok67b3c272007-12-17 13:50:23 -0800730 return;
731 }
732
733 ops->get_eeprom(netdev, &eeprom, data);
734
735 csum_old = (data[EEPROM_CHECKSUM_REG * 2]) +
736 (data[EEPROM_CHECKSUM_REG * 2 + 1] << 8);
737 for (i = 0; i < EEPROM_CHECKSUM_REG * 2; i += 2)
738 csum_new += data[i] + (data[i + 1] << 8);
739 csum_new = EEPROM_SUM - csum_new;
740
Emil Tantilov675ad472010-04-27 14:02:58 +0000741 pr_err("/*********************/\n");
742 pr_err("Current EEPROM Checksum : 0x%04x\n", csum_old);
743 pr_err("Calculated : 0x%04x\n", csum_new);
Auke Kok67b3c272007-12-17 13:50:23 -0800744
Emil Tantilov675ad472010-04-27 14:02:58 +0000745 pr_err("Offset Values\n");
746 pr_err("======== ======\n");
Auke Kok67b3c272007-12-17 13:50:23 -0800747 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, data, 128, 0);
748
Emil Tantilov675ad472010-04-27 14:02:58 +0000749 pr_err("Include this output when contacting your support provider.\n");
750 pr_err("This is not a software error! Something bad happened to\n");
751 pr_err("your hardware or EEPROM image. Ignoring this problem could\n");
752 pr_err("result in further problems, possibly loss of data,\n");
753 pr_err("corruption or system hangs!\n");
754 pr_err("The MAC Address will be reset to 00:00:00:00:00:00,\n");
755 pr_err("which is invalid and requires you to set the proper MAC\n");
756 pr_err("address manually before continuing to enable this network\n");
757 pr_err("device. Please inspect the EEPROM dump and report the\n");
758 pr_err("issue to your hardware vendor or Intel Customer Support.\n");
759 pr_err("/*********************/\n");
Auke Kok67b3c272007-12-17 13:50:23 -0800760
761 kfree(data);
762}
763
764/**
Taku Izumi81250292008-07-11 15:17:44 -0700765 * e1000_is_need_ioport - determine if an adapter needs ioport resources or not
766 * @pdev: PCI device information struct
767 *
768 * Return true if an adapter needs ioport resources
769 **/
770static int e1000_is_need_ioport(struct pci_dev *pdev)
771{
772 switch (pdev->device) {
773 case E1000_DEV_ID_82540EM:
774 case E1000_DEV_ID_82540EM_LOM:
775 case E1000_DEV_ID_82540EP:
776 case E1000_DEV_ID_82540EP_LOM:
777 case E1000_DEV_ID_82540EP_LP:
778 case E1000_DEV_ID_82541EI:
779 case E1000_DEV_ID_82541EI_MOBILE:
780 case E1000_DEV_ID_82541ER:
781 case E1000_DEV_ID_82541ER_LOM:
782 case E1000_DEV_ID_82541GI:
783 case E1000_DEV_ID_82541GI_LF:
784 case E1000_DEV_ID_82541GI_MOBILE:
785 case E1000_DEV_ID_82544EI_COPPER:
786 case E1000_DEV_ID_82544EI_FIBER:
787 case E1000_DEV_ID_82544GC_COPPER:
788 case E1000_DEV_ID_82544GC_LOM:
789 case E1000_DEV_ID_82545EM_COPPER:
790 case E1000_DEV_ID_82545EM_FIBER:
791 case E1000_DEV_ID_82546EB_COPPER:
792 case E1000_DEV_ID_82546EB_FIBER:
793 case E1000_DEV_ID_82546EB_QUAD_COPPER:
794 return true;
795 default:
796 return false;
797 }
798}
799
Michał Mirosławe97d3202011-06-08 08:36:42 +0000800static int e1000_set_features(struct net_device *netdev, u32 features)
801{
802 struct e1000_adapter *adapter = netdev_priv(netdev);
803 u32 changed = features ^ netdev->features;
804
805 if (!(changed & NETIF_F_RXCSUM))
806 return 0;
807
808 adapter->rx_csum = !!(features & NETIF_F_RXCSUM);
809
810 if (netif_running(netdev))
811 e1000_reinit_locked(adapter);
812 else
813 e1000_reset(adapter);
814
815 return 0;
816}
817
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800818static const struct net_device_ops e1000_netdev_ops = {
819 .ndo_open = e1000_open,
820 .ndo_stop = e1000_close,
Stephen Hemminger00829822008-11-20 20:14:53 -0800821 .ndo_start_xmit = e1000_xmit_frame,
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800822 .ndo_get_stats = e1000_get_stats,
823 .ndo_set_rx_mode = e1000_set_rx_mode,
824 .ndo_set_mac_address = e1000_set_mac,
825 .ndo_tx_timeout = e1000_tx_timeout,
826 .ndo_change_mtu = e1000_change_mtu,
827 .ndo_do_ioctl = e1000_ioctl,
828 .ndo_validate_addr = eth_validate_addr,
829
830 .ndo_vlan_rx_register = e1000_vlan_rx_register,
831 .ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
832 .ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
833#ifdef CONFIG_NET_POLL_CONTROLLER
834 .ndo_poll_controller = e1000_netpoll,
835#endif
Michał Mirosławe97d3202011-06-08 08:36:42 +0000836 .ndo_set_features = e1000_set_features,
Stephen Hemminger0e7614b2008-11-19 22:18:22 -0800837};
838
Taku Izumi81250292008-07-11 15:17:44 -0700839/**
Jesse Brandeburge508be12010-09-07 21:01:12 +0000840 * e1000_init_hw_struct - initialize members of hw struct
841 * @adapter: board private struct
842 * @hw: structure used by e1000_hw.c
843 *
844 * Factors out initialization of the e1000_hw struct to its own function
845 * that can be called very early at init (just after struct allocation).
846 * Fields are initialized based on PCI device information and
847 * OS network device settings (MTU size).
848 * Returns negative error codes if MAC type setup fails.
849 */
850static int e1000_init_hw_struct(struct e1000_adapter *adapter,
851 struct e1000_hw *hw)
852{
853 struct pci_dev *pdev = adapter->pdev;
854
855 /* PCI config space info */
856 hw->vendor_id = pdev->vendor;
857 hw->device_id = pdev->device;
858 hw->subsystem_vendor_id = pdev->subsystem_vendor;
859 hw->subsystem_id = pdev->subsystem_device;
860 hw->revision_id = pdev->revision;
861
862 pci_read_config_word(pdev, PCI_COMMAND, &hw->pci_cmd_word);
863
864 hw->max_frame_size = adapter->netdev->mtu +
865 ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
866 hw->min_frame_size = MINIMUM_ETHERNET_FRAME_SIZE;
867
868 /* identify the MAC */
869 if (e1000_set_mac_type(hw)) {
870 e_err(probe, "Unknown MAC Type\n");
871 return -EIO;
872 }
873
874 switch (hw->mac_type) {
875 default:
876 break;
877 case e1000_82541:
878 case e1000_82547:
879 case e1000_82541_rev_2:
880 case e1000_82547_rev_2:
881 hw->phy_init_script = 1;
882 break;
883 }
884
885 e1000_set_media_type(hw);
886 e1000_get_bus_info(hw);
887
888 hw->wait_autoneg_complete = false;
889 hw->tbi_compatibility_en = true;
890 hw->adaptive_ifs = true;
891
892 /* Copper options */
893
894 if (hw->media_type == e1000_media_type_copper) {
895 hw->mdix = AUTO_ALL_MODES;
896 hw->disable_polarity_correction = false;
897 hw->master_slave = E1000_MASTER_SLAVE;
898 }
899
900 return 0;
901}
902
903/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 * e1000_probe - Device Initialization Routine
905 * @pdev: PCI device information struct
906 * @ent: entry in e1000_pci_tbl
907 *
908 * Returns 0 on success, negative on failure
909 *
910 * e1000_probe initializes an adapter identified by a pci_dev structure.
911 * The OS initialization, configuring of the adapter private structure,
912 * and a hardware reset occur.
913 **/
Joe Perches1dc32912008-07-11 15:17:08 -0700914static int __devinit e1000_probe(struct pci_dev *pdev,
915 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
917 struct net_device *netdev;
918 struct e1000_adapter *adapter;
Joe Perches1dc32912008-07-11 15:17:08 -0700919 struct e1000_hw *hw;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 static int cards_found = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -0700922 static int global_quad_port_a = 0; /* global ksp3 port a indication */
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700923 int i, err, pci_using_dac;
Joe Perches406874a2008-04-03 10:06:32 -0700924 u16 eeprom_data = 0;
Dirk Brandewie5377a412011-01-06 14:29:54 +0000925 u16 tmp = 0;
Joe Perches406874a2008-04-03 10:06:32 -0700926 u16 eeprom_apme_mask = E1000_EEPROM_APME;
Taku Izumi81250292008-07-11 15:17:44 -0700927 int bars, need_ioport;
Joe Perches0795af52007-10-03 17:59:30 -0700928
Taku Izumi81250292008-07-11 15:17:44 -0700929 /* do not allocate ioport bars when not needed */
930 need_ioport = e1000_is_need_ioport(pdev);
931 if (need_ioport) {
932 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
933 err = pci_enable_device(pdev);
934 } else {
935 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Karsten Keil4d7155b2009-02-03 15:18:01 -0800936 err = pci_enable_device_mem(pdev);
Taku Izumi81250292008-07-11 15:17:44 -0700937 }
Joe Perchesc7be73b2008-07-11 15:17:28 -0700938 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return err;
940
Taku Izumi81250292008-07-11 15:17:44 -0700941 err = pci_request_selected_regions(pdev, bars, e1000_driver_name);
Joe Perchesc7be73b2008-07-11 15:17:28 -0700942 if (err)
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700943 goto err_pci_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 pci_set_master(pdev);
Nick Nunleydbb5aae2010-02-03 14:49:48 +0000946 err = pci_save_state(pdev);
947 if (err)
948 goto err_alloc_etherdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700950 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700952 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 goto err_alloc_etherdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 SET_NETDEV_DEV(netdev, &pdev->dev);
956
957 pci_set_drvdata(pdev, netdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -0700958 adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 adapter->netdev = netdev;
960 adapter->pdev = pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 adapter->msg_enable = (1 << debug) - 1;
Taku Izumi81250292008-07-11 15:17:44 -0700962 adapter->bars = bars;
963 adapter->need_ioport = need_ioport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Joe Perches1dc32912008-07-11 15:17:08 -0700965 hw = &adapter->hw;
966 hw->back = adapter;
967
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700968 err = -EIO;
Arjan van de Ven275f1652008-10-20 21:42:39 -0700969 hw->hw_addr = pci_ioremap_bar(pdev, BAR_0);
Joe Perches1dc32912008-07-11 15:17:08 -0700970 if (!hw->hw_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 goto err_ioremap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Taku Izumi81250292008-07-11 15:17:44 -0700973 if (adapter->need_ioport) {
974 for (i = BAR_1; i <= BAR_5; i++) {
975 if (pci_resource_len(pdev, i) == 0)
976 continue;
977 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
978 hw->io_base = pci_resource_start(pdev, i);
979 break;
980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
982 }
983
Jesse Brandeburge508be12010-09-07 21:01:12 +0000984 /* make ready for any if (hw->...) below */
985 err = e1000_init_hw_struct(adapter, hw);
986 if (err)
987 goto err_sw_init;
988
989 /*
990 * there is a workaround being applied below that limits
991 * 64-bit DMA addresses to 64-bit hardware. There are some
992 * 32-bit adapters that Tx hang when given 64-bit DMA addresses
993 */
994 pci_using_dac = 0;
995 if ((hw->bus_type == e1000_bus_type_pcix) &&
996 !dma_set_mask(&pdev->dev, DMA_BIT_MASK(64))) {
997 /*
998 * according to DMA-API-HOWTO, coherent calls will always
999 * succeed if the set call did
1000 */
1001 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
1002 pci_using_dac = 1;
Jesse Brandeburge508be12010-09-07 21:01:12 +00001003 } else {
Dean Nelson19a0b672010-11-11 05:50:25 +00001004 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
1005 if (err) {
1006 pr_err("No usable DMA config, aborting\n");
1007 goto err_dma;
1008 }
1009 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
Jesse Brandeburge508be12010-09-07 21:01:12 +00001010 }
1011
Stephen Hemminger0e7614b2008-11-19 22:18:22 -08001012 netdev->netdev_ops = &e1000_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 e1000_set_ethtool_ops(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 netdev->watchdog_timeo = 5 * HZ;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001015 netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
Stephen Hemminger0e7614b2008-11-19 22:18:22 -08001016
Auke Kok0eb5a342006-09-27 12:53:17 -07001017 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 adapter->bd_number = cards_found;
1020
1021 /* setup the private structure */
1022
Joe Perchesc7be73b2008-07-11 15:17:28 -07001023 err = e1000_sw_init(adapter);
1024 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 goto err_sw_init;
1026
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001027 err = -EIO;
Dirk Brandewie5377a412011-01-06 14:29:54 +00001028 if (hw->mac_type == e1000_ce4100) {
1029 ce4100_gbe_mdio_base_phy = pci_resource_start(pdev, BAR_1);
1030 ce4100_gbe_mdio_base_virt = ioremap(ce4100_gbe_mdio_base_phy,
1031 pci_resource_len(pdev, BAR_1));
1032
1033 if (!ce4100_gbe_mdio_base_virt)
1034 goto err_mdio_ioremap;
1035 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001036
Joe Perches1dc32912008-07-11 15:17:08 -07001037 if (hw->mac_type >= e1000_82543) {
Michał Mirosławe97d3202011-06-08 08:36:42 +00001038 netdev->hw_features = NETIF_F_SG |
1039 NETIF_F_HW_CSUM;
1040 netdev->features = NETIF_F_HW_VLAN_TX |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 NETIF_F_HW_VLAN_RX |
1042 NETIF_F_HW_VLAN_FILTER;
1043 }
1044
Joe Perches1dc32912008-07-11 15:17:08 -07001045 if ((hw->mac_type >= e1000_82544) &&
1046 (hw->mac_type != e1000_82547))
Michał Mirosławe97d3202011-06-08 08:36:42 +00001047 netdev->hw_features |= NETIF_F_TSO;
1048
1049 netdev->features |= netdev->hw_features;
1050 netdev->hw_features |= NETIF_F_RXCSUM;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001051
Yi Zou7b872a52010-09-22 17:57:58 +00001052 if (pci_using_dac) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00001054 netdev->vlan_features |= NETIF_F_HIGHDMA;
1055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Patrick McHardy20501a62008-10-11 12:25:59 -07001057 netdev->vlan_features |= NETIF_F_TSO;
Patrick McHardy20501a62008-10-11 12:25:59 -07001058 netdev->vlan_features |= NETIF_F_HW_CSUM;
1059 netdev->vlan_features |= NETIF_F_SG;
1060
Joe Perches1dc32912008-07-11 15:17:08 -07001061 adapter->en_mng_pt = e1000_enable_mng_pass_thru(hw);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001062
Auke Kokcd94dd02006-06-27 09:08:22 -07001063 /* initialize eeprom parameters */
Joe Perches1dc32912008-07-11 15:17:08 -07001064 if (e1000_init_eeprom_params(hw)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001065 e_err(probe, "EEPROM initialization failed\n");
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001066 goto err_eeprom;
Auke Kokcd94dd02006-06-27 09:08:22 -07001067 }
1068
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001069 /* before reading the EEPROM, reset the controller to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 * put the device in a known good starting state */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001071
Joe Perches1dc32912008-07-11 15:17:08 -07001072 e1000_reset_hw(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 /* make sure the EEPROM is good */
Joe Perches1dc32912008-07-11 15:17:08 -07001075 if (e1000_validate_eeprom_checksum(hw) < 0) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001076 e_err(probe, "The EEPROM Checksum Is Not Valid\n");
Auke Kok67b3c272007-12-17 13:50:23 -08001077 e1000_dump_eeprom(adapter);
1078 /*
1079 * set MAC address to all zeroes to invalidate and temporary
1080 * disable this device for the user. This blocks regular
1081 * traffic while still permitting ethtool ioctls from reaching
1082 * the hardware as well as allowing the user to run the
1083 * interface after manually setting a hw addr using
1084 * `ip set address`
1085 */
Joe Perches1dc32912008-07-11 15:17:08 -07001086 memset(hw->mac_addr, 0, netdev->addr_len);
Auke Kok67b3c272007-12-17 13:50:23 -08001087 } else {
1088 /* copy the MAC address out of the EEPROM */
Joe Perches1dc32912008-07-11 15:17:08 -07001089 if (e1000_read_mac_addr(hw))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001090 e_err(probe, "EEPROM Read Error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
Auke Kok67b3c272007-12-17 13:50:23 -08001092 /* don't block initalization here due to bad MAC address */
Joe Perches1dc32912008-07-11 15:17:08 -07001093 memcpy(netdev->dev_addr, hw->mac_addr, netdev->addr_len);
1094 memcpy(netdev->perm_addr, hw->mac_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Auke Kok67b3c272007-12-17 13:50:23 -08001096 if (!is_valid_ether_addr(netdev->perm_addr))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001097 e_err(probe, "Invalid MAC Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 init_timer(&adapter->tx_fifo_stall_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00001100 adapter->tx_fifo_stall_timer.function = e1000_82547_tx_fifo_stall;
Joe Perchese982f172008-07-11 15:17:18 -07001101 adapter->tx_fifo_stall_timer.data = (unsigned long)adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00001104 adapter->watchdog_timer.function = e1000_watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 adapter->watchdog_timer.data = (unsigned long) adapter;
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 init_timer(&adapter->phy_info_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00001108 adapter->phy_info_timer.function = e1000_update_phy_info;
Joe Perchese982f172008-07-11 15:17:18 -07001109 adapter->phy_info_timer.data = (unsigned long)adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00001111 INIT_WORK(&adapter->fifo_stall_task, e1000_82547_tx_fifo_stall_task);
David Howells65f27f32006-11-22 14:55:48 +00001112 INIT_WORK(&adapter->reset_task, e1000_reset_task);
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00001113 INIT_WORK(&adapter->phy_info_task, e1000_update_phy_info_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 e1000_check_options(adapter);
1116
1117 /* Initial Wake on LAN setting
1118 * If APM wake is enabled in the EEPROM,
1119 * enable the ACPI Magic Packet filter
1120 */
1121
Joe Perches1dc32912008-07-11 15:17:08 -07001122 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 case e1000_82542_rev2_0:
1124 case e1000_82542_rev2_1:
1125 case e1000_82543:
1126 break;
1127 case e1000_82544:
Joe Perches1dc32912008-07-11 15:17:08 -07001128 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 EEPROM_INIT_CONTROL2_REG, 1, &eeprom_data);
1130 eeprom_apme_mask = E1000_EEPROM_82544_APM;
1131 break;
1132 case e1000_82546:
1133 case e1000_82546_rev_3:
Joe Perches1dc32912008-07-11 15:17:08 -07001134 if (er32(STATUS) & E1000_STATUS_FUNC_1){
1135 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 EEPROM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
1137 break;
1138 }
1139 /* Fall Through */
1140 default:
Joe Perches1dc32912008-07-11 15:17:08 -07001141 e1000_read_eeprom(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 EEPROM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
1143 break;
1144 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001145 if (eeprom_data & eeprom_apme_mask)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001146 adapter->eeprom_wol |= E1000_WUFC_MAG;
1147
1148 /* now that we have the eeprom settings, apply the special cases
1149 * where the eeprom may be wrong or the board simply won't support
1150 * wake on lan on a particular port */
1151 switch (pdev->device) {
1152 case E1000_DEV_ID_82546GB_PCIE:
1153 adapter->eeprom_wol = 0;
1154 break;
1155 case E1000_DEV_ID_82546EB_FIBER:
1156 case E1000_DEV_ID_82546GB_FIBER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001157 /* Wake events only supported on port A for dual fiber
1158 * regardless of eeprom setting */
Joe Perches1dc32912008-07-11 15:17:08 -07001159 if (er32(STATUS) & E1000_STATUS_FUNC_1)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001160 adapter->eeprom_wol = 0;
1161 break;
1162 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
1163 /* if quad port adapter, disable WoL on all but port A */
1164 if (global_quad_port_a != 0)
1165 adapter->eeprom_wol = 0;
1166 else
1167 adapter->quad_port_a = 1;
1168 /* Reset for multiple quad port adapters */
1169 if (++global_quad_port_a == 4)
1170 global_quad_port_a = 0;
1171 break;
1172 }
1173
1174 /* initialize the wol settings based on the eeprom settings */
1175 adapter->wol = adapter->eeprom_wol;
\"Rafael J. Wysocki\de126482008-11-07 20:30:19 +00001176 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Dirk Brandewie5377a412011-01-06 14:29:54 +00001178 /* Auto detect PHY address */
1179 if (hw->mac_type == e1000_ce4100) {
1180 for (i = 0; i < 32; i++) {
1181 hw->phy_addr = i;
1182 e1000_read_phy_reg(hw, PHY_ID2, &tmp);
1183 if (tmp == 0 || tmp == 0xFF) {
1184 if (i == 31)
1185 goto err_eeprom;
1186 continue;
1187 } else
1188 break;
1189 }
1190 }
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 /* reset the hardware with the new settings */
1193 e1000_reset(adapter);
1194
Auke Kok416b5d12007-06-01 10:22:39 -07001195 strcpy(netdev->name, "eth%d");
Joe Perchesc7be73b2008-07-11 15:17:28 -07001196 err = register_netdev(netdev);
1197 if (err)
Auke Kok416b5d12007-06-01 10:22:39 -07001198 goto err_register;
Auke Kok1314bbf2006-09-27 12:54:02 -07001199
Emil Tantilov675ad472010-04-27 14:02:58 +00001200 /* print bus type/speed/width info */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001201 e_info(probe, "(PCI%s:%dMHz:%d-bit) %pM\n",
Joe Perches7837e582010-06-11 12:51:49 +00001202 ((hw->bus_type == e1000_bus_type_pcix) ? "-X" : ""),
1203 ((hw->bus_speed == e1000_bus_speed_133) ? 133 :
1204 (hw->bus_speed == e1000_bus_speed_120) ? 120 :
1205 (hw->bus_speed == e1000_bus_speed_100) ? 100 :
1206 (hw->bus_speed == e1000_bus_speed_66) ? 66 : 33),
1207 ((hw->bus_width == e1000_bus_width_64) ? 64 : 32),
1208 netdev->dev_addr);
Emil Tantilov675ad472010-04-27 14:02:58 +00001209
Jesse Brandeburgeb62efd2009-04-17 20:44:36 +00001210 /* carrier off reporting is important to ethtool even BEFORE open */
1211 netif_carrier_off(netdev);
1212
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001213 e_info(probe, "Intel(R) PRO/1000 Network Connection\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 cards_found++;
1216 return 0;
1217
1218err_register:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001219err_eeprom:
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001220 e1000_phy_hw_reset(hw);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001221
Joe Perches1dc32912008-07-11 15:17:08 -07001222 if (hw->flash_address)
1223 iounmap(hw->flash_address);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001224 kfree(adapter->tx_ring);
1225 kfree(adapter->rx_ring);
Jesse Brandeburge508be12010-09-07 21:01:12 +00001226err_dma:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227err_sw_init:
Dirk Brandewie5377a412011-01-06 14:29:54 +00001228err_mdio_ioremap:
1229 iounmap(ce4100_gbe_mdio_base_virt);
Joe Perches1dc32912008-07-11 15:17:08 -07001230 iounmap(hw->hw_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231err_ioremap:
1232 free_netdev(netdev);
1233err_alloc_etherdev:
Taku Izumi81250292008-07-11 15:17:44 -07001234 pci_release_selected_regions(pdev, bars);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001235err_pci_reg:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001236 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return err;
1238}
1239
1240/**
1241 * e1000_remove - Device Removal Routine
1242 * @pdev: PCI device information struct
1243 *
1244 * e1000_remove is called by the PCI subsystem to alert the driver
1245 * that it should release a PCI device. The could be caused by a
1246 * Hot-Plug event, or because the driver is going to be removed from
1247 * memory.
1248 **/
1249
Joe Perches64798842008-07-11 15:17:02 -07001250static void __devexit e1000_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
1252 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07001253 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001254 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00001256 set_bit(__E1000_DOWN, &adapter->flags);
1257 del_timer_sync(&adapter->tx_fifo_stall_timer);
1258 del_timer_sync(&adapter->watchdog_timer);
1259 del_timer_sync(&adapter->phy_info_timer);
1260
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07001261 cancel_work_sync(&adapter->reset_task);
Jeff Garzikbe2b28e2005-10-04 07:13:43 -04001262
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05001263 e1000_release_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001265 unregister_netdev(netdev);
1266
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001267 e1000_phy_hw_reset(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001269 kfree(adapter->tx_ring);
1270 kfree(adapter->rx_ring);
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001271
Joe Perches1dc32912008-07-11 15:17:08 -07001272 iounmap(hw->hw_addr);
1273 if (hw->flash_address)
1274 iounmap(hw->flash_address);
Taku Izumi81250292008-07-11 15:17:44 -07001275 pci_release_selected_regions(pdev, adapter->bars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 free_netdev(netdev);
1278
1279 pci_disable_device(pdev);
1280}
1281
1282/**
1283 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
1284 * @adapter: board private structure to initialize
1285 *
1286 * e1000_sw_init initializes the Adapter private data structure.
Jesse Brandeburge508be12010-09-07 21:01:12 +00001287 * e1000_init_hw_struct MUST be called before this function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 **/
1289
Joe Perches64798842008-07-11 15:17:02 -07001290static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
Auke Kokeb0f8052006-07-14 16:14:48 -07001292 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001294 adapter->num_tx_queues = 1;
1295 adapter->num_rx_queues = 1;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001296
1297 if (e1000_alloc_queues(adapter)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001298 e_err(probe, "Unable to allocate memory for queues\n");
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001299 return -ENOMEM;
1300 }
1301
Herbert Xu47313052007-05-29 15:07:31 -07001302 /* Explicitly disable IRQ since the NIC can be in any state. */
Herbert Xu47313052007-05-29 15:07:31 -07001303 e1000_irq_disable(adapter);
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 spin_lock_init(&adapter->stats_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Auke Kok1314bbf2006-09-27 12:54:02 -07001307 set_bit(__E1000_DOWN, &adapter->flags);
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return 0;
1310}
1311
1312/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001313 * e1000_alloc_queues - Allocate memory for all rings
1314 * @adapter: board private structure to initialize
1315 *
1316 * We allocate one ring per queue at run-time since we don't know the
Wang Chen3e1d7cd2008-12-03 22:07:10 -08001317 * number of queues at compile-time.
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001318 **/
1319
Joe Perches64798842008-07-11 15:17:02 -07001320static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001321{
Yan Burman1c7e5b12007-03-06 08:58:04 -08001322 adapter->tx_ring = kcalloc(adapter->num_tx_queues,
1323 sizeof(struct e1000_tx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001324 if (!adapter->tx_ring)
1325 return -ENOMEM;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001326
Yan Burman1c7e5b12007-03-06 08:58:04 -08001327 adapter->rx_ring = kcalloc(adapter->num_rx_queues,
1328 sizeof(struct e1000_rx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001329 if (!adapter->rx_ring) {
1330 kfree(adapter->tx_ring);
1331 return -ENOMEM;
1332 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001333
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001334 return E1000_SUCCESS;
1335}
1336
1337/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 * e1000_open - Called when a network interface is made active
1339 * @netdev: network interface device structure
1340 *
1341 * Returns 0 on success, negative value on failure
1342 *
1343 * The open entry point is called when a network interface is made
1344 * active by the system (IFF_UP). At this point all resources needed
1345 * for transmit and receive operations are allocated, the interrupt
1346 * handler is registered with the OS, the watchdog timer is started,
1347 * and the stack is notified that the interface is ready.
1348 **/
1349
Joe Perches64798842008-07-11 15:17:02 -07001350static int e1000_open(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001352 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001353 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 int err;
1355
Auke Kok2db10a02006-06-27 09:06:28 -07001356 /* disallow open during test */
Auke Kok1314bbf2006-09-27 12:54:02 -07001357 if (test_bit(__E1000_TESTING, &adapter->flags))
Auke Kok2db10a02006-06-27 09:06:28 -07001358 return -EBUSY;
1359
Jesse Brandeburgeb62efd2009-04-17 20:44:36 +00001360 netif_carrier_off(netdev);
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 /* allocate transmit descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001363 err = e1000_setup_all_tx_resources(adapter);
1364 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 goto err_setup_tx;
1366
1367 /* allocate receive descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001368 err = e1000_setup_all_rx_resources(adapter);
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001369 if (err)
Auke Koke0aac5a2007-03-06 08:57:21 -08001370 goto err_setup_rx;
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001371
Auke Kok79f05bf2006-06-27 09:06:32 -07001372 e1000_power_up_phy(adapter);
1373
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001374 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Joe Perches1dc32912008-07-11 15:17:08 -07001375 if ((hw->mng_cookie.status &
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001376 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT)) {
1377 e1000_update_mng_vlan(adapter);
1378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Auke Koke0aac5a2007-03-06 08:57:21 -08001380 /* before we allocate an interrupt, we must be ready to handle it.
1381 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
1382 * as soon as we call pci_request_irq, so we have to setup our
1383 * clean_rx handler before we do so. */
1384 e1000_configure(adapter);
1385
1386 err = e1000_request_irq(adapter);
1387 if (err)
1388 goto err_req_irq;
1389
1390 /* From here on the code is the same as e1000_up() */
1391 clear_bit(__E1000_DOWN, &adapter->flags);
1392
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001393 napi_enable(&adapter->napi);
Herbert Xu47313052007-05-29 15:07:31 -07001394
Auke Koke0aac5a2007-03-06 08:57:21 -08001395 e1000_irq_enable(adapter);
1396
Ben Hutchings076152d2008-07-18 17:50:57 -07001397 netif_start_queue(netdev);
1398
Auke Koke0aac5a2007-03-06 08:57:21 -08001399 /* fire a link status change interrupt to start the watchdog */
Joe Perches1dc32912008-07-11 15:17:08 -07001400 ew32(ICS, E1000_ICS_LSC);
Auke Koke0aac5a2007-03-06 08:57:21 -08001401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return E1000_SUCCESS;
1403
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001404err_req_irq:
Auke Koke0aac5a2007-03-06 08:57:21 -08001405 e1000_power_down_phy(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001406 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407err_setup_rx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001408 e1000_free_all_tx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409err_setup_tx:
1410 e1000_reset(adapter);
1411
1412 return err;
1413}
1414
1415/**
1416 * e1000_close - Disables a network interface
1417 * @netdev: network interface device structure
1418 *
1419 * Returns 0, this is not allowed to fail
1420 *
1421 * The close entry point is called when an interface is de-activated
1422 * by the OS. The hardware is still under the drivers control, but
1423 * needs to be disabled. A global MAC reset is issued to stop the
1424 * hardware, and all transmit and receive resources are freed.
1425 **/
1426
Joe Perches64798842008-07-11 15:17:02 -07001427static int e1000_close(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001429 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07001430 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Auke Kok2db10a02006-06-27 09:06:28 -07001432 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 e1000_down(adapter);
Auke Kok79f05bf2006-06-27 09:06:32 -07001434 e1000_power_down_phy(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07001435 e1000_free_irq(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001437 e1000_free_all_tx_resources(adapter);
1438 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Bruce Allan46665602006-09-27 12:54:08 -07001440 /* kill manageability vlan ID if supported, but not if a vlan with
1441 * the same ID is registered on the host OS (let 8021q kill it) */
Joe Perches1dc32912008-07-11 15:17:08 -07001442 if ((hw->mng_cookie.status &
Bruce Allan46665602006-09-27 12:54:08 -07001443 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
1444 !(adapter->vlgrp &&
Dan Aloni5c15bde2007-03-02 20:44:51 -08001445 vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id))) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001446 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
1447 }
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return 0;
1450}
1451
1452/**
1453 * e1000_check_64k_bound - check that memory doesn't cross 64kB boundary
1454 * @adapter: address of board private structure
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001455 * @start: address of beginning of memory
1456 * @len: length of memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 **/
Joe Perches64798842008-07-11 15:17:02 -07001458static bool e1000_check_64k_bound(struct e1000_adapter *adapter, void *start,
1459 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
Joe Perches1dc32912008-07-11 15:17:08 -07001461 struct e1000_hw *hw = &adapter->hw;
Joe Perchese982f172008-07-11 15:17:18 -07001462 unsigned long begin = (unsigned long)start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 unsigned long end = begin + len;
1464
Malli Chilakala26483452005-04-28 19:44:46 -07001465 /* First rev 82545 and 82546 need to not allow any memory
1466 * write location to cross 64k boundary due to errata 23 */
Joe Perches1dc32912008-07-11 15:17:08 -07001467 if (hw->mac_type == e1000_82545 ||
Dirk Brandewie5377a412011-01-06 14:29:54 +00001468 hw->mac_type == e1000_ce4100 ||
Joe Perches1dc32912008-07-11 15:17:08 -07001469 hw->mac_type == e1000_82546) {
Joe Perchesc3033b02008-03-21 11:06:25 -07001470 return ((begin ^ (end - 1)) >> 16) != 0 ? false : true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
1472
Joe Perchesc3033b02008-03-21 11:06:25 -07001473 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474}
1475
1476/**
1477 * e1000_setup_tx_resources - allocate Tx resources (Descriptors)
1478 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001479 * @txdr: tx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 *
1481 * Return 0 on success, negative on failure
1482 **/
1483
Joe Perches64798842008-07-11 15:17:02 -07001484static int e1000_setup_tx_resources(struct e1000_adapter *adapter,
1485 struct e1000_tx_ring *txdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 struct pci_dev *pdev = adapter->pdev;
1488 int size;
1489
1490 size = sizeof(struct e1000_buffer) * txdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001491 txdr->buffer_info = vzalloc(size);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001492 if (!txdr->buffer_info) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001493 e_err(probe, "Unable to allocate memory for the Tx descriptor "
1494 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 return -ENOMEM;
1496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 /* round up to nearest 4K */
1499
1500 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001501 txdr->size = ALIGN(txdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001503 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size, &txdr->dma,
1504 GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001505 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506setup_tx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 vfree(txdr->buffer_info);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001508 e_err(probe, "Unable to allocate memory for the Tx descriptor "
1509 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 return -ENOMEM;
1511 }
1512
Malli Chilakala26483452005-04-28 19:44:46 -07001513 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1515 void *olddesc = txdr->desc;
1516 dma_addr_t olddma = txdr->dma;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001517 e_err(tx_err, "txdr align check failed: %u bytes at %p\n",
Emil Tantilov675ad472010-04-27 14:02:58 +00001518 txdr->size, txdr->desc);
Malli Chilakala26483452005-04-28 19:44:46 -07001519 /* Try again, without freeing the previous */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001520 txdr->desc = dma_alloc_coherent(&pdev->dev, txdr->size,
1521 &txdr->dma, GFP_KERNEL);
Malli Chilakala26483452005-04-28 19:44:46 -07001522 /* Failed allocation, critical failure */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001523 if (!txdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001524 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1525 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 goto setup_tx_desc_die;
1527 }
1528
1529 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1530 /* give up */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001531 dma_free_coherent(&pdev->dev, txdr->size, txdr->desc,
1532 txdr->dma);
1533 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1534 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001535 e_err(probe, "Unable to allocate aligned memory "
Emil Tantilov675ad472010-04-27 14:02:58 +00001536 "for the transmit descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 vfree(txdr->buffer_info);
1538 return -ENOMEM;
1539 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001540 /* Free old allocation, new allocation was successful */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001541 dma_free_coherent(&pdev->dev, txdr->size, olddesc,
1542 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
1544 }
1545 memset(txdr->desc, 0, txdr->size);
1546
1547 txdr->next_to_use = 0;
1548 txdr->next_to_clean = 0;
1549
1550 return 0;
1551}
1552
1553/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001554 * e1000_setup_all_tx_resources - wrapper to allocate Tx resources
1555 * (Descriptors) for all queues
1556 * @adapter: board private structure
1557 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001558 * Return 0 on success, negative on failure
1559 **/
1560
Joe Perches64798842008-07-11 15:17:02 -07001561int e1000_setup_all_tx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001562{
1563 int i, err = 0;
1564
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001565 for (i = 0; i < adapter->num_tx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001566 err = e1000_setup_tx_resources(adapter, &adapter->tx_ring[i]);
1567 if (err) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001568 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001569 for (i-- ; i >= 0; i--)
1570 e1000_free_tx_resources(adapter,
1571 &adapter->tx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001572 break;
1573 }
1574 }
1575
1576 return err;
1577}
1578
1579/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
1581 * @adapter: board private structure
1582 *
1583 * Configure the Tx unit of the MAC after a reset.
1584 **/
1585
Joe Perches64798842008-07-11 15:17:02 -07001586static void e1000_configure_tx(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
Joe Perches406874a2008-04-03 10:06:32 -07001588 u64 tdba;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001589 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001590 u32 tdlen, tctl, tipg;
Joe Perches406874a2008-04-03 10:06:32 -07001591 u32 ipgr1, ipgr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 /* Setup the HW Tx Head and Tail descriptor pointers */
1594
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001595 switch (adapter->num_tx_queues) {
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001596 case 1:
1597 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001598 tdba = adapter->tx_ring[0].dma;
1599 tdlen = adapter->tx_ring[0].count *
1600 sizeof(struct e1000_tx_desc);
Joe Perches1dc32912008-07-11 15:17:08 -07001601 ew32(TDLEN, tdlen);
1602 ew32(TDBAH, (tdba >> 32));
1603 ew32(TDBAL, (tdba & 0x00000000ffffffffULL));
1604 ew32(TDT, 0);
1605 ew32(TDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07001606 adapter->tx_ring[0].tdh = ((hw->mac_type >= e1000_82543) ? E1000_TDH : E1000_82542_TDH);
1607 adapter->tx_ring[0].tdt = ((hw->mac_type >= e1000_82543) ? E1000_TDT : E1000_82542_TDT);
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001608 break;
1609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 /* Set the default values for the Tx Inter Packet Gap timer */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001612 if ((hw->media_type == e1000_media_type_fiber ||
Jesse Brandeburgd89b6c62006-12-15 10:38:32 +01001613 hw->media_type == e1000_media_type_internal_serdes))
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001614 tipg = DEFAULT_82543_TIPG_IPGT_FIBER;
1615 else
1616 tipg = DEFAULT_82543_TIPG_IPGT_COPPER;
1617
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001618 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 case e1000_82542_rev2_0:
1620 case e1000_82542_rev2_1:
1621 tipg = DEFAULT_82542_TIPG_IPGT;
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001622 ipgr1 = DEFAULT_82542_TIPG_IPGR1;
1623 ipgr2 = DEFAULT_82542_TIPG_IPGR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 break;
1625 default:
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001626 ipgr1 = DEFAULT_82543_TIPG_IPGR1;
1627 ipgr2 = DEFAULT_82543_TIPG_IPGR2;
1628 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 }
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001630 tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
1631 tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
Joe Perches1dc32912008-07-11 15:17:08 -07001632 ew32(TIPG, tipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 /* Set the Tx Interrupt Delay register */
1635
Joe Perches1dc32912008-07-11 15:17:08 -07001636 ew32(TIDV, adapter->tx_int_delay);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001637 if (hw->mac_type >= e1000_82540)
Joe Perches1dc32912008-07-11 15:17:08 -07001638 ew32(TADV, adapter->tx_abs_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640 /* Program the Transmit Control Register */
1641
Joe Perches1dc32912008-07-11 15:17:08 -07001642 tctl = er32(TCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 tctl &= ~E1000_TCTL_CT;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001644 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
1646
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001647 e1000_config_collision_dist(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 /* Setup Transmit Descriptor Settings for eop descriptor */
Jesse Brandeburg6a042da2006-11-01 08:48:04 -08001650 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
1651
1652 /* only set IDE if we are delaying interrupts using the timers */
1653 if (adapter->tx_int_delay)
1654 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001656 if (hw->mac_type < e1000_82543)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 adapter->txd_cmd |= E1000_TXD_CMD_RPS;
1658 else
1659 adapter->txd_cmd |= E1000_TXD_CMD_RS;
1660
1661 /* Cache if we're 82544 running in PCI-X because we'll
1662 * need this to apply a workaround later in the send path. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001663 if (hw->mac_type == e1000_82544 &&
1664 hw->bus_type == e1000_bus_type_pcix)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 adapter->pcix_82544 = 1;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001666
Joe Perches1dc32912008-07-11 15:17:08 -07001667 ew32(TCTL, tctl);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669}
1670
1671/**
1672 * e1000_setup_rx_resources - allocate Rx resources (Descriptors)
1673 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001674 * @rxdr: rx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 *
1676 * Returns 0 on success, negative on failure
1677 **/
1678
Joe Perches64798842008-07-11 15:17:02 -07001679static int e1000_setup_rx_resources(struct e1000_adapter *adapter,
1680 struct e1000_rx_ring *rxdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 struct pci_dev *pdev = adapter->pdev;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001683 int size, desc_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 size = sizeof(struct e1000_buffer) * rxdr->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001686 rxdr->buffer_info = vzalloc(size);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001687 if (!rxdr->buffer_info) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001688 e_err(probe, "Unable to allocate memory for the Rx descriptor "
1689 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return -ENOMEM;
1691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001693 desc_len = sizeof(struct e1000_rx_desc);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 /* Round up to nearest 4K */
1696
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001697 rxdr->size = rxdr->count * desc_len;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001698 rxdr->size = ALIGN(rxdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001700 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size, &rxdr->dma,
1701 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001703 if (!rxdr->desc) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001704 e_err(probe, "Unable to allocate memory for the Rx descriptor "
1705 "ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706setup_rx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 vfree(rxdr->buffer_info);
1708 return -ENOMEM;
1709 }
1710
Malli Chilakala26483452005-04-28 19:44:46 -07001711 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1713 void *olddesc = rxdr->desc;
1714 dma_addr_t olddma = rxdr->dma;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001715 e_err(rx_err, "rxdr align check failed: %u bytes at %p\n",
Emil Tantilov675ad472010-04-27 14:02:58 +00001716 rxdr->size, rxdr->desc);
Malli Chilakala26483452005-04-28 19:44:46 -07001717 /* Try again, without freeing the previous */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001718 rxdr->desc = dma_alloc_coherent(&pdev->dev, rxdr->size,
1719 &rxdr->dma, GFP_KERNEL);
Malli Chilakala26483452005-04-28 19:44:46 -07001720 /* Failed allocation, critical failure */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001721 if (!rxdr->desc) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001722 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1723 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001724 e_err(probe, "Unable to allocate memory for the Rx "
1725 "descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 goto setup_rx_desc_die;
1727 }
1728
1729 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1730 /* give up */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001731 dma_free_coherent(&pdev->dev, rxdr->size, rxdr->desc,
1732 rxdr->dma);
1733 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1734 olddma);
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001735 e_err(probe, "Unable to allocate aligned memory for "
1736 "the Rx descriptor ring\n");
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001737 goto setup_rx_desc_die;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001739 /* Free old allocation, new allocation was successful */
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001740 dma_free_coherent(&pdev->dev, rxdr->size, olddesc,
1741 olddma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743 }
1744 memset(rxdr->desc, 0, rxdr->size);
1745
1746 rxdr->next_to_clean = 0;
1747 rxdr->next_to_use = 0;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00001748 rxdr->rx_skb_top = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 return 0;
1751}
1752
1753/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001754 * e1000_setup_all_rx_resources - wrapper to allocate Rx resources
1755 * (Descriptors) for all queues
1756 * @adapter: board private structure
1757 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001758 * Return 0 on success, negative on failure
1759 **/
1760
Joe Perches64798842008-07-11 15:17:02 -07001761int e1000_setup_all_rx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001762{
1763 int i, err = 0;
1764
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001765 for (i = 0; i < adapter->num_rx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001766 err = e1000_setup_rx_resources(adapter, &adapter->rx_ring[i]);
1767 if (err) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07001768 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001769 for (i-- ; i >= 0; i--)
1770 e1000_free_rx_resources(adapter,
1771 &adapter->rx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001772 break;
1773 }
1774 }
1775
1776 return err;
1777}
1778
1779/**
Malli Chilakala26483452005-04-28 19:44:46 -07001780 * e1000_setup_rctl - configure the receive control registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 * @adapter: Board private structure
1782 **/
Joe Perches64798842008-07-11 15:17:02 -07001783static void e1000_setup_rctl(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Joe Perches1dc32912008-07-11 15:17:08 -07001785 struct e1000_hw *hw = &adapter->hw;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001786 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Joe Perches1dc32912008-07-11 15:17:08 -07001788 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
1791
1792 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
1793 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
Joe Perches1dc32912008-07-11 15:17:08 -07001794 (hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Joe Perches1dc32912008-07-11 15:17:08 -07001796 if (hw->tbi_compatibility_on == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 rctl |= E1000_RCTL_SBP;
1798 else
1799 rctl &= ~E1000_RCTL_SBP;
1800
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001801 if (adapter->netdev->mtu <= ETH_DATA_LEN)
1802 rctl &= ~E1000_RCTL_LPE;
1803 else
1804 rctl |= E1000_RCTL_LPE;
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 /* Setup buffer sizes */
Auke Kok9e2feac2006-04-14 19:05:18 -07001807 rctl &= ~E1000_RCTL_SZ_4096;
1808 rctl |= E1000_RCTL_BSEX;
1809 switch (adapter->rx_buffer_len) {
Jeff Kirshera1415ee2006-02-28 20:24:07 -08001810 case E1000_RXBUFFER_2048:
1811 default:
1812 rctl |= E1000_RCTL_SZ_2048;
1813 rctl &= ~E1000_RCTL_BSEX;
1814 break;
1815 case E1000_RXBUFFER_4096:
1816 rctl |= E1000_RCTL_SZ_4096;
1817 break;
1818 case E1000_RXBUFFER_8192:
1819 rctl |= E1000_RCTL_SZ_8192;
1820 break;
1821 case E1000_RXBUFFER_16384:
1822 rctl |= E1000_RCTL_SZ_16384;
1823 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001824 }
1825
Joe Perches1dc32912008-07-11 15:17:08 -07001826 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
1828
1829/**
1830 * e1000_configure_rx - Configure 8254x Receive Unit after Reset
1831 * @adapter: board private structure
1832 *
1833 * Configure the Rx unit of the MAC after a reset.
1834 **/
1835
Joe Perches64798842008-07-11 15:17:02 -07001836static void e1000_configure_rx(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
Joe Perches406874a2008-04-03 10:06:32 -07001838 u64 rdba;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001839 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00001840 u32 rdlen, rctl, rxcsum;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001841
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00001842 if (adapter->netdev->mtu > ETH_DATA_LEN) {
1843 rdlen = adapter->rx_ring[0].count *
1844 sizeof(struct e1000_rx_desc);
1845 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
1846 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
1847 } else {
1848 rdlen = adapter->rx_ring[0].count *
1849 sizeof(struct e1000_rx_desc);
1850 adapter->clean_rx = e1000_clean_rx_irq;
1851 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
1852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854 /* disable receives while setting up the descriptors */
Joe Perches1dc32912008-07-11 15:17:08 -07001855 rctl = er32(RCTL);
1856 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858 /* set the Receive Delay Timer Register */
Joe Perches1dc32912008-07-11 15:17:08 -07001859 ew32(RDTR, adapter->rx_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001861 if (hw->mac_type >= e1000_82540) {
Joe Perches1dc32912008-07-11 15:17:08 -07001862 ew32(RADV, adapter->rx_abs_int_delay);
Jesse Brandeburg835bb122006-11-01 08:48:13 -08001863 if (adapter->itr_setting != 0)
Joe Perches1dc32912008-07-11 15:17:08 -07001864 ew32(ITR, 1000000000 / (adapter->itr * 256));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 }
1866
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001867 /* Setup the HW Rx Head and Tail Descriptor Pointers and
1868 * the Base and Length of the Rx Descriptor Ring */
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001869 switch (adapter->num_rx_queues) {
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001870 case 1:
1871 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001872 rdba = adapter->rx_ring[0].dma;
Joe Perches1dc32912008-07-11 15:17:08 -07001873 ew32(RDLEN, rdlen);
1874 ew32(RDBAH, (rdba >> 32));
1875 ew32(RDBAL, (rdba & 0x00000000ffffffffULL));
1876 ew32(RDT, 0);
1877 ew32(RDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07001878 adapter->rx_ring[0].rdh = ((hw->mac_type >= e1000_82543) ? E1000_RDH : E1000_82542_RDH);
1879 adapter->rx_ring[0].rdt = ((hw->mac_type >= e1000_82543) ? E1000_RDT : E1000_82542_RDT);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001880 break;
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001881 }
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 /* Enable 82543 Receive Checksum Offload for TCP and UDP */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001884 if (hw->mac_type >= e1000_82543) {
Joe Perches1dc32912008-07-11 15:17:08 -07001885 rxcsum = er32(RXCSUM);
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001886 if (adapter->rx_csum)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001887 rxcsum |= E1000_RXCSUM_TUOFL;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001888 else
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001889 /* don't need to clear IPPCSE as it defaults to 0 */
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07001890 rxcsum &= ~E1000_RXCSUM_TUOFL;
Joe Perches1dc32912008-07-11 15:17:08 -07001891 ew32(RXCSUM, rxcsum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 }
1893
1894 /* Enable Receives */
Joe Perches1dc32912008-07-11 15:17:08 -07001895 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896}
1897
1898/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001899 * e1000_free_tx_resources - Free Tx Resources per Queue
1900 * @adapter: board private structure
1901 * @tx_ring: Tx descriptor ring for a specific queue
1902 *
1903 * Free all transmit software resources
1904 **/
1905
Joe Perches64798842008-07-11 15:17:02 -07001906static void e1000_free_tx_resources(struct e1000_adapter *adapter,
1907 struct e1000_tx_ring *tx_ring)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001908{
1909 struct pci_dev *pdev = adapter->pdev;
1910
1911 e1000_clean_tx_ring(adapter, tx_ring);
1912
1913 vfree(tx_ring->buffer_info);
1914 tx_ring->buffer_info = NULL;
1915
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001916 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
1917 tx_ring->dma);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001918
1919 tx_ring->desc = NULL;
1920}
1921
1922/**
1923 * e1000_free_all_tx_resources - Free Tx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 * @adapter: board private structure
1925 *
1926 * Free all transmit software resources
1927 **/
1928
Joe Perches64798842008-07-11 15:17:02 -07001929void e1000_free_all_tx_resources(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001931 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001933 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001934 e1000_free_tx_resources(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
Joe Perches64798842008-07-11 15:17:02 -07001937static void e1000_unmap_and_free_tx_resource(struct e1000_adapter *adapter,
1938 struct e1000_buffer *buffer_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939{
Alexander Duyck602c0552009-12-02 16:46:00 +00001940 if (buffer_info->dma) {
1941 if (buffer_info->mapped_as_page)
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001942 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
1943 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck602c0552009-12-02 16:46:00 +00001944 else
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001945 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
Alexander Duyck602c0552009-12-02 16:46:00 +00001946 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00001947 DMA_TO_DEVICE);
Alexander Duyck602c0552009-12-02 16:46:00 +00001948 buffer_info->dma = 0;
1949 }
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001950 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 dev_kfree_skb_any(buffer_info->skb);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001952 buffer_info->skb = NULL;
1953 }
Alexander Duyck37e73df2009-03-25 21:58:45 +00001954 buffer_info->time_stamp = 0;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08001955 /* buffer_info must be completely set up in the transmit path */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
1957
1958/**
1959 * e1000_clean_tx_ring - Free Tx Buffers
1960 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001961 * @tx_ring: ring to be cleaned
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 **/
1963
Joe Perches64798842008-07-11 15:17:02 -07001964static void e1000_clean_tx_ring(struct e1000_adapter *adapter,
1965 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
Joe Perches1dc32912008-07-11 15:17:08 -07001967 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 struct e1000_buffer *buffer_info;
1969 unsigned long size;
1970 unsigned int i;
1971
1972 /* Free all the Tx ring sk_buffs */
1973
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001974 for (i = 0; i < tx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 buffer_info = &tx_ring->buffer_info[i];
1976 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
1977 }
1978
1979 size = sizeof(struct e1000_buffer) * tx_ring->count;
1980 memset(tx_ring->buffer_info, 0, size);
1981
1982 /* Zero out the descriptor ring */
1983
1984 memset(tx_ring->desc, 0, tx_ring->size);
1985
1986 tx_ring->next_to_use = 0;
1987 tx_ring->next_to_clean = 0;
Jeff Kirsherfd803242005-12-13 00:06:22 -05001988 tx_ring->last_tx_tso = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Joe Perches1dc32912008-07-11 15:17:08 -07001990 writel(0, hw->hw_addr + tx_ring->tdh);
1991 writel(0, hw->hw_addr + tx_ring->tdt);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001992}
1993
1994/**
1995 * e1000_clean_all_tx_rings - Free Tx Buffers for all queues
1996 * @adapter: board private structure
1997 **/
1998
Joe Perches64798842008-07-11 15:17:02 -07001999static void e1000_clean_all_tx_rings(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002000{
2001 int i;
2002
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002003 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002004 e1000_clean_tx_ring(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005}
2006
2007/**
2008 * e1000_free_rx_resources - Free Rx Resources
2009 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002010 * @rx_ring: ring to clean the resources from
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 *
2012 * Free all receive software resources
2013 **/
2014
Joe Perches64798842008-07-11 15:17:02 -07002015static void e1000_free_rx_resources(struct e1000_adapter *adapter,
2016 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 struct pci_dev *pdev = adapter->pdev;
2019
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002020 e1000_clean_rx_ring(adapter, rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 vfree(rx_ring->buffer_info);
2023 rx_ring->buffer_info = NULL;
2024
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002025 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
2026 rx_ring->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 rx_ring->desc = NULL;
2029}
2030
2031/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002032 * e1000_free_all_rx_resources - Free Rx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002034 *
2035 * Free all receive software resources
2036 **/
2037
Joe Perches64798842008-07-11 15:17:02 -07002038void e1000_free_all_rx_resources(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002039{
2040 int i;
2041
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002042 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002043 e1000_free_rx_resources(adapter, &adapter->rx_ring[i]);
2044}
2045
2046/**
2047 * e1000_clean_rx_ring - Free Rx Buffers per Queue
2048 * @adapter: board private structure
2049 * @rx_ring: ring to free buffers from
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 **/
2051
Joe Perches64798842008-07-11 15:17:02 -07002052static void e1000_clean_rx_ring(struct e1000_adapter *adapter,
2053 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
Joe Perches1dc32912008-07-11 15:17:08 -07002055 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 struct e1000_buffer *buffer_info;
2057 struct pci_dev *pdev = adapter->pdev;
2058 unsigned long size;
Brandeburg, Jesse630b25c2008-09-16 13:01:28 -07002059 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 /* Free all the Rx ring sk_buffs */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002062 for (i = 0; i < rx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 buffer_info = &rx_ring->buffer_info[i];
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002064 if (buffer_info->dma &&
2065 adapter->clean_rx == e1000_clean_rx_irq) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002066 dma_unmap_single(&pdev->dev, buffer_info->dma,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002067 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002068 DMA_FROM_DEVICE);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002069 } else if (buffer_info->dma &&
2070 adapter->clean_rx == e1000_clean_jumbo_rx_irq) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002071 dma_unmap_page(&pdev->dev, buffer_info->dma,
2072 buffer_info->length,
2073 DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002076 buffer_info->dma = 0;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002077 if (buffer_info->page) {
2078 put_page(buffer_info->page);
2079 buffer_info->page = NULL;
2080 }
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00002081 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 dev_kfree_skb(buffer_info->skb);
2083 buffer_info->skb = NULL;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08002084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 }
2086
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00002087 /* there also may be some cached data from a chained receive */
2088 if (rx_ring->rx_skb_top) {
2089 dev_kfree_skb(rx_ring->rx_skb_top);
2090 rx_ring->rx_skb_top = NULL;
2091 }
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 size = sizeof(struct e1000_buffer) * rx_ring->count;
2094 memset(rx_ring->buffer_info, 0, size);
2095
2096 /* Zero out the descriptor ring */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 memset(rx_ring->desc, 0, rx_ring->size);
2098
2099 rx_ring->next_to_clean = 0;
2100 rx_ring->next_to_use = 0;
2101
Joe Perches1dc32912008-07-11 15:17:08 -07002102 writel(0, hw->hw_addr + rx_ring->rdh);
2103 writel(0, hw->hw_addr + rx_ring->rdt);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002104}
2105
2106/**
2107 * e1000_clean_all_rx_rings - Free Rx Buffers for all queues
2108 * @adapter: board private structure
2109 **/
2110
Joe Perches64798842008-07-11 15:17:02 -07002111static void e1000_clean_all_rx_rings(struct e1000_adapter *adapter)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002112{
2113 int i;
2114
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002115 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002116 e1000_clean_rx_ring(adapter, &adapter->rx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
2118
2119/* The 82542 2.0 (revision 2) needs to have the receive unit in reset
2120 * and memory write and invalidate disabled for certain operations
2121 */
Joe Perches64798842008-07-11 15:17:02 -07002122static void e1000_enter_82542_rst(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
Joe Perches1dc32912008-07-11 15:17:08 -07002124 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002126 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Joe Perches1dc32912008-07-11 15:17:08 -07002128 e1000_pci_clear_mwi(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Joe Perches1dc32912008-07-11 15:17:08 -07002130 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 rctl |= E1000_RCTL_RST;
Joe Perches1dc32912008-07-11 15:17:08 -07002132 ew32(RCTL, rctl);
2133 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 mdelay(5);
2135
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002136 if (netif_running(netdev))
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002137 e1000_clean_all_rx_rings(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138}
2139
Joe Perches64798842008-07-11 15:17:02 -07002140static void e1000_leave_82542_rst(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
Joe Perches1dc32912008-07-11 15:17:08 -07002142 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002144 u32 rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
Joe Perches1dc32912008-07-11 15:17:08 -07002146 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 rctl &= ~E1000_RCTL_RST;
Joe Perches1dc32912008-07-11 15:17:08 -07002148 ew32(RCTL, rctl);
2149 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 mdelay(5);
2151
Joe Perches1dc32912008-07-11 15:17:08 -07002152 if (hw->pci_cmd_word & PCI_COMMAND_INVALIDATE)
2153 e1000_pci_set_mwi(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002155 if (netif_running(netdev)) {
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002156 /* No need to loop, because 82542 supports only 1 queue */
2157 struct e1000_rx_ring *ring = &adapter->rx_ring[0];
Jesse Brandeburg7c4d3362006-01-18 13:01:45 -08002158 e1000_configure_rx(adapter);
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002159 adapter->alloc_rx_buf(adapter, ring, E1000_DESC_UNUSED(ring));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 }
2161}
2162
2163/**
2164 * e1000_set_mac - Change the Ethernet Address of the NIC
2165 * @netdev: network interface device structure
2166 * @p: pointer to an address structure
2167 *
2168 * Returns 0 on success, negative on failure
2169 **/
2170
Joe Perches64798842008-07-11 15:17:02 -07002171static int e1000_set_mac(struct net_device *netdev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002173 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07002174 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 struct sockaddr *addr = p;
2176
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002177 if (!is_valid_ether_addr(addr->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 return -EADDRNOTAVAIL;
2179
2180 /* 82542 2.0 needs to be in reset to write receive address registers */
2181
Joe Perches1dc32912008-07-11 15:17:08 -07002182 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 e1000_enter_82542_rst(adapter);
2184
2185 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Joe Perches1dc32912008-07-11 15:17:08 -07002186 memcpy(hw->mac_addr, addr->sa_data, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Joe Perches1dc32912008-07-11 15:17:08 -07002188 e1000_rar_set(hw, hw->mac_addr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Joe Perches1dc32912008-07-11 15:17:08 -07002190 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 e1000_leave_82542_rst(adapter);
2192
2193 return 0;
2194}
2195
2196/**
Patrick McHardydb0ce502007-11-13 20:54:59 -08002197 * e1000_set_rx_mode - Secondary Unicast, Multicast and Promiscuous mode set
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 * @netdev: network interface device structure
2199 *
Patrick McHardydb0ce502007-11-13 20:54:59 -08002200 * The set_rx_mode entry point is called whenever the unicast or multicast
2201 * address lists or the network interface flags are updated. This routine is
2202 * responsible for configuring the hardware for proper unicast, multicast,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 * promiscuous mode, and all-multi behavior.
2204 **/
2205
Joe Perches64798842008-07-11 15:17:02 -07002206static void e1000_set_rx_mode(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002208 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 struct e1000_hw *hw = &adapter->hw;
Jiri Pirkoccffad252009-05-22 23:22:17 +00002210 struct netdev_hw_addr *ha;
2211 bool use_uc = false;
Joe Perches406874a2008-04-03 10:06:32 -07002212 u32 rctl;
2213 u32 hash_value;
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002214 int i, rar_entries = E1000_RAR_ENTRIES;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002215 int mta_reg_count = E1000_NUM_MTA_REGISTERS;
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002216 u32 *mcarray = kcalloc(mta_reg_count, sizeof(u32), GFP_ATOMIC);
2217
2218 if (!mcarray) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07002219 e_err(probe, "memory allocation failed\n");
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002220 return;
2221 }
Auke Kokcd94dd02006-06-27 09:08:22 -07002222
Malli Chilakala26483452005-04-28 19:44:46 -07002223 /* Check for Promiscuous and All Multicast modes */
2224
Joe Perches1dc32912008-07-11 15:17:08 -07002225 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002227 if (netdev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Patrick McHardy746b9f02008-07-16 20:15:45 -07002229 rctl &= ~E1000_RCTL_VFE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 } else {
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002231 if (netdev->flags & IFF_ALLMULTI)
Patrick McHardy746b9f02008-07-16 20:15:45 -07002232 rctl |= E1000_RCTL_MPE;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002233 else
Patrick McHardy746b9f02008-07-16 20:15:45 -07002234 rctl &= ~E1000_RCTL_MPE;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002235 /* Enable VLAN filter if there is a VLAN */
2236 if (adapter->vlgrp)
2237 rctl |= E1000_RCTL_VFE;
Patrick McHardydb0ce502007-11-13 20:54:59 -08002238 }
2239
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08002240 if (netdev_uc_count(netdev) > rar_entries - 1) {
Patrick McHardydb0ce502007-11-13 20:54:59 -08002241 rctl |= E1000_RCTL_UPE;
2242 } else if (!(netdev->flags & IFF_PROMISC)) {
2243 rctl &= ~E1000_RCTL_UPE;
Jiri Pirkoccffad252009-05-22 23:22:17 +00002244 use_uc = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 }
2246
Joe Perches1dc32912008-07-11 15:17:08 -07002247 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
2249 /* 82542 2.0 needs to be in reset to write receive address registers */
2250
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002251 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 e1000_enter_82542_rst(adapter);
2253
Patrick McHardydb0ce502007-11-13 20:54:59 -08002254 /* load the first 14 addresses into the exact filters 1-14. Unicast
2255 * addresses take precedence to avoid disabling unicast filtering
2256 * when possible.
2257 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002258 * RAR 0 is used for the station MAC address
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 * if there are not 14 addresses, go ahead and clear the filters
2260 */
Jiri Pirkoccffad252009-05-22 23:22:17 +00002261 i = 1;
2262 if (use_uc)
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08002263 netdev_for_each_uc_addr(ha, netdev) {
Jiri Pirkoccffad252009-05-22 23:22:17 +00002264 if (i == rar_entries)
2265 break;
2266 e1000_rar_set(hw, ha->addr, i++);
2267 }
2268
Jiri Pirko22bedad32010-04-01 21:22:57 +00002269 netdev_for_each_mc_addr(ha, netdev) {
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002270 if (i == rar_entries) {
2271 /* load any remaining addresses into the hash table */
2272 u32 hash_reg, hash_bit, mta;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002273 hash_value = e1000_hash_mc_addr(hw, ha->addr);
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002274 hash_reg = (hash_value >> 5) & 0x7F;
2275 hash_bit = hash_value & 0x1F;
2276 mta = (1 << hash_bit);
2277 mcarray[hash_reg] |= mta;
Jiri Pirko10886af2010-02-23 01:19:22 -08002278 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002279 e1000_rar_set(hw, ha->addr, i++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
2281 }
2282
Jiri Pirko7a81e9f2010-02-22 09:10:44 +00002283 for (; i < rar_entries; i++) {
2284 E1000_WRITE_REG_ARRAY(hw, RA, i << 1, 0);
2285 E1000_WRITE_FLUSH();
2286 E1000_WRITE_REG_ARRAY(hw, RA, (i << 1) + 1, 0);
2287 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 }
2289
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002290 /* write the hash table completely, write from bottom to avoid
2291 * both stupid write combining chipsets, and flushing each write */
2292 for (i = mta_reg_count - 1; i >= 0 ; i--) {
2293 /*
2294 * If we are on an 82544 has an errata where writing odd
2295 * offsets overwrites the previous even offset, but writing
2296 * backwards over the range solves the issue by always
2297 * writing the odd offset first
2298 */
2299 E1000_WRITE_REG_ARRAY(hw, MTA, i, mcarray[i]);
2300 }
2301 E1000_WRITE_FLUSH();
2302
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002303 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 e1000_leave_82542_rst(adapter);
Jesse Brandeburg81c52282009-04-04 16:36:53 -07002305
2306 kfree(mcarray);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307}
2308
2309/* Need to wait a few seconds after link up to get diagnostic information from
2310 * the phy */
2311
Joe Perches64798842008-07-11 15:17:02 -07002312static void e1000_update_phy_info(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313{
Joe Perchese982f172008-07-11 15:17:18 -07002314 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00002315 schedule_work(&adapter->phy_info_task);
2316}
2317
2318static void e1000_update_phy_info_task(struct work_struct *work)
2319{
2320 struct e1000_adapter *adapter = container_of(work,
2321 struct e1000_adapter,
2322 phy_info_task);
Joe Perches1dc32912008-07-11 15:17:08 -07002323 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002324
2325 rtnl_lock();
Joe Perches1dc32912008-07-11 15:17:08 -07002326 e1000_phy_get_info(hw, &adapter->phy_info);
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002327 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328}
2329
2330/**
2331 * e1000_82547_tx_fifo_stall - Timer Call-back
2332 * @data: pointer to adapter cast into an unsigned long
2333 **/
Joe Perches64798842008-07-11 15:17:02 -07002334static void e1000_82547_tx_fifo_stall(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335{
Joe Perchese982f172008-07-11 15:17:18 -07002336 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Jesse Brandeburg5cf42fc2010-09-22 18:22:17 +00002337 schedule_work(&adapter->fifo_stall_task);
2338}
2339
2340/**
2341 * e1000_82547_tx_fifo_stall_task - task to complete work
2342 * @work: work struct contained inside adapter struct
2343 **/
2344static void e1000_82547_tx_fifo_stall_task(struct work_struct *work)
2345{
2346 struct e1000_adapter *adapter = container_of(work,
2347 struct e1000_adapter,
2348 fifo_stall_task);
Joe Perches1dc32912008-07-11 15:17:08 -07002349 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 struct net_device *netdev = adapter->netdev;
Joe Perches406874a2008-04-03 10:06:32 -07002351 u32 tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002353 rtnl_lock();
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002354 if (atomic_read(&adapter->tx_fifo_stall)) {
Joe Perches1dc32912008-07-11 15:17:08 -07002355 if ((er32(TDT) == er32(TDH)) &&
2356 (er32(TDFT) == er32(TDFH)) &&
2357 (er32(TDFTS) == er32(TDFHS))) {
2358 tctl = er32(TCTL);
2359 ew32(TCTL, tctl & ~E1000_TCTL_EN);
2360 ew32(TDFT, adapter->tx_head_addr);
2361 ew32(TDFH, adapter->tx_head_addr);
2362 ew32(TDFTS, adapter->tx_head_addr);
2363 ew32(TDFHS, adapter->tx_head_addr);
2364 ew32(TCTL, tctl);
2365 E1000_WRITE_FLUSH();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367 adapter->tx_fifo_head = 0;
2368 atomic_set(&adapter->tx_fifo_stall, 0);
2369 netif_wake_queue(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002370 } else if (!test_bit(__E1000_DOWN, &adapter->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 mod_timer(&adapter->tx_fifo_stall_timer, jiffies + 1);
2372 }
2373 }
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00002374 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375}
2376
Nick Nunleyb5481922010-02-03 14:49:28 +00002377bool e1000_has_link(struct e1000_adapter *adapter)
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002378{
2379 struct e1000_hw *hw = &adapter->hw;
2380 bool link_active = false;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002381
2382 /* get_link_status is set on LSC (link status) interrupt or
2383 * rx sequence error interrupt. get_link_status will stay
2384 * false until the e1000_check_for_link establishes link
2385 * for copper adapters ONLY
2386 */
2387 switch (hw->media_type) {
2388 case e1000_media_type_copper:
2389 if (hw->get_link_status) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002390 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002391 link_active = !hw->get_link_status;
2392 } else {
2393 link_active = true;
2394 }
2395 break;
2396 case e1000_media_type_fiber:
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002397 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002398 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
2399 break;
2400 case e1000_media_type_internal_serdes:
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07002401 e1000_check_for_link(hw);
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002402 link_active = hw->serdes_has_link;
2403 break;
2404 default:
2405 break;
2406 }
2407
2408 return link_active;
2409}
2410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411/**
2412 * e1000_watchdog - Timer Call-back
2413 * @data: pointer to adapter cast into an unsigned long
2414 **/
Joe Perches64798842008-07-11 15:17:02 -07002415static void e1000_watchdog(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416{
Joe Perchese982f172008-07-11 15:17:18 -07002417 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Joe Perches1dc32912008-07-11 15:17:08 -07002418 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 struct net_device *netdev = adapter->netdev;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002420 struct e1000_tx_ring *txdr = adapter->tx_ring;
Joe Perches406874a2008-04-03 10:06:32 -07002421 u32 link, tctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002423 link = e1000_has_link(adapter);
2424 if ((netif_carrier_ok(netdev)) && link)
2425 goto link_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002427 if (link) {
2428 if (!netif_carrier_ok(netdev)) {
Joe Perches406874a2008-04-03 10:06:32 -07002429 u32 ctrl;
Joe Perchesc3033b02008-03-21 11:06:25 -07002430 bool txb2b = true;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002431 /* update snapshot of PHY registers on LSC */
Joe Perches1dc32912008-07-11 15:17:08 -07002432 e1000_get_speed_and_duplex(hw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 &adapter->link_speed,
2434 &adapter->link_duplex);
2435
Joe Perches1dc32912008-07-11 15:17:08 -07002436 ctrl = er32(CTRL);
Emil Tantilov675ad472010-04-27 14:02:58 +00002437 pr_info("%s NIC Link is Up %d Mbps %s, "
2438 "Flow Control: %s\n",
2439 netdev->name,
2440 adapter->link_speed,
2441 adapter->link_duplex == FULL_DUPLEX ?
2442 "Full Duplex" : "Half Duplex",
2443 ((ctrl & E1000_CTRL_TFCE) && (ctrl &
2444 E1000_CTRL_RFCE)) ? "RX/TX" : ((ctrl &
2445 E1000_CTRL_RFCE) ? "RX" : ((ctrl &
2446 E1000_CTRL_TFCE) ? "TX" : "None")));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Emil Tantilov39ca5f02010-03-26 11:25:58 +00002448 /* adjust timeout factor according to speed/duplex */
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002449 adapter->tx_timeout_factor = 1;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002450 switch (adapter->link_speed) {
2451 case SPEED_10:
Joe Perchesc3033b02008-03-21 11:06:25 -07002452 txb2b = false;
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002453 adapter->tx_timeout_factor = 16;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002454 break;
2455 case SPEED_100:
Joe Perchesc3033b02008-03-21 11:06:25 -07002456 txb2b = false;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002457 /* maybe add some timeout factor ? */
2458 break;
2459 }
2460
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00002461 /* enable transmits in the hardware */
Joe Perches1dc32912008-07-11 15:17:08 -07002462 tctl = er32(TCTL);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002463 tctl |= E1000_TCTL_EN;
Joe Perches1dc32912008-07-11 15:17:08 -07002464 ew32(TCTL, tctl);
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 netif_carrier_on(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002467 if (!test_bit(__E1000_DOWN, &adapter->flags))
2468 mod_timer(&adapter->phy_info_timer,
2469 round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 adapter->smartspeed = 0;
2471 }
2472 } else {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002473 if (netif_carrier_ok(netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 adapter->link_speed = 0;
2475 adapter->link_duplex = 0;
Emil Tantilov675ad472010-04-27 14:02:58 +00002476 pr_info("%s NIC Link is Down\n",
2477 netdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 netif_carrier_off(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002479
2480 if (!test_bit(__E1000_DOWN, &adapter->flags))
2481 mod_timer(&adapter->phy_info_timer,
2482 round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 }
2484
2485 e1000_smartspeed(adapter);
2486 }
2487
Jesse Brandeburgbe0f0712009-09-25 12:17:44 +00002488link_up:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 e1000_update_stats(adapter);
2490
Joe Perches1dc32912008-07-11 15:17:08 -07002491 hw->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 adapter->tpt_old = adapter->stats.tpt;
Joe Perches1dc32912008-07-11 15:17:08 -07002493 hw->collision_delta = adapter->stats.colc - adapter->colc_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 adapter->colc_old = adapter->stats.colc;
2495
2496 adapter->gorcl = adapter->stats.gorcl - adapter->gorcl_old;
2497 adapter->gorcl_old = adapter->stats.gorcl;
2498 adapter->gotcl = adapter->stats.gotcl - adapter->gotcl_old;
2499 adapter->gotcl_old = adapter->stats.gotcl;
2500
Joe Perches1dc32912008-07-11 15:17:08 -07002501 e1000_update_adaptive(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002503 if (!netif_carrier_ok(netdev)) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002504 if (E1000_DESC_UNUSED(txdr) + 1 < txdr->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 /* We've lost link, so the controller stops DMA,
2506 * but we've got queued Tx work that's never going
2507 * to get done, so reset controller to flush Tx.
2508 * (Do the reset outside of interrupt context). */
Jeff Kirsher87041632006-03-02 18:21:24 -08002509 adapter->tx_timeout_count++;
2510 schedule_work(&adapter->reset_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00002511 /* return immediately since reset is imminent */
2512 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 }
2514 }
2515
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00002516 /* Simple mode for Interrupt Throttle Rate (ITR) */
2517 if (hw->mac_type >= e1000_82540 && adapter->itr_setting == 4) {
2518 /*
2519 * Symmetric Tx/Rx gets a reduced ITR=2000;
2520 * Total asymmetrical Tx or Rx gets ITR=8000;
2521 * everyone else is between 2000-8000.
2522 */
2523 u32 goc = (adapter->gotcl + adapter->gorcl) / 10000;
2524 u32 dif = (adapter->gotcl > adapter->gorcl ?
2525 adapter->gotcl - adapter->gorcl :
2526 adapter->gorcl - adapter->gotcl) / 10000;
2527 u32 itr = goc > 0 ? (dif * 6000 / goc + 2000) : 8000;
2528
2529 ew32(ITR, 1000000000 / (itr * 256));
2530 }
2531
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 /* Cause software interrupt to ensure rx ring is cleaned */
Joe Perches1dc32912008-07-11 15:17:08 -07002533 ew32(ICS, E1000_ICS_RXDMT0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Malli Chilakala26483452005-04-28 19:44:46 -07002535 /* Force detection of hung controller every watchdog period */
Joe Perchesc3033b02008-03-21 11:06:25 -07002536 adapter->detect_tx_hung = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
2538 /* Reset the timer */
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00002539 if (!test_bit(__E1000_DOWN, &adapter->flags))
2540 mod_timer(&adapter->watchdog_timer,
2541 round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542}
2543
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002544enum latency_range {
2545 lowest_latency = 0,
2546 low_latency = 1,
2547 bulk_latency = 2,
2548 latency_invalid = 255
2549};
2550
2551/**
2552 * e1000_update_itr - update the dynamic ITR value based on statistics
Jesse Brandeburg8fce4732009-09-25 12:18:41 +00002553 * @adapter: pointer to adapter
2554 * @itr_setting: current adapter->itr
2555 * @packets: the number of packets during this measurement interval
2556 * @bytes: the number of bytes during this measurement interval
2557 *
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002558 * Stores a new ITR value based on packets and byte
2559 * counts during the last interrupt. The advantage of per interrupt
2560 * computation is faster updates and more accurate ITR for the current
2561 * traffic pattern. Constants in this function were computed
2562 * based on theoretical maximum wire speed and thresholds were set based
2563 * on testing data as well as attempting to minimize response time
2564 * while increasing bulk throughput.
2565 * this functionality is controlled by the InterruptThrottleRate module
2566 * parameter (see e1000_param.c)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002567 **/
2568static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
Joe Perches64798842008-07-11 15:17:02 -07002569 u16 itr_setting, int packets, int bytes)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002570{
2571 unsigned int retval = itr_setting;
2572 struct e1000_hw *hw = &adapter->hw;
2573
2574 if (unlikely(hw->mac_type < e1000_82540))
2575 goto update_itr_done;
2576
2577 if (packets == 0)
2578 goto update_itr_done;
2579
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002580 switch (itr_setting) {
2581 case lowest_latency:
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002582 /* jumbo frames get bulk treatment*/
2583 if (bytes/packets > 8000)
2584 retval = bulk_latency;
2585 else if ((packets < 5) && (bytes > 512))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002586 retval = low_latency;
2587 break;
2588 case low_latency: /* 50 usec aka 20000 ints/s */
2589 if (bytes > 10000) {
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002590 /* jumbo frames need bulk latency setting */
2591 if (bytes/packets > 8000)
2592 retval = bulk_latency;
2593 else if ((packets < 10) || ((bytes/packets) > 1200))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002594 retval = bulk_latency;
2595 else if ((packets > 35))
2596 retval = lowest_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002597 } else if (bytes/packets > 2000)
2598 retval = bulk_latency;
2599 else if (packets <= 2 && bytes < 512)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002600 retval = lowest_latency;
2601 break;
2602 case bulk_latency: /* 250 usec aka 4000 ints/s */
2603 if (bytes > 25000) {
2604 if (packets > 35)
2605 retval = low_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002606 } else if (bytes < 6000) {
2607 retval = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002608 }
2609 break;
2610 }
2611
2612update_itr_done:
2613 return retval;
2614}
2615
2616static void e1000_set_itr(struct e1000_adapter *adapter)
2617{
2618 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07002619 u16 current_itr;
2620 u32 new_itr = adapter->itr;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002621
2622 if (unlikely(hw->mac_type < e1000_82540))
2623 return;
2624
2625 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2626 if (unlikely(adapter->link_speed != SPEED_1000)) {
2627 current_itr = 0;
2628 new_itr = 4000;
2629 goto set_itr_now;
2630 }
2631
2632 adapter->tx_itr = e1000_update_itr(adapter,
2633 adapter->tx_itr,
2634 adapter->total_tx_packets,
2635 adapter->total_tx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002636 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2637 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2638 adapter->tx_itr = low_latency;
2639
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002640 adapter->rx_itr = e1000_update_itr(adapter,
2641 adapter->rx_itr,
2642 adapter->total_rx_packets,
2643 adapter->total_rx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002644 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2645 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2646 adapter->rx_itr = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002647
2648 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2649
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002650 switch (current_itr) {
2651 /* counts and packets in update_itr are dependent on these numbers */
2652 case lowest_latency:
2653 new_itr = 70000;
2654 break;
2655 case low_latency:
2656 new_itr = 20000; /* aka hwitr = ~200 */
2657 break;
2658 case bulk_latency:
2659 new_itr = 4000;
2660 break;
2661 default:
2662 break;
2663 }
2664
2665set_itr_now:
2666 if (new_itr != adapter->itr) {
2667 /* this attempts to bias the interrupt rate towards Bulk
2668 * by adding intermediate steps when interrupt rate is
2669 * increasing */
2670 new_itr = new_itr > adapter->itr ?
2671 min(adapter->itr + (new_itr >> 2), new_itr) :
2672 new_itr;
2673 adapter->itr = new_itr;
Joe Perches1dc32912008-07-11 15:17:08 -07002674 ew32(ITR, 1000000000 / (new_itr * 256));
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002675 }
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002676}
2677
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678#define E1000_TX_FLAGS_CSUM 0x00000001
2679#define E1000_TX_FLAGS_VLAN 0x00000002
2680#define E1000_TX_FLAGS_TSO 0x00000004
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002681#define E1000_TX_FLAGS_IPV4 0x00000008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
2683#define E1000_TX_FLAGS_VLAN_SHIFT 16
2684
Joe Perches64798842008-07-11 15:17:02 -07002685static int e1000_tso(struct e1000_adapter *adapter,
2686 struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002689 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 unsigned int i;
Joe Perches406874a2008-04-03 10:06:32 -07002691 u32 cmd_length = 0;
2692 u16 ipcse = 0, tucse, mss;
2693 u8 ipcss, ipcso, tucss, tucso, hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 int err;
2695
Herbert Xu89114af2006-07-08 13:34:32 -07002696 if (skb_is_gso(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 if (skb_header_cloned(skb)) {
2698 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2699 if (err)
2700 return err;
2701 }
2702
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07002703 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Herbert Xu79671682006-06-22 02:40:14 -07002704 mss = skb_shinfo(skb)->gso_size;
Alexey Dobriyan60828232006-05-23 14:52:21 -07002705 if (skb->protocol == htons(ETH_P_IP)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002706 struct iphdr *iph = ip_hdr(skb);
2707 iph->tot_len = 0;
2708 iph->check = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002709 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
2710 iph->daddr, 0,
2711 IPPROTO_TCP,
2712 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002713 cmd_length = E1000_TXD_CMD_IP;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002714 ipcse = skb_transport_offset(skb) - 1;
Auke Koke15fdd02006-08-16 11:28:45 -07002715 } else if (skb->protocol == htons(ETH_P_IPV6)) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002716 ipv6_hdr(skb)->payload_len = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002717 tcp_hdr(skb)->check =
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002718 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
2719 &ipv6_hdr(skb)->daddr,
2720 0, IPPROTO_TCP, 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002721 ipcse = 0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002722 }
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03002723 ipcss = skb_network_offset(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002724 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002725 tucss = skb_transport_offset(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002726 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 tucse = 0;
2728
2729 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002730 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002732 i = tx_ring->next_to_use;
2733 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002734 buffer_info = &tx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
2736 context_desc->lower_setup.ip_fields.ipcss = ipcss;
2737 context_desc->lower_setup.ip_fields.ipcso = ipcso;
2738 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
2739 context_desc->upper_setup.tcp_fields.tucss = tucss;
2740 context_desc->upper_setup.tcp_fields.tucso = tucso;
2741 context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
2742 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
2743 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
2744 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
2745
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002746 buffer_info->time_stamp = jiffies;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002747 buffer_info->next_to_watch = i;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002748
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002749 if (++i == tx_ring->count) i = 0;
2750 tx_ring->next_to_use = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
Joe Perchesc3033b02008-03-21 11:06:25 -07002752 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
Joe Perchesc3033b02008-03-21 11:06:25 -07002754 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755}
2756
Joe Perches64798842008-07-11 15:17:02 -07002757static bool e1000_tx_csum(struct e1000_adapter *adapter,
2758 struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759{
2760 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002761 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 unsigned int i;
Joe Perches406874a2008-04-03 10:06:32 -07002763 u8 css;
Dave Graham3ed30672008-10-09 14:29:26 -07002764 u32 cmd_len = E1000_TXD_CMD_DEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Dave Graham3ed30672008-10-09 14:29:26 -07002766 if (skb->ip_summed != CHECKSUM_PARTIAL)
2767 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Dave Graham3ed30672008-10-09 14:29:26 -07002769 switch (skb->protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08002770 case cpu_to_be16(ETH_P_IP):
Dave Graham3ed30672008-10-09 14:29:26 -07002771 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
2772 cmd_len |= E1000_TXD_CMD_TCP;
2773 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08002774 case cpu_to_be16(ETH_P_IPV6):
Dave Graham3ed30672008-10-09 14:29:26 -07002775 /* XXX not handling all IPV6 headers */
2776 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
2777 cmd_len |= E1000_TXD_CMD_TCP;
2778 break;
2779 default:
2780 if (unlikely(net_ratelimit()))
Emil Tantilovfeb8f472010-07-26 23:37:21 -07002781 e_warn(drv, "checksum_partial proto=%x!\n",
2782 skb->protocol);
Dave Graham3ed30672008-10-09 14:29:26 -07002783 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 }
2785
Michał Mirosław0d0b1672010-12-14 15:24:08 +00002786 css = skb_checksum_start_offset(skb);
Dave Graham3ed30672008-10-09 14:29:26 -07002787
2788 i = tx_ring->next_to_use;
2789 buffer_info = &tx_ring->buffer_info[i];
2790 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
2791
2792 context_desc->lower_setup.ip_config = 0;
2793 context_desc->upper_setup.tcp_fields.tucss = css;
2794 context_desc->upper_setup.tcp_fields.tucso =
2795 css + skb->csum_offset;
2796 context_desc->upper_setup.tcp_fields.tucse = 0;
2797 context_desc->tcp_seg_setup.data = 0;
2798 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
2799
2800 buffer_info->time_stamp = jiffies;
2801 buffer_info->next_to_watch = i;
2802
2803 if (unlikely(++i == tx_ring->count)) i = 0;
2804 tx_ring->next_to_use = i;
2805
2806 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807}
2808
2809#define E1000_MAX_TXD_PWR 12
2810#define E1000_MAX_DATA_PER_TXD (1<<E1000_MAX_TXD_PWR)
2811
Joe Perches64798842008-07-11 15:17:02 -07002812static int e1000_tx_map(struct e1000_adapter *adapter,
2813 struct e1000_tx_ring *tx_ring,
2814 struct sk_buff *skb, unsigned int first,
2815 unsigned int max_per_txd, unsigned int nr_frags,
2816 unsigned int mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817{
Joe Perches1dc32912008-07-11 15:17:08 -07002818 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck602c0552009-12-02 16:46:00 +00002819 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck37e73df2009-03-25 21:58:45 +00002820 struct e1000_buffer *buffer_info;
Jesse Brandeburgd20b6062009-03-02 16:03:21 -08002821 unsigned int len = skb_headlen(skb);
Alexander Duyck602c0552009-12-02 16:46:00 +00002822 unsigned int offset = 0, size, count = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
2825 i = tx_ring->next_to_use;
2826
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002827 while (len) {
Alexander Duyck37e73df2009-03-25 21:58:45 +00002828 buffer_info = &tx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 size = min(len, max_per_txd);
Jeff Kirsherfd803242005-12-13 00:06:22 -05002830 /* Workaround for Controller erratum --
2831 * descriptor for non-tso packet in a linear SKB that follows a
2832 * tso gets written back prematurely before the data is fully
Jeff Kirsher0f15a8f2006-03-02 18:46:29 -08002833 * DMA'd to the controller */
Jeff Kirsherfd803242005-12-13 00:06:22 -05002834 if (!skb->data_len && tx_ring->last_tx_tso &&
Herbert Xu89114af2006-07-08 13:34:32 -07002835 !skb_is_gso(skb)) {
Jeff Kirsherfd803242005-12-13 00:06:22 -05002836 tx_ring->last_tx_tso = 0;
2837 size -= 4;
2838 }
2839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 /* Workaround for premature desc write-backs
2841 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002842 if (unlikely(mss && !nr_frags && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 size -= 4;
Malli Chilakala97338bd2005-04-28 19:41:46 -07002844 /* work-around for errata 10 and it applies
2845 * to all controllers in PCI-X mode
2846 * The fix is to make sure that the first descriptor of a
2847 * packet is smaller than 2048 - 16 - 16 (or 2016) bytes
2848 */
Joe Perches1dc32912008-07-11 15:17:08 -07002849 if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07002850 (size > 2015) && count == 0))
2851 size = 2015;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002852
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 /* Workaround for potential 82544 hang in PCI-X. Avoid
2854 * terminating buffers within evenly-aligned dwords. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002855 if (unlikely(adapter->pcix_82544 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 !((unsigned long)(skb->data + offset + size - 1) & 4) &&
2857 size > 4))
2858 size -= 4;
2859
2860 buffer_info->length = size;
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00002861 /* set time_stamp *before* dma to help avoid a possible race */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 buffer_info->time_stamp = jiffies;
Alexander Duyck602c0552009-12-02 16:46:00 +00002863 buffer_info->mapped_as_page = false;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002864 buffer_info->dma = dma_map_single(&pdev->dev,
2865 skb->data + offset,
2866 size, DMA_TO_DEVICE);
2867 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck602c0552009-12-02 16:46:00 +00002868 goto dma_error;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002869 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
2871 len -= size;
2872 offset += size;
2873 count++;
Alexander Duyck37e73df2009-03-25 21:58:45 +00002874 if (len) {
2875 i++;
2876 if (unlikely(i == tx_ring->count))
2877 i = 0;
2878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 }
2880
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002881 for (f = 0; f < nr_frags; f++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 struct skb_frag_struct *frag;
2883
2884 frag = &skb_shinfo(skb)->frags[f];
2885 len = frag->size;
Alexander Duyck602c0552009-12-02 16:46:00 +00002886 offset = frag->page_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002888 while (len) {
Alexander Duyck37e73df2009-03-25 21:58:45 +00002889 i++;
2890 if (unlikely(i == tx_ring->count))
2891 i = 0;
2892
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 buffer_info = &tx_ring->buffer_info[i];
2894 size = min(len, max_per_txd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 /* Workaround for premature desc write-backs
2896 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002897 if (unlikely(mss && f == (nr_frags-1) && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 size -= 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 /* Workaround for potential 82544 hang in PCI-X.
2900 * Avoid terminating buffers within evenly-aligned
2901 * dwords. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002902 if (unlikely(adapter->pcix_82544 &&
Jesse Brandeburg8fce4732009-09-25 12:18:41 +00002903 !((unsigned long)(page_to_phys(frag->page) + offset
2904 + size - 1) & 4) &&
2905 size > 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 size -= 4;
2907
2908 buffer_info->length = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 buffer_info->time_stamp = jiffies;
Alexander Duyck602c0552009-12-02 16:46:00 +00002910 buffer_info->mapped_as_page = true;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002911 buffer_info->dma = dma_map_page(&pdev->dev, frag->page,
Alexander Duyck602c0552009-12-02 16:46:00 +00002912 offset, size,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00002913 DMA_TO_DEVICE);
2914 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck602c0552009-12-02 16:46:00 +00002915 goto dma_error;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002916 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
2918 len -= size;
2919 offset += size;
2920 count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 }
2922 }
2923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 tx_ring->buffer_info[i].skb = skb;
2925 tx_ring->buffer_info[first].next_to_watch = i;
2926
2927 return count;
Alexander Duyck602c0552009-12-02 16:46:00 +00002928
2929dma_error:
2930 dev_err(&pdev->dev, "TX DMA map failed\n");
2931 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002932 if (count)
Alexander Duyck602c0552009-12-02 16:46:00 +00002933 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002934
2935 while (count--) {
2936 if (i==0)
Alexander Duyck602c0552009-12-02 16:46:00 +00002937 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00002938 i--;
Alexander Duyck602c0552009-12-02 16:46:00 +00002939 buffer_info = &tx_ring->buffer_info[i];
2940 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
2941 }
2942
2943 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944}
2945
Joe Perches64798842008-07-11 15:17:02 -07002946static void e1000_tx_queue(struct e1000_adapter *adapter,
2947 struct e1000_tx_ring *tx_ring, int tx_flags,
2948 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949{
Joe Perches1dc32912008-07-11 15:17:08 -07002950 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 struct e1000_tx_desc *tx_desc = NULL;
2952 struct e1000_buffer *buffer_info;
Joe Perches406874a2008-04-03 10:06:32 -07002953 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 unsigned int i;
2955
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002956 if (likely(tx_flags & E1000_TX_FLAGS_TSO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
2958 E1000_TXD_CMD_TSE;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002959 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
2960
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002961 if (likely(tx_flags & E1000_TX_FLAGS_IPV4))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002962 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 }
2964
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002965 if (likely(tx_flags & E1000_TX_FLAGS_CSUM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
2967 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
2968 }
2969
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002970 if (unlikely(tx_flags & E1000_TX_FLAGS_VLAN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 txd_lower |= E1000_TXD_CMD_VLE;
2972 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
2973 }
2974
2975 i = tx_ring->next_to_use;
2976
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002977 while (count--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 buffer_info = &tx_ring->buffer_info[i];
2979 tx_desc = E1000_TX_DESC(*tx_ring, i);
2980 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
2981 tx_desc->lower.data =
2982 cpu_to_le32(txd_lower | buffer_info->length);
2983 tx_desc->upper.data = cpu_to_le32(txd_upper);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002984 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 }
2986
2987 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
2988
2989 /* Force memory writes to complete before letting h/w
2990 * know there are new descriptors to fetch. (Only
2991 * applicable for weak-ordered memory model archs,
2992 * such as IA-64). */
2993 wmb();
2994
2995 tx_ring->next_to_use = i;
Joe Perches1dc32912008-07-11 15:17:08 -07002996 writel(i, hw->hw_addr + tx_ring->tdt);
Jesse Brandeburg2ce90472006-11-01 08:47:42 -08002997 /* we need this if more than one processor can write to our tail
2998 * at a time, it syncronizes IO on IA64/Altix systems */
2999 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000}
3001
3002/**
3003 * 82547 workaround to avoid controller hang in half-duplex environment.
3004 * The workaround is to avoid queuing a large packet that would span
3005 * the internal Tx FIFO ring boundary by notifying the stack to resend
3006 * the packet at a later time. This gives the Tx FIFO an opportunity to
3007 * flush all packets. When that occurs, we reset the Tx FIFO pointers
3008 * to the beginning of the Tx FIFO.
3009 **/
3010
3011#define E1000_FIFO_HDR 0x10
3012#define E1000_82547_PAD_LEN 0x3E0
3013
Joe Perches64798842008-07-11 15:17:02 -07003014static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
3015 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016{
Joe Perches406874a2008-04-03 10:06:32 -07003017 u32 fifo_space = adapter->tx_fifo_size - adapter->tx_fifo_head;
3018 u32 skb_fifo_len = skb->len + E1000_FIFO_HDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07003020 skb_fifo_len = ALIGN(skb_fifo_len, E1000_FIFO_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003022 if (adapter->link_duplex != HALF_DUPLEX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 goto no_fifo_stall_required;
3024
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003025 if (atomic_read(&adapter->tx_fifo_stall))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 return 1;
3027
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003028 if (skb_fifo_len >= (E1000_82547_PAD_LEN + fifo_space)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 atomic_set(&adapter->tx_fifo_stall, 1);
3030 return 1;
3031 }
3032
3033no_fifo_stall_required:
3034 adapter->tx_fifo_head += skb_fifo_len;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003035 if (adapter->tx_fifo_head >= adapter->tx_fifo_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 adapter->tx_fifo_head -= adapter->tx_fifo_size;
3037 return 0;
3038}
3039
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003040static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
3041{
3042 struct e1000_adapter *adapter = netdev_priv(netdev);
3043 struct e1000_tx_ring *tx_ring = adapter->tx_ring;
3044
3045 netif_stop_queue(netdev);
3046 /* Herbert's original patch had:
3047 * smp_mb__after_netif_stop_queue();
3048 * but since that doesn't exist yet, just open code it. */
3049 smp_mb();
3050
3051 /* We need to check again in a case another CPU has just
3052 * made room available. */
3053 if (likely(E1000_DESC_UNUSED(tx_ring) < size))
3054 return -EBUSY;
3055
3056 /* A reprieve! */
3057 netif_start_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003058 ++adapter->restart_queue;
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003059 return 0;
3060}
3061
3062static int e1000_maybe_stop_tx(struct net_device *netdev,
3063 struct e1000_tx_ring *tx_ring, int size)
3064{
3065 if (likely(E1000_DESC_UNUSED(tx_ring) >= size))
3066 return 0;
3067 return __e1000_maybe_stop_tx(netdev, size);
3068}
3069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070#define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
Stephen Hemminger3b29a562009-08-31 19:50:55 +00003071static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
3072 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003074 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07003075 struct e1000_hw *hw = &adapter->hw;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003076 struct e1000_tx_ring *tx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 unsigned int first, max_per_txd = E1000_MAX_DATA_PER_TXD;
3078 unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
3079 unsigned int tx_flags = 0;
Eric Dumazete743d312010-04-14 15:59:40 -07003080 unsigned int len = skb_headlen(skb);
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003081 unsigned int nr_frags;
3082 unsigned int mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 int count = 0;
Auke Kok76c224b2006-05-23 13:36:06 -07003084 int tso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003087 /* This goes back to the question of how to logically map a tx queue
3088 * to a flow. Right now, performance is impacted slightly negatively
3089 * if using multiple tx queues. If the stack breaks away from a
3090 * single qdisc implementation, we can look at this again. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003091 tx_ring = adapter->tx_ring;
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04003092
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003093 if (unlikely(skb->len <= 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 dev_kfree_skb_any(skb);
3095 return NETDEV_TX_OK;
3096 }
3097
Herbert Xu79671682006-06-22 02:40:14 -07003098 mss = skb_shinfo(skb)->gso_size;
Auke Kok76c224b2006-05-23 13:36:06 -07003099 /* The controller does a simple calculation to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 * make sure there is enough room in the FIFO before
3101 * initiating the DMA for each buffer. The calc is:
3102 * 4 = ceil(buffer len/mss). To make sure we don't
3103 * overrun the FIFO, adjust the max buffer len if mss
3104 * drops. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003105 if (mss) {
Joe Perches406874a2008-04-03 10:06:32 -07003106 u8 hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 max_per_txd = min(mss << 2, max_per_txd);
3108 max_txd_pwr = fls(max_per_txd) - 1;
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003109
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07003110 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003111 if (skb->data_len && hdr_len == len) {
Joe Perches1dc32912008-07-11 15:17:08 -07003112 switch (hw->mac_type) {
Jeff Kirsher9f687882006-03-02 18:20:17 -08003113 unsigned int pull_size;
Herbert Xu683a2aa2006-12-16 12:04:33 +11003114 case e1000_82544:
3115 /* Make sure we have room to chop off 4 bytes,
3116 * and that the end alignment will work out to
3117 * this hardware's requirements
3118 * NOTE: this is a TSO only workaround
3119 * if end byte alignment not correct move us
3120 * into the next dword */
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003121 if ((unsigned long)(skb_tail_pointer(skb) - 1) & 4)
Herbert Xu683a2aa2006-12-16 12:04:33 +11003122 break;
3123 /* fall through */
Jeff Kirsher9f687882006-03-02 18:20:17 -08003124 pull_size = min((unsigned int)4, skb->data_len);
3125 if (!__pskb_pull_tail(skb, pull_size)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003126 e_err(drv, "__pskb_pull_tail "
3127 "failed.\n");
Jeff Kirsher9f687882006-03-02 18:20:17 -08003128 dev_kfree_skb_any(skb);
Jeff Garzik749dfc702006-03-11 13:35:31 -05003129 return NETDEV_TX_OK;
Jeff Kirsher9f687882006-03-02 18:20:17 -08003130 }
Eric Dumazete743d312010-04-14 15:59:40 -07003131 len = skb_headlen(skb);
Jeff Kirsher9f687882006-03-02 18:20:17 -08003132 break;
3133 default:
3134 /* do nothing */
3135 break;
Jeff Kirsherd74bbd32006-01-12 16:51:07 -08003136 }
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 }
3139
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003140 /* reserve a descriptor for the offload context */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003141 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 count++;
Malli Chilakala26483452005-04-28 19:44:46 -07003143 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003144
Jeff Kirsherfd803242005-12-13 00:06:22 -05003145 /* Controller Erratum workaround */
Herbert Xu89114af2006-07-08 13:34:32 -07003146 if (!skb->data_len && tx_ring->last_tx_tso && !skb_is_gso(skb))
Jeff Kirsherfd803242005-12-13 00:06:22 -05003147 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003148
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 count += TXD_USE_COUNT(len, max_txd_pwr);
3150
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003151 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 count++;
3153
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003154 /* work-around for errata 10 and it applies to all controllers
Malli Chilakala97338bd2005-04-28 19:41:46 -07003155 * in PCI-X mode, so add one more descriptor to the count
3156 */
Joe Perches1dc32912008-07-11 15:17:08 -07003157 if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07003158 (len > 2015)))
3159 count++;
3160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 nr_frags = skb_shinfo(skb)->nr_frags;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003162 for (f = 0; f < nr_frags; f++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size,
3164 max_txd_pwr);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003165 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 count += nr_frags;
3167
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 /* need: count + 2 desc gap to keep tail from touching
3169 * head, otherwise try next time */
Alexander Duyck80179432009-01-21 14:42:47 -08003170 if (unlikely(e1000_maybe_stop_tx(netdev, tx_ring, count + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 return NETDEV_TX_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
Joe Perches1dc32912008-07-11 15:17:08 -07003173 if (unlikely(hw->mac_type == e1000_82547)) {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003174 if (unlikely(e1000_82547_fifo_workaround(adapter, skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 netif_stop_queue(netdev);
Jesse Brandeburgbaa34742009-09-25 12:17:23 +00003176 if (!test_bit(__E1000_DOWN, &adapter->flags))
3177 mod_timer(&adapter->tx_fifo_stall_timer,
3178 jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 return NETDEV_TX_BUSY;
3180 }
3181 }
3182
Jesse Grosseab6d182010-10-20 13:56:03 +00003183 if (unlikely(vlan_tx_tag_present(skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 tx_flags |= E1000_TX_FLAGS_VLAN;
3185 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
3186 }
3187
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003188 first = tx_ring->next_to_use;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003189
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003190 tso = e1000_tso(adapter, tx_ring, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 if (tso < 0) {
3192 dev_kfree_skb_any(skb);
3193 return NETDEV_TX_OK;
3194 }
3195
Jeff Kirsherfd803242005-12-13 00:06:22 -05003196 if (likely(tso)) {
Jesse Brandeburg8fce4732009-09-25 12:18:41 +00003197 if (likely(hw->mac_type != e1000_82544))
3198 tx_ring->last_tx_tso = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 tx_flags |= E1000_TX_FLAGS_TSO;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003200 } else if (likely(e1000_tx_csum(adapter, tx_ring, skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 tx_flags |= E1000_TX_FLAGS_CSUM;
3202
Alexey Dobriyan60828232006-05-23 14:52:21 -07003203 if (likely(skb->protocol == htons(ETH_P_IP)))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003204 tx_flags |= E1000_TX_FLAGS_IPV4;
3205
Alexander Duyck37e73df2009-03-25 21:58:45 +00003206 count = e1000_tx_map(adapter, tx_ring, skb, first, max_per_txd,
3207 nr_frags, mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
Alexander Duyck37e73df2009-03-25 21:58:45 +00003209 if (count) {
3210 e1000_tx_queue(adapter, tx_ring, tx_flags, count);
Alexander Duyck37e73df2009-03-25 21:58:45 +00003211 /* Make sure there is space in the ring for the next send. */
3212 e1000_maybe_stop_tx(netdev, tx_ring, MAX_SKB_FRAGS + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
Alexander Duyck37e73df2009-03-25 21:58:45 +00003214 } else {
3215 dev_kfree_skb_any(skb);
3216 tx_ring->buffer_info[first].time_stamp = 0;
3217 tx_ring->next_to_use = first;
3218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 return NETDEV_TX_OK;
3221}
3222
3223/**
3224 * e1000_tx_timeout - Respond to a Tx Hang
3225 * @netdev: network interface device structure
3226 **/
3227
Joe Perches64798842008-07-11 15:17:02 -07003228static void e1000_tx_timeout(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003230 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
3232 /* Do the reset outside of interrupt context */
Jeff Kirsher87041632006-03-02 18:21:24 -08003233 adapter->tx_timeout_count++;
3234 schedule_work(&adapter->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235}
3236
Joe Perches64798842008-07-11 15:17:02 -07003237static void e1000_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238{
David Howells65f27f32006-11-22 14:55:48 +00003239 struct e1000_adapter *adapter =
3240 container_of(work, struct e1000_adapter, reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Jesse Brandeburg338c15e2010-09-22 18:22:42 +00003242 e1000_reinit_safe(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243}
3244
3245/**
3246 * e1000_get_stats - Get System Network Statistics
3247 * @netdev: network interface device structure
3248 *
3249 * Returns the address of the device statistics structure.
3250 * The statistics are actually updated from the timer callback.
3251 **/
3252
Joe Perches64798842008-07-11 15:17:02 -07003253static struct net_device_stats *e1000_get_stats(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254{
Jeff Kirsher6b7660c2006-01-12 16:50:35 -08003255 /* only return the current stats */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003256 return &netdev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257}
3258
3259/**
3260 * e1000_change_mtu - Change the Maximum Transfer Unit
3261 * @netdev: network interface device structure
3262 * @new_mtu: new value for maximum frame size
3263 *
3264 * Returns 0 on success, negative on failure
3265 **/
3266
Joe Perches64798842008-07-11 15:17:02 -07003267static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003269 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07003270 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 int max_frame = new_mtu + ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
3272
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003273 if ((max_frame < MINIMUM_ETHERNET_FRAME_SIZE) ||
3274 (max_frame > MAX_JUMBO_FRAME_SIZE)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003275 e_err(probe, "Invalid MTU setting\n");
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04003276 return -EINVAL;
3277 }
3278
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003279 /* Adapter-specific max frame size limits. */
Joe Perches1dc32912008-07-11 15:17:08 -07003280 switch (hw->mac_type) {
Auke Kok9e2feac2006-04-14 19:05:18 -07003281 case e1000_undefined ... e1000_82542_rev2_1:
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +00003282 if (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003283 e_err(probe, "Jumbo Frames not supported.\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003284 return -EINVAL;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003285 }
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003286 break;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003287 default:
3288 /* Capable of supporting up to MAX_JUMBO_FRAME_SIZE limit. */
3289 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003290 }
3291
Jesse Brandeburg3d6114e2009-09-25 12:19:02 +00003292 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
3293 msleep(1);
3294 /* e1000_down has a dependency on max_frame_size */
3295 hw->max_frame_size = max_frame;
3296 if (netif_running(netdev))
3297 e1000_down(adapter);
3298
David S. Miller87f50322006-07-31 22:39:40 -07003299 /* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kok9e2feac2006-04-14 19:05:18 -07003300 * means we reserve 2 more, this pushes us to allocate from the next
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003301 * larger slab size.
3302 * i.e. RXBUFFER_2048 --> size-4096 slab
3303 * however with the new *_jumbo_rx* routines, jumbo receives will use
3304 * fragmented skbs */
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003305
Jesse Brandeburg99261462010-01-22 22:56:16 +00003306 if (max_frame <= E1000_RXBUFFER_2048)
Auke Kok9e2feac2006-04-14 19:05:18 -07003307 adapter->rx_buffer_len = E1000_RXBUFFER_2048;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003308 else
3309#if (PAGE_SIZE >= E1000_RXBUFFER_16384)
Auke Kok9e2feac2006-04-14 19:05:18 -07003310 adapter->rx_buffer_len = E1000_RXBUFFER_16384;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003311#elif (PAGE_SIZE >= E1000_RXBUFFER_4096)
3312 adapter->rx_buffer_len = PAGE_SIZE;
3313#endif
Auke Kok9e2feac2006-04-14 19:05:18 -07003314
3315 /* adjust allocation if LPE protects us, and we aren't using SBP */
Joe Perches1dc32912008-07-11 15:17:08 -07003316 if (!hw->tbi_compatibility_on &&
Jesse Brandeburgb7cb8c22009-07-06 10:45:01 +00003317 ((max_frame == (ETH_FRAME_LEN + ETH_FCS_LEN)) ||
Auke Kok9e2feac2006-04-14 19:05:18 -07003318 (max_frame == MAXIMUM_ETHERNET_VLAN_SIZE)))
3319 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003320
Emil Tantilov675ad472010-04-27 14:02:58 +00003321 pr_info("%s changing MTU from %d to %d\n",
3322 netdev->name, netdev->mtu, new_mtu);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003323 netdev->mtu = new_mtu;
3324
Auke Kok2db10a02006-06-27 09:06:28 -07003325 if (netif_running(netdev))
Jesse Brandeburg3d6114e2009-09-25 12:19:02 +00003326 e1000_up(adapter);
3327 else
3328 e1000_reset(adapter);
3329
3330 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 return 0;
3333}
3334
3335/**
3336 * e1000_update_stats - Update the board statistics counters
3337 * @adapter: board private structure
3338 **/
3339
Joe Perches64798842008-07-11 15:17:02 -07003340void e1000_update_stats(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341{
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003342 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 struct e1000_hw *hw = &adapter->hw;
Linas Vepstas282f33c2006-06-08 22:19:44 -07003344 struct pci_dev *pdev = adapter->pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 unsigned long flags;
Joe Perches406874a2008-04-03 10:06:32 -07003346 u16 phy_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
3348#define PHY_IDLE_ERROR_COUNT_MASK 0x00FF
3349
Linas Vepstas282f33c2006-06-08 22:19:44 -07003350 /*
3351 * Prevent stats update while adapter is being reset, or if the pci
3352 * connection is down.
3353 */
Auke Kok90267292006-06-08 09:30:24 -07003354 if (adapter->link_speed == 0)
3355 return;
Linas Vepstas81b19552006-12-12 18:29:15 -06003356 if (pci_channel_offline(pdev))
Linas Vepstas282f33c2006-06-08 22:19:44 -07003357 return;
Auke Kok90267292006-06-08 09:30:24 -07003358
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 spin_lock_irqsave(&adapter->stats_lock, flags);
3360
Masatake YAMATO828d0552007-10-20 03:06:37 +02003361 /* these counters are modified from e1000_tbi_adjust_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 * called from the interrupt context, so they must only
3363 * be written while holding adapter->stats_lock
3364 */
3365
Joe Perches1dc32912008-07-11 15:17:08 -07003366 adapter->stats.crcerrs += er32(CRCERRS);
3367 adapter->stats.gprc += er32(GPRC);
3368 adapter->stats.gorcl += er32(GORCL);
3369 adapter->stats.gorch += er32(GORCH);
3370 adapter->stats.bprc += er32(BPRC);
3371 adapter->stats.mprc += er32(MPRC);
3372 adapter->stats.roc += er32(ROC);
Auke Kokcd94dd02006-06-27 09:08:22 -07003373
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003374 adapter->stats.prc64 += er32(PRC64);
3375 adapter->stats.prc127 += er32(PRC127);
3376 adapter->stats.prc255 += er32(PRC255);
3377 adapter->stats.prc511 += er32(PRC511);
3378 adapter->stats.prc1023 += er32(PRC1023);
3379 adapter->stats.prc1522 += er32(PRC1522);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
Joe Perches1dc32912008-07-11 15:17:08 -07003381 adapter->stats.symerrs += er32(SYMERRS);
3382 adapter->stats.mpc += er32(MPC);
3383 adapter->stats.scc += er32(SCC);
3384 adapter->stats.ecol += er32(ECOL);
3385 adapter->stats.mcc += er32(MCC);
3386 adapter->stats.latecol += er32(LATECOL);
3387 adapter->stats.dc += er32(DC);
3388 adapter->stats.sec += er32(SEC);
3389 adapter->stats.rlec += er32(RLEC);
3390 adapter->stats.xonrxc += er32(XONRXC);
3391 adapter->stats.xontxc += er32(XONTXC);
3392 adapter->stats.xoffrxc += er32(XOFFRXC);
3393 adapter->stats.xofftxc += er32(XOFFTXC);
3394 adapter->stats.fcruc += er32(FCRUC);
3395 adapter->stats.gptc += er32(GPTC);
3396 adapter->stats.gotcl += er32(GOTCL);
3397 adapter->stats.gotch += er32(GOTCH);
3398 adapter->stats.rnbc += er32(RNBC);
3399 adapter->stats.ruc += er32(RUC);
3400 adapter->stats.rfc += er32(RFC);
3401 adapter->stats.rjc += er32(RJC);
3402 adapter->stats.torl += er32(TORL);
3403 adapter->stats.torh += er32(TORH);
3404 adapter->stats.totl += er32(TOTL);
3405 adapter->stats.toth += er32(TOTH);
3406 adapter->stats.tpr += er32(TPR);
Auke Kokcd94dd02006-06-27 09:08:22 -07003407
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003408 adapter->stats.ptc64 += er32(PTC64);
3409 adapter->stats.ptc127 += er32(PTC127);
3410 adapter->stats.ptc255 += er32(PTC255);
3411 adapter->stats.ptc511 += er32(PTC511);
3412 adapter->stats.ptc1023 += er32(PTC1023);
3413 adapter->stats.ptc1522 += er32(PTC1522);
Auke Kokcd94dd02006-06-27 09:08:22 -07003414
Joe Perches1dc32912008-07-11 15:17:08 -07003415 adapter->stats.mptc += er32(MPTC);
3416 adapter->stats.bptc += er32(BPTC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
3418 /* used for adaptive IFS */
3419
Joe Perches1dc32912008-07-11 15:17:08 -07003420 hw->tx_packet_delta = er32(TPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 adapter->stats.tpt += hw->tx_packet_delta;
Joe Perches1dc32912008-07-11 15:17:08 -07003422 hw->collision_delta = er32(COLC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 adapter->stats.colc += hw->collision_delta;
3424
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003425 if (hw->mac_type >= e1000_82543) {
Joe Perches1dc32912008-07-11 15:17:08 -07003426 adapter->stats.algnerrc += er32(ALGNERRC);
3427 adapter->stats.rxerrc += er32(RXERRC);
3428 adapter->stats.tncrs += er32(TNCRS);
3429 adapter->stats.cexterr += er32(CEXTERR);
3430 adapter->stats.tsctc += er32(TSCTC);
3431 adapter->stats.tsctfc += er32(TSCTFC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 }
3433
3434 /* Fill out the OS statistics structure */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003435 netdev->stats.multicast = adapter->stats.mprc;
3436 netdev->stats.collisions = adapter->stats.colc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
3438 /* Rx Errors */
3439
Jeff Kirsher87041632006-03-02 18:21:24 -08003440 /* RLEC on some newer hardware can be incorrect so build
3441 * our own version based on RUC and ROC */
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003442 netdev->stats.rx_errors = adapter->stats.rxerrc +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 adapter->stats.crcerrs + adapter->stats.algnerrc +
Jeff Kirsher87041632006-03-02 18:21:24 -08003444 adapter->stats.ruc + adapter->stats.roc +
3445 adapter->stats.cexterr;
Mitch Williams49559852006-09-27 12:53:37 -07003446 adapter->stats.rlerrc = adapter->stats.ruc + adapter->stats.roc;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003447 netdev->stats.rx_length_errors = adapter->stats.rlerrc;
3448 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
3449 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
3450 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
3452 /* Tx Errors */
Mitch Williams49559852006-09-27 12:53:37 -07003453 adapter->stats.txerrc = adapter->stats.ecol + adapter->stats.latecol;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003454 netdev->stats.tx_errors = adapter->stats.txerrc;
3455 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
3456 netdev->stats.tx_window_errors = adapter->stats.latecol;
3457 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Joe Perches1dc32912008-07-11 15:17:08 -07003458 if (hw->bad_tx_carr_stats_fd &&
Jeff Garzik167fb282006-12-15 10:41:15 -05003459 adapter->link_duplex == FULL_DUPLEX) {
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003460 netdev->stats.tx_carrier_errors = 0;
Jeff Garzik167fb282006-12-15 10:41:15 -05003461 adapter->stats.tncrs = 0;
3462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
3464 /* Tx Dropped needs to be maintained elsewhere */
3465
3466 /* Phy Stats */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003467 if (hw->media_type == e1000_media_type_copper) {
3468 if ((adapter->link_speed == SPEED_1000) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 (!e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_tmp))) {
3470 phy_tmp &= PHY_IDLE_ERROR_COUNT_MASK;
3471 adapter->phy_stats.idle_errors += phy_tmp;
3472 }
3473
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003474 if ((hw->mac_type <= e1000_82546) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 (hw->phy_type == e1000_phy_m88) &&
3476 !e1000_read_phy_reg(hw, M88E1000_RX_ERR_CNTR, &phy_tmp))
3477 adapter->phy_stats.receive_errors += phy_tmp;
3478 }
3479
Jeff Garzik15e376b2006-12-15 11:16:33 -05003480 /* Management Stats */
Joe Perches1dc32912008-07-11 15:17:08 -07003481 if (hw->has_smbus) {
3482 adapter->stats.mgptc += er32(MGTPTC);
3483 adapter->stats.mgprc += er32(MGTPRC);
3484 adapter->stats.mgpdc += er32(MGTPDC);
Jeff Garzik15e376b2006-12-15 11:16:33 -05003485 }
3486
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 spin_unlock_irqrestore(&adapter->stats_lock, flags);
3488}
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003489
3490/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 * e1000_intr - Interrupt Handler
3492 * @irq: interrupt number
3493 * @data: pointer to a network interface device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 **/
3495
Joe Perches64798842008-07-11 15:17:02 -07003496static irqreturn_t e1000_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497{
3498 struct net_device *netdev = data;
Malli Chilakala60490fe2005-06-17 17:41:45 -07003499 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003501 u32 icr = er32(ICR);
Francois Romieuc3570ac2008-07-11 15:17:38 -07003502
Jesse Brandeburg4c11b8a2011-01-13 07:48:13 +00003503 if (unlikely((!icr)))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003504 return IRQ_NONE; /* Not our interrupt */
3505
Jesse Brandeburg4c11b8a2011-01-13 07:48:13 +00003506 /*
3507 * we might have caused the interrupt, but the above
3508 * read cleared it, and just in case the driver is
3509 * down there is nothing to do so return handled
3510 */
3511 if (unlikely(test_bit(__E1000_DOWN, &adapter->flags)))
3512 return IRQ_HANDLED;
3513
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003514 if (unlikely(icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 hw->get_link_status = 1;
Auke Kok1314bbf2006-09-27 12:54:02 -07003516 /* guard against interrupt when we're going down */
3517 if (!test_bit(__E1000_DOWN, &adapter->flags))
3518 mod_timer(&adapter->watchdog_timer, jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 }
3520
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003521 /* disable interrupts, without the synchronize_irq bit */
3522 ew32(IMC, ~0);
3523 E1000_WRITE_FLUSH();
3524
Ben Hutchings288379f2009-01-19 16:43:59 -08003525 if (likely(napi_schedule_prep(&adapter->napi))) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003526 adapter->total_tx_bytes = 0;
3527 adapter->total_tx_packets = 0;
3528 adapter->total_rx_bytes = 0;
3529 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08003530 __napi_schedule(&adapter->napi);
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003531 } else {
Auke Kok90fb5132006-11-01 08:47:30 -08003532 /* this really should not happen! if it does it is basically a
3533 * bug, but not a hard error, so enable ints and continue */
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003534 if (!test_bit(__E1000_DOWN, &adapter->flags))
3535 e1000_irq_enable(adapter);
3536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 return IRQ_HANDLED;
3539}
3540
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541/**
3542 * e1000_clean - NAPI Rx polling callback
3543 * @adapter: board private structure
3544 **/
Joe Perches64798842008-07-11 15:17:02 -07003545static int e1000_clean(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003547 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003548 int tx_clean_complete = 0, work_done = 0;
Malli Chilakala26483452005-04-28 19:44:46 -07003549
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003550 tx_clean_complete = e1000_clean_tx_irq(adapter, &adapter->tx_ring[0]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003551
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003552 adapter->clean_rx(adapter, &adapter->rx_ring[0], &work_done, budget);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003553
Jesse Brandeburg650b5a52009-09-25 12:19:23 +00003554 if (!tx_clean_complete)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08003555 work_done = budget;
3556
David S. Miller53e52c72008-01-07 21:06:12 -08003557 /* If budget not fully consumed, exit the polling mode */
3558 if (work_done < budget) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003559 if (likely(adapter->itr_setting & 3))
3560 e1000_set_itr(adapter);
Ben Hutchings288379f2009-01-19 16:43:59 -08003561 napi_complete(napi);
Jesse Brandeburga6c42322009-03-25 21:59:22 +00003562 if (!test_bit(__E1000_DOWN, &adapter->flags))
3563 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 }
3565
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003566 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567}
3568
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569/**
3570 * e1000_clean_tx_irq - Reclaim resources after transmit completes
3571 * @adapter: board private structure
3572 **/
Joe Perches64798842008-07-11 15:17:02 -07003573static bool e1000_clean_tx_irq(struct e1000_adapter *adapter,
3574 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575{
Joe Perches1dc32912008-07-11 15:17:08 -07003576 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 struct net_device *netdev = adapter->netdev;
3578 struct e1000_tx_desc *tx_desc, *eop_desc;
3579 struct e1000_buffer *buffer_info;
3580 unsigned int i, eop;
Jeff Kirsher2a1af5d2006-03-02 18:20:43 -08003581 unsigned int count = 0;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003582 unsigned int total_tx_bytes=0, total_tx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583
3584 i = tx_ring->next_to_clean;
3585 eop = tx_ring->buffer_info[i].next_to_watch;
3586 eop_desc = E1000_TX_DESC(*tx_ring, eop);
3587
Alexander Duyckccfb3422009-03-25 21:59:04 +00003588 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
3589 (count < tx_ring->count)) {
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003590 bool cleaned = false;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00003591 rmb(); /* read buffer_info after eop_desc */
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003592 for ( ; !cleaned; count++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 tx_desc = E1000_TX_DESC(*tx_ring, i);
3594 buffer_info = &tx_ring->buffer_info[i];
3595 cleaned = (i == eop);
3596
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003597 if (cleaned) {
Jesse Brandeburg2b653262006-12-15 10:30:44 +01003598 struct sk_buff *skb = buffer_info->skb;
Jesse Brandeburg7753b172007-01-18 09:25:31 -08003599 unsigned int segs, bytecount;
3600 segs = skb_shinfo(skb)->gso_segs ?: 1;
3601 /* multiply data chunks by size of headers */
3602 bytecount = ((segs - 1) * skb_headlen(skb)) +
3603 skb->len;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01003604 total_tx_packets += segs;
Jesse Brandeburg7753b172007-01-18 09:25:31 -08003605 total_tx_bytes += bytecount;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003606 }
Jeff Kirsherfd803242005-12-13 00:06:22 -05003607 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08003608 tx_desc->upper.data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003610 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003612
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 eop = tx_ring->buffer_info[i].next_to_watch;
3614 eop_desc = E1000_TX_DESC(*tx_ring, eop);
3615 }
3616
3617 tx_ring->next_to_clean = i;
3618
Auke Kok77b2aad2006-04-14 19:05:25 -07003619#define TX_WAKE_THRESHOLD 32
Jesse Brandeburg843f4262009-04-16 16:59:47 +00003620 if (unlikely(count && netif_carrier_ok(netdev) &&
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003621 E1000_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD)) {
3622 /* Make sure that anybody stopping the queue after this
3623 * sees the new next_to_clean.
3624 */
3625 smp_mb();
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003626
3627 if (netif_queue_stopped(netdev) &&
3628 !(test_bit(__E1000_DOWN, &adapter->flags))) {
Auke Kok77b2aad2006-04-14 19:05:25 -07003629 netif_wake_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003630 ++adapter->restart_queue;
3631 }
Auke Kok77b2aad2006-04-14 19:05:25 -07003632 }
Malli Chilakala26483452005-04-28 19:44:46 -07003633
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003634 if (adapter->detect_tx_hung) {
Malli Chilakala26483452005-04-28 19:44:46 -07003635 /* Detect a transmit hang in hardware, this serializes the
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 * check with the clearing of time_stamp and movement of i */
Joe Perchesc3033b02008-03-21 11:06:25 -07003637 adapter->detect_tx_hung = false;
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003638 if (tx_ring->buffer_info[eop].time_stamp &&
3639 time_after(jiffies, tx_ring->buffer_info[eop].time_stamp +
Joe Perches8e95a202009-12-03 07:58:21 +00003640 (adapter->tx_timeout_factor * HZ)) &&
3641 !(er32(STATUS) & E1000_STATUS_TXOFF)) {
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003642
3643 /* detected Tx unit hang */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003644 e_err(drv, "Detected Tx Unit Hang\n"
Emil Tantilov675ad472010-04-27 14:02:58 +00003645 " Tx Queue <%lu>\n"
3646 " TDH <%x>\n"
3647 " TDT <%x>\n"
3648 " next_to_use <%x>\n"
3649 " next_to_clean <%x>\n"
3650 "buffer_info[next_to_clean]\n"
3651 " time_stamp <%lx>\n"
3652 " next_to_watch <%x>\n"
3653 " jiffies <%lx>\n"
3654 " next_to_watch.status <%x>\n",
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08003655 (unsigned long)((tx_ring - adapter->tx_ring) /
3656 sizeof(struct e1000_tx_ring)),
Joe Perches1dc32912008-07-11 15:17:08 -07003657 readl(hw->hw_addr + tx_ring->tdh),
3658 readl(hw->hw_addr + tx_ring->tdt),
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003659 tx_ring->next_to_use,
Jeff Kirsher392137f2006-01-12 16:50:57 -08003660 tx_ring->next_to_clean,
Jesse Brandeburgcdd75492009-09-25 12:18:07 +00003661 tx_ring->buffer_info[eop].time_stamp,
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003662 eop,
3663 jiffies,
3664 eop_desc->upper.fields.status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 netif_stop_queue(netdev);
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07003666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 }
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003668 adapter->total_tx_bytes += total_tx_bytes;
3669 adapter->total_tx_packets += total_tx_packets;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003670 netdev->stats.tx_bytes += total_tx_bytes;
3671 netdev->stats.tx_packets += total_tx_packets;
Eric Dumazet807540b2010-09-23 05:40:09 +00003672 return count < tx_ring->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673}
3674
3675/**
3676 * e1000_rx_checksum - Receive Checksum Offload for 82543
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003677 * @adapter: board private structure
3678 * @status_err: receive descriptor status and error fields
3679 * @csum: receive descriptor csum field
3680 * @sk_buff: socket buffer with received data
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 **/
3682
Joe Perches64798842008-07-11 15:17:02 -07003683static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
3684 u32 csum, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685{
Joe Perches1dc32912008-07-11 15:17:08 -07003686 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07003687 u16 status = (u16)status_err;
3688 u8 errors = (u8)(status_err >> 24);
Eric Dumazetbc8acf22010-09-02 13:07:41 -07003689
3690 skb_checksum_none_assert(skb);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003691
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 /* 82543 or newer only */
Joe Perches1dc32912008-07-11 15:17:08 -07003693 if (unlikely(hw->mac_type < e1000_82543)) return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 /* Ignore Checksum bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003695 if (unlikely(status & E1000_RXD_STAT_IXSM)) return;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003696 /* TCP/UDP checksum error bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003697 if (unlikely(errors & E1000_RXD_ERR_TCPE)) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003698 /* let the stack verify checksum errors */
3699 adapter->hw_csum_err++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 return;
3701 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003702 /* TCP/UDP Checksum has not been calculated */
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00003703 if (!(status & E1000_RXD_STAT_TCPCS))
3704 return;
3705
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003706 /* It must be a TCP or UDP packet with a valid checksum */
3707 if (likely(status & E1000_RXD_STAT_TCPCS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 /* TCP checksum is good */
3709 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003711 adapter->hw_csum_good++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712}
3713
3714/**
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003715 * e1000_consume_page - helper function
3716 **/
3717static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
3718 u16 length)
3719{
3720 bi->page = NULL;
3721 skb->len += length;
3722 skb->data_len += length;
3723 skb->truesize += length;
3724}
3725
3726/**
3727 * e1000_receive_skb - helper function to handle rx indications
3728 * @adapter: board private structure
3729 * @status: descriptor status field as written by hardware
3730 * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
3731 * @skb: pointer to sk_buff to be indicated to stack
3732 */
3733static void e1000_receive_skb(struct e1000_adapter *adapter, u8 status,
3734 __le16 vlan, struct sk_buff *skb)
3735{
Jesse Brandeburg6a08d192010-09-22 18:23:05 +00003736 skb->protocol = eth_type_trans(skb, adapter->netdev);
3737
3738 if ((unlikely(adapter->vlgrp && (status & E1000_RXD_STAT_VP))))
3739 vlan_gro_receive(&adapter->napi, adapter->vlgrp,
3740 le16_to_cpu(vlan) & E1000_RXD_SPC_VLAN_MASK,
3741 skb);
3742 else
3743 napi_gro_receive(&adapter->napi, skb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003744}
3745
3746/**
3747 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
3748 * @adapter: board private structure
3749 * @rx_ring: ring to clean
3750 * @work_done: amount of napi work completed this call
3751 * @work_to_do: max amount of work allowed for this call to do
3752 *
3753 * the return value indicates whether actual cleaning was done, there
3754 * is no guarantee that everything was cleaned
3755 */
3756static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
3757 struct e1000_rx_ring *rx_ring,
3758 int *work_done, int work_to_do)
3759{
3760 struct e1000_hw *hw = &adapter->hw;
3761 struct net_device *netdev = adapter->netdev;
3762 struct pci_dev *pdev = adapter->pdev;
3763 struct e1000_rx_desc *rx_desc, *next_rxd;
3764 struct e1000_buffer *buffer_info, *next_buffer;
3765 unsigned long irq_flags;
3766 u32 length;
3767 unsigned int i;
3768 int cleaned_count = 0;
3769 bool cleaned = false;
3770 unsigned int total_rx_bytes=0, total_rx_packets=0;
3771
3772 i = rx_ring->next_to_clean;
3773 rx_desc = E1000_RX_DESC(*rx_ring, i);
3774 buffer_info = &rx_ring->buffer_info[i];
3775
3776 while (rx_desc->status & E1000_RXD_STAT_DD) {
3777 struct sk_buff *skb;
3778 u8 status;
3779
3780 if (*work_done >= work_to_do)
3781 break;
3782 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00003783 rmb(); /* read descriptor and rx_buffer_info after status DD */
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003784
3785 status = rx_desc->status;
3786 skb = buffer_info->skb;
3787 buffer_info->skb = NULL;
3788
3789 if (++i == rx_ring->count) i = 0;
3790 next_rxd = E1000_RX_DESC(*rx_ring, i);
3791 prefetch(next_rxd);
3792
3793 next_buffer = &rx_ring->buffer_info[i];
3794
3795 cleaned = true;
3796 cleaned_count++;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00003797 dma_unmap_page(&pdev->dev, buffer_info->dma,
3798 buffer_info->length, DMA_FROM_DEVICE);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003799 buffer_info->dma = 0;
3800
3801 length = le16_to_cpu(rx_desc->length);
3802
3803 /* errors is only valid for DD + EOP descriptors */
3804 if (unlikely((status & E1000_RXD_STAT_EOP) &&
3805 (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) {
3806 u8 last_byte = *(skb->data + length - 1);
3807 if (TBI_ACCEPT(hw, status, rx_desc->errors, length,
3808 last_byte)) {
3809 spin_lock_irqsave(&adapter->stats_lock,
3810 irq_flags);
3811 e1000_tbi_adjust_stats(hw, &adapter->stats,
3812 length, skb->data);
3813 spin_unlock_irqrestore(&adapter->stats_lock,
3814 irq_flags);
3815 length--;
3816 } else {
3817 /* recycle both page and skb */
3818 buffer_info->skb = skb;
3819 /* an error means any chain goes out the window
3820 * too */
3821 if (rx_ring->rx_skb_top)
3822 dev_kfree_skb(rx_ring->rx_skb_top);
3823 rx_ring->rx_skb_top = NULL;
3824 goto next_desc;
3825 }
3826 }
3827
3828#define rxtop rx_ring->rx_skb_top
3829 if (!(status & E1000_RXD_STAT_EOP)) {
3830 /* this descriptor is only the beginning (or middle) */
3831 if (!rxtop) {
3832 /* this is the beginning of a chain */
3833 rxtop = skb;
3834 skb_fill_page_desc(rxtop, 0, buffer_info->page,
3835 0, length);
3836 } else {
3837 /* this is the middle of a chain */
3838 skb_fill_page_desc(rxtop,
3839 skb_shinfo(rxtop)->nr_frags,
3840 buffer_info->page, 0, length);
3841 /* re-use the skb, only consumed the page */
3842 buffer_info->skb = skb;
3843 }
3844 e1000_consume_page(buffer_info, rxtop, length);
3845 goto next_desc;
3846 } else {
3847 if (rxtop) {
3848 /* end of the chain */
3849 skb_fill_page_desc(rxtop,
3850 skb_shinfo(rxtop)->nr_frags,
3851 buffer_info->page, 0, length);
3852 /* re-use the current skb, we only consumed the
3853 * page */
3854 buffer_info->skb = skb;
3855 skb = rxtop;
3856 rxtop = NULL;
3857 e1000_consume_page(buffer_info, skb, length);
3858 } else {
3859 /* no chain, got EOP, this buf is the packet
3860 * copybreak to save the put_page/alloc_page */
3861 if (length <= copybreak &&
3862 skb_tailroom(skb) >= length) {
3863 u8 *vaddr;
3864 vaddr = kmap_atomic(buffer_info->page,
3865 KM_SKB_DATA_SOFTIRQ);
3866 memcpy(skb_tail_pointer(skb), vaddr, length);
3867 kunmap_atomic(vaddr,
3868 KM_SKB_DATA_SOFTIRQ);
3869 /* re-use the page, so don't erase
3870 * buffer_info->page */
3871 skb_put(skb, length);
3872 } else {
3873 skb_fill_page_desc(skb, 0,
3874 buffer_info->page, 0,
3875 length);
3876 e1000_consume_page(buffer_info, skb,
3877 length);
3878 }
3879 }
3880 }
3881
3882 /* Receive Checksum Offload XXX recompute due to CRC strip? */
3883 e1000_rx_checksum(adapter,
3884 (u32)(status) |
3885 ((u32)(rx_desc->errors) << 24),
3886 le16_to_cpu(rx_desc->csum), skb);
3887
3888 pskb_trim(skb, skb->len - 4);
3889
3890 /* probably a little skewed due to removing CRC */
3891 total_rx_bytes += skb->len;
3892 total_rx_packets++;
3893
3894 /* eth type trans needs skb->data to point to something */
3895 if (!pskb_may_pull(skb, ETH_HLEN)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07003896 e_err(drv, "pskb_may_pull failed.\n");
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003897 dev_kfree_skb(skb);
3898 goto next_desc;
3899 }
3900
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003901 e1000_receive_skb(adapter, status, rx_desc->special, skb);
3902
3903next_desc:
3904 rx_desc->status = 0;
3905
3906 /* return some buffers to hardware, one at a time is too slow */
3907 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
3908 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
3909 cleaned_count = 0;
3910 }
3911
3912 /* use prefetched values */
3913 rx_desc = next_rxd;
3914 buffer_info = next_buffer;
3915 }
3916 rx_ring->next_to_clean = i;
3917
3918 cleaned_count = E1000_DESC_UNUSED(rx_ring);
3919 if (cleaned_count)
3920 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
3921
3922 adapter->total_rx_packets += total_rx_packets;
3923 adapter->total_rx_bytes += total_rx_bytes;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00003924 netdev->stats.rx_bytes += total_rx_bytes;
3925 netdev->stats.rx_packets += total_rx_packets;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003926 return cleaned;
3927}
3928
Joe Perches57bf6ee2010-05-13 15:26:17 +00003929/*
3930 * this should improve performance for small packets with large amounts
3931 * of reassembly being done in the stack
3932 */
3933static void e1000_check_copybreak(struct net_device *netdev,
3934 struct e1000_buffer *buffer_info,
3935 u32 length, struct sk_buff **skb)
3936{
3937 struct sk_buff *new_skb;
3938
3939 if (length > copybreak)
3940 return;
3941
3942 new_skb = netdev_alloc_skb_ip_align(netdev, length);
3943 if (!new_skb)
3944 return;
3945
3946 skb_copy_to_linear_data_offset(new_skb, -NET_IP_ALIGN,
3947 (*skb)->data - NET_IP_ALIGN,
3948 length + NET_IP_ALIGN);
3949 /* save the skb in buffer_info as good */
3950 buffer_info->skb = *skb;
3951 *skb = new_skb;
3952}
3953
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003954/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003955 * e1000_clean_rx_irq - Send received data up the network stack; legacy
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 * @adapter: board private structure
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00003957 * @rx_ring: ring to clean
3958 * @work_done: amount of napi work completed this call
3959 * @work_to_do: max amount of work allowed for this call to do
3960 */
Joe Perches64798842008-07-11 15:17:02 -07003961static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
3962 struct e1000_rx_ring *rx_ring,
3963 int *work_done, int work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964{
Joe Perches1dc32912008-07-11 15:17:08 -07003965 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 struct net_device *netdev = adapter->netdev;
3967 struct pci_dev *pdev = adapter->pdev;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003968 struct e1000_rx_desc *rx_desc, *next_rxd;
3969 struct e1000_buffer *buffer_info, *next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 unsigned long flags;
Joe Perches406874a2008-04-03 10:06:32 -07003971 u32 length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 unsigned int i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08003973 int cleaned_count = 0;
Joe Perchesc3033b02008-03-21 11:06:25 -07003974 bool cleaned = false;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003975 unsigned int total_rx_bytes=0, total_rx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
3977 i = rx_ring->next_to_clean;
3978 rx_desc = E1000_RX_DESC(*rx_ring, i);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08003979 buffer_info = &rx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08003981 while (rx_desc->status & E1000_RXD_STAT_DD) {
Auke Kok24f476e2006-06-08 09:28:47 -07003982 struct sk_buff *skb;
Jeff Kirshera292ca62006-01-12 16:51:30 -08003983 u8 status;
Auke Kok90fb5132006-11-01 08:47:30 -08003984
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003985 if (*work_done >= work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 break;
3987 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00003988 rmb(); /* read descriptor and rx_buffer_info after status DD */
Francois Romieuc3570ac2008-07-11 15:17:38 -07003989
Jeff Kirshera292ca62006-01-12 16:51:30 -08003990 status = rx_desc->status;
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08003991 skb = buffer_info->skb;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003992 buffer_info->skb = NULL;
3993
Jeff Kirsher30320be2006-03-02 18:21:57 -08003994 prefetch(skb->data - NET_IP_ALIGN);
3995
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08003996 if (++i == rx_ring->count) i = 0;
3997 next_rxd = E1000_RX_DESC(*rx_ring, i);
Jeff Kirsher30320be2006-03-02 18:21:57 -08003998 prefetch(next_rxd);
3999
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004000 next_buffer = &rx_ring->buffer_info[i];
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004001
Joe Perchesc3033b02008-03-21 11:06:25 -07004002 cleaned = true;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004003 cleaned_count++;
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004004 dma_unmap_single(&pdev->dev, buffer_info->dma,
4005 buffer_info->length, DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00004006 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 length = le16_to_cpu(rx_desc->length);
Neil Hormanea30e112009-06-02 01:29:58 -07004009 /* !EOP means multiple descriptors were used to store a single
Jesse Brandeburg40a14de2010-01-19 14:15:38 +00004010 * packet, if thats the case we need to toss it. In fact, we
4011 * to toss every packet with the EOP bit clear and the next
4012 * frame that _does_ have the EOP bit set, as it is by
4013 * definition only a frame fragment
4014 */
4015 if (unlikely(!(status & E1000_RXD_STAT_EOP)))
4016 adapter->discarding = true;
4017
4018 if (adapter->discarding) {
Jeff Kirshera1415ee2006-02-28 20:24:07 -08004019 /* All receives must fit into a single buffer */
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004020 e_dbg("Receive packet consumed multiple buffers\n");
Auke Kok864c4e42006-06-27 09:06:53 -07004021 /* recycle */
Auke Kok8fc897b2006-08-28 14:56:16 -07004022 buffer_info->skb = skb;
Jesse Brandeburg40a14de2010-01-19 14:15:38 +00004023 if (status & E1000_RXD_STAT_EOP)
4024 adapter->discarding = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 goto next_desc;
4026 }
4027
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004028 if (unlikely(rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK)) {
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004029 u8 last_byte = *(skb->data + length - 1);
Joe Perches1dc32912008-07-11 15:17:08 -07004030 if (TBI_ACCEPT(hw, status, rx_desc->errors, length,
4031 last_byte)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004033 e1000_tbi_adjust_stats(hw, &adapter->stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 length, skb->data);
4035 spin_unlock_irqrestore(&adapter->stats_lock,
4036 flags);
4037 length--;
4038 } else {
Auke Kok9e2feac2006-04-14 19:05:18 -07004039 /* recycle */
4040 buffer_info->skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 goto next_desc;
4042 }
Auke Kok1cb58212006-04-18 12:31:04 -07004043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
Jesse Brandeburgd2a1e212006-10-24 14:46:06 -07004045 /* adjust length to remove Ethernet CRC, this must be
4046 * done after the TBI_ACCEPT workaround above */
4047 length -= 4;
4048
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004049 /* probably a little skewed due to removing CRC */
4050 total_rx_bytes += length;
4051 total_rx_packets++;
4052
Joe Perches57bf6ee2010-05-13 15:26:17 +00004053 e1000_check_copybreak(netdev, buffer_info, length, &skb);
4054
Auke Kok996695d2006-11-01 08:47:50 -08004055 skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056
4057 /* Receive Checksum Offload */
Jeff Kirshera292ca62006-01-12 16:51:30 -08004058 e1000_rx_checksum(adapter,
Joe Perches406874a2008-04-03 10:06:32 -07004059 (u32)(status) |
4060 ((u32)(rx_desc->errors) << 24),
David S. Millerc3d7a3a2006-03-15 14:26:28 -08004061 le16_to_cpu(rx_desc->csum), skb);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004062
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004063 e1000_receive_skb(adapter, status, rx_desc->special, skb);
Francois Romieuc3570ac2008-07-11 15:17:38 -07004064
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065next_desc:
4066 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004068 /* return some buffers to hardware, one at a time is too slow */
4069 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
4070 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
4071 cleaned_count = 0;
4072 }
4073
Jeff Kirsher30320be2006-03-02 18:21:57 -08004074 /* use prefetched values */
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004075 rx_desc = next_rxd;
4076 buffer_info = next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 rx_ring->next_to_clean = i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004079
4080 cleaned_count = E1000_DESC_UNUSED(rx_ring);
4081 if (cleaned_count)
4082 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004084 adapter->total_rx_packets += total_rx_packets;
4085 adapter->total_rx_bytes += total_rx_bytes;
Ajit Khaparde5fe31de2009-10-07 02:42:23 +00004086 netdev->stats.rx_bytes += total_rx_bytes;
4087 netdev->stats.rx_packets += total_rx_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 return cleaned;
4089}
4090
4091/**
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004092 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
4093 * @adapter: address of board private structure
4094 * @rx_ring: pointer to receive ring structure
4095 * @cleaned_count: number of buffers to allocate this pass
4096 **/
4097
4098static void
4099e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
4100 struct e1000_rx_ring *rx_ring, int cleaned_count)
4101{
4102 struct net_device *netdev = adapter->netdev;
4103 struct pci_dev *pdev = adapter->pdev;
4104 struct e1000_rx_desc *rx_desc;
4105 struct e1000_buffer *buffer_info;
4106 struct sk_buff *skb;
4107 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +00004108 unsigned int bufsz = 256 - 16 /*for skb_reserve */ ;
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004109
4110 i = rx_ring->next_to_use;
4111 buffer_info = &rx_ring->buffer_info[i];
4112
4113 while (cleaned_count--) {
4114 skb = buffer_info->skb;
4115 if (skb) {
4116 skb_trim(skb, 0);
4117 goto check_page;
4118 }
4119
Eric Dumazet89d71a62009-10-13 05:34:20 +00004120 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004121 if (unlikely(!skb)) {
4122 /* Better luck next round */
4123 adapter->alloc_rx_buff_failed++;
4124 break;
4125 }
4126
4127 /* Fix for errata 23, can't cross 64kB boundary */
4128 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4129 struct sk_buff *oldskb = skb;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004130 e_err(rx_err, "skb align check failed: %u bytes at "
4131 "%p\n", bufsz, skb->data);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004132 /* Try again, without freeing the previous */
Eric Dumazet89d71a62009-10-13 05:34:20 +00004133 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004134 /* Failed allocation, critical failure */
4135 if (!skb) {
4136 dev_kfree_skb(oldskb);
4137 adapter->alloc_rx_buff_failed++;
4138 break;
4139 }
4140
4141 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4142 /* give up */
4143 dev_kfree_skb(skb);
4144 dev_kfree_skb(oldskb);
4145 break; /* while (cleaned_count--) */
4146 }
4147
4148 /* Use new allocation */
4149 dev_kfree_skb(oldskb);
4150 }
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004151 buffer_info->skb = skb;
4152 buffer_info->length = adapter->rx_buffer_len;
4153check_page:
4154 /* allocate a new page if necessary */
4155 if (!buffer_info->page) {
4156 buffer_info->page = alloc_page(GFP_ATOMIC);
4157 if (unlikely(!buffer_info->page)) {
4158 adapter->alloc_rx_buff_failed++;
4159 break;
4160 }
4161 }
4162
Anton Blanchardb5abb022010-02-19 17:54:53 +00004163 if (!buffer_info->dma) {
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004164 buffer_info->dma = dma_map_page(&pdev->dev,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004165 buffer_info->page, 0,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004166 buffer_info->length,
4167 DMA_FROM_DEVICE);
4168 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Anton Blanchardb5abb022010-02-19 17:54:53 +00004169 put_page(buffer_info->page);
4170 dev_kfree_skb(skb);
4171 buffer_info->page = NULL;
4172 buffer_info->skb = NULL;
4173 buffer_info->dma = 0;
4174 adapter->alloc_rx_buff_failed++;
4175 break; /* while !buffer_info->skb */
4176 }
4177 }
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004178
4179 rx_desc = E1000_RX_DESC(*rx_ring, i);
4180 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4181
4182 if (unlikely(++i == rx_ring->count))
4183 i = 0;
4184 buffer_info = &rx_ring->buffer_info[i];
4185 }
4186
4187 if (likely(rx_ring->next_to_use != i)) {
4188 rx_ring->next_to_use = i;
4189 if (unlikely(i-- == 0))
4190 i = (rx_ring->count - 1);
4191
4192 /* Force memory writes to complete before letting h/w
4193 * know there are new descriptors to fetch. (Only
4194 * applicable for weak-ordered memory model archs,
4195 * such as IA-64). */
4196 wmb();
4197 writel(i, adapter->hw.hw_addr + rx_ring->rdt);
4198 }
4199}
4200
4201/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004202 * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 * @adapter: address of board private structure
4204 **/
4205
Joe Perches64798842008-07-11 15:17:02 -07004206static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
4207 struct e1000_rx_ring *rx_ring,
4208 int cleaned_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209{
Joe Perches1dc32912008-07-11 15:17:08 -07004210 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 struct net_device *netdev = adapter->netdev;
4212 struct pci_dev *pdev = adapter->pdev;
4213 struct e1000_rx_desc *rx_desc;
4214 struct e1000_buffer *buffer_info;
4215 struct sk_buff *skb;
Malli Chilakala26483452005-04-28 19:44:46 -07004216 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +00004217 unsigned int bufsz = adapter->rx_buffer_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218
4219 i = rx_ring->next_to_use;
4220 buffer_info = &rx_ring->buffer_info[i];
4221
Jeff Kirshera292ca62006-01-12 16:51:30 -08004222 while (cleaned_count--) {
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004223 skb = buffer_info->skb;
4224 if (skb) {
Jeff Kirshera292ca62006-01-12 16:51:30 -08004225 skb_trim(skb, 0);
4226 goto map_skb;
4227 }
4228
Eric Dumazet89d71a62009-10-13 05:34:20 +00004229 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004230 if (unlikely(!skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 /* Better luck next round */
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004232 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 break;
4234 }
4235
Malli Chilakala26483452005-04-28 19:44:46 -07004236 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4238 struct sk_buff *oldskb = skb;
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004239 e_err(rx_err, "skb align check failed: %u bytes at "
4240 "%p\n", bufsz, skb->data);
Malli Chilakala26483452005-04-28 19:44:46 -07004241 /* Try again, without freeing the previous */
Eric Dumazet89d71a62009-10-13 05:34:20 +00004242 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Malli Chilakala26483452005-04-28 19:44:46 -07004243 /* Failed allocation, critical failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 if (!skb) {
4245 dev_kfree_skb(oldskb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004246 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 break;
4248 }
Malli Chilakala26483452005-04-28 19:44:46 -07004249
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4251 /* give up */
4252 dev_kfree_skb(skb);
4253 dev_kfree_skb(oldskb);
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004254 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 break; /* while !buffer_info->skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 }
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004257
4258 /* Use new allocation */
4259 dev_kfree_skb(oldskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 buffer_info->skb = skb;
4262 buffer_info->length = adapter->rx_buffer_len;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004263map_skb:
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004264 buffer_info->dma = dma_map_single(&pdev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 skb->data,
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004266 buffer_info->length,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004267 DMA_FROM_DEVICE);
4268 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Anton Blanchardb5abb022010-02-19 17:54:53 +00004269 dev_kfree_skb(skb);
4270 buffer_info->skb = NULL;
4271 buffer_info->dma = 0;
4272 adapter->alloc_rx_buff_failed++;
4273 break; /* while !buffer_info->skb */
4274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004276 /*
4277 * XXX if it was allocated cleanly it will never map to a
4278 * boundary crossing
4279 */
4280
Malli Chilakala26483452005-04-28 19:44:46 -07004281 /* Fix for errata 23, can't cross 64kB boundary */
4282 if (!e1000_check_64k_bound(adapter,
4283 (void *)(unsigned long)buffer_info->dma,
4284 adapter->rx_buffer_len)) {
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004285 e_err(rx_err, "dma align check failed: %u bytes at "
4286 "%p\n", adapter->rx_buffer_len,
Emil Tantilov675ad472010-04-27 14:02:58 +00004287 (void *)(unsigned long)buffer_info->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 dev_kfree_skb(skb);
4289 buffer_info->skb = NULL;
4290
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004291 dma_unmap_single(&pdev->dev, buffer_info->dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 adapter->rx_buffer_len,
Nick Nunleyb16f53b2010-04-27 13:08:45 +00004293 DMA_FROM_DEVICE);
Jesse Brandeburg679be3b2009-06-30 12:45:34 +00004294 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295
Jesse Brandeburgedbbb3c2009-07-06 10:44:39 +00004296 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 break; /* while !buffer_info->skb */
4298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 rx_desc = E1000_RX_DESC(*rx_ring, i);
4300 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4301
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004302 if (unlikely(++i == rx_ring->count))
4303 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 buffer_info = &rx_ring->buffer_info[i];
4305 }
4306
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004307 if (likely(rx_ring->next_to_use != i)) {
4308 rx_ring->next_to_use = i;
4309 if (unlikely(i-- == 0))
4310 i = (rx_ring->count - 1);
4311
4312 /* Force memory writes to complete before letting h/w
4313 * know there are new descriptors to fetch. (Only
4314 * applicable for weak-ordered memory model archs,
4315 * such as IA-64). */
4316 wmb();
Joe Perches1dc32912008-07-11 15:17:08 -07004317 writel(i, hw->hw_addr + rx_ring->rdt);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319}
4320
4321/**
4322 * e1000_smartspeed - Workaround for SmartSpeed on 82541 and 82547 controllers.
4323 * @adapter:
4324 **/
4325
Joe Perches64798842008-07-11 15:17:02 -07004326static void e1000_smartspeed(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327{
Joe Perches1dc32912008-07-11 15:17:08 -07004328 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004329 u16 phy_status;
4330 u16 phy_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
Joe Perches1dc32912008-07-11 15:17:08 -07004332 if ((hw->phy_type != e1000_phy_igp) || !hw->autoneg ||
4333 !(hw->autoneg_advertised & ADVERTISE_1000_FULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 return;
4335
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004336 if (adapter->smartspeed == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 /* If Master/Slave config fault is asserted twice,
4338 * we assume back-to-back */
Joe Perches1dc32912008-07-11 15:17:08 -07004339 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_status);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004340 if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
Joe Perches1dc32912008-07-11 15:17:08 -07004341 e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_status);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004342 if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
Joe Perches1dc32912008-07-11 15:17:08 -07004343 e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004344 if (phy_ctrl & CR_1000T_MS_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 phy_ctrl &= ~CR_1000T_MS_ENABLE;
Joe Perches1dc32912008-07-11 15:17:08 -07004346 e1000_write_phy_reg(hw, PHY_1000T_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 phy_ctrl);
4348 adapter->smartspeed++;
Joe Perches1dc32912008-07-11 15:17:08 -07004349 if (!e1000_phy_setup_autoneg(hw) &&
4350 !e1000_read_phy_reg(hw, PHY_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351 &phy_ctrl)) {
4352 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4353 MII_CR_RESTART_AUTO_NEG);
Joe Perches1dc32912008-07-11 15:17:08 -07004354 e1000_write_phy_reg(hw, PHY_CTRL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 phy_ctrl);
4356 }
4357 }
4358 return;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004359 } else if (adapter->smartspeed == E1000_SMARTSPEED_DOWNSHIFT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 /* If still no link, perhaps using 2/3 pair cable */
Joe Perches1dc32912008-07-11 15:17:08 -07004361 e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 phy_ctrl |= CR_1000T_MS_ENABLE;
Joe Perches1dc32912008-07-11 15:17:08 -07004363 e1000_write_phy_reg(hw, PHY_1000T_CTRL, phy_ctrl);
4364 if (!e1000_phy_setup_autoneg(hw) &&
4365 !e1000_read_phy_reg(hw, PHY_CTRL, &phy_ctrl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4367 MII_CR_RESTART_AUTO_NEG);
Joe Perches1dc32912008-07-11 15:17:08 -07004368 e1000_write_phy_reg(hw, PHY_CTRL, phy_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 }
4370 }
4371 /* Restart process after E1000_SMARTSPEED_MAX iterations */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004372 if (adapter->smartspeed++ == E1000_SMARTSPEED_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 adapter->smartspeed = 0;
4374}
4375
4376/**
4377 * e1000_ioctl -
4378 * @netdev:
4379 * @ifreq:
4380 * @cmd:
4381 **/
4382
Joe Perches64798842008-07-11 15:17:02 -07004383static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384{
4385 switch (cmd) {
4386 case SIOCGMIIPHY:
4387 case SIOCGMIIREG:
4388 case SIOCSMIIREG:
4389 return e1000_mii_ioctl(netdev, ifr, cmd);
4390 default:
4391 return -EOPNOTSUPP;
4392 }
4393}
4394
4395/**
4396 * e1000_mii_ioctl -
4397 * @netdev:
4398 * @ifreq:
4399 * @cmd:
4400 **/
4401
Joe Perches64798842008-07-11 15:17:02 -07004402static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
4403 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004405 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004406 struct e1000_hw *hw = &adapter->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 struct mii_ioctl_data *data = if_mii(ifr);
4408 int retval;
Joe Perches406874a2008-04-03 10:06:32 -07004409 u16 mii_reg;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004410 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
Joe Perches1dc32912008-07-11 15:17:08 -07004412 if (hw->media_type != e1000_media_type_copper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 return -EOPNOTSUPP;
4414
4415 switch (cmd) {
4416 case SIOCGMIIPHY:
Joe Perches1dc32912008-07-11 15:17:08 -07004417 data->phy_id = hw->phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418 break;
4419 case SIOCGMIIREG:
Malli Chilakala97876fc2005-06-17 17:40:19 -07004420 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004421 if (e1000_read_phy_reg(hw, data->reg_num & 0x1F,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004422 &data->val_out)) {
4423 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004425 }
4426 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 break;
4428 case SIOCSMIIREG:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004429 if (data->reg_num & ~(0x1F))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 return -EFAULT;
4431 mii_reg = data->val_in;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004432 spin_lock_irqsave(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004433 if (e1000_write_phy_reg(hw, data->reg_num,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004434 mii_reg)) {
4435 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004437 }
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004438 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Joe Perches1dc32912008-07-11 15:17:08 -07004439 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 switch (data->reg_num) {
4441 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004442 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 break;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004444 if (mii_reg & MII_CR_AUTO_NEG_EN) {
Joe Perches1dc32912008-07-11 15:17:08 -07004445 hw->autoneg = 1;
4446 hw->autoneg_advertised = 0x2F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 } else {
David Decotigny14ad2512011-04-27 18:32:43 +00004448 u32 speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 if (mii_reg & 0x40)
David Decotigny14ad2512011-04-27 18:32:43 +00004450 speed = SPEED_1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 else if (mii_reg & 0x2000)
David Decotigny14ad2512011-04-27 18:32:43 +00004452 speed = SPEED_100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 else
David Decotigny14ad2512011-04-27 18:32:43 +00004454 speed = SPEED_10;
4455 retval = e1000_set_spd_dplx(
4456 adapter, speed,
4457 ((mii_reg & 0x100)
4458 ? DUPLEX_FULL :
4459 DUPLEX_HALF));
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004460 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461 return retval;
4462 }
Auke Kok2db10a02006-06-27 09:06:28 -07004463 if (netif_running(adapter->netdev))
4464 e1000_reinit_locked(adapter);
4465 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 e1000_reset(adapter);
4467 break;
4468 case M88E1000_PHY_SPEC_CTRL:
4469 case M88E1000_EXT_PHY_SPEC_CTRL:
Joe Perches1dc32912008-07-11 15:17:08 -07004470 if (e1000_phy_reset(hw))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 return -EIO;
4472 break;
4473 }
4474 } else {
4475 switch (data->reg_num) {
4476 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004477 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 break;
Auke Kok2db10a02006-06-27 09:06:28 -07004479 if (netif_running(adapter->netdev))
4480 e1000_reinit_locked(adapter);
4481 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 e1000_reset(adapter);
4483 break;
4484 }
4485 }
4486 break;
4487 default:
4488 return -EOPNOTSUPP;
4489 }
4490 return E1000_SUCCESS;
4491}
4492
Joe Perches64798842008-07-11 15:17:02 -07004493void e1000_pci_set_mwi(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494{
4495 struct e1000_adapter *adapter = hw->back;
Malli Chilakala26483452005-04-28 19:44:46 -07004496 int ret_val = pci_set_mwi(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004498 if (ret_val)
Emil Tantilovfeb8f472010-07-26 23:37:21 -07004499 e_err(probe, "Error in setting MWI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500}
4501
Joe Perches64798842008-07-11 15:17:02 -07004502void e1000_pci_clear_mwi(struct e1000_hw *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503{
4504 struct e1000_adapter *adapter = hw->back;
4505
4506 pci_clear_mwi(adapter->pdev);
4507}
4508
Joe Perches64798842008-07-11 15:17:02 -07004509int e1000_pcix_get_mmrbc(struct e1000_hw *hw)
Peter Oruba007755e2007-09-28 22:42:06 -07004510{
4511 struct e1000_adapter *adapter = hw->back;
4512 return pcix_get_mmrbc(adapter->pdev);
4513}
4514
Joe Perches64798842008-07-11 15:17:02 -07004515void e1000_pcix_set_mmrbc(struct e1000_hw *hw, int mmrbc)
Peter Oruba007755e2007-09-28 22:42:06 -07004516{
4517 struct e1000_adapter *adapter = hw->back;
4518 pcix_set_mmrbc(adapter->pdev, mmrbc);
4519}
4520
Joe Perches64798842008-07-11 15:17:02 -07004521void e1000_io_write(struct e1000_hw *hw, unsigned long port, u32 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522{
4523 outl(value, port);
4524}
4525
Joe Perches64798842008-07-11 15:17:02 -07004526static void e1000_vlan_rx_register(struct net_device *netdev,
4527 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004529 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004530 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004531 u32 ctrl, rctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004533 if (!test_bit(__E1000_DOWN, &adapter->flags))
4534 e1000_irq_disable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 adapter->vlgrp = grp;
4536
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004537 if (grp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 /* enable VLAN tag insert/strip */
Joe Perches1dc32912008-07-11 15:17:08 -07004539 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 ctrl |= E1000_CTRL_VME;
Joe Perches1dc32912008-07-11 15:17:08 -07004541 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004543 /* enable VLAN receive filtering */
4544 rctl = er32(RCTL);
4545 rctl &= ~E1000_RCTL_CFIEN;
4546 if (!(netdev->flags & IFF_PROMISC))
4547 rctl |= E1000_RCTL_VFE;
4548 ew32(RCTL, rctl);
4549 e1000_update_mng_vlan(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 } else {
4551 /* disable VLAN tag insert/strip */
Joe Perches1dc32912008-07-11 15:17:08 -07004552 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 ctrl &= ~E1000_CTRL_VME;
Joe Perches1dc32912008-07-11 15:17:08 -07004554 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004556 /* disable VLAN receive filtering */
4557 rctl = er32(RCTL);
4558 rctl &= ~E1000_RCTL_VFE;
4559 ew32(RCTL, rctl);
Graham, Davidfd38d7a2009-08-31 14:12:51 +00004560
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004561 if (adapter->mng_vlan_id != (u16)E1000_MNG_VLAN_NONE) {
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004562 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004563 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Auke Kokcd94dd02006-06-27 09:08:22 -07004564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 }
4566
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004567 if (!test_bit(__E1000_DOWN, &adapter->flags))
4568 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569}
4570
Joe Perches64798842008-07-11 15:17:02 -07004571static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004573 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004574 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004575 u32 vfta, index;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004576
Joe Perches1dc32912008-07-11 15:17:08 -07004577 if ((hw->mng_cookie.status &
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004578 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
4579 (vid == adapter->mng_vlan_id))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004580 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 /* add VID to filter table */
4582 index = (vid >> 5) & 0x7F;
Joe Perches1dc32912008-07-11 15:17:08 -07004583 vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 vfta |= (1 << (vid & 0x1F));
Joe Perches1dc32912008-07-11 15:17:08 -07004585 e1000_write_vfta(hw, index, vfta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586}
4587
Joe Perches64798842008-07-11 15:17:02 -07004588static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004590 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004591 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004592 u32 vfta, index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004594 if (!test_bit(__E1000_DOWN, &adapter->flags))
4595 e1000_irq_disable(adapter);
Dan Aloni5c15bde2007-03-02 20:44:51 -08004596 vlan_group_set_device(adapter->vlgrp, vid, NULL);
Jesse Brandeburg9150b762008-03-21 11:06:58 -07004597 if (!test_bit(__E1000_DOWN, &adapter->flags))
4598 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599
4600 /* remove VID from filter table */
4601 index = (vid >> 5) & 0x7F;
Joe Perches1dc32912008-07-11 15:17:08 -07004602 vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 vfta &= ~(1 << (vid & 0x1F));
Joe Perches1dc32912008-07-11 15:17:08 -07004604 e1000_write_vfta(hw, index, vfta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605}
4606
Joe Perches64798842008-07-11 15:17:02 -07004607static void e1000_restore_vlan(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608{
4609 e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
4610
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004611 if (adapter->vlgrp) {
Joe Perches406874a2008-04-03 10:06:32 -07004612 u16 vid;
Jesse Grossb7381272010-10-20 13:56:02 +00004613 for (vid = 0; vid < VLAN_N_VID; vid++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08004614 if (!vlan_group_get_device(adapter->vlgrp, vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 continue;
4616 e1000_vlan_rx_add_vid(adapter->netdev, vid);
4617 }
4618 }
4619}
4620
David Decotigny14ad2512011-04-27 18:32:43 +00004621int e1000_set_spd_dplx(struct e1000_adapter *adapter, u32 spd, u8 dplx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622{
Joe Perches1dc32912008-07-11 15:17:08 -07004623 struct e1000_hw *hw = &adapter->hw;
4624
4625 hw->autoneg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
David Decotigny14ad2512011-04-27 18:32:43 +00004627 /* Make sure dplx is at most 1 bit and lsb of speed is not set
4628 * for the switch() below to work */
4629 if ((spd & 1) || (dplx & ~1))
4630 goto err_inval;
4631
Malli Chilakala69213682005-06-17 17:44:20 -07004632 /* Fiber NICs only allow 1000 gbps Full duplex */
Joe Perches1dc32912008-07-11 15:17:08 -07004633 if ((hw->media_type == e1000_media_type_fiber) &&
David Decotigny14ad2512011-04-27 18:32:43 +00004634 spd != SPEED_1000 &&
4635 dplx != DUPLEX_FULL)
4636 goto err_inval;
Malli Chilakala69213682005-06-17 17:44:20 -07004637
David Decotigny14ad2512011-04-27 18:32:43 +00004638 switch (spd + dplx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 case SPEED_10 + DUPLEX_HALF:
Joe Perches1dc32912008-07-11 15:17:08 -07004640 hw->forced_speed_duplex = e1000_10_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 break;
4642 case SPEED_10 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004643 hw->forced_speed_duplex = e1000_10_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644 break;
4645 case SPEED_100 + DUPLEX_HALF:
Joe Perches1dc32912008-07-11 15:17:08 -07004646 hw->forced_speed_duplex = e1000_100_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 break;
4648 case SPEED_100 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004649 hw->forced_speed_duplex = e1000_100_full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 break;
4651 case SPEED_1000 + DUPLEX_FULL:
Joe Perches1dc32912008-07-11 15:17:08 -07004652 hw->autoneg = 1;
4653 hw->autoneg_advertised = ADVERTISE_1000_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 break;
4655 case SPEED_1000 + DUPLEX_HALF: /* not supported */
4656 default:
David Decotigny14ad2512011-04-27 18:32:43 +00004657 goto err_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 }
4659 return 0;
David Decotigny14ad2512011-04-27 18:32:43 +00004660
4661err_inval:
4662 e_err(probe, "Unsupported Speed/Duplex configuration\n");
4663 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664}
4665
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004666static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667{
4668 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07004669 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004670 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004671 u32 ctrl, ctrl_ext, rctl, status;
4672 u32 wufc = adapter->wol;
Auke Kok6fdfef12006-06-27 09:06:36 -07004673#ifdef CONFIG_PM
Jeff Kirsher240b1712006-01-12 16:51:28 -08004674 int retval = 0;
Auke Kok6fdfef12006-06-27 09:06:36 -07004675#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
4677 netif_device_detach(netdev);
4678
Auke Kok2db10a02006-06-27 09:06:28 -07004679 if (netif_running(netdev)) {
4680 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 e1000_down(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07004682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004684#ifdef CONFIG_PM
Kok, Auke1d33e9c2007-02-16 14:39:28 -08004685 retval = pci_save_state(pdev);
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004686 if (retval)
4687 return retval;
4688#endif
4689
Joe Perches1dc32912008-07-11 15:17:08 -07004690 status = er32(STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004691 if (status & E1000_STATUS_LU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 wufc &= ~E1000_WUFC_LNKC;
4693
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004694 if (wufc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 e1000_setup_rctl(adapter);
Patrick McHardydb0ce502007-11-13 20:54:59 -08004696 e1000_set_rx_mode(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
4698 /* turn on all-multi mode if wake on multicast is enabled */
Jesse Brandeburg120cd572006-08-31 14:27:46 -07004699 if (wufc & E1000_WUFC_MC) {
Joe Perches1dc32912008-07-11 15:17:08 -07004700 rctl = er32(RCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 rctl |= E1000_RCTL_MPE;
Joe Perches1dc32912008-07-11 15:17:08 -07004702 ew32(RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 }
4704
Joe Perches1dc32912008-07-11 15:17:08 -07004705 if (hw->mac_type >= e1000_82540) {
4706 ctrl = er32(CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 /* advertise wake from D3Cold */
4708 #define E1000_CTRL_ADVD3WUC 0x00100000
4709 /* phy power management enable */
4710 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
4711 ctrl |= E1000_CTRL_ADVD3WUC |
4712 E1000_CTRL_EN_PHY_PWR_MGMT;
Joe Perches1dc32912008-07-11 15:17:08 -07004713 ew32(CTRL, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 }
4715
Joe Perches1dc32912008-07-11 15:17:08 -07004716 if (hw->media_type == e1000_media_type_fiber ||
Jesse Brandeburg1532ece2009-09-25 12:16:14 +00004717 hw->media_type == e1000_media_type_internal_serdes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 /* keep the laser running in D3 */
Joe Perches1dc32912008-07-11 15:17:08 -07004719 ctrl_ext = er32(CTRL_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 ctrl_ext |= E1000_CTRL_EXT_SDP7_DATA;
Joe Perches1dc32912008-07-11 15:17:08 -07004721 ew32(CTRL_EXT, ctrl_ext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 }
4723
Joe Perches1dc32912008-07-11 15:17:08 -07004724 ew32(WUC, E1000_WUC_PME_EN);
4725 ew32(WUFC, wufc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 } else {
Joe Perches1dc32912008-07-11 15:17:08 -07004727 ew32(WUC, 0);
4728 ew32(WUFC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 }
4730
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004731 e1000_release_manageability(adapter);
4732
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004733 *enable_wake = !!wufc;
4734
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004735 /* make sure adapter isn't asleep if manageability is enabled */
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004736 if (adapter->en_mng_pt)
4737 *enable_wake = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738
Auke Kokedd106f2006-11-06 08:57:12 -08004739 if (netif_running(netdev))
4740 e1000_free_irq(adapter);
4741
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 pci_disable_device(pdev);
Jeff Kirsher240b1712006-01-12 16:51:28 -08004743
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744 return 0;
4745}
4746
Jesse Brandeburg2f826652006-01-18 13:01:34 -08004747#ifdef CONFIG_PM
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004748static int e1000_suspend(struct pci_dev *pdev, pm_message_t state)
4749{
4750 int retval;
4751 bool wake;
4752
4753 retval = __e1000_shutdown(pdev, &wake);
4754 if (retval)
4755 return retval;
4756
4757 if (wake) {
4758 pci_prepare_to_sleep(pdev);
4759 } else {
4760 pci_wake_from_d3(pdev, false);
4761 pci_set_power_state(pdev, PCI_D3hot);
4762 }
4763
4764 return 0;
4765}
4766
Joe Perches64798842008-07-11 15:17:02 -07004767static int e1000_resume(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768{
4769 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07004770 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004771 struct e1000_hw *hw = &adapter->hw;
Joe Perches406874a2008-04-03 10:06:32 -07004772 u32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
Auke Kokd0e027d2006-04-14 19:04:40 -07004774 pci_set_power_state(pdev, PCI_D0);
Kok, Auke1d33e9c2007-02-16 14:39:28 -08004775 pci_restore_state(pdev);
Nick Nunleydbb5aae2010-02-03 14:49:48 +00004776 pci_save_state(pdev);
Taku Izumi81250292008-07-11 15:17:44 -07004777
4778 if (adapter->need_ioport)
4779 err = pci_enable_device(pdev);
4780 else
4781 err = pci_enable_device_mem(pdev);
Joe Perchesc7be73b2008-07-11 15:17:28 -07004782 if (err) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004783 pr_err("Cannot enable PCI device from suspend\n");
Auke Kok3d1dd8c2006-08-28 14:56:27 -07004784 return err;
4785 }
Malli Chilakalaa4cb8472005-04-28 19:41:28 -07004786 pci_set_master(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787
Auke Kokd0e027d2006-04-14 19:04:40 -07004788 pci_enable_wake(pdev, PCI_D3hot, 0);
4789 pci_enable_wake(pdev, PCI_D3cold, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790
Joe Perchesc7be73b2008-07-11 15:17:28 -07004791 if (netif_running(netdev)) {
4792 err = e1000_request_irq(adapter);
4793 if (err)
4794 return err;
4795 }
Auke Kokedd106f2006-11-06 08:57:12 -08004796
4797 e1000_power_up_phy(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 e1000_reset(adapter);
Joe Perches1dc32912008-07-11 15:17:08 -07004799 ew32(WUS, ~0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004801 e1000_init_manageability(adapter);
4802
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004803 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 e1000_up(adapter);
4805
4806 netif_device_attach(netdev);
4807
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 return 0;
4809}
4810#endif
Auke Kokc653e632006-05-23 13:35:57 -07004811
4812static void e1000_shutdown(struct pci_dev *pdev)
4813{
Rafael J. Wysockib43fcd72009-04-15 17:43:24 +00004814 bool wake;
4815
4816 __e1000_shutdown(pdev, &wake);
4817
4818 if (system_state == SYSTEM_POWER_OFF) {
4819 pci_wake_from_d3(pdev, wake);
4820 pci_set_power_state(pdev, PCI_D3hot);
4821 }
Auke Kokc653e632006-05-23 13:35:57 -07004822}
4823
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824#ifdef CONFIG_NET_POLL_CONTROLLER
4825/*
4826 * Polling 'interrupt' - used by things like netconsole to send skbs
4827 * without having to re-enable interrupts. It's not called while
4828 * the interrupt routine is executing.
4829 */
Joe Perches64798842008-07-11 15:17:02 -07004830static void e1000_netpoll(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004832 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kokd3d9e482006-07-14 16:14:23 -07004833
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 disable_irq(adapter->pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01004835 e1000_intr(adapter->pdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 enable_irq(adapter->pdev->irq);
4837}
4838#endif
4839
Auke Kok90267292006-06-08 09:30:24 -07004840/**
4841 * e1000_io_error_detected - called when PCI error is detected
4842 * @pdev: Pointer to PCI device
Jesse Brandeburg120a5d02009-09-25 15:19:46 -07004843 * @state: The current pci connection state
Auke Kok90267292006-06-08 09:30:24 -07004844 *
4845 * This function is called after a PCI bus error affecting
4846 * this device has been detected.
4847 */
Joe Perches64798842008-07-11 15:17:02 -07004848static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
4849 pci_channel_state_t state)
Auke Kok90267292006-06-08 09:30:24 -07004850{
4851 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004852 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kok90267292006-06-08 09:30:24 -07004853
4854 netif_device_detach(netdev);
4855
Andre Detscheab63302009-06-30 12:46:13 +00004856 if (state == pci_channel_io_perm_failure)
4857 return PCI_ERS_RESULT_DISCONNECT;
4858
Auke Kok90267292006-06-08 09:30:24 -07004859 if (netif_running(netdev))
4860 e1000_down(adapter);
Linas Vepstas72e8d6b2006-09-18 20:58:06 -07004861 pci_disable_device(pdev);
Auke Kok90267292006-06-08 09:30:24 -07004862
4863 /* Request a slot slot reset. */
4864 return PCI_ERS_RESULT_NEED_RESET;
4865}
4866
4867/**
4868 * e1000_io_slot_reset - called after the pci bus has been reset.
4869 * @pdev: Pointer to PCI device
4870 *
4871 * Restart the card from scratch, as if from a cold-boot. Implementation
4872 * resembles the first-half of the e1000_resume routine.
4873 */
4874static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
4875{
4876 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004877 struct e1000_adapter *adapter = netdev_priv(netdev);
Joe Perches1dc32912008-07-11 15:17:08 -07004878 struct e1000_hw *hw = &adapter->hw;
Taku Izumi81250292008-07-11 15:17:44 -07004879 int err;
Auke Kok90267292006-06-08 09:30:24 -07004880
Taku Izumi81250292008-07-11 15:17:44 -07004881 if (adapter->need_ioport)
4882 err = pci_enable_device(pdev);
4883 else
4884 err = pci_enable_device_mem(pdev);
4885 if (err) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004886 pr_err("Cannot re-enable PCI device after reset.\n");
Auke Kok90267292006-06-08 09:30:24 -07004887 return PCI_ERS_RESULT_DISCONNECT;
4888 }
4889 pci_set_master(pdev);
4890
Linas Vepstasdbf38c92006-09-27 12:54:11 -07004891 pci_enable_wake(pdev, PCI_D3hot, 0);
4892 pci_enable_wake(pdev, PCI_D3cold, 0);
Auke Kok90267292006-06-08 09:30:24 -07004893
Auke Kok90267292006-06-08 09:30:24 -07004894 e1000_reset(adapter);
Joe Perches1dc32912008-07-11 15:17:08 -07004895 ew32(WUS, ~0);
Auke Kok90267292006-06-08 09:30:24 -07004896
4897 return PCI_ERS_RESULT_RECOVERED;
4898}
4899
4900/**
4901 * e1000_io_resume - called when traffic can start flowing again.
4902 * @pdev: Pointer to PCI device
4903 *
4904 * This callback is called when the error recovery driver tells us that
4905 * its OK to resume normal operation. Implementation resembles the
4906 * second-half of the e1000_resume routine.
4907 */
4908static void e1000_io_resume(struct pci_dev *pdev)
4909{
4910 struct net_device *netdev = pci_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08004911 struct e1000_adapter *adapter = netdev_priv(netdev);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05004912
4913 e1000_init_manageability(adapter);
Auke Kok90267292006-06-08 09:30:24 -07004914
4915 if (netif_running(netdev)) {
4916 if (e1000_up(adapter)) {
Emil Tantilov675ad472010-04-27 14:02:58 +00004917 pr_info("can't bring device back up after reset\n");
Auke Kok90267292006-06-08 09:30:24 -07004918 return;
4919 }
4920 }
4921
4922 netif_device_attach(netdev);
Auke Kok90267292006-06-08 09:30:24 -07004923}
4924
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925/* e1000_main.c */