blob: 3d57ca5482f4b8ed4fe9eacb6bf25ea5c49c21c6 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allanc7e54b12009-11-20 23:25:45 +00004 Copyright(c) 1999 - 2009 Intel Corporation.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005
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
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 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
22 Contact Information:
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29#include <linux/module.h>
30#include <linux/types.h>
31#include <linux/init.h>
32#include <linux/pci.h>
33#include <linux/vmalloc.h>
34#include <linux/pagemap.h>
35#include <linux/delay.h>
36#include <linux/netdevice.h>
37#include <linux/tcp.h>
38#include <linux/ipv6.h>
39#include <net/checksum.h>
40#include <net/ip6_checksum.h>
41#include <linux/mii.h>
42#include <linux/ethtool.h>
43#include <linux/if_vlan.h>
44#include <linux/cpu.h>
45#include <linux/smp.h>
Bruce Allan97ac8ca2008-04-29 09:16:05 -070046#include <linux/pm_qos_params.h>
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +000047#include <linux/aer.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070048
49#include "e1000.h"
50
Bruce Allan3be8c942009-06-02 11:29:56 +000051#define DRV_VERSION "1.0.2-k2"
Auke Kokbc7f75f2007-09-17 12:30:59 -070052char e1000e_driver_name[] = "e1000e";
53const char e1000e_driver_version[] = DRV_VERSION;
54
55static const struct e1000_info *e1000_info_tbl[] = {
56 [board_82571] = &e1000_82571_info,
57 [board_82572] = &e1000_82572_info,
58 [board_82573] = &e1000_82573_info,
Bruce Allan4662e822008-08-26 18:37:06 -070059 [board_82574] = &e1000_82574_info,
Alexander Duyck8c81c9c2009-03-19 01:12:27 +000060 [board_82583] = &e1000_82583_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070061 [board_80003es2lan] = &e1000_es2_info,
62 [board_ich8lan] = &e1000_ich8_info,
63 [board_ich9lan] = &e1000_ich9_info,
Bruce Allanf4187b52008-08-26 18:36:50 -070064 [board_ich10lan] = &e1000_ich10_info,
Bruce Allana4f58f52009-06-02 11:29:18 +000065 [board_pchlan] = &e1000_pch_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070066};
67
Auke Kokbc7f75f2007-09-17 12:30:59 -070068/**
69 * e1000_desc_unused - calculate if we have unused descriptors
70 **/
71static int e1000_desc_unused(struct e1000_ring *ring)
72{
73 if (ring->next_to_clean > ring->next_to_use)
74 return ring->next_to_clean - ring->next_to_use - 1;
75
76 return ring->count + ring->next_to_clean - ring->next_to_use - 1;
77}
78
79/**
Bruce Allanad680762008-03-28 09:15:03 -070080 * e1000_receive_skb - helper function to handle Rx indications
Auke Kokbc7f75f2007-09-17 12:30:59 -070081 * @adapter: board private structure
82 * @status: descriptor status field as written by hardware
83 * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
84 * @skb: pointer to sk_buff to be indicated to stack
85 **/
86static void e1000_receive_skb(struct e1000_adapter *adapter,
87 struct net_device *netdev,
88 struct sk_buff *skb,
Al Viroa39fe742007-12-11 19:50:34 +000089 u8 status, __le16 vlan)
Auke Kokbc7f75f2007-09-17 12:30:59 -070090{
91 skb->protocol = eth_type_trans(skb, netdev);
92
93 if (adapter->vlgrp && (status & E1000_RXD_STAT_VP))
Herbert Xuc405b822009-01-14 20:37:59 -080094 vlan_gro_receive(&adapter->napi, adapter->vlgrp,
95 le16_to_cpu(vlan), skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -070096 else
Herbert Xu89c88b12008-12-15 23:46:15 -080097 napi_gro_receive(&adapter->napi, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -070098}
99
100/**
101 * e1000_rx_checksum - Receive Checksum Offload for 82543
102 * @adapter: board private structure
103 * @status_err: receive descriptor status and error fields
104 * @csum: receive descriptor csum field
105 * @sk_buff: socket buffer with received data
106 **/
107static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
108 u32 csum, struct sk_buff *skb)
109{
110 u16 status = (u16)status_err;
111 u8 errors = (u8)(status_err >> 24);
112 skb->ip_summed = CHECKSUM_NONE;
113
114 /* Ignore Checksum bit is set */
115 if (status & E1000_RXD_STAT_IXSM)
116 return;
117 /* TCP/UDP checksum error bit is set */
118 if (errors & E1000_RXD_ERR_TCPE) {
119 /* let the stack verify checksum errors */
120 adapter->hw_csum_err++;
121 return;
122 }
123
124 /* TCP/UDP Checksum has not been calculated */
125 if (!(status & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)))
126 return;
127
128 /* It must be a TCP or UDP packet with a valid checksum */
129 if (status & E1000_RXD_STAT_TCPCS) {
130 /* TCP checksum is good */
131 skb->ip_summed = CHECKSUM_UNNECESSARY;
132 } else {
Bruce Allanad680762008-03-28 09:15:03 -0700133 /*
134 * IP fragment with UDP payload
135 * Hardware complements the payload checksum, so we undo it
Auke Kokbc7f75f2007-09-17 12:30:59 -0700136 * and then put the value in host order for further stack use.
137 */
Al Viroa39fe742007-12-11 19:50:34 +0000138 __sum16 sum = (__force __sum16)htons(csum);
139 skb->csum = csum_unfold(~sum);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700140 skb->ip_summed = CHECKSUM_COMPLETE;
141 }
142 adapter->hw_csum_good++;
143}
144
145/**
146 * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
147 * @adapter: address of board private structure
148 **/
149static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
150 int cleaned_count)
151{
152 struct net_device *netdev = adapter->netdev;
153 struct pci_dev *pdev = adapter->pdev;
154 struct e1000_ring *rx_ring = adapter->rx_ring;
155 struct e1000_rx_desc *rx_desc;
156 struct e1000_buffer *buffer_info;
157 struct sk_buff *skb;
158 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000159 unsigned int bufsz = adapter->rx_buffer_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700160
161 i = rx_ring->next_to_use;
162 buffer_info = &rx_ring->buffer_info[i];
163
164 while (cleaned_count--) {
165 skb = buffer_info->skb;
166 if (skb) {
167 skb_trim(skb, 0);
168 goto map_skb;
169 }
170
Eric Dumazet89d71a62009-10-13 05:34:20 +0000171 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700172 if (!skb) {
173 /* Better luck next round */
174 adapter->alloc_rx_buff_failed++;
175 break;
176 }
177
Auke Kokbc7f75f2007-09-17 12:30:59 -0700178 buffer_info->skb = skb;
179map_skb:
180 buffer_info->dma = pci_map_single(pdev, skb->data,
181 adapter->rx_buffer_len,
182 PCI_DMA_FROMDEVICE);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700183 if (pci_dma_mapping_error(pdev, buffer_info->dma)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700184 dev_err(&pdev->dev, "RX DMA map failed\n");
185 adapter->rx_dma_failed++;
186 break;
187 }
188
189 rx_desc = E1000_RX_DESC(*rx_ring, i);
190 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
191
192 i++;
193 if (i == rx_ring->count)
194 i = 0;
195 buffer_info = &rx_ring->buffer_info[i];
196 }
197
198 if (rx_ring->next_to_use != i) {
199 rx_ring->next_to_use = i;
200 if (i-- == 0)
201 i = (rx_ring->count - 1);
202
Bruce Allanad680762008-03-28 09:15:03 -0700203 /*
204 * Force memory writes to complete before letting h/w
Auke Kokbc7f75f2007-09-17 12:30:59 -0700205 * know there are new descriptors to fetch. (Only
206 * applicable for weak-ordered memory model archs,
Bruce Allanad680762008-03-28 09:15:03 -0700207 * such as IA-64).
208 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700209 wmb();
210 writel(i, adapter->hw.hw_addr + rx_ring->tail);
211 }
212}
213
214/**
215 * e1000_alloc_rx_buffers_ps - Replace used receive buffers; packet split
216 * @adapter: address of board private structure
217 **/
218static void e1000_alloc_rx_buffers_ps(struct e1000_adapter *adapter,
219 int cleaned_count)
220{
221 struct net_device *netdev = adapter->netdev;
222 struct pci_dev *pdev = adapter->pdev;
223 union e1000_rx_desc_packet_split *rx_desc;
224 struct e1000_ring *rx_ring = adapter->rx_ring;
225 struct e1000_buffer *buffer_info;
226 struct e1000_ps_page *ps_page;
227 struct sk_buff *skb;
228 unsigned int i, j;
229
230 i = rx_ring->next_to_use;
231 buffer_info = &rx_ring->buffer_info[i];
232
233 while (cleaned_count--) {
234 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
235
236 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -0700237 ps_page = &buffer_info->ps_pages[j];
238 if (j >= adapter->rx_ps_pages) {
239 /* all unused desc entries get hw null ptr */
Al Viroa39fe742007-12-11 19:50:34 +0000240 rx_desc->read.buffer_addr[j+1] = ~cpu_to_le64(0);
Auke Kok47f44e42007-10-25 13:57:44 -0700241 continue;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700242 }
Auke Kok47f44e42007-10-25 13:57:44 -0700243 if (!ps_page->page) {
244 ps_page->page = alloc_page(GFP_ATOMIC);
245 if (!ps_page->page) {
246 adapter->alloc_rx_buff_failed++;
247 goto no_buffers;
248 }
249 ps_page->dma = pci_map_page(pdev,
250 ps_page->page,
251 0, PAGE_SIZE,
252 PCI_DMA_FROMDEVICE);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700253 if (pci_dma_mapping_error(pdev, ps_page->dma)) {
Auke Kok47f44e42007-10-25 13:57:44 -0700254 dev_err(&adapter->pdev->dev,
255 "RX DMA page map failed\n");
256 adapter->rx_dma_failed++;
257 goto no_buffers;
258 }
259 }
260 /*
261 * Refresh the desc even if buffer_addrs
262 * didn't change because each write-back
263 * erases this info.
264 */
265 rx_desc->read.buffer_addr[j+1] =
266 cpu_to_le64(ps_page->dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700267 }
268
Eric Dumazet89d71a62009-10-13 05:34:20 +0000269 skb = netdev_alloc_skb_ip_align(netdev,
270 adapter->rx_ps_bsize0);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700271
272 if (!skb) {
273 adapter->alloc_rx_buff_failed++;
274 break;
275 }
276
Auke Kokbc7f75f2007-09-17 12:30:59 -0700277 buffer_info->skb = skb;
278 buffer_info->dma = pci_map_single(pdev, skb->data,
279 adapter->rx_ps_bsize0,
280 PCI_DMA_FROMDEVICE);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700281 if (pci_dma_mapping_error(pdev, buffer_info->dma)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700282 dev_err(&pdev->dev, "RX DMA map failed\n");
283 adapter->rx_dma_failed++;
284 /* cleanup skb */
285 dev_kfree_skb_any(skb);
286 buffer_info->skb = NULL;
287 break;
288 }
289
290 rx_desc->read.buffer_addr[0] = cpu_to_le64(buffer_info->dma);
291
292 i++;
293 if (i == rx_ring->count)
294 i = 0;
295 buffer_info = &rx_ring->buffer_info[i];
296 }
297
298no_buffers:
299 if (rx_ring->next_to_use != i) {
300 rx_ring->next_to_use = i;
301
302 if (!(i--))
303 i = (rx_ring->count - 1);
304
Bruce Allanad680762008-03-28 09:15:03 -0700305 /*
306 * Force memory writes to complete before letting h/w
Auke Kokbc7f75f2007-09-17 12:30:59 -0700307 * know there are new descriptors to fetch. (Only
308 * applicable for weak-ordered memory model archs,
Bruce Allanad680762008-03-28 09:15:03 -0700309 * such as IA-64).
310 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700311 wmb();
Bruce Allanad680762008-03-28 09:15:03 -0700312 /*
313 * Hardware increments by 16 bytes, but packet split
Auke Kokbc7f75f2007-09-17 12:30:59 -0700314 * descriptors are 32 bytes...so we increment tail
315 * twice as much.
316 */
317 writel(i<<1, adapter->hw.hw_addr + rx_ring->tail);
318 }
319}
320
321/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700322 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
323 * @adapter: address of board private structure
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700324 * @cleaned_count: number of buffers to allocate this pass
325 **/
326
327static void e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
328 int cleaned_count)
329{
330 struct net_device *netdev = adapter->netdev;
331 struct pci_dev *pdev = adapter->pdev;
332 struct e1000_rx_desc *rx_desc;
333 struct e1000_ring *rx_ring = adapter->rx_ring;
334 struct e1000_buffer *buffer_info;
335 struct sk_buff *skb;
336 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000337 unsigned int bufsz = 256 - 16 /* for skb_reserve */;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700338
339 i = rx_ring->next_to_use;
340 buffer_info = &rx_ring->buffer_info[i];
341
342 while (cleaned_count--) {
343 skb = buffer_info->skb;
344 if (skb) {
345 skb_trim(skb, 0);
346 goto check_page;
347 }
348
Eric Dumazet89d71a62009-10-13 05:34:20 +0000349 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700350 if (unlikely(!skb)) {
351 /* Better luck next round */
352 adapter->alloc_rx_buff_failed++;
353 break;
354 }
355
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700356 buffer_info->skb = skb;
357check_page:
358 /* allocate a new page if necessary */
359 if (!buffer_info->page) {
360 buffer_info->page = alloc_page(GFP_ATOMIC);
361 if (unlikely(!buffer_info->page)) {
362 adapter->alloc_rx_buff_failed++;
363 break;
364 }
365 }
366
367 if (!buffer_info->dma)
368 buffer_info->dma = pci_map_page(pdev,
369 buffer_info->page, 0,
370 PAGE_SIZE,
371 PCI_DMA_FROMDEVICE);
372
373 rx_desc = E1000_RX_DESC(*rx_ring, i);
374 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
375
376 if (unlikely(++i == rx_ring->count))
377 i = 0;
378 buffer_info = &rx_ring->buffer_info[i];
379 }
380
381 if (likely(rx_ring->next_to_use != i)) {
382 rx_ring->next_to_use = i;
383 if (unlikely(i-- == 0))
384 i = (rx_ring->count - 1);
385
386 /* Force memory writes to complete before letting h/w
387 * know there are new descriptors to fetch. (Only
388 * applicable for weak-ordered memory model archs,
389 * such as IA-64). */
390 wmb();
391 writel(i, adapter->hw.hw_addr + rx_ring->tail);
392 }
393}
394
395/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700396 * e1000_clean_rx_irq - Send received data up the network stack; legacy
397 * @adapter: board private structure
398 *
399 * the return value indicates whether actual cleaning was done, there
400 * is no guarantee that everything was cleaned
401 **/
402static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
403 int *work_done, int work_to_do)
404{
405 struct net_device *netdev = adapter->netdev;
406 struct pci_dev *pdev = adapter->pdev;
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000407 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700408 struct e1000_ring *rx_ring = adapter->rx_ring;
409 struct e1000_rx_desc *rx_desc, *next_rxd;
410 struct e1000_buffer *buffer_info, *next_buffer;
411 u32 length;
412 unsigned int i;
413 int cleaned_count = 0;
414 bool cleaned = 0;
415 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
416
417 i = rx_ring->next_to_clean;
418 rx_desc = E1000_RX_DESC(*rx_ring, i);
419 buffer_info = &rx_ring->buffer_info[i];
420
421 while (rx_desc->status & E1000_RXD_STAT_DD) {
422 struct sk_buff *skb;
423 u8 status;
424
425 if (*work_done >= work_to_do)
426 break;
427 (*work_done)++;
428
429 status = rx_desc->status;
430 skb = buffer_info->skb;
431 buffer_info->skb = NULL;
432
433 prefetch(skb->data - NET_IP_ALIGN);
434
435 i++;
436 if (i == rx_ring->count)
437 i = 0;
438 next_rxd = E1000_RX_DESC(*rx_ring, i);
439 prefetch(next_rxd);
440
441 next_buffer = &rx_ring->buffer_info[i];
442
443 cleaned = 1;
444 cleaned_count++;
445 pci_unmap_single(pdev,
446 buffer_info->dma,
447 adapter->rx_buffer_len,
448 PCI_DMA_FROMDEVICE);
449 buffer_info->dma = 0;
450
451 length = le16_to_cpu(rx_desc->length);
452
453 /* !EOP means multiple descriptors were used to store a single
454 * packet, also make sure the frame isn't just CRC only */
455 if (!(status & E1000_RXD_STAT_EOP) || (length <= 4)) {
456 /* All receives must fit into a single buffer */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000457 e_dbg("Receive packet consumed multiple buffers\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700458 /* recycle */
459 buffer_info->skb = skb;
460 goto next_desc;
461 }
462
463 if (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK) {
464 /* recycle */
465 buffer_info->skb = skb;
466 goto next_desc;
467 }
468
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000469 /* adjust length to remove Ethernet CRC */
470 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
471 length -= 4;
472
Auke Kokbc7f75f2007-09-17 12:30:59 -0700473 total_rx_bytes += length;
474 total_rx_packets++;
475
Bruce Allanad680762008-03-28 09:15:03 -0700476 /*
477 * code added for copybreak, this should improve
Auke Kokbc7f75f2007-09-17 12:30:59 -0700478 * performance for small packets with large amounts
Bruce Allanad680762008-03-28 09:15:03 -0700479 * of reassembly being done in the stack
480 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700481 if (length < copybreak) {
482 struct sk_buff *new_skb =
Eric Dumazet89d71a62009-10-13 05:34:20 +0000483 netdev_alloc_skb_ip_align(netdev, length);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700484 if (new_skb) {
Bruce Allan808ff672008-08-08 18:35:56 -0700485 skb_copy_to_linear_data_offset(new_skb,
486 -NET_IP_ALIGN,
487 (skb->data -
488 NET_IP_ALIGN),
489 (length +
490 NET_IP_ALIGN));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700491 /* save the skb in buffer_info as good */
492 buffer_info->skb = skb;
493 skb = new_skb;
494 }
495 /* else just continue with the old one */
496 }
497 /* end copybreak code */
498 skb_put(skb, length);
499
500 /* Receive Checksum Offload */
501 e1000_rx_checksum(adapter,
502 (u32)(status) |
503 ((u32)(rx_desc->errors) << 24),
504 le16_to_cpu(rx_desc->csum), skb);
505
506 e1000_receive_skb(adapter, netdev, skb,status,rx_desc->special);
507
508next_desc:
509 rx_desc->status = 0;
510
511 /* return some buffers to hardware, one at a time is too slow */
512 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
513 adapter->alloc_rx_buf(adapter, cleaned_count);
514 cleaned_count = 0;
515 }
516
517 /* use prefetched values */
518 rx_desc = next_rxd;
519 buffer_info = next_buffer;
520 }
521 rx_ring->next_to_clean = i;
522
523 cleaned_count = e1000_desc_unused(rx_ring);
524 if (cleaned_count)
525 adapter->alloc_rx_buf(adapter, cleaned_count);
526
Auke Kokbc7f75f2007-09-17 12:30:59 -0700527 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -0700528 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +0000529 netdev->stats.rx_bytes += total_rx_bytes;
530 netdev->stats.rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700531 return cleaned;
532}
533
Auke Kokbc7f75f2007-09-17 12:30:59 -0700534static void e1000_put_txbuf(struct e1000_adapter *adapter,
535 struct e1000_buffer *buffer_info)
536{
Alexander Duyck03b13202009-12-02 16:45:31 +0000537 if (buffer_info->dma) {
538 if (buffer_info->mapped_as_page)
539 pci_unmap_page(adapter->pdev, buffer_info->dma,
540 buffer_info->length, PCI_DMA_TODEVICE);
541 else
542 pci_unmap_single(adapter->pdev, buffer_info->dma,
543 buffer_info->length,
544 PCI_DMA_TODEVICE);
545 buffer_info->dma = 0;
546 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700547 if (buffer_info->skb) {
548 dev_kfree_skb_any(buffer_info->skb);
549 buffer_info->skb = NULL;
550 }
Alexander Duyck1b7719c2009-03-19 01:12:50 +0000551 buffer_info->time_stamp = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700552}
553
Bruce Allan41cec6f2009-11-20 23:28:56 +0000554static void e1000_print_hw_hang(struct work_struct *work)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700555{
Bruce Allan41cec6f2009-11-20 23:28:56 +0000556 struct e1000_adapter *adapter = container_of(work,
557 struct e1000_adapter,
558 print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700559 struct e1000_ring *tx_ring = adapter->tx_ring;
560 unsigned int i = tx_ring->next_to_clean;
561 unsigned int eop = tx_ring->buffer_info[i].next_to_watch;
562 struct e1000_tx_desc *eop_desc = E1000_TX_DESC(*tx_ring, eop);
Bruce Allan41cec6f2009-11-20 23:28:56 +0000563 struct e1000_hw *hw = &adapter->hw;
564 u16 phy_status, phy_1000t_status, phy_ext_status;
565 u16 pci_status;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700566
Bruce Allan41cec6f2009-11-20 23:28:56 +0000567 e1e_rphy(hw, PHY_STATUS, &phy_status);
568 e1e_rphy(hw, PHY_1000T_STATUS, &phy_1000t_status);
569 e1e_rphy(hw, PHY_EXT_STATUS, &phy_ext_status);
570
571 pci_read_config_word(adapter->pdev, PCI_STATUS, &pci_status);
572
573 /* detected Hardware unit hang */
574 e_err("Detected Hardware Unit Hang:\n"
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700575 " TDH <%x>\n"
576 " TDT <%x>\n"
577 " next_to_use <%x>\n"
578 " next_to_clean <%x>\n"
579 "buffer_info[next_to_clean]:\n"
580 " time_stamp <%lx>\n"
581 " next_to_watch <%x>\n"
582 " jiffies <%lx>\n"
Bruce Allan41cec6f2009-11-20 23:28:56 +0000583 " next_to_watch.status <%x>\n"
584 "MAC Status <%x>\n"
585 "PHY Status <%x>\n"
586 "PHY 1000BASE-T Status <%x>\n"
587 "PHY Extended Status <%x>\n"
588 "PCI Status <%x>\n",
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700589 readl(adapter->hw.hw_addr + tx_ring->head),
590 readl(adapter->hw.hw_addr + tx_ring->tail),
591 tx_ring->next_to_use,
592 tx_ring->next_to_clean,
593 tx_ring->buffer_info[eop].time_stamp,
594 eop,
595 jiffies,
Bruce Allan41cec6f2009-11-20 23:28:56 +0000596 eop_desc->upper.fields.status,
597 er32(STATUS),
598 phy_status,
599 phy_1000t_status,
600 phy_ext_status,
601 pci_status);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700602}
603
604/**
605 * e1000_clean_tx_irq - Reclaim resources after transmit completes
606 * @adapter: board private structure
607 *
608 * the return value indicates whether actual cleaning was done, there
609 * is no guarantee that everything was cleaned
610 **/
611static bool e1000_clean_tx_irq(struct e1000_adapter *adapter)
612{
613 struct net_device *netdev = adapter->netdev;
614 struct e1000_hw *hw = &adapter->hw;
615 struct e1000_ring *tx_ring = adapter->tx_ring;
616 struct e1000_tx_desc *tx_desc, *eop_desc;
617 struct e1000_buffer *buffer_info;
618 unsigned int i, eop;
619 unsigned int count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700620 unsigned int total_tx_bytes = 0, total_tx_packets = 0;
621
622 i = tx_ring->next_to_clean;
623 eop = tx_ring->buffer_info[i].next_to_watch;
624 eop_desc = E1000_TX_DESC(*tx_ring, eop);
625
Alexander Duyck12d04a32009-03-25 22:05:03 +0000626 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
627 (count < tx_ring->count)) {
Jesse Brandeburga86043c2009-04-16 16:59:28 +0000628 bool cleaned = false;
629 for (; !cleaned; count++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700630 tx_desc = E1000_TX_DESC(*tx_ring, i);
631 buffer_info = &tx_ring->buffer_info[i];
632 cleaned = (i == eop);
633
634 if (cleaned) {
635 struct sk_buff *skb = buffer_info->skb;
636 unsigned int segs, bytecount;
637 segs = skb_shinfo(skb)->gso_segs ?: 1;
638 /* multiply data chunks by size of headers */
639 bytecount = ((segs - 1) * skb_headlen(skb)) +
640 skb->len;
641 total_tx_packets += segs;
642 total_tx_bytes += bytecount;
643 }
644
645 e1000_put_txbuf(adapter, buffer_info);
646 tx_desc->upper.data = 0;
647
648 i++;
649 if (i == tx_ring->count)
650 i = 0;
651 }
652
653 eop = tx_ring->buffer_info[i].next_to_watch;
654 eop_desc = E1000_TX_DESC(*tx_ring, eop);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700655 }
656
657 tx_ring->next_to_clean = i;
658
659#define TX_WAKE_THRESHOLD 32
Jesse Brandeburga86043c2009-04-16 16:59:28 +0000660 if (count && netif_carrier_ok(netdev) &&
661 e1000_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700662 /* Make sure that anybody stopping the queue after this
663 * sees the new next_to_clean.
664 */
665 smp_mb();
666
667 if (netif_queue_stopped(netdev) &&
668 !(test_bit(__E1000_DOWN, &adapter->state))) {
669 netif_wake_queue(netdev);
670 ++adapter->restart_queue;
671 }
672 }
673
674 if (adapter->detect_tx_hung) {
Bruce Allan41cec6f2009-11-20 23:28:56 +0000675 /*
676 * Detect a transmit hang in hardware, this serializes the
677 * check with the clearing of time_stamp and movement of i
678 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700679 adapter->detect_tx_hung = 0;
Alexander Duyck12d04a32009-03-25 22:05:03 +0000680 if (tx_ring->buffer_info[i].time_stamp &&
681 time_after(jiffies, tx_ring->buffer_info[i].time_stamp
Joe Perches8e95a202009-12-03 07:58:21 +0000682 + (adapter->tx_timeout_factor * HZ)) &&
683 !(er32(STATUS) & E1000_STATUS_TXOFF)) {
Bruce Allan41cec6f2009-11-20 23:28:56 +0000684 schedule_work(&adapter->print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700685 netif_stop_queue(netdev);
686 }
687 }
688 adapter->total_tx_bytes += total_tx_bytes;
689 adapter->total_tx_packets += total_tx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +0000690 netdev->stats.tx_bytes += total_tx_bytes;
691 netdev->stats.tx_packets += total_tx_packets;
Alexander Duyck12d04a32009-03-25 22:05:03 +0000692 return (count < tx_ring->count);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700693}
694
695/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700696 * e1000_clean_rx_irq_ps - Send received data up the network stack; packet split
697 * @adapter: board private structure
698 *
699 * the return value indicates whether actual cleaning was done, there
700 * is no guarantee that everything was cleaned
701 **/
702static bool e1000_clean_rx_irq_ps(struct e1000_adapter *adapter,
703 int *work_done, int work_to_do)
704{
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000705 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700706 union e1000_rx_desc_packet_split *rx_desc, *next_rxd;
707 struct net_device *netdev = adapter->netdev;
708 struct pci_dev *pdev = adapter->pdev;
709 struct e1000_ring *rx_ring = adapter->rx_ring;
710 struct e1000_buffer *buffer_info, *next_buffer;
711 struct e1000_ps_page *ps_page;
712 struct sk_buff *skb;
713 unsigned int i, j;
714 u32 length, staterr;
715 int cleaned_count = 0;
716 bool cleaned = 0;
717 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
718
719 i = rx_ring->next_to_clean;
720 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
721 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
722 buffer_info = &rx_ring->buffer_info[i];
723
724 while (staterr & E1000_RXD_STAT_DD) {
725 if (*work_done >= work_to_do)
726 break;
727 (*work_done)++;
728 skb = buffer_info->skb;
729
730 /* in the packet split case this is header only */
731 prefetch(skb->data - NET_IP_ALIGN);
732
733 i++;
734 if (i == rx_ring->count)
735 i = 0;
736 next_rxd = E1000_RX_DESC_PS(*rx_ring, i);
737 prefetch(next_rxd);
738
739 next_buffer = &rx_ring->buffer_info[i];
740
741 cleaned = 1;
742 cleaned_count++;
743 pci_unmap_single(pdev, buffer_info->dma,
744 adapter->rx_ps_bsize0,
745 PCI_DMA_FROMDEVICE);
746 buffer_info->dma = 0;
747
748 if (!(staterr & E1000_RXD_STAT_EOP)) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000749 e_dbg("Packet Split buffers didn't pick up the full "
750 "packet\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700751 dev_kfree_skb_irq(skb);
752 goto next_desc;
753 }
754
755 if (staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) {
756 dev_kfree_skb_irq(skb);
757 goto next_desc;
758 }
759
760 length = le16_to_cpu(rx_desc->wb.middle.length0);
761
762 if (!length) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000763 e_dbg("Last part of the packet spanning multiple "
764 "descriptors\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700765 dev_kfree_skb_irq(skb);
766 goto next_desc;
767 }
768
769 /* Good Receive */
770 skb_put(skb, length);
771
772 {
Bruce Allanad680762008-03-28 09:15:03 -0700773 /*
774 * this looks ugly, but it seems compiler issues make it
775 * more efficient than reusing j
776 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700777 int l1 = le16_to_cpu(rx_desc->wb.upper.length[0]);
778
Bruce Allanad680762008-03-28 09:15:03 -0700779 /*
780 * page alloc/put takes too long and effects small packet
781 * throughput, so unsplit small packets and save the alloc/put
782 * only valid in softirq (napi) context to call kmap_*
783 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700784 if (l1 && (l1 <= copybreak) &&
785 ((length + l1) <= adapter->rx_ps_bsize0)) {
786 u8 *vaddr;
787
Auke Kok47f44e42007-10-25 13:57:44 -0700788 ps_page = &buffer_info->ps_pages[0];
Auke Kokbc7f75f2007-09-17 12:30:59 -0700789
Bruce Allanad680762008-03-28 09:15:03 -0700790 /*
791 * there is no documentation about how to call
Auke Kokbc7f75f2007-09-17 12:30:59 -0700792 * kmap_atomic, so we can't hold the mapping
Bruce Allanad680762008-03-28 09:15:03 -0700793 * very long
794 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700795 pci_dma_sync_single_for_cpu(pdev, ps_page->dma,
796 PAGE_SIZE, PCI_DMA_FROMDEVICE);
797 vaddr = kmap_atomic(ps_page->page, KM_SKB_DATA_SOFTIRQ);
798 memcpy(skb_tail_pointer(skb), vaddr, l1);
799 kunmap_atomic(vaddr, KM_SKB_DATA_SOFTIRQ);
800 pci_dma_sync_single_for_device(pdev, ps_page->dma,
801 PAGE_SIZE, PCI_DMA_FROMDEVICE);
Auke Kok140a7482007-10-25 13:57:58 -0700802
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000803 /* remove the CRC */
804 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
805 l1 -= 4;
806
Auke Kokbc7f75f2007-09-17 12:30:59 -0700807 skb_put(skb, l1);
808 goto copydone;
809 } /* if */
810 }
811
812 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
813 length = le16_to_cpu(rx_desc->wb.upper.length[j]);
814 if (!length)
815 break;
816
Auke Kok47f44e42007-10-25 13:57:44 -0700817 ps_page = &buffer_info->ps_pages[j];
Auke Kokbc7f75f2007-09-17 12:30:59 -0700818 pci_unmap_page(pdev, ps_page->dma, PAGE_SIZE,
819 PCI_DMA_FROMDEVICE);
820 ps_page->dma = 0;
821 skb_fill_page_desc(skb, j, ps_page->page, 0, length);
822 ps_page->page = NULL;
823 skb->len += length;
824 skb->data_len += length;
825 skb->truesize += length;
826 }
827
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000828 /* strip the ethernet crc, problem is we're using pages now so
829 * this whole operation can get a little cpu intensive
830 */
831 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
832 pskb_trim(skb, skb->len - 4);
833
Auke Kokbc7f75f2007-09-17 12:30:59 -0700834copydone:
835 total_rx_bytes += skb->len;
836 total_rx_packets++;
837
838 e1000_rx_checksum(adapter, staterr, le16_to_cpu(
839 rx_desc->wb.lower.hi_dword.csum_ip.csum), skb);
840
841 if (rx_desc->wb.upper.header_status &
842 cpu_to_le16(E1000_RXDPS_HDRSTAT_HDRSP))
843 adapter->rx_hdr_split++;
844
845 e1000_receive_skb(adapter, netdev, skb,
846 staterr, rx_desc->wb.middle.vlan);
847
848next_desc:
849 rx_desc->wb.middle.status_error &= cpu_to_le32(~0xFF);
850 buffer_info->skb = NULL;
851
852 /* return some buffers to hardware, one at a time is too slow */
853 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
854 adapter->alloc_rx_buf(adapter, cleaned_count);
855 cleaned_count = 0;
856 }
857
858 /* use prefetched values */
859 rx_desc = next_rxd;
860 buffer_info = next_buffer;
861
862 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
863 }
864 rx_ring->next_to_clean = i;
865
866 cleaned_count = e1000_desc_unused(rx_ring);
867 if (cleaned_count)
868 adapter->alloc_rx_buf(adapter, cleaned_count);
869
Auke Kokbc7f75f2007-09-17 12:30:59 -0700870 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -0700871 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +0000872 netdev->stats.rx_bytes += total_rx_bytes;
873 netdev->stats.rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700874 return cleaned;
875}
876
877/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700878 * e1000_consume_page - helper function
879 **/
880static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
881 u16 length)
882{
883 bi->page = NULL;
884 skb->len += length;
885 skb->data_len += length;
886 skb->truesize += length;
887}
888
889/**
890 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
891 * @adapter: board private structure
892 *
893 * the return value indicates whether actual cleaning was done, there
894 * is no guarantee that everything was cleaned
895 **/
896
897static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
898 int *work_done, int work_to_do)
899{
900 struct net_device *netdev = adapter->netdev;
901 struct pci_dev *pdev = adapter->pdev;
902 struct e1000_ring *rx_ring = adapter->rx_ring;
903 struct e1000_rx_desc *rx_desc, *next_rxd;
904 struct e1000_buffer *buffer_info, *next_buffer;
905 u32 length;
906 unsigned int i;
907 int cleaned_count = 0;
908 bool cleaned = false;
909 unsigned int total_rx_bytes=0, total_rx_packets=0;
910
911 i = rx_ring->next_to_clean;
912 rx_desc = E1000_RX_DESC(*rx_ring, i);
913 buffer_info = &rx_ring->buffer_info[i];
914
915 while (rx_desc->status & E1000_RXD_STAT_DD) {
916 struct sk_buff *skb;
917 u8 status;
918
919 if (*work_done >= work_to_do)
920 break;
921 (*work_done)++;
922
923 status = rx_desc->status;
924 skb = buffer_info->skb;
925 buffer_info->skb = NULL;
926
927 ++i;
928 if (i == rx_ring->count)
929 i = 0;
930 next_rxd = E1000_RX_DESC(*rx_ring, i);
931 prefetch(next_rxd);
932
933 next_buffer = &rx_ring->buffer_info[i];
934
935 cleaned = true;
936 cleaned_count++;
937 pci_unmap_page(pdev, buffer_info->dma, PAGE_SIZE,
938 PCI_DMA_FROMDEVICE);
939 buffer_info->dma = 0;
940
941 length = le16_to_cpu(rx_desc->length);
942
943 /* errors is only valid for DD + EOP descriptors */
944 if (unlikely((status & E1000_RXD_STAT_EOP) &&
945 (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) {
946 /* recycle both page and skb */
947 buffer_info->skb = skb;
948 /* an error means any chain goes out the window
949 * too */
950 if (rx_ring->rx_skb_top)
951 dev_kfree_skb(rx_ring->rx_skb_top);
952 rx_ring->rx_skb_top = NULL;
953 goto next_desc;
954 }
955
956#define rxtop rx_ring->rx_skb_top
957 if (!(status & E1000_RXD_STAT_EOP)) {
958 /* this descriptor is only the beginning (or middle) */
959 if (!rxtop) {
960 /* this is the beginning of a chain */
961 rxtop = skb;
962 skb_fill_page_desc(rxtop, 0, buffer_info->page,
963 0, length);
964 } else {
965 /* this is the middle of a chain */
966 skb_fill_page_desc(rxtop,
967 skb_shinfo(rxtop)->nr_frags,
968 buffer_info->page, 0, length);
969 /* re-use the skb, only consumed the page */
970 buffer_info->skb = skb;
971 }
972 e1000_consume_page(buffer_info, rxtop, length);
973 goto next_desc;
974 } else {
975 if (rxtop) {
976 /* end of the chain */
977 skb_fill_page_desc(rxtop,
978 skb_shinfo(rxtop)->nr_frags,
979 buffer_info->page, 0, length);
980 /* re-use the current skb, we only consumed the
981 * page */
982 buffer_info->skb = skb;
983 skb = rxtop;
984 rxtop = NULL;
985 e1000_consume_page(buffer_info, skb, length);
986 } else {
987 /* no chain, got EOP, this buf is the packet
988 * copybreak to save the put_page/alloc_page */
989 if (length <= copybreak &&
990 skb_tailroom(skb) >= length) {
991 u8 *vaddr;
992 vaddr = kmap_atomic(buffer_info->page,
993 KM_SKB_DATA_SOFTIRQ);
994 memcpy(skb_tail_pointer(skb), vaddr,
995 length);
996 kunmap_atomic(vaddr,
997 KM_SKB_DATA_SOFTIRQ);
998 /* re-use the page, so don't erase
999 * buffer_info->page */
1000 skb_put(skb, length);
1001 } else {
1002 skb_fill_page_desc(skb, 0,
1003 buffer_info->page, 0,
1004 length);
1005 e1000_consume_page(buffer_info, skb,
1006 length);
1007 }
1008 }
1009 }
1010
1011 /* Receive Checksum Offload XXX recompute due to CRC strip? */
1012 e1000_rx_checksum(adapter,
1013 (u32)(status) |
1014 ((u32)(rx_desc->errors) << 24),
1015 le16_to_cpu(rx_desc->csum), skb);
1016
1017 /* probably a little skewed due to removing CRC */
1018 total_rx_bytes += skb->len;
1019 total_rx_packets++;
1020
1021 /* eth type trans needs skb->data to point to something */
1022 if (!pskb_may_pull(skb, ETH_HLEN)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001023 e_err("pskb_may_pull failed.\n");
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001024 dev_kfree_skb(skb);
1025 goto next_desc;
1026 }
1027
1028 e1000_receive_skb(adapter, netdev, skb, status,
1029 rx_desc->special);
1030
1031next_desc:
1032 rx_desc->status = 0;
1033
1034 /* return some buffers to hardware, one at a time is too slow */
1035 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
1036 adapter->alloc_rx_buf(adapter, cleaned_count);
1037 cleaned_count = 0;
1038 }
1039
1040 /* use prefetched values */
1041 rx_desc = next_rxd;
1042 buffer_info = next_buffer;
1043 }
1044 rx_ring->next_to_clean = i;
1045
1046 cleaned_count = e1000_desc_unused(rx_ring);
1047 if (cleaned_count)
1048 adapter->alloc_rx_buf(adapter, cleaned_count);
1049
1050 adapter->total_rx_bytes += total_rx_bytes;
1051 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +00001052 netdev->stats.rx_bytes += total_rx_bytes;
1053 netdev->stats.rx_packets += total_rx_packets;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001054 return cleaned;
1055}
1056
1057/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001058 * e1000_clean_rx_ring - Free Rx Buffers per Queue
1059 * @adapter: board private structure
1060 **/
1061static void e1000_clean_rx_ring(struct e1000_adapter *adapter)
1062{
1063 struct e1000_ring *rx_ring = adapter->rx_ring;
1064 struct e1000_buffer *buffer_info;
1065 struct e1000_ps_page *ps_page;
1066 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001067 unsigned int i, j;
1068
1069 /* Free all the Rx ring sk_buffs */
1070 for (i = 0; i < rx_ring->count; i++) {
1071 buffer_info = &rx_ring->buffer_info[i];
1072 if (buffer_info->dma) {
1073 if (adapter->clean_rx == e1000_clean_rx_irq)
1074 pci_unmap_single(pdev, buffer_info->dma,
1075 adapter->rx_buffer_len,
1076 PCI_DMA_FROMDEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001077 else if (adapter->clean_rx == e1000_clean_jumbo_rx_irq)
1078 pci_unmap_page(pdev, buffer_info->dma,
1079 PAGE_SIZE,
1080 PCI_DMA_FROMDEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001081 else if (adapter->clean_rx == e1000_clean_rx_irq_ps)
1082 pci_unmap_single(pdev, buffer_info->dma,
1083 adapter->rx_ps_bsize0,
1084 PCI_DMA_FROMDEVICE);
1085 buffer_info->dma = 0;
1086 }
1087
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001088 if (buffer_info->page) {
1089 put_page(buffer_info->page);
1090 buffer_info->page = NULL;
1091 }
1092
Auke Kokbc7f75f2007-09-17 12:30:59 -07001093 if (buffer_info->skb) {
1094 dev_kfree_skb(buffer_info->skb);
1095 buffer_info->skb = NULL;
1096 }
1097
1098 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -07001099 ps_page = &buffer_info->ps_pages[j];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001100 if (!ps_page->page)
1101 break;
1102 pci_unmap_page(pdev, ps_page->dma, PAGE_SIZE,
1103 PCI_DMA_FROMDEVICE);
1104 ps_page->dma = 0;
1105 put_page(ps_page->page);
1106 ps_page->page = NULL;
1107 }
1108 }
1109
1110 /* there also may be some cached data from a chained receive */
1111 if (rx_ring->rx_skb_top) {
1112 dev_kfree_skb(rx_ring->rx_skb_top);
1113 rx_ring->rx_skb_top = NULL;
1114 }
1115
Auke Kokbc7f75f2007-09-17 12:30:59 -07001116 /* Zero out the descriptor ring */
1117 memset(rx_ring->desc, 0, rx_ring->size);
1118
1119 rx_ring->next_to_clean = 0;
1120 rx_ring->next_to_use = 0;
1121
1122 writel(0, adapter->hw.hw_addr + rx_ring->head);
1123 writel(0, adapter->hw.hw_addr + rx_ring->tail);
1124}
1125
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001126static void e1000e_downshift_workaround(struct work_struct *work)
1127{
1128 struct e1000_adapter *adapter = container_of(work,
1129 struct e1000_adapter, downshift_task);
1130
1131 e1000e_gig_downshift_workaround_ich8lan(&adapter->hw);
1132}
1133
Auke Kokbc7f75f2007-09-17 12:30:59 -07001134/**
1135 * e1000_intr_msi - Interrupt Handler
1136 * @irq: interrupt number
1137 * @data: pointer to a network interface device structure
1138 **/
1139static irqreturn_t e1000_intr_msi(int irq, void *data)
1140{
1141 struct net_device *netdev = data;
1142 struct e1000_adapter *adapter = netdev_priv(netdev);
1143 struct e1000_hw *hw = &adapter->hw;
1144 u32 icr = er32(ICR);
1145
Bruce Allanad680762008-03-28 09:15:03 -07001146 /*
1147 * read ICR disables interrupts using IAM
1148 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001149
dave graham573cca82009-02-10 12:52:05 +00001150 if (icr & E1000_ICR_LSC) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001151 hw->mac.get_link_status = 1;
Bruce Allanad680762008-03-28 09:15:03 -07001152 /*
1153 * ICH8 workaround-- Call gig speed drop workaround on cable
1154 * disconnect (LSC) before accessing any PHY registers
1155 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001156 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1157 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001158 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001159
Bruce Allanad680762008-03-28 09:15:03 -07001160 /*
1161 * 80003ES2LAN workaround-- For packet buffer work-around on
Auke Kokbc7f75f2007-09-17 12:30:59 -07001162 * link down event; disable receives here in the ISR and reset
Bruce Allanad680762008-03-28 09:15:03 -07001163 * adapter in watchdog
1164 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001165 if (netif_carrier_ok(netdev) &&
1166 adapter->flags & FLAG_RX_NEEDS_RESTART) {
1167 /* disable receives */
1168 u32 rctl = er32(RCTL);
1169 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001170 adapter->flags |= FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001171 }
1172 /* guard against interrupt when we're going down */
1173 if (!test_bit(__E1000_DOWN, &adapter->state))
1174 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1175 }
1176
Ben Hutchings288379f2009-01-19 16:43:59 -08001177 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001178 adapter->total_tx_bytes = 0;
1179 adapter->total_tx_packets = 0;
1180 adapter->total_rx_bytes = 0;
1181 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001182 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001183 }
1184
1185 return IRQ_HANDLED;
1186}
1187
1188/**
1189 * e1000_intr - Interrupt Handler
1190 * @irq: interrupt number
1191 * @data: pointer to a network interface device structure
1192 **/
1193static irqreturn_t e1000_intr(int irq, void *data)
1194{
1195 struct net_device *netdev = data;
1196 struct e1000_adapter *adapter = netdev_priv(netdev);
1197 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001198 u32 rctl, icr = er32(ICR);
Bruce Allan4662e822008-08-26 18:37:06 -07001199
Bruce Allana68ea772009-11-20 23:23:16 +00001200 if (!icr || test_bit(__E1000_DOWN, &adapter->state))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001201 return IRQ_NONE; /* Not our interrupt */
1202
Bruce Allanad680762008-03-28 09:15:03 -07001203 /*
1204 * IMS will not auto-mask if INT_ASSERTED is not set, and if it is
1205 * not set, then the adapter didn't send an interrupt
1206 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001207 if (!(icr & E1000_ICR_INT_ASSERTED))
1208 return IRQ_NONE;
1209
Bruce Allanad680762008-03-28 09:15:03 -07001210 /*
1211 * Interrupt Auto-Mask...upon reading ICR,
1212 * interrupts are masked. No need for the
1213 * IMC write
1214 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001215
dave graham573cca82009-02-10 12:52:05 +00001216 if (icr & E1000_ICR_LSC) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001217 hw->mac.get_link_status = 1;
Bruce Allanad680762008-03-28 09:15:03 -07001218 /*
1219 * ICH8 workaround-- Call gig speed drop workaround on cable
1220 * disconnect (LSC) before accessing any PHY registers
1221 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001222 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1223 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001224 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001225
Bruce Allanad680762008-03-28 09:15:03 -07001226 /*
1227 * 80003ES2LAN workaround--
Auke Kokbc7f75f2007-09-17 12:30:59 -07001228 * For packet buffer work-around on link down event;
1229 * disable receives here in the ISR and
1230 * reset adapter in watchdog
1231 */
1232 if (netif_carrier_ok(netdev) &&
1233 (adapter->flags & FLAG_RX_NEEDS_RESTART)) {
1234 /* disable receives */
1235 rctl = er32(RCTL);
1236 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001237 adapter->flags |= FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001238 }
1239 /* guard against interrupt when we're going down */
1240 if (!test_bit(__E1000_DOWN, &adapter->state))
1241 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1242 }
1243
Ben Hutchings288379f2009-01-19 16:43:59 -08001244 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001245 adapter->total_tx_bytes = 0;
1246 adapter->total_tx_packets = 0;
1247 adapter->total_rx_bytes = 0;
1248 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001249 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001250 }
1251
1252 return IRQ_HANDLED;
1253}
1254
Bruce Allan4662e822008-08-26 18:37:06 -07001255static irqreturn_t e1000_msix_other(int irq, void *data)
1256{
1257 struct net_device *netdev = data;
1258 struct e1000_adapter *adapter = netdev_priv(netdev);
1259 struct e1000_hw *hw = &adapter->hw;
1260 u32 icr = er32(ICR);
1261
1262 if (!(icr & E1000_ICR_INT_ASSERTED)) {
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001263 if (!test_bit(__E1000_DOWN, &adapter->state))
1264 ew32(IMS, E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001265 return IRQ_NONE;
1266 }
1267
1268 if (icr & adapter->eiac_mask)
1269 ew32(ICS, (icr & adapter->eiac_mask));
1270
1271 if (icr & E1000_ICR_OTHER) {
1272 if (!(icr & E1000_ICR_LSC))
1273 goto no_link_interrupt;
1274 hw->mac.get_link_status = 1;
1275 /* guard against interrupt when we're going down */
1276 if (!test_bit(__E1000_DOWN, &adapter->state))
1277 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1278 }
1279
1280no_link_interrupt:
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001281 if (!test_bit(__E1000_DOWN, &adapter->state))
1282 ew32(IMS, E1000_IMS_LSC | E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001283
1284 return IRQ_HANDLED;
1285}
1286
1287
1288static irqreturn_t e1000_intr_msix_tx(int irq, void *data)
1289{
1290 struct net_device *netdev = data;
1291 struct e1000_adapter *adapter = netdev_priv(netdev);
1292 struct e1000_hw *hw = &adapter->hw;
1293 struct e1000_ring *tx_ring = adapter->tx_ring;
1294
1295
1296 adapter->total_tx_bytes = 0;
1297 adapter->total_tx_packets = 0;
1298
1299 if (!e1000_clean_tx_irq(adapter))
1300 /* Ring was not completely cleaned, so fire another interrupt */
1301 ew32(ICS, tx_ring->ims_val);
1302
1303 return IRQ_HANDLED;
1304}
1305
1306static irqreturn_t e1000_intr_msix_rx(int irq, void *data)
1307{
1308 struct net_device *netdev = data;
1309 struct e1000_adapter *adapter = netdev_priv(netdev);
1310
1311 /* Write the ITR value calculated at the end of the
1312 * previous interrupt.
1313 */
1314 if (adapter->rx_ring->set_itr) {
1315 writel(1000000000 / (adapter->rx_ring->itr_val * 256),
1316 adapter->hw.hw_addr + adapter->rx_ring->itr_register);
1317 adapter->rx_ring->set_itr = 0;
1318 }
1319
Ben Hutchings288379f2009-01-19 16:43:59 -08001320 if (napi_schedule_prep(&adapter->napi)) {
Bruce Allan4662e822008-08-26 18:37:06 -07001321 adapter->total_rx_bytes = 0;
1322 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001323 __napi_schedule(&adapter->napi);
Bruce Allan4662e822008-08-26 18:37:06 -07001324 }
1325 return IRQ_HANDLED;
1326}
1327
1328/**
1329 * e1000_configure_msix - Configure MSI-X hardware
1330 *
1331 * e1000_configure_msix sets up the hardware to properly
1332 * generate MSI-X interrupts.
1333 **/
1334static void e1000_configure_msix(struct e1000_adapter *adapter)
1335{
1336 struct e1000_hw *hw = &adapter->hw;
1337 struct e1000_ring *rx_ring = adapter->rx_ring;
1338 struct e1000_ring *tx_ring = adapter->tx_ring;
1339 int vector = 0;
1340 u32 ctrl_ext, ivar = 0;
1341
1342 adapter->eiac_mask = 0;
1343
1344 /* Workaround issue with spurious interrupts on 82574 in MSI-X mode */
1345 if (hw->mac.type == e1000_82574) {
1346 u32 rfctl = er32(RFCTL);
1347 rfctl |= E1000_RFCTL_ACK_DIS;
1348 ew32(RFCTL, rfctl);
1349 }
1350
1351#define E1000_IVAR_INT_ALLOC_VALID 0x8
1352 /* Configure Rx vector */
1353 rx_ring->ims_val = E1000_IMS_RXQ0;
1354 adapter->eiac_mask |= rx_ring->ims_val;
1355 if (rx_ring->itr_val)
1356 writel(1000000000 / (rx_ring->itr_val * 256),
1357 hw->hw_addr + rx_ring->itr_register);
1358 else
1359 writel(1, hw->hw_addr + rx_ring->itr_register);
1360 ivar = E1000_IVAR_INT_ALLOC_VALID | vector;
1361
1362 /* Configure Tx vector */
1363 tx_ring->ims_val = E1000_IMS_TXQ0;
1364 vector++;
1365 if (tx_ring->itr_val)
1366 writel(1000000000 / (tx_ring->itr_val * 256),
1367 hw->hw_addr + tx_ring->itr_register);
1368 else
1369 writel(1, hw->hw_addr + tx_ring->itr_register);
1370 adapter->eiac_mask |= tx_ring->ims_val;
1371 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 8);
1372
1373 /* set vector for Other Causes, e.g. link changes */
1374 vector++;
1375 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 16);
1376 if (rx_ring->itr_val)
1377 writel(1000000000 / (rx_ring->itr_val * 256),
1378 hw->hw_addr + E1000_EITR_82574(vector));
1379 else
1380 writel(1, hw->hw_addr + E1000_EITR_82574(vector));
1381
1382 /* Cause Tx interrupts on every write back */
1383 ivar |= (1 << 31);
1384
1385 ew32(IVAR, ivar);
1386
1387 /* enable MSI-X PBA support */
1388 ctrl_ext = er32(CTRL_EXT);
1389 ctrl_ext |= E1000_CTRL_EXT_PBA_CLR;
1390
1391 /* Auto-Mask Other interrupts upon ICR read */
1392#define E1000_EIAC_MASK_82574 0x01F00000
1393 ew32(IAM, ~E1000_EIAC_MASK_82574 | E1000_IMS_OTHER);
1394 ctrl_ext |= E1000_CTRL_EXT_EIAME;
1395 ew32(CTRL_EXT, ctrl_ext);
1396 e1e_flush();
1397}
1398
1399void e1000e_reset_interrupt_capability(struct e1000_adapter *adapter)
1400{
1401 if (adapter->msix_entries) {
1402 pci_disable_msix(adapter->pdev);
1403 kfree(adapter->msix_entries);
1404 adapter->msix_entries = NULL;
1405 } else if (adapter->flags & FLAG_MSI_ENABLED) {
1406 pci_disable_msi(adapter->pdev);
1407 adapter->flags &= ~FLAG_MSI_ENABLED;
1408 }
1409
1410 return;
1411}
1412
1413/**
1414 * e1000e_set_interrupt_capability - set MSI or MSI-X if supported
1415 *
1416 * Attempt to configure interrupts using the best available
1417 * capabilities of the hardware and kernel.
1418 **/
1419void e1000e_set_interrupt_capability(struct e1000_adapter *adapter)
1420{
1421 int err;
1422 int numvecs, i;
1423
1424
1425 switch (adapter->int_mode) {
1426 case E1000E_INT_MODE_MSIX:
1427 if (adapter->flags & FLAG_HAS_MSIX) {
1428 numvecs = 3; /* RxQ0, TxQ0 and other */
1429 adapter->msix_entries = kcalloc(numvecs,
1430 sizeof(struct msix_entry),
1431 GFP_KERNEL);
1432 if (adapter->msix_entries) {
1433 for (i = 0; i < numvecs; i++)
1434 adapter->msix_entries[i].entry = i;
1435
1436 err = pci_enable_msix(adapter->pdev,
1437 adapter->msix_entries,
1438 numvecs);
1439 if (err == 0)
1440 return;
1441 }
1442 /* MSI-X failed, so fall through and try MSI */
1443 e_err("Failed to initialize MSI-X interrupts. "
1444 "Falling back to MSI interrupts.\n");
1445 e1000e_reset_interrupt_capability(adapter);
1446 }
1447 adapter->int_mode = E1000E_INT_MODE_MSI;
1448 /* Fall through */
1449 case E1000E_INT_MODE_MSI:
1450 if (!pci_enable_msi(adapter->pdev)) {
1451 adapter->flags |= FLAG_MSI_ENABLED;
1452 } else {
1453 adapter->int_mode = E1000E_INT_MODE_LEGACY;
1454 e_err("Failed to initialize MSI interrupts. Falling "
1455 "back to legacy interrupts.\n");
1456 }
1457 /* Fall through */
1458 case E1000E_INT_MODE_LEGACY:
1459 /* Don't do anything; this is the system default */
1460 break;
1461 }
1462
1463 return;
1464}
1465
1466/**
1467 * e1000_request_msix - Initialize MSI-X interrupts
1468 *
1469 * e1000_request_msix allocates MSI-X vectors and requests interrupts from the
1470 * kernel.
1471 **/
1472static int e1000_request_msix(struct e1000_adapter *adapter)
1473{
1474 struct net_device *netdev = adapter->netdev;
1475 int err = 0, vector = 0;
1476
1477 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Alexander Duyckcb7b48f2008-12-05 15:08:03 -08001478 sprintf(adapter->rx_ring->name, "%s-rx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07001479 else
1480 memcpy(adapter->rx_ring->name, netdev->name, IFNAMSIZ);
1481 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001482 e1000_intr_msix_rx, 0, adapter->rx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07001483 netdev);
1484 if (err)
1485 goto out;
1486 adapter->rx_ring->itr_register = E1000_EITR_82574(vector);
1487 adapter->rx_ring->itr_val = adapter->itr;
1488 vector++;
1489
1490 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Alexander Duyckcb7b48f2008-12-05 15:08:03 -08001491 sprintf(adapter->tx_ring->name, "%s-tx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07001492 else
1493 memcpy(adapter->tx_ring->name, netdev->name, IFNAMSIZ);
1494 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001495 e1000_intr_msix_tx, 0, adapter->tx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07001496 netdev);
1497 if (err)
1498 goto out;
1499 adapter->tx_ring->itr_register = E1000_EITR_82574(vector);
1500 adapter->tx_ring->itr_val = adapter->itr;
1501 vector++;
1502
1503 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001504 e1000_msix_other, 0, netdev->name, netdev);
Bruce Allan4662e822008-08-26 18:37:06 -07001505 if (err)
1506 goto out;
1507
1508 e1000_configure_msix(adapter);
1509 return 0;
1510out:
1511 return err;
1512}
1513
Bruce Allanf8d59f72008-08-08 18:36:11 -07001514/**
1515 * e1000_request_irq - initialize interrupts
1516 *
1517 * Attempts to configure interrupts using the best available
1518 * capabilities of the hardware and kernel.
1519 **/
Auke Kokbc7f75f2007-09-17 12:30:59 -07001520static int e1000_request_irq(struct e1000_adapter *adapter)
1521{
1522 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001523 int err;
1524
Bruce Allan4662e822008-08-26 18:37:06 -07001525 if (adapter->msix_entries) {
1526 err = e1000_request_msix(adapter);
1527 if (!err)
1528 return err;
1529 /* fall back to MSI */
1530 e1000e_reset_interrupt_capability(adapter);
1531 adapter->int_mode = E1000E_INT_MODE_MSI;
1532 e1000e_set_interrupt_capability(adapter);
1533 }
1534 if (adapter->flags & FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08001535 err = request_irq(adapter->pdev->irq, e1000_intr_msi, 0,
Bruce Allan4662e822008-08-26 18:37:06 -07001536 netdev->name, netdev);
1537 if (!err)
1538 return err;
1539
1540 /* fall back to legacy interrupt */
1541 e1000e_reset_interrupt_capability(adapter);
1542 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001543 }
1544
Joe Perchesa0607fd2009-11-18 23:29:17 -08001545 err = request_irq(adapter->pdev->irq, e1000_intr, IRQF_SHARED,
Bruce Allan4662e822008-08-26 18:37:06 -07001546 netdev->name, netdev);
1547 if (err)
Bruce Allanf8d59f72008-08-08 18:36:11 -07001548 e_err("Unable to allocate interrupt, Error: %d\n", err);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001549
1550 return err;
1551}
1552
1553static void e1000_free_irq(struct e1000_adapter *adapter)
1554{
1555 struct net_device *netdev = adapter->netdev;
1556
Bruce Allan4662e822008-08-26 18:37:06 -07001557 if (adapter->msix_entries) {
1558 int vector = 0;
1559
1560 free_irq(adapter->msix_entries[vector].vector, netdev);
1561 vector++;
1562
1563 free_irq(adapter->msix_entries[vector].vector, netdev);
1564 vector++;
1565
1566 /* Other Causes interrupt vector */
1567 free_irq(adapter->msix_entries[vector].vector, netdev);
1568 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001569 }
Bruce Allan4662e822008-08-26 18:37:06 -07001570
1571 free_irq(adapter->pdev->irq, netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001572}
1573
1574/**
1575 * e1000_irq_disable - Mask off interrupt generation on the NIC
1576 **/
1577static void e1000_irq_disable(struct e1000_adapter *adapter)
1578{
1579 struct e1000_hw *hw = &adapter->hw;
1580
Auke Kokbc7f75f2007-09-17 12:30:59 -07001581 ew32(IMC, ~0);
Bruce Allan4662e822008-08-26 18:37:06 -07001582 if (adapter->msix_entries)
1583 ew32(EIAC_82574, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001584 e1e_flush();
1585 synchronize_irq(adapter->pdev->irq);
1586}
1587
1588/**
1589 * e1000_irq_enable - Enable default interrupt generation settings
1590 **/
1591static void e1000_irq_enable(struct e1000_adapter *adapter)
1592{
1593 struct e1000_hw *hw = &adapter->hw;
1594
Bruce Allan4662e822008-08-26 18:37:06 -07001595 if (adapter->msix_entries) {
1596 ew32(EIAC_82574, adapter->eiac_mask & E1000_EIAC_MASK_82574);
1597 ew32(IMS, adapter->eiac_mask | E1000_IMS_OTHER | E1000_IMS_LSC);
1598 } else {
1599 ew32(IMS, IMS_ENABLE_MASK);
1600 }
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07001601 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -07001602}
1603
1604/**
1605 * e1000_get_hw_control - get control of the h/w from f/w
1606 * @adapter: address of board private structure
1607 *
Auke Kok489815c2008-02-21 15:11:07 -08001608 * e1000_get_hw_control sets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001609 * For ASF and Pass Through versions of f/w this means that
1610 * the driver is loaded. For AMT version (only with 82573)
1611 * of the f/w this means that the network i/f is open.
1612 **/
1613static void e1000_get_hw_control(struct e1000_adapter *adapter)
1614{
1615 struct e1000_hw *hw = &adapter->hw;
1616 u32 ctrl_ext;
1617 u32 swsm;
1618
1619 /* Let firmware know the driver has taken over */
1620 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
1621 swsm = er32(SWSM);
1622 ew32(SWSM, swsm | E1000_SWSM_DRV_LOAD);
1623 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
1624 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07001625 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001626 }
1627}
1628
1629/**
1630 * e1000_release_hw_control - release control of the h/w to f/w
1631 * @adapter: address of board private structure
1632 *
Auke Kok489815c2008-02-21 15:11:07 -08001633 * e1000_release_hw_control resets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001634 * For ASF and Pass Through versions of f/w this means that the
1635 * driver is no longer loaded. For AMT version (only with 82573) i
1636 * of the f/w this means that the network i/f is closed.
1637 *
1638 **/
1639static void e1000_release_hw_control(struct e1000_adapter *adapter)
1640{
1641 struct e1000_hw *hw = &adapter->hw;
1642 u32 ctrl_ext;
1643 u32 swsm;
1644
1645 /* Let firmware taken over control of h/w */
1646 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
1647 swsm = er32(SWSM);
1648 ew32(SWSM, swsm & ~E1000_SWSM_DRV_LOAD);
1649 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
1650 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07001651 ew32(CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001652 }
1653}
1654
Auke Kokbc7f75f2007-09-17 12:30:59 -07001655/**
1656 * @e1000_alloc_ring - allocate memory for a ring structure
1657 **/
1658static int e1000_alloc_ring_dma(struct e1000_adapter *adapter,
1659 struct e1000_ring *ring)
1660{
1661 struct pci_dev *pdev = adapter->pdev;
1662
1663 ring->desc = dma_alloc_coherent(&pdev->dev, ring->size, &ring->dma,
1664 GFP_KERNEL);
1665 if (!ring->desc)
1666 return -ENOMEM;
1667
1668 return 0;
1669}
1670
1671/**
1672 * e1000e_setup_tx_resources - allocate Tx resources (Descriptors)
1673 * @adapter: board private structure
1674 *
1675 * Return 0 on success, negative on failure
1676 **/
1677int e1000e_setup_tx_resources(struct e1000_adapter *adapter)
1678{
1679 struct e1000_ring *tx_ring = adapter->tx_ring;
1680 int err = -ENOMEM, size;
1681
1682 size = sizeof(struct e1000_buffer) * tx_ring->count;
1683 tx_ring->buffer_info = vmalloc(size);
1684 if (!tx_ring->buffer_info)
1685 goto err;
1686 memset(tx_ring->buffer_info, 0, size);
1687
1688 /* round up to nearest 4K */
1689 tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc);
1690 tx_ring->size = ALIGN(tx_ring->size, 4096);
1691
1692 err = e1000_alloc_ring_dma(adapter, tx_ring);
1693 if (err)
1694 goto err;
1695
1696 tx_ring->next_to_use = 0;
1697 tx_ring->next_to_clean = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001698
1699 return 0;
1700err:
1701 vfree(tx_ring->buffer_info);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001702 e_err("Unable to allocate memory for the transmit descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001703 return err;
1704}
1705
1706/**
1707 * e1000e_setup_rx_resources - allocate Rx resources (Descriptors)
1708 * @adapter: board private structure
1709 *
1710 * Returns 0 on success, negative on failure
1711 **/
1712int e1000e_setup_rx_resources(struct e1000_adapter *adapter)
1713{
1714 struct e1000_ring *rx_ring = adapter->rx_ring;
Auke Kok47f44e42007-10-25 13:57:44 -07001715 struct e1000_buffer *buffer_info;
1716 int i, size, desc_len, err = -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001717
1718 size = sizeof(struct e1000_buffer) * rx_ring->count;
1719 rx_ring->buffer_info = vmalloc(size);
1720 if (!rx_ring->buffer_info)
1721 goto err;
1722 memset(rx_ring->buffer_info, 0, size);
1723
Auke Kok47f44e42007-10-25 13:57:44 -07001724 for (i = 0; i < rx_ring->count; i++) {
1725 buffer_info = &rx_ring->buffer_info[i];
1726 buffer_info->ps_pages = kcalloc(PS_PAGE_BUFFERS,
1727 sizeof(struct e1000_ps_page),
1728 GFP_KERNEL);
1729 if (!buffer_info->ps_pages)
1730 goto err_pages;
1731 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001732
1733 desc_len = sizeof(union e1000_rx_desc_packet_split);
1734
1735 /* Round up to nearest 4K */
1736 rx_ring->size = rx_ring->count * desc_len;
1737 rx_ring->size = ALIGN(rx_ring->size, 4096);
1738
1739 err = e1000_alloc_ring_dma(adapter, rx_ring);
1740 if (err)
Auke Kok47f44e42007-10-25 13:57:44 -07001741 goto err_pages;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001742
1743 rx_ring->next_to_clean = 0;
1744 rx_ring->next_to_use = 0;
1745 rx_ring->rx_skb_top = NULL;
1746
1747 return 0;
Auke Kok47f44e42007-10-25 13:57:44 -07001748
1749err_pages:
1750 for (i = 0; i < rx_ring->count; i++) {
1751 buffer_info = &rx_ring->buffer_info[i];
1752 kfree(buffer_info->ps_pages);
1753 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001754err:
1755 vfree(rx_ring->buffer_info);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001756 e_err("Unable to allocate memory for the transmit descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001757 return err;
1758}
1759
1760/**
1761 * e1000_clean_tx_ring - Free Tx Buffers
1762 * @adapter: board private structure
1763 **/
1764static void e1000_clean_tx_ring(struct e1000_adapter *adapter)
1765{
1766 struct e1000_ring *tx_ring = adapter->tx_ring;
1767 struct e1000_buffer *buffer_info;
1768 unsigned long size;
1769 unsigned int i;
1770
1771 for (i = 0; i < tx_ring->count; i++) {
1772 buffer_info = &tx_ring->buffer_info[i];
1773 e1000_put_txbuf(adapter, buffer_info);
1774 }
1775
1776 size = sizeof(struct e1000_buffer) * tx_ring->count;
1777 memset(tx_ring->buffer_info, 0, size);
1778
1779 memset(tx_ring->desc, 0, tx_ring->size);
1780
1781 tx_ring->next_to_use = 0;
1782 tx_ring->next_to_clean = 0;
1783
1784 writel(0, adapter->hw.hw_addr + tx_ring->head);
1785 writel(0, adapter->hw.hw_addr + tx_ring->tail);
1786}
1787
1788/**
1789 * e1000e_free_tx_resources - Free Tx Resources per Queue
1790 * @adapter: board private structure
1791 *
1792 * Free all transmit software resources
1793 **/
1794void e1000e_free_tx_resources(struct e1000_adapter *adapter)
1795{
1796 struct pci_dev *pdev = adapter->pdev;
1797 struct e1000_ring *tx_ring = adapter->tx_ring;
1798
1799 e1000_clean_tx_ring(adapter);
1800
1801 vfree(tx_ring->buffer_info);
1802 tx_ring->buffer_info = NULL;
1803
1804 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
1805 tx_ring->dma);
1806 tx_ring->desc = NULL;
1807}
1808
1809/**
1810 * e1000e_free_rx_resources - Free Rx Resources
1811 * @adapter: board private structure
1812 *
1813 * Free all receive software resources
1814 **/
1815
1816void e1000e_free_rx_resources(struct e1000_adapter *adapter)
1817{
1818 struct pci_dev *pdev = adapter->pdev;
1819 struct e1000_ring *rx_ring = adapter->rx_ring;
Auke Kok47f44e42007-10-25 13:57:44 -07001820 int i;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001821
1822 e1000_clean_rx_ring(adapter);
1823
Auke Kok47f44e42007-10-25 13:57:44 -07001824 for (i = 0; i < rx_ring->count; i++) {
1825 kfree(rx_ring->buffer_info[i].ps_pages);
1826 }
1827
Auke Kokbc7f75f2007-09-17 12:30:59 -07001828 vfree(rx_ring->buffer_info);
1829 rx_ring->buffer_info = NULL;
1830
Auke Kokbc7f75f2007-09-17 12:30:59 -07001831 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
1832 rx_ring->dma);
1833 rx_ring->desc = NULL;
1834}
1835
1836/**
1837 * e1000_update_itr - update the dynamic ITR value based on statistics
Auke Kok489815c2008-02-21 15:11:07 -08001838 * @adapter: pointer to adapter
1839 * @itr_setting: current adapter->itr
1840 * @packets: the number of packets during this measurement interval
1841 * @bytes: the number of bytes during this measurement interval
1842 *
Auke Kokbc7f75f2007-09-17 12:30:59 -07001843 * Stores a new ITR value based on packets and byte
1844 * counts during the last interrupt. The advantage of per interrupt
1845 * computation is faster updates and more accurate ITR for the current
1846 * traffic pattern. Constants in this function were computed
1847 * based on theoretical maximum wire speed and thresholds were set based
1848 * on testing data as well as attempting to minimize response time
Bruce Allan4662e822008-08-26 18:37:06 -07001849 * while increasing bulk throughput. This functionality is controlled
1850 * by the InterruptThrottleRate module parameter.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001851 **/
1852static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
1853 u16 itr_setting, int packets,
1854 int bytes)
1855{
1856 unsigned int retval = itr_setting;
1857
1858 if (packets == 0)
1859 goto update_itr_done;
1860
1861 switch (itr_setting) {
1862 case lowest_latency:
1863 /* handle TSO and jumbo frames */
1864 if (bytes/packets > 8000)
1865 retval = bulk_latency;
1866 else if ((packets < 5) && (bytes > 512)) {
1867 retval = low_latency;
1868 }
1869 break;
1870 case low_latency: /* 50 usec aka 20000 ints/s */
1871 if (bytes > 10000) {
1872 /* this if handles the TSO accounting */
1873 if (bytes/packets > 8000) {
1874 retval = bulk_latency;
1875 } else if ((packets < 10) || ((bytes/packets) > 1200)) {
1876 retval = bulk_latency;
1877 } else if ((packets > 35)) {
1878 retval = lowest_latency;
1879 }
1880 } else if (bytes/packets > 2000) {
1881 retval = bulk_latency;
1882 } else if (packets <= 2 && bytes < 512) {
1883 retval = lowest_latency;
1884 }
1885 break;
1886 case bulk_latency: /* 250 usec aka 4000 ints/s */
1887 if (bytes > 25000) {
1888 if (packets > 35) {
1889 retval = low_latency;
1890 }
1891 } else if (bytes < 6000) {
1892 retval = low_latency;
1893 }
1894 break;
1895 }
1896
1897update_itr_done:
1898 return retval;
1899}
1900
1901static void e1000_set_itr(struct e1000_adapter *adapter)
1902{
1903 struct e1000_hw *hw = &adapter->hw;
1904 u16 current_itr;
1905 u32 new_itr = adapter->itr;
1906
1907 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
1908 if (adapter->link_speed != SPEED_1000) {
1909 current_itr = 0;
1910 new_itr = 4000;
1911 goto set_itr_now;
1912 }
1913
1914 adapter->tx_itr = e1000_update_itr(adapter,
1915 adapter->tx_itr,
1916 adapter->total_tx_packets,
1917 adapter->total_tx_bytes);
1918 /* conservative mode (itr 3) eliminates the lowest_latency setting */
1919 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
1920 adapter->tx_itr = low_latency;
1921
1922 adapter->rx_itr = e1000_update_itr(adapter,
1923 adapter->rx_itr,
1924 adapter->total_rx_packets,
1925 adapter->total_rx_bytes);
1926 /* conservative mode (itr 3) eliminates the lowest_latency setting */
1927 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
1928 adapter->rx_itr = low_latency;
1929
1930 current_itr = max(adapter->rx_itr, adapter->tx_itr);
1931
1932 switch (current_itr) {
1933 /* counts and packets in update_itr are dependent on these numbers */
1934 case lowest_latency:
1935 new_itr = 70000;
1936 break;
1937 case low_latency:
1938 new_itr = 20000; /* aka hwitr = ~200 */
1939 break;
1940 case bulk_latency:
1941 new_itr = 4000;
1942 break;
1943 default:
1944 break;
1945 }
1946
1947set_itr_now:
1948 if (new_itr != adapter->itr) {
Bruce Allanad680762008-03-28 09:15:03 -07001949 /*
1950 * this attempts to bias the interrupt rate towards Bulk
Auke Kokbc7f75f2007-09-17 12:30:59 -07001951 * by adding intermediate steps when interrupt rate is
Bruce Allanad680762008-03-28 09:15:03 -07001952 * increasing
1953 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001954 new_itr = new_itr > adapter->itr ?
1955 min(adapter->itr + (new_itr >> 2), new_itr) :
1956 new_itr;
1957 adapter->itr = new_itr;
Bruce Allan4662e822008-08-26 18:37:06 -07001958 adapter->rx_ring->itr_val = new_itr;
1959 if (adapter->msix_entries)
1960 adapter->rx_ring->set_itr = 1;
1961 else
1962 ew32(ITR, 1000000000 / (new_itr * 256));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001963 }
1964}
1965
1966/**
Bruce Allan4662e822008-08-26 18:37:06 -07001967 * e1000_alloc_queues - Allocate memory for all rings
1968 * @adapter: board private structure to initialize
1969 **/
1970static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
1971{
1972 adapter->tx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
1973 if (!adapter->tx_ring)
1974 goto err;
1975
1976 adapter->rx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
1977 if (!adapter->rx_ring)
1978 goto err;
1979
1980 return 0;
1981err:
1982 e_err("Unable to allocate memory for queues\n");
1983 kfree(adapter->rx_ring);
1984 kfree(adapter->tx_ring);
1985 return -ENOMEM;
1986}
1987
1988/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001989 * e1000_clean - NAPI Rx polling callback
Bruce Allanad680762008-03-28 09:15:03 -07001990 * @napi: struct associated with this polling callback
Auke Kok489815c2008-02-21 15:11:07 -08001991 * @budget: amount of packets driver is allowed to process this poll
Auke Kokbc7f75f2007-09-17 12:30:59 -07001992 **/
1993static int e1000_clean(struct napi_struct *napi, int budget)
1994{
1995 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
Bruce Allan4662e822008-08-26 18:37:06 -07001996 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001997 struct net_device *poll_dev = adapter->netdev;
Andy Gospodarek679e8a02009-06-18 11:57:37 +00001998 int tx_cleaned = 1, work_done = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001999
Wang Chen4cf16532008-11-12 23:38:14 -08002000 adapter = netdev_priv(poll_dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002001
Bruce Allan4662e822008-08-26 18:37:06 -07002002 if (adapter->msix_entries &&
2003 !(adapter->rx_ring->ims_val & adapter->tx_ring->ims_val))
2004 goto clean_rx;
2005
Jesse Brandeburg92af3e92009-01-19 14:17:08 +00002006 tx_cleaned = e1000_clean_tx_irq(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002007
Bruce Allan4662e822008-08-26 18:37:06 -07002008clean_rx:
Auke Kokbc7f75f2007-09-17 12:30:59 -07002009 adapter->clean_rx(adapter, &work_done, budget);
2010
Alexander Duyck12d04a32009-03-25 22:05:03 +00002011 if (!tx_cleaned)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08002012 work_done = budget;
2013
David S. Miller53e52c72008-01-07 21:06:12 -08002014 /* If budget not fully consumed, exit the polling mode */
2015 if (work_done < budget) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002016 if (adapter->itr_setting & 3)
2017 e1000_set_itr(adapter);
Ben Hutchings288379f2009-01-19 16:43:59 -08002018 napi_complete(napi);
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00002019 if (!test_bit(__E1000_DOWN, &adapter->state)) {
2020 if (adapter->msix_entries)
2021 ew32(IMS, adapter->rx_ring->ims_val);
2022 else
2023 e1000_irq_enable(adapter);
2024 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002025 }
2026
2027 return work_done;
2028}
2029
2030static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
2031{
2032 struct e1000_adapter *adapter = netdev_priv(netdev);
2033 struct e1000_hw *hw = &adapter->hw;
2034 u32 vfta, index;
2035
2036 /* don't update vlan cookie if already programmed */
2037 if ((adapter->hw.mng_cookie.status &
2038 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2039 (vid == adapter->mng_vlan_id))
2040 return;
Bruce Allancaaddaf2009-12-01 15:46:43 +00002041
Auke Kokbc7f75f2007-09-17 12:30:59 -07002042 /* add VID to filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002043 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2044 index = (vid >> 5) & 0x7F;
2045 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2046 vfta |= (1 << (vid & 0x1F));
2047 hw->mac.ops.write_vfta(hw, index, vfta);
2048 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002049}
2050
2051static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
2052{
2053 struct e1000_adapter *adapter = netdev_priv(netdev);
2054 struct e1000_hw *hw = &adapter->hw;
2055 u32 vfta, index;
2056
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002057 if (!test_bit(__E1000_DOWN, &adapter->state))
2058 e1000_irq_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002059 vlan_group_set_device(adapter->vlgrp, vid, NULL);
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002060
2061 if (!test_bit(__E1000_DOWN, &adapter->state))
2062 e1000_irq_enable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002063
2064 if ((adapter->hw.mng_cookie.status &
2065 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2066 (vid == adapter->mng_vlan_id)) {
2067 /* release control to f/w */
2068 e1000_release_hw_control(adapter);
2069 return;
2070 }
2071
2072 /* remove VID from filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002073 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2074 index = (vid >> 5) & 0x7F;
2075 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2076 vfta &= ~(1 << (vid & 0x1F));
2077 hw->mac.ops.write_vfta(hw, index, vfta);
2078 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002079}
2080
2081static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
2082{
2083 struct net_device *netdev = adapter->netdev;
2084 u16 vid = adapter->hw.mng_cookie.vlan_id;
2085 u16 old_vid = adapter->mng_vlan_id;
2086
2087 if (!adapter->vlgrp)
2088 return;
2089
2090 if (!vlan_group_get_device(adapter->vlgrp, vid)) {
2091 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2092 if (adapter->hw.mng_cookie.status &
2093 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
2094 e1000_vlan_rx_add_vid(netdev, vid);
2095 adapter->mng_vlan_id = vid;
2096 }
2097
2098 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) &&
2099 (vid != old_vid) &&
2100 !vlan_group_get_device(adapter->vlgrp, old_vid))
2101 e1000_vlan_rx_kill_vid(netdev, old_vid);
2102 } else {
2103 adapter->mng_vlan_id = vid;
2104 }
2105}
2106
2107
2108static void e1000_vlan_rx_register(struct net_device *netdev,
2109 struct vlan_group *grp)
2110{
2111 struct e1000_adapter *adapter = netdev_priv(netdev);
2112 struct e1000_hw *hw = &adapter->hw;
2113 u32 ctrl, rctl;
2114
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002115 if (!test_bit(__E1000_DOWN, &adapter->state))
2116 e1000_irq_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002117 adapter->vlgrp = grp;
2118
2119 if (grp) {
2120 /* enable VLAN tag insert/strip */
2121 ctrl = er32(CTRL);
2122 ctrl |= E1000_CTRL_VME;
2123 ew32(CTRL, ctrl);
2124
2125 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2126 /* enable VLAN receive filtering */
2127 rctl = er32(RCTL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002128 rctl &= ~E1000_RCTL_CFIEN;
2129 ew32(RCTL, rctl);
2130 e1000_update_mng_vlan(adapter);
2131 }
2132 } else {
2133 /* disable VLAN tag insert/strip */
2134 ctrl = er32(CTRL);
2135 ctrl &= ~E1000_CTRL_VME;
2136 ew32(CTRL, ctrl);
2137
2138 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002139 if (adapter->mng_vlan_id !=
2140 (u16)E1000_MNG_VLAN_NONE) {
2141 e1000_vlan_rx_kill_vid(netdev,
2142 adapter->mng_vlan_id);
2143 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2144 }
2145 }
2146 }
2147
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002148 if (!test_bit(__E1000_DOWN, &adapter->state))
2149 e1000_irq_enable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002150}
2151
2152static void e1000_restore_vlan(struct e1000_adapter *adapter)
2153{
2154 u16 vid;
2155
2156 e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
2157
2158 if (!adapter->vlgrp)
2159 return;
2160
2161 for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
2162 if (!vlan_group_get_device(adapter->vlgrp, vid))
2163 continue;
2164 e1000_vlan_rx_add_vid(adapter->netdev, vid);
2165 }
2166}
2167
2168static void e1000_init_manageability(struct e1000_adapter *adapter)
2169{
2170 struct e1000_hw *hw = &adapter->hw;
2171 u32 manc, manc2h;
2172
2173 if (!(adapter->flags & FLAG_MNG_PT_ENABLED))
2174 return;
2175
2176 manc = er32(MANC);
2177
Bruce Allanad680762008-03-28 09:15:03 -07002178 /*
2179 * enable receiving management packets to the host. this will probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07002180 * generate destination unreachable messages from the host OS, but
Bruce Allanad680762008-03-28 09:15:03 -07002181 * the packets will be handled on SMBUS
2182 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002183 manc |= E1000_MANC_EN_MNG2HOST;
2184 manc2h = er32(MANC2H);
2185#define E1000_MNG2HOST_PORT_623 (1 << 5)
2186#define E1000_MNG2HOST_PORT_664 (1 << 6)
2187 manc2h |= E1000_MNG2HOST_PORT_623;
2188 manc2h |= E1000_MNG2HOST_PORT_664;
2189 ew32(MANC2H, manc2h);
2190 ew32(MANC, manc);
2191}
2192
2193/**
2194 * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
2195 * @adapter: board private structure
2196 *
2197 * Configure the Tx unit of the MAC after a reset.
2198 **/
2199static void e1000_configure_tx(struct e1000_adapter *adapter)
2200{
2201 struct e1000_hw *hw = &adapter->hw;
2202 struct e1000_ring *tx_ring = adapter->tx_ring;
2203 u64 tdba;
2204 u32 tdlen, tctl, tipg, tarc;
2205 u32 ipgr1, ipgr2;
2206
2207 /* Setup the HW Tx Head and Tail descriptor pointers */
2208 tdba = tx_ring->dma;
2209 tdlen = tx_ring->count * sizeof(struct e1000_tx_desc);
Yang Hongyang284901a2009-04-06 19:01:15 -07002210 ew32(TDBAL, (tdba & DMA_BIT_MASK(32)));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002211 ew32(TDBAH, (tdba >> 32));
2212 ew32(TDLEN, tdlen);
2213 ew32(TDH, 0);
2214 ew32(TDT, 0);
2215 tx_ring->head = E1000_TDH;
2216 tx_ring->tail = E1000_TDT;
2217
2218 /* Set the default values for the Tx Inter Packet Gap timer */
2219 tipg = DEFAULT_82543_TIPG_IPGT_COPPER; /* 8 */
2220 ipgr1 = DEFAULT_82543_TIPG_IPGR1; /* 8 */
2221 ipgr2 = DEFAULT_82543_TIPG_IPGR2; /* 6 */
2222
2223 if (adapter->flags & FLAG_TIPG_MEDIUM_FOR_80003ESLAN)
2224 ipgr2 = DEFAULT_80003ES2LAN_TIPG_IPGR2; /* 7 */
2225
2226 tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
2227 tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
2228 ew32(TIPG, tipg);
2229
2230 /* Set the Tx Interrupt Delay register */
2231 ew32(TIDV, adapter->tx_int_delay);
Bruce Allanad680762008-03-28 09:15:03 -07002232 /* Tx irq moderation */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002233 ew32(TADV, adapter->tx_abs_int_delay);
2234
2235 /* Program the Transmit Control Register */
2236 tctl = er32(TCTL);
2237 tctl &= ~E1000_TCTL_CT;
2238 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
2239 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
2240
2241 if (adapter->flags & FLAG_TARC_SPEED_MODE_BIT) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002242 tarc = er32(TARC(0));
Bruce Allanad680762008-03-28 09:15:03 -07002243 /*
2244 * set the speed mode bit, we'll clear it if we're not at
2245 * gigabit link later
2246 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002247#define SPEED_MODE_BIT (1 << 21)
2248 tarc |= SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002249 ew32(TARC(0), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002250 }
2251
2252 /* errata: program both queues to unweighted RR */
2253 if (adapter->flags & FLAG_TARC_SET_BIT_ZERO) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002254 tarc = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002255 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002256 ew32(TARC(0), tarc);
2257 tarc = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002258 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002259 ew32(TARC(1), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002260 }
2261
Auke Kokbc7f75f2007-09-17 12:30:59 -07002262 /* Setup Transmit Descriptor Settings for eop descriptor */
2263 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
2264
2265 /* only set IDE if we are delaying interrupts using the timers */
2266 if (adapter->tx_int_delay)
2267 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
2268
2269 /* enable Report Status bit */
2270 adapter->txd_cmd |= E1000_TXD_CMD_RS;
2271
2272 ew32(TCTL, tctl);
2273
Simon Hormanedfea6e62009-06-08 14:28:36 +00002274 e1000e_config_collision_dist(hw);
2275
Auke Kokbc7f75f2007-09-17 12:30:59 -07002276 adapter->tx_queue_len = adapter->netdev->tx_queue_len;
2277}
2278
2279/**
2280 * e1000_setup_rctl - configure the receive control registers
2281 * @adapter: Board private structure
2282 **/
2283#define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
2284 (((S) & (PAGE_SIZE - 1)) ? 1 : 0))
2285static void e1000_setup_rctl(struct e1000_adapter *adapter)
2286{
2287 struct e1000_hw *hw = &adapter->hw;
2288 u32 rctl, rfctl;
2289 u32 psrctl = 0;
2290 u32 pages = 0;
2291
2292 /* Program MC offset vector base */
2293 rctl = er32(RCTL);
2294 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
2295 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
2296 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
2297 (adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
2298
2299 /* Do not Store bad packets */
2300 rctl &= ~E1000_RCTL_SBP;
2301
2302 /* Enable Long Packet receive */
2303 if (adapter->netdev->mtu <= ETH_DATA_LEN)
2304 rctl &= ~E1000_RCTL_LPE;
2305 else
2306 rctl |= E1000_RCTL_LPE;
2307
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00002308 /* Some systems expect that the CRC is included in SMBUS traffic. The
2309 * hardware strips the CRC before sending to both SMBUS (BMC) and to
2310 * host memory when this is enabled
2311 */
2312 if (adapter->flags2 & FLAG2_CRC_STRIPPING)
2313 rctl |= E1000_RCTL_SECRC;
Auke Kok5918bd82008-02-12 15:20:24 -08002314
Bruce Allana4f58f52009-06-02 11:29:18 +00002315 /* Workaround Si errata on 82577 PHY - configure IPG for jumbos */
2316 if ((hw->phy.type == e1000_phy_82577) && (rctl & E1000_RCTL_LPE)) {
2317 u16 phy_data;
2318
2319 e1e_rphy(hw, PHY_REG(770, 26), &phy_data);
2320 phy_data &= 0xfff8;
2321 phy_data |= (1 << 2);
2322 e1e_wphy(hw, PHY_REG(770, 26), phy_data);
2323
2324 e1e_rphy(hw, 22, &phy_data);
2325 phy_data &= 0x0fff;
2326 phy_data |= (1 << 14);
2327 e1e_wphy(hw, 0x10, 0x2823);
2328 e1e_wphy(hw, 0x11, 0x0003);
2329 e1e_wphy(hw, 22, phy_data);
2330 }
2331
Auke Kokbc7f75f2007-09-17 12:30:59 -07002332 /* Setup buffer sizes */
2333 rctl &= ~E1000_RCTL_SZ_4096;
2334 rctl |= E1000_RCTL_BSEX;
2335 switch (adapter->rx_buffer_len) {
2336 case 256:
2337 rctl |= E1000_RCTL_SZ_256;
2338 rctl &= ~E1000_RCTL_BSEX;
2339 break;
2340 case 512:
2341 rctl |= E1000_RCTL_SZ_512;
2342 rctl &= ~E1000_RCTL_BSEX;
2343 break;
2344 case 1024:
2345 rctl |= E1000_RCTL_SZ_1024;
2346 rctl &= ~E1000_RCTL_BSEX;
2347 break;
2348 case 2048:
2349 default:
2350 rctl |= E1000_RCTL_SZ_2048;
2351 rctl &= ~E1000_RCTL_BSEX;
2352 break;
2353 case 4096:
2354 rctl |= E1000_RCTL_SZ_4096;
2355 break;
2356 case 8192:
2357 rctl |= E1000_RCTL_SZ_8192;
2358 break;
2359 case 16384:
2360 rctl |= E1000_RCTL_SZ_16384;
2361 break;
2362 }
2363
2364 /*
2365 * 82571 and greater support packet-split where the protocol
2366 * header is placed in skb->data and the packet data is
2367 * placed in pages hanging off of skb_shinfo(skb)->nr_frags.
2368 * In the case of a non-split, skb->data is linearly filled,
2369 * followed by the page buffers. Therefore, skb->data is
2370 * sized to hold the largest protocol header.
2371 *
2372 * allocations using alloc_page take too long for regular MTU
2373 * so only enable packet split for jumbo frames
2374 *
2375 * Using pages when the page size is greater than 16k wastes
2376 * a lot of memory, since we allocate 3 pages at all times
2377 * per packet.
2378 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002379 pages = PAGE_USE_COUNT(adapter->netdev->mtu);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002380 if (!(adapter->flags & FLAG_IS_ICH) && (pages <= 3) &&
2381 (PAGE_SIZE <= 16384) && (rctl & E1000_RCTL_LPE))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002382 adapter->rx_ps_pages = pages;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002383 else
2384 adapter->rx_ps_pages = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002385
2386 if (adapter->rx_ps_pages) {
2387 /* Configure extra packet-split registers */
2388 rfctl = er32(RFCTL);
2389 rfctl |= E1000_RFCTL_EXTEN;
Bruce Allanad680762008-03-28 09:15:03 -07002390 /*
2391 * disable packet split support for IPv6 extension headers,
2392 * because some malformed IPv6 headers can hang the Rx
2393 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002394 rfctl |= (E1000_RFCTL_IPV6_EX_DIS |
2395 E1000_RFCTL_NEW_IPV6_EXT_DIS);
2396
2397 ew32(RFCTL, rfctl);
2398
Auke Kok140a7482007-10-25 13:57:58 -07002399 /* Enable Packet split descriptors */
2400 rctl |= E1000_RCTL_DTYP_PS;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002401
2402 psrctl |= adapter->rx_ps_bsize0 >>
2403 E1000_PSRCTL_BSIZE0_SHIFT;
2404
2405 switch (adapter->rx_ps_pages) {
2406 case 3:
2407 psrctl |= PAGE_SIZE <<
2408 E1000_PSRCTL_BSIZE3_SHIFT;
2409 case 2:
2410 psrctl |= PAGE_SIZE <<
2411 E1000_PSRCTL_BSIZE2_SHIFT;
2412 case 1:
2413 psrctl |= PAGE_SIZE >>
2414 E1000_PSRCTL_BSIZE1_SHIFT;
2415 break;
2416 }
2417
2418 ew32(PSRCTL, psrctl);
2419 }
2420
2421 ew32(RCTL, rctl);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002422 /* just started the receive unit, no need to restart */
2423 adapter->flags &= ~FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002424}
2425
2426/**
2427 * e1000_configure_rx - Configure Receive Unit after Reset
2428 * @adapter: board private structure
2429 *
2430 * Configure the Rx unit of the MAC after a reset.
2431 **/
2432static void e1000_configure_rx(struct e1000_adapter *adapter)
2433{
2434 struct e1000_hw *hw = &adapter->hw;
2435 struct e1000_ring *rx_ring = adapter->rx_ring;
2436 u64 rdba;
2437 u32 rdlen, rctl, rxcsum, ctrl_ext;
2438
2439 if (adapter->rx_ps_pages) {
2440 /* this is a 32 byte descriptor */
2441 rdlen = rx_ring->count *
2442 sizeof(union e1000_rx_desc_packet_split);
2443 adapter->clean_rx = e1000_clean_rx_irq_ps;
2444 adapter->alloc_rx_buf = e1000_alloc_rx_buffers_ps;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002445 } else if (adapter->netdev->mtu > ETH_FRAME_LEN + ETH_FCS_LEN) {
2446 rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
2447 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
2448 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002449 } else {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002450 rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002451 adapter->clean_rx = e1000_clean_rx_irq;
2452 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
2453 }
2454
2455 /* disable receives while setting up the descriptors */
2456 rctl = er32(RCTL);
2457 ew32(RCTL, rctl & ~E1000_RCTL_EN);
2458 e1e_flush();
2459 msleep(10);
2460
2461 /* set the Receive Delay Timer Register */
2462 ew32(RDTR, adapter->rx_int_delay);
2463
2464 /* irq moderation */
2465 ew32(RADV, adapter->rx_abs_int_delay);
2466 if (adapter->itr_setting != 0)
Bruce Allanad680762008-03-28 09:15:03 -07002467 ew32(ITR, 1000000000 / (adapter->itr * 256));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002468
2469 ctrl_ext = er32(CTRL_EXT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002470 /* Auto-Mask interrupts upon ICR access */
2471 ctrl_ext |= E1000_CTRL_EXT_IAME;
2472 ew32(IAM, 0xffffffff);
2473 ew32(CTRL_EXT, ctrl_ext);
2474 e1e_flush();
2475
Bruce Allanad680762008-03-28 09:15:03 -07002476 /*
2477 * Setup the HW Rx Head and Tail Descriptor Pointers and
2478 * the Base and Length of the Rx Descriptor Ring
2479 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002480 rdba = rx_ring->dma;
Yang Hongyang284901a2009-04-06 19:01:15 -07002481 ew32(RDBAL, (rdba & DMA_BIT_MASK(32)));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002482 ew32(RDBAH, (rdba >> 32));
2483 ew32(RDLEN, rdlen);
2484 ew32(RDH, 0);
2485 ew32(RDT, 0);
2486 rx_ring->head = E1000_RDH;
2487 rx_ring->tail = E1000_RDT;
2488
2489 /* Enable Receive Checksum Offload for TCP and UDP */
2490 rxcsum = er32(RXCSUM);
2491 if (adapter->flags & FLAG_RX_CSUM_ENABLED) {
2492 rxcsum |= E1000_RXCSUM_TUOFL;
2493
Bruce Allanad680762008-03-28 09:15:03 -07002494 /*
2495 * IPv4 payload checksum for UDP fragments must be
2496 * used in conjunction with packet-split.
2497 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002498 if (adapter->rx_ps_pages)
2499 rxcsum |= E1000_RXCSUM_IPPCSE;
2500 } else {
2501 rxcsum &= ~E1000_RXCSUM_TUOFL;
2502 /* no need to clear IPPCSE as it defaults to 0 */
2503 }
2504 ew32(RXCSUM, rxcsum);
2505
Bruce Allanad680762008-03-28 09:15:03 -07002506 /*
2507 * Enable early receives on supported devices, only takes effect when
Auke Kokbc7f75f2007-09-17 12:30:59 -07002508 * packet size is equal or larger than the specified value (in 8 byte
Bruce Allanad680762008-03-28 09:15:03 -07002509 * units), e.g. using jumbo frames when setting to E1000_ERT_2048
2510 */
Bruce Allan53ec5492009-11-20 23:27:40 +00002511 if (adapter->flags & FLAG_HAS_ERT) {
2512 if (adapter->netdev->mtu > ETH_DATA_LEN) {
2513 u32 rxdctl = er32(RXDCTL(0));
2514 ew32(RXDCTL(0), rxdctl | 0x3);
2515 ew32(ERT, E1000_ERT_2048 | (1 << 13));
2516 /*
2517 * With jumbo frames and early-receive enabled,
2518 * excessive C-state transition latencies result in
2519 * dropped transactions.
2520 */
2521 pm_qos_update_requirement(PM_QOS_CPU_DMA_LATENCY,
2522 adapter->netdev->name, 55);
2523 } else {
2524 pm_qos_update_requirement(PM_QOS_CPU_DMA_LATENCY,
2525 adapter->netdev->name,
2526 PM_QOS_DEFAULT_VALUE);
2527 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002528 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002529
2530 /* Enable Receives */
2531 ew32(RCTL, rctl);
2532}
2533
2534/**
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07002535 * e1000_update_mc_addr_list - Update Multicast addresses
Auke Kokbc7f75f2007-09-17 12:30:59 -07002536 * @hw: pointer to the HW structure
2537 * @mc_addr_list: array of multicast addresses to program
2538 * @mc_addr_count: number of multicast addresses to program
Auke Kokbc7f75f2007-09-17 12:30:59 -07002539 *
Bruce Allanab8932f2010-01-13 02:05:38 +00002540 * Updates the Multicast Table Array.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002541 * The caller must have a packed mc_addr_list of multicast addresses.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002542 **/
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07002543static void e1000_update_mc_addr_list(struct e1000_hw *hw, u8 *mc_addr_list,
Bruce Allanab8932f2010-01-13 02:05:38 +00002544 u32 mc_addr_count)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002545{
Bruce Allanab8932f2010-01-13 02:05:38 +00002546 hw->mac.ops.update_mc_addr_list(hw, mc_addr_list, mc_addr_count);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002547}
2548
2549/**
2550 * e1000_set_multi - Multicast and Promiscuous mode set
2551 * @netdev: network interface device structure
2552 *
2553 * The set_multi entry point is called whenever the multicast address
2554 * list or the network interface flags are updated. This routine is
2555 * responsible for configuring the hardware for proper multicast,
2556 * promiscuous mode, and all-multi behavior.
2557 **/
2558static void e1000_set_multi(struct net_device *netdev)
2559{
2560 struct e1000_adapter *adapter = netdev_priv(netdev);
2561 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002562 struct dev_mc_list *mc_ptr;
2563 u8 *mta_list;
2564 u32 rctl;
2565 int i;
2566
2567 /* Check for Promiscuous and All Multicast modes */
2568
2569 rctl = er32(RCTL);
2570
2571 if (netdev->flags & IFF_PROMISC) {
2572 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Patrick McHardy746b9f02008-07-16 20:15:45 -07002573 rctl &= ~E1000_RCTL_VFE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002574 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07002575 if (netdev->flags & IFF_ALLMULTI) {
2576 rctl |= E1000_RCTL_MPE;
2577 rctl &= ~E1000_RCTL_UPE;
2578 } else {
2579 rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE);
2580 }
Patrick McHardy78ed11a2008-07-16 20:16:14 -07002581 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
Patrick McHardy746b9f02008-07-16 20:15:45 -07002582 rctl |= E1000_RCTL_VFE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002583 }
2584
2585 ew32(RCTL, rctl);
2586
2587 if (netdev->mc_count) {
2588 mta_list = kmalloc(netdev->mc_count * 6, GFP_ATOMIC);
2589 if (!mta_list)
2590 return;
2591
2592 /* prepare a packed array of only addresses. */
2593 mc_ptr = netdev->mc_list;
2594
2595 for (i = 0; i < netdev->mc_count; i++) {
2596 if (!mc_ptr)
2597 break;
2598 memcpy(mta_list + (i*ETH_ALEN), mc_ptr->dmi_addr,
2599 ETH_ALEN);
2600 mc_ptr = mc_ptr->next;
2601 }
2602
Bruce Allanab8932f2010-01-13 02:05:38 +00002603 e1000_update_mc_addr_list(hw, mta_list, i);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002604 kfree(mta_list);
2605 } else {
2606 /*
2607 * if we're called from probe, we might not have
2608 * anything to do here, so clear out the list
2609 */
Bruce Allanab8932f2010-01-13 02:05:38 +00002610 e1000_update_mc_addr_list(hw, NULL, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002611 }
2612}
2613
2614/**
Bruce Allanad680762008-03-28 09:15:03 -07002615 * e1000_configure - configure the hardware for Rx and Tx
Auke Kokbc7f75f2007-09-17 12:30:59 -07002616 * @adapter: private board structure
2617 **/
2618static void e1000_configure(struct e1000_adapter *adapter)
2619{
2620 e1000_set_multi(adapter->netdev);
2621
2622 e1000_restore_vlan(adapter);
2623 e1000_init_manageability(adapter);
2624
2625 e1000_configure_tx(adapter);
2626 e1000_setup_rctl(adapter);
2627 e1000_configure_rx(adapter);
Bruce Allanad680762008-03-28 09:15:03 -07002628 adapter->alloc_rx_buf(adapter, e1000_desc_unused(adapter->rx_ring));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002629}
2630
2631/**
2632 * e1000e_power_up_phy - restore link in case the phy was powered down
2633 * @adapter: address of board private structure
2634 *
2635 * The phy may be powered down to save power and turn off link when the
2636 * driver is unloaded and wake on lan is not enabled (among others)
2637 * *** this routine MUST be followed by a call to e1000e_reset ***
2638 **/
2639void e1000e_power_up_phy(struct e1000_adapter *adapter)
2640{
Bruce Allan17f208d2009-12-01 15:47:22 +00002641 if (adapter->hw.phy.ops.power_up)
2642 adapter->hw.phy.ops.power_up(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002643
2644 adapter->hw.mac.ops.setup_link(&adapter->hw);
2645}
2646
2647/**
2648 * e1000_power_down_phy - Power down the PHY
2649 *
Bruce Allan17f208d2009-12-01 15:47:22 +00002650 * Power down the PHY so no link is implied when interface is down.
2651 * The PHY cannot be powered down if management or WoL is active.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002652 */
2653static void e1000_power_down_phy(struct e1000_adapter *adapter)
2654{
Auke Kokbc7f75f2007-09-17 12:30:59 -07002655 /* WoL is enabled */
Auke Kok23b66e22008-02-11 09:25:51 -08002656 if (adapter->wol)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002657 return;
2658
Bruce Allan17f208d2009-12-01 15:47:22 +00002659 if (adapter->hw.phy.ops.power_down)
2660 adapter->hw.phy.ops.power_down(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002661}
2662
2663/**
2664 * e1000e_reset - bring the hardware into a known good state
2665 *
2666 * This function boots the hardware and enables some settings that
2667 * require a configuration cycle of the hardware - those cannot be
2668 * set/changed during runtime. After reset the device needs to be
Bruce Allanad680762008-03-28 09:15:03 -07002669 * properly configured for Rx, Tx etc.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002670 */
2671void e1000e_reset(struct e1000_adapter *adapter)
2672{
2673 struct e1000_mac_info *mac = &adapter->hw.mac;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002674 struct e1000_fc_info *fc = &adapter->hw.fc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002675 struct e1000_hw *hw = &adapter->hw;
2676 u32 tx_space, min_tx_space, min_rx_space;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002677 u32 pba = adapter->pba;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002678 u16 hwm;
2679
Bruce Allanad680762008-03-28 09:15:03 -07002680 /* reset Packet Buffer Allocation to default */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002681 ew32(PBA, pba);
Auke Kokdf762462007-10-25 13:57:53 -07002682
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002683 if (adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allanad680762008-03-28 09:15:03 -07002684 /*
2685 * To maintain wire speed transmits, the Tx FIFO should be
Auke Kokbc7f75f2007-09-17 12:30:59 -07002686 * large enough to accommodate two full transmit packets,
2687 * rounded up to the next 1KB and expressed in KB. Likewise,
2688 * the Rx FIFO should be large enough to accommodate at least
2689 * one full receive packet and is similarly rounded up and
Bruce Allanad680762008-03-28 09:15:03 -07002690 * expressed in KB.
2691 */
Auke Kokdf762462007-10-25 13:57:53 -07002692 pba = er32(PBA);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002693 /* upper 16 bits has Tx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07002694 tx_space = pba >> 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002695 /* lower 16 bits has Rx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07002696 pba &= 0xffff;
Bruce Allanad680762008-03-28 09:15:03 -07002697 /*
2698 * the Tx fifo also stores 16 bytes of information about the tx
2699 * but don't include ethernet FCS because hardware appends it
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002700 */
2701 min_tx_space = (adapter->max_frame_size +
Auke Kokbc7f75f2007-09-17 12:30:59 -07002702 sizeof(struct e1000_tx_desc) -
2703 ETH_FCS_LEN) * 2;
2704 min_tx_space = ALIGN(min_tx_space, 1024);
2705 min_tx_space >>= 10;
2706 /* software strips receive CRC, so leave room for it */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002707 min_rx_space = adapter->max_frame_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002708 min_rx_space = ALIGN(min_rx_space, 1024);
2709 min_rx_space >>= 10;
2710
Bruce Allanad680762008-03-28 09:15:03 -07002711 /*
2712 * If current Tx allocation is less than the min Tx FIFO size,
Auke Kokbc7f75f2007-09-17 12:30:59 -07002713 * and the min Tx FIFO size is less than the current Rx FIFO
Bruce Allanad680762008-03-28 09:15:03 -07002714 * allocation, take space away from current Rx allocation
2715 */
Auke Kokdf762462007-10-25 13:57:53 -07002716 if ((tx_space < min_tx_space) &&
2717 ((min_tx_space - tx_space) < pba)) {
2718 pba -= min_tx_space - tx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002719
Bruce Allanad680762008-03-28 09:15:03 -07002720 /*
2721 * if short on Rx space, Rx wins and must trump tx
2722 * adjustment or use Early Receive if available
2723 */
Auke Kokdf762462007-10-25 13:57:53 -07002724 if ((pba < min_rx_space) &&
Auke Kokbc7f75f2007-09-17 12:30:59 -07002725 (!(adapter->flags & FLAG_HAS_ERT)))
2726 /* ERT enabled in e1000_configure_rx */
Auke Kokdf762462007-10-25 13:57:53 -07002727 pba = min_rx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002728 }
Auke Kokdf762462007-10-25 13:57:53 -07002729
2730 ew32(PBA, pba);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002731 }
2732
Auke Kokbc7f75f2007-09-17 12:30:59 -07002733
Bruce Allanad680762008-03-28 09:15:03 -07002734 /*
2735 * flow control settings
2736 *
Bruce Allan38eb3942009-11-19 12:34:20 +00002737 * The high water mark must be low enough to fit one full frame
Auke Kokbc7f75f2007-09-17 12:30:59 -07002738 * (or the size used for early receive) above it in the Rx FIFO.
2739 * Set it to the lower of:
2740 * - 90% of the Rx FIFO size, and
2741 * - the full Rx FIFO size minus the early receive size (for parts
2742 * with ERT support assuming ERT set to E1000_ERT_2048), or
Bruce Allan38eb3942009-11-19 12:34:20 +00002743 * - the full Rx FIFO size minus one full frame
Bruce Allanad680762008-03-28 09:15:03 -07002744 */
Bruce Allan38eb3942009-11-19 12:34:20 +00002745 if (hw->mac.type == e1000_pchlan) {
2746 /*
2747 * Workaround PCH LOM adapter hangs with certain network
2748 * loads. If hangs persist, try disabling Tx flow control.
2749 */
2750 if (adapter->netdev->mtu > ETH_DATA_LEN) {
2751 fc->high_water = 0x3500;
2752 fc->low_water = 0x1500;
2753 } else {
2754 fc->high_water = 0x5000;
2755 fc->low_water = 0x3000;
2756 }
2757 } else {
2758 if ((adapter->flags & FLAG_HAS_ERT) &&
2759 (adapter->netdev->mtu > ETH_DATA_LEN))
2760 hwm = min(((pba << 10) * 9 / 10),
2761 ((pba << 10) - (E1000_ERT_2048 << 3)));
2762 else
2763 hwm = min(((pba << 10) * 9 / 10),
2764 ((pba << 10) - adapter->max_frame_size));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002765
Bruce Allan38eb3942009-11-19 12:34:20 +00002766 fc->high_water = hwm & E1000_FCRTH_RTH; /* 8-byte granularity */
2767 fc->low_water = fc->high_water - 8;
2768 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002769
2770 if (adapter->flags & FLAG_DISABLE_FC_PAUSE_TIME)
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002771 fc->pause_time = 0xFFFF;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002772 else
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002773 fc->pause_time = E1000_FC_PAUSE_TIME;
2774 fc->send_xon = 1;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08002775 fc->current_mode = fc->requested_mode;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002776
2777 /* Allow time for pending master requests to run */
2778 mac->ops.reset_hw(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002779
2780 /*
2781 * For parts with AMT enabled, let the firmware know
2782 * that the network interface is in control
2783 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07002784 if (adapter->flags & FLAG_HAS_AMT)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002785 e1000_get_hw_control(adapter);
2786
Auke Kokbc7f75f2007-09-17 12:30:59 -07002787 ew32(WUC, 0);
Bruce Allana4f58f52009-06-02 11:29:18 +00002788 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP)
2789 e1e_wphy(&adapter->hw, BM_WUC, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002790
2791 if (mac->ops.init_hw(hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07002792 e_err("Hardware Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002793
Bruce Allan38eb3942009-11-19 12:34:20 +00002794 /* additional part of the flow-control workaround above */
2795 if (hw->mac.type == e1000_pchlan)
2796 ew32(FCRTV_PCH, 0x1000);
2797
Auke Kokbc7f75f2007-09-17 12:30:59 -07002798 e1000_update_mng_vlan(adapter);
2799
2800 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
2801 ew32(VET, ETH_P_8021Q);
2802
2803 e1000e_reset_adaptive(hw);
2804 e1000_get_phy_info(hw);
2805
Bruce Allan918d7192009-06-02 11:28:20 +00002806 if ((adapter->flags & FLAG_HAS_SMART_POWER_DOWN) &&
2807 !(adapter->flags & FLAG_SMART_POWER_DOWN)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002808 u16 phy_data = 0;
Bruce Allanad680762008-03-28 09:15:03 -07002809 /*
2810 * speed up time to link by disabling smart power down, ignore
Auke Kokbc7f75f2007-09-17 12:30:59 -07002811 * the return value of this function because there is nothing
Bruce Allanad680762008-03-28 09:15:03 -07002812 * different we would do if it failed
2813 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002814 e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &phy_data);
2815 phy_data &= ~IGP02E1000_PM_SPD;
2816 e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, phy_data);
2817 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002818}
2819
2820int e1000e_up(struct e1000_adapter *adapter)
2821{
2822 struct e1000_hw *hw = &adapter->hw;
2823
Bruce Allan53ec5492009-11-20 23:27:40 +00002824 /* DMA latency requirement to workaround early-receive/jumbo issue */
2825 if (adapter->flags & FLAG_HAS_ERT)
2826 pm_qos_add_requirement(PM_QOS_CPU_DMA_LATENCY,
2827 adapter->netdev->name,
2828 PM_QOS_DEFAULT_VALUE);
2829
Auke Kokbc7f75f2007-09-17 12:30:59 -07002830 /* hardware has been reset, we need to reload some things */
2831 e1000_configure(adapter);
2832
2833 clear_bit(__E1000_DOWN, &adapter->state);
2834
2835 napi_enable(&adapter->napi);
Bruce Allan4662e822008-08-26 18:37:06 -07002836 if (adapter->msix_entries)
2837 e1000_configure_msix(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002838 e1000_irq_enable(adapter);
2839
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00002840 netif_wake_queue(adapter->netdev);
2841
Auke Kokbc7f75f2007-09-17 12:30:59 -07002842 /* fire a link change interrupt to start the watchdog */
2843 ew32(ICS, E1000_ICS_LSC);
2844 return 0;
2845}
2846
2847void e1000e_down(struct e1000_adapter *adapter)
2848{
2849 struct net_device *netdev = adapter->netdev;
2850 struct e1000_hw *hw = &adapter->hw;
2851 u32 tctl, rctl;
2852
Bruce Allanad680762008-03-28 09:15:03 -07002853 /*
2854 * signal that we're down so the interrupt handler does not
2855 * reschedule our watchdog timer
2856 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002857 set_bit(__E1000_DOWN, &adapter->state);
2858
2859 /* disable receives in the hardware */
2860 rctl = er32(RCTL);
2861 ew32(RCTL, rctl & ~E1000_RCTL_EN);
2862 /* flush and sleep below */
2863
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00002864 netif_stop_queue(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002865
2866 /* disable transmits in the hardware */
2867 tctl = er32(TCTL);
2868 tctl &= ~E1000_TCTL_EN;
2869 ew32(TCTL, tctl);
2870 /* flush both disables and wait for them to finish */
2871 e1e_flush();
2872 msleep(10);
2873
2874 napi_disable(&adapter->napi);
2875 e1000_irq_disable(adapter);
2876
2877 del_timer_sync(&adapter->watchdog_timer);
2878 del_timer_sync(&adapter->phy_info_timer);
2879
2880 netdev->tx_queue_len = adapter->tx_queue_len;
2881 netif_carrier_off(netdev);
2882 adapter->link_speed = 0;
2883 adapter->link_duplex = 0;
2884
Jeff Kirsher52cc3082008-06-24 17:01:29 -07002885 if (!pci_channel_offline(adapter->pdev))
2886 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002887 e1000_clean_tx_ring(adapter);
2888 e1000_clean_rx_ring(adapter);
2889
Bruce Allan53ec5492009-11-20 23:27:40 +00002890 if (adapter->flags & FLAG_HAS_ERT)
2891 pm_qos_remove_requirement(PM_QOS_CPU_DMA_LATENCY,
2892 adapter->netdev->name);
2893
Auke Kokbc7f75f2007-09-17 12:30:59 -07002894 /*
2895 * TODO: for power management, we could drop the link and
2896 * pci_disable_device here.
2897 */
2898}
2899
2900void e1000e_reinit_locked(struct e1000_adapter *adapter)
2901{
2902 might_sleep();
2903 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
2904 msleep(1);
2905 e1000e_down(adapter);
2906 e1000e_up(adapter);
2907 clear_bit(__E1000_RESETTING, &adapter->state);
2908}
2909
2910/**
2911 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
2912 * @adapter: board private structure to initialize
2913 *
2914 * e1000_sw_init initializes the Adapter private data structure.
2915 * Fields are initialized based on PCI device information and
2916 * OS network device settings (MTU size).
2917 **/
2918static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
2919{
Auke Kokbc7f75f2007-09-17 12:30:59 -07002920 struct net_device *netdev = adapter->netdev;
2921
2922 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN;
2923 adapter->rx_ps_bsize0 = 128;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002924 adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
2925 adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002926
Bruce Allan4662e822008-08-26 18:37:06 -07002927 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002928
Bruce Allan4662e822008-08-26 18:37:06 -07002929 if (e1000_alloc_queues(adapter))
2930 return -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002931
Auke Kokbc7f75f2007-09-17 12:30:59 -07002932 /* Explicitly disable IRQ since the NIC can be in any state. */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002933 e1000_irq_disable(adapter);
2934
Auke Kokbc7f75f2007-09-17 12:30:59 -07002935 set_bit(__E1000_DOWN, &adapter->state);
2936 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002937}
2938
2939/**
Bruce Allanf8d59f72008-08-08 18:36:11 -07002940 * e1000_intr_msi_test - Interrupt Handler
2941 * @irq: interrupt number
2942 * @data: pointer to a network interface device structure
2943 **/
2944static irqreturn_t e1000_intr_msi_test(int irq, void *data)
2945{
2946 struct net_device *netdev = data;
2947 struct e1000_adapter *adapter = netdev_priv(netdev);
2948 struct e1000_hw *hw = &adapter->hw;
2949 u32 icr = er32(ICR);
2950
Bruce Allan3bb99fe2009-11-20 23:25:07 +00002951 e_dbg("icr is %08X\n", icr);
Bruce Allanf8d59f72008-08-08 18:36:11 -07002952 if (icr & E1000_ICR_RXSEQ) {
2953 adapter->flags &= ~FLAG_MSI_TEST_FAILED;
2954 wmb();
2955 }
2956
2957 return IRQ_HANDLED;
2958}
2959
2960/**
2961 * e1000_test_msi_interrupt - Returns 0 for successful test
2962 * @adapter: board private struct
2963 *
2964 * code flow taken from tg3.c
2965 **/
2966static int e1000_test_msi_interrupt(struct e1000_adapter *adapter)
2967{
2968 struct net_device *netdev = adapter->netdev;
2969 struct e1000_hw *hw = &adapter->hw;
2970 int err;
2971
2972 /* poll_enable hasn't been called yet, so don't need disable */
2973 /* clear any pending events */
2974 er32(ICR);
2975
2976 /* free the real vector and request a test handler */
2977 e1000_free_irq(adapter);
Bruce Allan4662e822008-08-26 18:37:06 -07002978 e1000e_reset_interrupt_capability(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07002979
2980 /* Assume that the test fails, if it succeeds then the test
2981 * MSI irq handler will unset this flag */
2982 adapter->flags |= FLAG_MSI_TEST_FAILED;
2983
2984 err = pci_enable_msi(adapter->pdev);
2985 if (err)
2986 goto msi_test_failed;
2987
Joe Perchesa0607fd2009-11-18 23:29:17 -08002988 err = request_irq(adapter->pdev->irq, e1000_intr_msi_test, 0,
Bruce Allanf8d59f72008-08-08 18:36:11 -07002989 netdev->name, netdev);
2990 if (err) {
2991 pci_disable_msi(adapter->pdev);
2992 goto msi_test_failed;
2993 }
2994
2995 wmb();
2996
2997 e1000_irq_enable(adapter);
2998
2999 /* fire an unusual interrupt on the test handler */
3000 ew32(ICS, E1000_ICS_RXSEQ);
3001 e1e_flush();
3002 msleep(50);
3003
3004 e1000_irq_disable(adapter);
3005
3006 rmb();
3007
3008 if (adapter->flags & FLAG_MSI_TEST_FAILED) {
Bruce Allan4662e822008-08-26 18:37:06 -07003009 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Bruce Allanf8d59f72008-08-08 18:36:11 -07003010 err = -EIO;
3011 e_info("MSI interrupt test failed!\n");
3012 }
3013
3014 free_irq(adapter->pdev->irq, netdev);
3015 pci_disable_msi(adapter->pdev);
3016
3017 if (err == -EIO)
3018 goto msi_test_failed;
3019
3020 /* okay so the test worked, restore settings */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003021 e_dbg("MSI interrupt test succeeded!\n");
Bruce Allanf8d59f72008-08-08 18:36:11 -07003022msi_test_failed:
Bruce Allan4662e822008-08-26 18:37:06 -07003023 e1000e_set_interrupt_capability(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07003024 e1000_request_irq(adapter);
3025 return err;
3026}
3027
3028/**
3029 * e1000_test_msi - Returns 0 if MSI test succeeds or INTx mode is restored
3030 * @adapter: board private struct
3031 *
3032 * code flow taken from tg3.c, called with e1000 interrupts disabled.
3033 **/
3034static int e1000_test_msi(struct e1000_adapter *adapter)
3035{
3036 int err;
3037 u16 pci_cmd;
3038
3039 if (!(adapter->flags & FLAG_MSI_ENABLED))
3040 return 0;
3041
3042 /* disable SERR in case the MSI write causes a master abort */
3043 pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
3044 pci_write_config_word(adapter->pdev, PCI_COMMAND,
3045 pci_cmd & ~PCI_COMMAND_SERR);
3046
3047 err = e1000_test_msi_interrupt(adapter);
3048
3049 /* restore previous setting of command word */
3050 pci_write_config_word(adapter->pdev, PCI_COMMAND, pci_cmd);
3051
3052 /* success ! */
3053 if (!err)
3054 return 0;
3055
3056 /* EIO means MSI test failed */
3057 if (err != -EIO)
3058 return err;
3059
3060 /* back to INTx mode */
3061 e_warn("MSI interrupt test failed, using legacy interrupt.\n");
3062
3063 e1000_free_irq(adapter);
3064
3065 err = e1000_request_irq(adapter);
3066
3067 return err;
3068}
3069
3070/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003071 * e1000_open - Called when a network interface is made active
3072 * @netdev: network interface device structure
3073 *
3074 * Returns 0 on success, negative value on failure
3075 *
3076 * The open entry point is called when a network interface is made
3077 * active by the system (IFF_UP). At this point all resources needed
3078 * for transmit and receive operations are allocated, the interrupt
3079 * handler is registered with the OS, the watchdog timer is started,
3080 * and the stack is notified that the interface is ready.
3081 **/
3082static int e1000_open(struct net_device *netdev)
3083{
3084 struct e1000_adapter *adapter = netdev_priv(netdev);
3085 struct e1000_hw *hw = &adapter->hw;
3086 int err;
3087
3088 /* disallow open during test */
3089 if (test_bit(__E1000_TESTING, &adapter->state))
3090 return -EBUSY;
3091
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00003092 netif_carrier_off(netdev);
3093
Auke Kokbc7f75f2007-09-17 12:30:59 -07003094 /* allocate transmit descriptors */
3095 err = e1000e_setup_tx_resources(adapter);
3096 if (err)
3097 goto err_setup_tx;
3098
3099 /* allocate receive descriptors */
3100 err = e1000e_setup_rx_resources(adapter);
3101 if (err)
3102 goto err_setup_rx;
3103
3104 e1000e_power_up_phy(adapter);
3105
3106 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
3107 if ((adapter->hw.mng_cookie.status &
3108 E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
3109 e1000_update_mng_vlan(adapter);
3110
Bruce Allanad680762008-03-28 09:15:03 -07003111 /*
3112 * If AMT is enabled, let the firmware know that the network
3113 * interface is now open
3114 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07003115 if (adapter->flags & FLAG_HAS_AMT)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003116 e1000_get_hw_control(adapter);
3117
Bruce Allanad680762008-03-28 09:15:03 -07003118 /*
3119 * before we allocate an interrupt, we must be ready to handle it.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003120 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
3121 * as soon as we call pci_request_irq, so we have to setup our
Bruce Allanad680762008-03-28 09:15:03 -07003122 * clean_rx handler before we do so.
3123 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003124 e1000_configure(adapter);
3125
3126 err = e1000_request_irq(adapter);
3127 if (err)
3128 goto err_req_irq;
3129
Bruce Allanf8d59f72008-08-08 18:36:11 -07003130 /*
3131 * Work around PCIe errata with MSI interrupts causing some chipsets to
3132 * ignore e1000e MSI messages, which means we need to test our MSI
3133 * interrupt now
3134 */
Bruce Allan4662e822008-08-26 18:37:06 -07003135 if (adapter->int_mode != E1000E_INT_MODE_LEGACY) {
Bruce Allanf8d59f72008-08-08 18:36:11 -07003136 err = e1000_test_msi(adapter);
3137 if (err) {
3138 e_err("Interrupt allocation failed\n");
3139 goto err_req_irq;
3140 }
3141 }
3142
Auke Kokbc7f75f2007-09-17 12:30:59 -07003143 /* From here on the code is the same as e1000e_up() */
3144 clear_bit(__E1000_DOWN, &adapter->state);
3145
3146 napi_enable(&adapter->napi);
3147
3148 e1000_irq_enable(adapter);
3149
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003150 netif_start_queue(netdev);
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07003151
Auke Kokbc7f75f2007-09-17 12:30:59 -07003152 /* fire a link status change interrupt to start the watchdog */
3153 ew32(ICS, E1000_ICS_LSC);
3154
3155 return 0;
3156
3157err_req_irq:
3158 e1000_release_hw_control(adapter);
3159 e1000_power_down_phy(adapter);
3160 e1000e_free_rx_resources(adapter);
3161err_setup_rx:
3162 e1000e_free_tx_resources(adapter);
3163err_setup_tx:
3164 e1000e_reset(adapter);
3165
3166 return err;
3167}
3168
3169/**
3170 * e1000_close - Disables a network interface
3171 * @netdev: network interface device structure
3172 *
3173 * Returns 0, this is not allowed to fail
3174 *
3175 * The close entry point is called when an interface is de-activated
3176 * by the OS. The hardware is still under the drivers control, but
3177 * needs to be disabled. A global MAC reset is issued to stop the
3178 * hardware, and all transmit and receive resources are freed.
3179 **/
3180static int e1000_close(struct net_device *netdev)
3181{
3182 struct e1000_adapter *adapter = netdev_priv(netdev);
3183
3184 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
3185 e1000e_down(adapter);
3186 e1000_power_down_phy(adapter);
3187 e1000_free_irq(adapter);
3188
3189 e1000e_free_tx_resources(adapter);
3190 e1000e_free_rx_resources(adapter);
3191
Bruce Allanad680762008-03-28 09:15:03 -07003192 /*
3193 * kill manageability vlan ID if supported, but not if a vlan with
3194 * the same ID is registered on the host OS (let 8021q kill it)
3195 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003196 if ((adapter->hw.mng_cookie.status &
3197 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
3198 !(adapter->vlgrp &&
3199 vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id)))
3200 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
3201
Bruce Allanad680762008-03-28 09:15:03 -07003202 /*
3203 * If AMT is enabled, let the firmware know that the network
3204 * interface is now closed
3205 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07003206 if (adapter->flags & FLAG_HAS_AMT)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003207 e1000_release_hw_control(adapter);
3208
3209 return 0;
3210}
3211/**
3212 * e1000_set_mac - Change the Ethernet Address of the NIC
3213 * @netdev: network interface device structure
3214 * @p: pointer to an address structure
3215 *
3216 * Returns 0 on success, negative on failure
3217 **/
3218static int e1000_set_mac(struct net_device *netdev, void *p)
3219{
3220 struct e1000_adapter *adapter = netdev_priv(netdev);
3221 struct sockaddr *addr = p;
3222
3223 if (!is_valid_ether_addr(addr->sa_data))
3224 return -EADDRNOTAVAIL;
3225
3226 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
3227 memcpy(adapter->hw.mac.addr, addr->sa_data, netdev->addr_len);
3228
3229 e1000e_rar_set(&adapter->hw, adapter->hw.mac.addr, 0);
3230
3231 if (adapter->flags & FLAG_RESET_OVERWRITES_LAA) {
3232 /* activate the work around */
3233 e1000e_set_laa_state_82571(&adapter->hw, 1);
3234
Bruce Allanad680762008-03-28 09:15:03 -07003235 /*
3236 * Hold a copy of the LAA in RAR[14] This is done so that
Auke Kokbc7f75f2007-09-17 12:30:59 -07003237 * between the time RAR[0] gets clobbered and the time it
3238 * gets fixed (in e1000_watchdog), the actual LAA is in one
3239 * of the RARs and no incoming packets directed to this port
3240 * are dropped. Eventually the LAA will be in RAR[0] and
Bruce Allanad680762008-03-28 09:15:03 -07003241 * RAR[14]
3242 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003243 e1000e_rar_set(&adapter->hw,
3244 adapter->hw.mac.addr,
3245 adapter->hw.mac.rar_entry_count - 1);
3246 }
3247
3248 return 0;
3249}
3250
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07003251/**
3252 * e1000e_update_phy_task - work thread to update phy
3253 * @work: pointer to our work struct
3254 *
3255 * this worker thread exists because we must acquire a
3256 * semaphore to read the phy, which we could msleep while
3257 * waiting for it, and we can't msleep in a timer.
3258 **/
3259static void e1000e_update_phy_task(struct work_struct *work)
3260{
3261 struct e1000_adapter *adapter = container_of(work,
3262 struct e1000_adapter, update_phy_task);
3263 e1000_get_phy_info(&adapter->hw);
3264}
3265
Bruce Allanad680762008-03-28 09:15:03 -07003266/*
3267 * Need to wait a few seconds after link up to get diagnostic information from
3268 * the phy
3269 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003270static void e1000_update_phy_info(unsigned long data)
3271{
3272 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07003273 schedule_work(&adapter->update_phy_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003274}
3275
3276/**
3277 * e1000e_update_stats - Update the board statistics counters
3278 * @adapter: board private structure
3279 **/
3280void e1000e_update_stats(struct e1000_adapter *adapter)
3281{
Ajit Khaparde7274c202009-10-07 02:44:26 +00003282 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003283 struct e1000_hw *hw = &adapter->hw;
3284 struct pci_dev *pdev = adapter->pdev;
Bruce Allana4f58f52009-06-02 11:29:18 +00003285 u16 phy_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003286
3287 /*
3288 * Prevent stats update while adapter is being reset, or if the pci
3289 * connection is down.
3290 */
3291 if (adapter->link_speed == 0)
3292 return;
3293 if (pci_channel_offline(pdev))
3294 return;
3295
Auke Kokbc7f75f2007-09-17 12:30:59 -07003296 adapter->stats.crcerrs += er32(CRCERRS);
3297 adapter->stats.gprc += er32(GPRC);
Bruce Allan7c257692008-04-23 11:09:00 -07003298 adapter->stats.gorc += er32(GORCL);
3299 er32(GORCH); /* Clear gorc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003300 adapter->stats.bprc += er32(BPRC);
3301 adapter->stats.mprc += er32(MPRC);
3302 adapter->stats.roc += er32(ROC);
3303
Auke Kokbc7f75f2007-09-17 12:30:59 -07003304 adapter->stats.mpc += er32(MPC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003305 if ((hw->phy.type == e1000_phy_82578) ||
3306 (hw->phy.type == e1000_phy_82577)) {
3307 e1e_rphy(hw, HV_SCC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003308 if (!e1e_rphy(hw, HV_SCC_LOWER, &phy_data))
3309 adapter->stats.scc += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003310
3311 e1e_rphy(hw, HV_ECOL_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003312 if (!e1e_rphy(hw, HV_ECOL_LOWER, &phy_data))
3313 adapter->stats.ecol += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003314
3315 e1e_rphy(hw, HV_MCC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003316 if (!e1e_rphy(hw, HV_MCC_LOWER, &phy_data))
3317 adapter->stats.mcc += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003318
3319 e1e_rphy(hw, HV_LATECOL_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003320 if (!e1e_rphy(hw, HV_LATECOL_LOWER, &phy_data))
3321 adapter->stats.latecol += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003322
3323 e1e_rphy(hw, HV_DC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003324 if (!e1e_rphy(hw, HV_DC_LOWER, &phy_data))
3325 adapter->stats.dc += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003326 } else {
3327 adapter->stats.scc += er32(SCC);
3328 adapter->stats.ecol += er32(ECOL);
3329 adapter->stats.mcc += er32(MCC);
3330 adapter->stats.latecol += er32(LATECOL);
3331 adapter->stats.dc += er32(DC);
3332 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003333 adapter->stats.xonrxc += er32(XONRXC);
3334 adapter->stats.xontxc += er32(XONTXC);
3335 adapter->stats.xoffrxc += er32(XOFFRXC);
3336 adapter->stats.xofftxc += er32(XOFFTXC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003337 adapter->stats.gptc += er32(GPTC);
Bruce Allan7c257692008-04-23 11:09:00 -07003338 adapter->stats.gotc += er32(GOTCL);
3339 er32(GOTCH); /* Clear gotc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003340 adapter->stats.rnbc += er32(RNBC);
3341 adapter->stats.ruc += er32(RUC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003342
3343 adapter->stats.mptc += er32(MPTC);
3344 adapter->stats.bptc += er32(BPTC);
3345
3346 /* used for adaptive IFS */
3347
3348 hw->mac.tx_packet_delta = er32(TPT);
3349 adapter->stats.tpt += hw->mac.tx_packet_delta;
Bruce Allana4f58f52009-06-02 11:29:18 +00003350 if ((hw->phy.type == e1000_phy_82578) ||
3351 (hw->phy.type == e1000_phy_82577)) {
3352 e1e_rphy(hw, HV_COLC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003353 if (!e1e_rphy(hw, HV_COLC_LOWER, &phy_data))
3354 hw->mac.collision_delta = phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003355 } else {
3356 hw->mac.collision_delta = er32(COLC);
3357 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003358 adapter->stats.colc += hw->mac.collision_delta;
3359
3360 adapter->stats.algnerrc += er32(ALGNERRC);
3361 adapter->stats.rxerrc += er32(RXERRC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003362 if ((hw->phy.type == e1000_phy_82578) ||
3363 (hw->phy.type == e1000_phy_82577)) {
3364 e1e_rphy(hw, HV_TNCRS_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003365 if (!e1e_rphy(hw, HV_TNCRS_LOWER, &phy_data))
3366 adapter->stats.tncrs += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003367 } else {
3368 if ((hw->mac.type != e1000_82574) &&
3369 (hw->mac.type != e1000_82583))
3370 adapter->stats.tncrs += er32(TNCRS);
3371 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003372 adapter->stats.cexterr += er32(CEXTERR);
3373 adapter->stats.tsctc += er32(TSCTC);
3374 adapter->stats.tsctfc += er32(TSCTFC);
3375
Auke Kokbc7f75f2007-09-17 12:30:59 -07003376 /* Fill out the OS statistics structure */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003377 netdev->stats.multicast = adapter->stats.mprc;
3378 netdev->stats.collisions = adapter->stats.colc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003379
3380 /* Rx Errors */
3381
Bruce Allanad680762008-03-28 09:15:03 -07003382 /*
3383 * RLEC on some newer hardware can be incorrect so build
3384 * our own version based on RUC and ROC
3385 */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003386 netdev->stats.rx_errors = adapter->stats.rxerrc +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003387 adapter->stats.crcerrs + adapter->stats.algnerrc +
3388 adapter->stats.ruc + adapter->stats.roc +
3389 adapter->stats.cexterr;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003390 netdev->stats.rx_length_errors = adapter->stats.ruc +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003391 adapter->stats.roc;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003392 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
3393 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
3394 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003395
3396 /* Tx Errors */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003397 netdev->stats.tx_errors = adapter->stats.ecol +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003398 adapter->stats.latecol;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003399 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
3400 netdev->stats.tx_window_errors = adapter->stats.latecol;
3401 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003402
3403 /* Tx Dropped needs to be maintained elsewhere */
3404
Auke Kokbc7f75f2007-09-17 12:30:59 -07003405 /* Management Stats */
3406 adapter->stats.mgptc += er32(MGTPTC);
3407 adapter->stats.mgprc += er32(MGTPRC);
3408 adapter->stats.mgpdc += er32(MGTPDC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003409}
3410
Bruce Allan7c257692008-04-23 11:09:00 -07003411/**
3412 * e1000_phy_read_status - Update the PHY register status snapshot
3413 * @adapter: board private structure
3414 **/
3415static void e1000_phy_read_status(struct e1000_adapter *adapter)
3416{
3417 struct e1000_hw *hw = &adapter->hw;
3418 struct e1000_phy_regs *phy = &adapter->phy_regs;
3419 int ret_val;
Bruce Allan7c257692008-04-23 11:09:00 -07003420
3421 if ((er32(STATUS) & E1000_STATUS_LU) &&
3422 (adapter->hw.phy.media_type == e1000_media_type_copper)) {
3423 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy->bmcr);
3424 ret_val |= e1e_rphy(hw, PHY_STATUS, &phy->bmsr);
3425 ret_val |= e1e_rphy(hw, PHY_AUTONEG_ADV, &phy->advertise);
3426 ret_val |= e1e_rphy(hw, PHY_LP_ABILITY, &phy->lpa);
3427 ret_val |= e1e_rphy(hw, PHY_AUTONEG_EXP, &phy->expansion);
3428 ret_val |= e1e_rphy(hw, PHY_1000T_CTRL, &phy->ctrl1000);
3429 ret_val |= e1e_rphy(hw, PHY_1000T_STATUS, &phy->stat1000);
3430 ret_val |= e1e_rphy(hw, PHY_EXT_STATUS, &phy->estatus);
3431 if (ret_val)
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003432 e_warn("Error reading PHY register\n");
Bruce Allan7c257692008-04-23 11:09:00 -07003433 } else {
3434 /*
3435 * Do not read PHY registers if link is not up
3436 * Set values to typical power-on defaults
3437 */
3438 phy->bmcr = (BMCR_SPEED1000 | BMCR_ANENABLE | BMCR_FULLDPLX);
3439 phy->bmsr = (BMSR_100FULL | BMSR_100HALF | BMSR_10FULL |
3440 BMSR_10HALF | BMSR_ESTATEN | BMSR_ANEGCAPABLE |
3441 BMSR_ERCAP);
3442 phy->advertise = (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP |
3443 ADVERTISE_ALL | ADVERTISE_CSMA);
3444 phy->lpa = 0;
3445 phy->expansion = EXPANSION_ENABLENPAGE;
3446 phy->ctrl1000 = ADVERTISE_1000FULL;
3447 phy->stat1000 = 0;
3448 phy->estatus = (ESTATUS_1000_TFULL | ESTATUS_1000_THALF);
3449 }
Bruce Allan7c257692008-04-23 11:09:00 -07003450}
3451
Auke Kokbc7f75f2007-09-17 12:30:59 -07003452static void e1000_print_link_info(struct e1000_adapter *adapter)
3453{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003454 struct e1000_hw *hw = &adapter->hw;
3455 u32 ctrl = er32(CTRL);
3456
Bruce Allan8f12fe82008-11-21 16:54:43 -08003457 /* Link status message must follow this format for user tools */
3458 printk(KERN_INFO "e1000e: %s NIC Link is Up %d Mbps %s, "
3459 "Flow Control: %s\n",
3460 adapter->netdev->name,
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003461 adapter->link_speed,
3462 (adapter->link_duplex == FULL_DUPLEX) ?
3463 "Full Duplex" : "Half Duplex",
3464 ((ctrl & E1000_CTRL_TFCE) && (ctrl & E1000_CTRL_RFCE)) ?
3465 "RX/TX" :
3466 ((ctrl & E1000_CTRL_RFCE) ? "RX" :
3467 ((ctrl & E1000_CTRL_TFCE) ? "TX" : "None" )));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003468}
3469
Bruce Allana20e4cf2008-11-21 17:01:35 -08003470bool e1000_has_link(struct e1000_adapter *adapter)
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003471{
3472 struct e1000_hw *hw = &adapter->hw;
3473 bool link_active = 0;
3474 s32 ret_val = 0;
3475
3476 /*
3477 * get_link_status is set on LSC (link status) interrupt or
3478 * Rx sequence error interrupt. get_link_status will stay
3479 * false until the check_for_link establishes link
3480 * for copper adapters ONLY
3481 */
3482 switch (hw->phy.media_type) {
3483 case e1000_media_type_copper:
3484 if (hw->mac.get_link_status) {
3485 ret_val = hw->mac.ops.check_for_link(hw);
3486 link_active = !hw->mac.get_link_status;
3487 } else {
3488 link_active = 1;
3489 }
3490 break;
3491 case e1000_media_type_fiber:
3492 ret_val = hw->mac.ops.check_for_link(hw);
3493 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
3494 break;
3495 case e1000_media_type_internal_serdes:
3496 ret_val = hw->mac.ops.check_for_link(hw);
3497 link_active = adapter->hw.mac.serdes_has_link;
3498 break;
3499 default:
3500 case e1000_media_type_unknown:
3501 break;
3502 }
3503
3504 if ((ret_val == E1000_ERR_PHY) && (hw->phy.type == e1000_phy_igp_3) &&
3505 (er32(CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
3506 /* See e1000_kmrn_lock_loss_workaround_ich8lan() */
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003507 e_info("Gigabit has been disabled, downgrading speed\n");
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003508 }
3509
3510 return link_active;
3511}
3512
3513static void e1000e_enable_receives(struct e1000_adapter *adapter)
3514{
3515 /* make sure the receive unit is started */
3516 if ((adapter->flags & FLAG_RX_NEEDS_RESTART) &&
3517 (adapter->flags & FLAG_RX_RESTART_NOW)) {
3518 struct e1000_hw *hw = &adapter->hw;
3519 u32 rctl = er32(RCTL);
3520 ew32(RCTL, rctl | E1000_RCTL_EN);
3521 adapter->flags &= ~FLAG_RX_RESTART_NOW;
3522 }
3523}
3524
Auke Kokbc7f75f2007-09-17 12:30:59 -07003525/**
3526 * e1000_watchdog - Timer Call-back
3527 * @data: pointer to adapter cast into an unsigned long
3528 **/
3529static void e1000_watchdog(unsigned long data)
3530{
3531 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
3532
3533 /* Do the rest outside of interrupt context */
3534 schedule_work(&adapter->watchdog_task);
3535
3536 /* TODO: make this use queue_delayed_work() */
3537}
3538
3539static void e1000_watchdog_task(struct work_struct *work)
3540{
3541 struct e1000_adapter *adapter = container_of(work,
3542 struct e1000_adapter, watchdog_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003543 struct net_device *netdev = adapter->netdev;
3544 struct e1000_mac_info *mac = &adapter->hw.mac;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08003545 struct e1000_phy_info *phy = &adapter->hw.phy;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003546 struct e1000_ring *tx_ring = adapter->tx_ring;
3547 struct e1000_hw *hw = &adapter->hw;
3548 u32 link, tctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003549 int tx_pending = 0;
3550
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003551 link = e1000_has_link(adapter);
3552 if ((netif_carrier_ok(netdev)) && link) {
3553 e1000e_enable_receives(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003554 goto link_up;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003555 }
3556
3557 if ((e1000e_enable_tx_pkt_filtering(hw)) &&
3558 (adapter->mng_vlan_id != adapter->hw.mng_cookie.vlan_id))
3559 e1000_update_mng_vlan(adapter);
3560
Auke Kokbc7f75f2007-09-17 12:30:59 -07003561 if (link) {
3562 if (!netif_carrier_ok(netdev)) {
3563 bool txb2b = 1;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003564 /* update snapshot of PHY registers on LSC */
Bruce Allan7c257692008-04-23 11:09:00 -07003565 e1000_phy_read_status(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003566 mac->ops.get_link_up_info(&adapter->hw,
3567 &adapter->link_speed,
3568 &adapter->link_duplex);
3569 e1000_print_link_info(adapter);
Bruce Allanad680762008-03-28 09:15:03 -07003570 /*
Bruce Allanf4187b52008-08-26 18:36:50 -07003571 * On supported PHYs, check for duplex mismatch only
3572 * if link has autonegotiated at 10/100 half
3573 */
3574 if ((hw->phy.type == e1000_phy_igp_3 ||
3575 hw->phy.type == e1000_phy_bm) &&
3576 (hw->mac.autoneg == true) &&
3577 (adapter->link_speed == SPEED_10 ||
3578 adapter->link_speed == SPEED_100) &&
3579 (adapter->link_duplex == HALF_DUPLEX)) {
3580 u16 autoneg_exp;
3581
3582 e1e_rphy(hw, PHY_AUTONEG_EXP, &autoneg_exp);
3583
3584 if (!(autoneg_exp & NWAY_ER_LP_NWAY_CAPS))
3585 e_info("Autonegotiated half duplex but"
3586 " link partner cannot autoneg. "
3587 " Try forcing full duplex if "
3588 "link gets many collisions.\n");
3589 }
3590
3591 /*
Bruce Allanad680762008-03-28 09:15:03 -07003592 * tweak tx_queue_len according to speed/duplex
3593 * and adjust the timeout factor
3594 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003595 netdev->tx_queue_len = adapter->tx_queue_len;
3596 adapter->tx_timeout_factor = 1;
3597 switch (adapter->link_speed) {
3598 case SPEED_10:
3599 txb2b = 0;
3600 netdev->tx_queue_len = 10;
Bruce Allan10f1b492008-08-08 18:36:01 -07003601 adapter->tx_timeout_factor = 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003602 break;
3603 case SPEED_100:
3604 txb2b = 0;
3605 netdev->tx_queue_len = 100;
Bruce Allan4c86e0b2009-11-19 12:35:26 +00003606 adapter->tx_timeout_factor = 10;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003607 break;
3608 }
3609
Bruce Allanad680762008-03-28 09:15:03 -07003610 /*
3611 * workaround: re-program speed mode bit after
3612 * link-up event
3613 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003614 if ((adapter->flags & FLAG_TARC_SPEED_MODE_BIT) &&
3615 !txb2b) {
3616 u32 tarc0;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003617 tarc0 = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003618 tarc0 &= ~SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003619 ew32(TARC(0), tarc0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003620 }
3621
Bruce Allanad680762008-03-28 09:15:03 -07003622 /*
3623 * disable TSO for pcie and 10/100 speeds, to avoid
3624 * some hardware issues
3625 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003626 if (!(adapter->flags & FLAG_TSO_FORCE)) {
3627 switch (adapter->link_speed) {
3628 case SPEED_10:
3629 case SPEED_100:
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003630 e_info("10/100 speed: disabling TSO\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003631 netdev->features &= ~NETIF_F_TSO;
3632 netdev->features &= ~NETIF_F_TSO6;
3633 break;
3634 case SPEED_1000:
3635 netdev->features |= NETIF_F_TSO;
3636 netdev->features |= NETIF_F_TSO6;
3637 break;
3638 default:
3639 /* oops */
3640 break;
3641 }
3642 }
3643
Bruce Allanad680762008-03-28 09:15:03 -07003644 /*
3645 * enable transmits in the hardware, need to do this
3646 * after setting TARC(0)
3647 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003648 tctl = er32(TCTL);
3649 tctl |= E1000_TCTL_EN;
3650 ew32(TCTL, tctl);
3651
Bruce Allan75eb0fa2008-11-21 16:53:51 -08003652 /*
3653 * Perform any post-link-up configuration before
3654 * reporting link up.
3655 */
3656 if (phy->ops.cfg_on_link_up)
3657 phy->ops.cfg_on_link_up(hw);
3658
Auke Kokbc7f75f2007-09-17 12:30:59 -07003659 netif_carrier_on(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003660
3661 if (!test_bit(__E1000_DOWN, &adapter->state))
3662 mod_timer(&adapter->phy_info_timer,
3663 round_jiffies(jiffies + 2 * HZ));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003664 }
3665 } else {
3666 if (netif_carrier_ok(netdev)) {
3667 adapter->link_speed = 0;
3668 adapter->link_duplex = 0;
Bruce Allan8f12fe82008-11-21 16:54:43 -08003669 /* Link status message must follow this format */
3670 printk(KERN_INFO "e1000e: %s NIC Link is Down\n",
3671 adapter->netdev->name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003672 netif_carrier_off(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003673 if (!test_bit(__E1000_DOWN, &adapter->state))
3674 mod_timer(&adapter->phy_info_timer,
3675 round_jiffies(jiffies + 2 * HZ));
3676
3677 if (adapter->flags & FLAG_RX_NEEDS_RESTART)
3678 schedule_work(&adapter->reset_task);
3679 }
3680 }
3681
3682link_up:
3683 e1000e_update_stats(adapter);
3684
3685 mac->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
3686 adapter->tpt_old = adapter->stats.tpt;
3687 mac->collision_delta = adapter->stats.colc - adapter->colc_old;
3688 adapter->colc_old = adapter->stats.colc;
3689
Bruce Allan7c257692008-04-23 11:09:00 -07003690 adapter->gorc = adapter->stats.gorc - adapter->gorc_old;
3691 adapter->gorc_old = adapter->stats.gorc;
3692 adapter->gotc = adapter->stats.gotc - adapter->gotc_old;
3693 adapter->gotc_old = adapter->stats.gotc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003694
3695 e1000e_update_adaptive(&adapter->hw);
3696
3697 if (!netif_carrier_ok(netdev)) {
3698 tx_pending = (e1000_desc_unused(tx_ring) + 1 <
3699 tx_ring->count);
3700 if (tx_pending) {
Bruce Allanad680762008-03-28 09:15:03 -07003701 /*
3702 * We've lost link, so the controller stops DMA,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003703 * but we've got queued Tx work that's never going
3704 * to get done, so reset controller to flush Tx.
Bruce Allanad680762008-03-28 09:15:03 -07003705 * (Do the reset outside of interrupt context).
3706 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003707 adapter->tx_timeout_count++;
3708 schedule_work(&adapter->reset_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00003709 /* return immediately since reset is imminent */
3710 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003711 }
3712 }
3713
Bruce Allanad680762008-03-28 09:15:03 -07003714 /* Cause software interrupt to ensure Rx ring is cleaned */
Bruce Allan4662e822008-08-26 18:37:06 -07003715 if (adapter->msix_entries)
3716 ew32(ICS, adapter->rx_ring->ims_val);
3717 else
3718 ew32(ICS, E1000_ICS_RXDMT0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003719
3720 /* Force detection of hung controller every watchdog period */
3721 adapter->detect_tx_hung = 1;
3722
Bruce Allanad680762008-03-28 09:15:03 -07003723 /*
3724 * With 82571 controllers, LAA may be overwritten due to controller
3725 * reset from the other port. Set the appropriate LAA in RAR[0]
3726 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003727 if (e1000e_get_laa_state_82571(hw))
3728 e1000e_rar_set(hw, adapter->hw.mac.addr, 0);
3729
3730 /* Reset the timer */
3731 if (!test_bit(__E1000_DOWN, &adapter->state))
3732 mod_timer(&adapter->watchdog_timer,
3733 round_jiffies(jiffies + 2 * HZ));
3734}
3735
3736#define E1000_TX_FLAGS_CSUM 0x00000001
3737#define E1000_TX_FLAGS_VLAN 0x00000002
3738#define E1000_TX_FLAGS_TSO 0x00000004
3739#define E1000_TX_FLAGS_IPV4 0x00000008
3740#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
3741#define E1000_TX_FLAGS_VLAN_SHIFT 16
3742
3743static int e1000_tso(struct e1000_adapter *adapter,
3744 struct sk_buff *skb)
3745{
3746 struct e1000_ring *tx_ring = adapter->tx_ring;
3747 struct e1000_context_desc *context_desc;
3748 struct e1000_buffer *buffer_info;
3749 unsigned int i;
3750 u32 cmd_length = 0;
3751 u16 ipcse = 0, tucse, mss;
3752 u8 ipcss, ipcso, tucss, tucso, hdr_len;
3753 int err;
3754
Bruce Allan3d5e33c2009-11-20 23:27:03 +00003755 if (!skb_is_gso(skb))
3756 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003757
Bruce Allan3d5e33c2009-11-20 23:27:03 +00003758 if (skb_header_cloned(skb)) {
3759 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
3760 if (err)
3761 return err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003762 }
3763
Bruce Allan3d5e33c2009-11-20 23:27:03 +00003764 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
3765 mss = skb_shinfo(skb)->gso_size;
3766 if (skb->protocol == htons(ETH_P_IP)) {
3767 struct iphdr *iph = ip_hdr(skb);
3768 iph->tot_len = 0;
3769 iph->check = 0;
3770 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
3771 0, IPPROTO_TCP, 0);
3772 cmd_length = E1000_TXD_CMD_IP;
3773 ipcse = skb_transport_offset(skb) - 1;
3774 } else if (skb_shinfo(skb)->gso_type == SKB_GSO_TCPV6) {
3775 ipv6_hdr(skb)->payload_len = 0;
3776 tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
3777 &ipv6_hdr(skb)->daddr,
3778 0, IPPROTO_TCP, 0);
3779 ipcse = 0;
3780 }
3781 ipcss = skb_network_offset(skb);
3782 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
3783 tucss = skb_transport_offset(skb);
3784 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
3785 tucse = 0;
3786
3787 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
3788 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
3789
3790 i = tx_ring->next_to_use;
3791 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
3792 buffer_info = &tx_ring->buffer_info[i];
3793
3794 context_desc->lower_setup.ip_fields.ipcss = ipcss;
3795 context_desc->lower_setup.ip_fields.ipcso = ipcso;
3796 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
3797 context_desc->upper_setup.tcp_fields.tucss = tucss;
3798 context_desc->upper_setup.tcp_fields.tucso = tucso;
3799 context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
3800 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
3801 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
3802 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
3803
3804 buffer_info->time_stamp = jiffies;
3805 buffer_info->next_to_watch = i;
3806
3807 i++;
3808 if (i == tx_ring->count)
3809 i = 0;
3810 tx_ring->next_to_use = i;
3811
3812 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003813}
3814
3815static bool e1000_tx_csum(struct e1000_adapter *adapter, struct sk_buff *skb)
3816{
3817 struct e1000_ring *tx_ring = adapter->tx_ring;
3818 struct e1000_context_desc *context_desc;
3819 struct e1000_buffer *buffer_info;
3820 unsigned int i;
3821 u8 css;
Dave Grahamaf807c82008-10-09 14:28:58 -07003822 u32 cmd_len = E1000_TXD_CMD_DEXT;
Arthur Jones5f66f202009-03-19 01:13:08 +00003823 __be16 protocol;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003824
Dave Grahamaf807c82008-10-09 14:28:58 -07003825 if (skb->ip_summed != CHECKSUM_PARTIAL)
3826 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003827
Arthur Jones5f66f202009-03-19 01:13:08 +00003828 if (skb->protocol == cpu_to_be16(ETH_P_8021Q))
3829 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
3830 else
3831 protocol = skb->protocol;
3832
Arthur Jones3f518392009-03-20 15:56:35 -07003833 switch (protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08003834 case cpu_to_be16(ETH_P_IP):
Dave Grahamaf807c82008-10-09 14:28:58 -07003835 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
3836 cmd_len |= E1000_TXD_CMD_TCP;
3837 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08003838 case cpu_to_be16(ETH_P_IPV6):
Dave Grahamaf807c82008-10-09 14:28:58 -07003839 /* XXX not handling all IPV6 headers */
3840 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
3841 cmd_len |= E1000_TXD_CMD_TCP;
3842 break;
3843 default:
3844 if (unlikely(net_ratelimit()))
Arthur Jones5f66f202009-03-19 01:13:08 +00003845 e_warn("checksum_partial proto=%x!\n",
3846 be16_to_cpu(protocol));
Dave Grahamaf807c82008-10-09 14:28:58 -07003847 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003848 }
3849
Dave Grahamaf807c82008-10-09 14:28:58 -07003850 css = skb_transport_offset(skb);
3851
3852 i = tx_ring->next_to_use;
3853 buffer_info = &tx_ring->buffer_info[i];
3854 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
3855
3856 context_desc->lower_setup.ip_config = 0;
3857 context_desc->upper_setup.tcp_fields.tucss = css;
3858 context_desc->upper_setup.tcp_fields.tucso =
3859 css + skb->csum_offset;
3860 context_desc->upper_setup.tcp_fields.tucse = 0;
3861 context_desc->tcp_seg_setup.data = 0;
3862 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
3863
3864 buffer_info->time_stamp = jiffies;
3865 buffer_info->next_to_watch = i;
3866
3867 i++;
3868 if (i == tx_ring->count)
3869 i = 0;
3870 tx_ring->next_to_use = i;
3871
3872 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003873}
3874
3875#define E1000_MAX_PER_TXD 8192
3876#define E1000_MAX_TXD_PWR 12
3877
3878static int e1000_tx_map(struct e1000_adapter *adapter,
3879 struct sk_buff *skb, unsigned int first,
3880 unsigned int max_per_txd, unsigned int nr_frags,
3881 unsigned int mss)
3882{
3883 struct e1000_ring *tx_ring = adapter->tx_ring;
Alexander Duyck03b13202009-12-02 16:45:31 +00003884 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00003885 struct e1000_buffer *buffer_info;
Jesse Brandeburg8ddc9512009-03-02 16:02:53 -08003886 unsigned int len = skb_headlen(skb);
Alexander Duyck03b13202009-12-02 16:45:31 +00003887 unsigned int offset = 0, size, count = 0, i;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003888 unsigned int f;
3889
3890 i = tx_ring->next_to_use;
3891
3892 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00003893 buffer_info = &tx_ring->buffer_info[i];
Auke Kokbc7f75f2007-09-17 12:30:59 -07003894 size = min(len, max_per_txd);
3895
Auke Kokbc7f75f2007-09-17 12:30:59 -07003896 buffer_info->length = size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003897 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003898 buffer_info->next_to_watch = i;
Alexander Duyck03b13202009-12-02 16:45:31 +00003899 buffer_info->dma = pci_map_single(pdev, skb->data + offset,
3900 size, PCI_DMA_TODEVICE);
3901 buffer_info->mapped_as_page = false;
3902 if (pci_dma_mapping_error(pdev, buffer_info->dma))
3903 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003904
3905 len -= size;
3906 offset += size;
Alexander Duyck03b13202009-12-02 16:45:31 +00003907 count++;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00003908
3909 if (len) {
3910 i++;
3911 if (i == tx_ring->count)
3912 i = 0;
3913 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003914 }
3915
3916 for (f = 0; f < nr_frags; f++) {
3917 struct skb_frag_struct *frag;
3918
3919 frag = &skb_shinfo(skb)->frags[f];
3920 len = frag->size;
Alexander Duyck03b13202009-12-02 16:45:31 +00003921 offset = frag->page_offset;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003922
3923 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00003924 i++;
3925 if (i == tx_ring->count)
3926 i = 0;
3927
Auke Kokbc7f75f2007-09-17 12:30:59 -07003928 buffer_info = &tx_ring->buffer_info[i];
3929 size = min(len, max_per_txd);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003930
3931 buffer_info->length = size;
3932 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003933 buffer_info->next_to_watch = i;
Alexander Duyck03b13202009-12-02 16:45:31 +00003934 buffer_info->dma = pci_map_page(pdev, frag->page,
3935 offset, size,
3936 PCI_DMA_TODEVICE);
3937 buffer_info->mapped_as_page = true;
3938 if (pci_dma_mapping_error(pdev, buffer_info->dma))
3939 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003940
3941 len -= size;
3942 offset += size;
3943 count++;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003944 }
3945 }
3946
Auke Kokbc7f75f2007-09-17 12:30:59 -07003947 tx_ring->buffer_info[i].skb = skb;
3948 tx_ring->buffer_info[first].next_to_watch = i;
3949
3950 return count;
Alexander Duyck03b13202009-12-02 16:45:31 +00003951
3952dma_error:
3953 dev_err(&pdev->dev, "TX DMA map failed\n");
3954 buffer_info->dma = 0;
3955 count--;
3956
3957 while (count >= 0) {
3958 count--;
3959 i--;
3960 if (i < 0)
3961 i += tx_ring->count;
3962 buffer_info = &tx_ring->buffer_info[i];
3963 e1000_put_txbuf(adapter, buffer_info);;
3964 }
3965
3966 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003967}
3968
3969static void e1000_tx_queue(struct e1000_adapter *adapter,
3970 int tx_flags, int count)
3971{
3972 struct e1000_ring *tx_ring = adapter->tx_ring;
3973 struct e1000_tx_desc *tx_desc = NULL;
3974 struct e1000_buffer *buffer_info;
3975 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
3976 unsigned int i;
3977
3978 if (tx_flags & E1000_TX_FLAGS_TSO) {
3979 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
3980 E1000_TXD_CMD_TSE;
3981 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
3982
3983 if (tx_flags & E1000_TX_FLAGS_IPV4)
3984 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
3985 }
3986
3987 if (tx_flags & E1000_TX_FLAGS_CSUM) {
3988 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
3989 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
3990 }
3991
3992 if (tx_flags & E1000_TX_FLAGS_VLAN) {
3993 txd_lower |= E1000_TXD_CMD_VLE;
3994 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
3995 }
3996
3997 i = tx_ring->next_to_use;
3998
3999 while (count--) {
4000 buffer_info = &tx_ring->buffer_info[i];
4001 tx_desc = E1000_TX_DESC(*tx_ring, i);
4002 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4003 tx_desc->lower.data =
4004 cpu_to_le32(txd_lower | buffer_info->length);
4005 tx_desc->upper.data = cpu_to_le32(txd_upper);
4006
4007 i++;
4008 if (i == tx_ring->count)
4009 i = 0;
4010 }
4011
4012 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
4013
Bruce Allanad680762008-03-28 09:15:03 -07004014 /*
4015 * Force memory writes to complete before letting h/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07004016 * know there are new descriptors to fetch. (Only
4017 * applicable for weak-ordered memory model archs,
Bruce Allanad680762008-03-28 09:15:03 -07004018 * such as IA-64).
4019 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004020 wmb();
4021
4022 tx_ring->next_to_use = i;
4023 writel(i, adapter->hw.hw_addr + tx_ring->tail);
Bruce Allanad680762008-03-28 09:15:03 -07004024 /*
4025 * we need this if more than one processor can write to our tail
4026 * at a time, it synchronizes IO on IA64/Altix systems
4027 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004028 mmiowb();
4029}
4030
4031#define MINIMUM_DHCP_PACKET_SIZE 282
4032static int e1000_transfer_dhcp_info(struct e1000_adapter *adapter,
4033 struct sk_buff *skb)
4034{
4035 struct e1000_hw *hw = &adapter->hw;
4036 u16 length, offset;
4037
4038 if (vlan_tx_tag_present(skb)) {
Joe Perches8e95a202009-12-03 07:58:21 +00004039 if (!((vlan_tx_tag_get(skb) == adapter->hw.mng_cookie.vlan_id) &&
4040 (adapter->hw.mng_cookie.status &
Auke Kokbc7f75f2007-09-17 12:30:59 -07004041 E1000_MNG_DHCP_COOKIE_STATUS_VLAN)))
4042 return 0;
4043 }
4044
4045 if (skb->len <= MINIMUM_DHCP_PACKET_SIZE)
4046 return 0;
4047
4048 if (((struct ethhdr *) skb->data)->h_proto != htons(ETH_P_IP))
4049 return 0;
4050
4051 {
4052 const struct iphdr *ip = (struct iphdr *)((u8 *)skb->data+14);
4053 struct udphdr *udp;
4054
4055 if (ip->protocol != IPPROTO_UDP)
4056 return 0;
4057
4058 udp = (struct udphdr *)((u8 *)ip + (ip->ihl << 2));
4059 if (ntohs(udp->dest) != 67)
4060 return 0;
4061
4062 offset = (u8 *)udp + 8 - skb->data;
4063 length = skb->len - offset;
4064 return e1000e_mng_write_dhcp_info(hw, (u8 *)udp + 8, length);
4065 }
4066
4067 return 0;
4068}
4069
4070static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
4071{
4072 struct e1000_adapter *adapter = netdev_priv(netdev);
4073
4074 netif_stop_queue(netdev);
Bruce Allanad680762008-03-28 09:15:03 -07004075 /*
4076 * Herbert's original patch had:
Auke Kokbc7f75f2007-09-17 12:30:59 -07004077 * smp_mb__after_netif_stop_queue();
Bruce Allanad680762008-03-28 09:15:03 -07004078 * but since that doesn't exist yet, just open code it.
4079 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004080 smp_mb();
4081
Bruce Allanad680762008-03-28 09:15:03 -07004082 /*
4083 * We need to check again in a case another CPU has just
4084 * made room available.
4085 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004086 if (e1000_desc_unused(adapter->tx_ring) < size)
4087 return -EBUSY;
4088
4089 /* A reprieve! */
4090 netif_start_queue(netdev);
4091 ++adapter->restart_queue;
4092 return 0;
4093}
4094
4095static int e1000_maybe_stop_tx(struct net_device *netdev, int size)
4096{
4097 struct e1000_adapter *adapter = netdev_priv(netdev);
4098
4099 if (e1000_desc_unused(adapter->tx_ring) >= size)
4100 return 0;
4101 return __e1000_maybe_stop_tx(netdev, size);
4102}
4103
4104#define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
Stephen Hemminger3b29a562009-08-31 19:50:55 +00004105static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
4106 struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004107{
4108 struct e1000_adapter *adapter = netdev_priv(netdev);
4109 struct e1000_ring *tx_ring = adapter->tx_ring;
4110 unsigned int first;
4111 unsigned int max_per_txd = E1000_MAX_PER_TXD;
4112 unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
4113 unsigned int tx_flags = 0;
Auke Kok4e6c7092007-10-05 14:15:23 -07004114 unsigned int len = skb->len - skb->data_len;
Auke Kok4e6c7092007-10-05 14:15:23 -07004115 unsigned int nr_frags;
4116 unsigned int mss;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004117 int count = 0;
4118 int tso;
4119 unsigned int f;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004120
4121 if (test_bit(__E1000_DOWN, &adapter->state)) {
4122 dev_kfree_skb_any(skb);
4123 return NETDEV_TX_OK;
4124 }
4125
4126 if (skb->len <= 0) {
4127 dev_kfree_skb_any(skb);
4128 return NETDEV_TX_OK;
4129 }
4130
4131 mss = skb_shinfo(skb)->gso_size;
Bruce Allanad680762008-03-28 09:15:03 -07004132 /*
4133 * The controller does a simple calculation to
Auke Kokbc7f75f2007-09-17 12:30:59 -07004134 * make sure there is enough room in the FIFO before
4135 * initiating the DMA for each buffer. The calc is:
4136 * 4 = ceil(buffer len/mss). To make sure we don't
4137 * overrun the FIFO, adjust the max buffer len if mss
Bruce Allanad680762008-03-28 09:15:03 -07004138 * drops.
4139 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004140 if (mss) {
4141 u8 hdr_len;
4142 max_per_txd = min(mss << 2, max_per_txd);
4143 max_txd_pwr = fls(max_per_txd) - 1;
4144
Bruce Allanad680762008-03-28 09:15:03 -07004145 /*
4146 * TSO Workaround for 82571/2/3 Controllers -- if skb->data
4147 * points to just header, pull a few bytes of payload from
4148 * frags into skb->data
4149 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004150 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Bruce Allanad680762008-03-28 09:15:03 -07004151 /*
4152 * we do this workaround for ES2LAN, but it is un-necessary,
4153 * avoiding it could save a lot of cycles
4154 */
Auke Kok4e6c7092007-10-05 14:15:23 -07004155 if (skb->data_len && (hdr_len == len)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004156 unsigned int pull_size;
4157
4158 pull_size = min((unsigned int)4, skb->data_len);
4159 if (!__pskb_pull_tail(skb, pull_size)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004160 e_err("__pskb_pull_tail failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004161 dev_kfree_skb_any(skb);
4162 return NETDEV_TX_OK;
4163 }
4164 len = skb->len - skb->data_len;
4165 }
4166 }
4167
4168 /* reserve a descriptor for the offload context */
4169 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
4170 count++;
4171 count++;
4172
4173 count += TXD_USE_COUNT(len, max_txd_pwr);
4174
4175 nr_frags = skb_shinfo(skb)->nr_frags;
4176 for (f = 0; f < nr_frags; f++)
4177 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size,
4178 max_txd_pwr);
4179
4180 if (adapter->hw.mac.tx_pkt_filtering)
4181 e1000_transfer_dhcp_info(adapter, skb);
4182
Bruce Allanad680762008-03-28 09:15:03 -07004183 /*
4184 * need: count + 2 desc gap to keep tail from touching
4185 * head, otherwise try next time
4186 */
Jesse Brandeburg92af3e92009-01-19 14:17:08 +00004187 if (e1000_maybe_stop_tx(netdev, count + 2))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004188 return NETDEV_TX_BUSY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004189
4190 if (adapter->vlgrp && vlan_tx_tag_present(skb)) {
4191 tx_flags |= E1000_TX_FLAGS_VLAN;
4192 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
4193 }
4194
4195 first = tx_ring->next_to_use;
4196
4197 tso = e1000_tso(adapter, skb);
4198 if (tso < 0) {
4199 dev_kfree_skb_any(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004200 return NETDEV_TX_OK;
4201 }
4202
4203 if (tso)
4204 tx_flags |= E1000_TX_FLAGS_TSO;
4205 else if (e1000_tx_csum(adapter, skb))
4206 tx_flags |= E1000_TX_FLAGS_CSUM;
4207
Bruce Allanad680762008-03-28 09:15:03 -07004208 /*
4209 * Old method was to assume IPv4 packet by default if TSO was enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004210 * 82571 hardware supports TSO capabilities for IPv6 as well...
Bruce Allanad680762008-03-28 09:15:03 -07004211 * no longer assume, we must.
4212 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004213 if (skb->protocol == htons(ETH_P_IP))
4214 tx_flags |= E1000_TX_FLAGS_IPV4;
4215
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004216 /* if count is 0 then mapping error has occured */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004217 count = e1000_tx_map(adapter, skb, first, max_per_txd, nr_frags, mss);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004218 if (count) {
4219 e1000_tx_queue(adapter, tx_flags, count);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004220 /* Make sure there is space in the ring for the next send. */
4221 e1000_maybe_stop_tx(netdev, MAX_SKB_FRAGS + 2);
4222
4223 } else {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004224 dev_kfree_skb_any(skb);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004225 tx_ring->buffer_info[first].time_stamp = 0;
4226 tx_ring->next_to_use = first;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004227 }
4228
Auke Kokbc7f75f2007-09-17 12:30:59 -07004229 return NETDEV_TX_OK;
4230}
4231
4232/**
4233 * e1000_tx_timeout - Respond to a Tx Hang
4234 * @netdev: network interface device structure
4235 **/
4236static void e1000_tx_timeout(struct net_device *netdev)
4237{
4238 struct e1000_adapter *adapter = netdev_priv(netdev);
4239
4240 /* Do the reset outside of interrupt context */
4241 adapter->tx_timeout_count++;
4242 schedule_work(&adapter->reset_task);
4243}
4244
4245static void e1000_reset_task(struct work_struct *work)
4246{
4247 struct e1000_adapter *adapter;
4248 adapter = container_of(work, struct e1000_adapter, reset_task);
4249
4250 e1000e_reinit_locked(adapter);
4251}
4252
4253/**
4254 * e1000_get_stats - Get System Network Statistics
4255 * @netdev: network interface device structure
4256 *
4257 * Returns the address of the device statistics structure.
4258 * The statistics are actually updated from the timer callback.
4259 **/
4260static struct net_device_stats *e1000_get_stats(struct net_device *netdev)
4261{
Auke Kokbc7f75f2007-09-17 12:30:59 -07004262 /* only return the current stats */
Ajit Khaparde7274c202009-10-07 02:44:26 +00004263 return &netdev->stats;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004264}
4265
4266/**
4267 * e1000_change_mtu - Change the Maximum Transfer Unit
4268 * @netdev: network interface device structure
4269 * @new_mtu: new value for maximum frame size
4270 *
4271 * Returns 0 on success, negative on failure
4272 **/
4273static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
4274{
4275 struct e1000_adapter *adapter = netdev_priv(netdev);
4276 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
4277
Bruce Allan2adc55c2009-06-02 11:28:58 +00004278 /* Jumbo frame support */
4279 if ((max_frame > ETH_FRAME_LEN + ETH_FCS_LEN) &&
4280 !(adapter->flags & FLAG_HAS_JUMBO_FRAMES)) {
4281 e_err("Jumbo Frames not supported.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004282 return -EINVAL;
4283 }
4284
Bruce Allan2adc55c2009-06-02 11:28:58 +00004285 /* Supported frame sizes */
4286 if ((new_mtu < ETH_ZLEN + ETH_FCS_LEN + VLAN_HLEN) ||
4287 (max_frame > adapter->max_hw_frame_size)) {
4288 e_err("Unsupported MTU setting\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004289 return -EINVAL;
4290 }
4291
4292 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
4293 msleep(1);
Bruce Allan610c9922009-11-19 12:35:45 +00004294 /* e1000e_down -> e1000e_reset dependent on max_frame_size & mtu */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004295 adapter->max_frame_size = max_frame;
Bruce Allan610c9922009-11-19 12:35:45 +00004296 e_info("changing MTU from %d to %d\n", netdev->mtu, new_mtu);
4297 netdev->mtu = new_mtu;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004298 if (netif_running(netdev))
4299 e1000e_down(adapter);
4300
Bruce Allanad680762008-03-28 09:15:03 -07004301 /*
4302 * NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kokbc7f75f2007-09-17 12:30:59 -07004303 * means we reserve 2 more, this pushes us to allocate from the next
4304 * larger slab size.
Bruce Allanad680762008-03-28 09:15:03 -07004305 * i.e. RXBUFFER_2048 --> size-4096 slab
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004306 * However with the new *_jumbo_rx* routines, jumbo receives will use
4307 * fragmented skbs
Bruce Allanad680762008-03-28 09:15:03 -07004308 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004309
4310 if (max_frame <= 256)
4311 adapter->rx_buffer_len = 256;
4312 else if (max_frame <= 512)
4313 adapter->rx_buffer_len = 512;
4314 else if (max_frame <= 1024)
4315 adapter->rx_buffer_len = 1024;
4316 else if (max_frame <= 2048)
4317 adapter->rx_buffer_len = 2048;
4318 else
4319 adapter->rx_buffer_len = 4096;
4320
4321 /* adjust allocation if LPE protects us, and we aren't using SBP */
4322 if ((max_frame == ETH_FRAME_LEN + ETH_FCS_LEN) ||
4323 (max_frame == ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN))
4324 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN
Bruce Allanad680762008-03-28 09:15:03 -07004325 + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004326
Auke Kokbc7f75f2007-09-17 12:30:59 -07004327 if (netif_running(netdev))
4328 e1000e_up(adapter);
4329 else
4330 e1000e_reset(adapter);
4331
4332 clear_bit(__E1000_RESETTING, &adapter->state);
4333
4334 return 0;
4335}
4336
4337static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
4338 int cmd)
4339{
4340 struct e1000_adapter *adapter = netdev_priv(netdev);
4341 struct mii_ioctl_data *data = if_mii(ifr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004342
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004343 if (adapter->hw.phy.media_type != e1000_media_type_copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004344 return -EOPNOTSUPP;
4345
4346 switch (cmd) {
4347 case SIOCGMIIPHY:
4348 data->phy_id = adapter->hw.phy.addr;
4349 break;
4350 case SIOCGMIIREG:
Bruce Allanb16a0022009-11-20 23:24:30 +00004351 e1000_phy_read_status(adapter);
4352
Bruce Allan7c257692008-04-23 11:09:00 -07004353 switch (data->reg_num & 0x1F) {
4354 case MII_BMCR:
4355 data->val_out = adapter->phy_regs.bmcr;
4356 break;
4357 case MII_BMSR:
4358 data->val_out = adapter->phy_regs.bmsr;
4359 break;
4360 case MII_PHYSID1:
4361 data->val_out = (adapter->hw.phy.id >> 16);
4362 break;
4363 case MII_PHYSID2:
4364 data->val_out = (adapter->hw.phy.id & 0xFFFF);
4365 break;
4366 case MII_ADVERTISE:
4367 data->val_out = adapter->phy_regs.advertise;
4368 break;
4369 case MII_LPA:
4370 data->val_out = adapter->phy_regs.lpa;
4371 break;
4372 case MII_EXPANSION:
4373 data->val_out = adapter->phy_regs.expansion;
4374 break;
4375 case MII_CTRL1000:
4376 data->val_out = adapter->phy_regs.ctrl1000;
4377 break;
4378 case MII_STAT1000:
4379 data->val_out = adapter->phy_regs.stat1000;
4380 break;
4381 case MII_ESTATUS:
4382 data->val_out = adapter->phy_regs.estatus;
4383 break;
4384 default:
Auke Kokbc7f75f2007-09-17 12:30:59 -07004385 return -EIO;
4386 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004387 break;
4388 case SIOCSMIIREG:
4389 default:
4390 return -EOPNOTSUPP;
4391 }
4392 return 0;
4393}
4394
4395static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
4396{
4397 switch (cmd) {
4398 case SIOCGMIIPHY:
4399 case SIOCGMIIREG:
4400 case SIOCSMIIREG:
4401 return e1000_mii_ioctl(netdev, ifr, cmd);
4402 default:
4403 return -EOPNOTSUPP;
4404 }
4405}
4406
Bruce Allana4f58f52009-06-02 11:29:18 +00004407static int e1000_init_phy_wakeup(struct e1000_adapter *adapter, u32 wufc)
4408{
4409 struct e1000_hw *hw = &adapter->hw;
4410 u32 i, mac_reg;
4411 u16 phy_reg;
4412 int retval = 0;
4413
4414 /* copy MAC RARs to PHY RARs */
4415 for (i = 0; i < adapter->hw.mac.rar_entry_count; i++) {
4416 mac_reg = er32(RAL(i));
4417 e1e_wphy(hw, BM_RAR_L(i), (u16)(mac_reg & 0xFFFF));
4418 e1e_wphy(hw, BM_RAR_M(i), (u16)((mac_reg >> 16) & 0xFFFF));
4419 mac_reg = er32(RAH(i));
4420 e1e_wphy(hw, BM_RAR_H(i), (u16)(mac_reg & 0xFFFF));
4421 e1e_wphy(hw, BM_RAR_CTRL(i), (u16)((mac_reg >> 16) & 0xFFFF));
4422 }
4423
4424 /* copy MAC MTA to PHY MTA */
4425 for (i = 0; i < adapter->hw.mac.mta_reg_count; i++) {
4426 mac_reg = E1000_READ_REG_ARRAY(hw, E1000_MTA, i);
4427 e1e_wphy(hw, BM_MTA(i), (u16)(mac_reg & 0xFFFF));
4428 e1e_wphy(hw, BM_MTA(i) + 1, (u16)((mac_reg >> 16) & 0xFFFF));
4429 }
4430
4431 /* configure PHY Rx Control register */
4432 e1e_rphy(&adapter->hw, BM_RCTL, &phy_reg);
4433 mac_reg = er32(RCTL);
4434 if (mac_reg & E1000_RCTL_UPE)
4435 phy_reg |= BM_RCTL_UPE;
4436 if (mac_reg & E1000_RCTL_MPE)
4437 phy_reg |= BM_RCTL_MPE;
4438 phy_reg &= ~(BM_RCTL_MO_MASK);
4439 if (mac_reg & E1000_RCTL_MO_3)
4440 phy_reg |= (((mac_reg & E1000_RCTL_MO_3) >> E1000_RCTL_MO_SHIFT)
4441 << BM_RCTL_MO_SHIFT);
4442 if (mac_reg & E1000_RCTL_BAM)
4443 phy_reg |= BM_RCTL_BAM;
4444 if (mac_reg & E1000_RCTL_PMCF)
4445 phy_reg |= BM_RCTL_PMCF;
4446 mac_reg = er32(CTRL);
4447 if (mac_reg & E1000_CTRL_RFCE)
4448 phy_reg |= BM_RCTL_RFCE;
4449 e1e_wphy(&adapter->hw, BM_RCTL, phy_reg);
4450
4451 /* enable PHY wakeup in MAC register */
4452 ew32(WUFC, wufc);
4453 ew32(WUC, E1000_WUC_PHY_WAKE | E1000_WUC_PME_EN);
4454
4455 /* configure and enable PHY wakeup in PHY registers */
4456 e1e_wphy(&adapter->hw, BM_WUFC, wufc);
4457 e1e_wphy(&adapter->hw, BM_WUC, E1000_WUC_PME_EN);
4458
4459 /* activate PHY wakeup */
Bruce Allan94d81862009-11-20 23:25:26 +00004460 retval = hw->phy.ops.acquire(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00004461 if (retval) {
4462 e_err("Could not acquire PHY\n");
4463 return retval;
4464 }
4465 e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT,
4466 (BM_WUC_ENABLE_PAGE << IGP_PAGE_SHIFT));
4467 retval = e1000e_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, &phy_reg);
4468 if (retval) {
4469 e_err("Could not read PHY page 769\n");
4470 goto out;
4471 }
4472 phy_reg |= BM_WUC_ENABLE_BIT | BM_WUC_HOST_WU_BIT;
4473 retval = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg);
4474 if (retval)
4475 e_err("Could not set PHY Host Wakeup bit\n");
4476out:
Bruce Allan94d81862009-11-20 23:25:26 +00004477 hw->phy.ops.release(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00004478
4479 return retval;
4480}
4481
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004482static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004483{
4484 struct net_device *netdev = pci_get_drvdata(pdev);
4485 struct e1000_adapter *adapter = netdev_priv(netdev);
4486 struct e1000_hw *hw = &adapter->hw;
4487 u32 ctrl, ctrl_ext, rctl, status;
4488 u32 wufc = adapter->wol;
4489 int retval = 0;
4490
4491 netif_device_detach(netdev);
4492
4493 if (netif_running(netdev)) {
4494 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
4495 e1000e_down(adapter);
4496 e1000_free_irq(adapter);
4497 }
Bruce Allan4662e822008-08-26 18:37:06 -07004498 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004499
4500 retval = pci_save_state(pdev);
4501 if (retval)
4502 return retval;
4503
4504 status = er32(STATUS);
4505 if (status & E1000_STATUS_LU)
4506 wufc &= ~E1000_WUFC_LNKC;
4507
4508 if (wufc) {
4509 e1000_setup_rctl(adapter);
4510 e1000_set_multi(netdev);
4511
4512 /* turn on all-multi mode if wake on multicast is enabled */
4513 if (wufc & E1000_WUFC_MC) {
4514 rctl = er32(RCTL);
4515 rctl |= E1000_RCTL_MPE;
4516 ew32(RCTL, rctl);
4517 }
4518
4519 ctrl = er32(CTRL);
4520 /* advertise wake from D3Cold */
4521 #define E1000_CTRL_ADVD3WUC 0x00100000
4522 /* phy power management enable */
4523 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
Bruce Allana4f58f52009-06-02 11:29:18 +00004524 ctrl |= E1000_CTRL_ADVD3WUC;
4525 if (!(adapter->flags2 & FLAG2_HAS_PHY_WAKEUP))
4526 ctrl |= E1000_CTRL_EN_PHY_PWR_MGMT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004527 ew32(CTRL, ctrl);
4528
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004529 if (adapter->hw.phy.media_type == e1000_media_type_fiber ||
4530 adapter->hw.phy.media_type ==
4531 e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004532 /* keep the laser running in D3 */
4533 ctrl_ext = er32(CTRL_EXT);
Bruce Allan93a23f42009-12-08 07:27:41 +00004534 ctrl_ext |= E1000_CTRL_EXT_SDP3_DATA;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004535 ew32(CTRL_EXT, ctrl_ext);
4536 }
4537
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004538 if (adapter->flags & FLAG_IS_ICH)
4539 e1000e_disable_gig_wol_ich8lan(&adapter->hw);
4540
Auke Kokbc7f75f2007-09-17 12:30:59 -07004541 /* Allow time for pending master requests to run */
4542 e1000e_disable_pcie_master(&adapter->hw);
4543
Bruce Allan82776a42009-08-14 14:35:33 +00004544 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
Bruce Allana4f58f52009-06-02 11:29:18 +00004545 /* enable wakeup by the PHY */
4546 retval = e1000_init_phy_wakeup(adapter, wufc);
4547 if (retval)
4548 return retval;
4549 } else {
4550 /* enable wakeup by the MAC */
4551 ew32(WUFC, wufc);
4552 ew32(WUC, E1000_WUC_PME_EN);
4553 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004554 } else {
4555 ew32(WUC, 0);
4556 ew32(WUFC, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004557 }
4558
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004559 *enable_wake = !!wufc;
4560
Auke Kokbc7f75f2007-09-17 12:30:59 -07004561 /* make sure adapter isn't asleep if manageability is enabled */
Bruce Allan82776a42009-08-14 14:35:33 +00004562 if ((adapter->flags & FLAG_MNG_PT_ENABLED) ||
4563 (hw->mac.ops.check_mng_mode(hw)))
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004564 *enable_wake = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004565
4566 if (adapter->hw.phy.type == e1000_phy_igp_3)
4567 e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw);
4568
Bruce Allanad680762008-03-28 09:15:03 -07004569 /*
4570 * Release control of h/w to f/w. If f/w is AMT enabled, this
4571 * would have already happened in close and is redundant.
4572 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004573 e1000_release_hw_control(adapter);
4574
4575 pci_disable_device(pdev);
4576
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004577 return 0;
4578}
4579
4580static void e1000_power_off(struct pci_dev *pdev, bool sleep, bool wake)
4581{
4582 if (sleep && wake) {
4583 pci_prepare_to_sleep(pdev);
4584 return;
4585 }
4586
4587 pci_wake_from_d3(pdev, wake);
4588 pci_set_power_state(pdev, PCI_D3hot);
4589}
4590
4591static void e1000_complete_shutdown(struct pci_dev *pdev, bool sleep,
4592 bool wake)
4593{
4594 struct net_device *netdev = pci_get_drvdata(pdev);
4595 struct e1000_adapter *adapter = netdev_priv(netdev);
4596
Alexander Duyck005cbdf2008-11-21 16:49:10 -08004597 /*
4598 * The pci-e switch on some quad port adapters will report a
4599 * correctable error when the MAC transitions from D0 to D3. To
4600 * prevent this we need to mask off the correctable errors on the
4601 * downstream port of the pci-e switch.
4602 */
4603 if (adapter->flags & FLAG_IS_QUAD_PORT) {
4604 struct pci_dev *us_dev = pdev->bus->self;
4605 int pos = pci_find_capability(us_dev, PCI_CAP_ID_EXP);
4606 u16 devctl;
4607
4608 pci_read_config_word(us_dev, pos + PCI_EXP_DEVCTL, &devctl);
4609 pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL,
4610 (devctl & ~PCI_EXP_DEVCTL_CERE));
4611
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004612 e1000_power_off(pdev, sleep, wake);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08004613
4614 pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, devctl);
4615 } else {
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004616 e1000_power_off(pdev, sleep, wake);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08004617 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004618}
4619
Auke Kok1eae4eb2007-10-31 15:22:00 -07004620static void e1000e_disable_l1aspm(struct pci_dev *pdev)
4621{
4622 int pos;
Auke Kok1eae4eb2007-10-31 15:22:00 -07004623 u16 val;
4624
4625 /*
4626 * 82573 workaround - disable L1 ASPM on mobile chipsets
4627 *
4628 * L1 ASPM on various mobile (ich7) chipsets do not behave properly
4629 * resulting in lost data or garbage information on the pci-e link
4630 * level. This could result in (false) bad EEPROM checksum errors,
4631 * long ping times (up to 2s) or even a system freeze/hang.
4632 *
4633 * Unfortunately this feature saves about 1W power consumption when
4634 * active.
4635 */
4636 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
Auke Kok1eae4eb2007-10-31 15:22:00 -07004637 pci_read_config_word(pdev, pos + PCI_EXP_LNKCTL, &val);
4638 if (val & 0x2) {
4639 dev_warn(&pdev->dev, "Disabling L1 ASPM\n");
4640 val &= ~0x2;
4641 pci_write_config_word(pdev, pos + PCI_EXP_LNKCTL, val);
4642 }
4643}
4644
Auke Kokbc7f75f2007-09-17 12:30:59 -07004645#ifdef CONFIG_PM
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004646static int e1000_suspend(struct pci_dev *pdev, pm_message_t state)
4647{
4648 int retval;
4649 bool wake;
4650
4651 retval = __e1000_shutdown(pdev, &wake);
4652 if (!retval)
4653 e1000_complete_shutdown(pdev, true, wake);
4654
4655 return retval;
4656}
4657
Auke Kokbc7f75f2007-09-17 12:30:59 -07004658static int e1000_resume(struct pci_dev *pdev)
4659{
4660 struct net_device *netdev = pci_get_drvdata(pdev);
4661 struct e1000_adapter *adapter = netdev_priv(netdev);
4662 struct e1000_hw *hw = &adapter->hw;
4663 u32 err;
4664
4665 pci_set_power_state(pdev, PCI_D0);
4666 pci_restore_state(pdev);
Bruce Allan28b8f042010-01-07 16:30:56 +00004667 pci_save_state(pdev);
Auke Kok1eae4eb2007-10-31 15:22:00 -07004668 e1000e_disable_l1aspm(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09004669
Bruce Allanf0f422e2008-08-04 17:21:53 -07004670 err = pci_enable_device_mem(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004671 if (err) {
4672 dev_err(&pdev->dev,
4673 "Cannot enable PCI device from suspend\n");
4674 return err;
4675 }
4676
4677 pci_set_master(pdev);
4678
4679 pci_enable_wake(pdev, PCI_D3hot, 0);
4680 pci_enable_wake(pdev, PCI_D3cold, 0);
4681
Bruce Allan4662e822008-08-26 18:37:06 -07004682 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004683 if (netif_running(netdev)) {
4684 err = e1000_request_irq(adapter);
4685 if (err)
4686 return err;
4687 }
4688
4689 e1000e_power_up_phy(adapter);
Bruce Allana4f58f52009-06-02 11:29:18 +00004690
4691 /* report the system wakeup cause from S3/S4 */
4692 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
4693 u16 phy_data;
4694
4695 e1e_rphy(&adapter->hw, BM_WUS, &phy_data);
4696 if (phy_data) {
4697 e_info("PHY Wakeup cause - %s\n",
4698 phy_data & E1000_WUS_EX ? "Unicast Packet" :
4699 phy_data & E1000_WUS_MC ? "Multicast Packet" :
4700 phy_data & E1000_WUS_BC ? "Broadcast Packet" :
4701 phy_data & E1000_WUS_MAG ? "Magic Packet" :
4702 phy_data & E1000_WUS_LNKC ? "Link Status "
4703 " Change" : "other");
4704 }
4705 e1e_wphy(&adapter->hw, BM_WUS, ~0);
4706 } else {
4707 u32 wus = er32(WUS);
4708 if (wus) {
4709 e_info("MAC Wakeup cause - %s\n",
4710 wus & E1000_WUS_EX ? "Unicast Packet" :
4711 wus & E1000_WUS_MC ? "Multicast Packet" :
4712 wus & E1000_WUS_BC ? "Broadcast Packet" :
4713 wus & E1000_WUS_MAG ? "Magic Packet" :
4714 wus & E1000_WUS_LNKC ? "Link Status Change" :
4715 "other");
4716 }
4717 ew32(WUS, ~0);
4718 }
4719
Auke Kokbc7f75f2007-09-17 12:30:59 -07004720 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004721
4722 e1000_init_manageability(adapter);
4723
4724 if (netif_running(netdev))
4725 e1000e_up(adapter);
4726
4727 netif_device_attach(netdev);
4728
Bruce Allanad680762008-03-28 09:15:03 -07004729 /*
4730 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07004731 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07004732 * under the control of the driver.
4733 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07004734 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004735 e1000_get_hw_control(adapter);
4736
4737 return 0;
4738}
4739#endif
4740
4741static void e1000_shutdown(struct pci_dev *pdev)
4742{
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004743 bool wake = false;
4744
4745 __e1000_shutdown(pdev, &wake);
4746
4747 if (system_state == SYSTEM_POWER_OFF)
4748 e1000_complete_shutdown(pdev, false, wake);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004749}
4750
4751#ifdef CONFIG_NET_POLL_CONTROLLER
4752/*
4753 * Polling 'interrupt' - used by things like netconsole to send skbs
4754 * without having to re-enable interrupts. It's not called while
4755 * the interrupt routine is executing.
4756 */
4757static void e1000_netpoll(struct net_device *netdev)
4758{
4759 struct e1000_adapter *adapter = netdev_priv(netdev);
4760
4761 disable_irq(adapter->pdev->irq);
4762 e1000_intr(adapter->pdev->irq, netdev);
4763
Auke Kokbc7f75f2007-09-17 12:30:59 -07004764 enable_irq(adapter->pdev->irq);
4765}
4766#endif
4767
4768/**
4769 * e1000_io_error_detected - called when PCI error is detected
4770 * @pdev: Pointer to PCI device
4771 * @state: The current pci connection state
4772 *
4773 * This function is called after a PCI bus error affecting
4774 * this device has been detected.
4775 */
4776static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
4777 pci_channel_state_t state)
4778{
4779 struct net_device *netdev = pci_get_drvdata(pdev);
4780 struct e1000_adapter *adapter = netdev_priv(netdev);
4781
4782 netif_device_detach(netdev);
4783
Mike Masonc93b5a72009-06-30 12:45:53 +00004784 if (state == pci_channel_io_perm_failure)
4785 return PCI_ERS_RESULT_DISCONNECT;
4786
Auke Kokbc7f75f2007-09-17 12:30:59 -07004787 if (netif_running(netdev))
4788 e1000e_down(adapter);
4789 pci_disable_device(pdev);
4790
4791 /* Request a slot slot reset. */
4792 return PCI_ERS_RESULT_NEED_RESET;
4793}
4794
4795/**
4796 * e1000_io_slot_reset - called after the pci bus has been reset.
4797 * @pdev: Pointer to PCI device
4798 *
4799 * Restart the card from scratch, as if from a cold-boot. Implementation
4800 * resembles the first-half of the e1000_resume routine.
4801 */
4802static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
4803{
4804 struct net_device *netdev = pci_get_drvdata(pdev);
4805 struct e1000_adapter *adapter = netdev_priv(netdev);
4806 struct e1000_hw *hw = &adapter->hw;
Taku Izumi6e4f6f62008-06-20 11:57:02 +09004807 int err;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00004808 pci_ers_result_t result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004809
Auke Kok1eae4eb2007-10-31 15:22:00 -07004810 e1000e_disable_l1aspm(pdev);
Bruce Allanf0f422e2008-08-04 17:21:53 -07004811 err = pci_enable_device_mem(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09004812 if (err) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004813 dev_err(&pdev->dev,
4814 "Cannot re-enable PCI device after reset.\n");
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00004815 result = PCI_ERS_RESULT_DISCONNECT;
4816 } else {
4817 pci_set_master(pdev);
4818 pci_restore_state(pdev);
Bruce Allan28b8f042010-01-07 16:30:56 +00004819 pci_save_state(pdev);
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00004820
4821 pci_enable_wake(pdev, PCI_D3hot, 0);
4822 pci_enable_wake(pdev, PCI_D3cold, 0);
4823
4824 e1000e_reset(adapter);
4825 ew32(WUS, ~0);
4826 result = PCI_ERS_RESULT_RECOVERED;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004827 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004828
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00004829 pci_cleanup_aer_uncorrect_error_status(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004830
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00004831 return result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004832}
4833
4834/**
4835 * e1000_io_resume - called when traffic can start flowing again.
4836 * @pdev: Pointer to PCI device
4837 *
4838 * This callback is called when the error recovery driver tells us that
4839 * its OK to resume normal operation. Implementation resembles the
4840 * second-half of the e1000_resume routine.
4841 */
4842static void e1000_io_resume(struct pci_dev *pdev)
4843{
4844 struct net_device *netdev = pci_get_drvdata(pdev);
4845 struct e1000_adapter *adapter = netdev_priv(netdev);
4846
4847 e1000_init_manageability(adapter);
4848
4849 if (netif_running(netdev)) {
4850 if (e1000e_up(adapter)) {
4851 dev_err(&pdev->dev,
4852 "can't bring device back up after reset\n");
4853 return;
4854 }
4855 }
4856
4857 netif_device_attach(netdev);
4858
Bruce Allanad680762008-03-28 09:15:03 -07004859 /*
4860 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07004861 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07004862 * under the control of the driver.
4863 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07004864 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004865 e1000_get_hw_control(adapter);
4866
4867}
4868
4869static void e1000_print_device_info(struct e1000_adapter *adapter)
4870{
4871 struct e1000_hw *hw = &adapter->hw;
4872 struct net_device *netdev = adapter->netdev;
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07004873 u32 pba_num;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004874
4875 /* print bus type/speed/width info */
Johannes Berg7c510e42008-10-27 17:47:26 -07004876 e_info("(PCI Express:2.5GB/s:%s) %pM\n",
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004877 /* bus width */
4878 ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" :
4879 "Width x1"),
4880 /* MAC address */
Johannes Berg7c510e42008-10-27 17:47:26 -07004881 netdev->dev_addr);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004882 e_info("Intel(R) PRO/%s Network Connection\n",
4883 (hw->phy.type == e1000_phy_ife) ? "10/100" : "1000");
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07004884 e1000e_read_pba_num(hw, &pba_num);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004885 e_info("MAC: %d, PHY: %d, PBA No: %06x-%03x\n",
4886 hw->mac.type, hw->phy.type, (pba_num >> 8), (pba_num & 0xff));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004887}
4888
Auke Kok10aa4c02008-08-04 17:21:20 -07004889static void e1000_eeprom_checks(struct e1000_adapter *adapter)
4890{
4891 struct e1000_hw *hw = &adapter->hw;
4892 int ret_val;
4893 u16 buf = 0;
4894
4895 if (hw->mac.type != e1000_82573)
4896 return;
4897
4898 ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &buf);
Bruce Allane2434552008-11-21 17:02:41 -08004899 if (!ret_val && (!(le16_to_cpu(buf) & (1 << 0)))) {
Auke Kok10aa4c02008-08-04 17:21:20 -07004900 /* Deep Smart Power Down (DSPD) */
Frans Pop6c2a9ef2008-09-22 14:52:22 -07004901 dev_warn(&adapter->pdev->dev,
4902 "Warning: detected DSPD enabled in EEPROM\n");
Auke Kok10aa4c02008-08-04 17:21:20 -07004903 }
4904
4905 ret_val = e1000_read_nvm(hw, NVM_INIT_3GIO_3, 1, &buf);
Bruce Allane2434552008-11-21 17:02:41 -08004906 if (!ret_val && (le16_to_cpu(buf) & (3 << 2))) {
Auke Kok10aa4c02008-08-04 17:21:20 -07004907 /* ASPM enable */
Frans Pop6c2a9ef2008-09-22 14:52:22 -07004908 dev_warn(&adapter->pdev->dev,
4909 "Warning: detected ASPM enabled in EEPROM\n");
Auke Kok10aa4c02008-08-04 17:21:20 -07004910 }
4911}
4912
Stephen Hemminger651c2462008-11-19 21:57:48 -08004913static const struct net_device_ops e1000e_netdev_ops = {
4914 .ndo_open = e1000_open,
4915 .ndo_stop = e1000_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004916 .ndo_start_xmit = e1000_xmit_frame,
Stephen Hemminger651c2462008-11-19 21:57:48 -08004917 .ndo_get_stats = e1000_get_stats,
4918 .ndo_set_multicast_list = e1000_set_multi,
4919 .ndo_set_mac_address = e1000_set_mac,
4920 .ndo_change_mtu = e1000_change_mtu,
4921 .ndo_do_ioctl = e1000_ioctl,
4922 .ndo_tx_timeout = e1000_tx_timeout,
4923 .ndo_validate_addr = eth_validate_addr,
4924
4925 .ndo_vlan_rx_register = e1000_vlan_rx_register,
4926 .ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
4927 .ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
4928#ifdef CONFIG_NET_POLL_CONTROLLER
4929 .ndo_poll_controller = e1000_netpoll,
4930#endif
4931};
4932
Auke Kokbc7f75f2007-09-17 12:30:59 -07004933/**
4934 * e1000_probe - Device Initialization Routine
4935 * @pdev: PCI device information struct
4936 * @ent: entry in e1000_pci_tbl
4937 *
4938 * Returns 0 on success, negative on failure
4939 *
4940 * e1000_probe initializes an adapter identified by a pci_dev structure.
4941 * The OS initialization, configuring of the adapter private structure,
4942 * and a hardware reset occur.
4943 **/
4944static int __devinit e1000_probe(struct pci_dev *pdev,
4945 const struct pci_device_id *ent)
4946{
4947 struct net_device *netdev;
4948 struct e1000_adapter *adapter;
4949 struct e1000_hw *hw;
4950 const struct e1000_info *ei = e1000_info_tbl[ent->driver_data];
Becky Brucef47e81f2008-05-01 18:03:11 -05004951 resource_size_t mmio_start, mmio_len;
4952 resource_size_t flash_start, flash_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004953
4954 static int cards_found;
4955 int i, err, pci_using_dac;
4956 u16 eeprom_data = 0;
4957 u16 eeprom_apme_mask = E1000_EEPROM_APME;
4958
Auke Kok1eae4eb2007-10-31 15:22:00 -07004959 e1000e_disable_l1aspm(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09004960
Bruce Allanf0f422e2008-08-04 17:21:53 -07004961 err = pci_enable_device_mem(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004962 if (err)
4963 return err;
4964
4965 pci_using_dac = 0;
Yang Hongyang6a355282009-04-06 19:01:13 -07004966 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004967 if (!err) {
Yang Hongyang6a355282009-04-06 19:01:13 -07004968 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004969 if (!err)
4970 pci_using_dac = 1;
4971 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07004972 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004973 if (err) {
4974 err = pci_set_consistent_dma_mask(pdev,
Yang Hongyang284901a2009-04-06 19:01:15 -07004975 DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004976 if (err) {
4977 dev_err(&pdev->dev, "No usable DMA "
4978 "configuration, aborting\n");
4979 goto err_dma;
4980 }
4981 }
4982 }
4983
Arjan van de Vene8de1482008-10-22 19:55:31 -07004984 err = pci_request_selected_regions_exclusive(pdev,
Bruce Allanf0f422e2008-08-04 17:21:53 -07004985 pci_select_bars(pdev, IORESOURCE_MEM),
4986 e1000e_driver_name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004987 if (err)
4988 goto err_pci_reg;
4989
Xiaotian Feng68eac462009-08-14 14:35:52 +00004990 /* AER (Advanced Error Reporting) hooks */
Frans Pop19d5afd2009-10-02 10:04:12 -07004991 pci_enable_pcie_error_reporting(pdev);
Xiaotian Feng68eac462009-08-14 14:35:52 +00004992
Auke Kokbc7f75f2007-09-17 12:30:59 -07004993 pci_set_master(pdev);
Bruce Allan438b3652008-11-21 16:51:33 -08004994 /* PCI config space info */
4995 err = pci_save_state(pdev);
4996 if (err)
4997 goto err_alloc_etherdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004998
4999 err = -ENOMEM;
5000 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
5001 if (!netdev)
5002 goto err_alloc_etherdev;
5003
Auke Kokbc7f75f2007-09-17 12:30:59 -07005004 SET_NETDEV_DEV(netdev, &pdev->dev);
5005
5006 pci_set_drvdata(pdev, netdev);
5007 adapter = netdev_priv(netdev);
5008 hw = &adapter->hw;
5009 adapter->netdev = netdev;
5010 adapter->pdev = pdev;
5011 adapter->ei = ei;
5012 adapter->pba = ei->pba;
5013 adapter->flags = ei->flags;
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00005014 adapter->flags2 = ei->flags2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005015 adapter->hw.adapter = adapter;
5016 adapter->hw.mac.type = ei->mac;
Bruce Allan2adc55c2009-06-02 11:28:58 +00005017 adapter->max_hw_frame_size = ei->max_hw_frame_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005018 adapter->msg_enable = (1 << NETIF_MSG_DRV | NETIF_MSG_PROBE) - 1;
5019
5020 mmio_start = pci_resource_start(pdev, 0);
5021 mmio_len = pci_resource_len(pdev, 0);
5022
5023 err = -EIO;
5024 adapter->hw.hw_addr = ioremap(mmio_start, mmio_len);
5025 if (!adapter->hw.hw_addr)
5026 goto err_ioremap;
5027
5028 if ((adapter->flags & FLAG_HAS_FLASH) &&
5029 (pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
5030 flash_start = pci_resource_start(pdev, 1);
5031 flash_len = pci_resource_len(pdev, 1);
5032 adapter->hw.flash_address = ioremap(flash_start, flash_len);
5033 if (!adapter->hw.flash_address)
5034 goto err_flashmap;
5035 }
5036
5037 /* construct the net_device struct */
Stephen Hemminger651c2462008-11-19 21:57:48 -08005038 netdev->netdev_ops = &e1000e_netdev_ops;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005039 e1000e_set_ethtool_ops(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005040 netdev->watchdog_timeo = 5 * HZ;
5041 netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005042 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
5043
5044 netdev->mem_start = mmio_start;
5045 netdev->mem_end = mmio_start + mmio_len;
5046
5047 adapter->bd_number = cards_found++;
5048
Bruce Allan4662e822008-08-26 18:37:06 -07005049 e1000e_check_options(adapter);
5050
Auke Kokbc7f75f2007-09-17 12:30:59 -07005051 /* setup adapter struct */
5052 err = e1000_sw_init(adapter);
5053 if (err)
5054 goto err_sw_init;
5055
5056 err = -EIO;
5057
5058 memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops));
5059 memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops));
5060 memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops));
5061
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005062 err = ei->get_variants(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005063 if (err)
5064 goto err_hw_init;
5065
Bruce Allan4a770352008-10-01 17:18:35 -07005066 if ((adapter->flags & FLAG_IS_ICH) &&
5067 (adapter->flags & FLAG_READ_ONLY_NVM))
5068 e1000e_write_protect_nvm_ich8lan(&adapter->hw);
5069
Auke Kokbc7f75f2007-09-17 12:30:59 -07005070 hw->mac.ops.get_bus_info(&adapter->hw);
5071
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005072 adapter->hw.phy.autoneg_wait_to_complete = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005073
5074 /* Copper options */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005075 if (adapter->hw.phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005076 adapter->hw.phy.mdix = AUTO_ALL_MODES;
5077 adapter->hw.phy.disable_polarity_correction = 0;
5078 adapter->hw.phy.ms_type = e1000_ms_hw_default;
5079 }
5080
5081 if (e1000_check_reset_block(&adapter->hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005082 e_info("PHY reset is blocked due to SOL/IDER session.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005083
5084 netdev->features = NETIF_F_SG |
5085 NETIF_F_HW_CSUM |
5086 NETIF_F_HW_VLAN_TX |
5087 NETIF_F_HW_VLAN_RX;
5088
5089 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
5090 netdev->features |= NETIF_F_HW_VLAN_FILTER;
5091
5092 netdev->features |= NETIF_F_TSO;
5093 netdev->features |= NETIF_F_TSO6;
5094
Jeff Kirshera5136e22008-06-05 04:07:28 -07005095 netdev->vlan_features |= NETIF_F_TSO;
5096 netdev->vlan_features |= NETIF_F_TSO6;
5097 netdev->vlan_features |= NETIF_F_HW_CSUM;
5098 netdev->vlan_features |= NETIF_F_SG;
5099
Auke Kokbc7f75f2007-09-17 12:30:59 -07005100 if (pci_using_dac)
5101 netdev->features |= NETIF_F_HIGHDMA;
5102
Auke Kokbc7f75f2007-09-17 12:30:59 -07005103 if (e1000e_enable_mng_pass_thru(&adapter->hw))
5104 adapter->flags |= FLAG_MNG_PT_ENABLED;
5105
Bruce Allanad680762008-03-28 09:15:03 -07005106 /*
5107 * before reading the NVM, reset the controller to
5108 * put the device in a known good starting state
5109 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005110 adapter->hw.mac.ops.reset_hw(&adapter->hw);
5111
5112 /*
5113 * systems with ASPM and others may see the checksum fail on the first
5114 * attempt. Let's give it a few tries
5115 */
5116 for (i = 0;; i++) {
5117 if (e1000_validate_nvm_checksum(&adapter->hw) >= 0)
5118 break;
5119 if (i == 2) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005120 e_err("The NVM Checksum Is Not Valid\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005121 err = -EIO;
5122 goto err_eeprom;
5123 }
5124 }
5125
Auke Kok10aa4c02008-08-04 17:21:20 -07005126 e1000_eeprom_checks(adapter);
5127
Bruce Allan608f8a02010-01-13 02:04:58 +00005128 /* copy the MAC address */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005129 if (e1000e_read_mac_addr(&adapter->hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005130 e_err("NVM Read Error while reading MAC address\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005131
5132 memcpy(netdev->dev_addr, adapter->hw.mac.addr, netdev->addr_len);
5133 memcpy(netdev->perm_addr, adapter->hw.mac.addr, netdev->addr_len);
5134
5135 if (!is_valid_ether_addr(netdev->perm_addr)) {
Johannes Berg7c510e42008-10-27 17:47:26 -07005136 e_err("Invalid MAC Address: %pM\n", netdev->perm_addr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005137 err = -EIO;
5138 goto err_eeprom;
5139 }
5140
5141 init_timer(&adapter->watchdog_timer);
5142 adapter->watchdog_timer.function = &e1000_watchdog;
5143 adapter->watchdog_timer.data = (unsigned long) adapter;
5144
5145 init_timer(&adapter->phy_info_timer);
5146 adapter->phy_info_timer.function = &e1000_update_phy_info;
5147 adapter->phy_info_timer.data = (unsigned long) adapter;
5148
5149 INIT_WORK(&adapter->reset_task, e1000_reset_task);
5150 INIT_WORK(&adapter->watchdog_task, e1000_watchdog_task);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07005151 INIT_WORK(&adapter->downshift_task, e1000e_downshift_workaround);
5152 INIT_WORK(&adapter->update_phy_task, e1000e_update_phy_task);
Bruce Allan41cec6f2009-11-20 23:28:56 +00005153 INIT_WORK(&adapter->print_hang_task, e1000_print_hw_hang);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005154
Auke Kokbc7f75f2007-09-17 12:30:59 -07005155 /* Initialize link parameters. User can change them with ethtool */
5156 adapter->hw.mac.autoneg = 1;
Auke Kok309af402007-10-05 15:22:02 -07005157 adapter->fc_autoneg = 1;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08005158 adapter->hw.fc.requested_mode = e1000_fc_default;
5159 adapter->hw.fc.current_mode = e1000_fc_default;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005160 adapter->hw.phy.autoneg_advertised = 0x2f;
5161
5162 /* ring size defaults */
5163 adapter->rx_ring->count = 256;
5164 adapter->tx_ring->count = 256;
5165
5166 /*
5167 * Initial Wake on LAN setting - If APM wake is enabled in
5168 * the EEPROM, enable the ACPI Magic Packet filter
5169 */
5170 if (adapter->flags & FLAG_APME_IN_WUC) {
5171 /* APME bit in EEPROM is mapped to WUC.APME */
5172 eeprom_data = er32(WUC);
5173 eeprom_apme_mask = E1000_WUC_APME;
Bruce Allana4f58f52009-06-02 11:29:18 +00005174 if (eeprom_data & E1000_WUC_PHY_WAKE)
5175 adapter->flags2 |= FLAG2_HAS_PHY_WAKEUP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005176 } else if (adapter->flags & FLAG_APME_IN_CTRL3) {
5177 if (adapter->flags & FLAG_APME_CHECK_PORT_B &&
5178 (adapter->hw.bus.func == 1))
5179 e1000_read_nvm(&adapter->hw,
5180 NVM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
5181 else
5182 e1000_read_nvm(&adapter->hw,
5183 NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
5184 }
5185
5186 /* fetch WoL from EEPROM */
5187 if (eeprom_data & eeprom_apme_mask)
5188 adapter->eeprom_wol |= E1000_WUFC_MAG;
5189
5190 /*
5191 * now that we have the eeprom settings, apply the special cases
5192 * where the eeprom may be wrong or the board simply won't support
5193 * wake on lan on a particular port
5194 */
5195 if (!(adapter->flags & FLAG_HAS_WOL))
5196 adapter->eeprom_wol = 0;
5197
5198 /* initialize the wol settings based on the eeprom settings */
5199 adapter->wol = adapter->eeprom_wol;
\"Rafael J. Wysocki\6ff68022008-11-12 09:52:32 +00005200 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005201
Bruce Allan84527592008-11-21 17:00:22 -08005202 /* save off EEPROM version number */
5203 e1000_read_nvm(&adapter->hw, 5, 1, &adapter->eeprom_vers);
5204
Auke Kokbc7f75f2007-09-17 12:30:59 -07005205 /* reset the hardware with the new settings */
5206 e1000e_reset(adapter);
5207
Bruce Allanad680762008-03-28 09:15:03 -07005208 /*
5209 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07005210 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07005211 * under the control of the driver.
5212 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005213 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005214 e1000_get_hw_control(adapter);
5215
Auke Kokbc7f75f2007-09-17 12:30:59 -07005216 strcpy(netdev->name, "eth%d");
5217 err = register_netdev(netdev);
5218 if (err)
5219 goto err_register;
5220
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00005221 /* carrier off reporting is important to ethtool even BEFORE open */
5222 netif_carrier_off(netdev);
5223
Auke Kokbc7f75f2007-09-17 12:30:59 -07005224 e1000_print_device_info(adapter);
5225
5226 return 0;
5227
5228err_register:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005229 if (!(adapter->flags & FLAG_HAS_AMT))
5230 e1000_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005231err_eeprom:
5232 if (!e1000_check_reset_block(&adapter->hw))
5233 e1000_phy_hw_reset(&adapter->hw);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005234err_hw_init:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005235
Auke Kokbc7f75f2007-09-17 12:30:59 -07005236 kfree(adapter->tx_ring);
5237 kfree(adapter->rx_ring);
5238err_sw_init:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005239 if (adapter->hw.flash_address)
5240 iounmap(adapter->hw.flash_address);
Jeff Kirshere82f54b2008-11-14 06:45:07 +00005241 e1000e_reset_interrupt_capability(adapter);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005242err_flashmap:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005243 iounmap(adapter->hw.hw_addr);
5244err_ioremap:
5245 free_netdev(netdev);
5246err_alloc_etherdev:
Bruce Allanf0f422e2008-08-04 17:21:53 -07005247 pci_release_selected_regions(pdev,
5248 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005249err_pci_reg:
5250err_dma:
5251 pci_disable_device(pdev);
5252 return err;
5253}
5254
5255/**
5256 * e1000_remove - Device Removal Routine
5257 * @pdev: PCI device information struct
5258 *
5259 * e1000_remove is called by the PCI subsystem to alert the driver
5260 * that it should release a PCI device. The could be caused by a
5261 * Hot-Plug event, or because the driver is going to be removed from
5262 * memory.
5263 **/
5264static void __devexit e1000_remove(struct pci_dev *pdev)
5265{
5266 struct net_device *netdev = pci_get_drvdata(pdev);
5267 struct e1000_adapter *adapter = netdev_priv(netdev);
5268
Bruce Allanad680762008-03-28 09:15:03 -07005269 /*
5270 * flush_scheduled work may reschedule our watchdog task, so
5271 * explicitly disable watchdog tasks from being rescheduled
5272 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005273 set_bit(__E1000_DOWN, &adapter->state);
5274 del_timer_sync(&adapter->watchdog_timer);
5275 del_timer_sync(&adapter->phy_info_timer);
5276
Bruce Allan41cec6f2009-11-20 23:28:56 +00005277 cancel_work_sync(&adapter->reset_task);
5278 cancel_work_sync(&adapter->watchdog_task);
5279 cancel_work_sync(&adapter->downshift_task);
5280 cancel_work_sync(&adapter->update_phy_task);
5281 cancel_work_sync(&adapter->print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005282 flush_scheduled_work();
5283
Bruce Allan17f208d2009-12-01 15:47:22 +00005284 if (!(netdev->flags & IFF_UP))
5285 e1000_power_down_phy(adapter);
5286
5287 unregister_netdev(netdev);
5288
Bruce Allanad680762008-03-28 09:15:03 -07005289 /*
5290 * Release control of h/w to f/w. If f/w is AMT enabled, this
5291 * would have already happened in close and is redundant.
5292 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005293 e1000_release_hw_control(adapter);
5294
Bruce Allan4662e822008-08-26 18:37:06 -07005295 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005296 kfree(adapter->tx_ring);
5297 kfree(adapter->rx_ring);
5298
5299 iounmap(adapter->hw.hw_addr);
5300 if (adapter->hw.flash_address)
5301 iounmap(adapter->hw.flash_address);
Bruce Allanf0f422e2008-08-04 17:21:53 -07005302 pci_release_selected_regions(pdev,
5303 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005304
5305 free_netdev(netdev);
5306
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005307 /* AER disable */
Frans Pop19d5afd2009-10-02 10:04:12 -07005308 pci_disable_pcie_error_reporting(pdev);
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005309
Auke Kokbc7f75f2007-09-17 12:30:59 -07005310 pci_disable_device(pdev);
5311}
5312
5313/* PCI Error Recovery (ERS) */
5314static struct pci_error_handlers e1000_err_handler = {
5315 .error_detected = e1000_io_error_detected,
5316 .slot_reset = e1000_io_slot_reset,
5317 .resume = e1000_io_resume,
5318};
5319
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00005320static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005321 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_COPPER), board_82571 },
5322 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_FIBER), board_82571 },
5323 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER), board_82571 },
5324 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER_LP), board_82571 },
5325 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_FIBER), board_82571 },
5326 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES), board_82571 },
Auke Kok040babf2007-10-31 15:22:05 -07005327 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_DUAL), board_82571 },
5328 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_QUAD), board_82571 },
5329 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571PT_QUAD_COPPER), board_82571 },
Bruce Allanad680762008-03-28 09:15:03 -07005330
Auke Kokbc7f75f2007-09-17 12:30:59 -07005331 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI), board_82572 },
5332 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_COPPER), board_82572 },
5333 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_FIBER), board_82572 },
5334 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_SERDES), board_82572 },
Bruce Allanad680762008-03-28 09:15:03 -07005335
Auke Kokbc7f75f2007-09-17 12:30:59 -07005336 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E), board_82573 },
5337 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E_IAMT), board_82573 },
5338 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573L), board_82573 },
Bruce Allanad680762008-03-28 09:15:03 -07005339
Bruce Allan4662e822008-08-26 18:37:06 -07005340 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574L), board_82574 },
Bruce Allanbef28b12009-03-24 23:28:02 -07005341 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574LA), board_82574 },
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00005342 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82583V), board_82583 },
Bruce Allan4662e822008-08-26 18:37:06 -07005343
Auke Kokbc7f75f2007-09-17 12:30:59 -07005344 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_DPT),
5345 board_80003es2lan },
5346 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_SPT),
5347 board_80003es2lan },
5348 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_DPT),
5349 board_80003es2lan },
5350 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_SPT),
5351 board_80003es2lan },
Bruce Allanad680762008-03-28 09:15:03 -07005352
Auke Kokbc7f75f2007-09-17 12:30:59 -07005353 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE), board_ich8lan },
5354 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_G), board_ich8lan },
5355 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_GT), board_ich8lan },
5356 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_AMT), board_ich8lan },
5357 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_C), board_ich8lan },
5358 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M), board_ich8lan },
5359 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M_AMT), board_ich8lan },
Bruce Allan9e135a22009-12-01 15:50:31 +00005360 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_82567V_3), board_ich8lan },
Bruce Allanad680762008-03-28 09:15:03 -07005361
Auke Kokbc7f75f2007-09-17 12:30:59 -07005362 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE), board_ich9lan },
5363 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_G), board_ich9lan },
5364 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_GT), board_ich9lan },
5365 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_AMT), board_ich9lan },
5366 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_C), board_ich9lan },
Bruce Allan2f15f9d2008-08-26 18:36:36 -07005367 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_BM), board_ich9lan },
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005368 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M), board_ich9lan },
5369 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_AMT), board_ich9lan },
5370 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_V), board_ich9lan },
5371
5372 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LM), board_ich9lan },
5373 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LF), board_ich9lan },
5374 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_V), board_ich9lan },
Auke Kokbc7f75f2007-09-17 12:30:59 -07005375
Bruce Allanf4187b52008-08-26 18:36:50 -07005376 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LM), board_ich10lan },
5377 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LF), board_ich10lan },
5378
Bruce Allana4f58f52009-06-02 11:29:18 +00005379 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LM), board_pchlan },
5380 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LC), board_pchlan },
5381 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DM), board_pchlan },
5382 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DC), board_pchlan },
5383
Auke Kokbc7f75f2007-09-17 12:30:59 -07005384 { } /* terminate list */
5385};
5386MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
5387
5388/* PCI Device API Driver */
5389static struct pci_driver e1000_driver = {
5390 .name = e1000e_driver_name,
5391 .id_table = e1000_pci_tbl,
5392 .probe = e1000_probe,
5393 .remove = __devexit_p(e1000_remove),
5394#ifdef CONFIG_PM
Bruce Allanad680762008-03-28 09:15:03 -07005395 /* Power Management Hooks */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005396 .suspend = e1000_suspend,
5397 .resume = e1000_resume,
5398#endif
5399 .shutdown = e1000_shutdown,
5400 .err_handler = &e1000_err_handler
5401};
5402
5403/**
5404 * e1000_init_module - Driver Registration Routine
5405 *
5406 * e1000_init_module is the first routine called when the driver is
5407 * loaded. All it does is register with the PCI subsystem.
5408 **/
5409static int __init e1000_init_module(void)
5410{
5411 int ret;
5412 printk(KERN_INFO "%s: Intel(R) PRO/1000 Network Driver - %s\n",
5413 e1000e_driver_name, e1000e_driver_version);
Bruce Allanc7e54b12009-11-20 23:25:45 +00005414 printk(KERN_INFO "%s: Copyright (c) 1999 - 2009 Intel Corporation.\n",
Auke Kokbc7f75f2007-09-17 12:30:59 -07005415 e1000e_driver_name);
5416 ret = pci_register_driver(&e1000_driver);
Bruce Allan53ec5492009-11-20 23:27:40 +00005417
Auke Kokbc7f75f2007-09-17 12:30:59 -07005418 return ret;
5419}
5420module_init(e1000_init_module);
5421
5422/**
5423 * e1000_exit_module - Driver Exit Cleanup Routine
5424 *
5425 * e1000_exit_module is called just before the driver is removed
5426 * from memory.
5427 **/
5428static void __exit e1000_exit_module(void)
5429{
5430 pci_unregister_driver(&e1000_driver);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005431}
5432module_exit(e1000_exit_module);
5433
5434
5435MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
5436MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
5437MODULE_LICENSE("GPL");
5438MODULE_VERSION(DRV_VERSION);
5439
5440/* e1000_main.c */