blob: 40dbe4cfe5564662a994691e64c43335409159ed [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2
Auke Kok0abb6eb2006-09-27 12:53:14 -07003 Intel PRO/1000 Linux driver
4 Copyright(c) 1999 - 2006 Intel Corporation.
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 more details.
Auke Kok0abb6eb2006-09-27 12:53:14 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 You should have received a copy of the GNU General Public License along with
Auke Kok0abb6eb2006-09-27 12:53:14 -070016 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 Contact Information:
23 Linux NICS <linux.nics@intel.com>
Auke Kok3d41e302006-04-14 19:05:31 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29#include "e1000.h"
Andrew Mortond0bb53e2006-11-14 10:35:03 -050030#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032char e1000_driver_name[] = "e1000";
Adrian Bunk3ad2cc62005-10-30 16:53:34 +010033static char e1000_driver_string[] = "Intel(R) PRO/1000 Network Driver";
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#ifndef CONFIG_E1000_NAPI
35#define DRIVERNAPI
36#else
37#define DRIVERNAPI "-NAPI"
38#endif
Auke Kok7e721572007-01-18 09:25:33 -080039#define DRV_VERSION "7.3.20-k2"DRIVERNAPI
Stephen Hemmingerabec42a2007-10-29 10:46:19 -070040const char e1000_driver_version[] = DRV_VERSION;
41static const char e1000_copyright[] = "Copyright (c) 1999-2006 Intel Corporation.";
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/* e1000_pci_tbl - PCI Device ID Table
44 *
45 * Last entry must be all 0s
46 *
47 * Macro expands to...
48 * {PCI_DEVICE(PCI_VENDOR_ID_INTEL, device_id)}
49 */
50static struct pci_device_id e1000_pci_tbl[] = {
51 INTEL_E1000_ETHERNET_DEVICE(0x1000),
52 INTEL_E1000_ETHERNET_DEVICE(0x1001),
53 INTEL_E1000_ETHERNET_DEVICE(0x1004),
54 INTEL_E1000_ETHERNET_DEVICE(0x1008),
55 INTEL_E1000_ETHERNET_DEVICE(0x1009),
56 INTEL_E1000_ETHERNET_DEVICE(0x100C),
57 INTEL_E1000_ETHERNET_DEVICE(0x100D),
58 INTEL_E1000_ETHERNET_DEVICE(0x100E),
59 INTEL_E1000_ETHERNET_DEVICE(0x100F),
60 INTEL_E1000_ETHERNET_DEVICE(0x1010),
61 INTEL_E1000_ETHERNET_DEVICE(0x1011),
62 INTEL_E1000_ETHERNET_DEVICE(0x1012),
63 INTEL_E1000_ETHERNET_DEVICE(0x1013),
64 INTEL_E1000_ETHERNET_DEVICE(0x1014),
65 INTEL_E1000_ETHERNET_DEVICE(0x1015),
66 INTEL_E1000_ETHERNET_DEVICE(0x1016),
67 INTEL_E1000_ETHERNET_DEVICE(0x1017),
68 INTEL_E1000_ETHERNET_DEVICE(0x1018),
69 INTEL_E1000_ETHERNET_DEVICE(0x1019),
Malli Chilakala26483452005-04-28 19:44:46 -070070 INTEL_E1000_ETHERNET_DEVICE(0x101A),
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 INTEL_E1000_ETHERNET_DEVICE(0x101D),
72 INTEL_E1000_ETHERNET_DEVICE(0x101E),
73 INTEL_E1000_ETHERNET_DEVICE(0x1026),
74 INTEL_E1000_ETHERNET_DEVICE(0x1027),
75 INTEL_E1000_ETHERNET_DEVICE(0x1028),
76 INTEL_E1000_ETHERNET_DEVICE(0x1075),
77 INTEL_E1000_ETHERNET_DEVICE(0x1076),
78 INTEL_E1000_ETHERNET_DEVICE(0x1077),
79 INTEL_E1000_ETHERNET_DEVICE(0x1078),
80 INTEL_E1000_ETHERNET_DEVICE(0x1079),
81 INTEL_E1000_ETHERNET_DEVICE(0x107A),
82 INTEL_E1000_ETHERNET_DEVICE(0x107B),
83 INTEL_E1000_ETHERNET_DEVICE(0x107C),
84 INTEL_E1000_ETHERNET_DEVICE(0x108A),
Jeff Kirsherb7ee49d2006-01-12 16:51:21 -080085 INTEL_E1000_ETHERNET_DEVICE(0x1099),
Jeff Kirsherb7ee49d2006-01-12 16:51:21 -080086 INTEL_E1000_ETHERNET_DEVICE(0x10B5),
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 /* required last entry */
88 {0,}
89};
90
91MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
92
Nicholas Nunley35574762006-09-27 12:53:34 -070093int e1000_up(struct e1000_adapter *adapter);
94void e1000_down(struct e1000_adapter *adapter);
95void e1000_reinit_locked(struct e1000_adapter *adapter);
96void e1000_reset(struct e1000_adapter *adapter);
97int e1000_set_spd_dplx(struct e1000_adapter *adapter, uint16_t spddplx);
98int e1000_setup_all_tx_resources(struct e1000_adapter *adapter);
99int e1000_setup_all_rx_resources(struct e1000_adapter *adapter);
100void e1000_free_all_tx_resources(struct e1000_adapter *adapter);
101void e1000_free_all_rx_resources(struct e1000_adapter *adapter);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100102static int e1000_setup_tx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700103 struct e1000_tx_ring *txdr);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100104static int e1000_setup_rx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700105 struct e1000_rx_ring *rxdr);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100106static void e1000_free_tx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700107 struct e1000_tx_ring *tx_ring);
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100108static void e1000_free_rx_resources(struct e1000_adapter *adapter,
Nicholas Nunley35574762006-09-27 12:53:34 -0700109 struct e1000_rx_ring *rx_ring);
110void e1000_update_stats(struct e1000_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112static int e1000_init_module(void);
113static void e1000_exit_module(void);
114static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
115static void __devexit e1000_remove(struct pci_dev *pdev);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400116static int e1000_alloc_queues(struct e1000_adapter *adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static int e1000_sw_init(struct e1000_adapter *adapter);
118static int e1000_open(struct net_device *netdev);
119static int e1000_close(struct net_device *netdev);
120static void e1000_configure_tx(struct e1000_adapter *adapter);
121static void e1000_configure_rx(struct e1000_adapter *adapter);
122static void e1000_setup_rctl(struct e1000_adapter *adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400123static void e1000_clean_all_tx_rings(struct e1000_adapter *adapter);
124static void e1000_clean_all_rx_rings(struct e1000_adapter *adapter);
125static void e1000_clean_tx_ring(struct e1000_adapter *adapter,
126 struct e1000_tx_ring *tx_ring);
127static void e1000_clean_rx_ring(struct e1000_adapter *adapter,
128 struct e1000_rx_ring *rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static void e1000_set_multi(struct net_device *netdev);
130static void e1000_update_phy_info(unsigned long data);
131static void e1000_watchdog(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static void e1000_82547_tx_fifo_stall(unsigned long data);
133static int e1000_xmit_frame(struct sk_buff *skb, struct net_device *netdev);
134static struct net_device_stats * e1000_get_stats(struct net_device *netdev);
135static int e1000_change_mtu(struct net_device *netdev, int new_mtu);
136static int e1000_set_mac(struct net_device *netdev, void *p);
David Howells7d12e782006-10-05 14:55:46 +0100137static irqreturn_t e1000_intr(int irq, void *data);
Jesse Brandeburg9ac98282006-11-01 08:48:10 -0800138static irqreturn_t e1000_intr_msi(int irq, void *data);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400139static boolean_t e1000_clean_tx_irq(struct e1000_adapter *adapter,
140 struct e1000_tx_ring *tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141#ifdef CONFIG_E1000_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700142static int e1000_clean(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static boolean_t e1000_clean_rx_irq(struct e1000_adapter *adapter,
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400144 struct e1000_rx_ring *rx_ring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 int *work_done, int work_to_do);
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700146static boolean_t e1000_clean_rx_irq_ps(struct e1000_adapter *adapter,
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400147 struct e1000_rx_ring *rx_ring,
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700148 int *work_done, int work_to_do);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#else
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400150static boolean_t e1000_clean_rx_irq(struct e1000_adapter *adapter,
151 struct e1000_rx_ring *rx_ring);
152static boolean_t e1000_clean_rx_irq_ps(struct e1000_adapter *adapter,
153 struct e1000_rx_ring *rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#endif
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400155static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800156 struct e1000_rx_ring *rx_ring,
157 int cleaned_count);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400158static void e1000_alloc_rx_buffers_ps(struct e1000_adapter *adapter,
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800159 struct e1000_rx_ring *rx_ring,
160 int cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd);
162static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
163 int cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164static void e1000_enter_82542_rst(struct e1000_adapter *adapter);
165static void e1000_leave_82542_rst(struct e1000_adapter *adapter);
166static void e1000_tx_timeout(struct net_device *dev);
David Howells65f27f32006-11-22 14:55:48 +0000167static void e1000_reset_task(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168static void e1000_smartspeed(struct e1000_adapter *adapter);
Auke Koke619d522006-04-14 19:04:52 -0700169static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
170 struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172static void e1000_vlan_rx_register(struct net_device *netdev, struct vlan_group *grp);
173static void e1000_vlan_rx_add_vid(struct net_device *netdev, uint16_t vid);
174static void e1000_vlan_rx_kill_vid(struct net_device *netdev, uint16_t vid);
175static void e1000_restore_vlan(struct e1000_adapter *adapter);
176
Ashutosh Naik977e74b2005-10-28 15:14:53 -0700177static int e1000_suspend(struct pci_dev *pdev, pm_message_t state);
Auke Kok6fdfef12006-06-27 09:06:36 -0700178#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179static int e1000_resume(struct pci_dev *pdev);
180#endif
Auke Kokc653e632006-05-23 13:35:57 -0700181static void e1000_shutdown(struct pci_dev *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183#ifdef CONFIG_NET_POLL_CONTROLLER
184/* for netdump / net console */
185static void e1000_netpoll (struct net_device *netdev);
186#endif
187
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100188#define COPYBREAK_DEFAULT 256
189static unsigned int copybreak __read_mostly = COPYBREAK_DEFAULT;
190module_param(copybreak, uint, 0644);
191MODULE_PARM_DESC(copybreak,
192 "Maximum size of packet that is copied to a new buffer on receive");
193
Auke Kok90267292006-06-08 09:30:24 -0700194static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
195 pci_channel_state_t state);
196static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev);
197static void e1000_io_resume(struct pci_dev *pdev);
198
199static struct pci_error_handlers e1000_err_handler = {
200 .error_detected = e1000_io_error_detected,
201 .slot_reset = e1000_io_slot_reset,
202 .resume = e1000_io_resume,
203};
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -0400204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205static struct pci_driver e1000_driver = {
206 .name = e1000_driver_name,
207 .id_table = e1000_pci_tbl,
208 .probe = e1000_probe,
209 .remove = __devexit_p(e1000_remove),
Auke Kokc4e24f02006-09-27 12:53:19 -0700210#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* Power Managment Hooks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 .suspend = e1000_suspend,
Auke Kokc653e632006-05-23 13:35:57 -0700213 .resume = e1000_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#endif
Auke Kok90267292006-06-08 09:30:24 -0700215 .shutdown = e1000_shutdown,
216 .err_handler = &e1000_err_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217};
218
219MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
220MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
221MODULE_LICENSE("GPL");
222MODULE_VERSION(DRV_VERSION);
223
224static int debug = NETIF_MSG_DRV | NETIF_MSG_PROBE;
225module_param(debug, int, 0);
226MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
227
228/**
229 * e1000_init_module - Driver Registration Routine
230 *
231 * e1000_init_module is the first routine called when the driver is
232 * loaded. All it does is register with the PCI subsystem.
233 **/
234
235static int __init
236e1000_init_module(void)
237{
238 int ret;
239 printk(KERN_INFO "%s - version %s\n",
240 e1000_driver_string, e1000_driver_version);
241
242 printk(KERN_INFO "%s\n", e1000_copyright);
243
Jeff Garzik29917622006-08-19 17:48:59 -0400244 ret = pci_register_driver(&e1000_driver);
Jesse Brandeburg1f753862006-12-15 10:40:39 +0100245 if (copybreak != COPYBREAK_DEFAULT) {
246 if (copybreak == 0)
247 printk(KERN_INFO "e1000: copybreak disabled\n");
248 else
249 printk(KERN_INFO "e1000: copybreak enabled for "
250 "packets <= %u bytes\n", copybreak);
251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return ret;
253}
254
255module_init(e1000_init_module);
256
257/**
258 * e1000_exit_module - Driver Exit Cleanup Routine
259 *
260 * e1000_exit_module is called just before the driver is removed
261 * from memory.
262 **/
263
264static void __exit
265e1000_exit_module(void)
266{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 pci_unregister_driver(&e1000_driver);
268}
269
270module_exit(e1000_exit_module);
271
Auke Kok2db10a02006-06-27 09:06:28 -0700272static int e1000_request_irq(struct e1000_adapter *adapter)
273{
274 struct net_device *netdev = adapter->netdev;
Auke Koke94bd232007-05-16 01:49:46 -0700275 void (*handler) = &e1000_intr;
276 int irq_flags = IRQF_SHARED;
277 int err;
Auke Kok2db10a02006-06-27 09:06:28 -0700278
Jesse Brandeburg9ac98282006-11-01 08:48:10 -0800279 if (adapter->hw.mac_type >= e1000_82571) {
Auke Koke94bd232007-05-16 01:49:46 -0700280 adapter->have_msi = !pci_enable_msi(adapter->pdev);
281 if (adapter->have_msi) {
282 handler = &e1000_intr_msi;
283 irq_flags = 0;
Auke Kok2db10a02006-06-27 09:06:28 -0700284 }
285 }
Auke Koke94bd232007-05-16 01:49:46 -0700286
287 err = request_irq(adapter->pdev->irq, handler, irq_flags, netdev->name,
288 netdev);
289 if (err) {
290 if (adapter->have_msi)
291 pci_disable_msi(adapter->pdev);
Auke Kok2db10a02006-06-27 09:06:28 -0700292 DPRINTK(PROBE, ERR,
293 "Unable to allocate interrupt Error: %d\n", err);
Auke Koke94bd232007-05-16 01:49:46 -0700294 }
Auke Kok2db10a02006-06-27 09:06:28 -0700295
296 return err;
297}
298
299static void e1000_free_irq(struct e1000_adapter *adapter)
300{
301 struct net_device *netdev = adapter->netdev;
302
303 free_irq(adapter->pdev->irq, netdev);
304
Auke Kok2db10a02006-06-27 09:06:28 -0700305 if (adapter->have_msi)
306 pci_disable_msi(adapter->pdev);
Auke Kok2db10a02006-06-27 09:06:28 -0700307}
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309/**
310 * e1000_irq_disable - Mask off interrupt generation on the NIC
311 * @adapter: board private structure
312 **/
313
Auke Koke619d522006-04-14 19:04:52 -0700314static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315e1000_irq_disable(struct e1000_adapter *adapter)
316{
317 atomic_inc(&adapter->irq_sem);
318 E1000_WRITE_REG(&adapter->hw, IMC, ~0);
319 E1000_WRITE_FLUSH(&adapter->hw);
320 synchronize_irq(adapter->pdev->irq);
321}
322
323/**
324 * e1000_irq_enable - Enable default interrupt generation settings
325 * @adapter: board private structure
326 **/
327
Auke Koke619d522006-04-14 19:04:52 -0700328static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329e1000_irq_enable(struct e1000_adapter *adapter)
330{
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800331 if (likely(atomic_dec_and_test(&adapter->irq_sem))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 E1000_WRITE_REG(&adapter->hw, IMS, IMS_ENABLE_MASK);
333 E1000_WRITE_FLUSH(&adapter->hw);
334 }
335}
Adrian Bunk3ad2cc62005-10-30 16:53:34 +0100336
337static void
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700338e1000_update_mng_vlan(struct e1000_adapter *adapter)
339{
340 struct net_device *netdev = adapter->netdev;
341 uint16_t vid = adapter->hw.mng_cookie.vlan_id;
342 uint16_t old_vid = adapter->mng_vlan_id;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800343 if (adapter->vlgrp) {
Dan Aloni5c15bde2007-03-02 20:44:51 -0800344 if (!vlan_group_get_device(adapter->vlgrp, vid)) {
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800345 if (adapter->hw.mng_cookie.status &
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700346 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) {
347 e1000_vlan_rx_add_vid(netdev, vid);
348 adapter->mng_vlan_id = vid;
349 } else
350 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800351
352 if ((old_vid != (uint16_t)E1000_MNG_VLAN_NONE) &&
353 (vid != old_vid) &&
Dan Aloni5c15bde2007-03-02 20:44:51 -0800354 !vlan_group_get_device(adapter->vlgrp, old_vid))
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700355 e1000_vlan_rx_kill_vid(netdev, old_vid);
Jeff Kirsherc5f226f2006-03-02 18:17:55 -0800356 } else
357 adapter->mng_vlan_id = vid;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700358 }
359}
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800360
361/**
362 * e1000_release_hw_control - release control of the h/w to f/w
363 * @adapter: address of board private structure
364 *
365 * e1000_release_hw_control resets {CTRL_EXT|FWSM}:DRV_LOAD bit.
366 * For ASF and Pass Through versions of f/w this means that the
367 * driver is no longer loaded. For AMT version (only with 82573) i
Auke Kok90fb5132006-11-01 08:47:30 -0800368 * of the f/w this means that the network i/f is closed.
Auke Kok76c224b2006-05-23 13:36:06 -0700369 *
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800370 **/
371
Auke Koke619d522006-04-14 19:04:52 -0700372static void
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800373e1000_release_hw_control(struct e1000_adapter *adapter)
374{
375 uint32_t ctrl_ext;
376 uint32_t swsm;
377
378 /* Let firmware taken over control of h/w */
379 switch (adapter->hw.mac_type) {
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800380 case e1000_82573:
381 swsm = E1000_READ_REG(&adapter->hw, SWSM);
382 E1000_WRITE_REG(&adapter->hw, SWSM,
383 swsm & ~E1000_SWSM_DRV_LOAD);
Bruce Allan31d76442007-03-06 08:57:24 -0800384 break;
385 case e1000_82571:
386 case e1000_82572:
387 case e1000_80003es2lan:
Auke Kokcd94dd02006-06-27 09:08:22 -0700388 case e1000_ich8lan:
Bruce Allan31d76442007-03-06 08:57:24 -0800389 ctrl_ext = E1000_READ_REG(&adapter->hw, CTRL_EXT);
Auke Kokcd94dd02006-06-27 09:08:22 -0700390 E1000_WRITE_REG(&adapter->hw, CTRL_EXT,
Bruce Allan31d76442007-03-06 08:57:24 -0800391 ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
Auke Kokcd94dd02006-06-27 09:08:22 -0700392 break;
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800393 default:
394 break;
395 }
396}
397
398/**
399 * e1000_get_hw_control - get control of the h/w from f/w
400 * @adapter: address of board private structure
401 *
402 * e1000_get_hw_control sets {CTRL_EXT|FWSM}:DRV_LOAD bit.
Auke Kok76c224b2006-05-23 13:36:06 -0700403 * For ASF and Pass Through versions of f/w this means that
404 * the driver is loaded. For AMT version (only with 82573)
Auke Kok90fb5132006-11-01 08:47:30 -0800405 * of the f/w this means that the network i/f is open.
Auke Kok76c224b2006-05-23 13:36:06 -0700406 *
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800407 **/
408
Auke Koke619d522006-04-14 19:04:52 -0700409static void
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800410e1000_get_hw_control(struct e1000_adapter *adapter)
411{
412 uint32_t ctrl_ext;
413 uint32_t swsm;
Auke Kok90fb5132006-11-01 08:47:30 -0800414
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800415 /* Let firmware know the driver has taken over */
416 switch (adapter->hw.mac_type) {
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800417 case e1000_82573:
418 swsm = E1000_READ_REG(&adapter->hw, SWSM);
419 E1000_WRITE_REG(&adapter->hw, SWSM,
420 swsm | E1000_SWSM_DRV_LOAD);
421 break;
Bruce Allan31d76442007-03-06 08:57:24 -0800422 case e1000_82571:
423 case e1000_82572:
424 case e1000_80003es2lan:
Auke Kokcd94dd02006-06-27 09:08:22 -0700425 case e1000_ich8lan:
Bruce Allan31d76442007-03-06 08:57:24 -0800426 ctrl_ext = E1000_READ_REG(&adapter->hw, CTRL_EXT);
427 E1000_WRITE_REG(&adapter->hw, CTRL_EXT,
428 ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
Auke Kokcd94dd02006-06-27 09:08:22 -0700429 break;
Jeff Kirsherb55ccb32006-01-12 16:50:30 -0800430 default:
431 break;
432 }
433}
434
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500435static void
436e1000_init_manageability(struct e1000_adapter *adapter)
437{
438 if (adapter->en_mng_pt) {
439 uint32_t manc = E1000_READ_REG(&adapter->hw, MANC);
440
441 /* disable hardware interception of ARP */
442 manc &= ~(E1000_MANC_ARP_EN);
443
444 /* enable receiving management packets to the host */
445 /* this will probably generate destination unreachable messages
446 * from the host OS, but the packets will be handled on SMBUS */
447 if (adapter->hw.has_manc2h) {
448 uint32_t manc2h = E1000_READ_REG(&adapter->hw, MANC2H);
449
450 manc |= E1000_MANC_EN_MNG2HOST;
451#define E1000_MNG2HOST_PORT_623 (1 << 5)
452#define E1000_MNG2HOST_PORT_664 (1 << 6)
453 manc2h |= E1000_MNG2HOST_PORT_623;
454 manc2h |= E1000_MNG2HOST_PORT_664;
455 E1000_WRITE_REG(&adapter->hw, MANC2H, manc2h);
456 }
457
458 E1000_WRITE_REG(&adapter->hw, MANC, manc);
459 }
460}
461
462static void
463e1000_release_manageability(struct e1000_adapter *adapter)
464{
465 if (adapter->en_mng_pt) {
466 uint32_t manc = E1000_READ_REG(&adapter->hw, MANC);
467
468 /* re-enable hardware interception of ARP */
469 manc |= E1000_MANC_ARP_EN;
470
471 if (adapter->hw.has_manc2h)
472 manc &= ~E1000_MANC_EN_MNG2HOST;
473
474 /* don't explicitly have to mess with MANC2H since
475 * MANC has an enable disable that gates MANC2H */
476
477 E1000_WRITE_REG(&adapter->hw, MANC, manc);
478 }
479}
480
Auke Koke0aac5a2007-03-06 08:57:21 -0800481/**
482 * e1000_configure - configure the hardware for RX and TX
483 * @adapter = private board structure
484 **/
485static void e1000_configure(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 struct net_device *netdev = adapter->netdev;
Auke Kok2db10a02006-06-27 09:06:28 -0700488 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 e1000_set_multi(netdev);
491
492 e1000_restore_vlan(adapter);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500493 e1000_init_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 e1000_configure_tx(adapter);
496 e1000_setup_rctl(adapter);
497 e1000_configure_rx(adapter);
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800498 /* call E1000_DESC_UNUSED which always leaves
499 * at least 1 descriptor unused to make sure
500 * next_to_use != next_to_clean */
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800501 for (i = 0; i < adapter->num_rx_queues; i++) {
Jeff Kirsher72d64a42006-01-12 16:51:19 -0800502 struct e1000_rx_ring *ring = &adapter->rx_ring[i];
Jeff Kirshera292ca62006-01-12 16:51:30 -0800503 adapter->alloc_rx_buf(adapter, ring,
504 E1000_DESC_UNUSED(ring));
Jeff Kirsherf56799e2006-01-12 16:50:39 -0800505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Jeff Kirsher7bfa4812006-01-12 16:50:41 -0800507 adapter->tx_queue_len = netdev->tx_queue_len;
Auke Koke0aac5a2007-03-06 08:57:21 -0800508}
Jeff Kirsher7bfa4812006-01-12 16:50:41 -0800509
Auke Koke0aac5a2007-03-06 08:57:21 -0800510int e1000_up(struct e1000_adapter *adapter)
511{
512 /* hardware has been reset, we need to reload some things */
513 e1000_configure(adapter);
Malli Chilakala5de55622005-04-28 19:39:30 -0700514
Auke Kok1314bbf2006-09-27 12:54:02 -0700515 clear_bit(__E1000_DOWN, &adapter->flags);
516
Auke Koke0aac5a2007-03-06 08:57:21 -0800517#ifdef CONFIG_E1000_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700518 napi_enable(&adapter->napi);
Auke Koke0aac5a2007-03-06 08:57:21 -0800519#endif
520 e1000_irq_enable(adapter);
521
Jesse Brandeburg79f3d392006-12-15 10:42:34 +0100522 /* fire a link change interrupt to start the watchdog */
523 E1000_WRITE_REG(&adapter->hw, ICS, E1000_ICS_LSC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return 0;
525}
526
Auke Kok79f05bf2006-06-27 09:06:32 -0700527/**
528 * e1000_power_up_phy - restore link in case the phy was powered down
529 * @adapter: address of board private structure
530 *
531 * The phy may be powered down to save power and turn off link when the
532 * driver is unloaded and wake on lan is not enabled (among others)
533 * *** this routine MUST be followed by a call to e1000_reset ***
534 *
535 **/
536
Jesse Brandeburgd6582662006-08-16 13:31:33 -0700537void e1000_power_up_phy(struct e1000_adapter *adapter)
Auke Kok79f05bf2006-06-27 09:06:32 -0700538{
539 uint16_t mii_reg = 0;
540
541 /* Just clear the power down bit to wake the phy back up */
542 if (adapter->hw.media_type == e1000_media_type_copper) {
543 /* according to the manual, the phy will retain its
544 * settings across a power-down/up cycle */
545 e1000_read_phy_reg(&adapter->hw, PHY_CTRL, &mii_reg);
546 mii_reg &= ~MII_CR_POWER_DOWN;
547 e1000_write_phy_reg(&adapter->hw, PHY_CTRL, mii_reg);
548 }
549}
550
551static void e1000_power_down_phy(struct e1000_adapter *adapter)
552{
Bruce Allan61c25052006-09-27 12:53:54 -0700553 /* Power down the PHY so no link is implied when interface is down *
554 * The PHY cannot be powered down if any of the following is TRUE *
Auke Kok79f05bf2006-06-27 09:06:32 -0700555 * (a) WoL is enabled
556 * (b) AMT is active
557 * (c) SoL/IDER session is active */
558 if (!adapter->wol && adapter->hw.mac_type >= e1000_82540 &&
Bruce Allan61c25052006-09-27 12:53:54 -0700559 adapter->hw.media_type == e1000_media_type_copper) {
Auke Kok79f05bf2006-06-27 09:06:32 -0700560 uint16_t mii_reg = 0;
Bruce Allan61c25052006-09-27 12:53:54 -0700561
562 switch (adapter->hw.mac_type) {
563 case e1000_82540:
564 case e1000_82545:
565 case e1000_82545_rev_3:
566 case e1000_82546:
567 case e1000_82546_rev_3:
568 case e1000_82541:
569 case e1000_82541_rev_2:
570 case e1000_82547:
571 case e1000_82547_rev_2:
572 if (E1000_READ_REG(&adapter->hw, MANC) &
573 E1000_MANC_SMBUS_EN)
574 goto out;
575 break;
576 case e1000_82571:
577 case e1000_82572:
578 case e1000_82573:
579 case e1000_80003es2lan:
580 case e1000_ich8lan:
581 if (e1000_check_mng_mode(&adapter->hw) ||
582 e1000_check_phy_reset_block(&adapter->hw))
583 goto out;
584 break;
585 default:
586 goto out;
587 }
Auke Kok79f05bf2006-06-27 09:06:32 -0700588 e1000_read_phy_reg(&adapter->hw, PHY_CTRL, &mii_reg);
589 mii_reg |= MII_CR_POWER_DOWN;
590 e1000_write_phy_reg(&adapter->hw, PHY_CTRL, mii_reg);
591 mdelay(1);
592 }
Bruce Allan61c25052006-09-27 12:53:54 -0700593out:
594 return;
Auke Kok79f05bf2006-06-27 09:06:32 -0700595}
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597void
598e1000_down(struct e1000_adapter *adapter)
599{
600 struct net_device *netdev = adapter->netdev;
601
Auke Kok1314bbf2006-09-27 12:54:02 -0700602 /* signal that we're down so the interrupt handler does not
603 * reschedule our watchdog timer */
604 set_bit(__E1000_DOWN, &adapter->flags);
605
Auke Koke0aac5a2007-03-06 08:57:21 -0800606#ifdef CONFIG_E1000_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700607 napi_disable(&adapter->napi);
David S. Miller49d85c52008-01-18 04:21:39 -0800608 atomic_set(&adapter->irq_sem, 0);
Auke Koke0aac5a2007-03-06 08:57:21 -0800609#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 e1000_irq_disable(adapter);
Jeff Kirsherc1605eb2006-03-02 18:16:38 -0800611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 del_timer_sync(&adapter->tx_fifo_stall_timer);
613 del_timer_sync(&adapter->watchdog_timer);
614 del_timer_sync(&adapter->phy_info_timer);
615
Jeff Kirsher7bfa4812006-01-12 16:50:41 -0800616 netdev->tx_queue_len = adapter->tx_queue_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 adapter->link_speed = 0;
618 adapter->link_duplex = 0;
619 netif_carrier_off(netdev);
620 netif_stop_queue(netdev);
621
622 e1000_reset(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -0400623 e1000_clean_all_tx_rings(adapter);
624 e1000_clean_all_rx_rings(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627void
Auke Kok2db10a02006-06-27 09:06:28 -0700628e1000_reinit_locked(struct e1000_adapter *adapter)
629{
630 WARN_ON(in_interrupt());
631 while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
632 msleep(1);
633 e1000_down(adapter);
634 e1000_up(adapter);
635 clear_bit(__E1000_RESETTING, &adapter->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
638void
639e1000_reset(struct e1000_adapter *adapter)
640{
Bruce Allan018ea442006-12-15 10:39:45 +0100641 uint32_t pba = 0, tx_space, min_tx_space, min_rx_space;
Malli Chilakala1125ecb2005-04-28 19:44:25 -0700642 uint16_t fc_high_water_mark = E1000_FC_HIGH_DIFF;
Bruce Allan018ea442006-12-15 10:39:45 +0100643 boolean_t legacy_pba_adjust = FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 /* Repartition Pba for greater than 9k mtu
646 * To take effect CTRL.RST is required.
647 */
648
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700649 switch (adapter->hw.mac_type) {
Bruce Allan018ea442006-12-15 10:39:45 +0100650 case e1000_82542_rev2_0:
651 case e1000_82542_rev2_1:
652 case e1000_82543:
653 case e1000_82544:
654 case e1000_82540:
655 case e1000_82541:
656 case e1000_82541_rev_2:
657 legacy_pba_adjust = TRUE;
658 pba = E1000_PBA_48K;
659 break;
660 case e1000_82545:
661 case e1000_82545_rev_3:
662 case e1000_82546:
663 case e1000_82546_rev_3:
664 pba = E1000_PBA_48K;
665 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700666 case e1000_82547:
Malli Chilakala0e6ef3e2005-04-28 19:44:14 -0700667 case e1000_82547_rev_2:
Bruce Allan018ea442006-12-15 10:39:45 +0100668 legacy_pba_adjust = TRUE;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700669 pba = E1000_PBA_30K;
670 break;
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400671 case e1000_82571:
672 case e1000_82572:
Jeff Kirsher6418ecc2006-03-02 18:21:10 -0800673 case e1000_80003es2lan:
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -0400674 pba = E1000_PBA_38K;
675 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700676 case e1000_82573:
Bruce Allan018ea442006-12-15 10:39:45 +0100677 pba = E1000_PBA_20K;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700678 break;
Auke Kokcd94dd02006-06-27 09:08:22 -0700679 case e1000_ich8lan:
680 pba = E1000_PBA_8K;
Bruce Allan018ea442006-12-15 10:39:45 +0100681 case e1000_undefined:
682 case e1000_num_macs:
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700683 break;
684 }
685
Bruce Allan018ea442006-12-15 10:39:45 +0100686 if (legacy_pba_adjust == TRUE) {
687 if (adapter->netdev->mtu > E1000_RXBUFFER_8192)
688 pba -= 8; /* allocate more FIFO for Tx */
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700689
Bruce Allan018ea442006-12-15 10:39:45 +0100690 if (adapter->hw.mac_type == e1000_82547) {
691 adapter->tx_fifo_head = 0;
692 adapter->tx_head_addr = pba << E1000_TX_HEAD_ADDR_SHIFT;
693 adapter->tx_fifo_size =
694 (E1000_PBA_40K - pba) << E1000_PBA_BYTES_SHIFT;
695 atomic_set(&adapter->tx_fifo_stall, 0);
696 }
697 } else if (adapter->hw.max_frame_size > MAXIMUM_ETHERNET_FRAME_SIZE) {
698 /* adjust PBA for jumbo frames */
699 E1000_WRITE_REG(&adapter->hw, PBA, pba);
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700700
Bruce Allan018ea442006-12-15 10:39:45 +0100701 /* To maintain wire speed transmits, the Tx FIFO should be
702 * large enough to accomodate two full transmit packets,
703 * rounded up to the next 1KB and expressed in KB. Likewise,
704 * the Rx FIFO should be large enough to accomodate at least
705 * one full receive packet and is similarly rounded up and
706 * expressed in KB. */
707 pba = E1000_READ_REG(&adapter->hw, PBA);
708 /* upper 16 bits has Tx packet buffer allocation size in KB */
709 tx_space = pba >> 16;
710 /* lower 16 bits has Rx packet buffer allocation size in KB */
711 pba &= 0xffff;
712 /* don't include ethernet FCS because hardware appends/strips */
713 min_rx_space = adapter->netdev->mtu + ENET_HEADER_SIZE +
714 VLAN_TAG_SIZE;
715 min_tx_space = min_rx_space;
716 min_tx_space *= 2;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700717 min_tx_space = ALIGN(min_tx_space, 1024);
Bruce Allan018ea442006-12-15 10:39:45 +0100718 min_tx_space >>= 10;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -0700719 min_rx_space = ALIGN(min_rx_space, 1024);
Bruce Allan018ea442006-12-15 10:39:45 +0100720 min_rx_space >>= 10;
721
722 /* If current Tx allocation is less than the min Tx FIFO size,
723 * and the min Tx FIFO size is less than the current Rx FIFO
724 * allocation, take space away from current Rx allocation */
725 if (tx_space < min_tx_space &&
726 ((min_tx_space - tx_space) < pba)) {
727 pba = pba - (min_tx_space - tx_space);
728
729 /* PCI/PCIx hardware has PBA alignment constraints */
730 switch (adapter->hw.mac_type) {
731 case e1000_82545 ... e1000_82546_rev_3:
732 pba &= ~(E1000_PBA_8K - 1);
733 break;
734 default:
735 break;
736 }
737
738 /* if short on rx space, rx wins and must trump tx
739 * adjustment or use Early Receive if available */
740 if (pba < min_rx_space) {
741 switch (adapter->hw.mac_type) {
742 case e1000_82573:
743 /* ERT enabled in e1000_configure_rx */
744 break;
745 default:
746 pba = min_rx_space;
747 break;
748 }
749 }
750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 E1000_WRITE_REG(&adapter->hw, PBA, pba);
754
755 /* flow control settings */
Jeff Kirsherf11b7f82006-01-12 16:50:51 -0800756 /* Set the FC high water mark to 90% of the FIFO size.
757 * Required to clear last 3 LSB */
758 fc_high_water_mark = ((pba * 9216)/10) & 0xFFF8;
Auke Kokcd94dd02006-06-27 09:08:22 -0700759 /* We can't use 90% on small FIFOs because the remainder
760 * would be less than 1 full frame. In this case, we size
761 * it to allow at least a full frame above the high water
762 * mark. */
763 if (pba < E1000_PBA_16K)
764 fc_high_water_mark = (pba * 1024) - 1600;
Jeff Kirsherf11b7f82006-01-12 16:50:51 -0800765
766 adapter->hw.fc_high_water = fc_high_water_mark;
767 adapter->hw.fc_low_water = fc_high_water_mark - 8;
Jeff Kirsher87041632006-03-02 18:21:24 -0800768 if (adapter->hw.mac_type == e1000_80003es2lan)
769 adapter->hw.fc_pause_time = 0xFFFF;
770 else
771 adapter->hw.fc_pause_time = E1000_FC_PAUSE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 adapter->hw.fc_send_xon = 1;
773 adapter->hw.fc = adapter->hw.original_fc;
774
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700775 /* Allow time for pending master requests to run */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 e1000_reset_hw(&adapter->hw);
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800777 if (adapter->hw.mac_type >= e1000_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 E1000_WRITE_REG(&adapter->hw, WUC, 0);
Jeff Kirsher09ae3e82006-09-27 12:53:51 -0700779
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800780 if (e1000_init_hw(&adapter->hw))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 DPRINTK(PROBE, ERR, "Hardware Error\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700782 e1000_update_mng_vlan(adapter);
Jesse Brandeburg3d5460a2006-12-15 10:33:46 +0100783
784 /* if (adapter->hwflags & HWFLAGS_PHY_PWR_BIT) { */
785 if (adapter->hw.mac_type >= e1000_82544 &&
786 adapter->hw.mac_type <= e1000_82547_rev_2 &&
787 adapter->hw.autoneg == 1 &&
788 adapter->hw.autoneg_advertised == ADVERTISE_1000_FULL) {
789 uint32_t ctrl = E1000_READ_REG(&adapter->hw, CTRL);
790 /* clear phy power management bit if we are in gig only mode,
791 * which if enabled will attempt negotiation to 100Mb, which
792 * can cause a loss of link at power off or driver unload */
793 ctrl &= ~E1000_CTRL_SWDPIN3;
794 E1000_WRITE_REG(&adapter->hw, CTRL, ctrl);
795 }
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
798 E1000_WRITE_REG(&adapter->hw, VET, ETHERNET_IEEE_VLAN_TYPE);
799
800 e1000_reset_adaptive(&adapter->hw);
801 e1000_phy_get_info(&adapter->hw, &adapter->phy_info);
Auke Kok9a53a202006-06-27 09:06:45 -0700802
803 if (!adapter->smart_power_down &&
804 (adapter->hw.mac_type == e1000_82571 ||
805 adapter->hw.mac_type == e1000_82572)) {
806 uint16_t phy_data = 0;
807 /* speed up time to link by disabling smart power down, ignore
808 * the return value of this function because there is nothing
809 * different we would do if it failed */
810 e1000_read_phy_reg(&adapter->hw, IGP02E1000_PHY_POWER_MGMT,
811 &phy_data);
812 phy_data &= ~IGP02E1000_PM_SPD;
813 e1000_write_phy_reg(&adapter->hw, IGP02E1000_PHY_POWER_MGMT,
814 phy_data);
815 }
816
Jeff Garzik0fccd0e2006-12-15 10:56:10 -0500817 e1000_release_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
820/**
821 * e1000_probe - Device Initialization Routine
822 * @pdev: PCI device information struct
823 * @ent: entry in e1000_pci_tbl
824 *
825 * Returns 0 on success, negative on failure
826 *
827 * e1000_probe initializes an adapter identified by a pci_dev structure.
828 * The OS initialization, configuring of the adapter private structure,
829 * and a hardware reset occur.
830 **/
831
832static int __devinit
833e1000_probe(struct pci_dev *pdev,
834 const struct pci_device_id *ent)
835{
836 struct net_device *netdev;
837 struct e1000_adapter *adapter;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700838 unsigned long mmio_start, mmio_len;
Auke Kokcd94dd02006-06-27 09:08:22 -0700839 unsigned long flash_start, flash_len;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 static int cards_found = 0;
Jesse Brandeburg120cd572006-08-31 14:27:46 -0700842 static int global_quad_port_a = 0; /* global ksp3 port a indication */
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700843 int i, err, pci_using_dac;
Jesse Brandeburg120cd572006-08-31 14:27:46 -0700844 uint16_t eeprom_data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 uint16_t eeprom_apme_mask = E1000_EEPROM_APME;
Joe Perches0795af52007-10-03 17:59:30 -0700846 DECLARE_MAC_BUF(mac);
847
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800848 if ((err = pci_enable_device(pdev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return err;
850
Auke Kokcd94dd02006-06-27 09:08:22 -0700851 if (!(err = pci_set_dma_mask(pdev, DMA_64BIT_MASK)) &&
852 !(err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 pci_using_dac = 1;
854 } else {
Auke Kokcd94dd02006-06-27 09:08:22 -0700855 if ((err = pci_set_dma_mask(pdev, DMA_32BIT_MASK)) &&
856 (err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 E1000_ERR("No usable DMA configuration, aborting\n");
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700858 goto err_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860 pci_using_dac = 0;
861 }
862
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800863 if ((err = pci_request_regions(pdev, e1000_driver_name)))
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700864 goto err_pci_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 pci_set_master(pdev);
867
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700868 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700870 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 goto err_alloc_etherdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 SET_NETDEV_DEV(netdev, &pdev->dev);
874
875 pci_set_drvdata(pdev, netdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -0700876 adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 adapter->netdev = netdev;
878 adapter->pdev = pdev;
879 adapter->hw.back = adapter;
880 adapter->msg_enable = (1 << debug) - 1;
881
882 mmio_start = pci_resource_start(pdev, BAR_0);
883 mmio_len = pci_resource_len(pdev, BAR_0);
884
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700885 err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 adapter->hw.hw_addr = ioremap(mmio_start, mmio_len);
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700887 if (!adapter->hw.hw_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 goto err_ioremap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800890 for (i = BAR_1; i <= BAR_5; i++) {
891 if (pci_resource_len(pdev, i) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 continue;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800893 if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 adapter->hw.io_base = pci_resource_start(pdev, i);
895 break;
896 }
897 }
898
899 netdev->open = &e1000_open;
900 netdev->stop = &e1000_close;
901 netdev->hard_start_xmit = &e1000_xmit_frame;
902 netdev->get_stats = &e1000_get_stats;
903 netdev->set_multicast_list = &e1000_set_multi;
904 netdev->set_mac_address = &e1000_set_mac;
905 netdev->change_mtu = &e1000_change_mtu;
906 netdev->do_ioctl = &e1000_ioctl;
907 e1000_set_ethtool_ops(netdev);
908 netdev->tx_timeout = &e1000_tx_timeout;
909 netdev->watchdog_timeo = 5 * HZ;
910#ifdef CONFIG_E1000_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700911 netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912#endif
913 netdev->vlan_rx_register = e1000_vlan_rx_register;
914 netdev->vlan_rx_add_vid = e1000_vlan_rx_add_vid;
915 netdev->vlan_rx_kill_vid = e1000_vlan_rx_kill_vid;
916#ifdef CONFIG_NET_POLL_CONTROLLER
917 netdev->poll_controller = e1000_netpoll;
918#endif
Auke Kok0eb5a342006-09-27 12:53:17 -0700919 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 netdev->mem_start = mmio_start;
922 netdev->mem_end = mmio_start + mmio_len;
923 netdev->base_addr = adapter->hw.io_base;
924
925 adapter->bd_number = cards_found;
926
927 /* setup the private structure */
928
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800929 if ((err = e1000_sw_init(adapter)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 goto err_sw_init;
931
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700932 err = -EIO;
Auke Kokcd94dd02006-06-27 09:08:22 -0700933 /* Flash BAR mapping must happen after e1000_sw_init
934 * because it depends on mac_type */
935 if ((adapter->hw.mac_type == e1000_ich8lan) &&
936 (pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
937 flash_start = pci_resource_start(pdev, 1);
938 flash_len = pci_resource_len(pdev, 1);
939 adapter->hw.flash_address = ioremap(flash_start, flash_len);
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700940 if (!adapter->hw.flash_address)
Auke Kokcd94dd02006-06-27 09:08:22 -0700941 goto err_flashmap;
Auke Kokcd94dd02006-06-27 09:08:22 -0700942 }
943
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700944 if (e1000_check_phy_reset_block(&adapter->hw))
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700945 DPRINTK(PROBE, INFO, "PHY reset is blocked due to SOL/IDER session.\n");
946
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800947 if (adapter->hw.mac_type >= e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 netdev->features = NETIF_F_SG |
949 NETIF_F_HW_CSUM |
950 NETIF_F_HW_VLAN_TX |
951 NETIF_F_HW_VLAN_RX |
952 NETIF_F_HW_VLAN_FILTER;
Auke Kokcd94dd02006-06-27 09:08:22 -0700953 if (adapter->hw.mac_type == e1000_ich8lan)
954 netdev->features &= ~NETIF_F_HW_VLAN_FILTER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
956
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800957 if ((adapter->hw.mac_type >= e1000_82544) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 (adapter->hw.mac_type != e1000_82547))
959 netdev->features |= NETIF_F_TSO;
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700960
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800961 if (adapter->hw.mac_type > e1000_82547_rev_2)
Auke Kok87ca4e52006-11-01 08:47:36 -0800962 netdev->features |= NETIF_F_TSO6;
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800963 if (pci_using_dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 netdev->features |= NETIF_F_HIGHDMA;
965
Auke Kok76c224b2006-05-23 13:36:06 -0700966 netdev->features |= NETIF_F_LLTX;
967
Malli Chilakala2d7edb92005-04-28 19:43:52 -0700968 adapter->en_mng_pt = e1000_enable_mng_pass_thru(&adapter->hw);
969
Auke Kokcd94dd02006-06-27 09:08:22 -0700970 /* initialize eeprom parameters */
971
972 if (e1000_init_eeprom_params(&adapter->hw)) {
973 E1000_ERR("EEPROM initialization failed\n");
Vasily Averin6dd62ab2006-08-28 14:56:22 -0700974 goto err_eeprom;
Auke Kokcd94dd02006-06-27 09:08:22 -0700975 }
976
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800977 /* before reading the EEPROM, reset the controller to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 * put the device in a known good starting state */
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 e1000_reset_hw(&adapter->hw);
981
982 /* make sure the EEPROM is good */
983
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800984 if (e1000_validate_eeprom_checksum(&adapter->hw) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 DPRINTK(PROBE, ERR, "The EEPROM Checksum Is Not Valid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 goto err_eeprom;
987 }
988
989 /* copy the MAC address out of the EEPROM */
990
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800991 if (e1000_read_mac_addr(&adapter->hw))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 DPRINTK(PROBE, ERR, "EEPROM Read Error\n");
993 memcpy(netdev->dev_addr, adapter->hw.mac_addr, netdev->addr_len);
John W. Linville9beb0ac2005-09-12 10:48:55 -0400994 memcpy(netdev->perm_addr, adapter->hw.mac_addr, netdev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Jesse Brandeburg96838a42006-01-18 13:01:39 -0800996 if (!is_valid_ether_addr(netdev->perm_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 DPRINTK(PROBE, ERR, "Invalid MAC Address\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 goto err_eeprom;
999 }
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 e1000_get_bus_info(&adapter->hw);
1002
1003 init_timer(&adapter->tx_fifo_stall_timer);
1004 adapter->tx_fifo_stall_timer.function = &e1000_82547_tx_fifo_stall;
1005 adapter->tx_fifo_stall_timer.data = (unsigned long) adapter;
1006
1007 init_timer(&adapter->watchdog_timer);
1008 adapter->watchdog_timer.function = &e1000_watchdog;
1009 adapter->watchdog_timer.data = (unsigned long) adapter;
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 init_timer(&adapter->phy_info_timer);
1012 adapter->phy_info_timer.function = &e1000_update_phy_info;
1013 adapter->phy_info_timer.data = (unsigned long) adapter;
1014
David Howells65f27f32006-11-22 14:55:48 +00001015 INIT_WORK(&adapter->reset_task, e1000_reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 e1000_check_options(adapter);
1018
1019 /* Initial Wake on LAN setting
1020 * If APM wake is enabled in the EEPROM,
1021 * enable the ACPI Magic Packet filter
1022 */
1023
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001024 switch (adapter->hw.mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 case e1000_82542_rev2_0:
1026 case e1000_82542_rev2_1:
1027 case e1000_82543:
1028 break;
1029 case e1000_82544:
1030 e1000_read_eeprom(&adapter->hw,
1031 EEPROM_INIT_CONTROL2_REG, 1, &eeprom_data);
1032 eeprom_apme_mask = E1000_EEPROM_82544_APM;
1033 break;
Auke Kokcd94dd02006-06-27 09:08:22 -07001034 case e1000_ich8lan:
1035 e1000_read_eeprom(&adapter->hw,
1036 EEPROM_INIT_CONTROL1_REG, 1, &eeprom_data);
1037 eeprom_apme_mask = E1000_EEPROM_ICH8_APME;
1038 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 case e1000_82546:
1040 case e1000_82546_rev_3:
Jeff Kirsherfd803242005-12-13 00:06:22 -05001041 case e1000_82571:
Jeff Kirsher6418ecc2006-03-02 18:21:10 -08001042 case e1000_80003es2lan:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001043 if (E1000_READ_REG(&adapter->hw, STATUS) & E1000_STATUS_FUNC_1){
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 e1000_read_eeprom(&adapter->hw,
1045 EEPROM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
1046 break;
1047 }
1048 /* Fall Through */
1049 default:
1050 e1000_read_eeprom(&adapter->hw,
1051 EEPROM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
1052 break;
1053 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001054 if (eeprom_data & eeprom_apme_mask)
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001055 adapter->eeprom_wol |= E1000_WUFC_MAG;
1056
1057 /* now that we have the eeprom settings, apply the special cases
1058 * where the eeprom may be wrong or the board simply won't support
1059 * wake on lan on a particular port */
1060 switch (pdev->device) {
1061 case E1000_DEV_ID_82546GB_PCIE:
1062 adapter->eeprom_wol = 0;
1063 break;
1064 case E1000_DEV_ID_82546EB_FIBER:
1065 case E1000_DEV_ID_82546GB_FIBER:
1066 case E1000_DEV_ID_82571EB_FIBER:
1067 /* Wake events only supported on port A for dual fiber
1068 * regardless of eeprom setting */
1069 if (E1000_READ_REG(&adapter->hw, STATUS) & E1000_STATUS_FUNC_1)
1070 adapter->eeprom_wol = 0;
1071 break;
1072 case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
Jesse Brandeburg5881cde2006-08-31 14:27:47 -07001073 case E1000_DEV_ID_82571EB_QUAD_COPPER:
Auke Kokce57a022007-08-09 14:09:34 -07001074 case E1000_DEV_ID_82571EB_QUAD_FIBER:
Auke Kokfc2307d2006-11-01 08:47:56 -08001075 case E1000_DEV_ID_82571EB_QUAD_COPPER_LOWPROFILE:
Auke Kokf4ec7f92007-08-30 11:23:58 -07001076 case E1000_DEV_ID_82571PT_QUAD_COPPER:
Jesse Brandeburg120cd572006-08-31 14:27:46 -07001077 /* if quad port adapter, disable WoL on all but port A */
1078 if (global_quad_port_a != 0)
1079 adapter->eeprom_wol = 0;
1080 else
1081 adapter->quad_port_a = 1;
1082 /* Reset for multiple quad port adapters */
1083 if (++global_quad_port_a == 4)
1084 global_quad_port_a = 0;
1085 break;
1086 }
1087
1088 /* initialize the wol settings based on the eeprom settings */
1089 adapter->wol = adapter->eeprom_wol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Jeff Kirsherfb3d47d2006-01-12 16:51:25 -08001091 /* print bus type/speed/width info */
1092 {
1093 struct e1000_hw *hw = &adapter->hw;
1094 DPRINTK(PROBE, INFO, "(PCI%s:%s:%s) ",
1095 ((hw->bus_type == e1000_bus_type_pcix) ? "-X" :
1096 (hw->bus_type == e1000_bus_type_pci_express ? " Express":"")),
1097 ((hw->bus_speed == e1000_bus_speed_2500) ? "2.5Gb/s" :
1098 (hw->bus_speed == e1000_bus_speed_133) ? "133MHz" :
1099 (hw->bus_speed == e1000_bus_speed_120) ? "120MHz" :
1100 (hw->bus_speed == e1000_bus_speed_100) ? "100MHz" :
1101 (hw->bus_speed == e1000_bus_speed_66) ? "66MHz" : "33MHz"),
1102 ((hw->bus_width == e1000_bus_width_64) ? "64-bit" :
1103 (hw->bus_width == e1000_bus_width_pciex_4) ? "Width x4" :
1104 (hw->bus_width == e1000_bus_width_pciex_1) ? "Width x1" :
1105 "32-bit"));
1106 }
1107
Joe Perches0795af52007-10-03 17:59:30 -07001108 printk("%s\n", print_mac(mac, netdev->dev_addr));
Jeff Kirsherfb3d47d2006-01-12 16:51:25 -08001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /* reset the hardware with the new settings */
1111 e1000_reset(adapter);
1112
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001113 /* If the controller is 82573 and f/w is AMT, do not set
1114 * DRV_LOAD until the interface is up. For all other cases,
1115 * let the f/w know that the h/w is now under the control
1116 * of the driver. */
1117 if (adapter->hw.mac_type != e1000_82573 ||
1118 !e1000_check_mng_mode(&adapter->hw))
1119 e1000_get_hw_control(adapter);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001120
Auke Kok1314bbf2006-09-27 12:54:02 -07001121 /* tell the stack to leave us alone until e1000_open() is called */
1122 netif_carrier_off(netdev);
1123 netif_stop_queue(netdev);
Auke Kok416b5d12007-06-01 10:22:39 -07001124
1125 strcpy(netdev->name, "eth%d");
1126 if ((err = register_netdev(netdev)))
1127 goto err_register;
Auke Kok1314bbf2006-09-27 12:54:02 -07001128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 DPRINTK(PROBE, INFO, "Intel(R) PRO/1000 Network Connection\n");
1130
1131 cards_found++;
1132 return 0;
1133
1134err_register:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001135 e1000_release_hw_control(adapter);
1136err_eeprom:
1137 if (!e1000_check_phy_reset_block(&adapter->hw))
1138 e1000_phy_hw_reset(&adapter->hw);
1139
Auke Kokcd94dd02006-06-27 09:08:22 -07001140 if (adapter->hw.flash_address)
1141 iounmap(adapter->hw.flash_address);
1142err_flashmap:
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001143#ifdef CONFIG_E1000_NAPI
1144 for (i = 0; i < adapter->num_rx_queues; i++)
1145 dev_put(&adapter->polling_netdev[i]);
1146#endif
1147
1148 kfree(adapter->tx_ring);
1149 kfree(adapter->rx_ring);
1150#ifdef CONFIG_E1000_NAPI
1151 kfree(adapter->polling_netdev);
1152#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153err_sw_init:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 iounmap(adapter->hw.hw_addr);
1155err_ioremap:
1156 free_netdev(netdev);
1157err_alloc_etherdev:
1158 pci_release_regions(pdev);
Vasily Averin6dd62ab2006-08-28 14:56:22 -07001159err_pci_reg:
1160err_dma:
1161 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return err;
1163}
1164
1165/**
1166 * e1000_remove - Device Removal Routine
1167 * @pdev: PCI device information struct
1168 *
1169 * e1000_remove is called by the PCI subsystem to alert the driver
1170 * that it should release a PCI device. The could be caused by a
1171 * Hot-Plug event, or because the driver is going to be removed from
1172 * memory.
1173 **/
1174
1175static void __devexit
1176e1000_remove(struct pci_dev *pdev)
1177{
1178 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07001179 struct e1000_adapter *adapter = netdev_priv(netdev);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001180#ifdef CONFIG_E1000_NAPI
1181 int i;
1182#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07001184 cancel_work_sync(&adapter->reset_task);
Jeff Garzikbe2b28e2005-10-04 07:13:43 -04001185
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05001186 e1000_release_manageability(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001188 /* Release control of h/w to f/w. If f/w is AMT enabled, this
1189 * would have already happened in close and is redundant. */
1190 e1000_release_hw_control(adapter);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001191
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001192#ifdef CONFIG_E1000_NAPI
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001193 for (i = 0; i < adapter->num_rx_queues; i++)
Stephen Hemminger15333062006-03-20 22:32:28 -08001194 dev_put(&adapter->polling_netdev[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001195#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001197 unregister_netdev(netdev);
1198
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001199 if (!e1000_check_phy_reset_block(&adapter->hw))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001200 e1000_phy_hw_reset(&adapter->hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001202 kfree(adapter->tx_ring);
1203 kfree(adapter->rx_ring);
1204#ifdef CONFIG_E1000_NAPI
1205 kfree(adapter->polling_netdev);
1206#endif
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 iounmap(adapter->hw.hw_addr);
Auke Kokcd94dd02006-06-27 09:08:22 -07001209 if (adapter->hw.flash_address)
1210 iounmap(adapter->hw.flash_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 pci_release_regions(pdev);
1212
1213 free_netdev(netdev);
1214
1215 pci_disable_device(pdev);
1216}
1217
1218/**
1219 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
1220 * @adapter: board private structure to initialize
1221 *
1222 * e1000_sw_init initializes the Adapter private data structure.
1223 * Fields are initialized based on PCI device information and
1224 * OS network device settings (MTU size).
1225 **/
1226
1227static int __devinit
1228e1000_sw_init(struct e1000_adapter *adapter)
1229{
1230 struct e1000_hw *hw = &adapter->hw;
1231 struct net_device *netdev = adapter->netdev;
1232 struct pci_dev *pdev = adapter->pdev;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001233#ifdef CONFIG_E1000_NAPI
1234 int i;
1235#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 /* PCI config space info */
1238
1239 hw->vendor_id = pdev->vendor;
1240 hw->device_id = pdev->device;
1241 hw->subsystem_vendor_id = pdev->subsystem_vendor;
1242 hw->subsystem_id = pdev->subsystem_device;
Auke Kok44c10132007-06-08 15:46:36 -07001243 hw->revision_id = pdev->revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 pci_read_config_word(pdev, PCI_COMMAND, &hw->pci_cmd_word);
1246
Auke Kokeb0f8052006-07-14 16:14:48 -07001247 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Auke Kok9e2feac2006-04-14 19:05:18 -07001248 adapter->rx_ps_bsize0 = E1000_RXBUFFER_128;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 hw->max_frame_size = netdev->mtu +
1250 ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
1251 hw->min_frame_size = MINIMUM_ETHERNET_FRAME_SIZE;
1252
1253 /* identify the MAC */
1254
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001255 if (e1000_set_mac_type(hw)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 DPRINTK(PROBE, ERR, "Unknown MAC Type\n");
1257 return -EIO;
1258 }
1259
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001260 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 default:
1262 break;
1263 case e1000_82541:
1264 case e1000_82547:
1265 case e1000_82541_rev_2:
1266 case e1000_82547_rev_2:
1267 hw->phy_init_script = 1;
1268 break;
1269 }
1270
1271 e1000_set_media_type(hw);
1272
1273 hw->wait_autoneg_complete = FALSE;
1274 hw->tbi_compatibility_en = TRUE;
1275 hw->adaptive_ifs = TRUE;
1276
1277 /* Copper options */
1278
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001279 if (hw->media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 hw->mdix = AUTO_ALL_MODES;
1281 hw->disable_polarity_correction = FALSE;
1282 hw->master_slave = E1000_MASTER_SLAVE;
1283 }
1284
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001285 adapter->num_tx_queues = 1;
1286 adapter->num_rx_queues = 1;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001287
1288 if (e1000_alloc_queues(adapter)) {
1289 DPRINTK(PROBE, ERR, "Unable to allocate memory for queues\n");
1290 return -ENOMEM;
1291 }
1292
1293#ifdef CONFIG_E1000_NAPI
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001294 for (i = 0; i < adapter->num_rx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001295 adapter->polling_netdev[i].priv = adapter;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001296 dev_hold(&adapter->polling_netdev[i]);
1297 set_bit(__LINK_STATE_START, &adapter->polling_netdev[i].state);
1298 }
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08001299 spin_lock_init(&adapter->tx_queue_lock);
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001300#endif
1301
Herbert Xu47313052007-05-29 15:07:31 -07001302 /* Explicitly disable IRQ since the NIC can be in any state. */
1303 atomic_set(&adapter->irq_sem, 0);
1304 e1000_irq_disable(adapter);
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 spin_lock_init(&adapter->stats_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Auke Kok1314bbf2006-09-27 12:54:02 -07001308 set_bit(__E1000_DOWN, &adapter->flags);
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return 0;
1311}
1312
1313/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001314 * e1000_alloc_queues - Allocate memory for all rings
1315 * @adapter: board private structure to initialize
1316 *
1317 * We allocate one ring per queue at run-time since we don't know the
1318 * number of queues at compile-time. The polling_netdev array is
1319 * intended for Multiqueue, but should work fine with a single queue.
1320 **/
1321
1322static int __devinit
1323e1000_alloc_queues(struct e1000_adapter *adapter)
1324{
Yan Burman1c7e5b12007-03-06 08:58:04 -08001325 adapter->tx_ring = kcalloc(adapter->num_tx_queues,
1326 sizeof(struct e1000_tx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001327 if (!adapter->tx_ring)
1328 return -ENOMEM;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001329
Yan Burman1c7e5b12007-03-06 08:58:04 -08001330 adapter->rx_ring = kcalloc(adapter->num_rx_queues,
1331 sizeof(struct e1000_rx_ring), GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001332 if (!adapter->rx_ring) {
1333 kfree(adapter->tx_ring);
1334 return -ENOMEM;
1335 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001336
1337#ifdef CONFIG_E1000_NAPI
Yan Burman1c7e5b12007-03-06 08:58:04 -08001338 adapter->polling_netdev = kcalloc(adapter->num_rx_queues,
1339 sizeof(struct net_device),
1340 GFP_KERNEL);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001341 if (!adapter->polling_netdev) {
1342 kfree(adapter->tx_ring);
1343 kfree(adapter->rx_ring);
1344 return -ENOMEM;
1345 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001346#endif
1347
1348 return E1000_SUCCESS;
1349}
1350
1351/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 * e1000_open - Called when a network interface is made active
1353 * @netdev: network interface device structure
1354 *
1355 * Returns 0 on success, negative value on failure
1356 *
1357 * The open entry point is called when a network interface is made
1358 * active by the system (IFF_UP). At this point all resources needed
1359 * for transmit and receive operations are allocated, the interrupt
1360 * handler is registered with the OS, the watchdog timer is started,
1361 * and the stack is notified that the interface is ready.
1362 **/
1363
1364static int
1365e1000_open(struct net_device *netdev)
1366{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001367 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 int err;
1369
Auke Kok2db10a02006-06-27 09:06:28 -07001370 /* disallow open during test */
Auke Kok1314bbf2006-09-27 12:54:02 -07001371 if (test_bit(__E1000_TESTING, &adapter->flags))
Auke Kok2db10a02006-06-27 09:06:28 -07001372 return -EBUSY;
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 /* allocate transmit descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001375 err = e1000_setup_all_tx_resources(adapter);
1376 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 goto err_setup_tx;
1378
1379 /* allocate receive descriptors */
Auke Koke0aac5a2007-03-06 08:57:21 -08001380 err = e1000_setup_all_rx_resources(adapter);
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001381 if (err)
Auke Koke0aac5a2007-03-06 08:57:21 -08001382 goto err_setup_rx;
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001383
Auke Kok79f05bf2006-06-27 09:06:32 -07001384 e1000_power_up_phy(adapter);
1385
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001386 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001387 if ((adapter->hw.mng_cookie.status &
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001388 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT)) {
1389 e1000_update_mng_vlan(adapter);
1390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001392 /* If AMT is enabled, let the firmware know that the network
1393 * interface is now open */
1394 if (adapter->hw.mac_type == e1000_82573 &&
1395 e1000_check_mng_mode(&adapter->hw))
1396 e1000_get_hw_control(adapter);
1397
Auke Koke0aac5a2007-03-06 08:57:21 -08001398 /* before we allocate an interrupt, we must be ready to handle it.
1399 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
1400 * as soon as we call pci_request_irq, so we have to setup our
1401 * clean_rx handler before we do so. */
1402 e1000_configure(adapter);
1403
1404 err = e1000_request_irq(adapter);
1405 if (err)
1406 goto err_req_irq;
1407
1408 /* From here on the code is the same as e1000_up() */
1409 clear_bit(__E1000_DOWN, &adapter->flags);
1410
Herbert Xu47313052007-05-29 15:07:31 -07001411#ifdef CONFIG_E1000_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001412 napi_enable(&adapter->napi);
Herbert Xu47313052007-05-29 15:07:31 -07001413#endif
1414
Auke Koke0aac5a2007-03-06 08:57:21 -08001415 e1000_irq_enable(adapter);
1416
1417 /* fire a link status change interrupt to start the watchdog */
1418 E1000_WRITE_REG(&adapter->hw, ICS, E1000_ICS_LSC);
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 return E1000_SUCCESS;
1421
Linus Torvaldsb5bf28c2007-02-21 11:21:44 -08001422err_req_irq:
Auke Koke0aac5a2007-03-06 08:57:21 -08001423 e1000_release_hw_control(adapter);
1424 e1000_power_down_phy(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001425 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426err_setup_rx:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001427 e1000_free_all_tx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428err_setup_tx:
1429 e1000_reset(adapter);
1430
1431 return err;
1432}
1433
1434/**
1435 * e1000_close - Disables a network interface
1436 * @netdev: network interface device structure
1437 *
1438 * Returns 0, this is not allowed to fail
1439 *
1440 * The close entry point is called when an interface is de-activated
1441 * by the OS. The hardware is still under the drivers control, but
1442 * needs to be disabled. A global MAC reset is issued to stop the
1443 * hardware, and all transmit and receive resources are freed.
1444 **/
1445
1446static int
1447e1000_close(struct net_device *netdev)
1448{
Malli Chilakala60490fe2005-06-17 17:41:45 -07001449 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Auke Kok2db10a02006-06-27 09:06:28 -07001451 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 e1000_down(adapter);
Auke Kok79f05bf2006-06-27 09:06:32 -07001453 e1000_power_down_phy(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07001454 e1000_free_irq(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001456 e1000_free_all_tx_resources(adapter);
1457 e1000_free_all_rx_resources(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Bruce Allan46665602006-09-27 12:54:08 -07001459 /* kill manageability vlan ID if supported, but not if a vlan with
1460 * the same ID is registered on the host OS (let 8021q kill it) */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001461 if ((adapter->hw.mng_cookie.status &
Bruce Allan46665602006-09-27 12:54:08 -07001462 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
1463 !(adapter->vlgrp &&
Dan Aloni5c15bde2007-03-02 20:44:51 -08001464 vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id))) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001465 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
1466 }
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08001467
1468 /* If AMT is enabled, let the firmware know that the network
1469 * interface is now closed */
1470 if (adapter->hw.mac_type == e1000_82573 &&
1471 e1000_check_mng_mode(&adapter->hw))
1472 e1000_release_hw_control(adapter);
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return 0;
1475}
1476
1477/**
1478 * e1000_check_64k_bound - check that memory doesn't cross 64kB boundary
1479 * @adapter: address of board private structure
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001480 * @start: address of beginning of memory
1481 * @len: length of memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 **/
Auke Koke619d522006-04-14 19:04:52 -07001483static boolean_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484e1000_check_64k_bound(struct e1000_adapter *adapter,
1485 void *start, unsigned long len)
1486{
1487 unsigned long begin = (unsigned long) start;
1488 unsigned long end = begin + len;
1489
Malli Chilakala26483452005-04-28 19:44:46 -07001490 /* First rev 82545 and 82546 need to not allow any memory
1491 * write location to cross 64k boundary due to errata 23 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (adapter->hw.mac_type == e1000_82545 ||
Malli Chilakala26483452005-04-28 19:44:46 -07001493 adapter->hw.mac_type == e1000_82546) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 return ((begin ^ (end - 1)) >> 16) != 0 ? FALSE : TRUE;
1495 }
1496
1497 return TRUE;
1498}
1499
1500/**
1501 * e1000_setup_tx_resources - allocate Tx resources (Descriptors)
1502 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001503 * @txdr: tx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 *
1505 * Return 0 on success, negative on failure
1506 **/
1507
Adrian Bunk3ad2cc62005-10-30 16:53:34 +01001508static int
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001509e1000_setup_tx_resources(struct e1000_adapter *adapter,
1510 struct e1000_tx_ring *txdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 struct pci_dev *pdev = adapter->pdev;
1513 int size;
1514
1515 size = sizeof(struct e1000_buffer) * txdr->count;
Auke Kokcd94dd02006-06-27 09:08:22 -07001516 txdr->buffer_info = vmalloc(size);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001517 if (!txdr->buffer_info) {
Malli Chilakala26483452005-04-28 19:44:46 -07001518 DPRINTK(PROBE, ERR,
1519 "Unable to allocate memory for the transmit descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return -ENOMEM;
1521 }
1522 memset(txdr->buffer_info, 0, size);
1523
1524 /* round up to nearest 4K */
1525
1526 txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001527 txdr->size = ALIGN(txdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529 txdr->desc = pci_alloc_consistent(pdev, txdr->size, &txdr->dma);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001530 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531setup_tx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 vfree(txdr->buffer_info);
Malli Chilakala26483452005-04-28 19:44:46 -07001533 DPRINTK(PROBE, ERR,
1534 "Unable to allocate memory for the transmit descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return -ENOMEM;
1536 }
1537
Malli Chilakala26483452005-04-28 19:44:46 -07001538 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1540 void *olddesc = txdr->desc;
1541 dma_addr_t olddma = txdr->dma;
Malli Chilakala26483452005-04-28 19:44:46 -07001542 DPRINTK(TX_ERR, ERR, "txdr align check failed: %u bytes "
1543 "at %p\n", txdr->size, txdr->desc);
1544 /* Try again, without freeing the previous */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 txdr->desc = pci_alloc_consistent(pdev, txdr->size, &txdr->dma);
Malli Chilakala26483452005-04-28 19:44:46 -07001546 /* Failed allocation, critical failure */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001547 if (!txdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 pci_free_consistent(pdev, txdr->size, olddesc, olddma);
1549 goto setup_tx_desc_die;
1550 }
1551
1552 if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
1553 /* give up */
Malli Chilakala26483452005-04-28 19:44:46 -07001554 pci_free_consistent(pdev, txdr->size, txdr->desc,
1555 txdr->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 pci_free_consistent(pdev, txdr->size, olddesc, olddma);
1557 DPRINTK(PROBE, ERR,
Malli Chilakala26483452005-04-28 19:44:46 -07001558 "Unable to allocate aligned memory "
1559 "for the transmit descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 vfree(txdr->buffer_info);
1561 return -ENOMEM;
1562 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001563 /* Free old allocation, new allocation was successful */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 pci_free_consistent(pdev, txdr->size, olddesc, olddma);
1565 }
1566 }
1567 memset(txdr->desc, 0, txdr->size);
1568
1569 txdr->next_to_use = 0;
1570 txdr->next_to_clean = 0;
Mallikarjuna R Chilakala2ae76d92005-10-04 07:04:22 -04001571 spin_lock_init(&txdr->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 return 0;
1574}
1575
1576/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001577 * e1000_setup_all_tx_resources - wrapper to allocate Tx resources
1578 * (Descriptors) for all queues
1579 * @adapter: board private structure
1580 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001581 * Return 0 on success, negative on failure
1582 **/
1583
1584int
1585e1000_setup_all_tx_resources(struct e1000_adapter *adapter)
1586{
1587 int i, err = 0;
1588
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001589 for (i = 0; i < adapter->num_tx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001590 err = e1000_setup_tx_resources(adapter, &adapter->tx_ring[i]);
1591 if (err) {
1592 DPRINTK(PROBE, ERR,
1593 "Allocation for Tx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001594 for (i-- ; i >= 0; i--)
1595 e1000_free_tx_resources(adapter,
1596 &adapter->tx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001597 break;
1598 }
1599 }
1600
1601 return err;
1602}
1603
1604/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
1606 * @adapter: board private structure
1607 *
1608 * Configure the Tx unit of the MAC after a reset.
1609 **/
1610
1611static void
1612e1000_configure_tx(struct e1000_adapter *adapter)
1613{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001614 uint64_t tdba;
1615 struct e1000_hw *hw = &adapter->hw;
1616 uint32_t tdlen, tctl, tipg, tarc;
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001617 uint32_t ipgr1, ipgr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619 /* Setup the HW Tx Head and Tail descriptor pointers */
1620
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001621 switch (adapter->num_tx_queues) {
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001622 case 1:
1623 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001624 tdba = adapter->tx_ring[0].dma;
1625 tdlen = adapter->tx_ring[0].count *
1626 sizeof(struct e1000_tx_desc);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001627 E1000_WRITE_REG(hw, TDLEN, tdlen);
Auke Kok4ca213a2006-06-27 09:07:08 -07001628 E1000_WRITE_REG(hw, TDBAH, (tdba >> 32));
1629 E1000_WRITE_REG(hw, TDBAL, (tdba & 0x00000000ffffffffULL));
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001630 E1000_WRITE_REG(hw, TDT, 0);
Auke Kok4ca213a2006-06-27 09:07:08 -07001631 E1000_WRITE_REG(hw, TDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07001632 adapter->tx_ring[0].tdh = ((hw->mac_type >= e1000_82543) ? E1000_TDH : E1000_82542_TDH);
1633 adapter->tx_ring[0].tdt = ((hw->mac_type >= e1000_82543) ? E1000_TDT : E1000_82542_TDT);
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04001634 break;
1635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 /* Set the default values for the Tx Inter Packet Gap timer */
Jesse Brandeburgd89b6c62006-12-15 10:38:32 +01001638 if (adapter->hw.mac_type <= e1000_82547_rev_2 &&
1639 (hw->media_type == e1000_media_type_fiber ||
1640 hw->media_type == e1000_media_type_internal_serdes))
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001641 tipg = DEFAULT_82543_TIPG_IPGT_FIBER;
1642 else
1643 tipg = DEFAULT_82543_TIPG_IPGT_COPPER;
1644
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001645 switch (hw->mac_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 case e1000_82542_rev2_0:
1647 case e1000_82542_rev2_1:
1648 tipg = DEFAULT_82542_TIPG_IPGT;
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001649 ipgr1 = DEFAULT_82542_TIPG_IPGR1;
1650 ipgr2 = DEFAULT_82542_TIPG_IPGR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 break;
Jeff Kirsher87041632006-03-02 18:21:24 -08001652 case e1000_80003es2lan:
1653 ipgr1 = DEFAULT_82543_TIPG_IPGR1;
1654 ipgr2 = DEFAULT_80003ES2LAN_TIPG_IPGR2;
1655 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 default:
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001657 ipgr1 = DEFAULT_82543_TIPG_IPGR1;
1658 ipgr2 = DEFAULT_82543_TIPG_IPGR2;
1659 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 }
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001661 tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
1662 tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001663 E1000_WRITE_REG(hw, TIPG, tipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 /* Set the Tx Interrupt Delay register */
1666
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001667 E1000_WRITE_REG(hw, TIDV, adapter->tx_int_delay);
1668 if (hw->mac_type >= e1000_82540)
1669 E1000_WRITE_REG(hw, TADV, adapter->tx_abs_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
1671 /* Program the Transmit Control Register */
1672
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001673 tctl = E1000_READ_REG(hw, TCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 tctl &= ~E1000_TCTL_CT;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001675 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
1677
Mallikarjuna R Chilakala2ae76d92005-10-04 07:04:22 -04001678 if (hw->mac_type == e1000_82571 || hw->mac_type == e1000_82572) {
1679 tarc = E1000_READ_REG(hw, TARC0);
Auke Kok90fb5132006-11-01 08:47:30 -08001680 /* set the speed mode bit, we'll clear it if we're not at
1681 * gigabit link later */
Jeff Kirsher09ae3e82006-09-27 12:53:51 -07001682 tarc |= (1 << 21);
Mallikarjuna R Chilakala2ae76d92005-10-04 07:04:22 -04001683 E1000_WRITE_REG(hw, TARC0, tarc);
Jeff Kirsher87041632006-03-02 18:21:24 -08001684 } else if (hw->mac_type == e1000_80003es2lan) {
1685 tarc = E1000_READ_REG(hw, TARC0);
1686 tarc |= 1;
Jeff Kirsher87041632006-03-02 18:21:24 -08001687 E1000_WRITE_REG(hw, TARC0, tarc);
1688 tarc = E1000_READ_REG(hw, TARC1);
1689 tarc |= 1;
1690 E1000_WRITE_REG(hw, TARC1, tarc);
Mallikarjuna R Chilakala2ae76d92005-10-04 07:04:22 -04001691 }
1692
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001693 e1000_config_collision_dist(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 /* Setup Transmit Descriptor Settings for eop descriptor */
Jesse Brandeburg6a042da2006-11-01 08:48:04 -08001696 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
1697
1698 /* only set IDE if we are delaying interrupts using the timers */
1699 if (adapter->tx_int_delay)
1700 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001702 if (hw->mac_type < e1000_82543)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 adapter->txd_cmd |= E1000_TXD_CMD_RPS;
1704 else
1705 adapter->txd_cmd |= E1000_TXD_CMD_RS;
1706
1707 /* Cache if we're 82544 running in PCI-X because we'll
1708 * need this to apply a workaround later in the send path. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001709 if (hw->mac_type == e1000_82544 &&
1710 hw->bus_type == e1000_bus_type_pcix)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 adapter->pcix_82544 = 1;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08001712
1713 E1000_WRITE_REG(hw, TCTL, tctl);
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
1717/**
1718 * e1000_setup_rx_resources - allocate Rx resources (Descriptors)
1719 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001720 * @rxdr: rx descriptor ring (for a specific queue) to setup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 *
1722 * Returns 0 on success, negative on failure
1723 **/
1724
Adrian Bunk3ad2cc62005-10-30 16:53:34 +01001725static int
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001726e1000_setup_rx_resources(struct e1000_adapter *adapter,
1727 struct e1000_rx_ring *rxdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 struct pci_dev *pdev = adapter->pdev;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001730 int size, desc_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732 size = sizeof(struct e1000_buffer) * rxdr->count;
Auke Kokcd94dd02006-06-27 09:08:22 -07001733 rxdr->buffer_info = vmalloc(size);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001734 if (!rxdr->buffer_info) {
Malli Chilakala26483452005-04-28 19:44:46 -07001735 DPRINTK(PROBE, ERR,
1736 "Unable to allocate memory for the receive descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 return -ENOMEM;
1738 }
1739 memset(rxdr->buffer_info, 0, size);
1740
Yan Burman1c7e5b12007-03-06 08:58:04 -08001741 rxdr->ps_page = kcalloc(rxdr->count, sizeof(struct e1000_ps_page),
1742 GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001743 if (!rxdr->ps_page) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001744 vfree(rxdr->buffer_info);
1745 DPRINTK(PROBE, ERR,
1746 "Unable to allocate memory for the receive descriptor ring\n");
1747 return -ENOMEM;
1748 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001749
Yan Burman1c7e5b12007-03-06 08:58:04 -08001750 rxdr->ps_page_dma = kcalloc(rxdr->count,
1751 sizeof(struct e1000_ps_page_dma),
1752 GFP_KERNEL);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001753 if (!rxdr->ps_page_dma) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001754 vfree(rxdr->buffer_info);
1755 kfree(rxdr->ps_page);
1756 DPRINTK(PROBE, ERR,
1757 "Unable to allocate memory for the receive descriptor ring\n");
1758 return -ENOMEM;
1759 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001760
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001761 if (adapter->hw.mac_type <= e1000_82547_rev_2)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001762 desc_len = sizeof(struct e1000_rx_desc);
1763 else
1764 desc_len = sizeof(union e1000_rx_desc_packet_split);
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 /* Round up to nearest 4K */
1767
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001768 rxdr->size = rxdr->count * desc_len;
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07001769 rxdr->size = ALIGN(rxdr->size, 4096);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 rxdr->desc = pci_alloc_consistent(pdev, rxdr->size, &rxdr->dma);
1772
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001773 if (!rxdr->desc) {
1774 DPRINTK(PROBE, ERR,
1775 "Unable to allocate memory for the receive descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776setup_rx_desc_die:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 vfree(rxdr->buffer_info);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001778 kfree(rxdr->ps_page);
1779 kfree(rxdr->ps_page_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 return -ENOMEM;
1781 }
1782
Malli Chilakala26483452005-04-28 19:44:46 -07001783 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1785 void *olddesc = rxdr->desc;
1786 dma_addr_t olddma = rxdr->dma;
Malli Chilakala26483452005-04-28 19:44:46 -07001787 DPRINTK(RX_ERR, ERR, "rxdr align check failed: %u bytes "
1788 "at %p\n", rxdr->size, rxdr->desc);
1789 /* Try again, without freeing the previous */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 rxdr->desc = pci_alloc_consistent(pdev, rxdr->size, &rxdr->dma);
Malli Chilakala26483452005-04-28 19:44:46 -07001791 /* Failed allocation, critical failure */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001792 if (!rxdr->desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 pci_free_consistent(pdev, rxdr->size, olddesc, olddma);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001794 DPRINTK(PROBE, ERR,
1795 "Unable to allocate memory "
1796 "for the receive descriptor ring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 goto setup_rx_desc_die;
1798 }
1799
1800 if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
1801 /* give up */
Malli Chilakala26483452005-04-28 19:44:46 -07001802 pci_free_consistent(pdev, rxdr->size, rxdr->desc,
1803 rxdr->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 pci_free_consistent(pdev, rxdr->size, olddesc, olddma);
Malli Chilakala26483452005-04-28 19:44:46 -07001805 DPRINTK(PROBE, ERR,
1806 "Unable to allocate aligned memory "
1807 "for the receive descriptor ring\n");
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001808 goto setup_rx_desc_die;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 } else {
Malli Chilakala26483452005-04-28 19:44:46 -07001810 /* Free old allocation, new allocation was successful */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 pci_free_consistent(pdev, rxdr->size, olddesc, olddma);
1812 }
1813 }
1814 memset(rxdr->desc, 0, rxdr->size);
1815
1816 rxdr->next_to_clean = 0;
1817 rxdr->next_to_use = 0;
1818
1819 return 0;
1820}
1821
1822/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001823 * e1000_setup_all_rx_resources - wrapper to allocate Rx resources
1824 * (Descriptors) for all queues
1825 * @adapter: board private structure
1826 *
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001827 * Return 0 on success, negative on failure
1828 **/
1829
1830int
1831e1000_setup_all_rx_resources(struct e1000_adapter *adapter)
1832{
1833 int i, err = 0;
1834
Jeff Kirsherf56799e2006-01-12 16:50:39 -08001835 for (i = 0; i < adapter->num_rx_queues; i++) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001836 err = e1000_setup_rx_resources(adapter, &adapter->rx_ring[i]);
1837 if (err) {
1838 DPRINTK(PROBE, ERR,
1839 "Allocation for Rx Queue %u failed\n", i);
Vasily Averin3fbbc722006-08-28 14:56:24 -07001840 for (i-- ; i >= 0; i--)
1841 e1000_free_rx_resources(adapter,
1842 &adapter->rx_ring[i]);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001843 break;
1844 }
1845 }
1846
1847 return err;
1848}
1849
1850/**
Malli Chilakala26483452005-04-28 19:44:46 -07001851 * e1000_setup_rctl - configure the receive control registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 * @adapter: Board private structure
1853 **/
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04001854#define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
1855 (((S) & (PAGE_SIZE - 1)) ? 1 : 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856static void
1857e1000_setup_rctl(struct e1000_adapter *adapter)
1858{
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001859 uint32_t rctl, rfctl;
1860 uint32_t psrctl = 0;
Jesse Brandeburg35ec56b2006-01-18 13:01:30 -08001861#ifndef CONFIG_E1000_DISABLE_PACKET_SPLIT
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04001862 uint32_t pages = 0;
1863#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 rctl = E1000_READ_REG(&adapter->hw, RCTL);
1866
1867 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
1868
1869 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
1870 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
1871 (adapter->hw.mc_filter_type << E1000_RCTL_MO_SHIFT);
1872
Jeff Kirsher0fadb052006-01-12 16:51:05 -08001873 if (adapter->hw.tbi_compatibility_on == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 rctl |= E1000_RCTL_SBP;
1875 else
1876 rctl &= ~E1000_RCTL_SBP;
1877
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001878 if (adapter->netdev->mtu <= ETH_DATA_LEN)
1879 rctl &= ~E1000_RCTL_LPE;
1880 else
1881 rctl |= E1000_RCTL_LPE;
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 /* Setup buffer sizes */
Auke Kok9e2feac2006-04-14 19:05:18 -07001884 rctl &= ~E1000_RCTL_SZ_4096;
1885 rctl |= E1000_RCTL_BSEX;
1886 switch (adapter->rx_buffer_len) {
1887 case E1000_RXBUFFER_256:
1888 rctl |= E1000_RCTL_SZ_256;
1889 rctl &= ~E1000_RCTL_BSEX;
1890 break;
1891 case E1000_RXBUFFER_512:
1892 rctl |= E1000_RCTL_SZ_512;
1893 rctl &= ~E1000_RCTL_BSEX;
1894 break;
1895 case E1000_RXBUFFER_1024:
1896 rctl |= E1000_RCTL_SZ_1024;
1897 rctl &= ~E1000_RCTL_BSEX;
1898 break;
Jeff Kirshera1415ee2006-02-28 20:24:07 -08001899 case E1000_RXBUFFER_2048:
1900 default:
1901 rctl |= E1000_RCTL_SZ_2048;
1902 rctl &= ~E1000_RCTL_BSEX;
1903 break;
1904 case E1000_RXBUFFER_4096:
1905 rctl |= E1000_RCTL_SZ_4096;
1906 break;
1907 case E1000_RXBUFFER_8192:
1908 rctl |= E1000_RCTL_SZ_8192;
1909 break;
1910 case E1000_RXBUFFER_16384:
1911 rctl |= E1000_RCTL_SZ_16384;
1912 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001913 }
1914
Jesse Brandeburg35ec56b2006-01-18 13:01:30 -08001915#ifndef CONFIG_E1000_DISABLE_PACKET_SPLIT
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001916 /* 82571 and greater support packet-split where the protocol
1917 * header is placed in skb->data and the packet data is
1918 * placed in pages hanging off of skb_shinfo(skb)->nr_frags.
1919 * In the case of a non-split, skb->data is linearly filled,
1920 * followed by the page buffers. Therefore, skb->data is
1921 * sized to hold the largest protocol header.
1922 */
Jesse Brandeburge64d7d02006-10-24 14:46:01 -07001923 /* allocations using alloc_page take too long for regular MTU
1924 * so only enable packet split for jumbo frames */
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04001925 pages = PAGE_USE_COUNT(adapter->netdev->mtu);
Jesse Brandeburge64d7d02006-10-24 14:46:01 -07001926 if ((adapter->hw.mac_type >= e1000_82571) && (pages <= 3) &&
1927 PAGE_SIZE <= 16384 && (rctl & E1000_RCTL_LPE))
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04001928 adapter->rx_ps_pages = pages;
1929 else
1930 adapter->rx_ps_pages = 0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001931#endif
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04001932 if (adapter->rx_ps_pages) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001933 /* Configure extra packet-split registers */
1934 rfctl = E1000_READ_REG(&adapter->hw, RFCTL);
1935 rfctl |= E1000_RFCTL_EXTEN;
Auke Kok87ca4e52006-11-01 08:47:36 -08001936 /* disable packet split support for IPv6 extension headers,
1937 * because some malformed IPv6 headers can hang the RX */
1938 rfctl |= (E1000_RFCTL_IPV6_EX_DIS |
1939 E1000_RFCTL_NEW_IPV6_EXT_DIS);
1940
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001941 E1000_WRITE_REG(&adapter->hw, RFCTL, rfctl);
1942
Auke Kok7dfee0c2006-06-27 09:07:50 -07001943 rctl |= E1000_RCTL_DTYP_PS;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08001944
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001945 psrctl |= adapter->rx_ps_bsize0 >>
1946 E1000_PSRCTL_BSIZE0_SHIFT;
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04001947
1948 switch (adapter->rx_ps_pages) {
1949 case 3:
1950 psrctl |= PAGE_SIZE <<
1951 E1000_PSRCTL_BSIZE3_SHIFT;
1952 case 2:
1953 psrctl |= PAGE_SIZE <<
1954 E1000_PSRCTL_BSIZE2_SHIFT;
1955 case 1:
1956 psrctl |= PAGE_SIZE >>
1957 E1000_PSRCTL_BSIZE1_SHIFT;
1958 break;
1959 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001960
1961 E1000_WRITE_REG(&adapter->hw, PSRCTL, psrctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
1963
1964 E1000_WRITE_REG(&adapter->hw, RCTL, rctl);
1965}
1966
1967/**
1968 * e1000_configure_rx - Configure 8254x Receive Unit after Reset
1969 * @adapter: board private structure
1970 *
1971 * Configure the Rx unit of the MAC after a reset.
1972 **/
1973
1974static void
1975e1000_configure_rx(struct e1000_adapter *adapter)
1976{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001977 uint64_t rdba;
1978 struct e1000_hw *hw = &adapter->hw;
1979 uint32_t rdlen, rctl, rxcsum, ctrl_ext;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001980
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04001981 if (adapter->rx_ps_pages) {
Jeff Kirsher0f15a8f2006-03-02 18:46:29 -08001982 /* this is a 32 byte descriptor */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001983 rdlen = adapter->rx_ring[0].count *
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001984 sizeof(union e1000_rx_desc_packet_split);
1985 adapter->clean_rx = e1000_clean_rx_irq_ps;
1986 adapter->alloc_rx_buf = e1000_alloc_rx_buffers_ps;
1987 } else {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001988 rdlen = adapter->rx_ring[0].count *
1989 sizeof(struct e1000_rx_desc);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07001990 adapter->clean_rx = e1000_clean_rx_irq;
1991 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
1992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 /* disable receives while setting up the descriptors */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001995 rctl = E1000_READ_REG(hw, RCTL);
1996 E1000_WRITE_REG(hw, RCTL, rctl & ~E1000_RCTL_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 /* set the Receive Delay Timer Register */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04001999 E1000_WRITE_REG(hw, RDTR, adapter->rx_int_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002001 if (hw->mac_type >= e1000_82540) {
2002 E1000_WRITE_REG(hw, RADV, adapter->rx_abs_int_delay);
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002003 if (adapter->itr_setting != 0)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002004 E1000_WRITE_REG(hw, ITR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 1000000000 / (adapter->itr * 256));
2006 }
2007
Mallikarjuna R Chilakala2ae76d92005-10-04 07:04:22 -04002008 if (hw->mac_type >= e1000_82571) {
Mallikarjuna R Chilakala2ae76d92005-10-04 07:04:22 -04002009 ctrl_ext = E1000_READ_REG(hw, CTRL_EXT);
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08002010 /* Reset delay timers after every interrupt */
Auke Kok6fc7a7e2006-04-14 19:05:12 -07002011 ctrl_ext |= E1000_CTRL_EXT_INT_TIMER_CLR;
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08002012#ifdef CONFIG_E1000_NAPI
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002013 /* Auto-Mask interrupts upon ICR access */
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08002014 ctrl_ext |= E1000_CTRL_EXT_IAME;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002015 E1000_WRITE_REG(hw, IAM, 0xffffffff);
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08002016#endif
Mallikarjuna R Chilakala2ae76d92005-10-04 07:04:22 -04002017 E1000_WRITE_REG(hw, CTRL_EXT, ctrl_ext);
2018 E1000_WRITE_FLUSH(hw);
2019 }
2020
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002021 /* Setup the HW Rx Head and Tail Descriptor Pointers and
2022 * the Base and Length of the Rx Descriptor Ring */
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002023 switch (adapter->num_rx_queues) {
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04002024 case 1:
2025 default:
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002026 rdba = adapter->rx_ring[0].dma;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002027 E1000_WRITE_REG(hw, RDLEN, rdlen);
Auke Kok4ca213a2006-06-27 09:07:08 -07002028 E1000_WRITE_REG(hw, RDBAH, (rdba >> 32));
2029 E1000_WRITE_REG(hw, RDBAL, (rdba & 0x00000000ffffffffULL));
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002030 E1000_WRITE_REG(hw, RDT, 0);
Auke Kok4ca213a2006-06-27 09:07:08 -07002031 E1000_WRITE_REG(hw, RDH, 0);
Auke Kok6a951692006-09-11 14:00:21 -07002032 adapter->rx_ring[0].rdh = ((hw->mac_type >= e1000_82543) ? E1000_RDH : E1000_82542_RDH);
2033 adapter->rx_ring[0].rdt = ((hw->mac_type >= e1000_82543) ? E1000_RDT : E1000_82542_RDT);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002034 break;
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04002035 }
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 /* Enable 82543 Receive Checksum Offload for TCP and UDP */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002038 if (hw->mac_type >= e1000_82543) {
2039 rxcsum = E1000_READ_REG(hw, RXCSUM);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002040 if (adapter->rx_csum == TRUE) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002041 rxcsum |= E1000_RXCSUM_TUOFL;
2042
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002043 /* Enable 82571 IPv4 payload checksum for UDP fragments
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002044 * Must be used in conjunction with packet-split. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002045 if ((hw->mac_type >= e1000_82571) &&
2046 (adapter->rx_ps_pages)) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002047 rxcsum |= E1000_RXCSUM_IPPCSE;
2048 }
2049 } else {
2050 rxcsum &= ~E1000_RXCSUM_TUOFL;
2051 /* don't need to clear IPPCSE as it defaults to 0 */
2052 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002053 E1000_WRITE_REG(hw, RXCSUM, rxcsum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 }
2055
Auke Kok21c4d5e2006-11-01 08:47:39 -08002056 /* enable early receives on 82573, only takes effect if using > 2048
2057 * byte total frame size. for example only for jumbo frames */
2058#define E1000_ERT_2048 0x100
2059 if (hw->mac_type == e1000_82573)
2060 E1000_WRITE_REG(hw, ERT, E1000_ERT_2048);
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 /* Enable Receives */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002063 E1000_WRITE_REG(hw, RCTL, rctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
2065
2066/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002067 * e1000_free_tx_resources - Free Tx Resources per Queue
2068 * @adapter: board private structure
2069 * @tx_ring: Tx descriptor ring for a specific queue
2070 *
2071 * Free all transmit software resources
2072 **/
2073
Adrian Bunk3ad2cc62005-10-30 16:53:34 +01002074static void
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002075e1000_free_tx_resources(struct e1000_adapter *adapter,
2076 struct e1000_tx_ring *tx_ring)
2077{
2078 struct pci_dev *pdev = adapter->pdev;
2079
2080 e1000_clean_tx_ring(adapter, tx_ring);
2081
2082 vfree(tx_ring->buffer_info);
2083 tx_ring->buffer_info = NULL;
2084
2085 pci_free_consistent(pdev, tx_ring->size, tx_ring->desc, tx_ring->dma);
2086
2087 tx_ring->desc = NULL;
2088}
2089
2090/**
2091 * e1000_free_all_tx_resources - Free Tx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 * @adapter: board private structure
2093 *
2094 * Free all transmit software resources
2095 **/
2096
2097void
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002098e1000_free_all_tx_resources(struct e1000_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002100 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002102 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002103 e1000_free_tx_resources(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104}
2105
Auke Koke619d522006-04-14 19:04:52 -07002106static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107e1000_unmap_and_free_tx_resource(struct e1000_adapter *adapter,
2108 struct e1000_buffer *buffer_info)
2109{
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002110 if (buffer_info->dma) {
Malli Chilakala26483452005-04-28 19:44:46 -07002111 pci_unmap_page(adapter->pdev,
2112 buffer_info->dma,
2113 buffer_info->length,
2114 PCI_DMA_TODEVICE);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002115 buffer_info->dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002117 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 dev_kfree_skb_any(buffer_info->skb);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002119 buffer_info->skb = NULL;
2120 }
2121 /* buffer_info must be completely set up in the transmit path */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122}
2123
2124/**
2125 * e1000_clean_tx_ring - Free Tx Buffers
2126 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002127 * @tx_ring: ring to be cleaned
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 **/
2129
2130static void
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002131e1000_clean_tx_ring(struct e1000_adapter *adapter,
2132 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 struct e1000_buffer *buffer_info;
2135 unsigned long size;
2136 unsigned int i;
2137
2138 /* Free all the Tx ring sk_buffs */
2139
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002140 for (i = 0; i < tx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 buffer_info = &tx_ring->buffer_info[i];
2142 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
2143 }
2144
2145 size = sizeof(struct e1000_buffer) * tx_ring->count;
2146 memset(tx_ring->buffer_info, 0, size);
2147
2148 /* Zero out the descriptor ring */
2149
2150 memset(tx_ring->desc, 0, tx_ring->size);
2151
2152 tx_ring->next_to_use = 0;
2153 tx_ring->next_to_clean = 0;
Jeff Kirsherfd803242005-12-13 00:06:22 -05002154 tx_ring->last_tx_tso = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002156 writel(0, adapter->hw.hw_addr + tx_ring->tdh);
2157 writel(0, adapter->hw.hw_addr + tx_ring->tdt);
2158}
2159
2160/**
2161 * e1000_clean_all_tx_rings - Free Tx Buffers for all queues
2162 * @adapter: board private structure
2163 **/
2164
2165static void
2166e1000_clean_all_tx_rings(struct e1000_adapter *adapter)
2167{
2168 int i;
2169
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002170 for (i = 0; i < adapter->num_tx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002171 e1000_clean_tx_ring(adapter, &adapter->tx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172}
2173
2174/**
2175 * e1000_free_rx_resources - Free Rx Resources
2176 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002177 * @rx_ring: ring to clean the resources from
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 *
2179 * Free all receive software resources
2180 **/
2181
Adrian Bunk3ad2cc62005-10-30 16:53:34 +01002182static void
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002183e1000_free_rx_resources(struct e1000_adapter *adapter,
2184 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 struct pci_dev *pdev = adapter->pdev;
2187
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002188 e1000_clean_rx_ring(adapter, rx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190 vfree(rx_ring->buffer_info);
2191 rx_ring->buffer_info = NULL;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002192 kfree(rx_ring->ps_page);
2193 rx_ring->ps_page = NULL;
2194 kfree(rx_ring->ps_page_dma);
2195 rx_ring->ps_page_dma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
2197 pci_free_consistent(pdev, rx_ring->size, rx_ring->desc, rx_ring->dma);
2198
2199 rx_ring->desc = NULL;
2200}
2201
2202/**
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002203 * e1000_free_all_rx_resources - Free Rx Resources for All Queues
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 * @adapter: board private structure
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002205 *
2206 * Free all receive software resources
2207 **/
2208
2209void
2210e1000_free_all_rx_resources(struct e1000_adapter *adapter)
2211{
2212 int i;
2213
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002214 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002215 e1000_free_rx_resources(adapter, &adapter->rx_ring[i]);
2216}
2217
2218/**
2219 * e1000_clean_rx_ring - Free Rx Buffers per Queue
2220 * @adapter: board private structure
2221 * @rx_ring: ring to free buffers from
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 **/
2223
2224static void
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002225e1000_clean_rx_ring(struct e1000_adapter *adapter,
2226 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 struct e1000_buffer *buffer_info;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002229 struct e1000_ps_page *ps_page;
2230 struct e1000_ps_page_dma *ps_page_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 struct pci_dev *pdev = adapter->pdev;
2232 unsigned long size;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002233 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 /* Free all the Rx ring sk_buffs */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002236 for (i = 0; i < rx_ring->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 buffer_info = &rx_ring->buffer_info[i];
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002238 if (buffer_info->skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 pci_unmap_single(pdev,
2240 buffer_info->dma,
2241 buffer_info->length,
2242 PCI_DMA_FROMDEVICE);
2243
2244 dev_kfree_skb(buffer_info->skb);
2245 buffer_info->skb = NULL;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08002246 }
2247 ps_page = &rx_ring->ps_page[i];
2248 ps_page_dma = &rx_ring->ps_page_dma[i];
2249 for (j = 0; j < adapter->rx_ps_pages; j++) {
2250 if (!ps_page->ps_page[j]) break;
2251 pci_unmap_page(pdev,
2252 ps_page_dma->ps_page_dma[j],
2253 PAGE_SIZE, PCI_DMA_FROMDEVICE);
2254 ps_page_dma->ps_page_dma[j] = 0;
2255 put_page(ps_page->ps_page[j]);
2256 ps_page->ps_page[j] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 }
2258 }
2259
2260 size = sizeof(struct e1000_buffer) * rx_ring->count;
2261 memset(rx_ring->buffer_info, 0, size);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002262 size = sizeof(struct e1000_ps_page) * rx_ring->count;
2263 memset(rx_ring->ps_page, 0, size);
2264 size = sizeof(struct e1000_ps_page_dma) * rx_ring->count;
2265 memset(rx_ring->ps_page_dma, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
2267 /* Zero out the descriptor ring */
2268
2269 memset(rx_ring->desc, 0, rx_ring->size);
2270
2271 rx_ring->next_to_clean = 0;
2272 rx_ring->next_to_use = 0;
2273
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002274 writel(0, adapter->hw.hw_addr + rx_ring->rdh);
2275 writel(0, adapter->hw.hw_addr + rx_ring->rdt);
2276}
2277
2278/**
2279 * e1000_clean_all_rx_rings - Free Rx Buffers for all queues
2280 * @adapter: board private structure
2281 **/
2282
2283static void
2284e1000_clean_all_rx_rings(struct e1000_adapter *adapter)
2285{
2286 int i;
2287
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002288 for (i = 0; i < adapter->num_rx_queues; i++)
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002289 e1000_clean_rx_ring(adapter, &adapter->rx_ring[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290}
2291
2292/* The 82542 2.0 (revision 2) needs to have the receive unit in reset
2293 * and memory write and invalidate disabled for certain operations
2294 */
2295static void
2296e1000_enter_82542_rst(struct e1000_adapter *adapter)
2297{
2298 struct net_device *netdev = adapter->netdev;
2299 uint32_t rctl;
2300
2301 e1000_pci_clear_mwi(&adapter->hw);
2302
2303 rctl = E1000_READ_REG(&adapter->hw, RCTL);
2304 rctl |= E1000_RCTL_RST;
2305 E1000_WRITE_REG(&adapter->hw, RCTL, rctl);
2306 E1000_WRITE_FLUSH(&adapter->hw);
2307 mdelay(5);
2308
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002309 if (netif_running(netdev))
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002310 e1000_clean_all_rx_rings(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311}
2312
2313static void
2314e1000_leave_82542_rst(struct e1000_adapter *adapter)
2315{
2316 struct net_device *netdev = adapter->netdev;
2317 uint32_t rctl;
2318
2319 rctl = E1000_READ_REG(&adapter->hw, RCTL);
2320 rctl &= ~E1000_RCTL_RST;
2321 E1000_WRITE_REG(&adapter->hw, RCTL, rctl);
2322 E1000_WRITE_FLUSH(&adapter->hw);
2323 mdelay(5);
2324
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002325 if (adapter->hw.pci_cmd_word & PCI_COMMAND_INVALIDATE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 e1000_pci_set_mwi(&adapter->hw);
2327
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002328 if (netif_running(netdev)) {
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002329 /* No need to loop, because 82542 supports only 1 queue */
2330 struct e1000_rx_ring *ring = &adapter->rx_ring[0];
Jesse Brandeburg7c4d3362006-01-18 13:01:45 -08002331 e1000_configure_rx(adapter);
Jeff Kirsher72d64a42006-01-12 16:51:19 -08002332 adapter->alloc_rx_buf(adapter, ring, E1000_DESC_UNUSED(ring));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
2334}
2335
2336/**
2337 * e1000_set_mac - Change the Ethernet Address of the NIC
2338 * @netdev: network interface device structure
2339 * @p: pointer to an address structure
2340 *
2341 * Returns 0 on success, negative on failure
2342 **/
2343
2344static int
2345e1000_set_mac(struct net_device *netdev, void *p)
2346{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002347 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 struct sockaddr *addr = p;
2349
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002350 if (!is_valid_ether_addr(addr->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 return -EADDRNOTAVAIL;
2352
2353 /* 82542 2.0 needs to be in reset to write receive address registers */
2354
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002355 if (adapter->hw.mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 e1000_enter_82542_rst(adapter);
2357
2358 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2359 memcpy(adapter->hw.mac_addr, addr->sa_data, netdev->addr_len);
2360
2361 e1000_rar_set(&adapter->hw, adapter->hw.mac_addr, 0);
2362
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002363 /* With 82571 controllers, LAA may be overwritten (with the default)
2364 * due to controller reset from the other port. */
2365 if (adapter->hw.mac_type == e1000_82571) {
2366 /* activate the work around */
2367 adapter->hw.laa_is_present = 1;
2368
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002369 /* Hold a copy of the LAA in RAR[14] This is done so that
2370 * between the time RAR[0] gets clobbered and the time it
2371 * gets fixed (in e1000_watchdog), the actual LAA is in one
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002372 * of the RARs and no incoming packets directed to this port
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002373 * are dropped. Eventaully the LAA will be in RAR[0] and
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002374 * RAR[14] */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002375 e1000_rar_set(&adapter->hw, adapter->hw.mac_addr,
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002376 E1000_RAR_ENTRIES - 1);
2377 }
2378
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002379 if (adapter->hw.mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 e1000_leave_82542_rst(adapter);
2381
2382 return 0;
2383}
2384
2385/**
2386 * e1000_set_multi - Multicast and Promiscuous mode set
2387 * @netdev: network interface device structure
2388 *
2389 * The set_multi entry point is called whenever the multicast address
2390 * list or the network interface flags are updated. This routine is
2391 * responsible for configuring the hardware for proper multicast,
2392 * promiscuous mode, and all-multi behavior.
2393 **/
2394
2395static void
2396e1000_set_multi(struct net_device *netdev)
2397{
Malli Chilakala60490fe2005-06-17 17:41:45 -07002398 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 struct e1000_hw *hw = &adapter->hw;
2400 struct dev_mc_list *mc_ptr;
2401 uint32_t rctl;
2402 uint32_t hash_value;
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002403 int i, rar_entries = E1000_RAR_ENTRIES;
Auke Kokcd94dd02006-06-27 09:08:22 -07002404 int mta_reg_count = (hw->mac_type == e1000_ich8lan) ?
2405 E1000_NUM_MTA_REGISTERS_ICH8LAN :
2406 E1000_NUM_MTA_REGISTERS;
2407
2408 if (adapter->hw.mac_type == e1000_ich8lan)
2409 rar_entries = E1000_RAR_ENTRIES_ICH8LAN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002411 /* reserve RAR[14] for LAA over-write work-around */
2412 if (adapter->hw.mac_type == e1000_82571)
2413 rar_entries--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
Malli Chilakala26483452005-04-28 19:44:46 -07002415 /* Check for Promiscuous and All Multicast modes */
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 rctl = E1000_READ_REG(hw, RCTL);
2418
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002419 if (netdev->flags & IFF_PROMISC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002421 } else if (netdev->flags & IFF_ALLMULTI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 rctl |= E1000_RCTL_MPE;
2423 rctl &= ~E1000_RCTL_UPE;
2424 } else {
2425 rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE);
2426 }
2427
2428 E1000_WRITE_REG(hw, RCTL, rctl);
2429
2430 /* 82542 2.0 needs to be in reset to write receive address registers */
2431
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002432 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 e1000_enter_82542_rst(adapter);
2434
2435 /* load the first 14 multicast address into the exact filters 1-14
2436 * RAR 0 is used for the station MAC adddress
2437 * if there are not 14 addresses, go ahead and clear the filters
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002438 * -- with 82571 controllers only 0-13 entries are filled here
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 */
2440 mc_ptr = netdev->mc_list;
2441
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002442 for (i = 1; i < rar_entries; i++) {
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002443 if (mc_ptr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 e1000_rar_set(hw, mc_ptr->dmi_addr, i);
2445 mc_ptr = mc_ptr->next;
2446 } else {
2447 E1000_WRITE_REG_ARRAY(hw, RA, i << 1, 0);
Auke Kok4ca213a2006-06-27 09:07:08 -07002448 E1000_WRITE_FLUSH(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 E1000_WRITE_REG_ARRAY(hw, RA, (i << 1) + 1, 0);
Auke Kok4ca213a2006-06-27 09:07:08 -07002450 E1000_WRITE_FLUSH(hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 }
2452 }
2453
2454 /* clear the old settings from the multicast hash table */
2455
Auke Kokcd94dd02006-06-27 09:08:22 -07002456 for (i = 0; i < mta_reg_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 E1000_WRITE_REG_ARRAY(hw, MTA, i, 0);
Auke Kok4ca213a2006-06-27 09:07:08 -07002458 E1000_WRITE_FLUSH(hw);
2459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
2461 /* load any remaining addresses into the hash table */
2462
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002463 for (; mc_ptr; mc_ptr = mc_ptr->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 hash_value = e1000_hash_mc_addr(hw, mc_ptr->dmi_addr);
2465 e1000_mta_set(hw, hash_value);
2466 }
2467
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002468 if (hw->mac_type == e1000_82542_rev2_0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 e1000_leave_82542_rst(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
2471
2472/* Need to wait a few seconds after link up to get diagnostic information from
2473 * the phy */
2474
2475static void
2476e1000_update_phy_info(unsigned long data)
2477{
2478 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
2479 e1000_phy_get_info(&adapter->hw, &adapter->phy_info);
2480}
2481
2482/**
2483 * e1000_82547_tx_fifo_stall - Timer Call-back
2484 * @data: pointer to adapter cast into an unsigned long
2485 **/
2486
2487static void
2488e1000_82547_tx_fifo_stall(unsigned long data)
2489{
2490 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
2491 struct net_device *netdev = adapter->netdev;
2492 uint32_t tctl;
2493
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002494 if (atomic_read(&adapter->tx_fifo_stall)) {
2495 if ((E1000_READ_REG(&adapter->hw, TDT) ==
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 E1000_READ_REG(&adapter->hw, TDH)) &&
2497 (E1000_READ_REG(&adapter->hw, TDFT) ==
2498 E1000_READ_REG(&adapter->hw, TDFH)) &&
2499 (E1000_READ_REG(&adapter->hw, TDFTS) ==
2500 E1000_READ_REG(&adapter->hw, TDFHS))) {
2501 tctl = E1000_READ_REG(&adapter->hw, TCTL);
2502 E1000_WRITE_REG(&adapter->hw, TCTL,
2503 tctl & ~E1000_TCTL_EN);
2504 E1000_WRITE_REG(&adapter->hw, TDFT,
2505 adapter->tx_head_addr);
2506 E1000_WRITE_REG(&adapter->hw, TDFH,
2507 adapter->tx_head_addr);
2508 E1000_WRITE_REG(&adapter->hw, TDFTS,
2509 adapter->tx_head_addr);
2510 E1000_WRITE_REG(&adapter->hw, TDFHS,
2511 adapter->tx_head_addr);
2512 E1000_WRITE_REG(&adapter->hw, TCTL, tctl);
2513 E1000_WRITE_FLUSH(&adapter->hw);
2514
2515 adapter->tx_fifo_head = 0;
2516 atomic_set(&adapter->tx_fifo_stall, 0);
2517 netif_wake_queue(netdev);
2518 } else {
2519 mod_timer(&adapter->tx_fifo_stall_timer, jiffies + 1);
2520 }
2521 }
2522}
2523
2524/**
2525 * e1000_watchdog - Timer Call-back
2526 * @data: pointer to adapter cast into an unsigned long
2527 **/
2528static void
2529e1000_watchdog(unsigned long data)
2530{
2531 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 struct net_device *netdev = adapter->netdev;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002533 struct e1000_tx_ring *txdr = adapter->tx_ring;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002534 uint32_t link, tctl;
Auke Kokcd94dd02006-06-27 09:08:22 -07002535 int32_t ret_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Auke Kokcd94dd02006-06-27 09:08:22 -07002537 ret_val = e1000_check_for_link(&adapter->hw);
2538 if ((ret_val == E1000_ERR_PHY) &&
2539 (adapter->hw.phy_type == e1000_phy_igp_3) &&
2540 (E1000_READ_REG(&adapter->hw, CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
2541 /* See e1000_kumeran_lock_loss_workaround() */
2542 DPRINTK(LINK, INFO,
2543 "Gigabit has been disabled, downgrading speed\n");
2544 }
Auke Kok90fb5132006-11-01 08:47:30 -08002545
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002546 if (adapter->hw.mac_type == e1000_82573) {
2547 e1000_enable_tx_pkt_filtering(&adapter->hw);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002548 if (adapter->mng_vlan_id != adapter->hw.mng_cookie.vlan_id)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002549 e1000_update_mng_vlan(adapter);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002552 if ((adapter->hw.media_type == e1000_media_type_internal_serdes) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 !(E1000_READ_REG(&adapter->hw, TXCW) & E1000_TXCW_ANE))
2554 link = !adapter->hw.serdes_link_down;
2555 else
2556 link = E1000_READ_REG(&adapter->hw, STATUS) & E1000_STATUS_LU;
2557
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002558 if (link) {
2559 if (!netif_carrier_ok(netdev)) {
Auke Kok9669f532007-01-18 09:25:26 -08002560 uint32_t ctrl;
Auke Kokfe7fe282006-04-14 19:04:59 -07002561 boolean_t txb2b = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 e1000_get_speed_and_duplex(&adapter->hw,
2563 &adapter->link_speed,
2564 &adapter->link_duplex);
2565
Auke Kok9669f532007-01-18 09:25:26 -08002566 ctrl = E1000_READ_REG(&adapter->hw, CTRL);
2567 DPRINTK(LINK, INFO, "NIC Link is Up %d Mbps %s, "
2568 "Flow Control: %s\n",
2569 adapter->link_speed,
2570 adapter->link_duplex == FULL_DUPLEX ?
2571 "Full Duplex" : "Half Duplex",
2572 ((ctrl & E1000_CTRL_TFCE) && (ctrl &
2573 E1000_CTRL_RFCE)) ? "RX/TX" : ((ctrl &
2574 E1000_CTRL_RFCE) ? "RX" : ((ctrl &
2575 E1000_CTRL_TFCE) ? "TX" : "None" )));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002577 /* tweak tx_queue_len according to speed/duplex
2578 * and adjust the timeout factor */
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002579 netdev->tx_queue_len = adapter->tx_queue_len;
2580 adapter->tx_timeout_factor = 1;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002581 switch (adapter->link_speed) {
2582 case SPEED_10:
Auke Kokfe7fe282006-04-14 19:04:59 -07002583 txb2b = 0;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002584 netdev->tx_queue_len = 10;
2585 adapter->tx_timeout_factor = 8;
2586 break;
2587 case SPEED_100:
Auke Kokfe7fe282006-04-14 19:04:59 -07002588 txb2b = 0;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002589 netdev->tx_queue_len = 100;
2590 /* maybe add some timeout factor ? */
2591 break;
2592 }
2593
Auke Kokfe7fe282006-04-14 19:04:59 -07002594 if ((adapter->hw.mac_type == e1000_82571 ||
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002595 adapter->hw.mac_type == e1000_82572) &&
Auke Kokfe7fe282006-04-14 19:04:59 -07002596 txb2b == 0) {
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002597 uint32_t tarc0;
2598 tarc0 = E1000_READ_REG(&adapter->hw, TARC0);
Auke Kok90fb5132006-11-01 08:47:30 -08002599 tarc0 &= ~(1 << 21);
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002600 E1000_WRITE_REG(&adapter->hw, TARC0, tarc0);
2601 }
Auke Kok90fb5132006-11-01 08:47:30 -08002602
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002603 /* disable TSO for pcie and 10/100 speeds, to avoid
2604 * some hardware issues */
2605 if (!adapter->tso_force &&
2606 adapter->hw.bus_type == e1000_bus_type_pci_express){
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002607 switch (adapter->link_speed) {
2608 case SPEED_10:
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002609 case SPEED_100:
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002610 DPRINTK(PROBE,INFO,
2611 "10/100 speed: disabling TSO\n");
2612 netdev->features &= ~NETIF_F_TSO;
Auke Kok87ca4e52006-11-01 08:47:36 -08002613 netdev->features &= ~NETIF_F_TSO6;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002614 break;
2615 case SPEED_1000:
2616 netdev->features |= NETIF_F_TSO;
Auke Kok87ca4e52006-11-01 08:47:36 -08002617 netdev->features |= NETIF_F_TSO6;
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002618 break;
2619 default:
2620 /* oops */
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002621 break;
2622 }
2623 }
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08002624
2625 /* enable transmits in the hardware, need to do this
2626 * after setting TARC0 */
2627 tctl = E1000_READ_REG(&adapter->hw, TCTL);
2628 tctl |= E1000_TCTL_EN;
2629 E1000_WRITE_REG(&adapter->hw, TCTL, tctl);
Jeff Kirsher66a2b0a2006-01-12 16:50:53 -08002630
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 netif_carrier_on(netdev);
2632 netif_wake_queue(netdev);
Arjan van de Ven56e13932007-03-06 02:41:48 -08002633 mod_timer(&adapter->phy_info_timer, round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 adapter->smartspeed = 0;
Jeff Garzikbb8e3312006-12-15 11:06:17 -05002635 } else {
2636 /* make sure the receive unit is started */
2637 if (adapter->hw.rx_needs_kicking) {
2638 struct e1000_hw *hw = &adapter->hw;
2639 uint32_t rctl = E1000_READ_REG(hw, RCTL);
2640 E1000_WRITE_REG(hw, RCTL, rctl | E1000_RCTL_EN);
2641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 }
2643 } else {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002644 if (netif_carrier_ok(netdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 adapter->link_speed = 0;
2646 adapter->link_duplex = 0;
2647 DPRINTK(LINK, INFO, "NIC Link is Down\n");
2648 netif_carrier_off(netdev);
2649 netif_stop_queue(netdev);
Arjan van de Ven56e13932007-03-06 02:41:48 -08002650 mod_timer(&adapter->phy_info_timer, round_jiffies(jiffies + 2 * HZ));
Jeff Kirsher87041632006-03-02 18:21:24 -08002651
2652 /* 80003ES2LAN workaround--
2653 * For packet buffer work-around on link down event;
2654 * disable receives in the ISR and
2655 * reset device here in the watchdog
2656 */
Auke Kok8fc897b2006-08-28 14:56:16 -07002657 if (adapter->hw.mac_type == e1000_80003es2lan)
Jeff Kirsher87041632006-03-02 18:21:24 -08002658 /* reset device */
2659 schedule_work(&adapter->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 }
2661
2662 e1000_smartspeed(adapter);
2663 }
2664
2665 e1000_update_stats(adapter);
2666
2667 adapter->hw.tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
2668 adapter->tpt_old = adapter->stats.tpt;
2669 adapter->hw.collision_delta = adapter->stats.colc - adapter->colc_old;
2670 adapter->colc_old = adapter->stats.colc;
2671
2672 adapter->gorcl = adapter->stats.gorcl - adapter->gorcl_old;
2673 adapter->gorcl_old = adapter->stats.gorcl;
2674 adapter->gotcl = adapter->stats.gotcl - adapter->gotcl_old;
2675 adapter->gotcl_old = adapter->stats.gotcl;
2676
2677 e1000_update_adaptive(&adapter->hw);
2678
Jeff Kirsherf56799e2006-01-12 16:50:39 -08002679 if (!netif_carrier_ok(netdev)) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002680 if (E1000_DESC_UNUSED(txdr) + 1 < txdr->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 /* We've lost link, so the controller stops DMA,
2682 * but we've got queued Tx work that's never going
2683 * to get done, so reset controller to flush Tx.
2684 * (Do the reset outside of interrupt context). */
Jeff Kirsher87041632006-03-02 18:21:24 -08002685 adapter->tx_timeout_count++;
2686 schedule_work(&adapter->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 }
2688 }
2689
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 /* Cause software interrupt to ensure rx ring is cleaned */
2691 E1000_WRITE_REG(&adapter->hw, ICS, E1000_ICS_RXDMT0);
2692
Malli Chilakala26483452005-04-28 19:44:46 -07002693 /* Force detection of hung controller every watchdog period */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 adapter->detect_tx_hung = TRUE;
2695
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002696 /* With 82571 controllers, LAA may be overwritten due to controller
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04002697 * reset from the other port. Set the appropriate LAA in RAR[0] */
2698 if (adapter->hw.mac_type == e1000_82571 && adapter->hw.laa_is_present)
2699 e1000_rar_set(&adapter->hw, adapter->hw.mac_addr, 0);
2700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 /* Reset the timer */
Arjan van de Ven56e13932007-03-06 02:41:48 -08002702 mod_timer(&adapter->watchdog_timer, round_jiffies(jiffies + 2 * HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703}
2704
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002705enum latency_range {
2706 lowest_latency = 0,
2707 low_latency = 1,
2708 bulk_latency = 2,
2709 latency_invalid = 255
2710};
2711
2712/**
2713 * e1000_update_itr - update the dynamic ITR value based on statistics
2714 * Stores a new ITR value based on packets and byte
2715 * counts during the last interrupt. The advantage of per interrupt
2716 * computation is faster updates and more accurate ITR for the current
2717 * traffic pattern. Constants in this function were computed
2718 * based on theoretical maximum wire speed and thresholds were set based
2719 * on testing data as well as attempting to minimize response time
2720 * while increasing bulk throughput.
2721 * this functionality is controlled by the InterruptThrottleRate module
2722 * parameter (see e1000_param.c)
2723 * @adapter: pointer to adapter
2724 * @itr_setting: current adapter->itr
2725 * @packets: the number of packets during this measurement interval
2726 * @bytes: the number of bytes during this measurement interval
2727 **/
2728static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
2729 uint16_t itr_setting,
2730 int packets,
2731 int bytes)
2732{
2733 unsigned int retval = itr_setting;
2734 struct e1000_hw *hw = &adapter->hw;
2735
2736 if (unlikely(hw->mac_type < e1000_82540))
2737 goto update_itr_done;
2738
2739 if (packets == 0)
2740 goto update_itr_done;
2741
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002742 switch (itr_setting) {
2743 case lowest_latency:
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002744 /* jumbo frames get bulk treatment*/
2745 if (bytes/packets > 8000)
2746 retval = bulk_latency;
2747 else if ((packets < 5) && (bytes > 512))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002748 retval = low_latency;
2749 break;
2750 case low_latency: /* 50 usec aka 20000 ints/s */
2751 if (bytes > 10000) {
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002752 /* jumbo frames need bulk latency setting */
2753 if (bytes/packets > 8000)
2754 retval = bulk_latency;
2755 else if ((packets < 10) || ((bytes/packets) > 1200))
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002756 retval = bulk_latency;
2757 else if ((packets > 35))
2758 retval = lowest_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002759 } else if (bytes/packets > 2000)
2760 retval = bulk_latency;
2761 else if (packets <= 2 && bytes < 512)
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002762 retval = lowest_latency;
2763 break;
2764 case bulk_latency: /* 250 usec aka 4000 ints/s */
2765 if (bytes > 25000) {
2766 if (packets > 35)
2767 retval = low_latency;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002768 } else if (bytes < 6000) {
2769 retval = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002770 }
2771 break;
2772 }
2773
2774update_itr_done:
2775 return retval;
2776}
2777
2778static void e1000_set_itr(struct e1000_adapter *adapter)
2779{
2780 struct e1000_hw *hw = &adapter->hw;
2781 uint16_t current_itr;
2782 uint32_t new_itr = adapter->itr;
2783
2784 if (unlikely(hw->mac_type < e1000_82540))
2785 return;
2786
2787 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2788 if (unlikely(adapter->link_speed != SPEED_1000)) {
2789 current_itr = 0;
2790 new_itr = 4000;
2791 goto set_itr_now;
2792 }
2793
2794 adapter->tx_itr = e1000_update_itr(adapter,
2795 adapter->tx_itr,
2796 adapter->total_tx_packets,
2797 adapter->total_tx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002798 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2799 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2800 adapter->tx_itr = low_latency;
2801
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002802 adapter->rx_itr = e1000_update_itr(adapter,
2803 adapter->rx_itr,
2804 adapter->total_rx_packets,
2805 adapter->total_rx_bytes);
Jesse Brandeburg2b653262006-12-15 10:30:44 +01002806 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2807 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2808 adapter->rx_itr = low_latency;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002809
2810 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2811
Jesse Brandeburg835bb122006-11-01 08:48:13 -08002812 switch (current_itr) {
2813 /* counts and packets in update_itr are dependent on these numbers */
2814 case lowest_latency:
2815 new_itr = 70000;
2816 break;
2817 case low_latency:
2818 new_itr = 20000; /* aka hwitr = ~200 */
2819 break;
2820 case bulk_latency:
2821 new_itr = 4000;
2822 break;
2823 default:
2824 break;
2825 }
2826
2827set_itr_now:
2828 if (new_itr != adapter->itr) {
2829 /* this attempts to bias the interrupt rate towards Bulk
2830 * by adding intermediate steps when interrupt rate is
2831 * increasing */
2832 new_itr = new_itr > adapter->itr ?
2833 min(adapter->itr + (new_itr >> 2), new_itr) :
2834 new_itr;
2835 adapter->itr = new_itr;
2836 E1000_WRITE_REG(hw, ITR, 1000000000 / (new_itr * 256));
2837 }
2838
2839 return;
2840}
2841
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842#define E1000_TX_FLAGS_CSUM 0x00000001
2843#define E1000_TX_FLAGS_VLAN 0x00000002
2844#define E1000_TX_FLAGS_TSO 0x00000004
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002845#define E1000_TX_FLAGS_IPV4 0x00000008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
2847#define E1000_TX_FLAGS_VLAN_SHIFT 16
2848
Auke Koke619d522006-04-14 19:04:52 -07002849static int
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002850e1000_tso(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring,
2851 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002854 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 unsigned int i;
2856 uint32_t cmd_length = 0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002857 uint16_t ipcse = 0, tucse, mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 uint8_t ipcss, ipcso, tucss, tucso, hdr_len;
2859 int err;
2860
Herbert Xu89114af2006-07-08 13:34:32 -07002861 if (skb_is_gso(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 if (skb_header_cloned(skb)) {
2863 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2864 if (err)
2865 return err;
2866 }
2867
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07002868 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Herbert Xu79671682006-06-22 02:40:14 -07002869 mss = skb_shinfo(skb)->gso_size;
Alexey Dobriyan60828232006-05-23 14:52:21 -07002870 if (skb->protocol == htons(ETH_P_IP)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002871 struct iphdr *iph = ip_hdr(skb);
2872 iph->tot_len = 0;
2873 iph->check = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002874 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
2875 iph->daddr, 0,
2876 IPPROTO_TCP,
2877 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002878 cmd_length = E1000_TXD_CMD_IP;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002879 ipcse = skb_transport_offset(skb) - 1;
Auke Koke15fdd02006-08-16 11:28:45 -07002880 } else if (skb->protocol == htons(ETH_P_IPV6)) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002881 ipv6_hdr(skb)->payload_len = 0;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002882 tcp_hdr(skb)->check =
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07002883 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
2884 &ipv6_hdr(skb)->daddr,
2885 0, IPPROTO_TCP, 0);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002886 ipcse = 0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002887 }
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03002888 ipcss = skb_network_offset(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07002889 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002890 tucss = skb_transport_offset(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002891 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 tucse = 0;
2893
2894 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
Malli Chilakala2d7edb92005-04-28 19:43:52 -07002895 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002897 i = tx_ring->next_to_use;
2898 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002899 buffer_info = &tx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
2901 context_desc->lower_setup.ip_fields.ipcss = ipcss;
2902 context_desc->lower_setup.ip_fields.ipcso = ipcso;
2903 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
2904 context_desc->upper_setup.tcp_fields.tucss = tucss;
2905 context_desc->upper_setup.tcp_fields.tucso = tucso;
2906 context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
2907 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
2908 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
2909 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
2910
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002911 buffer_info->time_stamp = jiffies;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002912 buffer_info->next_to_watch = i;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002913
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002914 if (++i == tx_ring->count) i = 0;
2915 tx_ring->next_to_use = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Jeff Kirsher8241e352006-01-12 16:51:34 -08002917 return TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 }
Jeff Kirsher8241e352006-01-12 16:51:34 -08002919 return FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920}
2921
Auke Koke619d522006-04-14 19:04:52 -07002922static boolean_t
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002923e1000_tx_csum(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring,
2924 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925{
2926 struct e1000_context_desc *context_desc;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002927 struct e1000_buffer *buffer_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 unsigned int i;
2929 uint8_t css;
2930
Patrick McHardy84fa7932006-08-29 16:44:56 -07002931 if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -07002932 css = skb_transport_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002934 i = tx_ring->next_to_use;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002935 buffer_info = &tx_ring->buffer_info[i];
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002936 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
Bruce Allanf6c57ba2007-01-18 09:25:28 -08002938 context_desc->lower_setup.ip_config = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 context_desc->upper_setup.tcp_fields.tucss = css;
Herbert Xu628592c2007-04-23 17:06:40 -07002940 context_desc->upper_setup.tcp_fields.tucso =
2941 css + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 context_desc->upper_setup.tcp_fields.tucse = 0;
2943 context_desc->tcp_seg_setup.data = 0;
2944 context_desc->cmd_and_length = cpu_to_le32(E1000_TXD_CMD_DEXT);
2945
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002946 buffer_info->time_stamp = jiffies;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08002947 buffer_info->next_to_watch = i;
Jeff Kirsher545c67c2006-01-12 16:50:25 -08002948
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002949 if (unlikely(++i == tx_ring->count)) i = 0;
2950 tx_ring->next_to_use = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
2952 return TRUE;
2953 }
2954
2955 return FALSE;
2956}
2957
2958#define E1000_MAX_TXD_PWR 12
2959#define E1000_MAX_DATA_PER_TXD (1<<E1000_MAX_TXD_PWR)
2960
Auke Koke619d522006-04-14 19:04:52 -07002961static int
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04002962e1000_tx_map(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring,
2963 struct sk_buff *skb, unsigned int first, unsigned int max_per_txd,
2964 unsigned int nr_frags, unsigned int mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 struct e1000_buffer *buffer_info;
2967 unsigned int len = skb->len;
2968 unsigned int offset = 0, size, count = 0, i;
2969 unsigned int f;
2970 len -= skb->data_len;
2971
2972 i = tx_ring->next_to_use;
2973
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002974 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 buffer_info = &tx_ring->buffer_info[i];
2976 size = min(len, max_per_txd);
Jeff Kirsherfd803242005-12-13 00:06:22 -05002977 /* Workaround for Controller erratum --
2978 * descriptor for non-tso packet in a linear SKB that follows a
2979 * tso gets written back prematurely before the data is fully
Jeff Kirsher0f15a8f2006-03-02 18:46:29 -08002980 * DMA'd to the controller */
Jeff Kirsherfd803242005-12-13 00:06:22 -05002981 if (!skb->data_len && tx_ring->last_tx_tso &&
Herbert Xu89114af2006-07-08 13:34:32 -07002982 !skb_is_gso(skb)) {
Jeff Kirsherfd803242005-12-13 00:06:22 -05002983 tx_ring->last_tx_tso = 0;
2984 size -= 4;
2985 }
2986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 /* Workaround for premature desc write-backs
2988 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002989 if (unlikely(mss && !nr_frags && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 size -= 4;
Malli Chilakala97338bd2005-04-28 19:41:46 -07002991 /* work-around for errata 10 and it applies
2992 * to all controllers in PCI-X mode
2993 * The fix is to make sure that the first descriptor of a
2994 * packet is smaller than 2048 - 16 - 16 (or 2016) bytes
2995 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002996 if (unlikely((adapter->hw.bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07002997 (size > 2015) && count == 0))
2998 size = 2015;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08002999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 /* Workaround for potential 82544 hang in PCI-X. Avoid
3001 * terminating buffers within evenly-aligned dwords. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003002 if (unlikely(adapter->pcix_82544 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 !((unsigned long)(skb->data + offset + size - 1) & 4) &&
3004 size > 4))
3005 size -= 4;
3006
3007 buffer_info->length = size;
3008 buffer_info->dma =
3009 pci_map_single(adapter->pdev,
3010 skb->data + offset,
3011 size,
3012 PCI_DMA_TODEVICE);
3013 buffer_info->time_stamp = jiffies;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08003014 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
3016 len -= size;
3017 offset += size;
3018 count++;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003019 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 }
3021
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003022 for (f = 0; f < nr_frags; f++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 struct skb_frag_struct *frag;
3024
3025 frag = &skb_shinfo(skb)->frags[f];
3026 len = frag->size;
3027 offset = frag->page_offset;
3028
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003029 while (len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 buffer_info = &tx_ring->buffer_info[i];
3031 size = min(len, max_per_txd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 /* Workaround for premature desc write-backs
3033 * in TSO mode. Append 4-byte sentinel desc */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003034 if (unlikely(mss && f == (nr_frags-1) && size == len && size > 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 size -= 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 /* Workaround for potential 82544 hang in PCI-X.
3037 * Avoid terminating buffers within evenly-aligned
3038 * dwords. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003039 if (unlikely(adapter->pcix_82544 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 !((unsigned long)(frag->page+offset+size-1) & 4) &&
3041 size > 4))
3042 size -= 4;
3043
3044 buffer_info->length = size;
3045 buffer_info->dma =
3046 pci_map_page(adapter->pdev,
3047 frag->page,
3048 offset,
3049 size,
3050 PCI_DMA_TODEVICE);
3051 buffer_info->time_stamp = jiffies;
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08003052 buffer_info->next_to_watch = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
3054 len -= size;
3055 offset += size;
3056 count++;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003057 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 }
3059 }
3060
3061 i = (i == 0) ? tx_ring->count - 1 : i - 1;
3062 tx_ring->buffer_info[i].skb = skb;
3063 tx_ring->buffer_info[first].next_to_watch = i;
3064
3065 return count;
3066}
3067
Auke Koke619d522006-04-14 19:04:52 -07003068static void
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003069e1000_tx_queue(struct e1000_adapter *adapter, struct e1000_tx_ring *tx_ring,
3070 int tx_flags, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 struct e1000_tx_desc *tx_desc = NULL;
3073 struct e1000_buffer *buffer_info;
3074 uint32_t txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
3075 unsigned int i;
3076
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003077 if (likely(tx_flags & E1000_TX_FLAGS_TSO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
3079 E1000_TXD_CMD_TSE;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003080 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
3081
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003082 if (likely(tx_flags & E1000_TX_FLAGS_IPV4))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003083 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 }
3085
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003086 if (likely(tx_flags & E1000_TX_FLAGS_CSUM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
3088 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
3089 }
3090
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003091 if (unlikely(tx_flags & E1000_TX_FLAGS_VLAN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 txd_lower |= E1000_TXD_CMD_VLE;
3093 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
3094 }
3095
3096 i = tx_ring->next_to_use;
3097
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003098 while (count--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 buffer_info = &tx_ring->buffer_info[i];
3100 tx_desc = E1000_TX_DESC(*tx_ring, i);
3101 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
3102 tx_desc->lower.data =
3103 cpu_to_le32(txd_lower | buffer_info->length);
3104 tx_desc->upper.data = cpu_to_le32(txd_upper);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003105 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 }
3107
3108 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
3109
3110 /* Force memory writes to complete before letting h/w
3111 * know there are new descriptors to fetch. (Only
3112 * applicable for weak-ordered memory model archs,
3113 * such as IA-64). */
3114 wmb();
3115
3116 tx_ring->next_to_use = i;
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003117 writel(i, adapter->hw.hw_addr + tx_ring->tdt);
Jesse Brandeburg2ce90472006-11-01 08:47:42 -08003118 /* we need this if more than one processor can write to our tail
3119 * at a time, it syncronizes IO on IA64/Altix systems */
3120 mmiowb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121}
3122
3123/**
3124 * 82547 workaround to avoid controller hang in half-duplex environment.
3125 * The workaround is to avoid queuing a large packet that would span
3126 * the internal Tx FIFO ring boundary by notifying the stack to resend
3127 * the packet at a later time. This gives the Tx FIFO an opportunity to
3128 * flush all packets. When that occurs, we reset the Tx FIFO pointers
3129 * to the beginning of the Tx FIFO.
3130 **/
3131
3132#define E1000_FIFO_HDR 0x10
3133#define E1000_82547_PAD_LEN 0x3E0
3134
Auke Koke619d522006-04-14 19:04:52 -07003135static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136e1000_82547_fifo_workaround(struct e1000_adapter *adapter, struct sk_buff *skb)
3137{
3138 uint32_t fifo_space = adapter->tx_fifo_size - adapter->tx_fifo_head;
3139 uint32_t skb_fifo_len = skb->len + E1000_FIFO_HDR;
3140
Milind Arun Choudhary9099cfb2007-04-27 13:55:29 -07003141 skb_fifo_len = ALIGN(skb_fifo_len, E1000_FIFO_HDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003143 if (adapter->link_duplex != HALF_DUPLEX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 goto no_fifo_stall_required;
3145
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003146 if (atomic_read(&adapter->tx_fifo_stall))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 return 1;
3148
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003149 if (skb_fifo_len >= (E1000_82547_PAD_LEN + fifo_space)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 atomic_set(&adapter->tx_fifo_stall, 1);
3151 return 1;
3152 }
3153
3154no_fifo_stall_required:
3155 adapter->tx_fifo_head += skb_fifo_len;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003156 if (adapter->tx_fifo_head >= adapter->tx_fifo_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 adapter->tx_fifo_head -= adapter->tx_fifo_size;
3158 return 0;
3159}
3160
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003161#define MINIMUM_DHCP_PACKET_SIZE 282
Auke Koke619d522006-04-14 19:04:52 -07003162static int
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003163e1000_transfer_dhcp_info(struct e1000_adapter *adapter, struct sk_buff *skb)
3164{
3165 struct e1000_hw *hw = &adapter->hw;
3166 uint16_t length, offset;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003167 if (vlan_tx_tag_present(skb)) {
3168 if (!((vlan_tx_tag_get(skb) == adapter->hw.mng_cookie.vlan_id) &&
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003169 ( adapter->hw.mng_cookie.status &
3170 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT)) )
3171 return 0;
3172 }
Jeff Kirsher20a44022006-03-02 18:18:08 -08003173 if (skb->len > MINIMUM_DHCP_PACKET_SIZE) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003174 struct ethhdr *eth = (struct ethhdr *) skb->data;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003175 if ((htons(ETH_P_IP) == eth->h_proto)) {
3176 const struct iphdr *ip =
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003177 (struct iphdr *)((uint8_t *)skb->data+14);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003178 if (IPPROTO_UDP == ip->protocol) {
3179 struct udphdr *udp =
3180 (struct udphdr *)((uint8_t *)ip +
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003181 (ip->ihl << 2));
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003182 if (ntohs(udp->dest) == 67) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003183 offset = (uint8_t *)udp + 8 - skb->data;
3184 length = skb->len - offset;
3185
3186 return e1000_mng_write_dhcp_info(hw,
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003187 (uint8_t *)udp + 8,
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003188 length);
3189 }
3190 }
3191 }
3192 }
3193 return 0;
3194}
3195
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003196static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
3197{
3198 struct e1000_adapter *adapter = netdev_priv(netdev);
3199 struct e1000_tx_ring *tx_ring = adapter->tx_ring;
3200
3201 netif_stop_queue(netdev);
3202 /* Herbert's original patch had:
3203 * smp_mb__after_netif_stop_queue();
3204 * but since that doesn't exist yet, just open code it. */
3205 smp_mb();
3206
3207 /* We need to check again in a case another CPU has just
3208 * made room available. */
3209 if (likely(E1000_DESC_UNUSED(tx_ring) < size))
3210 return -EBUSY;
3211
3212 /* A reprieve! */
3213 netif_start_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003214 ++adapter->restart_queue;
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003215 return 0;
3216}
3217
3218static int e1000_maybe_stop_tx(struct net_device *netdev,
3219 struct e1000_tx_ring *tx_ring, int size)
3220{
3221 if (likely(E1000_DESC_UNUSED(tx_ring) >= size))
3222 return 0;
3223 return __e1000_maybe_stop_tx(netdev, size);
3224}
3225
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226#define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
3227static int
3228e1000_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
3229{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003230 struct e1000_adapter *adapter = netdev_priv(netdev);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003231 struct e1000_tx_ring *tx_ring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 unsigned int first, max_per_txd = E1000_MAX_DATA_PER_TXD;
3233 unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
3234 unsigned int tx_flags = 0;
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003235 unsigned int len = skb->len - skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 unsigned long flags;
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003237 unsigned int nr_frags;
3238 unsigned int mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 int count = 0;
Auke Kok76c224b2006-05-23 13:36:06 -07003240 int tso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 unsigned int f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003243 /* This goes back to the question of how to logically map a tx queue
3244 * to a flow. Right now, performance is impacted slightly negatively
3245 * if using multiple tx queues. If the stack breaks away from a
3246 * single qdisc implementation, we can look at this again. */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003247 tx_ring = adapter->tx_ring;
Mallikarjuna R Chilakala24025e4ec2005-10-04 07:03:23 -04003248
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003249 if (unlikely(skb->len <= 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 dev_kfree_skb_any(skb);
3251 return NETDEV_TX_OK;
3252 }
3253
Jesse Brandeburg032fe6e2006-10-24 14:46:04 -07003254 /* 82571 and newer doesn't need the workaround that limited descriptor
3255 * length to 4kB */
3256 if (adapter->hw.mac_type >= e1000_82571)
3257 max_per_txd = 8192;
3258
Herbert Xu79671682006-06-22 02:40:14 -07003259 mss = skb_shinfo(skb)->gso_size;
Auke Kok76c224b2006-05-23 13:36:06 -07003260 /* The controller does a simple calculation to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 * make sure there is enough room in the FIFO before
3262 * initiating the DMA for each buffer. The calc is:
3263 * 4 = ceil(buffer len/mss). To make sure we don't
3264 * overrun the FIFO, adjust the max buffer len if mss
3265 * drops. */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003266 if (mss) {
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003267 uint8_t hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 max_per_txd = min(mss << 2, max_per_txd);
3269 max_txd_pwr = fls(max_per_txd) - 1;
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003270
Auke Kok90fb5132006-11-01 08:47:30 -08003271 /* TSO Workaround for 82571/2/3 Controllers -- if skb->data
3272 * points to just header, pull a few bytes of payload from
3273 * frags into skb->data */
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07003274 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Krishna Kumar6d1e3aa2007-10-05 14:15:16 -07003275 if (skb->data_len && hdr_len == len) {
Jeff Kirsher9f687882006-03-02 18:20:17 -08003276 switch (adapter->hw.mac_type) {
3277 unsigned int pull_size;
Herbert Xu683a2aa2006-12-16 12:04:33 +11003278 case e1000_82544:
3279 /* Make sure we have room to chop off 4 bytes,
3280 * and that the end alignment will work out to
3281 * this hardware's requirements
3282 * NOTE: this is a TSO only workaround
3283 * if end byte alignment not correct move us
3284 * into the next dword */
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07003285 if ((unsigned long)(skb_tail_pointer(skb) - 1) & 4)
Herbert Xu683a2aa2006-12-16 12:04:33 +11003286 break;
3287 /* fall through */
Jeff Kirsher9f687882006-03-02 18:20:17 -08003288 case e1000_82571:
3289 case e1000_82572:
3290 case e1000_82573:
Auke Kokcd94dd02006-06-27 09:08:22 -07003291 case e1000_ich8lan:
Jeff Kirsher9f687882006-03-02 18:20:17 -08003292 pull_size = min((unsigned int)4, skb->data_len);
3293 if (!__pskb_pull_tail(skb, pull_size)) {
Auke Koka5eafce2006-06-27 09:06:49 -07003294 DPRINTK(DRV, ERR,
Jeff Kirsher9f687882006-03-02 18:20:17 -08003295 "__pskb_pull_tail failed.\n");
3296 dev_kfree_skb_any(skb);
Jeff Garzik749dfc702006-03-11 13:35:31 -05003297 return NETDEV_TX_OK;
Jeff Kirsher9f687882006-03-02 18:20:17 -08003298 }
3299 len = skb->len - skb->data_len;
3300 break;
3301 default:
3302 /* do nothing */
3303 break;
Jeff Kirsherd74bbd32006-01-12 16:51:07 -08003304 }
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 }
3307
Jeff Kirsher9a3056d2006-01-12 16:50:23 -08003308 /* reserve a descriptor for the offload context */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003309 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 count++;
Malli Chilakala26483452005-04-28 19:44:46 -07003311 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003312
Jeff Kirsherfd803242005-12-13 00:06:22 -05003313 /* Controller Erratum workaround */
Herbert Xu89114af2006-07-08 13:34:32 -07003314 if (!skb->data_len && tx_ring->last_tx_tso && !skb_is_gso(skb))
Jeff Kirsherfd803242005-12-13 00:06:22 -05003315 count++;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003316
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 count += TXD_USE_COUNT(len, max_txd_pwr);
3318
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003319 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 count++;
3321
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003322 /* work-around for errata 10 and it applies to all controllers
Malli Chilakala97338bd2005-04-28 19:41:46 -07003323 * in PCI-X mode, so add one more descriptor to the count
3324 */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003325 if (unlikely((adapter->hw.bus_type == e1000_bus_type_pcix) &&
Malli Chilakala97338bd2005-04-28 19:41:46 -07003326 (len > 2015)))
3327 count++;
3328
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 nr_frags = skb_shinfo(skb)->nr_frags;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003330 for (f = 0; f < nr_frags; f++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size,
3332 max_txd_pwr);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003333 if (adapter->pcix_82544)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 count += nr_frags;
3335
Jeff Kirsher0f15a8f2006-03-02 18:46:29 -08003336
3337 if (adapter->hw.tx_pkt_filtering &&
3338 (adapter->hw.mac_type == e1000_82573))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003339 e1000_transfer_dhcp_info(adapter, skb);
3340
Mark Huthf50393f2007-03-06 08:57:26 -08003341 if (!spin_trylock_irqsave(&tx_ring->tx_lock, flags))
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003342 /* Collision - tell upper layer to requeue */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003343 return NETDEV_TX_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
3345 /* need: count + 2 desc gap to keep tail from touching
3346 * head, otherwise try next time */
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003347 if (unlikely(e1000_maybe_stop_tx(netdev, tx_ring, count + 2))) {
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003348 spin_unlock_irqrestore(&tx_ring->tx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 return NETDEV_TX_BUSY;
3350 }
3351
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003352 if (unlikely(adapter->hw.mac_type == e1000_82547)) {
3353 if (unlikely(e1000_82547_fifo_workaround(adapter, skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 netif_stop_queue(netdev);
Auke Kok1314bbf2006-09-27 12:54:02 -07003355 mod_timer(&adapter->tx_fifo_stall_timer, jiffies + 1);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003356 spin_unlock_irqrestore(&tx_ring->tx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 return NETDEV_TX_BUSY;
3358 }
3359 }
3360
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003361 if (unlikely(adapter->vlgrp && vlan_tx_tag_present(skb))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 tx_flags |= E1000_TX_FLAGS_VLAN;
3363 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
3364 }
3365
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003366 first = tx_ring->next_to_use;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003367
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003368 tso = e1000_tso(adapter, tx_ring, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 if (tso < 0) {
3370 dev_kfree_skb_any(skb);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003371 spin_unlock_irqrestore(&tx_ring->tx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 return NETDEV_TX_OK;
3373 }
3374
Jeff Kirsherfd803242005-12-13 00:06:22 -05003375 if (likely(tso)) {
3376 tx_ring->last_tx_tso = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 tx_flags |= E1000_TX_FLAGS_TSO;
Jeff Kirsherfd803242005-12-13 00:06:22 -05003378 } else if (likely(e1000_tx_csum(adapter, tx_ring, skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 tx_flags |= E1000_TX_FLAGS_CSUM;
3380
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003381 /* Old method was to assume IPv4 packet by default if TSO was enabled.
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04003382 * 82571 hardware supports TSO capabilities for IPv6 as well...
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003383 * no longer assume, we must. */
Alexey Dobriyan60828232006-05-23 14:52:21 -07003384 if (likely(skb->protocol == htons(ETH_P_IP)))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003385 tx_flags |= E1000_TX_FLAGS_IPV4;
3386
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003387 e1000_tx_queue(adapter, tx_ring, tx_flags,
3388 e1000_tx_map(adapter, tx_ring, skb, first,
3389 max_per_txd, nr_frags, mss));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
3391 netdev->trans_start = jiffies;
3392
3393 /* Make sure there is space in the ring for the next send. */
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003394 e1000_maybe_stop_tx(netdev, tx_ring, MAX_SKB_FRAGS + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003396 spin_unlock_irqrestore(&tx_ring->tx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 return NETDEV_TX_OK;
3398}
3399
3400/**
3401 * e1000_tx_timeout - Respond to a Tx Hang
3402 * @netdev: network interface device structure
3403 **/
3404
3405static void
3406e1000_tx_timeout(struct net_device *netdev)
3407{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003408 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409
3410 /* Do the reset outside of interrupt context */
Jeff Kirsher87041632006-03-02 18:21:24 -08003411 adapter->tx_timeout_count++;
3412 schedule_work(&adapter->reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413}
3414
3415static void
David Howells65f27f32006-11-22 14:55:48 +00003416e1000_reset_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417{
David Howells65f27f32006-11-22 14:55:48 +00003418 struct e1000_adapter *adapter =
3419 container_of(work, struct e1000_adapter, reset_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420
Auke Kok2db10a02006-06-27 09:06:28 -07003421 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422}
3423
3424/**
3425 * e1000_get_stats - Get System Network Statistics
3426 * @netdev: network interface device structure
3427 *
3428 * Returns the address of the device statistics structure.
3429 * The statistics are actually updated from the timer callback.
3430 **/
3431
3432static struct net_device_stats *
3433e1000_get_stats(struct net_device *netdev)
3434{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003435 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
Jeff Kirsher6b7660c2006-01-12 16:50:35 -08003437 /* only return the current stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 return &adapter->net_stats;
3439}
3440
3441/**
3442 * e1000_change_mtu - Change the Maximum Transfer Unit
3443 * @netdev: network interface device structure
3444 * @new_mtu: new value for maximum frame size
3445 *
3446 * Returns 0 on success, negative on failure
3447 **/
3448
3449static int
3450e1000_change_mtu(struct net_device *netdev, int new_mtu)
3451{
Malli Chilakala60490fe2005-06-17 17:41:45 -07003452 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 int max_frame = new_mtu + ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
Jeff Kirsher85b22eb2006-03-02 18:20:29 -08003454 uint16_t eeprom_data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003456 if ((max_frame < MINIMUM_ETHERNET_FRAME_SIZE) ||
3457 (max_frame > MAX_JUMBO_FRAME_SIZE)) {
3458 DPRINTK(PROBE, ERR, "Invalid MTU setting\n");
Mallikarjuna R Chilakala868d5302005-10-04 06:58:59 -04003459 return -EINVAL;
3460 }
3461
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003462 /* Adapter-specific max frame size limits. */
3463 switch (adapter->hw.mac_type) {
Auke Kok9e2feac2006-04-14 19:05:18 -07003464 case e1000_undefined ... e1000_82542_rev2_1:
Auke Kokcd94dd02006-06-27 09:08:22 -07003465 case e1000_ich8lan:
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003466 if (max_frame > MAXIMUM_ETHERNET_FRAME_SIZE) {
3467 DPRINTK(PROBE, ERR, "Jumbo Frames not supported.\n");
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003468 return -EINVAL;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003469 }
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003470 break;
Jeff Kirsher85b22eb2006-03-02 18:20:29 -08003471 case e1000_82573:
Bruce Allan249d71d2006-09-27 12:53:45 -07003472 /* Jumbo Frames not supported if:
3473 * - this is not an 82573L device
3474 * - ASPM is enabled in any way (0x1A bits 3:2) */
Jeff Kirsher85b22eb2006-03-02 18:20:29 -08003475 e1000_read_eeprom(&adapter->hw, EEPROM_INIT_3GIO_3, 1,
3476 &eeprom_data);
Bruce Allan249d71d2006-09-27 12:53:45 -07003477 if ((adapter->hw.device_id != E1000_DEV_ID_82573L) ||
3478 (eeprom_data & EEPROM_WORD1A_ASPM_MASK)) {
Jeff Kirsher85b22eb2006-03-02 18:20:29 -08003479 if (max_frame > MAXIMUM_ETHERNET_FRAME_SIZE) {
3480 DPRINTK(PROBE, ERR,
3481 "Jumbo Frames not supported.\n");
3482 return -EINVAL;
3483 }
3484 break;
3485 }
Bruce Allan249d71d2006-09-27 12:53:45 -07003486 /* ERT will be enabled later to enable wire speed receives */
3487
Jeff Kirsher85b22eb2006-03-02 18:20:29 -08003488 /* fall through to get support */
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003489 case e1000_82571:
3490 case e1000_82572:
Jeff Kirsher87041632006-03-02 18:21:24 -08003491 case e1000_80003es2lan:
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003492#define MAX_STD_JUMBO_FRAME_SIZE 9234
3493 if (max_frame > MAX_STD_JUMBO_FRAME_SIZE) {
3494 DPRINTK(PROBE, ERR, "MTU > 9216 not supported.\n");
3495 return -EINVAL;
3496 }
3497 break;
3498 default:
3499 /* Capable of supporting up to MAX_JUMBO_FRAME_SIZE limit. */
3500 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003501 }
3502
David S. Miller87f50322006-07-31 22:39:40 -07003503 /* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kok9e2feac2006-04-14 19:05:18 -07003504 * means we reserve 2 more, this pushes us to allocate from the next
3505 * larger slab size
3506 * i.e. RXBUFFER_2048 --> size-4096 slab */
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003507
Auke Kok9e2feac2006-04-14 19:05:18 -07003508 if (max_frame <= E1000_RXBUFFER_256)
3509 adapter->rx_buffer_len = E1000_RXBUFFER_256;
3510 else if (max_frame <= E1000_RXBUFFER_512)
3511 adapter->rx_buffer_len = E1000_RXBUFFER_512;
3512 else if (max_frame <= E1000_RXBUFFER_1024)
3513 adapter->rx_buffer_len = E1000_RXBUFFER_1024;
3514 else if (max_frame <= E1000_RXBUFFER_2048)
3515 adapter->rx_buffer_len = E1000_RXBUFFER_2048;
3516 else if (max_frame <= E1000_RXBUFFER_4096)
3517 adapter->rx_buffer_len = E1000_RXBUFFER_4096;
3518 else if (max_frame <= E1000_RXBUFFER_8192)
3519 adapter->rx_buffer_len = E1000_RXBUFFER_8192;
3520 else if (max_frame <= E1000_RXBUFFER_16384)
3521 adapter->rx_buffer_len = E1000_RXBUFFER_16384;
3522
3523 /* adjust allocation if LPE protects us, and we aren't using SBP */
Auke Kok9e2feac2006-04-14 19:05:18 -07003524 if (!adapter->hw.tbi_compatibility_on &&
3525 ((max_frame == MAXIMUM_ETHERNET_FRAME_SIZE) ||
3526 (max_frame == MAXIMUM_ETHERNET_VLAN_SIZE)))
3527 adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Jeff Kirsher997f5cb2006-01-12 16:50:55 -08003528
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003529 netdev->mtu = new_mtu;
Bruce Allan83cd8272006-12-15 10:36:35 +01003530 adapter->hw.max_frame_size = max_frame;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003531
Auke Kok2db10a02006-06-27 09:06:28 -07003532 if (netif_running(netdev))
3533 e1000_reinit_locked(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 return 0;
3536}
3537
3538/**
3539 * e1000_update_stats - Update the board statistics counters
3540 * @adapter: board private structure
3541 **/
3542
3543void
3544e1000_update_stats(struct e1000_adapter *adapter)
3545{
3546 struct e1000_hw *hw = &adapter->hw;
Linas Vepstas282f33c2006-06-08 22:19:44 -07003547 struct pci_dev *pdev = adapter->pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 unsigned long flags;
3549 uint16_t phy_tmp;
3550
3551#define PHY_IDLE_ERROR_COUNT_MASK 0x00FF
3552
Linas Vepstas282f33c2006-06-08 22:19:44 -07003553 /*
3554 * Prevent stats update while adapter is being reset, or if the pci
3555 * connection is down.
3556 */
Auke Kok90267292006-06-08 09:30:24 -07003557 if (adapter->link_speed == 0)
3558 return;
Linas Vepstas81b19552006-12-12 18:29:15 -06003559 if (pci_channel_offline(pdev))
Linas Vepstas282f33c2006-06-08 22:19:44 -07003560 return;
Auke Kok90267292006-06-08 09:30:24 -07003561
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 spin_lock_irqsave(&adapter->stats_lock, flags);
3563
Masatake YAMATO828d0552007-10-20 03:06:37 +02003564 /* these counters are modified from e1000_tbi_adjust_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 * called from the interrupt context, so they must only
3566 * be written while holding adapter->stats_lock
3567 */
3568
3569 adapter->stats.crcerrs += E1000_READ_REG(hw, CRCERRS);
3570 adapter->stats.gprc += E1000_READ_REG(hw, GPRC);
3571 adapter->stats.gorcl += E1000_READ_REG(hw, GORCL);
3572 adapter->stats.gorch += E1000_READ_REG(hw, GORCH);
3573 adapter->stats.bprc += E1000_READ_REG(hw, BPRC);
3574 adapter->stats.mprc += E1000_READ_REG(hw, MPRC);
3575 adapter->stats.roc += E1000_READ_REG(hw, ROC);
Auke Kokcd94dd02006-06-27 09:08:22 -07003576
3577 if (adapter->hw.mac_type != e1000_ich8lan) {
Auke Kok90fb5132006-11-01 08:47:30 -08003578 adapter->stats.prc64 += E1000_READ_REG(hw, PRC64);
3579 adapter->stats.prc127 += E1000_READ_REG(hw, PRC127);
3580 adapter->stats.prc255 += E1000_READ_REG(hw, PRC255);
3581 adapter->stats.prc511 += E1000_READ_REG(hw, PRC511);
3582 adapter->stats.prc1023 += E1000_READ_REG(hw, PRC1023);
3583 adapter->stats.prc1522 += E1000_READ_REG(hw, PRC1522);
Auke Kokcd94dd02006-06-27 09:08:22 -07003584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
3586 adapter->stats.symerrs += E1000_READ_REG(hw, SYMERRS);
3587 adapter->stats.mpc += E1000_READ_REG(hw, MPC);
3588 adapter->stats.scc += E1000_READ_REG(hw, SCC);
3589 adapter->stats.ecol += E1000_READ_REG(hw, ECOL);
3590 adapter->stats.mcc += E1000_READ_REG(hw, MCC);
3591 adapter->stats.latecol += E1000_READ_REG(hw, LATECOL);
3592 adapter->stats.dc += E1000_READ_REG(hw, DC);
3593 adapter->stats.sec += E1000_READ_REG(hw, SEC);
3594 adapter->stats.rlec += E1000_READ_REG(hw, RLEC);
3595 adapter->stats.xonrxc += E1000_READ_REG(hw, XONRXC);
3596 adapter->stats.xontxc += E1000_READ_REG(hw, XONTXC);
3597 adapter->stats.xoffrxc += E1000_READ_REG(hw, XOFFRXC);
3598 adapter->stats.xofftxc += E1000_READ_REG(hw, XOFFTXC);
3599 adapter->stats.fcruc += E1000_READ_REG(hw, FCRUC);
3600 adapter->stats.gptc += E1000_READ_REG(hw, GPTC);
3601 adapter->stats.gotcl += E1000_READ_REG(hw, GOTCL);
3602 adapter->stats.gotch += E1000_READ_REG(hw, GOTCH);
3603 adapter->stats.rnbc += E1000_READ_REG(hw, RNBC);
3604 adapter->stats.ruc += E1000_READ_REG(hw, RUC);
3605 adapter->stats.rfc += E1000_READ_REG(hw, RFC);
3606 adapter->stats.rjc += E1000_READ_REG(hw, RJC);
3607 adapter->stats.torl += E1000_READ_REG(hw, TORL);
3608 adapter->stats.torh += E1000_READ_REG(hw, TORH);
3609 adapter->stats.totl += E1000_READ_REG(hw, TOTL);
3610 adapter->stats.toth += E1000_READ_REG(hw, TOTH);
3611 adapter->stats.tpr += E1000_READ_REG(hw, TPR);
Auke Kokcd94dd02006-06-27 09:08:22 -07003612
3613 if (adapter->hw.mac_type != e1000_ich8lan) {
Auke Kok90fb5132006-11-01 08:47:30 -08003614 adapter->stats.ptc64 += E1000_READ_REG(hw, PTC64);
3615 adapter->stats.ptc127 += E1000_READ_REG(hw, PTC127);
3616 adapter->stats.ptc255 += E1000_READ_REG(hw, PTC255);
3617 adapter->stats.ptc511 += E1000_READ_REG(hw, PTC511);
3618 adapter->stats.ptc1023 += E1000_READ_REG(hw, PTC1023);
3619 adapter->stats.ptc1522 += E1000_READ_REG(hw, PTC1522);
Auke Kokcd94dd02006-06-27 09:08:22 -07003620 }
3621
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 adapter->stats.mptc += E1000_READ_REG(hw, MPTC);
3623 adapter->stats.bptc += E1000_READ_REG(hw, BPTC);
3624
3625 /* used for adaptive IFS */
3626
3627 hw->tx_packet_delta = E1000_READ_REG(hw, TPT);
3628 adapter->stats.tpt += hw->tx_packet_delta;
3629 hw->collision_delta = E1000_READ_REG(hw, COLC);
3630 adapter->stats.colc += hw->collision_delta;
3631
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003632 if (hw->mac_type >= e1000_82543) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 adapter->stats.algnerrc += E1000_READ_REG(hw, ALGNERRC);
3634 adapter->stats.rxerrc += E1000_READ_REG(hw, RXERRC);
3635 adapter->stats.tncrs += E1000_READ_REG(hw, TNCRS);
3636 adapter->stats.cexterr += E1000_READ_REG(hw, CEXTERR);
3637 adapter->stats.tsctc += E1000_READ_REG(hw, TSCTC);
3638 adapter->stats.tsctfc += E1000_READ_REG(hw, TSCTFC);
3639 }
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003640 if (hw->mac_type > e1000_82547_rev_2) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003641 adapter->stats.iac += E1000_READ_REG(hw, IAC);
3642 adapter->stats.icrxoc += E1000_READ_REG(hw, ICRXOC);
Auke Kokcd94dd02006-06-27 09:08:22 -07003643
3644 if (adapter->hw.mac_type != e1000_ich8lan) {
Auke Kok90fb5132006-11-01 08:47:30 -08003645 adapter->stats.icrxptc += E1000_READ_REG(hw, ICRXPTC);
3646 adapter->stats.icrxatc += E1000_READ_REG(hw, ICRXATC);
3647 adapter->stats.ictxptc += E1000_READ_REG(hw, ICTXPTC);
3648 adapter->stats.ictxatc += E1000_READ_REG(hw, ICTXATC);
3649 adapter->stats.ictxqec += E1000_READ_REG(hw, ICTXQEC);
3650 adapter->stats.ictxqmtc += E1000_READ_REG(hw, ICTXQMTC);
3651 adapter->stats.icrxdmtc += E1000_READ_REG(hw, ICRXDMTC);
Auke Kokcd94dd02006-06-27 09:08:22 -07003652 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07003653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
3655 /* Fill out the OS statistics structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 adapter->net_stats.multicast = adapter->stats.mprc;
3657 adapter->net_stats.collisions = adapter->stats.colc;
3658
3659 /* Rx Errors */
3660
Jeff Kirsher87041632006-03-02 18:21:24 -08003661 /* RLEC on some newer hardware can be incorrect so build
3662 * our own version based on RUC and ROC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 adapter->net_stats.rx_errors = adapter->stats.rxerrc +
3664 adapter->stats.crcerrs + adapter->stats.algnerrc +
Jeff Kirsher87041632006-03-02 18:21:24 -08003665 adapter->stats.ruc + adapter->stats.roc +
3666 adapter->stats.cexterr;
Mitch Williams49559852006-09-27 12:53:37 -07003667 adapter->stats.rlerrc = adapter->stats.ruc + adapter->stats.roc;
3668 adapter->net_stats.rx_length_errors = adapter->stats.rlerrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 adapter->net_stats.rx_crc_errors = adapter->stats.crcerrs;
3670 adapter->net_stats.rx_frame_errors = adapter->stats.algnerrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 adapter->net_stats.rx_missed_errors = adapter->stats.mpc;
3672
3673 /* Tx Errors */
Mitch Williams49559852006-09-27 12:53:37 -07003674 adapter->stats.txerrc = adapter->stats.ecol + adapter->stats.latecol;
3675 adapter->net_stats.tx_errors = adapter->stats.txerrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 adapter->net_stats.tx_aborted_errors = adapter->stats.ecol;
3677 adapter->net_stats.tx_window_errors = adapter->stats.latecol;
3678 adapter->net_stats.tx_carrier_errors = adapter->stats.tncrs;
Jeff Garzik167fb282006-12-15 10:41:15 -05003679 if (adapter->hw.bad_tx_carr_stats_fd &&
3680 adapter->link_duplex == FULL_DUPLEX) {
3681 adapter->net_stats.tx_carrier_errors = 0;
3682 adapter->stats.tncrs = 0;
3683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684
3685 /* Tx Dropped needs to be maintained elsewhere */
3686
3687 /* Phy Stats */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003688 if (hw->media_type == e1000_media_type_copper) {
3689 if ((adapter->link_speed == SPEED_1000) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 (!e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_tmp))) {
3691 phy_tmp &= PHY_IDLE_ERROR_COUNT_MASK;
3692 adapter->phy_stats.idle_errors += phy_tmp;
3693 }
3694
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003695 if ((hw->mac_type <= e1000_82546) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 (hw->phy_type == e1000_phy_m88) &&
3697 !e1000_read_phy_reg(hw, M88E1000_RX_ERR_CNTR, &phy_tmp))
3698 adapter->phy_stats.receive_errors += phy_tmp;
3699 }
3700
Jeff Garzik15e376b2006-12-15 11:16:33 -05003701 /* Management Stats */
3702 if (adapter->hw.has_smbus) {
3703 adapter->stats.mgptc += E1000_READ_REG(hw, MGTPTC);
3704 adapter->stats.mgprc += E1000_READ_REG(hw, MGTPRC);
3705 adapter->stats.mgpdc += E1000_READ_REG(hw, MGTPDC);
3706 }
3707
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 spin_unlock_irqrestore(&adapter->stats_lock, flags);
3709}
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003710
3711/**
3712 * e1000_intr_msi - Interrupt Handler
3713 * @irq: interrupt number
3714 * @data: pointer to a network interface device structure
3715 **/
3716
Jesse Brandeburgb5fc8f02007-01-18 09:25:21 -08003717static irqreturn_t
3718e1000_intr_msi(int irq, void *data)
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003719{
3720 struct net_device *netdev = data;
3721 struct e1000_adapter *adapter = netdev_priv(netdev);
3722 struct e1000_hw *hw = &adapter->hw;
3723#ifndef CONFIG_E1000_NAPI
3724 int i;
3725#endif
Jesse Brandeburgb5fc8f02007-01-18 09:25:21 -08003726 uint32_t icr = E1000_READ_REG(hw, ICR);
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003727
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003728#ifdef CONFIG_E1000_NAPI
Jesse Brandeburgb5fc8f02007-01-18 09:25:21 -08003729 /* read ICR disables interrupts using IAM, so keep up with our
3730 * enable/disable accounting */
3731 atomic_inc(&adapter->irq_sem);
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003732#endif
Jesse Brandeburgb5fc8f02007-01-18 09:25:21 -08003733 if (icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC)) {
3734 hw->get_link_status = 1;
3735 /* 80003ES2LAN workaround-- For packet buffer work-around on
3736 * link down event; disable receives here in the ISR and reset
3737 * adapter in watchdog */
3738 if (netif_carrier_ok(netdev) &&
3739 (adapter->hw.mac_type == e1000_80003es2lan)) {
3740 /* disable receives */
3741 uint32_t rctl = E1000_READ_REG(hw, RCTL);
3742 E1000_WRITE_REG(hw, RCTL, rctl & ~E1000_RCTL_EN);
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003743 }
Jesse Brandeburgb5fc8f02007-01-18 09:25:21 -08003744 /* guard against interrupt when we're going down */
3745 if (!test_bit(__E1000_DOWN, &adapter->flags))
3746 mod_timer(&adapter->watchdog_timer, jiffies + 1);
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003747 }
3748
3749#ifdef CONFIG_E1000_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003750 if (likely(netif_rx_schedule_prep(netdev, &adapter->napi))) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003751 adapter->total_tx_bytes = 0;
3752 adapter->total_tx_packets = 0;
3753 adapter->total_rx_bytes = 0;
3754 adapter->total_rx_packets = 0;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003755 __netif_rx_schedule(netdev, &adapter->napi);
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003756 } else
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003757 e1000_irq_enable(adapter);
3758#else
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003759 adapter->total_tx_bytes = 0;
3760 adapter->total_rx_bytes = 0;
3761 adapter->total_tx_packets = 0;
3762 adapter->total_rx_packets = 0;
3763
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003764 for (i = 0; i < E1000_MAX_INTR; i++)
3765 if (unlikely(!adapter->clean_rx(adapter, adapter->rx_ring) &
Linus Torvalds46fcc862007-04-19 18:21:01 -07003766 !e1000_clean_tx_irq(adapter, adapter->tx_ring)))
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003767 break;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003768
3769 if (likely(adapter->itr_setting & 3))
3770 e1000_set_itr(adapter);
Jesse Brandeburg9ac98282006-11-01 08:48:10 -08003771#endif
3772
3773 return IRQ_HANDLED;
3774}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775
3776/**
3777 * e1000_intr - Interrupt Handler
3778 * @irq: interrupt number
3779 * @data: pointer to a network interface device structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 **/
3781
3782static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01003783e1000_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784{
3785 struct net_device *netdev = data;
Malli Chilakala60490fe2005-06-17 17:41:45 -07003786 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 struct e1000_hw *hw = &adapter->hw;
Jeff Kirsher87041632006-03-02 18:21:24 -08003788 uint32_t rctl, icr = E1000_READ_REG(hw, ICR);
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08003789#ifndef CONFIG_E1000_NAPI
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003790 int i;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003791#endif
3792 if (unlikely(!icr))
3793 return IRQ_NONE; /* Not our interrupt */
3794
3795#ifdef CONFIG_E1000_NAPI
3796 /* IMS will not auto-mask if INT_ASSERTED is not set, and if it is
3797 * not set, then the adapter didn't send an interrupt */
3798 if (unlikely(hw->mac_type >= e1000_82571 &&
3799 !(icr & E1000_ICR_INT_ASSERTED)))
3800 return IRQ_NONE;
3801
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08003802 /* Interrupt Auto-Mask...upon reading ICR,
3803 * interrupts are masked. No need for the
3804 * IMC write, but it does mean we should
3805 * account for it ASAP. */
3806 if (likely(hw->mac_type >= e1000_82571))
3807 atomic_inc(&adapter->irq_sem);
Jeff Garzikbe2b28e2005-10-04 07:13:43 -04003808#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003810 if (unlikely(icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 hw->get_link_status = 1;
Jeff Kirsher87041632006-03-02 18:21:24 -08003812 /* 80003ES2LAN workaround--
3813 * For packet buffer work-around on link down event;
3814 * disable receives here in the ISR and
3815 * reset adapter in watchdog
3816 */
3817 if (netif_carrier_ok(netdev) &&
3818 (adapter->hw.mac_type == e1000_80003es2lan)) {
3819 /* disable receives */
3820 rctl = E1000_READ_REG(hw, RCTL);
3821 E1000_WRITE_REG(hw, RCTL, rctl & ~E1000_RCTL_EN);
3822 }
Auke Kok1314bbf2006-09-27 12:54:02 -07003823 /* guard against interrupt when we're going down */
3824 if (!test_bit(__E1000_DOWN, &adapter->flags))
3825 mod_timer(&adapter->watchdog_timer, jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 }
3827
3828#ifdef CONFIG_E1000_NAPI
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08003829 if (unlikely(hw->mac_type < e1000_82571)) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003830 /* disable interrupts, without the synchronize_irq bit */
Jeff Kirsher1e613fd2006-01-12 16:51:16 -08003831 atomic_inc(&adapter->irq_sem);
3832 E1000_WRITE_REG(hw, IMC, ~0);
3833 E1000_WRITE_FLUSH(hw);
3834 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003835 if (likely(netif_rx_schedule_prep(netdev, &adapter->napi))) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003836 adapter->total_tx_bytes = 0;
3837 adapter->total_tx_packets = 0;
3838 adapter->total_rx_bytes = 0;
3839 adapter->total_rx_packets = 0;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003840 __netif_rx_schedule(netdev, &adapter->napi);
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003841 } else
Auke Kok90fb5132006-11-01 08:47:30 -08003842 /* this really should not happen! if it does it is basically a
3843 * bug, but not a hard error, so enable ints and continue */
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003844 e1000_irq_enable(adapter);
Jeff Kirsherc1605eb2006-03-02 18:16:38 -08003845#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 /* Writing IMC and IMS is needed for 82547.
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003847 * Due to Hub Link bus being occupied, an interrupt
3848 * de-assertion message is not able to be sent.
3849 * When an interrupt assertion message is generated later,
3850 * two messages are re-ordered and sent out.
3851 * That causes APIC to think 82547 is in de-assertion
3852 * state, while 82547 is in assertion state, resulting
3853 * in dead lock. Writing IMC forces 82547 into
3854 * de-assertion state.
3855 */
3856 if (hw->mac_type == e1000_82547 || hw->mac_type == e1000_82547_rev_2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 atomic_inc(&adapter->irq_sem);
Malli Chilakala26483452005-04-28 19:44:46 -07003858 E1000_WRITE_REG(hw, IMC, ~0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 }
3860
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003861 adapter->total_tx_bytes = 0;
3862 adapter->total_rx_bytes = 0;
3863 adapter->total_tx_packets = 0;
3864 adapter->total_rx_packets = 0;
3865
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003866 for (i = 0; i < E1000_MAX_INTR; i++)
3867 if (unlikely(!adapter->clean_rx(adapter, adapter->rx_ring) &
Linus Torvalds46fcc862007-04-19 18:21:01 -07003868 !e1000_clean_tx_irq(adapter, adapter->tx_ring)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 break;
3870
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003871 if (likely(adapter->itr_setting & 3))
3872 e1000_set_itr(adapter);
3873
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003874 if (hw->mac_type == e1000_82547 || hw->mac_type == e1000_82547_rev_2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 e1000_irq_enable(adapter);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003876
Jeff Kirsherc1605eb2006-03-02 18:16:38 -08003877#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 return IRQ_HANDLED;
3879}
3880
3881#ifdef CONFIG_E1000_NAPI
3882/**
3883 * e1000_clean - NAPI Rx polling callback
3884 * @adapter: board private structure
3885 **/
3886
3887static int
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003888e1000_clean(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003890 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
3891 struct net_device *poll_dev = adapter->netdev;
David S. Millerd2c7ddd2008-01-15 22:43:24 -08003892 int tx_cleaned = 0, work_done = 0;
Malli Chilakala26483452005-04-28 19:44:46 -07003893
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003894 /* Must NOT use netdev_priv macro here. */
3895 adapter = poll_dev->priv;
3896
Auke Kokd3d9e482006-07-14 16:14:23 -07003897 /* e1000_clean is called per-cpu. This lock protects
3898 * tx_ring[0] from being cleaned by multiple cpus
3899 * simultaneously. A failure obtaining the lock means
3900 * tx_ring[0] is currently being cleaned anyway. */
3901 if (spin_trylock(&adapter->tx_queue_lock)) {
David S. Millerd2c7ddd2008-01-15 22:43:24 -08003902 tx_cleaned = e1000_clean_tx_irq(adapter,
3903 &adapter->tx_ring[0]);
Auke Kokd3d9e482006-07-14 16:14:23 -07003904 spin_unlock(&adapter->tx_queue_lock);
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003905 }
3906
Auke Kokd3d9e482006-07-14 16:14:23 -07003907 adapter->clean_rx(adapter, &adapter->rx_ring[0],
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003908 &work_done, budget);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003909
David S. Millerd2c7ddd2008-01-15 22:43:24 -08003910 if (tx_cleaned)
3911 work_done = budget;
3912
David S. Miller53e52c72008-01-07 21:06:12 -08003913 /* If budget not fully consumed, exit the polling mode */
3914 if (work_done < budget) {
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003915 if (likely(adapter->itr_setting & 3))
3916 e1000_set_itr(adapter);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003917 netif_rx_complete(poll_dev, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 e1000_irq_enable(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 }
3920
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003921 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922}
3923
3924#endif
3925/**
3926 * e1000_clean_tx_irq - Reclaim resources after transmit completes
3927 * @adapter: board private structure
3928 **/
3929
3930static boolean_t
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003931e1000_clean_tx_irq(struct e1000_adapter *adapter,
3932 struct e1000_tx_ring *tx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 struct net_device *netdev = adapter->netdev;
3935 struct e1000_tx_desc *tx_desc, *eop_desc;
3936 struct e1000_buffer *buffer_info;
3937 unsigned int i, eop;
Jeff Kirsher2a1af5d2006-03-02 18:20:43 -08003938#ifdef CONFIG_E1000_NAPI
3939 unsigned int count = 0;
3940#endif
Linus Torvalds46fcc862007-04-19 18:21:01 -07003941 boolean_t cleaned = FALSE;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003942 unsigned int total_tx_bytes=0, total_tx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
3944 i = tx_ring->next_to_clean;
3945 eop = tx_ring->buffer_info[i].next_to_watch;
3946 eop_desc = E1000_TX_DESC(*tx_ring, eop);
3947
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003948 while (eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003949 for (cleaned = FALSE; !cleaned; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 tx_desc = E1000_TX_DESC(*tx_ring, i);
3951 buffer_info = &tx_ring->buffer_info[i];
3952 cleaned = (i == eop);
3953
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003954 if (cleaned) {
Jesse Brandeburg2b653262006-12-15 10:30:44 +01003955 struct sk_buff *skb = buffer_info->skb;
Jesse Brandeburg7753b172007-01-18 09:25:31 -08003956 unsigned int segs, bytecount;
3957 segs = skb_shinfo(skb)->gso_segs ?: 1;
3958 /* multiply data chunks by size of headers */
3959 bytecount = ((segs - 1) * skb_headlen(skb)) +
3960 skb->len;
Jesse Brandeburg2b653262006-12-15 10:30:44 +01003961 total_tx_packets += segs;
Jesse Brandeburg7753b172007-01-18 09:25:31 -08003962 total_tx_bytes += bytecount;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08003963 }
Jeff Kirsherfd803242005-12-13 00:06:22 -05003964 e1000_unmap_and_free_tx_resource(adapter, buffer_info);
Jesse Brandeburga9ebadd2006-11-01 08:47:53 -08003965 tx_desc->upper.data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966
Jesse Brandeburg96838a42006-01-18 13:01:39 -08003967 if (unlikely(++i == tx_ring->count)) i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 }
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003969
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 eop = tx_ring->buffer_info[i].next_to_watch;
3971 eop_desc = E1000_TX_DESC(*tx_ring, eop);
Jeff Kirsher2a1af5d2006-03-02 18:20:43 -08003972#ifdef CONFIG_E1000_NAPI
3973#define E1000_TX_WEIGHT 64
3974 /* weight of a sort for tx, to avoid endless transmit cleanup */
Linus Torvalds46fcc862007-04-19 18:21:01 -07003975 if (count++ == E1000_TX_WEIGHT) break;
Jeff Kirsher2a1af5d2006-03-02 18:20:43 -08003976#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 }
3978
3979 tx_ring->next_to_clean = i;
3980
Auke Kok77b2aad2006-04-14 19:05:25 -07003981#define TX_WAKE_THRESHOLD 32
Jesse Brandeburg65c79732006-09-27 12:53:48 -07003982 if (unlikely(cleaned && netif_carrier_ok(netdev) &&
3983 E1000_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD)) {
3984 /* Make sure that anybody stopping the queue after this
3985 * sees the new next_to_clean.
3986 */
3987 smp_mb();
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003988 if (netif_queue_stopped(netdev)) {
Auke Kok77b2aad2006-04-14 19:05:25 -07003989 netif_wake_queue(netdev);
Jesse Brandeburgfcfb1222006-11-01 08:47:59 -08003990 ++adapter->restart_queue;
3991 }
Auke Kok77b2aad2006-04-14 19:05:25 -07003992 }
Malli Chilakala26483452005-04-28 19:44:46 -07003993
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04003994 if (adapter->detect_tx_hung) {
Malli Chilakala26483452005-04-28 19:44:46 -07003995 /* Detect a transmit hang in hardware, this serializes the
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 * check with the clearing of time_stamp and movement of i */
3997 adapter->detect_tx_hung = FALSE;
Jeff Kirsher392137f2006-01-12 16:50:57 -08003998 if (tx_ring->buffer_info[eop].dma &&
3999 time_after(jiffies, tx_ring->buffer_info[eop].time_stamp +
Jeff Kirsher7e6c9862006-03-02 18:19:30 -08004000 (adapter->tx_timeout_factor * HZ))
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07004001 && !(E1000_READ_REG(&adapter->hw, STATUS) &
Jeff Kirsher392137f2006-01-12 16:50:57 -08004002 E1000_STATUS_TXOFF)) {
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07004003
4004 /* detected Tx unit hang */
Malli Chilakalac6963ef2005-06-17 17:42:07 -07004005 DPRINTK(DRV, ERR, "Detected Tx Unit Hang\n"
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08004006 " Tx Queue <%lu>\n"
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07004007 " TDH <%x>\n"
4008 " TDT <%x>\n"
4009 " next_to_use <%x>\n"
4010 " next_to_clean <%x>\n"
4011 "buffer_info[next_to_clean]\n"
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07004012 " time_stamp <%lx>\n"
4013 " next_to_watch <%x>\n"
4014 " jiffies <%lx>\n"
4015 " next_to_watch.status <%x>\n",
Jeff Kirsher7bfa4812006-01-12 16:50:41 -08004016 (unsigned long)((tx_ring - adapter->tx_ring) /
4017 sizeof(struct e1000_tx_ring)),
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04004018 readl(adapter->hw.hw_addr + tx_ring->tdh),
4019 readl(adapter->hw.hw_addr + tx_ring->tdt),
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07004020 tx_ring->next_to_use,
Jeff Kirsher392137f2006-01-12 16:50:57 -08004021 tx_ring->next_to_clean,
4022 tx_ring->buffer_info[eop].time_stamp,
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07004023 eop,
4024 jiffies,
4025 eop_desc->upper.fields.status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 netif_stop_queue(netdev);
Malli Chilakala70b8f1e2005-04-28 19:40:40 -07004027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 }
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004029 adapter->total_tx_bytes += total_tx_bytes;
4030 adapter->total_tx_packets += total_tx_packets;
Auke Kokef90e4e2007-11-13 20:49:15 -08004031 adapter->net_stats.tx_bytes += total_tx_bytes;
4032 adapter->net_stats.tx_packets += total_tx_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 return cleaned;
4034}
4035
4036/**
4037 * e1000_rx_checksum - Receive Checksum Offload for 82543
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004038 * @adapter: board private structure
4039 * @status_err: receive descriptor status and error fields
4040 * @csum: receive descriptor csum field
4041 * @sk_buff: socket buffer with received data
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 **/
4043
Auke Koke619d522006-04-14 19:04:52 -07004044static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045e1000_rx_checksum(struct e1000_adapter *adapter,
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004046 uint32_t status_err, uint32_t csum,
4047 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048{
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004049 uint16_t status = (uint16_t)status_err;
4050 uint8_t errors = (uint8_t)(status_err >> 24);
4051 skb->ip_summed = CHECKSUM_NONE;
4052
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 /* 82543 or newer only */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004054 if (unlikely(adapter->hw.mac_type < e1000_82543)) return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 /* Ignore Checksum bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004056 if (unlikely(status & E1000_RXD_STAT_IXSM)) return;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004057 /* TCP/UDP checksum error bit is set */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004058 if (unlikely(errors & E1000_RXD_ERR_TCPE)) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004059 /* let the stack verify checksum errors */
4060 adapter->hw_csum_err++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 return;
4062 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004063 /* TCP/UDP Checksum has not been calculated */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004064 if (adapter->hw.mac_type <= e1000_82547_rev_2) {
4065 if (!(status & E1000_RXD_STAT_TCPCS))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004066 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 } else {
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004068 if (!(status & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004069 return;
4070 }
4071 /* It must be a TCP or UDP packet with a valid checksum */
4072 if (likely(status & E1000_RXD_STAT_TCPCS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 /* TCP checksum is good */
4074 skb->ip_summed = CHECKSUM_UNNECESSARY;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004075 } else if (adapter->hw.mac_type > e1000_82547_rev_2) {
4076 /* IP fragment with UDP payload */
4077 /* Hardware complements the payload checksum, so we undo it
4078 * and then put the value in host order for further stack use.
4079 */
4080 csum = ntohl(csum ^ 0xFFFF);
4081 skb->csum = csum;
Patrick McHardy84fa7932006-08-29 16:44:56 -07004082 skb->ip_summed = CHECKSUM_COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004084 adapter->hw_csum_good++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085}
4086
4087/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004088 * e1000_clean_rx_irq - Send received data up the network stack; legacy
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 * @adapter: board private structure
4090 **/
4091
4092static boolean_t
4093#ifdef CONFIG_E1000_NAPI
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04004094e1000_clean_rx_irq(struct e1000_adapter *adapter,
4095 struct e1000_rx_ring *rx_ring,
4096 int *work_done, int work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097#else
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04004098e1000_clean_rx_irq(struct e1000_adapter *adapter,
4099 struct e1000_rx_ring *rx_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100#endif
4101{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 struct net_device *netdev = adapter->netdev;
4103 struct pci_dev *pdev = adapter->pdev;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004104 struct e1000_rx_desc *rx_desc, *next_rxd;
4105 struct e1000_buffer *buffer_info, *next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 unsigned long flags;
4107 uint32_t length;
4108 uint8_t last_byte;
4109 unsigned int i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004110 int cleaned_count = 0;
Jeff Kirshera1415ee2006-02-28 20:24:07 -08004111 boolean_t cleaned = FALSE;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004112 unsigned int total_rx_bytes=0, total_rx_packets=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
4114 i = rx_ring->next_to_clean;
4115 rx_desc = E1000_RX_DESC(*rx_ring, i);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004116 buffer_info = &rx_ring->buffer_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004118 while (rx_desc->status & E1000_RXD_STAT_DD) {
Auke Kok24f476e2006-06-08 09:28:47 -07004119 struct sk_buff *skb;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004120 u8 status;
Auke Kok90fb5132006-11-01 08:47:30 -08004121
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122#ifdef CONFIG_E1000_NAPI
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004123 if (*work_done >= work_to_do)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 break;
4125 (*work_done)++;
4126#endif
Jeff Kirshera292ca62006-01-12 16:51:30 -08004127 status = rx_desc->status;
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004128 skb = buffer_info->skb;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004129 buffer_info->skb = NULL;
4130
Jeff Kirsher30320be2006-03-02 18:21:57 -08004131 prefetch(skb->data - NET_IP_ALIGN);
4132
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004133 if (++i == rx_ring->count) i = 0;
4134 next_rxd = E1000_RX_DESC(*rx_ring, i);
Jeff Kirsher30320be2006-03-02 18:21:57 -08004135 prefetch(next_rxd);
4136
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004137 next_buffer = &rx_ring->buffer_info[i];
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004138
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004139 cleaned = TRUE;
4140 cleaned_count++;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004141 pci_unmap_single(pdev,
4142 buffer_info->dma,
4143 buffer_info->length,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 PCI_DMA_FROMDEVICE);
4145
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 length = le16_to_cpu(rx_desc->length);
4147
Jeff Kirshera1415ee2006-02-28 20:24:07 -08004148 if (unlikely(!(status & E1000_RXD_STAT_EOP))) {
4149 /* All receives must fit into a single buffer */
4150 E1000_DBG("%s: Receive packet consumed multiple"
4151 " buffers\n", netdev->name);
Auke Kok864c4e42006-06-27 09:06:53 -07004152 /* recycle */
Auke Kok8fc897b2006-08-28 14:56:16 -07004153 buffer_info->skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 goto next_desc;
4155 }
4156
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004157 if (unlikely(rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 last_byte = *(skb->data + length - 1);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004159 if (TBI_ACCEPT(&adapter->hw, status,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160 rx_desc->errors, length, last_byte)) {
4161 spin_lock_irqsave(&adapter->stats_lock, flags);
Jeff Kirshera292ca62006-01-12 16:51:30 -08004162 e1000_tbi_adjust_stats(&adapter->hw,
4163 &adapter->stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 length, skb->data);
4165 spin_unlock_irqrestore(&adapter->stats_lock,
4166 flags);
4167 length--;
4168 } else {
Auke Kok9e2feac2006-04-14 19:05:18 -07004169 /* recycle */
4170 buffer_info->skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 goto next_desc;
4172 }
Auke Kok1cb58212006-04-18 12:31:04 -07004173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174
Jesse Brandeburgd2a1e212006-10-24 14:46:06 -07004175 /* adjust length to remove Ethernet CRC, this must be
4176 * done after the TBI_ACCEPT workaround above */
4177 length -= 4;
4178
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004179 /* probably a little skewed due to removing CRC */
4180 total_rx_bytes += length;
4181 total_rx_packets++;
4182
Jeff Kirshera292ca62006-01-12 16:51:30 -08004183 /* code added for copybreak, this should improve
4184 * performance for small packets with large amounts
4185 * of reassembly being done in the stack */
Jesse Brandeburg1f753862006-12-15 10:40:39 +01004186 if (length < copybreak) {
Jeff Kirshera292ca62006-01-12 16:51:30 -08004187 struct sk_buff *new_skb =
David S. Miller87f50322006-07-31 22:39:40 -07004188 netdev_alloc_skb(netdev, length + NET_IP_ALIGN);
Jeff Kirshera292ca62006-01-12 16:51:30 -08004189 if (new_skb) {
4190 skb_reserve(new_skb, NET_IP_ALIGN);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03004191 skb_copy_to_linear_data_offset(new_skb,
4192 -NET_IP_ALIGN,
4193 (skb->data -
4194 NET_IP_ALIGN),
4195 (length +
4196 NET_IP_ALIGN));
Jeff Kirshera292ca62006-01-12 16:51:30 -08004197 /* save the skb in buffer_info as good */
4198 buffer_info->skb = skb;
4199 skb = new_skb;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004200 }
Auke Kok996695d2006-11-01 08:47:50 -08004201 /* else just continue with the old one */
4202 }
Jeff Kirshera292ca62006-01-12 16:51:30 -08004203 /* end copybreak code */
Auke Kok996695d2006-11-01 08:47:50 -08004204 skb_put(skb, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205
4206 /* Receive Checksum Offload */
Jeff Kirshera292ca62006-01-12 16:51:30 -08004207 e1000_rx_checksum(adapter,
4208 (uint32_t)(status) |
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004209 ((uint32_t)(rx_desc->errors) << 24),
David S. Millerc3d7a3a2006-03-15 14:26:28 -08004210 le16_to_cpu(rx_desc->csum), skb);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004211
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 skb->protocol = eth_type_trans(skb, netdev);
4213#ifdef CONFIG_E1000_NAPI
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004214 if (unlikely(adapter->vlgrp &&
Jeff Kirshera292ca62006-01-12 16:51:30 -08004215 (status & E1000_RXD_STAT_VP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 vlan_hwaccel_receive_skb(skb, adapter->vlgrp,
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004217 le16_to_cpu(rx_desc->special) &
4218 E1000_RXD_SPC_VLAN_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 } else {
4220 netif_receive_skb(skb);
4221 }
4222#else /* CONFIG_E1000_NAPI */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004223 if (unlikely(adapter->vlgrp &&
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004224 (status & E1000_RXD_STAT_VP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 vlan_hwaccel_rx(skb, adapter->vlgrp,
4226 le16_to_cpu(rx_desc->special) &
4227 E1000_RXD_SPC_VLAN_MASK);
4228 } else {
4229 netif_rx(skb);
4230 }
4231#endif /* CONFIG_E1000_NAPI */
4232 netdev->last_rx = jiffies;
4233
4234next_desc:
4235 rx_desc->status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004237 /* return some buffers to hardware, one at a time is too slow */
4238 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
4239 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
4240 cleaned_count = 0;
4241 }
4242
Jeff Kirsher30320be2006-03-02 18:21:57 -08004243 /* use prefetched values */
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004244 rx_desc = next_rxd;
4245 buffer_info = next_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 rx_ring->next_to_clean = i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004248
4249 cleaned_count = E1000_DESC_UNUSED(rx_ring);
4250 if (cleaned_count)
4251 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004253 adapter->total_rx_packets += total_rx_packets;
4254 adapter->total_rx_bytes += total_rx_bytes;
Auke Kokef90e4e2007-11-13 20:49:15 -08004255 adapter->net_stats.rx_bytes += total_rx_bytes;
4256 adapter->net_stats.rx_packets += total_rx_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 return cleaned;
4258}
4259
4260/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004261 * e1000_clean_rx_irq_ps - Send received data up the network stack; packet split
4262 * @adapter: board private structure
4263 **/
4264
4265static boolean_t
4266#ifdef CONFIG_E1000_NAPI
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04004267e1000_clean_rx_irq_ps(struct e1000_adapter *adapter,
4268 struct e1000_rx_ring *rx_ring,
4269 int *work_done, int work_to_do)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004270#else
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04004271e1000_clean_rx_irq_ps(struct e1000_adapter *adapter,
4272 struct e1000_rx_ring *rx_ring)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004273#endif
4274{
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004275 union e1000_rx_desc_packet_split *rx_desc, *next_rxd;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004276 struct net_device *netdev = adapter->netdev;
4277 struct pci_dev *pdev = adapter->pdev;
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004278 struct e1000_buffer *buffer_info, *next_buffer;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004279 struct e1000_ps_page *ps_page;
4280 struct e1000_ps_page_dma *ps_page_dma;
Auke Kok24f476e2006-06-08 09:28:47 -07004281 struct sk_buff *skb;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004282 unsigned int i, j;
4283 uint32_t length, staterr;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004284 int cleaned_count = 0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004285 boolean_t cleaned = FALSE;
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004286 unsigned int total_rx_bytes=0, total_rx_packets=0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004287
4288 i = rx_ring->next_to_clean;
4289 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
Malli Chilakala683a38f2005-06-17 17:43:25 -07004290 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
Auke Kok9e2feac2006-04-14 19:05:18 -07004291 buffer_info = &rx_ring->buffer_info[i];
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004292
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004293 while (staterr & E1000_RXD_STAT_DD) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004294 ps_page = &rx_ring->ps_page[i];
4295 ps_page_dma = &rx_ring->ps_page_dma[i];
4296#ifdef CONFIG_E1000_NAPI
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004297 if (unlikely(*work_done >= work_to_do))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004298 break;
4299 (*work_done)++;
4300#endif
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004301 skb = buffer_info->skb;
4302
Jeff Kirsher30320be2006-03-02 18:21:57 -08004303 /* in the packet split case this is header only */
4304 prefetch(skb->data - NET_IP_ALIGN);
4305
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004306 if (++i == rx_ring->count) i = 0;
4307 next_rxd = E1000_RX_DESC_PS(*rx_ring, i);
Jeff Kirsher30320be2006-03-02 18:21:57 -08004308 prefetch(next_rxd);
4309
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004310 next_buffer = &rx_ring->buffer_info[i];
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004311
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004312 cleaned = TRUE;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004313 cleaned_count++;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004314 pci_unmap_single(pdev, buffer_info->dma,
4315 buffer_info->length,
4316 PCI_DMA_FROMDEVICE);
4317
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004318 if (unlikely(!(staterr & E1000_RXD_STAT_EOP))) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004319 E1000_DBG("%s: Packet Split buffers didn't pick up"
4320 " the full packet\n", netdev->name);
4321 dev_kfree_skb_irq(skb);
4322 goto next_desc;
4323 }
4324
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004325 if (unlikely(staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK)) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004326 dev_kfree_skb_irq(skb);
4327 goto next_desc;
4328 }
4329
4330 length = le16_to_cpu(rx_desc->wb.middle.length0);
4331
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004332 if (unlikely(!length)) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004333 E1000_DBG("%s: Last part of the packet spanning"
4334 " multiple descriptors\n", netdev->name);
4335 dev_kfree_skb_irq(skb);
4336 goto next_desc;
4337 }
4338
4339 /* Good Receive */
4340 skb_put(skb, length);
4341
Jeff Kirsherdc7c6ad2006-03-02 18:21:40 -08004342 {
4343 /* this looks ugly, but it seems compiler issues make it
4344 more efficient than reusing j */
4345 int l1 = le16_to_cpu(rx_desc->wb.upper.length[0]);
4346
4347 /* page alloc/put takes too long and effects small packet
4348 * throughput, so unsplit small packets and save the alloc/put*/
Jesse Brandeburg1f753862006-12-15 10:40:39 +01004349 if (l1 && (l1 <= copybreak) && ((length + l1) <= adapter->rx_ps_bsize0)) {
Jeff Kirsherdc7c6ad2006-03-02 18:21:40 -08004350 u8 *vaddr;
Auke Kok76c224b2006-05-23 13:36:06 -07004351 /* there is no documentation about how to call
Jeff Kirsherdc7c6ad2006-03-02 18:21:40 -08004352 * kmap_atomic, so we can't hold the mapping
4353 * very long */
4354 pci_dma_sync_single_for_cpu(pdev,
4355 ps_page_dma->ps_page_dma[0],
4356 PAGE_SIZE,
4357 PCI_DMA_FROMDEVICE);
4358 vaddr = kmap_atomic(ps_page->ps_page[0],
4359 KM_SKB_DATA_SOFTIRQ);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07004360 memcpy(skb_tail_pointer(skb), vaddr, l1);
Jeff Kirsherdc7c6ad2006-03-02 18:21:40 -08004361 kunmap_atomic(vaddr, KM_SKB_DATA_SOFTIRQ);
4362 pci_dma_sync_single_for_device(pdev,
4363 ps_page_dma->ps_page_dma[0],
4364 PAGE_SIZE, PCI_DMA_FROMDEVICE);
Auke Kokf235a2a2006-07-14 16:14:34 -07004365 /* remove the CRC */
4366 l1 -= 4;
Jeff Kirsherdc7c6ad2006-03-02 18:21:40 -08004367 skb_put(skb, l1);
Jeff Kirsherdc7c6ad2006-03-02 18:21:40 -08004368 goto copydone;
4369 } /* if */
4370 }
Auke Kok90fb5132006-11-01 08:47:30 -08004371
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004372 for (j = 0; j < adapter->rx_ps_pages; j++) {
Jeff Kirsher30320be2006-03-02 18:21:57 -08004373 if (!(length= le16_to_cpu(rx_desc->wb.upper.length[j])))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004374 break;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004375 pci_unmap_page(pdev, ps_page_dma->ps_page_dma[j],
4376 PAGE_SIZE, PCI_DMA_FROMDEVICE);
4377 ps_page_dma->ps_page_dma[j] = 0;
Jeff Kirsher329bfd02006-03-02 18:20:02 -08004378 skb_fill_page_desc(skb, j, ps_page->ps_page[j], 0,
4379 length);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004380 ps_page->ps_page[j] = NULL;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004381 skb->len += length;
4382 skb->data_len += length;
Auke Kok5d51b802006-04-14 19:05:06 -07004383 skb->truesize += length;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004384 }
4385
Auke Kokf235a2a2006-07-14 16:14:34 -07004386 /* strip the ethernet crc, problem is we're using pages now so
4387 * this whole operation can get a little cpu intensive */
4388 pskb_trim(skb, skb->len - 4);
4389
Jeff Kirsherdc7c6ad2006-03-02 18:21:40 -08004390copydone:
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004391 total_rx_bytes += skb->len;
4392 total_rx_packets++;
4393
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004394 e1000_rx_checksum(adapter, staterr,
David S. Millerc3d7a3a2006-03-15 14:26:28 -08004395 le16_to_cpu(rx_desc->wb.lower.hi_dword.csum_ip.csum), skb);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004396 skb->protocol = eth_type_trans(skb, netdev);
4397
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004398 if (likely(rx_desc->wb.upper.header_status &
David S. Millerc3d7a3a2006-03-15 14:26:28 -08004399 cpu_to_le16(E1000_RXDPS_HDRSTAT_HDRSP)))
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04004400 adapter->rx_hdr_split++;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004401#ifdef CONFIG_E1000_NAPI
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004402 if (unlikely(adapter->vlgrp && (staterr & E1000_RXD_STAT_VP))) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004403 vlan_hwaccel_receive_skb(skb, adapter->vlgrp,
Malli Chilakala683a38f2005-06-17 17:43:25 -07004404 le16_to_cpu(rx_desc->wb.middle.vlan) &
4405 E1000_RXD_SPC_VLAN_MASK);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004406 } else {
4407 netif_receive_skb(skb);
4408 }
4409#else /* CONFIG_E1000_NAPI */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004410 if (unlikely(adapter->vlgrp && (staterr & E1000_RXD_STAT_VP))) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004411 vlan_hwaccel_rx(skb, adapter->vlgrp,
Malli Chilakala683a38f2005-06-17 17:43:25 -07004412 le16_to_cpu(rx_desc->wb.middle.vlan) &
4413 E1000_RXD_SPC_VLAN_MASK);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004414 } else {
4415 netif_rx(skb);
4416 }
4417#endif /* CONFIG_E1000_NAPI */
4418 netdev->last_rx = jiffies;
4419
4420next_desc:
David S. Millerc3d7a3a2006-03-15 14:26:28 -08004421 rx_desc->wb.middle.status_error &= cpu_to_le32(~0xFF);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004422 buffer_info->skb = NULL;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004423
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004424 /* return some buffers to hardware, one at a time is too slow */
4425 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
4426 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
4427 cleaned_count = 0;
4428 }
4429
Jeff Kirsher30320be2006-03-02 18:21:57 -08004430 /* use prefetched values */
Jesse Brandeburg86c3d592006-01-18 13:01:43 -08004431 rx_desc = next_rxd;
4432 buffer_info = next_buffer;
4433
Malli Chilakala683a38f2005-06-17 17:43:25 -07004434 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004435 }
4436 rx_ring->next_to_clean = i;
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004437
4438 cleaned_count = E1000_DESC_UNUSED(rx_ring);
4439 if (cleaned_count)
4440 adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004441
Jesse Brandeburg835bb122006-11-01 08:48:13 -08004442 adapter->total_rx_packets += total_rx_packets;
4443 adapter->total_rx_bytes += total_rx_bytes;
Auke Kokef90e4e2007-11-13 20:49:15 -08004444 adapter->net_stats.rx_bytes += total_rx_bytes;
4445 adapter->net_stats.rx_packets += total_rx_packets;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004446 return cleaned;
4447}
4448
4449/**
4450 * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 * @adapter: address of board private structure
4452 **/
4453
4454static void
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04004455e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004456 struct e1000_rx_ring *rx_ring,
Jeff Kirshera292ca62006-01-12 16:51:30 -08004457 int cleaned_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 struct net_device *netdev = adapter->netdev;
4460 struct pci_dev *pdev = adapter->pdev;
4461 struct e1000_rx_desc *rx_desc;
4462 struct e1000_buffer *buffer_info;
4463 struct sk_buff *skb;
Malli Chilakala26483452005-04-28 19:44:46 -07004464 unsigned int i;
4465 unsigned int bufsz = adapter->rx_buffer_len + NET_IP_ALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466
4467 i = rx_ring->next_to_use;
4468 buffer_info = &rx_ring->buffer_info[i];
4469
Jeff Kirshera292ca62006-01-12 16:51:30 -08004470 while (cleaned_count--) {
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004471 skb = buffer_info->skb;
4472 if (skb) {
Jeff Kirshera292ca62006-01-12 16:51:30 -08004473 skb_trim(skb, 0);
4474 goto map_skb;
4475 }
4476
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004477 skb = netdev_alloc_skb(netdev, bufsz);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004478 if (unlikely(!skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 /* Better luck next round */
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004480 adapter->alloc_rx_buff_failed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 break;
4482 }
4483
Malli Chilakala26483452005-04-28 19:44:46 -07004484 /* Fix for errata 23, can't cross 64kB boundary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4486 struct sk_buff *oldskb = skb;
Malli Chilakala26483452005-04-28 19:44:46 -07004487 DPRINTK(RX_ERR, ERR, "skb align check failed: %u bytes "
4488 "at %p\n", bufsz, skb->data);
4489 /* Try again, without freeing the previous */
David S. Miller87f50322006-07-31 22:39:40 -07004490 skb = netdev_alloc_skb(netdev, bufsz);
Malli Chilakala26483452005-04-28 19:44:46 -07004491 /* Failed allocation, critical failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 if (!skb) {
4493 dev_kfree_skb(oldskb);
4494 break;
4495 }
Malli Chilakala26483452005-04-28 19:44:46 -07004496
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
4498 /* give up */
4499 dev_kfree_skb(skb);
4500 dev_kfree_skb(oldskb);
4501 break; /* while !buffer_info->skb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 }
Christoph Hellwigca6f7222006-08-31 14:27:47 -07004503
4504 /* Use new allocation */
4505 dev_kfree_skb(oldskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 /* Make buffer alignment 2 beyond a 16 byte boundary
4508 * this will result in a 16 byte aligned IP header after
4509 * the 14 byte MAC header is removed
4510 */
4511 skb_reserve(skb, NET_IP_ALIGN);
4512
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 buffer_info->skb = skb;
4514 buffer_info->length = adapter->rx_buffer_len;
Jeff Kirshera292ca62006-01-12 16:51:30 -08004515map_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 buffer_info->dma = pci_map_single(pdev,
4517 skb->data,
4518 adapter->rx_buffer_len,
4519 PCI_DMA_FROMDEVICE);
4520
Malli Chilakala26483452005-04-28 19:44:46 -07004521 /* Fix for errata 23, can't cross 64kB boundary */
4522 if (!e1000_check_64k_bound(adapter,
4523 (void *)(unsigned long)buffer_info->dma,
4524 adapter->rx_buffer_len)) {
4525 DPRINTK(RX_ERR, ERR,
4526 "dma align check failed: %u bytes at %p\n",
4527 adapter->rx_buffer_len,
4528 (void *)(unsigned long)buffer_info->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 dev_kfree_skb(skb);
4530 buffer_info->skb = NULL;
4531
Malli Chilakala26483452005-04-28 19:44:46 -07004532 pci_unmap_single(pdev, buffer_info->dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 adapter->rx_buffer_len,
4534 PCI_DMA_FROMDEVICE);
4535
4536 break; /* while !buffer_info->skb */
4537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 rx_desc = E1000_RX_DESC(*rx_ring, i);
4539 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4540
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004541 if (unlikely(++i == rx_ring->count))
4542 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 buffer_info = &rx_ring->buffer_info[i];
4544 }
4545
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004546 if (likely(rx_ring->next_to_use != i)) {
4547 rx_ring->next_to_use = i;
4548 if (unlikely(i-- == 0))
4549 i = (rx_ring->count - 1);
4550
4551 /* Force memory writes to complete before letting h/w
4552 * know there are new descriptors to fetch. (Only
4553 * applicable for weak-ordered memory model archs,
4554 * such as IA-64). */
4555 wmb();
4556 writel(i, adapter->hw.hw_addr + rx_ring->rdt);
4557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558}
4559
4560/**
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004561 * e1000_alloc_rx_buffers_ps - Replace used receive buffers; packet split
4562 * @adapter: address of board private structure
4563 **/
4564
4565static void
Mallikarjuna R Chilakala581d7082005-10-04 07:01:55 -04004566e1000_alloc_rx_buffers_ps(struct e1000_adapter *adapter,
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004567 struct e1000_rx_ring *rx_ring,
4568 int cleaned_count)
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004569{
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004570 struct net_device *netdev = adapter->netdev;
4571 struct pci_dev *pdev = adapter->pdev;
4572 union e1000_rx_desc_packet_split *rx_desc;
4573 struct e1000_buffer *buffer_info;
4574 struct e1000_ps_page *ps_page;
4575 struct e1000_ps_page_dma *ps_page_dma;
4576 struct sk_buff *skb;
4577 unsigned int i, j;
4578
4579 i = rx_ring->next_to_use;
4580 buffer_info = &rx_ring->buffer_info[i];
4581 ps_page = &rx_ring->ps_page[i];
4582 ps_page_dma = &rx_ring->ps_page_dma[i];
4583
Jeff Kirsher72d64a42006-01-12 16:51:19 -08004584 while (cleaned_count--) {
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004585 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
4586
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004587 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04004588 if (j < adapter->rx_ps_pages) {
4589 if (likely(!ps_page->ps_page[j])) {
4590 ps_page->ps_page[j] =
4591 alloc_page(GFP_ATOMIC);
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004592 if (unlikely(!ps_page->ps_page[j])) {
4593 adapter->alloc_rx_buff_failed++;
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04004594 goto no_buffers;
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004595 }
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04004596 ps_page_dma->ps_page_dma[j] =
4597 pci_map_page(pdev,
4598 ps_page->ps_page[j],
4599 0, PAGE_SIZE,
4600 PCI_DMA_FROMDEVICE);
4601 }
4602 /* Refresh the desc even if buffer_addrs didn't
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004603 * change because each write-back erases
Mallikarjuna R Chilakalae4c811c2005-10-04 07:05:44 -04004604 * this info.
4605 */
4606 rx_desc->read.buffer_addr[j+1] =
4607 cpu_to_le64(ps_page_dma->ps_page_dma[j]);
4608 } else
4609 rx_desc->read.buffer_addr[j+1] = ~0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004610 }
4611
David S. Miller87f50322006-07-31 22:39:40 -07004612 skb = netdev_alloc_skb(netdev,
Auke Kok90fb5132006-11-01 08:47:30 -08004613 adapter->rx_ps_bsize0 + NET_IP_ALIGN);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004614
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004615 if (unlikely(!skb)) {
4616 adapter->alloc_rx_buff_failed++;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004617 break;
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004618 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004619
4620 /* Make buffer alignment 2 beyond a 16 byte boundary
4621 * this will result in a 16 byte aligned IP header after
4622 * the 14 byte MAC header is removed
4623 */
4624 skb_reserve(skb, NET_IP_ALIGN);
4625
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004626 buffer_info->skb = skb;
4627 buffer_info->length = adapter->rx_ps_bsize0;
4628 buffer_info->dma = pci_map_single(pdev, skb->data,
4629 adapter->rx_ps_bsize0,
4630 PCI_DMA_FROMDEVICE);
4631
4632 rx_desc->read.buffer_addr[0] = cpu_to_le64(buffer_info->dma);
4633
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004634 if (unlikely(++i == rx_ring->count)) i = 0;
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004635 buffer_info = &rx_ring->buffer_info[i];
4636 ps_page = &rx_ring->ps_page[i];
4637 ps_page_dma = &rx_ring->ps_page_dma[i];
4638 }
4639
4640no_buffers:
Jesse Brandeburgb92ff8e2006-01-18 13:01:32 -08004641 if (likely(rx_ring->next_to_use != i)) {
4642 rx_ring->next_to_use = i;
4643 if (unlikely(i-- == 0)) i = (rx_ring->count - 1);
4644
4645 /* Force memory writes to complete before letting h/w
4646 * know there are new descriptors to fetch. (Only
4647 * applicable for weak-ordered memory model archs,
4648 * such as IA-64). */
4649 wmb();
4650 /* Hardware increments by 16 bytes, but packet split
4651 * descriptors are 32 bytes...so we increment tail
4652 * twice as much.
4653 */
4654 writel(i<<1, adapter->hw.hw_addr + rx_ring->rdt);
4655 }
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004656}
4657
4658/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 * e1000_smartspeed - Workaround for SmartSpeed on 82541 and 82547 controllers.
4660 * @adapter:
4661 **/
4662
4663static void
4664e1000_smartspeed(struct e1000_adapter *adapter)
4665{
4666 uint16_t phy_status;
4667 uint16_t phy_ctrl;
4668
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004669 if ((adapter->hw.phy_type != e1000_phy_igp) || !adapter->hw.autoneg ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 !(adapter->hw.autoneg_advertised & ADVERTISE_1000_FULL))
4671 return;
4672
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004673 if (adapter->smartspeed == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 /* If Master/Slave config fault is asserted twice,
4675 * we assume back-to-back */
4676 e1000_read_phy_reg(&adapter->hw, PHY_1000T_STATUS, &phy_status);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004677 if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678 e1000_read_phy_reg(&adapter->hw, PHY_1000T_STATUS, &phy_status);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004679 if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 e1000_read_phy_reg(&adapter->hw, PHY_1000T_CTRL, &phy_ctrl);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004681 if (phy_ctrl & CR_1000T_MS_ENABLE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 phy_ctrl &= ~CR_1000T_MS_ENABLE;
4683 e1000_write_phy_reg(&adapter->hw, PHY_1000T_CTRL,
4684 phy_ctrl);
4685 adapter->smartspeed++;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004686 if (!e1000_phy_setup_autoneg(&adapter->hw) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 !e1000_read_phy_reg(&adapter->hw, PHY_CTRL,
4688 &phy_ctrl)) {
4689 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4690 MII_CR_RESTART_AUTO_NEG);
4691 e1000_write_phy_reg(&adapter->hw, PHY_CTRL,
4692 phy_ctrl);
4693 }
4694 }
4695 return;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004696 } else if (adapter->smartspeed == E1000_SMARTSPEED_DOWNSHIFT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 /* If still no link, perhaps using 2/3 pair cable */
4698 e1000_read_phy_reg(&adapter->hw, PHY_1000T_CTRL, &phy_ctrl);
4699 phy_ctrl |= CR_1000T_MS_ENABLE;
4700 e1000_write_phy_reg(&adapter->hw, PHY_1000T_CTRL, phy_ctrl);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004701 if (!e1000_phy_setup_autoneg(&adapter->hw) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702 !e1000_read_phy_reg(&adapter->hw, PHY_CTRL, &phy_ctrl)) {
4703 phy_ctrl |= (MII_CR_AUTO_NEG_EN |
4704 MII_CR_RESTART_AUTO_NEG);
4705 e1000_write_phy_reg(&adapter->hw, PHY_CTRL, phy_ctrl);
4706 }
4707 }
4708 /* Restart process after E1000_SMARTSPEED_MAX iterations */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004709 if (adapter->smartspeed++ == E1000_SMARTSPEED_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 adapter->smartspeed = 0;
4711}
4712
4713/**
4714 * e1000_ioctl -
4715 * @netdev:
4716 * @ifreq:
4717 * @cmd:
4718 **/
4719
4720static int
4721e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
4722{
4723 switch (cmd) {
4724 case SIOCGMIIPHY:
4725 case SIOCGMIIREG:
4726 case SIOCSMIIREG:
4727 return e1000_mii_ioctl(netdev, ifr, cmd);
4728 default:
4729 return -EOPNOTSUPP;
4730 }
4731}
4732
4733/**
4734 * e1000_mii_ioctl -
4735 * @netdev:
4736 * @ifreq:
4737 * @cmd:
4738 **/
4739
4740static int
4741e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
4742{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004743 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744 struct mii_ioctl_data *data = if_mii(ifr);
4745 int retval;
4746 uint16_t mii_reg;
4747 uint16_t spddplx;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004748 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004750 if (adapter->hw.media_type != e1000_media_type_copper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 return -EOPNOTSUPP;
4752
4753 switch (cmd) {
4754 case SIOCGMIIPHY:
4755 data->phy_id = adapter->hw.phy_addr;
4756 break;
4757 case SIOCGMIIREG:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004758 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759 return -EPERM;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004760 spin_lock_irqsave(&adapter->stats_lock, flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004761 if (e1000_read_phy_reg(&adapter->hw, data->reg_num & 0x1F,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004762 &data->val_out)) {
4763 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004765 }
4766 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 break;
4768 case SIOCSMIIREG:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004769 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 return -EPERM;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004771 if (data->reg_num & ~(0x1F))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 return -EFAULT;
4773 mii_reg = data->val_in;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004774 spin_lock_irqsave(&adapter->stats_lock, flags);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004775 if (e1000_write_phy_reg(&adapter->hw, data->reg_num,
Malli Chilakala97876fc2005-06-17 17:40:19 -07004776 mii_reg)) {
4777 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 return -EIO;
Malli Chilakala97876fc2005-06-17 17:40:19 -07004779 }
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004780 spin_unlock_irqrestore(&adapter->stats_lock, flags);
Auke Kokdc86d322006-04-18 12:30:51 -07004781 if (adapter->hw.media_type == e1000_media_type_copper) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782 switch (data->reg_num) {
4783 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004784 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 break;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004786 if (mii_reg & MII_CR_AUTO_NEG_EN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 adapter->hw.autoneg = 1;
4788 adapter->hw.autoneg_advertised = 0x2F;
4789 } else {
4790 if (mii_reg & 0x40)
4791 spddplx = SPEED_1000;
4792 else if (mii_reg & 0x2000)
4793 spddplx = SPEED_100;
4794 else
4795 spddplx = SPEED_10;
4796 spddplx += (mii_reg & 0x100)
Jeff Kirshercb764322006-03-08 17:24:12 -08004797 ? DUPLEX_FULL :
4798 DUPLEX_HALF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 retval = e1000_set_spd_dplx(adapter,
4800 spddplx);
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004801 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 return retval;
4803 }
Auke Kok2db10a02006-06-27 09:06:28 -07004804 if (netif_running(adapter->netdev))
4805 e1000_reinit_locked(adapter);
4806 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 e1000_reset(adapter);
4808 break;
4809 case M88E1000_PHY_SPEC_CTRL:
4810 case M88E1000_EXT_PHY_SPEC_CTRL:
Jesse Brandeburgf0163ac2007-11-13 21:00:09 -08004811 if (e1000_phy_reset(&adapter->hw))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 return -EIO;
4813 break;
4814 }
4815 } else {
4816 switch (data->reg_num) {
4817 case PHY_CTRL:
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004818 if (mii_reg & MII_CR_POWER_DOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819 break;
Auke Kok2db10a02006-06-27 09:06:28 -07004820 if (netif_running(adapter->netdev))
4821 e1000_reinit_locked(adapter);
4822 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 e1000_reset(adapter);
4824 break;
4825 }
4826 }
4827 break;
4828 default:
4829 return -EOPNOTSUPP;
4830 }
4831 return E1000_SUCCESS;
4832}
4833
4834void
4835e1000_pci_set_mwi(struct e1000_hw *hw)
4836{
4837 struct e1000_adapter *adapter = hw->back;
Malli Chilakala26483452005-04-28 19:44:46 -07004838 int ret_val = pci_set_mwi(adapter->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004840 if (ret_val)
Malli Chilakala26483452005-04-28 19:44:46 -07004841 DPRINTK(PROBE, ERR, "Error in setting MWI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842}
4843
4844void
4845e1000_pci_clear_mwi(struct e1000_hw *hw)
4846{
4847 struct e1000_adapter *adapter = hw->back;
4848
4849 pci_clear_mwi(adapter->pdev);
4850}
4851
4852void
4853e1000_read_pci_cfg(struct e1000_hw *hw, uint32_t reg, uint16_t *value)
4854{
4855 struct e1000_adapter *adapter = hw->back;
4856
4857 pci_read_config_word(adapter->pdev, reg, value);
4858}
4859
4860void
4861e1000_write_pci_cfg(struct e1000_hw *hw, uint32_t reg, uint16_t *value)
4862{
4863 struct e1000_adapter *adapter = hw->back;
4864
4865 pci_write_config_word(adapter->pdev, reg, *value);
4866}
4867
Peter Oruba007755e2007-09-28 22:42:06 -07004868int
4869e1000_pcix_get_mmrbc(struct e1000_hw *hw)
4870{
4871 struct e1000_adapter *adapter = hw->back;
4872 return pcix_get_mmrbc(adapter->pdev);
4873}
4874
4875void
4876e1000_pcix_set_mmrbc(struct e1000_hw *hw, int mmrbc)
4877{
4878 struct e1000_adapter *adapter = hw->back;
4879 pcix_set_mmrbc(adapter->pdev, mmrbc);
4880}
4881
Jeff Kirshercaeccb62006-09-27 12:53:57 -07004882int32_t
4883e1000_read_pcie_cap_reg(struct e1000_hw *hw, uint32_t reg, uint16_t *value)
4884{
4885 struct e1000_adapter *adapter = hw->back;
4886 uint16_t cap_offset;
4887
4888 cap_offset = pci_find_capability(adapter->pdev, PCI_CAP_ID_EXP);
4889 if (!cap_offset)
4890 return -E1000_ERR_CONFIG;
4891
4892 pci_read_config_word(adapter->pdev, cap_offset + reg, value);
4893
4894 return E1000_SUCCESS;
4895}
4896
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897void
4898e1000_io_write(struct e1000_hw *hw, unsigned long port, uint32_t value)
4899{
4900 outl(value, port);
4901}
4902
4903static void
4904e1000_vlan_rx_register(struct net_device *netdev, struct vlan_group *grp)
4905{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004906 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907 uint32_t ctrl, rctl;
4908
4909 e1000_irq_disable(adapter);
4910 adapter->vlgrp = grp;
4911
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004912 if (grp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 /* enable VLAN tag insert/strip */
4914 ctrl = E1000_READ_REG(&adapter->hw, CTRL);
4915 ctrl |= E1000_CTRL_VME;
4916 E1000_WRITE_REG(&adapter->hw, CTRL, ctrl);
4917
Auke Kokcd94dd02006-06-27 09:08:22 -07004918 if (adapter->hw.mac_type != e1000_ich8lan) {
Auke Kok90fb5132006-11-01 08:47:30 -08004919 /* enable VLAN receive filtering */
4920 rctl = E1000_READ_REG(&adapter->hw, RCTL);
4921 rctl |= E1000_RCTL_VFE;
4922 rctl &= ~E1000_RCTL_CFIEN;
4923 E1000_WRITE_REG(&adapter->hw, RCTL, rctl);
4924 e1000_update_mng_vlan(adapter);
Auke Kokcd94dd02006-06-27 09:08:22 -07004925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 } else {
4927 /* disable VLAN tag insert/strip */
4928 ctrl = E1000_READ_REG(&adapter->hw, CTRL);
4929 ctrl &= ~E1000_CTRL_VME;
4930 E1000_WRITE_REG(&adapter->hw, CTRL, ctrl);
4931
Auke Kokcd94dd02006-06-27 09:08:22 -07004932 if (adapter->hw.mac_type != e1000_ich8lan) {
Auke Kok90fb5132006-11-01 08:47:30 -08004933 /* disable VLAN filtering */
4934 rctl = E1000_READ_REG(&adapter->hw, RCTL);
4935 rctl &= ~E1000_RCTL_VFE;
4936 E1000_WRITE_REG(&adapter->hw, RCTL, rctl);
4937 if (adapter->mng_vlan_id !=
4938 (uint16_t)E1000_MNG_VLAN_NONE) {
4939 e1000_vlan_rx_kill_vid(netdev,
4940 adapter->mng_vlan_id);
4941 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
4942 }
Auke Kokcd94dd02006-06-27 09:08:22 -07004943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 }
4945
4946 e1000_irq_enable(adapter);
4947}
4948
4949static void
4950e1000_vlan_rx_add_vid(struct net_device *netdev, uint16_t vid)
4951{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004952 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953 uint32_t vfta, index;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004954
4955 if ((adapter->hw.mng_cookie.status &
4956 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
4957 (vid == adapter->mng_vlan_id))
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004958 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 /* add VID to filter table */
4960 index = (vid >> 5) & 0x7F;
4961 vfta = E1000_READ_REG_ARRAY(&adapter->hw, VFTA, index);
4962 vfta |= (1 << (vid & 0x1F));
4963 e1000_write_vfta(&adapter->hw, index, vfta);
4964}
4965
4966static void
4967e1000_vlan_rx_kill_vid(struct net_device *netdev, uint16_t vid)
4968{
Malli Chilakala60490fe2005-06-17 17:41:45 -07004969 struct e1000_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970 uint32_t vfta, index;
4971
4972 e1000_irq_disable(adapter);
Dan Aloni5c15bde2007-03-02 20:44:51 -08004973 vlan_group_set_device(adapter->vlgrp, vid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 e1000_irq_enable(adapter);
4975
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004976 if ((adapter->hw.mng_cookie.status &
4977 E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
Jeff Kirsherff147012006-01-12 16:51:10 -08004978 (vid == adapter->mng_vlan_id)) {
4979 /* release control to f/w */
4980 e1000_release_hw_control(adapter);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07004981 return;
Jeff Kirsherff147012006-01-12 16:51:10 -08004982 }
4983
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 /* remove VID from filter table */
4985 index = (vid >> 5) & 0x7F;
4986 vfta = E1000_READ_REG_ARRAY(&adapter->hw, VFTA, index);
4987 vfta &= ~(1 << (vid & 0x1F));
4988 e1000_write_vfta(&adapter->hw, index, vfta);
4989}
4990
4991static void
4992e1000_restore_vlan(struct e1000_adapter *adapter)
4993{
4994 e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
4995
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004996 if (adapter->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 uint16_t vid;
Jesse Brandeburg96838a42006-01-18 13:01:39 -08004998 for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08004999 if (!vlan_group_get_device(adapter->vlgrp, vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000 continue;
5001 e1000_vlan_rx_add_vid(adapter->netdev, vid);
5002 }
5003 }
5004}
5005
5006int
5007e1000_set_spd_dplx(struct e1000_adapter *adapter, uint16_t spddplx)
5008{
5009 adapter->hw.autoneg = 0;
5010
Malli Chilakala69213682005-06-17 17:44:20 -07005011 /* Fiber NICs only allow 1000 gbps Full duplex */
Jesse Brandeburg96838a42006-01-18 13:01:39 -08005012 if ((adapter->hw.media_type == e1000_media_type_fiber) &&
Malli Chilakala69213682005-06-17 17:44:20 -07005013 spddplx != (SPEED_1000 + DUPLEX_FULL)) {
5014 DPRINTK(PROBE, ERR, "Unsupported Speed/Duplex configuration\n");
5015 return -EINVAL;
5016 }
5017
Jesse Brandeburg96838a42006-01-18 13:01:39 -08005018 switch (spddplx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019 case SPEED_10 + DUPLEX_HALF:
5020 adapter->hw.forced_speed_duplex = e1000_10_half;
5021 break;
5022 case SPEED_10 + DUPLEX_FULL:
5023 adapter->hw.forced_speed_duplex = e1000_10_full;
5024 break;
5025 case SPEED_100 + DUPLEX_HALF:
5026 adapter->hw.forced_speed_duplex = e1000_100_half;
5027 break;
5028 case SPEED_100 + DUPLEX_FULL:
5029 adapter->hw.forced_speed_duplex = e1000_100_full;
5030 break;
5031 case SPEED_1000 + DUPLEX_FULL:
5032 adapter->hw.autoneg = 1;
5033 adapter->hw.autoneg_advertised = ADVERTISE_1000_FULL;
5034 break;
5035 case SPEED_1000 + DUPLEX_HALF: /* not supported */
5036 default:
Malli Chilakala26483452005-04-28 19:44:46 -07005037 DPRINTK(PROBE, ERR, "Unsupported Speed/Duplex configuration\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038 return -EINVAL;
5039 }
5040 return 0;
5041}
5042
5043static int
Pavel Machek829ca9a2005-09-03 15:56:56 -07005044e1000_suspend(struct pci_dev *pdev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045{
5046 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07005047 struct e1000_adapter *adapter = netdev_priv(netdev);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005048 uint32_t ctrl, ctrl_ext, rctl, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049 uint32_t wufc = adapter->wol;
Auke Kok6fdfef12006-06-27 09:06:36 -07005050#ifdef CONFIG_PM
Jeff Kirsher240b1712006-01-12 16:51:28 -08005051 int retval = 0;
Auke Kok6fdfef12006-06-27 09:06:36 -07005052#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053
5054 netif_device_detach(netdev);
5055
Auke Kok2db10a02006-06-27 09:06:28 -07005056 if (netif_running(netdev)) {
5057 WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 e1000_down(adapter);
Auke Kok2db10a02006-06-27 09:06:28 -07005059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060
Jesse Brandeburg2f826652006-01-18 13:01:34 -08005061#ifdef CONFIG_PM
Kok, Auke1d33e9c2007-02-16 14:39:28 -08005062 retval = pci_save_state(pdev);
Jesse Brandeburg2f826652006-01-18 13:01:34 -08005063 if (retval)
5064 return retval;
5065#endif
5066
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067 status = E1000_READ_REG(&adapter->hw, STATUS);
Jesse Brandeburg96838a42006-01-18 13:01:39 -08005068 if (status & E1000_STATUS_LU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 wufc &= ~E1000_WUFC_LNKC;
5070
Jesse Brandeburg96838a42006-01-18 13:01:39 -08005071 if (wufc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072 e1000_setup_rctl(adapter);
5073 e1000_set_multi(netdev);
5074
5075 /* turn on all-multi mode if wake on multicast is enabled */
Jesse Brandeburg120cd572006-08-31 14:27:46 -07005076 if (wufc & E1000_WUFC_MC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077 rctl = E1000_READ_REG(&adapter->hw, RCTL);
5078 rctl |= E1000_RCTL_MPE;
5079 E1000_WRITE_REG(&adapter->hw, RCTL, rctl);
5080 }
5081
Jesse Brandeburg96838a42006-01-18 13:01:39 -08005082 if (adapter->hw.mac_type >= e1000_82540) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083 ctrl = E1000_READ_REG(&adapter->hw, CTRL);
5084 /* advertise wake from D3Cold */
5085 #define E1000_CTRL_ADVD3WUC 0x00100000
5086 /* phy power management enable */
5087 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
5088 ctrl |= E1000_CTRL_ADVD3WUC |
5089 E1000_CTRL_EN_PHY_PWR_MGMT;
5090 E1000_WRITE_REG(&adapter->hw, CTRL, ctrl);
5091 }
5092
Jesse Brandeburg96838a42006-01-18 13:01:39 -08005093 if (adapter->hw.media_type == e1000_media_type_fiber ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094 adapter->hw.media_type == e1000_media_type_internal_serdes) {
5095 /* keep the laser running in D3 */
5096 ctrl_ext = E1000_READ_REG(&adapter->hw, CTRL_EXT);
5097 ctrl_ext |= E1000_CTRL_EXT_SDP7_DATA;
5098 E1000_WRITE_REG(&adapter->hw, CTRL_EXT, ctrl_ext);
5099 }
5100
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005101 /* Allow time for pending master requests to run */
5102 e1000_disable_pciex_master(&adapter->hw);
5103
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 E1000_WRITE_REG(&adapter->hw, WUC, E1000_WUC_PME_EN);
5105 E1000_WRITE_REG(&adapter->hw, WUFC, wufc);
Auke Kokd0e027d2006-04-14 19:04:40 -07005106 pci_enable_wake(pdev, PCI_D3hot, 1);
5107 pci_enable_wake(pdev, PCI_D3cold, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108 } else {
5109 E1000_WRITE_REG(&adapter->hw, WUC, 0);
5110 E1000_WRITE_REG(&adapter->hw, WUFC, 0);
Auke Kokd0e027d2006-04-14 19:04:40 -07005111 pci_enable_wake(pdev, PCI_D3hot, 0);
5112 pci_enable_wake(pdev, PCI_D3cold, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113 }
5114
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005115 e1000_release_manageability(adapter);
5116
5117 /* make sure adapter isn't asleep if manageability is enabled */
5118 if (adapter->en_mng_pt) {
5119 pci_enable_wake(pdev, PCI_D3hot, 1);
5120 pci_enable_wake(pdev, PCI_D3cold, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 }
5122
Auke Kokcd94dd02006-06-27 09:08:22 -07005123 if (adapter->hw.phy_type == e1000_phy_igp_3)
5124 e1000_phy_powerdown_workaround(&adapter->hw);
5125
Auke Kokedd106f2006-11-06 08:57:12 -08005126 if (netif_running(netdev))
5127 e1000_free_irq(adapter);
5128
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08005129 /* Release control of h/w to f/w. If f/w is AMT enabled, this
5130 * would have already happened in close and is redundant. */
5131 e1000_release_hw_control(adapter);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005132
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 pci_disable_device(pdev);
Jeff Kirsher240b1712006-01-12 16:51:28 -08005134
Auke Kokd0e027d2006-04-14 19:04:40 -07005135 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136
5137 return 0;
5138}
5139
Jesse Brandeburg2f826652006-01-18 13:01:34 -08005140#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141static int
5142e1000_resume(struct pci_dev *pdev)
5143{
5144 struct net_device *netdev = pci_get_drvdata(pdev);
Malli Chilakala60490fe2005-06-17 17:41:45 -07005145 struct e1000_adapter *adapter = netdev_priv(netdev);
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005146 uint32_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147
Auke Kokd0e027d2006-04-14 19:04:40 -07005148 pci_set_power_state(pdev, PCI_D0);
Kok, Auke1d33e9c2007-02-16 14:39:28 -08005149 pci_restore_state(pdev);
Auke Kok3d1dd8c2006-08-28 14:56:27 -07005150 if ((err = pci_enable_device(pdev))) {
5151 printk(KERN_ERR "e1000: Cannot enable PCI device from suspend\n");
5152 return err;
5153 }
Malli Chilakalaa4cb8472005-04-28 19:41:28 -07005154 pci_set_master(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155
Auke Kokd0e027d2006-04-14 19:04:40 -07005156 pci_enable_wake(pdev, PCI_D3hot, 0);
5157 pci_enable_wake(pdev, PCI_D3cold, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
Auke Kokedd106f2006-11-06 08:57:12 -08005159 if (netif_running(netdev) && (err = e1000_request_irq(adapter)))
5160 return err;
5161
5162 e1000_power_up_phy(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 e1000_reset(adapter);
5164 E1000_WRITE_REG(&adapter->hw, WUS, ~0);
5165
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005166 e1000_init_manageability(adapter);
5167
Jesse Brandeburg96838a42006-01-18 13:01:39 -08005168 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 e1000_up(adapter);
5170
5171 netif_device_attach(netdev);
5172
Jeff Kirsherb55ccb32006-01-12 16:50:30 -08005173 /* If the controller is 82573 and f/w is AMT, do not set
5174 * DRV_LOAD until the interface is up. For all other cases,
5175 * let the f/w know that the h/w is now under the control
5176 * of the driver. */
5177 if (adapter->hw.mac_type != e1000_82573 ||
5178 !e1000_check_mng_mode(&adapter->hw))
5179 e1000_get_hw_control(adapter);
Malli Chilakala2d7edb92005-04-28 19:43:52 -07005180
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181 return 0;
5182}
5183#endif
Auke Kokc653e632006-05-23 13:35:57 -07005184
5185static void e1000_shutdown(struct pci_dev *pdev)
5186{
5187 e1000_suspend(pdev, PMSG_SUSPEND);
5188}
5189
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190#ifdef CONFIG_NET_POLL_CONTROLLER
5191/*
5192 * Polling 'interrupt' - used by things like netconsole to send skbs
5193 * without having to re-enable interrupts. It's not called while
5194 * the interrupt routine is executing.
5195 */
5196static void
Malli Chilakala26483452005-04-28 19:44:46 -07005197e1000_netpoll(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198{
Malli Chilakala60490fe2005-06-17 17:41:45 -07005199 struct e1000_adapter *adapter = netdev_priv(netdev);
Auke Kokd3d9e482006-07-14 16:14:23 -07005200
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 disable_irq(adapter->pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +01005202 e1000_intr(adapter->pdev->irq, netdev);
Andrew Mortonc4cfe562005-10-15 00:32:29 -07005203 e1000_clean_tx_irq(adapter, adapter->tx_ring);
Jeff Kirshere8da8be2006-01-12 16:51:14 -08005204#ifndef CONFIG_E1000_NAPI
5205 adapter->clean_rx(adapter, adapter->rx_ring);
5206#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 enable_irq(adapter->pdev->irq);
5208}
5209#endif
5210
Auke Kok90267292006-06-08 09:30:24 -07005211/**
5212 * e1000_io_error_detected - called when PCI error is detected
5213 * @pdev: Pointer to PCI device
5214 * @state: The current pci conneection state
5215 *
5216 * This function is called after a PCI bus error affecting
5217 * this device has been detected.
5218 */
5219static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
5220{
5221 struct net_device *netdev = pci_get_drvdata(pdev);
5222 struct e1000_adapter *adapter = netdev->priv;
5223
5224 netif_device_detach(netdev);
5225
5226 if (netif_running(netdev))
5227 e1000_down(adapter);
Linas Vepstas72e8d6b2006-09-18 20:58:06 -07005228 pci_disable_device(pdev);
Auke Kok90267292006-06-08 09:30:24 -07005229
5230 /* Request a slot slot reset. */
5231 return PCI_ERS_RESULT_NEED_RESET;
5232}
5233
5234/**
5235 * e1000_io_slot_reset - called after the pci bus has been reset.
5236 * @pdev: Pointer to PCI device
5237 *
5238 * Restart the card from scratch, as if from a cold-boot. Implementation
5239 * resembles the first-half of the e1000_resume routine.
5240 */
5241static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
5242{
5243 struct net_device *netdev = pci_get_drvdata(pdev);
5244 struct e1000_adapter *adapter = netdev->priv;
5245
5246 if (pci_enable_device(pdev)) {
5247 printk(KERN_ERR "e1000: Cannot re-enable PCI device after reset.\n");
5248 return PCI_ERS_RESULT_DISCONNECT;
5249 }
5250 pci_set_master(pdev);
5251
Linas Vepstasdbf38c92006-09-27 12:54:11 -07005252 pci_enable_wake(pdev, PCI_D3hot, 0);
5253 pci_enable_wake(pdev, PCI_D3cold, 0);
Auke Kok90267292006-06-08 09:30:24 -07005254
Auke Kok90267292006-06-08 09:30:24 -07005255 e1000_reset(adapter);
5256 E1000_WRITE_REG(&adapter->hw, WUS, ~0);
5257
5258 return PCI_ERS_RESULT_RECOVERED;
5259}
5260
5261/**
5262 * e1000_io_resume - called when traffic can start flowing again.
5263 * @pdev: Pointer to PCI device
5264 *
5265 * This callback is called when the error recovery driver tells us that
5266 * its OK to resume normal operation. Implementation resembles the
5267 * second-half of the e1000_resume routine.
5268 */
5269static void e1000_io_resume(struct pci_dev *pdev)
5270{
5271 struct net_device *netdev = pci_get_drvdata(pdev);
5272 struct e1000_adapter *adapter = netdev->priv;
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005273
5274 e1000_init_manageability(adapter);
Auke Kok90267292006-06-08 09:30:24 -07005275
5276 if (netif_running(netdev)) {
5277 if (e1000_up(adapter)) {
5278 printk("e1000: can't bring device back up after reset\n");
5279 return;
5280 }
5281 }
5282
5283 netif_device_attach(netdev);
5284
Jeff Garzik0fccd0e2006-12-15 10:56:10 -05005285 /* If the controller is 82573 and f/w is AMT, do not set
5286 * DRV_LOAD until the interface is up. For all other cases,
5287 * let the f/w know that the h/w is now under the control
5288 * of the driver. */
5289 if (adapter->hw.mac_type != e1000_82573 ||
5290 !e1000_check_mng_mode(&adapter->hw))
5291 e1000_get_hw_control(adapter);
Auke Kok90267292006-06-08 09:30:24 -07005292
Auke Kok90267292006-06-08 09:30:24 -07005293}
5294
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295/* e1000_main.c */