blob: 904bd6bf319928a9f520866d827c86f3e52aeab2 [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
Bruce Allan8544b9f2010-03-24 12:55:30 +000029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Auke Kokbc7f75f2007-09-17 12:30:59 -070031#include <linux/module.h>
32#include <linux/types.h>
33#include <linux/init.h>
34#include <linux/pci.h>
35#include <linux/vmalloc.h>
36#include <linux/pagemap.h>
37#include <linux/delay.h>
38#include <linux/netdevice.h>
39#include <linux/tcp.h>
40#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070042#include <net/checksum.h>
43#include <net/ip6_checksum.h>
44#include <linux/mii.h>
45#include <linux/ethtool.h>
46#include <linux/if_vlan.h>
47#include <linux/cpu.h>
48#include <linux/smp.h>
Bruce Allan97ac8ca2008-04-29 09:16:05 -070049#include <linux/pm_qos_params.h>
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +000050#include <linux/pm_runtime.h>
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +000051#include <linux/aer.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070052
53#include "e1000.h"
54
Bruce Allan3be8c942009-06-02 11:29:56 +000055#define DRV_VERSION "1.0.2-k2"
Auke Kokbc7f75f2007-09-17 12:30:59 -070056char e1000e_driver_name[] = "e1000e";
57const char e1000e_driver_version[] = DRV_VERSION;
58
59static const struct e1000_info *e1000_info_tbl[] = {
60 [board_82571] = &e1000_82571_info,
61 [board_82572] = &e1000_82572_info,
62 [board_82573] = &e1000_82573_info,
Bruce Allan4662e822008-08-26 18:37:06 -070063 [board_82574] = &e1000_82574_info,
Alexander Duyck8c81c9c2009-03-19 01:12:27 +000064 [board_82583] = &e1000_82583_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070065 [board_80003es2lan] = &e1000_es2_info,
66 [board_ich8lan] = &e1000_ich8_info,
67 [board_ich9lan] = &e1000_ich9_info,
Bruce Allanf4187b52008-08-26 18:36:50 -070068 [board_ich10lan] = &e1000_ich10_info,
Bruce Allana4f58f52009-06-02 11:29:18 +000069 [board_pchlan] = &e1000_pch_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070070};
71
Taku Izumi84f4ee92010-04-27 14:39:08 +000072struct e1000_reg_info {
73 u32 ofs;
74 char *name;
75};
76
77#define E1000_RDFH 0x02410 /* Rx Data FIFO Head - RW */
78#define E1000_RDFT 0x02418 /* Rx Data FIFO Tail - RW */
79#define E1000_RDFHS 0x02420 /* Rx Data FIFO Head Saved - RW */
80#define E1000_RDFTS 0x02428 /* Rx Data FIFO Tail Saved - RW */
81#define E1000_RDFPC 0x02430 /* Rx Data FIFO Packet Count - RW */
82
83#define E1000_TDFH 0x03410 /* Tx Data FIFO Head - RW */
84#define E1000_TDFT 0x03418 /* Tx Data FIFO Tail - RW */
85#define E1000_TDFHS 0x03420 /* Tx Data FIFO Head Saved - RW */
86#define E1000_TDFTS 0x03428 /* Tx Data FIFO Tail Saved - RW */
87#define E1000_TDFPC 0x03430 /* Tx Data FIFO Packet Count - RW */
88
89static const struct e1000_reg_info e1000_reg_info_tbl[] = {
90
91 /* General Registers */
92 {E1000_CTRL, "CTRL"},
93 {E1000_STATUS, "STATUS"},
94 {E1000_CTRL_EXT, "CTRL_EXT"},
95
96 /* Interrupt Registers */
97 {E1000_ICR, "ICR"},
98
99 /* RX Registers */
100 {E1000_RCTL, "RCTL"},
101 {E1000_RDLEN, "RDLEN"},
102 {E1000_RDH, "RDH"},
103 {E1000_RDT, "RDT"},
104 {E1000_RDTR, "RDTR"},
105 {E1000_RXDCTL(0), "RXDCTL"},
106 {E1000_ERT, "ERT"},
107 {E1000_RDBAL, "RDBAL"},
108 {E1000_RDBAH, "RDBAH"},
109 {E1000_RDFH, "RDFH"},
110 {E1000_RDFT, "RDFT"},
111 {E1000_RDFHS, "RDFHS"},
112 {E1000_RDFTS, "RDFTS"},
113 {E1000_RDFPC, "RDFPC"},
114
115 /* TX Registers */
116 {E1000_TCTL, "TCTL"},
117 {E1000_TDBAL, "TDBAL"},
118 {E1000_TDBAH, "TDBAH"},
119 {E1000_TDLEN, "TDLEN"},
120 {E1000_TDH, "TDH"},
121 {E1000_TDT, "TDT"},
122 {E1000_TIDV, "TIDV"},
123 {E1000_TXDCTL(0), "TXDCTL"},
124 {E1000_TADV, "TADV"},
125 {E1000_TARC(0), "TARC"},
126 {E1000_TDFH, "TDFH"},
127 {E1000_TDFT, "TDFT"},
128 {E1000_TDFHS, "TDFHS"},
129 {E1000_TDFTS, "TDFTS"},
130 {E1000_TDFPC, "TDFPC"},
131
132 /* List Terminator */
133 {}
134};
135
136/*
137 * e1000_regdump - register printout routine
138 */
139static void e1000_regdump(struct e1000_hw *hw, struct e1000_reg_info *reginfo)
140{
141 int n = 0;
142 char rname[16];
143 u32 regs[8];
144
145 switch (reginfo->ofs) {
146 case E1000_RXDCTL(0):
147 for (n = 0; n < 2; n++)
148 regs[n] = __er32(hw, E1000_RXDCTL(n));
149 break;
150 case E1000_TXDCTL(0):
151 for (n = 0; n < 2; n++)
152 regs[n] = __er32(hw, E1000_TXDCTL(n));
153 break;
154 case E1000_TARC(0):
155 for (n = 0; n < 2; n++)
156 regs[n] = __er32(hw, E1000_TARC(n));
157 break;
158 default:
159 printk(KERN_INFO "%-15s %08x\n",
160 reginfo->name, __er32(hw, reginfo->ofs));
161 return;
162 }
163
164 snprintf(rname, 16, "%s%s", reginfo->name, "[0-1]");
165 printk(KERN_INFO "%-15s ", rname);
166 for (n = 0; n < 2; n++)
167 printk(KERN_CONT "%08x ", regs[n]);
168 printk(KERN_CONT "\n");
169}
170
171
172/*
173 * e1000e_dump - Print registers, tx-ring and rx-ring
174 */
175static void e1000e_dump(struct e1000_adapter *adapter)
176{
177 struct net_device *netdev = adapter->netdev;
178 struct e1000_hw *hw = &adapter->hw;
179 struct e1000_reg_info *reginfo;
180 struct e1000_ring *tx_ring = adapter->tx_ring;
181 struct e1000_tx_desc *tx_desc;
182 struct my_u0 { u64 a; u64 b; } *u0;
183 struct e1000_buffer *buffer_info;
184 struct e1000_ring *rx_ring = adapter->rx_ring;
185 union e1000_rx_desc_packet_split *rx_desc_ps;
186 struct e1000_rx_desc *rx_desc;
187 struct my_u1 { u64 a; u64 b; u64 c; u64 d; } *u1;
188 u32 staterr;
189 int i = 0;
190
191 if (!netif_msg_hw(adapter))
192 return;
193
194 /* Print netdevice Info */
195 if (netdev) {
196 dev_info(&adapter->pdev->dev, "Net device Info\n");
197 printk(KERN_INFO "Device Name state "
198 "trans_start last_rx\n");
199 printk(KERN_INFO "%-15s %016lX %016lX %016lX\n",
200 netdev->name,
201 netdev->state,
202 netdev->trans_start,
203 netdev->last_rx);
204 }
205
206 /* Print Registers */
207 dev_info(&adapter->pdev->dev, "Register Dump\n");
208 printk(KERN_INFO " Register Name Value\n");
209 for (reginfo = (struct e1000_reg_info *)e1000_reg_info_tbl;
210 reginfo->name; reginfo++) {
211 e1000_regdump(hw, reginfo);
212 }
213
214 /* Print TX Ring Summary */
215 if (!netdev || !netif_running(netdev))
216 goto exit;
217
218 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
219 printk(KERN_INFO "Queue [NTU] [NTC] [bi(ntc)->dma ]"
220 " leng ntw timestamp\n");
221 buffer_info = &tx_ring->buffer_info[tx_ring->next_to_clean];
222 printk(KERN_INFO " %5d %5X %5X %016llX %04X %3X %016llX\n",
223 0, tx_ring->next_to_use, tx_ring->next_to_clean,
224 (u64)buffer_info->dma,
225 buffer_info->length,
226 buffer_info->next_to_watch,
227 (u64)buffer_info->time_stamp);
228
229 /* Print TX Rings */
230 if (!netif_msg_tx_done(adapter))
231 goto rx_ring_summary;
232
233 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
234
235 /* Transmit Descriptor Formats - DEXT[29] is 0 (Legacy) or 1 (Extended)
236 *
237 * Legacy Transmit Descriptor
238 * +--------------------------------------------------------------+
239 * 0 | Buffer Address [63:0] (Reserved on Write Back) |
240 * +--------------------------------------------------------------+
241 * 8 | Special | CSS | Status | CMD | CSO | Length |
242 * +--------------------------------------------------------------+
243 * 63 48 47 36 35 32 31 24 23 16 15 0
244 *
245 * Extended Context Descriptor (DTYP=0x0) for TSO or checksum offload
246 * 63 48 47 40 39 32 31 16 15 8 7 0
247 * +----------------------------------------------------------------+
248 * 0 | TUCSE | TUCS0 | TUCSS | IPCSE | IPCS0 | IPCSS |
249 * +----------------------------------------------------------------+
250 * 8 | MSS | HDRLEN | RSV | STA | TUCMD | DTYP | PAYLEN |
251 * +----------------------------------------------------------------+
252 * 63 48 47 40 39 36 35 32 31 24 23 20 19 0
253 *
254 * Extended Data Descriptor (DTYP=0x1)
255 * +----------------------------------------------------------------+
256 * 0 | Buffer Address [63:0] |
257 * +----------------------------------------------------------------+
258 * 8 | VLAN tag | POPTS | Rsvd | Status | Command | DTYP | DTALEN |
259 * +----------------------------------------------------------------+
260 * 63 48 47 40 39 36 35 32 31 24 23 20 19 0
261 */
262 printk(KERN_INFO "Tl[desc] [address 63:0 ] [SpeCssSCmCsLen]"
263 " [bi->dma ] leng ntw timestamp bi->skb "
264 "<-- Legacy format\n");
265 printk(KERN_INFO "Tc[desc] [Ce CoCsIpceCoS] [MssHlRSCm0Plen]"
266 " [bi->dma ] leng ntw timestamp bi->skb "
267 "<-- Ext Context format\n");
268 printk(KERN_INFO "Td[desc] [address 63:0 ] [VlaPoRSCm1Dlen]"
269 " [bi->dma ] leng ntw timestamp bi->skb "
270 "<-- Ext Data format\n");
271 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
272 tx_desc = E1000_TX_DESC(*tx_ring, i);
273 buffer_info = &tx_ring->buffer_info[i];
274 u0 = (struct my_u0 *)tx_desc;
275 printk(KERN_INFO "T%c[0x%03X] %016llX %016llX %016llX "
276 "%04X %3X %016llX %p",
277 (!(le64_to_cpu(u0->b) & (1<<29)) ? 'l' :
278 ((le64_to_cpu(u0->b) & (1<<20)) ? 'd' : 'c')), i,
279 le64_to_cpu(u0->a), le64_to_cpu(u0->b),
280 (u64)buffer_info->dma, buffer_info->length,
281 buffer_info->next_to_watch, (u64)buffer_info->time_stamp,
282 buffer_info->skb);
283 if (i == tx_ring->next_to_use && i == tx_ring->next_to_clean)
284 printk(KERN_CONT " NTC/U\n");
285 else if (i == tx_ring->next_to_use)
286 printk(KERN_CONT " NTU\n");
287 else if (i == tx_ring->next_to_clean)
288 printk(KERN_CONT " NTC\n");
289 else
290 printk(KERN_CONT "\n");
291
292 if (netif_msg_pktdata(adapter) && buffer_info->dma != 0)
293 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS,
294 16, 1, phys_to_virt(buffer_info->dma),
295 buffer_info->length, true);
296 }
297
298 /* Print RX Rings Summary */
299rx_ring_summary:
300 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
301 printk(KERN_INFO "Queue [NTU] [NTC]\n");
302 printk(KERN_INFO " %5d %5X %5X\n", 0,
303 rx_ring->next_to_use, rx_ring->next_to_clean);
304
305 /* Print RX Rings */
306 if (!netif_msg_rx_status(adapter))
307 goto exit;
308
309 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
310 switch (adapter->rx_ps_pages) {
311 case 1:
312 case 2:
313 case 3:
314 /* [Extended] Packet Split Receive Descriptor Format
315 *
316 * +-----------------------------------------------------+
317 * 0 | Buffer Address 0 [63:0] |
318 * +-----------------------------------------------------+
319 * 8 | Buffer Address 1 [63:0] |
320 * +-----------------------------------------------------+
321 * 16 | Buffer Address 2 [63:0] |
322 * +-----------------------------------------------------+
323 * 24 | Buffer Address 3 [63:0] |
324 * +-----------------------------------------------------+
325 */
326 printk(KERN_INFO "R [desc] [buffer 0 63:0 ] "
327 "[buffer 1 63:0 ] "
328 "[buffer 2 63:0 ] [buffer 3 63:0 ] [bi->dma ] "
329 "[bi->skb] <-- Ext Pkt Split format\n");
330 /* [Extended] Receive Descriptor (Write-Back) Format
331 *
332 * 63 48 47 32 31 13 12 8 7 4 3 0
333 * +------------------------------------------------------+
334 * 0 | Packet | IP | Rsvd | MRQ | Rsvd | MRQ RSS |
335 * | Checksum | Ident | | Queue | | Type |
336 * +------------------------------------------------------+
337 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
338 * +------------------------------------------------------+
339 * 63 48 47 32 31 20 19 0
340 */
341 printk(KERN_INFO "RWB[desc] [ck ipid mrqhsh] "
342 "[vl l0 ee es] "
343 "[ l3 l2 l1 hs] [reserved ] ---------------- "
344 "[bi->skb] <-- Ext Rx Write-Back format\n");
345 for (i = 0; i < rx_ring->count; i++) {
346 buffer_info = &rx_ring->buffer_info[i];
347 rx_desc_ps = E1000_RX_DESC_PS(*rx_ring, i);
348 u1 = (struct my_u1 *)rx_desc_ps;
349 staterr =
350 le32_to_cpu(rx_desc_ps->wb.middle.status_error);
351 if (staterr & E1000_RXD_STAT_DD) {
352 /* Descriptor Done */
353 printk(KERN_INFO "RWB[0x%03X] %016llX "
354 "%016llX %016llX %016llX "
355 "---------------- %p", i,
356 le64_to_cpu(u1->a),
357 le64_to_cpu(u1->b),
358 le64_to_cpu(u1->c),
359 le64_to_cpu(u1->d),
360 buffer_info->skb);
361 } else {
362 printk(KERN_INFO "R [0x%03X] %016llX "
363 "%016llX %016llX %016llX %016llX %p", i,
364 le64_to_cpu(u1->a),
365 le64_to_cpu(u1->b),
366 le64_to_cpu(u1->c),
367 le64_to_cpu(u1->d),
368 (u64)buffer_info->dma,
369 buffer_info->skb);
370
371 if (netif_msg_pktdata(adapter))
372 print_hex_dump(KERN_INFO, "",
373 DUMP_PREFIX_ADDRESS, 16, 1,
374 phys_to_virt(buffer_info->dma),
375 adapter->rx_ps_bsize0, true);
376 }
377
378 if (i == rx_ring->next_to_use)
379 printk(KERN_CONT " NTU\n");
380 else if (i == rx_ring->next_to_clean)
381 printk(KERN_CONT " NTC\n");
382 else
383 printk(KERN_CONT "\n");
384 }
385 break;
386 default:
387 case 0:
388 /* Legacy Receive Descriptor Format
389 *
390 * +-----------------------------------------------------+
391 * | Buffer Address [63:0] |
392 * +-----------------------------------------------------+
393 * | VLAN Tag | Errors | Status 0 | Packet csum | Length |
394 * +-----------------------------------------------------+
395 * 63 48 47 40 39 32 31 16 15 0
396 */
397 printk(KERN_INFO "Rl[desc] [address 63:0 ] "
398 "[vl er S cks ln] [bi->dma ] [bi->skb] "
399 "<-- Legacy format\n");
400 for (i = 0; rx_ring->desc && (i < rx_ring->count); i++) {
401 rx_desc = E1000_RX_DESC(*rx_ring, i);
402 buffer_info = &rx_ring->buffer_info[i];
403 u0 = (struct my_u0 *)rx_desc;
404 printk(KERN_INFO "Rl[0x%03X] %016llX %016llX "
405 "%016llX %p",
406 i, le64_to_cpu(u0->a), le64_to_cpu(u0->b),
407 (u64)buffer_info->dma, buffer_info->skb);
408 if (i == rx_ring->next_to_use)
409 printk(KERN_CONT " NTU\n");
410 else if (i == rx_ring->next_to_clean)
411 printk(KERN_CONT " NTC\n");
412 else
413 printk(KERN_CONT "\n");
414
415 if (netif_msg_pktdata(adapter))
416 print_hex_dump(KERN_INFO, "",
417 DUMP_PREFIX_ADDRESS,
418 16, 1, phys_to_virt(buffer_info->dma),
419 adapter->rx_buffer_len, true);
420 }
421 }
422
423exit:
424 return;
425}
426
Auke Kokbc7f75f2007-09-17 12:30:59 -0700427/**
428 * e1000_desc_unused - calculate if we have unused descriptors
429 **/
430static int e1000_desc_unused(struct e1000_ring *ring)
431{
432 if (ring->next_to_clean > ring->next_to_use)
433 return ring->next_to_clean - ring->next_to_use - 1;
434
435 return ring->count + ring->next_to_clean - ring->next_to_use - 1;
436}
437
438/**
Bruce Allanad680762008-03-28 09:15:03 -0700439 * e1000_receive_skb - helper function to handle Rx indications
Auke Kokbc7f75f2007-09-17 12:30:59 -0700440 * @adapter: board private structure
441 * @status: descriptor status field as written by hardware
442 * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
443 * @skb: pointer to sk_buff to be indicated to stack
444 **/
445static void e1000_receive_skb(struct e1000_adapter *adapter,
446 struct net_device *netdev,
447 struct sk_buff *skb,
Al Viroa39fe742007-12-11 19:50:34 +0000448 u8 status, __le16 vlan)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700449{
450 skb->protocol = eth_type_trans(skb, netdev);
451
452 if (adapter->vlgrp && (status & E1000_RXD_STAT_VP))
Herbert Xuc405b822009-01-14 20:37:59 -0800453 vlan_gro_receive(&adapter->napi, adapter->vlgrp,
454 le16_to_cpu(vlan), skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700455 else
Herbert Xu89c88b12008-12-15 23:46:15 -0800456 napi_gro_receive(&adapter->napi, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700457}
458
459/**
460 * e1000_rx_checksum - Receive Checksum Offload for 82543
461 * @adapter: board private structure
462 * @status_err: receive descriptor status and error fields
463 * @csum: receive descriptor csum field
464 * @sk_buff: socket buffer with received data
465 **/
466static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
467 u32 csum, struct sk_buff *skb)
468{
469 u16 status = (u16)status_err;
470 u8 errors = (u8)(status_err >> 24);
471 skb->ip_summed = CHECKSUM_NONE;
472
473 /* Ignore Checksum bit is set */
474 if (status & E1000_RXD_STAT_IXSM)
475 return;
476 /* TCP/UDP checksum error bit is set */
477 if (errors & E1000_RXD_ERR_TCPE) {
478 /* let the stack verify checksum errors */
479 adapter->hw_csum_err++;
480 return;
481 }
482
483 /* TCP/UDP Checksum has not been calculated */
484 if (!(status & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)))
485 return;
486
487 /* It must be a TCP or UDP packet with a valid checksum */
488 if (status & E1000_RXD_STAT_TCPCS) {
489 /* TCP checksum is good */
490 skb->ip_summed = CHECKSUM_UNNECESSARY;
491 } else {
Bruce Allanad680762008-03-28 09:15:03 -0700492 /*
493 * IP fragment with UDP payload
494 * Hardware complements the payload checksum, so we undo it
Auke Kokbc7f75f2007-09-17 12:30:59 -0700495 * and then put the value in host order for further stack use.
496 */
Al Viroa39fe742007-12-11 19:50:34 +0000497 __sum16 sum = (__force __sum16)htons(csum);
498 skb->csum = csum_unfold(~sum);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700499 skb->ip_summed = CHECKSUM_COMPLETE;
500 }
501 adapter->hw_csum_good++;
502}
503
504/**
505 * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
506 * @adapter: address of board private structure
507 **/
508static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
509 int cleaned_count)
510{
511 struct net_device *netdev = adapter->netdev;
512 struct pci_dev *pdev = adapter->pdev;
513 struct e1000_ring *rx_ring = adapter->rx_ring;
514 struct e1000_rx_desc *rx_desc;
515 struct e1000_buffer *buffer_info;
516 struct sk_buff *skb;
517 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000518 unsigned int bufsz = adapter->rx_buffer_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700519
520 i = rx_ring->next_to_use;
521 buffer_info = &rx_ring->buffer_info[i];
522
523 while (cleaned_count--) {
524 skb = buffer_info->skb;
525 if (skb) {
526 skb_trim(skb, 0);
527 goto map_skb;
528 }
529
Eric Dumazet89d71a62009-10-13 05:34:20 +0000530 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700531 if (!skb) {
532 /* Better luck next round */
533 adapter->alloc_rx_buff_failed++;
534 break;
535 }
536
Auke Kokbc7f75f2007-09-17 12:30:59 -0700537 buffer_info->skb = skb;
538map_skb:
Nick Nunley0be3f552010-04-27 13:09:05 +0000539 buffer_info->dma = dma_map_single(&pdev->dev, skb->data,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700540 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +0000541 DMA_FROM_DEVICE);
542 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700543 dev_err(&pdev->dev, "RX DMA map failed\n");
544 adapter->rx_dma_failed++;
545 break;
546 }
547
548 rx_desc = E1000_RX_DESC(*rx_ring, i);
549 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
550
551 i++;
552 if (i == rx_ring->count)
553 i = 0;
554 buffer_info = &rx_ring->buffer_info[i];
555 }
556
557 if (rx_ring->next_to_use != i) {
558 rx_ring->next_to_use = i;
559 if (i-- == 0)
560 i = (rx_ring->count - 1);
561
Bruce Allanad680762008-03-28 09:15:03 -0700562 /*
563 * Force memory writes to complete before letting h/w
Auke Kokbc7f75f2007-09-17 12:30:59 -0700564 * know there are new descriptors to fetch. (Only
565 * applicable for weak-ordered memory model archs,
Bruce Allanad680762008-03-28 09:15:03 -0700566 * such as IA-64).
567 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700568 wmb();
569 writel(i, adapter->hw.hw_addr + rx_ring->tail);
570 }
571}
572
573/**
574 * e1000_alloc_rx_buffers_ps - Replace used receive buffers; packet split
575 * @adapter: address of board private structure
576 **/
577static void e1000_alloc_rx_buffers_ps(struct e1000_adapter *adapter,
578 int cleaned_count)
579{
580 struct net_device *netdev = adapter->netdev;
581 struct pci_dev *pdev = adapter->pdev;
582 union e1000_rx_desc_packet_split *rx_desc;
583 struct e1000_ring *rx_ring = adapter->rx_ring;
584 struct e1000_buffer *buffer_info;
585 struct e1000_ps_page *ps_page;
586 struct sk_buff *skb;
587 unsigned int i, j;
588
589 i = rx_ring->next_to_use;
590 buffer_info = &rx_ring->buffer_info[i];
591
592 while (cleaned_count--) {
593 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
594
595 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -0700596 ps_page = &buffer_info->ps_pages[j];
597 if (j >= adapter->rx_ps_pages) {
598 /* all unused desc entries get hw null ptr */
Al Viroa39fe742007-12-11 19:50:34 +0000599 rx_desc->read.buffer_addr[j+1] = ~cpu_to_le64(0);
Auke Kok47f44e42007-10-25 13:57:44 -0700600 continue;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700601 }
Auke Kok47f44e42007-10-25 13:57:44 -0700602 if (!ps_page->page) {
603 ps_page->page = alloc_page(GFP_ATOMIC);
604 if (!ps_page->page) {
605 adapter->alloc_rx_buff_failed++;
606 goto no_buffers;
607 }
Nick Nunley0be3f552010-04-27 13:09:05 +0000608 ps_page->dma = dma_map_page(&pdev->dev,
609 ps_page->page,
610 0, PAGE_SIZE,
611 DMA_FROM_DEVICE);
612 if (dma_mapping_error(&pdev->dev,
613 ps_page->dma)) {
Auke Kok47f44e42007-10-25 13:57:44 -0700614 dev_err(&adapter->pdev->dev,
615 "RX DMA page map failed\n");
616 adapter->rx_dma_failed++;
617 goto no_buffers;
618 }
619 }
620 /*
621 * Refresh the desc even if buffer_addrs
622 * didn't change because each write-back
623 * erases this info.
624 */
625 rx_desc->read.buffer_addr[j+1] =
626 cpu_to_le64(ps_page->dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700627 }
628
Eric Dumazet89d71a62009-10-13 05:34:20 +0000629 skb = netdev_alloc_skb_ip_align(netdev,
630 adapter->rx_ps_bsize0);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700631
632 if (!skb) {
633 adapter->alloc_rx_buff_failed++;
634 break;
635 }
636
Auke Kokbc7f75f2007-09-17 12:30:59 -0700637 buffer_info->skb = skb;
Nick Nunley0be3f552010-04-27 13:09:05 +0000638 buffer_info->dma = dma_map_single(&pdev->dev, skb->data,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700639 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +0000640 DMA_FROM_DEVICE);
641 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700642 dev_err(&pdev->dev, "RX DMA map failed\n");
643 adapter->rx_dma_failed++;
644 /* cleanup skb */
645 dev_kfree_skb_any(skb);
646 buffer_info->skb = NULL;
647 break;
648 }
649
650 rx_desc->read.buffer_addr[0] = cpu_to_le64(buffer_info->dma);
651
652 i++;
653 if (i == rx_ring->count)
654 i = 0;
655 buffer_info = &rx_ring->buffer_info[i];
656 }
657
658no_buffers:
659 if (rx_ring->next_to_use != i) {
660 rx_ring->next_to_use = i;
661
662 if (!(i--))
663 i = (rx_ring->count - 1);
664
Bruce Allanad680762008-03-28 09:15:03 -0700665 /*
666 * Force memory writes to complete before letting h/w
Auke Kokbc7f75f2007-09-17 12:30:59 -0700667 * know there are new descriptors to fetch. (Only
668 * applicable for weak-ordered memory model archs,
Bruce Allanad680762008-03-28 09:15:03 -0700669 * such as IA-64).
670 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700671 wmb();
Bruce Allanad680762008-03-28 09:15:03 -0700672 /*
673 * Hardware increments by 16 bytes, but packet split
Auke Kokbc7f75f2007-09-17 12:30:59 -0700674 * descriptors are 32 bytes...so we increment tail
675 * twice as much.
676 */
677 writel(i<<1, adapter->hw.hw_addr + rx_ring->tail);
678 }
679}
680
681/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700682 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
683 * @adapter: address of board private structure
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700684 * @cleaned_count: number of buffers to allocate this pass
685 **/
686
687static void e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
688 int cleaned_count)
689{
690 struct net_device *netdev = adapter->netdev;
691 struct pci_dev *pdev = adapter->pdev;
692 struct e1000_rx_desc *rx_desc;
693 struct e1000_ring *rx_ring = adapter->rx_ring;
694 struct e1000_buffer *buffer_info;
695 struct sk_buff *skb;
696 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000697 unsigned int bufsz = 256 - 16 /* for skb_reserve */;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700698
699 i = rx_ring->next_to_use;
700 buffer_info = &rx_ring->buffer_info[i];
701
702 while (cleaned_count--) {
703 skb = buffer_info->skb;
704 if (skb) {
705 skb_trim(skb, 0);
706 goto check_page;
707 }
708
Eric Dumazet89d71a62009-10-13 05:34:20 +0000709 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700710 if (unlikely(!skb)) {
711 /* Better luck next round */
712 adapter->alloc_rx_buff_failed++;
713 break;
714 }
715
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700716 buffer_info->skb = skb;
717check_page:
718 /* allocate a new page if necessary */
719 if (!buffer_info->page) {
720 buffer_info->page = alloc_page(GFP_ATOMIC);
721 if (unlikely(!buffer_info->page)) {
722 adapter->alloc_rx_buff_failed++;
723 break;
724 }
725 }
726
727 if (!buffer_info->dma)
Nick Nunley0be3f552010-04-27 13:09:05 +0000728 buffer_info->dma = dma_map_page(&pdev->dev,
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700729 buffer_info->page, 0,
730 PAGE_SIZE,
Nick Nunley0be3f552010-04-27 13:09:05 +0000731 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700732
733 rx_desc = E1000_RX_DESC(*rx_ring, i);
734 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
735
736 if (unlikely(++i == rx_ring->count))
737 i = 0;
738 buffer_info = &rx_ring->buffer_info[i];
739 }
740
741 if (likely(rx_ring->next_to_use != i)) {
742 rx_ring->next_to_use = i;
743 if (unlikely(i-- == 0))
744 i = (rx_ring->count - 1);
745
746 /* Force memory writes to complete before letting h/w
747 * know there are new descriptors to fetch. (Only
748 * applicable for weak-ordered memory model archs,
749 * such as IA-64). */
750 wmb();
751 writel(i, adapter->hw.hw_addr + rx_ring->tail);
752 }
753}
754
755/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700756 * e1000_clean_rx_irq - Send received data up the network stack; legacy
757 * @adapter: board private structure
758 *
759 * the return value indicates whether actual cleaning was done, there
760 * is no guarantee that everything was cleaned
761 **/
762static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
763 int *work_done, int work_to_do)
764{
765 struct net_device *netdev = adapter->netdev;
766 struct pci_dev *pdev = adapter->pdev;
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000767 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700768 struct e1000_ring *rx_ring = adapter->rx_ring;
769 struct e1000_rx_desc *rx_desc, *next_rxd;
770 struct e1000_buffer *buffer_info, *next_buffer;
771 u32 length;
772 unsigned int i;
773 int cleaned_count = 0;
774 bool cleaned = 0;
775 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
776
777 i = rx_ring->next_to_clean;
778 rx_desc = E1000_RX_DESC(*rx_ring, i);
779 buffer_info = &rx_ring->buffer_info[i];
780
781 while (rx_desc->status & E1000_RXD_STAT_DD) {
782 struct sk_buff *skb;
783 u8 status;
784
785 if (*work_done >= work_to_do)
786 break;
787 (*work_done)++;
788
789 status = rx_desc->status;
790 skb = buffer_info->skb;
791 buffer_info->skb = NULL;
792
793 prefetch(skb->data - NET_IP_ALIGN);
794
795 i++;
796 if (i == rx_ring->count)
797 i = 0;
798 next_rxd = E1000_RX_DESC(*rx_ring, i);
799 prefetch(next_rxd);
800
801 next_buffer = &rx_ring->buffer_info[i];
802
803 cleaned = 1;
804 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +0000805 dma_unmap_single(&pdev->dev,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700806 buffer_info->dma,
807 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +0000808 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700809 buffer_info->dma = 0;
810
811 length = le16_to_cpu(rx_desc->length);
812
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000813 /*
814 * !EOP means multiple descriptors were used to store a single
815 * packet, if that's the case we need to toss it. In fact, we
816 * need to toss every packet with the EOP bit clear and the
817 * next frame that _does_ have the EOP bit set, as it is by
818 * definition only a frame fragment
819 */
820 if (unlikely(!(status & E1000_RXD_STAT_EOP)))
821 adapter->flags2 |= FLAG2_IS_DISCARDING;
822
823 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700824 /* All receives must fit into a single buffer */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000825 e_dbg("Receive packet consumed multiple buffers\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700826 /* recycle */
827 buffer_info->skb = skb;
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000828 if (status & E1000_RXD_STAT_EOP)
829 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700830 goto next_desc;
831 }
832
833 if (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK) {
834 /* recycle */
835 buffer_info->skb = skb;
836 goto next_desc;
837 }
838
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000839 /* adjust length to remove Ethernet CRC */
840 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
841 length -= 4;
842
Auke Kokbc7f75f2007-09-17 12:30:59 -0700843 total_rx_bytes += length;
844 total_rx_packets++;
845
Bruce Allanad680762008-03-28 09:15:03 -0700846 /*
847 * code added for copybreak, this should improve
Auke Kokbc7f75f2007-09-17 12:30:59 -0700848 * performance for small packets with large amounts
Bruce Allanad680762008-03-28 09:15:03 -0700849 * of reassembly being done in the stack
850 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700851 if (length < copybreak) {
852 struct sk_buff *new_skb =
Eric Dumazet89d71a62009-10-13 05:34:20 +0000853 netdev_alloc_skb_ip_align(netdev, length);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700854 if (new_skb) {
Bruce Allan808ff672008-08-08 18:35:56 -0700855 skb_copy_to_linear_data_offset(new_skb,
856 -NET_IP_ALIGN,
857 (skb->data -
858 NET_IP_ALIGN),
859 (length +
860 NET_IP_ALIGN));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700861 /* save the skb in buffer_info as good */
862 buffer_info->skb = skb;
863 skb = new_skb;
864 }
865 /* else just continue with the old one */
866 }
867 /* end copybreak code */
868 skb_put(skb, length);
869
870 /* Receive Checksum Offload */
871 e1000_rx_checksum(adapter,
872 (u32)(status) |
873 ((u32)(rx_desc->errors) << 24),
874 le16_to_cpu(rx_desc->csum), skb);
875
876 e1000_receive_skb(adapter, netdev, skb,status,rx_desc->special);
877
878next_desc:
879 rx_desc->status = 0;
880
881 /* return some buffers to hardware, one at a time is too slow */
882 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
883 adapter->alloc_rx_buf(adapter, cleaned_count);
884 cleaned_count = 0;
885 }
886
887 /* use prefetched values */
888 rx_desc = next_rxd;
889 buffer_info = next_buffer;
890 }
891 rx_ring->next_to_clean = i;
892
893 cleaned_count = e1000_desc_unused(rx_ring);
894 if (cleaned_count)
895 adapter->alloc_rx_buf(adapter, cleaned_count);
896
Auke Kokbc7f75f2007-09-17 12:30:59 -0700897 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -0700898 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +0000899 netdev->stats.rx_bytes += total_rx_bytes;
900 netdev->stats.rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700901 return cleaned;
902}
903
Auke Kokbc7f75f2007-09-17 12:30:59 -0700904static void e1000_put_txbuf(struct e1000_adapter *adapter,
905 struct e1000_buffer *buffer_info)
906{
Alexander Duyck03b13202009-12-02 16:45:31 +0000907 if (buffer_info->dma) {
908 if (buffer_info->mapped_as_page)
Nick Nunley0be3f552010-04-27 13:09:05 +0000909 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
910 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +0000911 else
Nick Nunley0be3f552010-04-27 13:09:05 +0000912 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
913 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +0000914 buffer_info->dma = 0;
915 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700916 if (buffer_info->skb) {
917 dev_kfree_skb_any(buffer_info->skb);
918 buffer_info->skb = NULL;
919 }
Alexander Duyck1b7719c2009-03-19 01:12:50 +0000920 buffer_info->time_stamp = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700921}
922
Bruce Allan41cec6f2009-11-20 23:28:56 +0000923static void e1000_print_hw_hang(struct work_struct *work)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700924{
Bruce Allan41cec6f2009-11-20 23:28:56 +0000925 struct e1000_adapter *adapter = container_of(work,
926 struct e1000_adapter,
927 print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700928 struct e1000_ring *tx_ring = adapter->tx_ring;
929 unsigned int i = tx_ring->next_to_clean;
930 unsigned int eop = tx_ring->buffer_info[i].next_to_watch;
931 struct e1000_tx_desc *eop_desc = E1000_TX_DESC(*tx_ring, eop);
Bruce Allan41cec6f2009-11-20 23:28:56 +0000932 struct e1000_hw *hw = &adapter->hw;
933 u16 phy_status, phy_1000t_status, phy_ext_status;
934 u16 pci_status;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700935
Bruce Allan41cec6f2009-11-20 23:28:56 +0000936 e1e_rphy(hw, PHY_STATUS, &phy_status);
937 e1e_rphy(hw, PHY_1000T_STATUS, &phy_1000t_status);
938 e1e_rphy(hw, PHY_EXT_STATUS, &phy_ext_status);
939
940 pci_read_config_word(adapter->pdev, PCI_STATUS, &pci_status);
941
942 /* detected Hardware unit hang */
943 e_err("Detected Hardware Unit Hang:\n"
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700944 " TDH <%x>\n"
945 " TDT <%x>\n"
946 " next_to_use <%x>\n"
947 " next_to_clean <%x>\n"
948 "buffer_info[next_to_clean]:\n"
949 " time_stamp <%lx>\n"
950 " next_to_watch <%x>\n"
951 " jiffies <%lx>\n"
Bruce Allan41cec6f2009-11-20 23:28:56 +0000952 " next_to_watch.status <%x>\n"
953 "MAC Status <%x>\n"
954 "PHY Status <%x>\n"
955 "PHY 1000BASE-T Status <%x>\n"
956 "PHY Extended Status <%x>\n"
957 "PCI Status <%x>\n",
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700958 readl(adapter->hw.hw_addr + tx_ring->head),
959 readl(adapter->hw.hw_addr + tx_ring->tail),
960 tx_ring->next_to_use,
961 tx_ring->next_to_clean,
962 tx_ring->buffer_info[eop].time_stamp,
963 eop,
964 jiffies,
Bruce Allan41cec6f2009-11-20 23:28:56 +0000965 eop_desc->upper.fields.status,
966 er32(STATUS),
967 phy_status,
968 phy_1000t_status,
969 phy_ext_status,
970 pci_status);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700971}
972
973/**
974 * e1000_clean_tx_irq - Reclaim resources after transmit completes
975 * @adapter: board private structure
976 *
977 * the return value indicates whether actual cleaning was done, there
978 * is no guarantee that everything was cleaned
979 **/
980static bool e1000_clean_tx_irq(struct e1000_adapter *adapter)
981{
982 struct net_device *netdev = adapter->netdev;
983 struct e1000_hw *hw = &adapter->hw;
984 struct e1000_ring *tx_ring = adapter->tx_ring;
985 struct e1000_tx_desc *tx_desc, *eop_desc;
986 struct e1000_buffer *buffer_info;
987 unsigned int i, eop;
988 unsigned int count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700989 unsigned int total_tx_bytes = 0, total_tx_packets = 0;
990
991 i = tx_ring->next_to_clean;
992 eop = tx_ring->buffer_info[i].next_to_watch;
993 eop_desc = E1000_TX_DESC(*tx_ring, eop);
994
Alexander Duyck12d04a32009-03-25 22:05:03 +0000995 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
996 (count < tx_ring->count)) {
Jesse Brandeburga86043c2009-04-16 16:59:28 +0000997 bool cleaned = false;
998 for (; !cleaned; count++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700999 tx_desc = E1000_TX_DESC(*tx_ring, i);
1000 buffer_info = &tx_ring->buffer_info[i];
1001 cleaned = (i == eop);
1002
1003 if (cleaned) {
1004 struct sk_buff *skb = buffer_info->skb;
1005 unsigned int segs, bytecount;
1006 segs = skb_shinfo(skb)->gso_segs ?: 1;
1007 /* multiply data chunks by size of headers */
1008 bytecount = ((segs - 1) * skb_headlen(skb)) +
1009 skb->len;
1010 total_tx_packets += segs;
1011 total_tx_bytes += bytecount;
1012 }
1013
1014 e1000_put_txbuf(adapter, buffer_info);
1015 tx_desc->upper.data = 0;
1016
1017 i++;
1018 if (i == tx_ring->count)
1019 i = 0;
1020 }
1021
Terry Loftindac87612010-04-09 10:29:49 +00001022 if (i == tx_ring->next_to_use)
1023 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001024 eop = tx_ring->buffer_info[i].next_to_watch;
1025 eop_desc = E1000_TX_DESC(*tx_ring, eop);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001026 }
1027
1028 tx_ring->next_to_clean = i;
1029
1030#define TX_WAKE_THRESHOLD 32
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001031 if (count && netif_carrier_ok(netdev) &&
1032 e1000_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001033 /* Make sure that anybody stopping the queue after this
1034 * sees the new next_to_clean.
1035 */
1036 smp_mb();
1037
1038 if (netif_queue_stopped(netdev) &&
1039 !(test_bit(__E1000_DOWN, &adapter->state))) {
1040 netif_wake_queue(netdev);
1041 ++adapter->restart_queue;
1042 }
1043 }
1044
1045 if (adapter->detect_tx_hung) {
Bruce Allan41cec6f2009-11-20 23:28:56 +00001046 /*
1047 * Detect a transmit hang in hardware, this serializes the
1048 * check with the clearing of time_stamp and movement of i
1049 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001050 adapter->detect_tx_hung = 0;
Alexander Duyck12d04a32009-03-25 22:05:03 +00001051 if (tx_ring->buffer_info[i].time_stamp &&
1052 time_after(jiffies, tx_ring->buffer_info[i].time_stamp
Joe Perches8e95a202009-12-03 07:58:21 +00001053 + (adapter->tx_timeout_factor * HZ)) &&
1054 !(er32(STATUS) & E1000_STATUS_TXOFF)) {
Bruce Allan41cec6f2009-11-20 23:28:56 +00001055 schedule_work(&adapter->print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001056 netif_stop_queue(netdev);
1057 }
1058 }
1059 adapter->total_tx_bytes += total_tx_bytes;
1060 adapter->total_tx_packets += total_tx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +00001061 netdev->stats.tx_bytes += total_tx_bytes;
1062 netdev->stats.tx_packets += total_tx_packets;
Alexander Duyck12d04a32009-03-25 22:05:03 +00001063 return (count < tx_ring->count);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001064}
1065
1066/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001067 * e1000_clean_rx_irq_ps - Send received data up the network stack; packet split
1068 * @adapter: board private structure
1069 *
1070 * the return value indicates whether actual cleaning was done, there
1071 * is no guarantee that everything was cleaned
1072 **/
1073static bool e1000_clean_rx_irq_ps(struct e1000_adapter *adapter,
1074 int *work_done, int work_to_do)
1075{
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001076 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001077 union e1000_rx_desc_packet_split *rx_desc, *next_rxd;
1078 struct net_device *netdev = adapter->netdev;
1079 struct pci_dev *pdev = adapter->pdev;
1080 struct e1000_ring *rx_ring = adapter->rx_ring;
1081 struct e1000_buffer *buffer_info, *next_buffer;
1082 struct e1000_ps_page *ps_page;
1083 struct sk_buff *skb;
1084 unsigned int i, j;
1085 u32 length, staterr;
1086 int cleaned_count = 0;
1087 bool cleaned = 0;
1088 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
1089
1090 i = rx_ring->next_to_clean;
1091 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
1092 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1093 buffer_info = &rx_ring->buffer_info[i];
1094
1095 while (staterr & E1000_RXD_STAT_DD) {
1096 if (*work_done >= work_to_do)
1097 break;
1098 (*work_done)++;
1099 skb = buffer_info->skb;
1100
1101 /* in the packet split case this is header only */
1102 prefetch(skb->data - NET_IP_ALIGN);
1103
1104 i++;
1105 if (i == rx_ring->count)
1106 i = 0;
1107 next_rxd = E1000_RX_DESC_PS(*rx_ring, i);
1108 prefetch(next_rxd);
1109
1110 next_buffer = &rx_ring->buffer_info[i];
1111
1112 cleaned = 1;
1113 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001114 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001115 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +00001116 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001117 buffer_info->dma = 0;
1118
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001119 /* see !EOP comment in other rx routine */
1120 if (!(staterr & E1000_RXD_STAT_EOP))
1121 adapter->flags2 |= FLAG2_IS_DISCARDING;
1122
1123 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001124 e_dbg("Packet Split buffers didn't pick up the full "
1125 "packet\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001126 dev_kfree_skb_irq(skb);
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001127 if (staterr & E1000_RXD_STAT_EOP)
1128 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001129 goto next_desc;
1130 }
1131
1132 if (staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) {
1133 dev_kfree_skb_irq(skb);
1134 goto next_desc;
1135 }
1136
1137 length = le16_to_cpu(rx_desc->wb.middle.length0);
1138
1139 if (!length) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001140 e_dbg("Last part of the packet spanning multiple "
1141 "descriptors\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001142 dev_kfree_skb_irq(skb);
1143 goto next_desc;
1144 }
1145
1146 /* Good Receive */
1147 skb_put(skb, length);
1148
1149 {
Bruce Allanad680762008-03-28 09:15:03 -07001150 /*
1151 * this looks ugly, but it seems compiler issues make it
1152 * more efficient than reusing j
1153 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001154 int l1 = le16_to_cpu(rx_desc->wb.upper.length[0]);
1155
Bruce Allanad680762008-03-28 09:15:03 -07001156 /*
1157 * page alloc/put takes too long and effects small packet
1158 * throughput, so unsplit small packets and save the alloc/put
1159 * only valid in softirq (napi) context to call kmap_*
1160 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001161 if (l1 && (l1 <= copybreak) &&
1162 ((length + l1) <= adapter->rx_ps_bsize0)) {
1163 u8 *vaddr;
1164
Auke Kok47f44e42007-10-25 13:57:44 -07001165 ps_page = &buffer_info->ps_pages[0];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001166
Bruce Allanad680762008-03-28 09:15:03 -07001167 /*
1168 * there is no documentation about how to call
Auke Kokbc7f75f2007-09-17 12:30:59 -07001169 * kmap_atomic, so we can't hold the mapping
Bruce Allanad680762008-03-28 09:15:03 -07001170 * very long
1171 */
Nick Nunley0be3f552010-04-27 13:09:05 +00001172 dma_sync_single_for_cpu(&pdev->dev, ps_page->dma,
1173 PAGE_SIZE, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001174 vaddr = kmap_atomic(ps_page->page, KM_SKB_DATA_SOFTIRQ);
1175 memcpy(skb_tail_pointer(skb), vaddr, l1);
1176 kunmap_atomic(vaddr, KM_SKB_DATA_SOFTIRQ);
Nick Nunley0be3f552010-04-27 13:09:05 +00001177 dma_sync_single_for_device(&pdev->dev, ps_page->dma,
1178 PAGE_SIZE, DMA_FROM_DEVICE);
Auke Kok140a7482007-10-25 13:57:58 -07001179
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001180 /* remove the CRC */
1181 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
1182 l1 -= 4;
1183
Auke Kokbc7f75f2007-09-17 12:30:59 -07001184 skb_put(skb, l1);
1185 goto copydone;
1186 } /* if */
1187 }
1188
1189 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
1190 length = le16_to_cpu(rx_desc->wb.upper.length[j]);
1191 if (!length)
1192 break;
1193
Auke Kok47f44e42007-10-25 13:57:44 -07001194 ps_page = &buffer_info->ps_pages[j];
Nick Nunley0be3f552010-04-27 13:09:05 +00001195 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1196 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001197 ps_page->dma = 0;
1198 skb_fill_page_desc(skb, j, ps_page->page, 0, length);
1199 ps_page->page = NULL;
1200 skb->len += length;
1201 skb->data_len += length;
1202 skb->truesize += length;
1203 }
1204
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001205 /* strip the ethernet crc, problem is we're using pages now so
1206 * this whole operation can get a little cpu intensive
1207 */
1208 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
1209 pskb_trim(skb, skb->len - 4);
1210
Auke Kokbc7f75f2007-09-17 12:30:59 -07001211copydone:
1212 total_rx_bytes += skb->len;
1213 total_rx_packets++;
1214
1215 e1000_rx_checksum(adapter, staterr, le16_to_cpu(
1216 rx_desc->wb.lower.hi_dword.csum_ip.csum), skb);
1217
1218 if (rx_desc->wb.upper.header_status &
1219 cpu_to_le16(E1000_RXDPS_HDRSTAT_HDRSP))
1220 adapter->rx_hdr_split++;
1221
1222 e1000_receive_skb(adapter, netdev, skb,
1223 staterr, rx_desc->wb.middle.vlan);
1224
1225next_desc:
1226 rx_desc->wb.middle.status_error &= cpu_to_le32(~0xFF);
1227 buffer_info->skb = NULL;
1228
1229 /* return some buffers to hardware, one at a time is too slow */
1230 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
1231 adapter->alloc_rx_buf(adapter, cleaned_count);
1232 cleaned_count = 0;
1233 }
1234
1235 /* use prefetched values */
1236 rx_desc = next_rxd;
1237 buffer_info = next_buffer;
1238
1239 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1240 }
1241 rx_ring->next_to_clean = i;
1242
1243 cleaned_count = e1000_desc_unused(rx_ring);
1244 if (cleaned_count)
1245 adapter->alloc_rx_buf(adapter, cleaned_count);
1246
Auke Kokbc7f75f2007-09-17 12:30:59 -07001247 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -07001248 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +00001249 netdev->stats.rx_bytes += total_rx_bytes;
1250 netdev->stats.rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001251 return cleaned;
1252}
1253
1254/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001255 * e1000_consume_page - helper function
1256 **/
1257static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
1258 u16 length)
1259{
1260 bi->page = NULL;
1261 skb->len += length;
1262 skb->data_len += length;
1263 skb->truesize += length;
1264}
1265
1266/**
1267 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
1268 * @adapter: board private structure
1269 *
1270 * the return value indicates whether actual cleaning was done, there
1271 * is no guarantee that everything was cleaned
1272 **/
1273
1274static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
1275 int *work_done, int work_to_do)
1276{
1277 struct net_device *netdev = adapter->netdev;
1278 struct pci_dev *pdev = adapter->pdev;
1279 struct e1000_ring *rx_ring = adapter->rx_ring;
1280 struct e1000_rx_desc *rx_desc, *next_rxd;
1281 struct e1000_buffer *buffer_info, *next_buffer;
1282 u32 length;
1283 unsigned int i;
1284 int cleaned_count = 0;
1285 bool cleaned = false;
1286 unsigned int total_rx_bytes=0, total_rx_packets=0;
1287
1288 i = rx_ring->next_to_clean;
1289 rx_desc = E1000_RX_DESC(*rx_ring, i);
1290 buffer_info = &rx_ring->buffer_info[i];
1291
1292 while (rx_desc->status & E1000_RXD_STAT_DD) {
1293 struct sk_buff *skb;
1294 u8 status;
1295
1296 if (*work_done >= work_to_do)
1297 break;
1298 (*work_done)++;
1299
1300 status = rx_desc->status;
1301 skb = buffer_info->skb;
1302 buffer_info->skb = NULL;
1303
1304 ++i;
1305 if (i == rx_ring->count)
1306 i = 0;
1307 next_rxd = E1000_RX_DESC(*rx_ring, i);
1308 prefetch(next_rxd);
1309
1310 next_buffer = &rx_ring->buffer_info[i];
1311
1312 cleaned = true;
1313 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001314 dma_unmap_page(&pdev->dev, buffer_info->dma, PAGE_SIZE,
1315 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001316 buffer_info->dma = 0;
1317
1318 length = le16_to_cpu(rx_desc->length);
1319
1320 /* errors is only valid for DD + EOP descriptors */
1321 if (unlikely((status & E1000_RXD_STAT_EOP) &&
1322 (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) {
1323 /* recycle both page and skb */
1324 buffer_info->skb = skb;
1325 /* an error means any chain goes out the window
1326 * too */
1327 if (rx_ring->rx_skb_top)
1328 dev_kfree_skb(rx_ring->rx_skb_top);
1329 rx_ring->rx_skb_top = NULL;
1330 goto next_desc;
1331 }
1332
1333#define rxtop rx_ring->rx_skb_top
1334 if (!(status & E1000_RXD_STAT_EOP)) {
1335 /* this descriptor is only the beginning (or middle) */
1336 if (!rxtop) {
1337 /* this is the beginning of a chain */
1338 rxtop = skb;
1339 skb_fill_page_desc(rxtop, 0, buffer_info->page,
1340 0, length);
1341 } else {
1342 /* this is the middle of a chain */
1343 skb_fill_page_desc(rxtop,
1344 skb_shinfo(rxtop)->nr_frags,
1345 buffer_info->page, 0, length);
1346 /* re-use the skb, only consumed the page */
1347 buffer_info->skb = skb;
1348 }
1349 e1000_consume_page(buffer_info, rxtop, length);
1350 goto next_desc;
1351 } else {
1352 if (rxtop) {
1353 /* end of the chain */
1354 skb_fill_page_desc(rxtop,
1355 skb_shinfo(rxtop)->nr_frags,
1356 buffer_info->page, 0, length);
1357 /* re-use the current skb, we only consumed the
1358 * page */
1359 buffer_info->skb = skb;
1360 skb = rxtop;
1361 rxtop = NULL;
1362 e1000_consume_page(buffer_info, skb, length);
1363 } else {
1364 /* no chain, got EOP, this buf is the packet
1365 * copybreak to save the put_page/alloc_page */
1366 if (length <= copybreak &&
1367 skb_tailroom(skb) >= length) {
1368 u8 *vaddr;
1369 vaddr = kmap_atomic(buffer_info->page,
1370 KM_SKB_DATA_SOFTIRQ);
1371 memcpy(skb_tail_pointer(skb), vaddr,
1372 length);
1373 kunmap_atomic(vaddr,
1374 KM_SKB_DATA_SOFTIRQ);
1375 /* re-use the page, so don't erase
1376 * buffer_info->page */
1377 skb_put(skb, length);
1378 } else {
1379 skb_fill_page_desc(skb, 0,
1380 buffer_info->page, 0,
1381 length);
1382 e1000_consume_page(buffer_info, skb,
1383 length);
1384 }
1385 }
1386 }
1387
1388 /* Receive Checksum Offload XXX recompute due to CRC strip? */
1389 e1000_rx_checksum(adapter,
1390 (u32)(status) |
1391 ((u32)(rx_desc->errors) << 24),
1392 le16_to_cpu(rx_desc->csum), skb);
1393
1394 /* probably a little skewed due to removing CRC */
1395 total_rx_bytes += skb->len;
1396 total_rx_packets++;
1397
1398 /* eth type trans needs skb->data to point to something */
1399 if (!pskb_may_pull(skb, ETH_HLEN)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001400 e_err("pskb_may_pull failed.\n");
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001401 dev_kfree_skb(skb);
1402 goto next_desc;
1403 }
1404
1405 e1000_receive_skb(adapter, netdev, skb, status,
1406 rx_desc->special);
1407
1408next_desc:
1409 rx_desc->status = 0;
1410
1411 /* return some buffers to hardware, one at a time is too slow */
1412 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
1413 adapter->alloc_rx_buf(adapter, cleaned_count);
1414 cleaned_count = 0;
1415 }
1416
1417 /* use prefetched values */
1418 rx_desc = next_rxd;
1419 buffer_info = next_buffer;
1420 }
1421 rx_ring->next_to_clean = i;
1422
1423 cleaned_count = e1000_desc_unused(rx_ring);
1424 if (cleaned_count)
1425 adapter->alloc_rx_buf(adapter, cleaned_count);
1426
1427 adapter->total_rx_bytes += total_rx_bytes;
1428 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +00001429 netdev->stats.rx_bytes += total_rx_bytes;
1430 netdev->stats.rx_packets += total_rx_packets;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001431 return cleaned;
1432}
1433
1434/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001435 * e1000_clean_rx_ring - Free Rx Buffers per Queue
1436 * @adapter: board private structure
1437 **/
1438static void e1000_clean_rx_ring(struct e1000_adapter *adapter)
1439{
1440 struct e1000_ring *rx_ring = adapter->rx_ring;
1441 struct e1000_buffer *buffer_info;
1442 struct e1000_ps_page *ps_page;
1443 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001444 unsigned int i, j;
1445
1446 /* Free all the Rx ring sk_buffs */
1447 for (i = 0; i < rx_ring->count; i++) {
1448 buffer_info = &rx_ring->buffer_info[i];
1449 if (buffer_info->dma) {
1450 if (adapter->clean_rx == e1000_clean_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001451 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001452 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +00001453 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001454 else if (adapter->clean_rx == e1000_clean_jumbo_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001455 dma_unmap_page(&pdev->dev, buffer_info->dma,
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001456 PAGE_SIZE,
Nick Nunley0be3f552010-04-27 13:09:05 +00001457 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001458 else if (adapter->clean_rx == e1000_clean_rx_irq_ps)
Nick Nunley0be3f552010-04-27 13:09:05 +00001459 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001460 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +00001461 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001462 buffer_info->dma = 0;
1463 }
1464
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001465 if (buffer_info->page) {
1466 put_page(buffer_info->page);
1467 buffer_info->page = NULL;
1468 }
1469
Auke Kokbc7f75f2007-09-17 12:30:59 -07001470 if (buffer_info->skb) {
1471 dev_kfree_skb(buffer_info->skb);
1472 buffer_info->skb = NULL;
1473 }
1474
1475 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -07001476 ps_page = &buffer_info->ps_pages[j];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001477 if (!ps_page->page)
1478 break;
Nick Nunley0be3f552010-04-27 13:09:05 +00001479 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1480 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001481 ps_page->dma = 0;
1482 put_page(ps_page->page);
1483 ps_page->page = NULL;
1484 }
1485 }
1486
1487 /* there also may be some cached data from a chained receive */
1488 if (rx_ring->rx_skb_top) {
1489 dev_kfree_skb(rx_ring->rx_skb_top);
1490 rx_ring->rx_skb_top = NULL;
1491 }
1492
Auke Kokbc7f75f2007-09-17 12:30:59 -07001493 /* Zero out the descriptor ring */
1494 memset(rx_ring->desc, 0, rx_ring->size);
1495
1496 rx_ring->next_to_clean = 0;
1497 rx_ring->next_to_use = 0;
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001498 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001499
1500 writel(0, adapter->hw.hw_addr + rx_ring->head);
1501 writel(0, adapter->hw.hw_addr + rx_ring->tail);
1502}
1503
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001504static void e1000e_downshift_workaround(struct work_struct *work)
1505{
1506 struct e1000_adapter *adapter = container_of(work,
1507 struct e1000_adapter, downshift_task);
1508
1509 e1000e_gig_downshift_workaround_ich8lan(&adapter->hw);
1510}
1511
Auke Kokbc7f75f2007-09-17 12:30:59 -07001512/**
1513 * e1000_intr_msi - Interrupt Handler
1514 * @irq: interrupt number
1515 * @data: pointer to a network interface device structure
1516 **/
1517static irqreturn_t e1000_intr_msi(int irq, void *data)
1518{
1519 struct net_device *netdev = data;
1520 struct e1000_adapter *adapter = netdev_priv(netdev);
1521 struct e1000_hw *hw = &adapter->hw;
1522 u32 icr = er32(ICR);
1523
Bruce Allanad680762008-03-28 09:15:03 -07001524 /*
1525 * read ICR disables interrupts using IAM
1526 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001527
dave graham573cca82009-02-10 12:52:05 +00001528 if (icr & E1000_ICR_LSC) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001529 hw->mac.get_link_status = 1;
Bruce Allanad680762008-03-28 09:15:03 -07001530 /*
1531 * ICH8 workaround-- Call gig speed drop workaround on cable
1532 * disconnect (LSC) before accessing any PHY registers
1533 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001534 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1535 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001536 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001537
Bruce Allanad680762008-03-28 09:15:03 -07001538 /*
1539 * 80003ES2LAN workaround-- For packet buffer work-around on
Auke Kokbc7f75f2007-09-17 12:30:59 -07001540 * link down event; disable receives here in the ISR and reset
Bruce Allanad680762008-03-28 09:15:03 -07001541 * adapter in watchdog
1542 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001543 if (netif_carrier_ok(netdev) &&
1544 adapter->flags & FLAG_RX_NEEDS_RESTART) {
1545 /* disable receives */
1546 u32 rctl = er32(RCTL);
1547 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001548 adapter->flags |= FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001549 }
1550 /* guard against interrupt when we're going down */
1551 if (!test_bit(__E1000_DOWN, &adapter->state))
1552 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1553 }
1554
Ben Hutchings288379f2009-01-19 16:43:59 -08001555 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001556 adapter->total_tx_bytes = 0;
1557 adapter->total_tx_packets = 0;
1558 adapter->total_rx_bytes = 0;
1559 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001560 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001561 }
1562
1563 return IRQ_HANDLED;
1564}
1565
1566/**
1567 * e1000_intr - Interrupt Handler
1568 * @irq: interrupt number
1569 * @data: pointer to a network interface device structure
1570 **/
1571static irqreturn_t e1000_intr(int irq, void *data)
1572{
1573 struct net_device *netdev = data;
1574 struct e1000_adapter *adapter = netdev_priv(netdev);
1575 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001576 u32 rctl, icr = er32(ICR);
Bruce Allan4662e822008-08-26 18:37:06 -07001577
Bruce Allana68ea772009-11-20 23:23:16 +00001578 if (!icr || test_bit(__E1000_DOWN, &adapter->state))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001579 return IRQ_NONE; /* Not our interrupt */
1580
Bruce Allanad680762008-03-28 09:15:03 -07001581 /*
1582 * IMS will not auto-mask if INT_ASSERTED is not set, and if it is
1583 * not set, then the adapter didn't send an interrupt
1584 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001585 if (!(icr & E1000_ICR_INT_ASSERTED))
1586 return IRQ_NONE;
1587
Bruce Allanad680762008-03-28 09:15:03 -07001588 /*
1589 * Interrupt Auto-Mask...upon reading ICR,
1590 * interrupts are masked. No need for the
1591 * IMC write
1592 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001593
dave graham573cca82009-02-10 12:52:05 +00001594 if (icr & E1000_ICR_LSC) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001595 hw->mac.get_link_status = 1;
Bruce Allanad680762008-03-28 09:15:03 -07001596 /*
1597 * ICH8 workaround-- Call gig speed drop workaround on cable
1598 * disconnect (LSC) before accessing any PHY registers
1599 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001600 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1601 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001602 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001603
Bruce Allanad680762008-03-28 09:15:03 -07001604 /*
1605 * 80003ES2LAN workaround--
Auke Kokbc7f75f2007-09-17 12:30:59 -07001606 * For packet buffer work-around on link down event;
1607 * disable receives here in the ISR and
1608 * reset adapter in watchdog
1609 */
1610 if (netif_carrier_ok(netdev) &&
1611 (adapter->flags & FLAG_RX_NEEDS_RESTART)) {
1612 /* disable receives */
1613 rctl = er32(RCTL);
1614 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001615 adapter->flags |= FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001616 }
1617 /* guard against interrupt when we're going down */
1618 if (!test_bit(__E1000_DOWN, &adapter->state))
1619 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1620 }
1621
Ben Hutchings288379f2009-01-19 16:43:59 -08001622 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001623 adapter->total_tx_bytes = 0;
1624 adapter->total_tx_packets = 0;
1625 adapter->total_rx_bytes = 0;
1626 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001627 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001628 }
1629
1630 return IRQ_HANDLED;
1631}
1632
Bruce Allan4662e822008-08-26 18:37:06 -07001633static irqreturn_t e1000_msix_other(int irq, void *data)
1634{
1635 struct net_device *netdev = data;
1636 struct e1000_adapter *adapter = netdev_priv(netdev);
1637 struct e1000_hw *hw = &adapter->hw;
1638 u32 icr = er32(ICR);
1639
1640 if (!(icr & E1000_ICR_INT_ASSERTED)) {
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001641 if (!test_bit(__E1000_DOWN, &adapter->state))
1642 ew32(IMS, E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001643 return IRQ_NONE;
1644 }
1645
1646 if (icr & adapter->eiac_mask)
1647 ew32(ICS, (icr & adapter->eiac_mask));
1648
1649 if (icr & E1000_ICR_OTHER) {
1650 if (!(icr & E1000_ICR_LSC))
1651 goto no_link_interrupt;
1652 hw->mac.get_link_status = 1;
1653 /* guard against interrupt when we're going down */
1654 if (!test_bit(__E1000_DOWN, &adapter->state))
1655 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1656 }
1657
1658no_link_interrupt:
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001659 if (!test_bit(__E1000_DOWN, &adapter->state))
1660 ew32(IMS, E1000_IMS_LSC | E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001661
1662 return IRQ_HANDLED;
1663}
1664
1665
1666static irqreturn_t e1000_intr_msix_tx(int irq, void *data)
1667{
1668 struct net_device *netdev = data;
1669 struct e1000_adapter *adapter = netdev_priv(netdev);
1670 struct e1000_hw *hw = &adapter->hw;
1671 struct e1000_ring *tx_ring = adapter->tx_ring;
1672
1673
1674 adapter->total_tx_bytes = 0;
1675 adapter->total_tx_packets = 0;
1676
1677 if (!e1000_clean_tx_irq(adapter))
1678 /* Ring was not completely cleaned, so fire another interrupt */
1679 ew32(ICS, tx_ring->ims_val);
1680
1681 return IRQ_HANDLED;
1682}
1683
1684static irqreturn_t e1000_intr_msix_rx(int irq, void *data)
1685{
1686 struct net_device *netdev = data;
1687 struct e1000_adapter *adapter = netdev_priv(netdev);
1688
1689 /* Write the ITR value calculated at the end of the
1690 * previous interrupt.
1691 */
1692 if (adapter->rx_ring->set_itr) {
1693 writel(1000000000 / (adapter->rx_ring->itr_val * 256),
1694 adapter->hw.hw_addr + adapter->rx_ring->itr_register);
1695 adapter->rx_ring->set_itr = 0;
1696 }
1697
Ben Hutchings288379f2009-01-19 16:43:59 -08001698 if (napi_schedule_prep(&adapter->napi)) {
Bruce Allan4662e822008-08-26 18:37:06 -07001699 adapter->total_rx_bytes = 0;
1700 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001701 __napi_schedule(&adapter->napi);
Bruce Allan4662e822008-08-26 18:37:06 -07001702 }
1703 return IRQ_HANDLED;
1704}
1705
1706/**
1707 * e1000_configure_msix - Configure MSI-X hardware
1708 *
1709 * e1000_configure_msix sets up the hardware to properly
1710 * generate MSI-X interrupts.
1711 **/
1712static void e1000_configure_msix(struct e1000_adapter *adapter)
1713{
1714 struct e1000_hw *hw = &adapter->hw;
1715 struct e1000_ring *rx_ring = adapter->rx_ring;
1716 struct e1000_ring *tx_ring = adapter->tx_ring;
1717 int vector = 0;
1718 u32 ctrl_ext, ivar = 0;
1719
1720 adapter->eiac_mask = 0;
1721
1722 /* Workaround issue with spurious interrupts on 82574 in MSI-X mode */
1723 if (hw->mac.type == e1000_82574) {
1724 u32 rfctl = er32(RFCTL);
1725 rfctl |= E1000_RFCTL_ACK_DIS;
1726 ew32(RFCTL, rfctl);
1727 }
1728
1729#define E1000_IVAR_INT_ALLOC_VALID 0x8
1730 /* Configure Rx vector */
1731 rx_ring->ims_val = E1000_IMS_RXQ0;
1732 adapter->eiac_mask |= rx_ring->ims_val;
1733 if (rx_ring->itr_val)
1734 writel(1000000000 / (rx_ring->itr_val * 256),
1735 hw->hw_addr + rx_ring->itr_register);
1736 else
1737 writel(1, hw->hw_addr + rx_ring->itr_register);
1738 ivar = E1000_IVAR_INT_ALLOC_VALID | vector;
1739
1740 /* Configure Tx vector */
1741 tx_ring->ims_val = E1000_IMS_TXQ0;
1742 vector++;
1743 if (tx_ring->itr_val)
1744 writel(1000000000 / (tx_ring->itr_val * 256),
1745 hw->hw_addr + tx_ring->itr_register);
1746 else
1747 writel(1, hw->hw_addr + tx_ring->itr_register);
1748 adapter->eiac_mask |= tx_ring->ims_val;
1749 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 8);
1750
1751 /* set vector for Other Causes, e.g. link changes */
1752 vector++;
1753 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 16);
1754 if (rx_ring->itr_val)
1755 writel(1000000000 / (rx_ring->itr_val * 256),
1756 hw->hw_addr + E1000_EITR_82574(vector));
1757 else
1758 writel(1, hw->hw_addr + E1000_EITR_82574(vector));
1759
1760 /* Cause Tx interrupts on every write back */
1761 ivar |= (1 << 31);
1762
1763 ew32(IVAR, ivar);
1764
1765 /* enable MSI-X PBA support */
1766 ctrl_ext = er32(CTRL_EXT);
1767 ctrl_ext |= E1000_CTRL_EXT_PBA_CLR;
1768
1769 /* Auto-Mask Other interrupts upon ICR read */
1770#define E1000_EIAC_MASK_82574 0x01F00000
1771 ew32(IAM, ~E1000_EIAC_MASK_82574 | E1000_IMS_OTHER);
1772 ctrl_ext |= E1000_CTRL_EXT_EIAME;
1773 ew32(CTRL_EXT, ctrl_ext);
1774 e1e_flush();
1775}
1776
1777void e1000e_reset_interrupt_capability(struct e1000_adapter *adapter)
1778{
1779 if (adapter->msix_entries) {
1780 pci_disable_msix(adapter->pdev);
1781 kfree(adapter->msix_entries);
1782 adapter->msix_entries = NULL;
1783 } else if (adapter->flags & FLAG_MSI_ENABLED) {
1784 pci_disable_msi(adapter->pdev);
1785 adapter->flags &= ~FLAG_MSI_ENABLED;
1786 }
1787
1788 return;
1789}
1790
1791/**
1792 * e1000e_set_interrupt_capability - set MSI or MSI-X if supported
1793 *
1794 * Attempt to configure interrupts using the best available
1795 * capabilities of the hardware and kernel.
1796 **/
1797void e1000e_set_interrupt_capability(struct e1000_adapter *adapter)
1798{
1799 int err;
1800 int numvecs, i;
1801
1802
1803 switch (adapter->int_mode) {
1804 case E1000E_INT_MODE_MSIX:
1805 if (adapter->flags & FLAG_HAS_MSIX) {
1806 numvecs = 3; /* RxQ0, TxQ0 and other */
1807 adapter->msix_entries = kcalloc(numvecs,
1808 sizeof(struct msix_entry),
1809 GFP_KERNEL);
1810 if (adapter->msix_entries) {
1811 for (i = 0; i < numvecs; i++)
1812 adapter->msix_entries[i].entry = i;
1813
1814 err = pci_enable_msix(adapter->pdev,
1815 adapter->msix_entries,
1816 numvecs);
1817 if (err == 0)
1818 return;
1819 }
1820 /* MSI-X failed, so fall through and try MSI */
1821 e_err("Failed to initialize MSI-X interrupts. "
1822 "Falling back to MSI interrupts.\n");
1823 e1000e_reset_interrupt_capability(adapter);
1824 }
1825 adapter->int_mode = E1000E_INT_MODE_MSI;
1826 /* Fall through */
1827 case E1000E_INT_MODE_MSI:
1828 if (!pci_enable_msi(adapter->pdev)) {
1829 adapter->flags |= FLAG_MSI_ENABLED;
1830 } else {
1831 adapter->int_mode = E1000E_INT_MODE_LEGACY;
1832 e_err("Failed to initialize MSI interrupts. Falling "
1833 "back to legacy interrupts.\n");
1834 }
1835 /* Fall through */
1836 case E1000E_INT_MODE_LEGACY:
1837 /* Don't do anything; this is the system default */
1838 break;
1839 }
1840
1841 return;
1842}
1843
1844/**
1845 * e1000_request_msix - Initialize MSI-X interrupts
1846 *
1847 * e1000_request_msix allocates MSI-X vectors and requests interrupts from the
1848 * kernel.
1849 **/
1850static int e1000_request_msix(struct e1000_adapter *adapter)
1851{
1852 struct net_device *netdev = adapter->netdev;
1853 int err = 0, vector = 0;
1854
1855 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Alexander Duyckcb7b48f2008-12-05 15:08:03 -08001856 sprintf(adapter->rx_ring->name, "%s-rx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07001857 else
1858 memcpy(adapter->rx_ring->name, netdev->name, IFNAMSIZ);
1859 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001860 e1000_intr_msix_rx, 0, adapter->rx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07001861 netdev);
1862 if (err)
1863 goto out;
1864 adapter->rx_ring->itr_register = E1000_EITR_82574(vector);
1865 adapter->rx_ring->itr_val = adapter->itr;
1866 vector++;
1867
1868 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Alexander Duyckcb7b48f2008-12-05 15:08:03 -08001869 sprintf(adapter->tx_ring->name, "%s-tx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07001870 else
1871 memcpy(adapter->tx_ring->name, netdev->name, IFNAMSIZ);
1872 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001873 e1000_intr_msix_tx, 0, adapter->tx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07001874 netdev);
1875 if (err)
1876 goto out;
1877 adapter->tx_ring->itr_register = E1000_EITR_82574(vector);
1878 adapter->tx_ring->itr_val = adapter->itr;
1879 vector++;
1880
1881 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001882 e1000_msix_other, 0, netdev->name, netdev);
Bruce Allan4662e822008-08-26 18:37:06 -07001883 if (err)
1884 goto out;
1885
1886 e1000_configure_msix(adapter);
1887 return 0;
1888out:
1889 return err;
1890}
1891
Bruce Allanf8d59f72008-08-08 18:36:11 -07001892/**
1893 * e1000_request_irq - initialize interrupts
1894 *
1895 * Attempts to configure interrupts using the best available
1896 * capabilities of the hardware and kernel.
1897 **/
Auke Kokbc7f75f2007-09-17 12:30:59 -07001898static int e1000_request_irq(struct e1000_adapter *adapter)
1899{
1900 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001901 int err;
1902
Bruce Allan4662e822008-08-26 18:37:06 -07001903 if (adapter->msix_entries) {
1904 err = e1000_request_msix(adapter);
1905 if (!err)
1906 return err;
1907 /* fall back to MSI */
1908 e1000e_reset_interrupt_capability(adapter);
1909 adapter->int_mode = E1000E_INT_MODE_MSI;
1910 e1000e_set_interrupt_capability(adapter);
1911 }
1912 if (adapter->flags & FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08001913 err = request_irq(adapter->pdev->irq, e1000_intr_msi, 0,
Bruce Allan4662e822008-08-26 18:37:06 -07001914 netdev->name, netdev);
1915 if (!err)
1916 return err;
1917
1918 /* fall back to legacy interrupt */
1919 e1000e_reset_interrupt_capability(adapter);
1920 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001921 }
1922
Joe Perchesa0607fd2009-11-18 23:29:17 -08001923 err = request_irq(adapter->pdev->irq, e1000_intr, IRQF_SHARED,
Bruce Allan4662e822008-08-26 18:37:06 -07001924 netdev->name, netdev);
1925 if (err)
Bruce Allanf8d59f72008-08-08 18:36:11 -07001926 e_err("Unable to allocate interrupt, Error: %d\n", err);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001927
1928 return err;
1929}
1930
1931static void e1000_free_irq(struct e1000_adapter *adapter)
1932{
1933 struct net_device *netdev = adapter->netdev;
1934
Bruce Allan4662e822008-08-26 18:37:06 -07001935 if (adapter->msix_entries) {
1936 int vector = 0;
1937
1938 free_irq(adapter->msix_entries[vector].vector, netdev);
1939 vector++;
1940
1941 free_irq(adapter->msix_entries[vector].vector, netdev);
1942 vector++;
1943
1944 /* Other Causes interrupt vector */
1945 free_irq(adapter->msix_entries[vector].vector, netdev);
1946 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001947 }
Bruce Allan4662e822008-08-26 18:37:06 -07001948
1949 free_irq(adapter->pdev->irq, netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001950}
1951
1952/**
1953 * e1000_irq_disable - Mask off interrupt generation on the NIC
1954 **/
1955static void e1000_irq_disable(struct e1000_adapter *adapter)
1956{
1957 struct e1000_hw *hw = &adapter->hw;
1958
Auke Kokbc7f75f2007-09-17 12:30:59 -07001959 ew32(IMC, ~0);
Bruce Allan4662e822008-08-26 18:37:06 -07001960 if (adapter->msix_entries)
1961 ew32(EIAC_82574, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001962 e1e_flush();
1963 synchronize_irq(adapter->pdev->irq);
1964}
1965
1966/**
1967 * e1000_irq_enable - Enable default interrupt generation settings
1968 **/
1969static void e1000_irq_enable(struct e1000_adapter *adapter)
1970{
1971 struct e1000_hw *hw = &adapter->hw;
1972
Bruce Allan4662e822008-08-26 18:37:06 -07001973 if (adapter->msix_entries) {
1974 ew32(EIAC_82574, adapter->eiac_mask & E1000_EIAC_MASK_82574);
1975 ew32(IMS, adapter->eiac_mask | E1000_IMS_OTHER | E1000_IMS_LSC);
1976 } else {
1977 ew32(IMS, IMS_ENABLE_MASK);
1978 }
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07001979 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -07001980}
1981
1982/**
1983 * e1000_get_hw_control - get control of the h/w from f/w
1984 * @adapter: address of board private structure
1985 *
Auke Kok489815c2008-02-21 15:11:07 -08001986 * e1000_get_hw_control sets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001987 * For ASF and Pass Through versions of f/w this means that
1988 * the driver is loaded. For AMT version (only with 82573)
1989 * of the f/w this means that the network i/f is open.
1990 **/
1991static void e1000_get_hw_control(struct e1000_adapter *adapter)
1992{
1993 struct e1000_hw *hw = &adapter->hw;
1994 u32 ctrl_ext;
1995 u32 swsm;
1996
1997 /* Let firmware know the driver has taken over */
1998 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
1999 swsm = er32(SWSM);
2000 ew32(SWSM, swsm | E1000_SWSM_DRV_LOAD);
2001 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
2002 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07002003 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002004 }
2005}
2006
2007/**
2008 * e1000_release_hw_control - release control of the h/w to f/w
2009 * @adapter: address of board private structure
2010 *
Auke Kok489815c2008-02-21 15:11:07 -08002011 * e1000_release_hw_control resets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002012 * For ASF and Pass Through versions of f/w this means that the
2013 * driver is no longer loaded. For AMT version (only with 82573) i
2014 * of the f/w this means that the network i/f is closed.
2015 *
2016 **/
2017static void e1000_release_hw_control(struct e1000_adapter *adapter)
2018{
2019 struct e1000_hw *hw = &adapter->hw;
2020 u32 ctrl_ext;
2021 u32 swsm;
2022
2023 /* Let firmware taken over control of h/w */
2024 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
2025 swsm = er32(SWSM);
2026 ew32(SWSM, swsm & ~E1000_SWSM_DRV_LOAD);
2027 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
2028 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07002029 ew32(CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002030 }
2031}
2032
Auke Kokbc7f75f2007-09-17 12:30:59 -07002033/**
2034 * @e1000_alloc_ring - allocate memory for a ring structure
2035 **/
2036static int e1000_alloc_ring_dma(struct e1000_adapter *adapter,
2037 struct e1000_ring *ring)
2038{
2039 struct pci_dev *pdev = adapter->pdev;
2040
2041 ring->desc = dma_alloc_coherent(&pdev->dev, ring->size, &ring->dma,
2042 GFP_KERNEL);
2043 if (!ring->desc)
2044 return -ENOMEM;
2045
2046 return 0;
2047}
2048
2049/**
2050 * e1000e_setup_tx_resources - allocate Tx resources (Descriptors)
2051 * @adapter: board private structure
2052 *
2053 * Return 0 on success, negative on failure
2054 **/
2055int e1000e_setup_tx_resources(struct e1000_adapter *adapter)
2056{
2057 struct e1000_ring *tx_ring = adapter->tx_ring;
2058 int err = -ENOMEM, size;
2059
2060 size = sizeof(struct e1000_buffer) * tx_ring->count;
2061 tx_ring->buffer_info = vmalloc(size);
2062 if (!tx_ring->buffer_info)
2063 goto err;
2064 memset(tx_ring->buffer_info, 0, size);
2065
2066 /* round up to nearest 4K */
2067 tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc);
2068 tx_ring->size = ALIGN(tx_ring->size, 4096);
2069
2070 err = e1000_alloc_ring_dma(adapter, tx_ring);
2071 if (err)
2072 goto err;
2073
2074 tx_ring->next_to_use = 0;
2075 tx_ring->next_to_clean = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002076
2077 return 0;
2078err:
2079 vfree(tx_ring->buffer_info);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07002080 e_err("Unable to allocate memory for the transmit descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002081 return err;
2082}
2083
2084/**
2085 * e1000e_setup_rx_resources - allocate Rx resources (Descriptors)
2086 * @adapter: board private structure
2087 *
2088 * Returns 0 on success, negative on failure
2089 **/
2090int e1000e_setup_rx_resources(struct e1000_adapter *adapter)
2091{
2092 struct e1000_ring *rx_ring = adapter->rx_ring;
Auke Kok47f44e42007-10-25 13:57:44 -07002093 struct e1000_buffer *buffer_info;
2094 int i, size, desc_len, err = -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002095
2096 size = sizeof(struct e1000_buffer) * rx_ring->count;
2097 rx_ring->buffer_info = vmalloc(size);
2098 if (!rx_ring->buffer_info)
2099 goto err;
2100 memset(rx_ring->buffer_info, 0, size);
2101
Auke Kok47f44e42007-10-25 13:57:44 -07002102 for (i = 0; i < rx_ring->count; i++) {
2103 buffer_info = &rx_ring->buffer_info[i];
2104 buffer_info->ps_pages = kcalloc(PS_PAGE_BUFFERS,
2105 sizeof(struct e1000_ps_page),
2106 GFP_KERNEL);
2107 if (!buffer_info->ps_pages)
2108 goto err_pages;
2109 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002110
2111 desc_len = sizeof(union e1000_rx_desc_packet_split);
2112
2113 /* Round up to nearest 4K */
2114 rx_ring->size = rx_ring->count * desc_len;
2115 rx_ring->size = ALIGN(rx_ring->size, 4096);
2116
2117 err = e1000_alloc_ring_dma(adapter, rx_ring);
2118 if (err)
Auke Kok47f44e42007-10-25 13:57:44 -07002119 goto err_pages;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002120
2121 rx_ring->next_to_clean = 0;
2122 rx_ring->next_to_use = 0;
2123 rx_ring->rx_skb_top = NULL;
2124
2125 return 0;
Auke Kok47f44e42007-10-25 13:57:44 -07002126
2127err_pages:
2128 for (i = 0; i < rx_ring->count; i++) {
2129 buffer_info = &rx_ring->buffer_info[i];
2130 kfree(buffer_info->ps_pages);
2131 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002132err:
2133 vfree(rx_ring->buffer_info);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07002134 e_err("Unable to allocate memory for the transmit descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002135 return err;
2136}
2137
2138/**
2139 * e1000_clean_tx_ring - Free Tx Buffers
2140 * @adapter: board private structure
2141 **/
2142static void e1000_clean_tx_ring(struct e1000_adapter *adapter)
2143{
2144 struct e1000_ring *tx_ring = adapter->tx_ring;
2145 struct e1000_buffer *buffer_info;
2146 unsigned long size;
2147 unsigned int i;
2148
2149 for (i = 0; i < tx_ring->count; i++) {
2150 buffer_info = &tx_ring->buffer_info[i];
2151 e1000_put_txbuf(adapter, buffer_info);
2152 }
2153
2154 size = sizeof(struct e1000_buffer) * tx_ring->count;
2155 memset(tx_ring->buffer_info, 0, size);
2156
2157 memset(tx_ring->desc, 0, tx_ring->size);
2158
2159 tx_ring->next_to_use = 0;
2160 tx_ring->next_to_clean = 0;
2161
2162 writel(0, adapter->hw.hw_addr + tx_ring->head);
2163 writel(0, adapter->hw.hw_addr + tx_ring->tail);
2164}
2165
2166/**
2167 * e1000e_free_tx_resources - Free Tx Resources per Queue
2168 * @adapter: board private structure
2169 *
2170 * Free all transmit software resources
2171 **/
2172void e1000e_free_tx_resources(struct e1000_adapter *adapter)
2173{
2174 struct pci_dev *pdev = adapter->pdev;
2175 struct e1000_ring *tx_ring = adapter->tx_ring;
2176
2177 e1000_clean_tx_ring(adapter);
2178
2179 vfree(tx_ring->buffer_info);
2180 tx_ring->buffer_info = NULL;
2181
2182 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
2183 tx_ring->dma);
2184 tx_ring->desc = NULL;
2185}
2186
2187/**
2188 * e1000e_free_rx_resources - Free Rx Resources
2189 * @adapter: board private structure
2190 *
2191 * Free all receive software resources
2192 **/
2193
2194void e1000e_free_rx_resources(struct e1000_adapter *adapter)
2195{
2196 struct pci_dev *pdev = adapter->pdev;
2197 struct e1000_ring *rx_ring = adapter->rx_ring;
Auke Kok47f44e42007-10-25 13:57:44 -07002198 int i;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002199
2200 e1000_clean_rx_ring(adapter);
2201
Auke Kok47f44e42007-10-25 13:57:44 -07002202 for (i = 0; i < rx_ring->count; i++) {
2203 kfree(rx_ring->buffer_info[i].ps_pages);
2204 }
2205
Auke Kokbc7f75f2007-09-17 12:30:59 -07002206 vfree(rx_ring->buffer_info);
2207 rx_ring->buffer_info = NULL;
2208
Auke Kokbc7f75f2007-09-17 12:30:59 -07002209 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
2210 rx_ring->dma);
2211 rx_ring->desc = NULL;
2212}
2213
2214/**
2215 * e1000_update_itr - update the dynamic ITR value based on statistics
Auke Kok489815c2008-02-21 15:11:07 -08002216 * @adapter: pointer to adapter
2217 * @itr_setting: current adapter->itr
2218 * @packets: the number of packets during this measurement interval
2219 * @bytes: the number of bytes during this measurement interval
2220 *
Auke Kokbc7f75f2007-09-17 12:30:59 -07002221 * Stores a new ITR value based on packets and byte
2222 * counts during the last interrupt. The advantage of per interrupt
2223 * computation is faster updates and more accurate ITR for the current
2224 * traffic pattern. Constants in this function were computed
2225 * based on theoretical maximum wire speed and thresholds were set based
2226 * on testing data as well as attempting to minimize response time
Bruce Allan4662e822008-08-26 18:37:06 -07002227 * while increasing bulk throughput. This functionality is controlled
2228 * by the InterruptThrottleRate module parameter.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002229 **/
2230static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
2231 u16 itr_setting, int packets,
2232 int bytes)
2233{
2234 unsigned int retval = itr_setting;
2235
2236 if (packets == 0)
2237 goto update_itr_done;
2238
2239 switch (itr_setting) {
2240 case lowest_latency:
2241 /* handle TSO and jumbo frames */
2242 if (bytes/packets > 8000)
2243 retval = bulk_latency;
2244 else if ((packets < 5) && (bytes > 512)) {
2245 retval = low_latency;
2246 }
2247 break;
2248 case low_latency: /* 50 usec aka 20000 ints/s */
2249 if (bytes > 10000) {
2250 /* this if handles the TSO accounting */
2251 if (bytes/packets > 8000) {
2252 retval = bulk_latency;
2253 } else if ((packets < 10) || ((bytes/packets) > 1200)) {
2254 retval = bulk_latency;
2255 } else if ((packets > 35)) {
2256 retval = lowest_latency;
2257 }
2258 } else if (bytes/packets > 2000) {
2259 retval = bulk_latency;
2260 } else if (packets <= 2 && bytes < 512) {
2261 retval = lowest_latency;
2262 }
2263 break;
2264 case bulk_latency: /* 250 usec aka 4000 ints/s */
2265 if (bytes > 25000) {
2266 if (packets > 35) {
2267 retval = low_latency;
2268 }
2269 } else if (bytes < 6000) {
2270 retval = low_latency;
2271 }
2272 break;
2273 }
2274
2275update_itr_done:
2276 return retval;
2277}
2278
2279static void e1000_set_itr(struct e1000_adapter *adapter)
2280{
2281 struct e1000_hw *hw = &adapter->hw;
2282 u16 current_itr;
2283 u32 new_itr = adapter->itr;
2284
2285 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2286 if (adapter->link_speed != SPEED_1000) {
2287 current_itr = 0;
2288 new_itr = 4000;
2289 goto set_itr_now;
2290 }
2291
2292 adapter->tx_itr = e1000_update_itr(adapter,
2293 adapter->tx_itr,
2294 adapter->total_tx_packets,
2295 adapter->total_tx_bytes);
2296 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2297 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2298 adapter->tx_itr = low_latency;
2299
2300 adapter->rx_itr = e1000_update_itr(adapter,
2301 adapter->rx_itr,
2302 adapter->total_rx_packets,
2303 adapter->total_rx_bytes);
2304 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2305 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2306 adapter->rx_itr = low_latency;
2307
2308 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2309
2310 switch (current_itr) {
2311 /* counts and packets in update_itr are dependent on these numbers */
2312 case lowest_latency:
2313 new_itr = 70000;
2314 break;
2315 case low_latency:
2316 new_itr = 20000; /* aka hwitr = ~200 */
2317 break;
2318 case bulk_latency:
2319 new_itr = 4000;
2320 break;
2321 default:
2322 break;
2323 }
2324
2325set_itr_now:
2326 if (new_itr != adapter->itr) {
Bruce Allanad680762008-03-28 09:15:03 -07002327 /*
2328 * this attempts to bias the interrupt rate towards Bulk
Auke Kokbc7f75f2007-09-17 12:30:59 -07002329 * by adding intermediate steps when interrupt rate is
Bruce Allanad680762008-03-28 09:15:03 -07002330 * increasing
2331 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002332 new_itr = new_itr > adapter->itr ?
2333 min(adapter->itr + (new_itr >> 2), new_itr) :
2334 new_itr;
2335 adapter->itr = new_itr;
Bruce Allan4662e822008-08-26 18:37:06 -07002336 adapter->rx_ring->itr_val = new_itr;
2337 if (adapter->msix_entries)
2338 adapter->rx_ring->set_itr = 1;
2339 else
2340 ew32(ITR, 1000000000 / (new_itr * 256));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002341 }
2342}
2343
2344/**
Bruce Allan4662e822008-08-26 18:37:06 -07002345 * e1000_alloc_queues - Allocate memory for all rings
2346 * @adapter: board private structure to initialize
2347 **/
2348static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
2349{
2350 adapter->tx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
2351 if (!adapter->tx_ring)
2352 goto err;
2353
2354 adapter->rx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
2355 if (!adapter->rx_ring)
2356 goto err;
2357
2358 return 0;
2359err:
2360 e_err("Unable to allocate memory for queues\n");
2361 kfree(adapter->rx_ring);
2362 kfree(adapter->tx_ring);
2363 return -ENOMEM;
2364}
2365
2366/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002367 * e1000_clean - NAPI Rx polling callback
Bruce Allanad680762008-03-28 09:15:03 -07002368 * @napi: struct associated with this polling callback
Auke Kok489815c2008-02-21 15:11:07 -08002369 * @budget: amount of packets driver is allowed to process this poll
Auke Kokbc7f75f2007-09-17 12:30:59 -07002370 **/
2371static int e1000_clean(struct napi_struct *napi, int budget)
2372{
2373 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
Bruce Allan4662e822008-08-26 18:37:06 -07002374 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002375 struct net_device *poll_dev = adapter->netdev;
Andy Gospodarek679e8a02009-06-18 11:57:37 +00002376 int tx_cleaned = 1, work_done = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002377
Wang Chen4cf16532008-11-12 23:38:14 -08002378 adapter = netdev_priv(poll_dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002379
Bruce Allan4662e822008-08-26 18:37:06 -07002380 if (adapter->msix_entries &&
2381 !(adapter->rx_ring->ims_val & adapter->tx_ring->ims_val))
2382 goto clean_rx;
2383
Jesse Brandeburg92af3e92009-01-19 14:17:08 +00002384 tx_cleaned = e1000_clean_tx_irq(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002385
Bruce Allan4662e822008-08-26 18:37:06 -07002386clean_rx:
Auke Kokbc7f75f2007-09-17 12:30:59 -07002387 adapter->clean_rx(adapter, &work_done, budget);
2388
Alexander Duyck12d04a32009-03-25 22:05:03 +00002389 if (!tx_cleaned)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08002390 work_done = budget;
2391
David S. Miller53e52c72008-01-07 21:06:12 -08002392 /* If budget not fully consumed, exit the polling mode */
2393 if (work_done < budget) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002394 if (adapter->itr_setting & 3)
2395 e1000_set_itr(adapter);
Ben Hutchings288379f2009-01-19 16:43:59 -08002396 napi_complete(napi);
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00002397 if (!test_bit(__E1000_DOWN, &adapter->state)) {
2398 if (adapter->msix_entries)
2399 ew32(IMS, adapter->rx_ring->ims_val);
2400 else
2401 e1000_irq_enable(adapter);
2402 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002403 }
2404
2405 return work_done;
2406}
2407
2408static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
2409{
2410 struct e1000_adapter *adapter = netdev_priv(netdev);
2411 struct e1000_hw *hw = &adapter->hw;
2412 u32 vfta, index;
2413
2414 /* don't update vlan cookie if already programmed */
2415 if ((adapter->hw.mng_cookie.status &
2416 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2417 (vid == adapter->mng_vlan_id))
2418 return;
Bruce Allancaaddaf2009-12-01 15:46:43 +00002419
Auke Kokbc7f75f2007-09-17 12:30:59 -07002420 /* add VID to filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002421 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2422 index = (vid >> 5) & 0x7F;
2423 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2424 vfta |= (1 << (vid & 0x1F));
2425 hw->mac.ops.write_vfta(hw, index, vfta);
2426 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002427}
2428
2429static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
2430{
2431 struct e1000_adapter *adapter = netdev_priv(netdev);
2432 struct e1000_hw *hw = &adapter->hw;
2433 u32 vfta, index;
2434
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002435 if (!test_bit(__E1000_DOWN, &adapter->state))
2436 e1000_irq_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002437 vlan_group_set_device(adapter->vlgrp, vid, NULL);
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002438
2439 if (!test_bit(__E1000_DOWN, &adapter->state))
2440 e1000_irq_enable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002441
2442 if ((adapter->hw.mng_cookie.status &
2443 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2444 (vid == adapter->mng_vlan_id)) {
2445 /* release control to f/w */
2446 e1000_release_hw_control(adapter);
2447 return;
2448 }
2449
2450 /* remove VID from filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002451 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2452 index = (vid >> 5) & 0x7F;
2453 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2454 vfta &= ~(1 << (vid & 0x1F));
2455 hw->mac.ops.write_vfta(hw, index, vfta);
2456 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002457}
2458
2459static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
2460{
2461 struct net_device *netdev = adapter->netdev;
2462 u16 vid = adapter->hw.mng_cookie.vlan_id;
2463 u16 old_vid = adapter->mng_vlan_id;
2464
2465 if (!adapter->vlgrp)
2466 return;
2467
2468 if (!vlan_group_get_device(adapter->vlgrp, vid)) {
2469 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2470 if (adapter->hw.mng_cookie.status &
2471 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
2472 e1000_vlan_rx_add_vid(netdev, vid);
2473 adapter->mng_vlan_id = vid;
2474 }
2475
2476 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) &&
2477 (vid != old_vid) &&
2478 !vlan_group_get_device(adapter->vlgrp, old_vid))
2479 e1000_vlan_rx_kill_vid(netdev, old_vid);
2480 } else {
2481 adapter->mng_vlan_id = vid;
2482 }
2483}
2484
2485
2486static void e1000_vlan_rx_register(struct net_device *netdev,
2487 struct vlan_group *grp)
2488{
2489 struct e1000_adapter *adapter = netdev_priv(netdev);
2490 struct e1000_hw *hw = &adapter->hw;
2491 u32 ctrl, rctl;
2492
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002493 if (!test_bit(__E1000_DOWN, &adapter->state))
2494 e1000_irq_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002495 adapter->vlgrp = grp;
2496
2497 if (grp) {
2498 /* enable VLAN tag insert/strip */
2499 ctrl = er32(CTRL);
2500 ctrl |= E1000_CTRL_VME;
2501 ew32(CTRL, ctrl);
2502
2503 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2504 /* enable VLAN receive filtering */
2505 rctl = er32(RCTL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002506 rctl &= ~E1000_RCTL_CFIEN;
2507 ew32(RCTL, rctl);
2508 e1000_update_mng_vlan(adapter);
2509 }
2510 } else {
2511 /* disable VLAN tag insert/strip */
2512 ctrl = er32(CTRL);
2513 ctrl &= ~E1000_CTRL_VME;
2514 ew32(CTRL, ctrl);
2515
2516 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002517 if (adapter->mng_vlan_id !=
2518 (u16)E1000_MNG_VLAN_NONE) {
2519 e1000_vlan_rx_kill_vid(netdev,
2520 adapter->mng_vlan_id);
2521 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2522 }
2523 }
2524 }
2525
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002526 if (!test_bit(__E1000_DOWN, &adapter->state))
2527 e1000_irq_enable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002528}
2529
2530static void e1000_restore_vlan(struct e1000_adapter *adapter)
2531{
2532 u16 vid;
2533
2534 e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
2535
2536 if (!adapter->vlgrp)
2537 return;
2538
2539 for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
2540 if (!vlan_group_get_device(adapter->vlgrp, vid))
2541 continue;
2542 e1000_vlan_rx_add_vid(adapter->netdev, vid);
2543 }
2544}
2545
2546static void e1000_init_manageability(struct e1000_adapter *adapter)
2547{
2548 struct e1000_hw *hw = &adapter->hw;
2549 u32 manc, manc2h;
2550
2551 if (!(adapter->flags & FLAG_MNG_PT_ENABLED))
2552 return;
2553
2554 manc = er32(MANC);
2555
Bruce Allanad680762008-03-28 09:15:03 -07002556 /*
2557 * enable receiving management packets to the host. this will probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07002558 * generate destination unreachable messages from the host OS, but
Bruce Allanad680762008-03-28 09:15:03 -07002559 * the packets will be handled on SMBUS
2560 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002561 manc |= E1000_MANC_EN_MNG2HOST;
2562 manc2h = er32(MANC2H);
2563#define E1000_MNG2HOST_PORT_623 (1 << 5)
2564#define E1000_MNG2HOST_PORT_664 (1 << 6)
2565 manc2h |= E1000_MNG2HOST_PORT_623;
2566 manc2h |= E1000_MNG2HOST_PORT_664;
2567 ew32(MANC2H, manc2h);
2568 ew32(MANC, manc);
2569}
2570
2571/**
2572 * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
2573 * @adapter: board private structure
2574 *
2575 * Configure the Tx unit of the MAC after a reset.
2576 **/
2577static void e1000_configure_tx(struct e1000_adapter *adapter)
2578{
2579 struct e1000_hw *hw = &adapter->hw;
2580 struct e1000_ring *tx_ring = adapter->tx_ring;
2581 u64 tdba;
2582 u32 tdlen, tctl, tipg, tarc;
2583 u32 ipgr1, ipgr2;
2584
2585 /* Setup the HW Tx Head and Tail descriptor pointers */
2586 tdba = tx_ring->dma;
2587 tdlen = tx_ring->count * sizeof(struct e1000_tx_desc);
Yang Hongyang284901a2009-04-06 19:01:15 -07002588 ew32(TDBAL, (tdba & DMA_BIT_MASK(32)));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002589 ew32(TDBAH, (tdba >> 32));
2590 ew32(TDLEN, tdlen);
2591 ew32(TDH, 0);
2592 ew32(TDT, 0);
2593 tx_ring->head = E1000_TDH;
2594 tx_ring->tail = E1000_TDT;
2595
2596 /* Set the default values for the Tx Inter Packet Gap timer */
2597 tipg = DEFAULT_82543_TIPG_IPGT_COPPER; /* 8 */
2598 ipgr1 = DEFAULT_82543_TIPG_IPGR1; /* 8 */
2599 ipgr2 = DEFAULT_82543_TIPG_IPGR2; /* 6 */
2600
2601 if (adapter->flags & FLAG_TIPG_MEDIUM_FOR_80003ESLAN)
2602 ipgr2 = DEFAULT_80003ES2LAN_TIPG_IPGR2; /* 7 */
2603
2604 tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
2605 tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
2606 ew32(TIPG, tipg);
2607
2608 /* Set the Tx Interrupt Delay register */
2609 ew32(TIDV, adapter->tx_int_delay);
Bruce Allanad680762008-03-28 09:15:03 -07002610 /* Tx irq moderation */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002611 ew32(TADV, adapter->tx_abs_int_delay);
2612
2613 /* Program the Transmit Control Register */
2614 tctl = er32(TCTL);
2615 tctl &= ~E1000_TCTL_CT;
2616 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
2617 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
2618
2619 if (adapter->flags & FLAG_TARC_SPEED_MODE_BIT) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002620 tarc = er32(TARC(0));
Bruce Allanad680762008-03-28 09:15:03 -07002621 /*
2622 * set the speed mode bit, we'll clear it if we're not at
2623 * gigabit link later
2624 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002625#define SPEED_MODE_BIT (1 << 21)
2626 tarc |= SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002627 ew32(TARC(0), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002628 }
2629
2630 /* errata: program both queues to unweighted RR */
2631 if (adapter->flags & FLAG_TARC_SET_BIT_ZERO) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002632 tarc = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002633 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002634 ew32(TARC(0), tarc);
2635 tarc = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002636 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002637 ew32(TARC(1), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002638 }
2639
Auke Kokbc7f75f2007-09-17 12:30:59 -07002640 /* Setup Transmit Descriptor Settings for eop descriptor */
2641 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
2642
2643 /* only set IDE if we are delaying interrupts using the timers */
2644 if (adapter->tx_int_delay)
2645 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
2646
2647 /* enable Report Status bit */
2648 adapter->txd_cmd |= E1000_TXD_CMD_RS;
2649
2650 ew32(TCTL, tctl);
2651
Simon Hormanedfea6e62009-06-08 14:28:36 +00002652 e1000e_config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002653}
2654
2655/**
2656 * e1000_setup_rctl - configure the receive control registers
2657 * @adapter: Board private structure
2658 **/
2659#define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
2660 (((S) & (PAGE_SIZE - 1)) ? 1 : 0))
2661static void e1000_setup_rctl(struct e1000_adapter *adapter)
2662{
2663 struct e1000_hw *hw = &adapter->hw;
2664 u32 rctl, rfctl;
2665 u32 psrctl = 0;
2666 u32 pages = 0;
2667
2668 /* Program MC offset vector base */
2669 rctl = er32(RCTL);
2670 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
2671 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
2672 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
2673 (adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
2674
2675 /* Do not Store bad packets */
2676 rctl &= ~E1000_RCTL_SBP;
2677
2678 /* Enable Long Packet receive */
2679 if (adapter->netdev->mtu <= ETH_DATA_LEN)
2680 rctl &= ~E1000_RCTL_LPE;
2681 else
2682 rctl |= E1000_RCTL_LPE;
2683
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00002684 /* Some systems expect that the CRC is included in SMBUS traffic. The
2685 * hardware strips the CRC before sending to both SMBUS (BMC) and to
2686 * host memory when this is enabled
2687 */
2688 if (adapter->flags2 & FLAG2_CRC_STRIPPING)
2689 rctl |= E1000_RCTL_SECRC;
Auke Kok5918bd82008-02-12 15:20:24 -08002690
Bruce Allana4f58f52009-06-02 11:29:18 +00002691 /* Workaround Si errata on 82577 PHY - configure IPG for jumbos */
2692 if ((hw->phy.type == e1000_phy_82577) && (rctl & E1000_RCTL_LPE)) {
2693 u16 phy_data;
2694
2695 e1e_rphy(hw, PHY_REG(770, 26), &phy_data);
2696 phy_data &= 0xfff8;
2697 phy_data |= (1 << 2);
2698 e1e_wphy(hw, PHY_REG(770, 26), phy_data);
2699
2700 e1e_rphy(hw, 22, &phy_data);
2701 phy_data &= 0x0fff;
2702 phy_data |= (1 << 14);
2703 e1e_wphy(hw, 0x10, 0x2823);
2704 e1e_wphy(hw, 0x11, 0x0003);
2705 e1e_wphy(hw, 22, phy_data);
2706 }
2707
Auke Kokbc7f75f2007-09-17 12:30:59 -07002708 /* Setup buffer sizes */
2709 rctl &= ~E1000_RCTL_SZ_4096;
2710 rctl |= E1000_RCTL_BSEX;
2711 switch (adapter->rx_buffer_len) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002712 case 2048:
2713 default:
2714 rctl |= E1000_RCTL_SZ_2048;
2715 rctl &= ~E1000_RCTL_BSEX;
2716 break;
2717 case 4096:
2718 rctl |= E1000_RCTL_SZ_4096;
2719 break;
2720 case 8192:
2721 rctl |= E1000_RCTL_SZ_8192;
2722 break;
2723 case 16384:
2724 rctl |= E1000_RCTL_SZ_16384;
2725 break;
2726 }
2727
2728 /*
2729 * 82571 and greater support packet-split where the protocol
2730 * header is placed in skb->data and the packet data is
2731 * placed in pages hanging off of skb_shinfo(skb)->nr_frags.
2732 * In the case of a non-split, skb->data is linearly filled,
2733 * followed by the page buffers. Therefore, skb->data is
2734 * sized to hold the largest protocol header.
2735 *
2736 * allocations using alloc_page take too long for regular MTU
2737 * so only enable packet split for jumbo frames
2738 *
2739 * Using pages when the page size is greater than 16k wastes
2740 * a lot of memory, since we allocate 3 pages at all times
2741 * per packet.
2742 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002743 pages = PAGE_USE_COUNT(adapter->netdev->mtu);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002744 if (!(adapter->flags & FLAG_IS_ICH) && (pages <= 3) &&
2745 (PAGE_SIZE <= 16384) && (rctl & E1000_RCTL_LPE))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002746 adapter->rx_ps_pages = pages;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002747 else
2748 adapter->rx_ps_pages = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002749
2750 if (adapter->rx_ps_pages) {
2751 /* Configure extra packet-split registers */
2752 rfctl = er32(RFCTL);
2753 rfctl |= E1000_RFCTL_EXTEN;
Bruce Allanad680762008-03-28 09:15:03 -07002754 /*
2755 * disable packet split support for IPv6 extension headers,
2756 * because some malformed IPv6 headers can hang the Rx
2757 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002758 rfctl |= (E1000_RFCTL_IPV6_EX_DIS |
2759 E1000_RFCTL_NEW_IPV6_EXT_DIS);
2760
2761 ew32(RFCTL, rfctl);
2762
Auke Kok140a7482007-10-25 13:57:58 -07002763 /* Enable Packet split descriptors */
2764 rctl |= E1000_RCTL_DTYP_PS;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002765
2766 psrctl |= adapter->rx_ps_bsize0 >>
2767 E1000_PSRCTL_BSIZE0_SHIFT;
2768
2769 switch (adapter->rx_ps_pages) {
2770 case 3:
2771 psrctl |= PAGE_SIZE <<
2772 E1000_PSRCTL_BSIZE3_SHIFT;
2773 case 2:
2774 psrctl |= PAGE_SIZE <<
2775 E1000_PSRCTL_BSIZE2_SHIFT;
2776 case 1:
2777 psrctl |= PAGE_SIZE >>
2778 E1000_PSRCTL_BSIZE1_SHIFT;
2779 break;
2780 }
2781
2782 ew32(PSRCTL, psrctl);
2783 }
2784
2785 ew32(RCTL, rctl);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002786 /* just started the receive unit, no need to restart */
2787 adapter->flags &= ~FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002788}
2789
2790/**
2791 * e1000_configure_rx - Configure Receive Unit after Reset
2792 * @adapter: board private structure
2793 *
2794 * Configure the Rx unit of the MAC after a reset.
2795 **/
2796static void e1000_configure_rx(struct e1000_adapter *adapter)
2797{
2798 struct e1000_hw *hw = &adapter->hw;
2799 struct e1000_ring *rx_ring = adapter->rx_ring;
2800 u64 rdba;
2801 u32 rdlen, rctl, rxcsum, ctrl_ext;
2802
2803 if (adapter->rx_ps_pages) {
2804 /* this is a 32 byte descriptor */
2805 rdlen = rx_ring->count *
2806 sizeof(union e1000_rx_desc_packet_split);
2807 adapter->clean_rx = e1000_clean_rx_irq_ps;
2808 adapter->alloc_rx_buf = e1000_alloc_rx_buffers_ps;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002809 } else if (adapter->netdev->mtu > ETH_FRAME_LEN + ETH_FCS_LEN) {
2810 rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
2811 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
2812 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002813 } else {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002814 rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002815 adapter->clean_rx = e1000_clean_rx_irq;
2816 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
2817 }
2818
2819 /* disable receives while setting up the descriptors */
2820 rctl = er32(RCTL);
2821 ew32(RCTL, rctl & ~E1000_RCTL_EN);
2822 e1e_flush();
2823 msleep(10);
2824
2825 /* set the Receive Delay Timer Register */
2826 ew32(RDTR, adapter->rx_int_delay);
2827
2828 /* irq moderation */
2829 ew32(RADV, adapter->rx_abs_int_delay);
2830 if (adapter->itr_setting != 0)
Bruce Allanad680762008-03-28 09:15:03 -07002831 ew32(ITR, 1000000000 / (adapter->itr * 256));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002832
2833 ctrl_ext = er32(CTRL_EXT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002834 /* Auto-Mask interrupts upon ICR access */
2835 ctrl_ext |= E1000_CTRL_EXT_IAME;
2836 ew32(IAM, 0xffffffff);
2837 ew32(CTRL_EXT, ctrl_ext);
2838 e1e_flush();
2839
Bruce Allanad680762008-03-28 09:15:03 -07002840 /*
2841 * Setup the HW Rx Head and Tail Descriptor Pointers and
2842 * the Base and Length of the Rx Descriptor Ring
2843 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002844 rdba = rx_ring->dma;
Yang Hongyang284901a2009-04-06 19:01:15 -07002845 ew32(RDBAL, (rdba & DMA_BIT_MASK(32)));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002846 ew32(RDBAH, (rdba >> 32));
2847 ew32(RDLEN, rdlen);
2848 ew32(RDH, 0);
2849 ew32(RDT, 0);
2850 rx_ring->head = E1000_RDH;
2851 rx_ring->tail = E1000_RDT;
2852
2853 /* Enable Receive Checksum Offload for TCP and UDP */
2854 rxcsum = er32(RXCSUM);
2855 if (adapter->flags & FLAG_RX_CSUM_ENABLED) {
2856 rxcsum |= E1000_RXCSUM_TUOFL;
2857
Bruce Allanad680762008-03-28 09:15:03 -07002858 /*
2859 * IPv4 payload checksum for UDP fragments must be
2860 * used in conjunction with packet-split.
2861 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002862 if (adapter->rx_ps_pages)
2863 rxcsum |= E1000_RXCSUM_IPPCSE;
2864 } else {
2865 rxcsum &= ~E1000_RXCSUM_TUOFL;
2866 /* no need to clear IPPCSE as it defaults to 0 */
2867 }
2868 ew32(RXCSUM, rxcsum);
2869
Bruce Allanad680762008-03-28 09:15:03 -07002870 /*
2871 * Enable early receives on supported devices, only takes effect when
Auke Kokbc7f75f2007-09-17 12:30:59 -07002872 * packet size is equal or larger than the specified value (in 8 byte
Bruce Allanad680762008-03-28 09:15:03 -07002873 * units), e.g. using jumbo frames when setting to E1000_ERT_2048
2874 */
Bruce Allan53ec5492009-11-20 23:27:40 +00002875 if (adapter->flags & FLAG_HAS_ERT) {
2876 if (adapter->netdev->mtu > ETH_DATA_LEN) {
2877 u32 rxdctl = er32(RXDCTL(0));
2878 ew32(RXDCTL(0), rxdctl | 0x3);
2879 ew32(ERT, E1000_ERT_2048 | (1 << 13));
2880 /*
2881 * With jumbo frames and early-receive enabled,
2882 * excessive C-state transition latencies result in
2883 * dropped transactions.
2884 */
2885 pm_qos_update_requirement(PM_QOS_CPU_DMA_LATENCY,
2886 adapter->netdev->name, 55);
2887 } else {
2888 pm_qos_update_requirement(PM_QOS_CPU_DMA_LATENCY,
2889 adapter->netdev->name,
2890 PM_QOS_DEFAULT_VALUE);
2891 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002892 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002893
2894 /* Enable Receives */
2895 ew32(RCTL, rctl);
2896}
2897
2898/**
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07002899 * e1000_update_mc_addr_list - Update Multicast addresses
Auke Kokbc7f75f2007-09-17 12:30:59 -07002900 * @hw: pointer to the HW structure
2901 * @mc_addr_list: array of multicast addresses to program
2902 * @mc_addr_count: number of multicast addresses to program
Auke Kokbc7f75f2007-09-17 12:30:59 -07002903 *
Bruce Allanab8932f2010-01-13 02:05:38 +00002904 * Updates the Multicast Table Array.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002905 * The caller must have a packed mc_addr_list of multicast addresses.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002906 **/
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07002907static void e1000_update_mc_addr_list(struct e1000_hw *hw, u8 *mc_addr_list,
Bruce Allanab8932f2010-01-13 02:05:38 +00002908 u32 mc_addr_count)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002909{
Bruce Allanab8932f2010-01-13 02:05:38 +00002910 hw->mac.ops.update_mc_addr_list(hw, mc_addr_list, mc_addr_count);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002911}
2912
2913/**
2914 * e1000_set_multi - Multicast and Promiscuous mode set
2915 * @netdev: network interface device structure
2916 *
2917 * The set_multi entry point is called whenever the multicast address
2918 * list or the network interface flags are updated. This routine is
2919 * responsible for configuring the hardware for proper multicast,
2920 * promiscuous mode, and all-multi behavior.
2921 **/
2922static void e1000_set_multi(struct net_device *netdev)
2923{
2924 struct e1000_adapter *adapter = netdev_priv(netdev);
2925 struct e1000_hw *hw = &adapter->hw;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002926 struct netdev_hw_addr *ha;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002927 u8 *mta_list;
2928 u32 rctl;
2929 int i;
2930
2931 /* Check for Promiscuous and All Multicast modes */
2932
2933 rctl = er32(RCTL);
2934
2935 if (netdev->flags & IFF_PROMISC) {
2936 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Patrick McHardy746b9f02008-07-16 20:15:45 -07002937 rctl &= ~E1000_RCTL_VFE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002938 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07002939 if (netdev->flags & IFF_ALLMULTI) {
2940 rctl |= E1000_RCTL_MPE;
2941 rctl &= ~E1000_RCTL_UPE;
2942 } else {
2943 rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE);
2944 }
Patrick McHardy78ed11a2008-07-16 20:16:14 -07002945 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
Patrick McHardy746b9f02008-07-16 20:15:45 -07002946 rctl |= E1000_RCTL_VFE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002947 }
2948
2949 ew32(RCTL, rctl);
2950
Jiri Pirko7aeef972010-02-05 02:52:39 +00002951 if (!netdev_mc_empty(netdev)) {
2952 mta_list = kmalloc(netdev_mc_count(netdev) * 6, GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002953 if (!mta_list)
2954 return;
2955
2956 /* prepare a packed array of only addresses. */
Jiri Pirko7aeef972010-02-05 02:52:39 +00002957 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002958 netdev_for_each_mc_addr(ha, netdev)
2959 memcpy(mta_list + (i++ * ETH_ALEN), ha->addr, ETH_ALEN);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002960
Bruce Allanab8932f2010-01-13 02:05:38 +00002961 e1000_update_mc_addr_list(hw, mta_list, i);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002962 kfree(mta_list);
2963 } else {
2964 /*
2965 * if we're called from probe, we might not have
2966 * anything to do here, so clear out the list
2967 */
Bruce Allanab8932f2010-01-13 02:05:38 +00002968 e1000_update_mc_addr_list(hw, NULL, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002969 }
2970}
2971
2972/**
Bruce Allanad680762008-03-28 09:15:03 -07002973 * e1000_configure - configure the hardware for Rx and Tx
Auke Kokbc7f75f2007-09-17 12:30:59 -07002974 * @adapter: private board structure
2975 **/
2976static void e1000_configure(struct e1000_adapter *adapter)
2977{
2978 e1000_set_multi(adapter->netdev);
2979
2980 e1000_restore_vlan(adapter);
2981 e1000_init_manageability(adapter);
2982
2983 e1000_configure_tx(adapter);
2984 e1000_setup_rctl(adapter);
2985 e1000_configure_rx(adapter);
Bruce Allanad680762008-03-28 09:15:03 -07002986 adapter->alloc_rx_buf(adapter, e1000_desc_unused(adapter->rx_ring));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002987}
2988
2989/**
2990 * e1000e_power_up_phy - restore link in case the phy was powered down
2991 * @adapter: address of board private structure
2992 *
2993 * The phy may be powered down to save power and turn off link when the
2994 * driver is unloaded and wake on lan is not enabled (among others)
2995 * *** this routine MUST be followed by a call to e1000e_reset ***
2996 **/
2997void e1000e_power_up_phy(struct e1000_adapter *adapter)
2998{
Bruce Allan17f208d2009-12-01 15:47:22 +00002999 if (adapter->hw.phy.ops.power_up)
3000 adapter->hw.phy.ops.power_up(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003001
3002 adapter->hw.mac.ops.setup_link(&adapter->hw);
3003}
3004
3005/**
3006 * e1000_power_down_phy - Power down the PHY
3007 *
Bruce Allan17f208d2009-12-01 15:47:22 +00003008 * Power down the PHY so no link is implied when interface is down.
3009 * The PHY cannot be powered down if management or WoL is active.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003010 */
3011static void e1000_power_down_phy(struct e1000_adapter *adapter)
3012{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003013 /* WoL is enabled */
Auke Kok23b66e22008-02-11 09:25:51 -08003014 if (adapter->wol)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003015 return;
3016
Bruce Allan17f208d2009-12-01 15:47:22 +00003017 if (adapter->hw.phy.ops.power_down)
3018 adapter->hw.phy.ops.power_down(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003019}
3020
3021/**
3022 * e1000e_reset - bring the hardware into a known good state
3023 *
3024 * This function boots the hardware and enables some settings that
3025 * require a configuration cycle of the hardware - those cannot be
3026 * set/changed during runtime. After reset the device needs to be
Bruce Allanad680762008-03-28 09:15:03 -07003027 * properly configured for Rx, Tx etc.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003028 */
3029void e1000e_reset(struct e1000_adapter *adapter)
3030{
3031 struct e1000_mac_info *mac = &adapter->hw.mac;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003032 struct e1000_fc_info *fc = &adapter->hw.fc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003033 struct e1000_hw *hw = &adapter->hw;
3034 u32 tx_space, min_tx_space, min_rx_space;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003035 u32 pba = adapter->pba;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003036 u16 hwm;
3037
Bruce Allanad680762008-03-28 09:15:03 -07003038 /* reset Packet Buffer Allocation to default */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003039 ew32(PBA, pba);
Auke Kokdf762462007-10-25 13:57:53 -07003040
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003041 if (adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allanad680762008-03-28 09:15:03 -07003042 /*
3043 * To maintain wire speed transmits, the Tx FIFO should be
Auke Kokbc7f75f2007-09-17 12:30:59 -07003044 * large enough to accommodate two full transmit packets,
3045 * rounded up to the next 1KB and expressed in KB. Likewise,
3046 * the Rx FIFO should be large enough to accommodate at least
3047 * one full receive packet and is similarly rounded up and
Bruce Allanad680762008-03-28 09:15:03 -07003048 * expressed in KB.
3049 */
Auke Kokdf762462007-10-25 13:57:53 -07003050 pba = er32(PBA);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003051 /* upper 16 bits has Tx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003052 tx_space = pba >> 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003053 /* lower 16 bits has Rx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003054 pba &= 0xffff;
Bruce Allanad680762008-03-28 09:15:03 -07003055 /*
3056 * the Tx fifo also stores 16 bytes of information about the tx
3057 * but don't include ethernet FCS because hardware appends it
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003058 */
3059 min_tx_space = (adapter->max_frame_size +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003060 sizeof(struct e1000_tx_desc) -
3061 ETH_FCS_LEN) * 2;
3062 min_tx_space = ALIGN(min_tx_space, 1024);
3063 min_tx_space >>= 10;
3064 /* software strips receive CRC, so leave room for it */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003065 min_rx_space = adapter->max_frame_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003066 min_rx_space = ALIGN(min_rx_space, 1024);
3067 min_rx_space >>= 10;
3068
Bruce Allanad680762008-03-28 09:15:03 -07003069 /*
3070 * If current Tx allocation is less than the min Tx FIFO size,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003071 * and the min Tx FIFO size is less than the current Rx FIFO
Bruce Allanad680762008-03-28 09:15:03 -07003072 * allocation, take space away from current Rx allocation
3073 */
Auke Kokdf762462007-10-25 13:57:53 -07003074 if ((tx_space < min_tx_space) &&
3075 ((min_tx_space - tx_space) < pba)) {
3076 pba -= min_tx_space - tx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003077
Bruce Allanad680762008-03-28 09:15:03 -07003078 /*
3079 * if short on Rx space, Rx wins and must trump tx
3080 * adjustment or use Early Receive if available
3081 */
Auke Kokdf762462007-10-25 13:57:53 -07003082 if ((pba < min_rx_space) &&
Auke Kokbc7f75f2007-09-17 12:30:59 -07003083 (!(adapter->flags & FLAG_HAS_ERT)))
3084 /* ERT enabled in e1000_configure_rx */
Auke Kokdf762462007-10-25 13:57:53 -07003085 pba = min_rx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003086 }
Auke Kokdf762462007-10-25 13:57:53 -07003087
3088 ew32(PBA, pba);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003089 }
3090
Auke Kokbc7f75f2007-09-17 12:30:59 -07003091
Bruce Allanad680762008-03-28 09:15:03 -07003092 /*
3093 * flow control settings
3094 *
Bruce Allan38eb3942009-11-19 12:34:20 +00003095 * The high water mark must be low enough to fit one full frame
Auke Kokbc7f75f2007-09-17 12:30:59 -07003096 * (or the size used for early receive) above it in the Rx FIFO.
3097 * Set it to the lower of:
3098 * - 90% of the Rx FIFO size, and
3099 * - the full Rx FIFO size minus the early receive size (for parts
3100 * with ERT support assuming ERT set to E1000_ERT_2048), or
Bruce Allan38eb3942009-11-19 12:34:20 +00003101 * - the full Rx FIFO size minus one full frame
Bruce Allanad680762008-03-28 09:15:03 -07003102 */
Bruce Allan38eb3942009-11-19 12:34:20 +00003103 if (hw->mac.type == e1000_pchlan) {
3104 /*
3105 * Workaround PCH LOM adapter hangs with certain network
3106 * loads. If hangs persist, try disabling Tx flow control.
3107 */
3108 if (adapter->netdev->mtu > ETH_DATA_LEN) {
3109 fc->high_water = 0x3500;
3110 fc->low_water = 0x1500;
3111 } else {
3112 fc->high_water = 0x5000;
3113 fc->low_water = 0x3000;
3114 }
3115 } else {
3116 if ((adapter->flags & FLAG_HAS_ERT) &&
3117 (adapter->netdev->mtu > ETH_DATA_LEN))
3118 hwm = min(((pba << 10) * 9 / 10),
3119 ((pba << 10) - (E1000_ERT_2048 << 3)));
3120 else
3121 hwm = min(((pba << 10) * 9 / 10),
3122 ((pba << 10) - adapter->max_frame_size));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003123
Bruce Allan38eb3942009-11-19 12:34:20 +00003124 fc->high_water = hwm & E1000_FCRTH_RTH; /* 8-byte granularity */
3125 fc->low_water = fc->high_water - 8;
3126 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003127
3128 if (adapter->flags & FLAG_DISABLE_FC_PAUSE_TIME)
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003129 fc->pause_time = 0xFFFF;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003130 else
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003131 fc->pause_time = E1000_FC_PAUSE_TIME;
3132 fc->send_xon = 1;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08003133 fc->current_mode = fc->requested_mode;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003134
3135 /* Allow time for pending master requests to run */
3136 mac->ops.reset_hw(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003137
3138 /*
3139 * For parts with AMT enabled, let the firmware know
3140 * that the network interface is in control
3141 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07003142 if (adapter->flags & FLAG_HAS_AMT)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003143 e1000_get_hw_control(adapter);
3144
Auke Kokbc7f75f2007-09-17 12:30:59 -07003145 ew32(WUC, 0);
Bruce Allana4f58f52009-06-02 11:29:18 +00003146 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP)
3147 e1e_wphy(&adapter->hw, BM_WUC, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003148
3149 if (mac->ops.init_hw(hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003150 e_err("Hardware Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003151
Bruce Allan38eb3942009-11-19 12:34:20 +00003152 /* additional part of the flow-control workaround above */
3153 if (hw->mac.type == e1000_pchlan)
3154 ew32(FCRTV_PCH, 0x1000);
3155
Auke Kokbc7f75f2007-09-17 12:30:59 -07003156 e1000_update_mng_vlan(adapter);
3157
3158 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
3159 ew32(VET, ETH_P_8021Q);
3160
3161 e1000e_reset_adaptive(hw);
3162 e1000_get_phy_info(hw);
3163
Bruce Allan918d7192009-06-02 11:28:20 +00003164 if ((adapter->flags & FLAG_HAS_SMART_POWER_DOWN) &&
3165 !(adapter->flags & FLAG_SMART_POWER_DOWN)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003166 u16 phy_data = 0;
Bruce Allanad680762008-03-28 09:15:03 -07003167 /*
3168 * speed up time to link by disabling smart power down, ignore
Auke Kokbc7f75f2007-09-17 12:30:59 -07003169 * the return value of this function because there is nothing
Bruce Allanad680762008-03-28 09:15:03 -07003170 * different we would do if it failed
3171 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003172 e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &phy_data);
3173 phy_data &= ~IGP02E1000_PM_SPD;
3174 e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, phy_data);
3175 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003176}
3177
3178int e1000e_up(struct e1000_adapter *adapter)
3179{
3180 struct e1000_hw *hw = &adapter->hw;
3181
Bruce Allan53ec5492009-11-20 23:27:40 +00003182 /* DMA latency requirement to workaround early-receive/jumbo issue */
3183 if (adapter->flags & FLAG_HAS_ERT)
3184 pm_qos_add_requirement(PM_QOS_CPU_DMA_LATENCY,
3185 adapter->netdev->name,
3186 PM_QOS_DEFAULT_VALUE);
3187
Auke Kokbc7f75f2007-09-17 12:30:59 -07003188 /* hardware has been reset, we need to reload some things */
3189 e1000_configure(adapter);
3190
3191 clear_bit(__E1000_DOWN, &adapter->state);
3192
3193 napi_enable(&adapter->napi);
Bruce Allan4662e822008-08-26 18:37:06 -07003194 if (adapter->msix_entries)
3195 e1000_configure_msix(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003196 e1000_irq_enable(adapter);
3197
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003198 netif_wake_queue(adapter->netdev);
3199
Auke Kokbc7f75f2007-09-17 12:30:59 -07003200 /* fire a link change interrupt to start the watchdog */
3201 ew32(ICS, E1000_ICS_LSC);
3202 return 0;
3203}
3204
3205void e1000e_down(struct e1000_adapter *adapter)
3206{
3207 struct net_device *netdev = adapter->netdev;
3208 struct e1000_hw *hw = &adapter->hw;
3209 u32 tctl, rctl;
3210
Bruce Allanad680762008-03-28 09:15:03 -07003211 /*
3212 * signal that we're down so the interrupt handler does not
3213 * reschedule our watchdog timer
3214 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003215 set_bit(__E1000_DOWN, &adapter->state);
3216
3217 /* disable receives in the hardware */
3218 rctl = er32(RCTL);
3219 ew32(RCTL, rctl & ~E1000_RCTL_EN);
3220 /* flush and sleep below */
3221
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003222 netif_stop_queue(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003223
3224 /* disable transmits in the hardware */
3225 tctl = er32(TCTL);
3226 tctl &= ~E1000_TCTL_EN;
3227 ew32(TCTL, tctl);
3228 /* flush both disables and wait for them to finish */
3229 e1e_flush();
3230 msleep(10);
3231
3232 napi_disable(&adapter->napi);
3233 e1000_irq_disable(adapter);
3234
3235 del_timer_sync(&adapter->watchdog_timer);
3236 del_timer_sync(&adapter->phy_info_timer);
3237
Auke Kokbc7f75f2007-09-17 12:30:59 -07003238 netif_carrier_off(netdev);
3239 adapter->link_speed = 0;
3240 adapter->link_duplex = 0;
3241
Jeff Kirsher52cc3082008-06-24 17:01:29 -07003242 if (!pci_channel_offline(adapter->pdev))
3243 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003244 e1000_clean_tx_ring(adapter);
3245 e1000_clean_rx_ring(adapter);
3246
Bruce Allan53ec5492009-11-20 23:27:40 +00003247 if (adapter->flags & FLAG_HAS_ERT)
3248 pm_qos_remove_requirement(PM_QOS_CPU_DMA_LATENCY,
3249 adapter->netdev->name);
3250
Auke Kokbc7f75f2007-09-17 12:30:59 -07003251 /*
3252 * TODO: for power management, we could drop the link and
3253 * pci_disable_device here.
3254 */
3255}
3256
3257void e1000e_reinit_locked(struct e1000_adapter *adapter)
3258{
3259 might_sleep();
3260 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
3261 msleep(1);
3262 e1000e_down(adapter);
3263 e1000e_up(adapter);
3264 clear_bit(__E1000_RESETTING, &adapter->state);
3265}
3266
3267/**
3268 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
3269 * @adapter: board private structure to initialize
3270 *
3271 * e1000_sw_init initializes the Adapter private data structure.
3272 * Fields are initialized based on PCI device information and
3273 * OS network device settings (MTU size).
3274 **/
3275static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
3276{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003277 struct net_device *netdev = adapter->netdev;
3278
3279 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN;
3280 adapter->rx_ps_bsize0 = 128;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003281 adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
3282 adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003283
Bruce Allan4662e822008-08-26 18:37:06 -07003284 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003285
Bruce Allan4662e822008-08-26 18:37:06 -07003286 if (e1000_alloc_queues(adapter))
3287 return -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003288
Auke Kokbc7f75f2007-09-17 12:30:59 -07003289 /* Explicitly disable IRQ since the NIC can be in any state. */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003290 e1000_irq_disable(adapter);
3291
Auke Kokbc7f75f2007-09-17 12:30:59 -07003292 set_bit(__E1000_DOWN, &adapter->state);
3293 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003294}
3295
3296/**
Bruce Allanf8d59f72008-08-08 18:36:11 -07003297 * e1000_intr_msi_test - Interrupt Handler
3298 * @irq: interrupt number
3299 * @data: pointer to a network interface device structure
3300 **/
3301static irqreturn_t e1000_intr_msi_test(int irq, void *data)
3302{
3303 struct net_device *netdev = data;
3304 struct e1000_adapter *adapter = netdev_priv(netdev);
3305 struct e1000_hw *hw = &adapter->hw;
3306 u32 icr = er32(ICR);
3307
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003308 e_dbg("icr is %08X\n", icr);
Bruce Allanf8d59f72008-08-08 18:36:11 -07003309 if (icr & E1000_ICR_RXSEQ) {
3310 adapter->flags &= ~FLAG_MSI_TEST_FAILED;
3311 wmb();
3312 }
3313
3314 return IRQ_HANDLED;
3315}
3316
3317/**
3318 * e1000_test_msi_interrupt - Returns 0 for successful test
3319 * @adapter: board private struct
3320 *
3321 * code flow taken from tg3.c
3322 **/
3323static int e1000_test_msi_interrupt(struct e1000_adapter *adapter)
3324{
3325 struct net_device *netdev = adapter->netdev;
3326 struct e1000_hw *hw = &adapter->hw;
3327 int err;
3328
3329 /* poll_enable hasn't been called yet, so don't need disable */
3330 /* clear any pending events */
3331 er32(ICR);
3332
3333 /* free the real vector and request a test handler */
3334 e1000_free_irq(adapter);
Bruce Allan4662e822008-08-26 18:37:06 -07003335 e1000e_reset_interrupt_capability(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07003336
3337 /* Assume that the test fails, if it succeeds then the test
3338 * MSI irq handler will unset this flag */
3339 adapter->flags |= FLAG_MSI_TEST_FAILED;
3340
3341 err = pci_enable_msi(adapter->pdev);
3342 if (err)
3343 goto msi_test_failed;
3344
Joe Perchesa0607fd2009-11-18 23:29:17 -08003345 err = request_irq(adapter->pdev->irq, e1000_intr_msi_test, 0,
Bruce Allanf8d59f72008-08-08 18:36:11 -07003346 netdev->name, netdev);
3347 if (err) {
3348 pci_disable_msi(adapter->pdev);
3349 goto msi_test_failed;
3350 }
3351
3352 wmb();
3353
3354 e1000_irq_enable(adapter);
3355
3356 /* fire an unusual interrupt on the test handler */
3357 ew32(ICS, E1000_ICS_RXSEQ);
3358 e1e_flush();
3359 msleep(50);
3360
3361 e1000_irq_disable(adapter);
3362
3363 rmb();
3364
3365 if (adapter->flags & FLAG_MSI_TEST_FAILED) {
Bruce Allan4662e822008-08-26 18:37:06 -07003366 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Bruce Allanf8d59f72008-08-08 18:36:11 -07003367 err = -EIO;
3368 e_info("MSI interrupt test failed!\n");
3369 }
3370
3371 free_irq(adapter->pdev->irq, netdev);
3372 pci_disable_msi(adapter->pdev);
3373
3374 if (err == -EIO)
3375 goto msi_test_failed;
3376
3377 /* okay so the test worked, restore settings */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003378 e_dbg("MSI interrupt test succeeded!\n");
Bruce Allanf8d59f72008-08-08 18:36:11 -07003379msi_test_failed:
Bruce Allan4662e822008-08-26 18:37:06 -07003380 e1000e_set_interrupt_capability(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07003381 e1000_request_irq(adapter);
3382 return err;
3383}
3384
3385/**
3386 * e1000_test_msi - Returns 0 if MSI test succeeds or INTx mode is restored
3387 * @adapter: board private struct
3388 *
3389 * code flow taken from tg3.c, called with e1000 interrupts disabled.
3390 **/
3391static int e1000_test_msi(struct e1000_adapter *adapter)
3392{
3393 int err;
3394 u16 pci_cmd;
3395
3396 if (!(adapter->flags & FLAG_MSI_ENABLED))
3397 return 0;
3398
3399 /* disable SERR in case the MSI write causes a master abort */
3400 pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
3401 pci_write_config_word(adapter->pdev, PCI_COMMAND,
3402 pci_cmd & ~PCI_COMMAND_SERR);
3403
3404 err = e1000_test_msi_interrupt(adapter);
3405
3406 /* restore previous setting of command word */
3407 pci_write_config_word(adapter->pdev, PCI_COMMAND, pci_cmd);
3408
3409 /* success ! */
3410 if (!err)
3411 return 0;
3412
3413 /* EIO means MSI test failed */
3414 if (err != -EIO)
3415 return err;
3416
3417 /* back to INTx mode */
3418 e_warn("MSI interrupt test failed, using legacy interrupt.\n");
3419
3420 e1000_free_irq(adapter);
3421
3422 err = e1000_request_irq(adapter);
3423
3424 return err;
3425}
3426
3427/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003428 * e1000_open - Called when a network interface is made active
3429 * @netdev: network interface device structure
3430 *
3431 * Returns 0 on success, negative value on failure
3432 *
3433 * The open entry point is called when a network interface is made
3434 * active by the system (IFF_UP). At this point all resources needed
3435 * for transmit and receive operations are allocated, the interrupt
3436 * handler is registered with the OS, the watchdog timer is started,
3437 * and the stack is notified that the interface is ready.
3438 **/
3439static int e1000_open(struct net_device *netdev)
3440{
3441 struct e1000_adapter *adapter = netdev_priv(netdev);
3442 struct e1000_hw *hw = &adapter->hw;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003443 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003444 int err;
3445
3446 /* disallow open during test */
3447 if (test_bit(__E1000_TESTING, &adapter->state))
3448 return -EBUSY;
3449
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003450 pm_runtime_get_sync(&pdev->dev);
3451
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00003452 netif_carrier_off(netdev);
3453
Auke Kokbc7f75f2007-09-17 12:30:59 -07003454 /* allocate transmit descriptors */
3455 err = e1000e_setup_tx_resources(adapter);
3456 if (err)
3457 goto err_setup_tx;
3458
3459 /* allocate receive descriptors */
3460 err = e1000e_setup_rx_resources(adapter);
3461 if (err)
3462 goto err_setup_rx;
3463
3464 e1000e_power_up_phy(adapter);
3465
3466 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
3467 if ((adapter->hw.mng_cookie.status &
3468 E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
3469 e1000_update_mng_vlan(adapter);
3470
Bruce Allanad680762008-03-28 09:15:03 -07003471 /*
3472 * If AMT is enabled, let the firmware know that the network
3473 * interface is now open
3474 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07003475 if (adapter->flags & FLAG_HAS_AMT)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003476 e1000_get_hw_control(adapter);
3477
Bruce Allanad680762008-03-28 09:15:03 -07003478 /*
3479 * before we allocate an interrupt, we must be ready to handle it.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003480 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
3481 * as soon as we call pci_request_irq, so we have to setup our
Bruce Allanad680762008-03-28 09:15:03 -07003482 * clean_rx handler before we do so.
3483 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003484 e1000_configure(adapter);
3485
3486 err = e1000_request_irq(adapter);
3487 if (err)
3488 goto err_req_irq;
3489
Bruce Allanf8d59f72008-08-08 18:36:11 -07003490 /*
3491 * Work around PCIe errata with MSI interrupts causing some chipsets to
3492 * ignore e1000e MSI messages, which means we need to test our MSI
3493 * interrupt now
3494 */
Bruce Allan4662e822008-08-26 18:37:06 -07003495 if (adapter->int_mode != E1000E_INT_MODE_LEGACY) {
Bruce Allanf8d59f72008-08-08 18:36:11 -07003496 err = e1000_test_msi(adapter);
3497 if (err) {
3498 e_err("Interrupt allocation failed\n");
3499 goto err_req_irq;
3500 }
3501 }
3502
Auke Kokbc7f75f2007-09-17 12:30:59 -07003503 /* From here on the code is the same as e1000e_up() */
3504 clear_bit(__E1000_DOWN, &adapter->state);
3505
3506 napi_enable(&adapter->napi);
3507
3508 e1000_irq_enable(adapter);
3509
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003510 netif_start_queue(netdev);
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07003511
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003512 adapter->idle_check = true;
3513 pm_runtime_put(&pdev->dev);
3514
Auke Kokbc7f75f2007-09-17 12:30:59 -07003515 /* fire a link status change interrupt to start the watchdog */
3516 ew32(ICS, E1000_ICS_LSC);
3517
3518 return 0;
3519
3520err_req_irq:
3521 e1000_release_hw_control(adapter);
3522 e1000_power_down_phy(adapter);
3523 e1000e_free_rx_resources(adapter);
3524err_setup_rx:
3525 e1000e_free_tx_resources(adapter);
3526err_setup_tx:
3527 e1000e_reset(adapter);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003528 pm_runtime_put_sync(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003529
3530 return err;
3531}
3532
3533/**
3534 * e1000_close - Disables a network interface
3535 * @netdev: network interface device structure
3536 *
3537 * Returns 0, this is not allowed to fail
3538 *
3539 * The close entry point is called when an interface is de-activated
3540 * by the OS. The hardware is still under the drivers control, but
3541 * needs to be disabled. A global MAC reset is issued to stop the
3542 * hardware, and all transmit and receive resources are freed.
3543 **/
3544static int e1000_close(struct net_device *netdev)
3545{
3546 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003547 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003548
3549 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003550
3551 pm_runtime_get_sync(&pdev->dev);
3552
3553 if (!test_bit(__E1000_DOWN, &adapter->state)) {
3554 e1000e_down(adapter);
3555 e1000_free_irq(adapter);
3556 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003557 e1000_power_down_phy(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003558
3559 e1000e_free_tx_resources(adapter);
3560 e1000e_free_rx_resources(adapter);
3561
Bruce Allanad680762008-03-28 09:15:03 -07003562 /*
3563 * kill manageability vlan ID if supported, but not if a vlan with
3564 * the same ID is registered on the host OS (let 8021q kill it)
3565 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003566 if ((adapter->hw.mng_cookie.status &
3567 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
3568 !(adapter->vlgrp &&
3569 vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id)))
3570 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
3571
Bruce Allanad680762008-03-28 09:15:03 -07003572 /*
3573 * If AMT is enabled, let the firmware know that the network
3574 * interface is now closed
3575 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07003576 if (adapter->flags & FLAG_HAS_AMT)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003577 e1000_release_hw_control(adapter);
3578
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003579 pm_runtime_put_sync(&pdev->dev);
3580
Auke Kokbc7f75f2007-09-17 12:30:59 -07003581 return 0;
3582}
3583/**
3584 * e1000_set_mac - Change the Ethernet Address of the NIC
3585 * @netdev: network interface device structure
3586 * @p: pointer to an address structure
3587 *
3588 * Returns 0 on success, negative on failure
3589 **/
3590static int e1000_set_mac(struct net_device *netdev, void *p)
3591{
3592 struct e1000_adapter *adapter = netdev_priv(netdev);
3593 struct sockaddr *addr = p;
3594
3595 if (!is_valid_ether_addr(addr->sa_data))
3596 return -EADDRNOTAVAIL;
3597
3598 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
3599 memcpy(adapter->hw.mac.addr, addr->sa_data, netdev->addr_len);
3600
3601 e1000e_rar_set(&adapter->hw, adapter->hw.mac.addr, 0);
3602
3603 if (adapter->flags & FLAG_RESET_OVERWRITES_LAA) {
3604 /* activate the work around */
3605 e1000e_set_laa_state_82571(&adapter->hw, 1);
3606
Bruce Allanad680762008-03-28 09:15:03 -07003607 /*
3608 * Hold a copy of the LAA in RAR[14] This is done so that
Auke Kokbc7f75f2007-09-17 12:30:59 -07003609 * between the time RAR[0] gets clobbered and the time it
3610 * gets fixed (in e1000_watchdog), the actual LAA is in one
3611 * of the RARs and no incoming packets directed to this port
3612 * are dropped. Eventually the LAA will be in RAR[0] and
Bruce Allanad680762008-03-28 09:15:03 -07003613 * RAR[14]
3614 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003615 e1000e_rar_set(&adapter->hw,
3616 adapter->hw.mac.addr,
3617 adapter->hw.mac.rar_entry_count - 1);
3618 }
3619
3620 return 0;
3621}
3622
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07003623/**
3624 * e1000e_update_phy_task - work thread to update phy
3625 * @work: pointer to our work struct
3626 *
3627 * this worker thread exists because we must acquire a
3628 * semaphore to read the phy, which we could msleep while
3629 * waiting for it, and we can't msleep in a timer.
3630 **/
3631static void e1000e_update_phy_task(struct work_struct *work)
3632{
3633 struct e1000_adapter *adapter = container_of(work,
3634 struct e1000_adapter, update_phy_task);
3635 e1000_get_phy_info(&adapter->hw);
3636}
3637
Bruce Allanad680762008-03-28 09:15:03 -07003638/*
3639 * Need to wait a few seconds after link up to get diagnostic information from
3640 * the phy
3641 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003642static void e1000_update_phy_info(unsigned long data)
3643{
3644 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07003645 schedule_work(&adapter->update_phy_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003646}
3647
3648/**
3649 * e1000e_update_stats - Update the board statistics counters
3650 * @adapter: board private structure
3651 **/
3652void e1000e_update_stats(struct e1000_adapter *adapter)
3653{
Ajit Khaparde7274c202009-10-07 02:44:26 +00003654 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003655 struct e1000_hw *hw = &adapter->hw;
3656 struct pci_dev *pdev = adapter->pdev;
Bruce Allana4f58f52009-06-02 11:29:18 +00003657 u16 phy_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003658
3659 /*
3660 * Prevent stats update while adapter is being reset, or if the pci
3661 * connection is down.
3662 */
3663 if (adapter->link_speed == 0)
3664 return;
3665 if (pci_channel_offline(pdev))
3666 return;
3667
Auke Kokbc7f75f2007-09-17 12:30:59 -07003668 adapter->stats.crcerrs += er32(CRCERRS);
3669 adapter->stats.gprc += er32(GPRC);
Bruce Allan7c257692008-04-23 11:09:00 -07003670 adapter->stats.gorc += er32(GORCL);
3671 er32(GORCH); /* Clear gorc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003672 adapter->stats.bprc += er32(BPRC);
3673 adapter->stats.mprc += er32(MPRC);
3674 adapter->stats.roc += er32(ROC);
3675
Auke Kokbc7f75f2007-09-17 12:30:59 -07003676 adapter->stats.mpc += er32(MPC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003677 if ((hw->phy.type == e1000_phy_82578) ||
3678 (hw->phy.type == e1000_phy_82577)) {
3679 e1e_rphy(hw, HV_SCC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003680 if (!e1e_rphy(hw, HV_SCC_LOWER, &phy_data))
3681 adapter->stats.scc += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003682
3683 e1e_rphy(hw, HV_ECOL_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003684 if (!e1e_rphy(hw, HV_ECOL_LOWER, &phy_data))
3685 adapter->stats.ecol += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003686
3687 e1e_rphy(hw, HV_MCC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003688 if (!e1e_rphy(hw, HV_MCC_LOWER, &phy_data))
3689 adapter->stats.mcc += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003690
3691 e1e_rphy(hw, HV_LATECOL_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003692 if (!e1e_rphy(hw, HV_LATECOL_LOWER, &phy_data))
3693 adapter->stats.latecol += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003694
3695 e1e_rphy(hw, HV_DC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003696 if (!e1e_rphy(hw, HV_DC_LOWER, &phy_data))
3697 adapter->stats.dc += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003698 } else {
3699 adapter->stats.scc += er32(SCC);
3700 adapter->stats.ecol += er32(ECOL);
3701 adapter->stats.mcc += er32(MCC);
3702 adapter->stats.latecol += er32(LATECOL);
3703 adapter->stats.dc += er32(DC);
3704 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003705 adapter->stats.xonrxc += er32(XONRXC);
3706 adapter->stats.xontxc += er32(XONTXC);
3707 adapter->stats.xoffrxc += er32(XOFFRXC);
3708 adapter->stats.xofftxc += er32(XOFFTXC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003709 adapter->stats.gptc += er32(GPTC);
Bruce Allan7c257692008-04-23 11:09:00 -07003710 adapter->stats.gotc += er32(GOTCL);
3711 er32(GOTCH); /* Clear gotc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003712 adapter->stats.rnbc += er32(RNBC);
3713 adapter->stats.ruc += er32(RUC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003714
3715 adapter->stats.mptc += er32(MPTC);
3716 adapter->stats.bptc += er32(BPTC);
3717
3718 /* used for adaptive IFS */
3719
3720 hw->mac.tx_packet_delta = er32(TPT);
3721 adapter->stats.tpt += hw->mac.tx_packet_delta;
Bruce Allana4f58f52009-06-02 11:29:18 +00003722 if ((hw->phy.type == e1000_phy_82578) ||
3723 (hw->phy.type == e1000_phy_82577)) {
3724 e1e_rphy(hw, HV_COLC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003725 if (!e1e_rphy(hw, HV_COLC_LOWER, &phy_data))
3726 hw->mac.collision_delta = phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003727 } else {
3728 hw->mac.collision_delta = er32(COLC);
3729 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003730 adapter->stats.colc += hw->mac.collision_delta;
3731
3732 adapter->stats.algnerrc += er32(ALGNERRC);
3733 adapter->stats.rxerrc += er32(RXERRC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003734 if ((hw->phy.type == e1000_phy_82578) ||
3735 (hw->phy.type == e1000_phy_82577)) {
3736 e1e_rphy(hw, HV_TNCRS_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003737 if (!e1e_rphy(hw, HV_TNCRS_LOWER, &phy_data))
3738 adapter->stats.tncrs += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003739 } else {
3740 if ((hw->mac.type != e1000_82574) &&
3741 (hw->mac.type != e1000_82583))
3742 adapter->stats.tncrs += er32(TNCRS);
3743 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003744 adapter->stats.cexterr += er32(CEXTERR);
3745 adapter->stats.tsctc += er32(TSCTC);
3746 adapter->stats.tsctfc += er32(TSCTFC);
3747
Auke Kokbc7f75f2007-09-17 12:30:59 -07003748 /* Fill out the OS statistics structure */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003749 netdev->stats.multicast = adapter->stats.mprc;
3750 netdev->stats.collisions = adapter->stats.colc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003751
3752 /* Rx Errors */
3753
Bruce Allanad680762008-03-28 09:15:03 -07003754 /*
3755 * RLEC on some newer hardware can be incorrect so build
3756 * our own version based on RUC and ROC
3757 */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003758 netdev->stats.rx_errors = adapter->stats.rxerrc +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003759 adapter->stats.crcerrs + adapter->stats.algnerrc +
3760 adapter->stats.ruc + adapter->stats.roc +
3761 adapter->stats.cexterr;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003762 netdev->stats.rx_length_errors = adapter->stats.ruc +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003763 adapter->stats.roc;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003764 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
3765 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
3766 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003767
3768 /* Tx Errors */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003769 netdev->stats.tx_errors = adapter->stats.ecol +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003770 adapter->stats.latecol;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003771 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
3772 netdev->stats.tx_window_errors = adapter->stats.latecol;
3773 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003774
3775 /* Tx Dropped needs to be maintained elsewhere */
3776
Auke Kokbc7f75f2007-09-17 12:30:59 -07003777 /* Management Stats */
3778 adapter->stats.mgptc += er32(MGTPTC);
3779 adapter->stats.mgprc += er32(MGTPRC);
3780 adapter->stats.mgpdc += er32(MGTPDC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003781}
3782
Bruce Allan7c257692008-04-23 11:09:00 -07003783/**
3784 * e1000_phy_read_status - Update the PHY register status snapshot
3785 * @adapter: board private structure
3786 **/
3787static void e1000_phy_read_status(struct e1000_adapter *adapter)
3788{
3789 struct e1000_hw *hw = &adapter->hw;
3790 struct e1000_phy_regs *phy = &adapter->phy_regs;
3791 int ret_val;
Bruce Allan7c257692008-04-23 11:09:00 -07003792
3793 if ((er32(STATUS) & E1000_STATUS_LU) &&
3794 (adapter->hw.phy.media_type == e1000_media_type_copper)) {
3795 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy->bmcr);
3796 ret_val |= e1e_rphy(hw, PHY_STATUS, &phy->bmsr);
3797 ret_val |= e1e_rphy(hw, PHY_AUTONEG_ADV, &phy->advertise);
3798 ret_val |= e1e_rphy(hw, PHY_LP_ABILITY, &phy->lpa);
3799 ret_val |= e1e_rphy(hw, PHY_AUTONEG_EXP, &phy->expansion);
3800 ret_val |= e1e_rphy(hw, PHY_1000T_CTRL, &phy->ctrl1000);
3801 ret_val |= e1e_rphy(hw, PHY_1000T_STATUS, &phy->stat1000);
3802 ret_val |= e1e_rphy(hw, PHY_EXT_STATUS, &phy->estatus);
3803 if (ret_val)
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003804 e_warn("Error reading PHY register\n");
Bruce Allan7c257692008-04-23 11:09:00 -07003805 } else {
3806 /*
3807 * Do not read PHY registers if link is not up
3808 * Set values to typical power-on defaults
3809 */
3810 phy->bmcr = (BMCR_SPEED1000 | BMCR_ANENABLE | BMCR_FULLDPLX);
3811 phy->bmsr = (BMSR_100FULL | BMSR_100HALF | BMSR_10FULL |
3812 BMSR_10HALF | BMSR_ESTATEN | BMSR_ANEGCAPABLE |
3813 BMSR_ERCAP);
3814 phy->advertise = (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP |
3815 ADVERTISE_ALL | ADVERTISE_CSMA);
3816 phy->lpa = 0;
3817 phy->expansion = EXPANSION_ENABLENPAGE;
3818 phy->ctrl1000 = ADVERTISE_1000FULL;
3819 phy->stat1000 = 0;
3820 phy->estatus = (ESTATUS_1000_TFULL | ESTATUS_1000_THALF);
3821 }
Bruce Allan7c257692008-04-23 11:09:00 -07003822}
3823
Auke Kokbc7f75f2007-09-17 12:30:59 -07003824static void e1000_print_link_info(struct e1000_adapter *adapter)
3825{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003826 struct e1000_hw *hw = &adapter->hw;
3827 u32 ctrl = er32(CTRL);
3828
Bruce Allan8f12fe82008-11-21 16:54:43 -08003829 /* Link status message must follow this format for user tools */
3830 printk(KERN_INFO "e1000e: %s NIC Link is Up %d Mbps %s, "
3831 "Flow Control: %s\n",
3832 adapter->netdev->name,
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003833 adapter->link_speed,
3834 (adapter->link_duplex == FULL_DUPLEX) ?
3835 "Full Duplex" : "Half Duplex",
3836 ((ctrl & E1000_CTRL_TFCE) && (ctrl & E1000_CTRL_RFCE)) ?
3837 "RX/TX" :
3838 ((ctrl & E1000_CTRL_RFCE) ? "RX" :
3839 ((ctrl & E1000_CTRL_TFCE) ? "TX" : "None" )));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003840}
3841
David S. Millerb405e8d2010-02-04 22:31:41 -08003842bool e1000e_has_link(struct e1000_adapter *adapter)
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003843{
3844 struct e1000_hw *hw = &adapter->hw;
3845 bool link_active = 0;
3846 s32 ret_val = 0;
3847
3848 /*
3849 * get_link_status is set on LSC (link status) interrupt or
3850 * Rx sequence error interrupt. get_link_status will stay
3851 * false until the check_for_link establishes link
3852 * for copper adapters ONLY
3853 */
3854 switch (hw->phy.media_type) {
3855 case e1000_media_type_copper:
3856 if (hw->mac.get_link_status) {
3857 ret_val = hw->mac.ops.check_for_link(hw);
3858 link_active = !hw->mac.get_link_status;
3859 } else {
3860 link_active = 1;
3861 }
3862 break;
3863 case e1000_media_type_fiber:
3864 ret_val = hw->mac.ops.check_for_link(hw);
3865 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
3866 break;
3867 case e1000_media_type_internal_serdes:
3868 ret_val = hw->mac.ops.check_for_link(hw);
3869 link_active = adapter->hw.mac.serdes_has_link;
3870 break;
3871 default:
3872 case e1000_media_type_unknown:
3873 break;
3874 }
3875
3876 if ((ret_val == E1000_ERR_PHY) && (hw->phy.type == e1000_phy_igp_3) &&
3877 (er32(CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
3878 /* See e1000_kmrn_lock_loss_workaround_ich8lan() */
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003879 e_info("Gigabit has been disabled, downgrading speed\n");
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003880 }
3881
3882 return link_active;
3883}
3884
3885static void e1000e_enable_receives(struct e1000_adapter *adapter)
3886{
3887 /* make sure the receive unit is started */
3888 if ((adapter->flags & FLAG_RX_NEEDS_RESTART) &&
3889 (adapter->flags & FLAG_RX_RESTART_NOW)) {
3890 struct e1000_hw *hw = &adapter->hw;
3891 u32 rctl = er32(RCTL);
3892 ew32(RCTL, rctl | E1000_RCTL_EN);
3893 adapter->flags &= ~FLAG_RX_RESTART_NOW;
3894 }
3895}
3896
Auke Kokbc7f75f2007-09-17 12:30:59 -07003897/**
3898 * e1000_watchdog - Timer Call-back
3899 * @data: pointer to adapter cast into an unsigned long
3900 **/
3901static void e1000_watchdog(unsigned long data)
3902{
3903 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
3904
3905 /* Do the rest outside of interrupt context */
3906 schedule_work(&adapter->watchdog_task);
3907
3908 /* TODO: make this use queue_delayed_work() */
3909}
3910
3911static void e1000_watchdog_task(struct work_struct *work)
3912{
3913 struct e1000_adapter *adapter = container_of(work,
3914 struct e1000_adapter, watchdog_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003915 struct net_device *netdev = adapter->netdev;
3916 struct e1000_mac_info *mac = &adapter->hw.mac;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08003917 struct e1000_phy_info *phy = &adapter->hw.phy;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003918 struct e1000_ring *tx_ring = adapter->tx_ring;
3919 struct e1000_hw *hw = &adapter->hw;
3920 u32 link, tctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003921 int tx_pending = 0;
3922
David S. Millerb405e8d2010-02-04 22:31:41 -08003923 link = e1000e_has_link(adapter);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003924 if ((netif_carrier_ok(netdev)) && link) {
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003925 /* Cancel scheduled suspend requests. */
3926 pm_runtime_resume(netdev->dev.parent);
3927
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003928 e1000e_enable_receives(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003929 goto link_up;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003930 }
3931
3932 if ((e1000e_enable_tx_pkt_filtering(hw)) &&
3933 (adapter->mng_vlan_id != adapter->hw.mng_cookie.vlan_id))
3934 e1000_update_mng_vlan(adapter);
3935
Auke Kokbc7f75f2007-09-17 12:30:59 -07003936 if (link) {
3937 if (!netif_carrier_ok(netdev)) {
3938 bool txb2b = 1;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003939
3940 /* Cancel scheduled suspend requests. */
3941 pm_runtime_resume(netdev->dev.parent);
3942
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003943 /* update snapshot of PHY registers on LSC */
Bruce Allan7c257692008-04-23 11:09:00 -07003944 e1000_phy_read_status(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003945 mac->ops.get_link_up_info(&adapter->hw,
3946 &adapter->link_speed,
3947 &adapter->link_duplex);
3948 e1000_print_link_info(adapter);
Bruce Allanad680762008-03-28 09:15:03 -07003949 /*
Bruce Allanf4187b52008-08-26 18:36:50 -07003950 * On supported PHYs, check for duplex mismatch only
3951 * if link has autonegotiated at 10/100 half
3952 */
3953 if ((hw->phy.type == e1000_phy_igp_3 ||
3954 hw->phy.type == e1000_phy_bm) &&
3955 (hw->mac.autoneg == true) &&
3956 (adapter->link_speed == SPEED_10 ||
3957 adapter->link_speed == SPEED_100) &&
3958 (adapter->link_duplex == HALF_DUPLEX)) {
3959 u16 autoneg_exp;
3960
3961 e1e_rphy(hw, PHY_AUTONEG_EXP, &autoneg_exp);
3962
3963 if (!(autoneg_exp & NWAY_ER_LP_NWAY_CAPS))
3964 e_info("Autonegotiated half duplex but"
3965 " link partner cannot autoneg. "
3966 " Try forcing full duplex if "
3967 "link gets many collisions.\n");
3968 }
3969
Emil Tantilovf49c57e2010-03-24 12:55:02 +00003970 /* adjust timeout factor according to speed/duplex */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003971 adapter->tx_timeout_factor = 1;
3972 switch (adapter->link_speed) {
3973 case SPEED_10:
3974 txb2b = 0;
Bruce Allan10f1b492008-08-08 18:36:01 -07003975 adapter->tx_timeout_factor = 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003976 break;
3977 case SPEED_100:
3978 txb2b = 0;
Bruce Allan4c86e0b2009-11-19 12:35:26 +00003979 adapter->tx_timeout_factor = 10;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003980 break;
3981 }
3982
Bruce Allanad680762008-03-28 09:15:03 -07003983 /*
3984 * workaround: re-program speed mode bit after
3985 * link-up event
3986 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003987 if ((adapter->flags & FLAG_TARC_SPEED_MODE_BIT) &&
3988 !txb2b) {
3989 u32 tarc0;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003990 tarc0 = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003991 tarc0 &= ~SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003992 ew32(TARC(0), tarc0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003993 }
3994
Bruce Allanad680762008-03-28 09:15:03 -07003995 /*
3996 * disable TSO for pcie and 10/100 speeds, to avoid
3997 * some hardware issues
3998 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003999 if (!(adapter->flags & FLAG_TSO_FORCE)) {
4000 switch (adapter->link_speed) {
4001 case SPEED_10:
4002 case SPEED_100:
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004003 e_info("10/100 speed: disabling TSO\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004004 netdev->features &= ~NETIF_F_TSO;
4005 netdev->features &= ~NETIF_F_TSO6;
4006 break;
4007 case SPEED_1000:
4008 netdev->features |= NETIF_F_TSO;
4009 netdev->features |= NETIF_F_TSO6;
4010 break;
4011 default:
4012 /* oops */
4013 break;
4014 }
4015 }
4016
Bruce Allanad680762008-03-28 09:15:03 -07004017 /*
4018 * enable transmits in the hardware, need to do this
4019 * after setting TARC(0)
4020 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004021 tctl = er32(TCTL);
4022 tctl |= E1000_TCTL_EN;
4023 ew32(TCTL, tctl);
4024
Bruce Allan75eb0fa2008-11-21 16:53:51 -08004025 /*
4026 * Perform any post-link-up configuration before
4027 * reporting link up.
4028 */
4029 if (phy->ops.cfg_on_link_up)
4030 phy->ops.cfg_on_link_up(hw);
4031
Auke Kokbc7f75f2007-09-17 12:30:59 -07004032 netif_carrier_on(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004033
4034 if (!test_bit(__E1000_DOWN, &adapter->state))
4035 mod_timer(&adapter->phy_info_timer,
4036 round_jiffies(jiffies + 2 * HZ));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004037 }
4038 } else {
4039 if (netif_carrier_ok(netdev)) {
4040 adapter->link_speed = 0;
4041 adapter->link_duplex = 0;
Bruce Allan8f12fe82008-11-21 16:54:43 -08004042 /* Link status message must follow this format */
4043 printk(KERN_INFO "e1000e: %s NIC Link is Down\n",
4044 adapter->netdev->name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004045 netif_carrier_off(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004046 if (!test_bit(__E1000_DOWN, &adapter->state))
4047 mod_timer(&adapter->phy_info_timer,
4048 round_jiffies(jiffies + 2 * HZ));
4049
4050 if (adapter->flags & FLAG_RX_NEEDS_RESTART)
4051 schedule_work(&adapter->reset_task);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004052 else
4053 pm_schedule_suspend(netdev->dev.parent,
4054 LINK_TIMEOUT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004055 }
4056 }
4057
4058link_up:
4059 e1000e_update_stats(adapter);
4060
4061 mac->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
4062 adapter->tpt_old = adapter->stats.tpt;
4063 mac->collision_delta = adapter->stats.colc - adapter->colc_old;
4064 adapter->colc_old = adapter->stats.colc;
4065
Bruce Allan7c257692008-04-23 11:09:00 -07004066 adapter->gorc = adapter->stats.gorc - adapter->gorc_old;
4067 adapter->gorc_old = adapter->stats.gorc;
4068 adapter->gotc = adapter->stats.gotc - adapter->gotc_old;
4069 adapter->gotc_old = adapter->stats.gotc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004070
4071 e1000e_update_adaptive(&adapter->hw);
4072
4073 if (!netif_carrier_ok(netdev)) {
4074 tx_pending = (e1000_desc_unused(tx_ring) + 1 <
4075 tx_ring->count);
4076 if (tx_pending) {
Bruce Allanad680762008-03-28 09:15:03 -07004077 /*
4078 * We've lost link, so the controller stops DMA,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004079 * but we've got queued Tx work that's never going
4080 * to get done, so reset controller to flush Tx.
Bruce Allanad680762008-03-28 09:15:03 -07004081 * (Do the reset outside of interrupt context).
4082 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004083 adapter->tx_timeout_count++;
4084 schedule_work(&adapter->reset_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00004085 /* return immediately since reset is imminent */
4086 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004087 }
4088 }
4089
Bruce Allanad680762008-03-28 09:15:03 -07004090 /* Cause software interrupt to ensure Rx ring is cleaned */
Bruce Allan4662e822008-08-26 18:37:06 -07004091 if (adapter->msix_entries)
4092 ew32(ICS, adapter->rx_ring->ims_val);
4093 else
4094 ew32(ICS, E1000_ICS_RXDMT0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004095
4096 /* Force detection of hung controller every watchdog period */
4097 adapter->detect_tx_hung = 1;
4098
Bruce Allanad680762008-03-28 09:15:03 -07004099 /*
4100 * With 82571 controllers, LAA may be overwritten due to controller
4101 * reset from the other port. Set the appropriate LAA in RAR[0]
4102 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004103 if (e1000e_get_laa_state_82571(hw))
4104 e1000e_rar_set(hw, adapter->hw.mac.addr, 0);
4105
4106 /* Reset the timer */
4107 if (!test_bit(__E1000_DOWN, &adapter->state))
4108 mod_timer(&adapter->watchdog_timer,
4109 round_jiffies(jiffies + 2 * HZ));
4110}
4111
4112#define E1000_TX_FLAGS_CSUM 0x00000001
4113#define E1000_TX_FLAGS_VLAN 0x00000002
4114#define E1000_TX_FLAGS_TSO 0x00000004
4115#define E1000_TX_FLAGS_IPV4 0x00000008
4116#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
4117#define E1000_TX_FLAGS_VLAN_SHIFT 16
4118
4119static int e1000_tso(struct e1000_adapter *adapter,
4120 struct sk_buff *skb)
4121{
4122 struct e1000_ring *tx_ring = adapter->tx_ring;
4123 struct e1000_context_desc *context_desc;
4124 struct e1000_buffer *buffer_info;
4125 unsigned int i;
4126 u32 cmd_length = 0;
4127 u16 ipcse = 0, tucse, mss;
4128 u8 ipcss, ipcso, tucss, tucso, hdr_len;
4129 int err;
4130
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004131 if (!skb_is_gso(skb))
4132 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004133
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004134 if (skb_header_cloned(skb)) {
4135 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
4136 if (err)
4137 return err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004138 }
4139
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004140 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
4141 mss = skb_shinfo(skb)->gso_size;
4142 if (skb->protocol == htons(ETH_P_IP)) {
4143 struct iphdr *iph = ip_hdr(skb);
4144 iph->tot_len = 0;
4145 iph->check = 0;
4146 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
4147 0, IPPROTO_TCP, 0);
4148 cmd_length = E1000_TXD_CMD_IP;
4149 ipcse = skb_transport_offset(skb) - 1;
Sridhar Samudrala8e1e8a42010-01-23 02:02:21 -08004150 } else if (skb_is_gso_v6(skb)) {
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004151 ipv6_hdr(skb)->payload_len = 0;
4152 tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
4153 &ipv6_hdr(skb)->daddr,
4154 0, IPPROTO_TCP, 0);
4155 ipcse = 0;
4156 }
4157 ipcss = skb_network_offset(skb);
4158 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
4159 tucss = skb_transport_offset(skb);
4160 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
4161 tucse = 0;
4162
4163 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
4164 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
4165
4166 i = tx_ring->next_to_use;
4167 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
4168 buffer_info = &tx_ring->buffer_info[i];
4169
4170 context_desc->lower_setup.ip_fields.ipcss = ipcss;
4171 context_desc->lower_setup.ip_fields.ipcso = ipcso;
4172 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
4173 context_desc->upper_setup.tcp_fields.tucss = tucss;
4174 context_desc->upper_setup.tcp_fields.tucso = tucso;
4175 context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
4176 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
4177 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
4178 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
4179
4180 buffer_info->time_stamp = jiffies;
4181 buffer_info->next_to_watch = i;
4182
4183 i++;
4184 if (i == tx_ring->count)
4185 i = 0;
4186 tx_ring->next_to_use = i;
4187
4188 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004189}
4190
4191static bool e1000_tx_csum(struct e1000_adapter *adapter, struct sk_buff *skb)
4192{
4193 struct e1000_ring *tx_ring = adapter->tx_ring;
4194 struct e1000_context_desc *context_desc;
4195 struct e1000_buffer *buffer_info;
4196 unsigned int i;
4197 u8 css;
Dave Grahamaf807c82008-10-09 14:28:58 -07004198 u32 cmd_len = E1000_TXD_CMD_DEXT;
Arthur Jones5f66f202009-03-19 01:13:08 +00004199 __be16 protocol;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004200
Dave Grahamaf807c82008-10-09 14:28:58 -07004201 if (skb->ip_summed != CHECKSUM_PARTIAL)
4202 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004203
Arthur Jones5f66f202009-03-19 01:13:08 +00004204 if (skb->protocol == cpu_to_be16(ETH_P_8021Q))
4205 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
4206 else
4207 protocol = skb->protocol;
4208
Arthur Jones3f518392009-03-20 15:56:35 -07004209 switch (protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08004210 case cpu_to_be16(ETH_P_IP):
Dave Grahamaf807c82008-10-09 14:28:58 -07004211 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
4212 cmd_len |= E1000_TXD_CMD_TCP;
4213 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08004214 case cpu_to_be16(ETH_P_IPV6):
Dave Grahamaf807c82008-10-09 14:28:58 -07004215 /* XXX not handling all IPV6 headers */
4216 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
4217 cmd_len |= E1000_TXD_CMD_TCP;
4218 break;
4219 default:
4220 if (unlikely(net_ratelimit()))
Arthur Jones5f66f202009-03-19 01:13:08 +00004221 e_warn("checksum_partial proto=%x!\n",
4222 be16_to_cpu(protocol));
Dave Grahamaf807c82008-10-09 14:28:58 -07004223 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004224 }
4225
Dave Grahamaf807c82008-10-09 14:28:58 -07004226 css = skb_transport_offset(skb);
4227
4228 i = tx_ring->next_to_use;
4229 buffer_info = &tx_ring->buffer_info[i];
4230 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
4231
4232 context_desc->lower_setup.ip_config = 0;
4233 context_desc->upper_setup.tcp_fields.tucss = css;
4234 context_desc->upper_setup.tcp_fields.tucso =
4235 css + skb->csum_offset;
4236 context_desc->upper_setup.tcp_fields.tucse = 0;
4237 context_desc->tcp_seg_setup.data = 0;
4238 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
4239
4240 buffer_info->time_stamp = jiffies;
4241 buffer_info->next_to_watch = i;
4242
4243 i++;
4244 if (i == tx_ring->count)
4245 i = 0;
4246 tx_ring->next_to_use = i;
4247
4248 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004249}
4250
4251#define E1000_MAX_PER_TXD 8192
4252#define E1000_MAX_TXD_PWR 12
4253
4254static int e1000_tx_map(struct e1000_adapter *adapter,
4255 struct sk_buff *skb, unsigned int first,
4256 unsigned int max_per_txd, unsigned int nr_frags,
4257 unsigned int mss)
4258{
4259 struct e1000_ring *tx_ring = adapter->tx_ring;
Alexander Duyck03b13202009-12-02 16:45:31 +00004260 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004261 struct e1000_buffer *buffer_info;
Jesse Brandeburg8ddc9512009-03-02 16:02:53 -08004262 unsigned int len = skb_headlen(skb);
Alexander Duyck03b13202009-12-02 16:45:31 +00004263 unsigned int offset = 0, size, count = 0, i;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004264 unsigned int f;
4265
4266 i = tx_ring->next_to_use;
4267
4268 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004269 buffer_info = &tx_ring->buffer_info[i];
Auke Kokbc7f75f2007-09-17 12:30:59 -07004270 size = min(len, max_per_txd);
4271
Auke Kokbc7f75f2007-09-17 12:30:59 -07004272 buffer_info->length = size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004273 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004274 buffer_info->next_to_watch = i;
Nick Nunley0be3f552010-04-27 13:09:05 +00004275 buffer_info->dma = dma_map_single(&pdev->dev,
4276 skb->data + offset,
4277 size, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00004278 buffer_info->mapped_as_page = false;
Nick Nunley0be3f552010-04-27 13:09:05 +00004279 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00004280 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004281
4282 len -= size;
4283 offset += size;
Alexander Duyck03b13202009-12-02 16:45:31 +00004284 count++;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004285
4286 if (len) {
4287 i++;
4288 if (i == tx_ring->count)
4289 i = 0;
4290 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004291 }
4292
4293 for (f = 0; f < nr_frags; f++) {
4294 struct skb_frag_struct *frag;
4295
4296 frag = &skb_shinfo(skb)->frags[f];
4297 len = frag->size;
Alexander Duyck03b13202009-12-02 16:45:31 +00004298 offset = frag->page_offset;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004299
4300 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004301 i++;
4302 if (i == tx_ring->count)
4303 i = 0;
4304
Auke Kokbc7f75f2007-09-17 12:30:59 -07004305 buffer_info = &tx_ring->buffer_info[i];
4306 size = min(len, max_per_txd);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004307
4308 buffer_info->length = size;
4309 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004310 buffer_info->next_to_watch = i;
Nick Nunley0be3f552010-04-27 13:09:05 +00004311 buffer_info->dma = dma_map_page(&pdev->dev, frag->page,
Alexander Duyck03b13202009-12-02 16:45:31 +00004312 offset, size,
Nick Nunley0be3f552010-04-27 13:09:05 +00004313 DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00004314 buffer_info->mapped_as_page = true;
Nick Nunley0be3f552010-04-27 13:09:05 +00004315 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00004316 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004317
4318 len -= size;
4319 offset += size;
4320 count++;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004321 }
4322 }
4323
Auke Kokbc7f75f2007-09-17 12:30:59 -07004324 tx_ring->buffer_info[i].skb = skb;
4325 tx_ring->buffer_info[first].next_to_watch = i;
4326
4327 return count;
Alexander Duyck03b13202009-12-02 16:45:31 +00004328
4329dma_error:
4330 dev_err(&pdev->dev, "TX DMA map failed\n");
4331 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00004332 if (count)
Alexander Duyck03b13202009-12-02 16:45:31 +00004333 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00004334
4335 while (count--) {
4336 if (i==0)
Alexander Duyck03b13202009-12-02 16:45:31 +00004337 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00004338 i--;
Alexander Duyck03b13202009-12-02 16:45:31 +00004339 buffer_info = &tx_ring->buffer_info[i];
4340 e1000_put_txbuf(adapter, buffer_info);;
4341 }
4342
4343 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004344}
4345
4346static void e1000_tx_queue(struct e1000_adapter *adapter,
4347 int tx_flags, int count)
4348{
4349 struct e1000_ring *tx_ring = adapter->tx_ring;
4350 struct e1000_tx_desc *tx_desc = NULL;
4351 struct e1000_buffer *buffer_info;
4352 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
4353 unsigned int i;
4354
4355 if (tx_flags & E1000_TX_FLAGS_TSO) {
4356 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
4357 E1000_TXD_CMD_TSE;
4358 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
4359
4360 if (tx_flags & E1000_TX_FLAGS_IPV4)
4361 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
4362 }
4363
4364 if (tx_flags & E1000_TX_FLAGS_CSUM) {
4365 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
4366 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
4367 }
4368
4369 if (tx_flags & E1000_TX_FLAGS_VLAN) {
4370 txd_lower |= E1000_TXD_CMD_VLE;
4371 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
4372 }
4373
4374 i = tx_ring->next_to_use;
4375
4376 while (count--) {
4377 buffer_info = &tx_ring->buffer_info[i];
4378 tx_desc = E1000_TX_DESC(*tx_ring, i);
4379 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4380 tx_desc->lower.data =
4381 cpu_to_le32(txd_lower | buffer_info->length);
4382 tx_desc->upper.data = cpu_to_le32(txd_upper);
4383
4384 i++;
4385 if (i == tx_ring->count)
4386 i = 0;
4387 }
4388
4389 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
4390
Bruce Allanad680762008-03-28 09:15:03 -07004391 /*
4392 * Force memory writes to complete before letting h/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07004393 * know there are new descriptors to fetch. (Only
4394 * applicable for weak-ordered memory model archs,
Bruce Allanad680762008-03-28 09:15:03 -07004395 * such as IA-64).
4396 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004397 wmb();
4398
4399 tx_ring->next_to_use = i;
4400 writel(i, adapter->hw.hw_addr + tx_ring->tail);
Bruce Allanad680762008-03-28 09:15:03 -07004401 /*
4402 * we need this if more than one processor can write to our tail
4403 * at a time, it synchronizes IO on IA64/Altix systems
4404 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004405 mmiowb();
4406}
4407
4408#define MINIMUM_DHCP_PACKET_SIZE 282
4409static int e1000_transfer_dhcp_info(struct e1000_adapter *adapter,
4410 struct sk_buff *skb)
4411{
4412 struct e1000_hw *hw = &adapter->hw;
4413 u16 length, offset;
4414
4415 if (vlan_tx_tag_present(skb)) {
Joe Perches8e95a202009-12-03 07:58:21 +00004416 if (!((vlan_tx_tag_get(skb) == adapter->hw.mng_cookie.vlan_id) &&
4417 (adapter->hw.mng_cookie.status &
Auke Kokbc7f75f2007-09-17 12:30:59 -07004418 E1000_MNG_DHCP_COOKIE_STATUS_VLAN)))
4419 return 0;
4420 }
4421
4422 if (skb->len <= MINIMUM_DHCP_PACKET_SIZE)
4423 return 0;
4424
4425 if (((struct ethhdr *) skb->data)->h_proto != htons(ETH_P_IP))
4426 return 0;
4427
4428 {
4429 const struct iphdr *ip = (struct iphdr *)((u8 *)skb->data+14);
4430 struct udphdr *udp;
4431
4432 if (ip->protocol != IPPROTO_UDP)
4433 return 0;
4434
4435 udp = (struct udphdr *)((u8 *)ip + (ip->ihl << 2));
4436 if (ntohs(udp->dest) != 67)
4437 return 0;
4438
4439 offset = (u8 *)udp + 8 - skb->data;
4440 length = skb->len - offset;
4441 return e1000e_mng_write_dhcp_info(hw, (u8 *)udp + 8, length);
4442 }
4443
4444 return 0;
4445}
4446
4447static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
4448{
4449 struct e1000_adapter *adapter = netdev_priv(netdev);
4450
4451 netif_stop_queue(netdev);
Bruce Allanad680762008-03-28 09:15:03 -07004452 /*
4453 * Herbert's original patch had:
Auke Kokbc7f75f2007-09-17 12:30:59 -07004454 * smp_mb__after_netif_stop_queue();
Bruce Allanad680762008-03-28 09:15:03 -07004455 * but since that doesn't exist yet, just open code it.
4456 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004457 smp_mb();
4458
Bruce Allanad680762008-03-28 09:15:03 -07004459 /*
4460 * We need to check again in a case another CPU has just
4461 * made room available.
4462 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004463 if (e1000_desc_unused(adapter->tx_ring) < size)
4464 return -EBUSY;
4465
4466 /* A reprieve! */
4467 netif_start_queue(netdev);
4468 ++adapter->restart_queue;
4469 return 0;
4470}
4471
4472static int e1000_maybe_stop_tx(struct net_device *netdev, int size)
4473{
4474 struct e1000_adapter *adapter = netdev_priv(netdev);
4475
4476 if (e1000_desc_unused(adapter->tx_ring) >= size)
4477 return 0;
4478 return __e1000_maybe_stop_tx(netdev, size);
4479}
4480
4481#define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
Stephen Hemminger3b29a562009-08-31 19:50:55 +00004482static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
4483 struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004484{
4485 struct e1000_adapter *adapter = netdev_priv(netdev);
4486 struct e1000_ring *tx_ring = adapter->tx_ring;
4487 unsigned int first;
4488 unsigned int max_per_txd = E1000_MAX_PER_TXD;
4489 unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
4490 unsigned int tx_flags = 0;
Eric Dumazete743d312010-04-14 15:59:40 -07004491 unsigned int len = skb_headlen(skb);
Auke Kok4e6c7092007-10-05 14:15:23 -07004492 unsigned int nr_frags;
4493 unsigned int mss;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004494 int count = 0;
4495 int tso;
4496 unsigned int f;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004497
4498 if (test_bit(__E1000_DOWN, &adapter->state)) {
4499 dev_kfree_skb_any(skb);
4500 return NETDEV_TX_OK;
4501 }
4502
4503 if (skb->len <= 0) {
4504 dev_kfree_skb_any(skb);
4505 return NETDEV_TX_OK;
4506 }
4507
4508 mss = skb_shinfo(skb)->gso_size;
Bruce Allanad680762008-03-28 09:15:03 -07004509 /*
4510 * The controller does a simple calculation to
Auke Kokbc7f75f2007-09-17 12:30:59 -07004511 * make sure there is enough room in the FIFO before
4512 * initiating the DMA for each buffer. The calc is:
4513 * 4 = ceil(buffer len/mss). To make sure we don't
4514 * overrun the FIFO, adjust the max buffer len if mss
Bruce Allanad680762008-03-28 09:15:03 -07004515 * drops.
4516 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004517 if (mss) {
4518 u8 hdr_len;
4519 max_per_txd = min(mss << 2, max_per_txd);
4520 max_txd_pwr = fls(max_per_txd) - 1;
4521
Bruce Allanad680762008-03-28 09:15:03 -07004522 /*
4523 * TSO Workaround for 82571/2/3 Controllers -- if skb->data
4524 * points to just header, pull a few bytes of payload from
4525 * frags into skb->data
4526 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004527 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Bruce Allanad680762008-03-28 09:15:03 -07004528 /*
4529 * we do this workaround for ES2LAN, but it is un-necessary,
4530 * avoiding it could save a lot of cycles
4531 */
Auke Kok4e6c7092007-10-05 14:15:23 -07004532 if (skb->data_len && (hdr_len == len)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004533 unsigned int pull_size;
4534
4535 pull_size = min((unsigned int)4, skb->data_len);
4536 if (!__pskb_pull_tail(skb, pull_size)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004537 e_err("__pskb_pull_tail failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004538 dev_kfree_skb_any(skb);
4539 return NETDEV_TX_OK;
4540 }
Eric Dumazete743d312010-04-14 15:59:40 -07004541 len = skb_headlen(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004542 }
4543 }
4544
4545 /* reserve a descriptor for the offload context */
4546 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
4547 count++;
4548 count++;
4549
4550 count += TXD_USE_COUNT(len, max_txd_pwr);
4551
4552 nr_frags = skb_shinfo(skb)->nr_frags;
4553 for (f = 0; f < nr_frags; f++)
4554 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size,
4555 max_txd_pwr);
4556
4557 if (adapter->hw.mac.tx_pkt_filtering)
4558 e1000_transfer_dhcp_info(adapter, skb);
4559
Bruce Allanad680762008-03-28 09:15:03 -07004560 /*
4561 * need: count + 2 desc gap to keep tail from touching
4562 * head, otherwise try next time
4563 */
Jesse Brandeburg92af3e92009-01-19 14:17:08 +00004564 if (e1000_maybe_stop_tx(netdev, count + 2))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004565 return NETDEV_TX_BUSY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004566
4567 if (adapter->vlgrp && vlan_tx_tag_present(skb)) {
4568 tx_flags |= E1000_TX_FLAGS_VLAN;
4569 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
4570 }
4571
4572 first = tx_ring->next_to_use;
4573
4574 tso = e1000_tso(adapter, skb);
4575 if (tso < 0) {
4576 dev_kfree_skb_any(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004577 return NETDEV_TX_OK;
4578 }
4579
4580 if (tso)
4581 tx_flags |= E1000_TX_FLAGS_TSO;
4582 else if (e1000_tx_csum(adapter, skb))
4583 tx_flags |= E1000_TX_FLAGS_CSUM;
4584
Bruce Allanad680762008-03-28 09:15:03 -07004585 /*
4586 * Old method was to assume IPv4 packet by default if TSO was enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004587 * 82571 hardware supports TSO capabilities for IPv6 as well...
Bruce Allanad680762008-03-28 09:15:03 -07004588 * no longer assume, we must.
4589 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004590 if (skb->protocol == htons(ETH_P_IP))
4591 tx_flags |= E1000_TX_FLAGS_IPV4;
4592
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004593 /* if count is 0 then mapping error has occured */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004594 count = e1000_tx_map(adapter, skb, first, max_per_txd, nr_frags, mss);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004595 if (count) {
4596 e1000_tx_queue(adapter, tx_flags, count);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004597 /* Make sure there is space in the ring for the next send. */
4598 e1000_maybe_stop_tx(netdev, MAX_SKB_FRAGS + 2);
4599
4600 } else {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004601 dev_kfree_skb_any(skb);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004602 tx_ring->buffer_info[first].time_stamp = 0;
4603 tx_ring->next_to_use = first;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004604 }
4605
Auke Kokbc7f75f2007-09-17 12:30:59 -07004606 return NETDEV_TX_OK;
4607}
4608
4609/**
4610 * e1000_tx_timeout - Respond to a Tx Hang
4611 * @netdev: network interface device structure
4612 **/
4613static void e1000_tx_timeout(struct net_device *netdev)
4614{
4615 struct e1000_adapter *adapter = netdev_priv(netdev);
4616
4617 /* Do the reset outside of interrupt context */
4618 adapter->tx_timeout_count++;
4619 schedule_work(&adapter->reset_task);
4620}
4621
4622static void e1000_reset_task(struct work_struct *work)
4623{
4624 struct e1000_adapter *adapter;
4625 adapter = container_of(work, struct e1000_adapter, reset_task);
4626
Taku Izumi84f4ee92010-04-27 14:39:08 +00004627 e1000e_dump(adapter);
4628 e_err("Reset adapter\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004629 e1000e_reinit_locked(adapter);
4630}
4631
4632/**
4633 * e1000_get_stats - Get System Network Statistics
4634 * @netdev: network interface device structure
4635 *
4636 * Returns the address of the device statistics structure.
4637 * The statistics are actually updated from the timer callback.
4638 **/
4639static struct net_device_stats *e1000_get_stats(struct net_device *netdev)
4640{
Auke Kokbc7f75f2007-09-17 12:30:59 -07004641 /* only return the current stats */
Ajit Khaparde7274c202009-10-07 02:44:26 +00004642 return &netdev->stats;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004643}
4644
4645/**
4646 * e1000_change_mtu - Change the Maximum Transfer Unit
4647 * @netdev: network interface device structure
4648 * @new_mtu: new value for maximum frame size
4649 *
4650 * Returns 0 on success, negative on failure
4651 **/
4652static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
4653{
4654 struct e1000_adapter *adapter = netdev_priv(netdev);
4655 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
4656
Bruce Allan2adc55c2009-06-02 11:28:58 +00004657 /* Jumbo frame support */
4658 if ((max_frame > ETH_FRAME_LEN + ETH_FCS_LEN) &&
4659 !(adapter->flags & FLAG_HAS_JUMBO_FRAMES)) {
4660 e_err("Jumbo Frames not supported.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004661 return -EINVAL;
4662 }
4663
Bruce Allan2adc55c2009-06-02 11:28:58 +00004664 /* Supported frame sizes */
4665 if ((new_mtu < ETH_ZLEN + ETH_FCS_LEN + VLAN_HLEN) ||
4666 (max_frame > adapter->max_hw_frame_size)) {
4667 e_err("Unsupported MTU setting\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004668 return -EINVAL;
4669 }
4670
Bruce Allan6f461f62010-04-27 03:33:04 +00004671 /* 82573 Errata 17 */
4672 if (((adapter->hw.mac.type == e1000_82573) ||
4673 (adapter->hw.mac.type == e1000_82574)) &&
4674 (max_frame > ETH_FRAME_LEN + ETH_FCS_LEN)) {
4675 adapter->flags2 |= FLAG2_DISABLE_ASPM_L1;
4676 e1000e_disable_aspm(adapter->pdev, PCIE_LINK_STATE_L1);
4677 }
4678
Auke Kokbc7f75f2007-09-17 12:30:59 -07004679 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
4680 msleep(1);
Bruce Allan610c9922009-11-19 12:35:45 +00004681 /* e1000e_down -> e1000e_reset dependent on max_frame_size & mtu */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004682 adapter->max_frame_size = max_frame;
Bruce Allan610c9922009-11-19 12:35:45 +00004683 e_info("changing MTU from %d to %d\n", netdev->mtu, new_mtu);
4684 netdev->mtu = new_mtu;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004685 if (netif_running(netdev))
4686 e1000e_down(adapter);
4687
Bruce Allanad680762008-03-28 09:15:03 -07004688 /*
4689 * NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kokbc7f75f2007-09-17 12:30:59 -07004690 * means we reserve 2 more, this pushes us to allocate from the next
4691 * larger slab size.
Bruce Allanad680762008-03-28 09:15:03 -07004692 * i.e. RXBUFFER_2048 --> size-4096 slab
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004693 * However with the new *_jumbo_rx* routines, jumbo receives will use
4694 * fragmented skbs
Bruce Allanad680762008-03-28 09:15:03 -07004695 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004696
Jesse Brandeburg99261462010-01-22 22:56:16 +00004697 if (max_frame <= 2048)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004698 adapter->rx_buffer_len = 2048;
4699 else
4700 adapter->rx_buffer_len = 4096;
4701
4702 /* adjust allocation if LPE protects us, and we aren't using SBP */
4703 if ((max_frame == ETH_FRAME_LEN + ETH_FCS_LEN) ||
4704 (max_frame == ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN))
4705 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN
Bruce Allanad680762008-03-28 09:15:03 -07004706 + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004707
Auke Kokbc7f75f2007-09-17 12:30:59 -07004708 if (netif_running(netdev))
4709 e1000e_up(adapter);
4710 else
4711 e1000e_reset(adapter);
4712
4713 clear_bit(__E1000_RESETTING, &adapter->state);
4714
4715 return 0;
4716}
4717
4718static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
4719 int cmd)
4720{
4721 struct e1000_adapter *adapter = netdev_priv(netdev);
4722 struct mii_ioctl_data *data = if_mii(ifr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004723
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004724 if (adapter->hw.phy.media_type != e1000_media_type_copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004725 return -EOPNOTSUPP;
4726
4727 switch (cmd) {
4728 case SIOCGMIIPHY:
4729 data->phy_id = adapter->hw.phy.addr;
4730 break;
4731 case SIOCGMIIREG:
Bruce Allanb16a0022009-11-20 23:24:30 +00004732 e1000_phy_read_status(adapter);
4733
Bruce Allan7c257692008-04-23 11:09:00 -07004734 switch (data->reg_num & 0x1F) {
4735 case MII_BMCR:
4736 data->val_out = adapter->phy_regs.bmcr;
4737 break;
4738 case MII_BMSR:
4739 data->val_out = adapter->phy_regs.bmsr;
4740 break;
4741 case MII_PHYSID1:
4742 data->val_out = (adapter->hw.phy.id >> 16);
4743 break;
4744 case MII_PHYSID2:
4745 data->val_out = (adapter->hw.phy.id & 0xFFFF);
4746 break;
4747 case MII_ADVERTISE:
4748 data->val_out = adapter->phy_regs.advertise;
4749 break;
4750 case MII_LPA:
4751 data->val_out = adapter->phy_regs.lpa;
4752 break;
4753 case MII_EXPANSION:
4754 data->val_out = adapter->phy_regs.expansion;
4755 break;
4756 case MII_CTRL1000:
4757 data->val_out = adapter->phy_regs.ctrl1000;
4758 break;
4759 case MII_STAT1000:
4760 data->val_out = adapter->phy_regs.stat1000;
4761 break;
4762 case MII_ESTATUS:
4763 data->val_out = adapter->phy_regs.estatus;
4764 break;
4765 default:
Auke Kokbc7f75f2007-09-17 12:30:59 -07004766 return -EIO;
4767 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004768 break;
4769 case SIOCSMIIREG:
4770 default:
4771 return -EOPNOTSUPP;
4772 }
4773 return 0;
4774}
4775
4776static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
4777{
4778 switch (cmd) {
4779 case SIOCGMIIPHY:
4780 case SIOCGMIIREG:
4781 case SIOCSMIIREG:
4782 return e1000_mii_ioctl(netdev, ifr, cmd);
4783 default:
4784 return -EOPNOTSUPP;
4785 }
4786}
4787
Bruce Allana4f58f52009-06-02 11:29:18 +00004788static int e1000_init_phy_wakeup(struct e1000_adapter *adapter, u32 wufc)
4789{
4790 struct e1000_hw *hw = &adapter->hw;
4791 u32 i, mac_reg;
4792 u16 phy_reg;
4793 int retval = 0;
4794
4795 /* copy MAC RARs to PHY RARs */
4796 for (i = 0; i < adapter->hw.mac.rar_entry_count; i++) {
4797 mac_reg = er32(RAL(i));
4798 e1e_wphy(hw, BM_RAR_L(i), (u16)(mac_reg & 0xFFFF));
4799 e1e_wphy(hw, BM_RAR_M(i), (u16)((mac_reg >> 16) & 0xFFFF));
4800 mac_reg = er32(RAH(i));
4801 e1e_wphy(hw, BM_RAR_H(i), (u16)(mac_reg & 0xFFFF));
4802 e1e_wphy(hw, BM_RAR_CTRL(i), (u16)((mac_reg >> 16) & 0xFFFF));
4803 }
4804
4805 /* copy MAC MTA to PHY MTA */
4806 for (i = 0; i < adapter->hw.mac.mta_reg_count; i++) {
4807 mac_reg = E1000_READ_REG_ARRAY(hw, E1000_MTA, i);
4808 e1e_wphy(hw, BM_MTA(i), (u16)(mac_reg & 0xFFFF));
4809 e1e_wphy(hw, BM_MTA(i) + 1, (u16)((mac_reg >> 16) & 0xFFFF));
4810 }
4811
4812 /* configure PHY Rx Control register */
4813 e1e_rphy(&adapter->hw, BM_RCTL, &phy_reg);
4814 mac_reg = er32(RCTL);
4815 if (mac_reg & E1000_RCTL_UPE)
4816 phy_reg |= BM_RCTL_UPE;
4817 if (mac_reg & E1000_RCTL_MPE)
4818 phy_reg |= BM_RCTL_MPE;
4819 phy_reg &= ~(BM_RCTL_MO_MASK);
4820 if (mac_reg & E1000_RCTL_MO_3)
4821 phy_reg |= (((mac_reg & E1000_RCTL_MO_3) >> E1000_RCTL_MO_SHIFT)
4822 << BM_RCTL_MO_SHIFT);
4823 if (mac_reg & E1000_RCTL_BAM)
4824 phy_reg |= BM_RCTL_BAM;
4825 if (mac_reg & E1000_RCTL_PMCF)
4826 phy_reg |= BM_RCTL_PMCF;
4827 mac_reg = er32(CTRL);
4828 if (mac_reg & E1000_CTRL_RFCE)
4829 phy_reg |= BM_RCTL_RFCE;
4830 e1e_wphy(&adapter->hw, BM_RCTL, phy_reg);
4831
4832 /* enable PHY wakeup in MAC register */
4833 ew32(WUFC, wufc);
4834 ew32(WUC, E1000_WUC_PHY_WAKE | E1000_WUC_PME_EN);
4835
4836 /* configure and enable PHY wakeup in PHY registers */
4837 e1e_wphy(&adapter->hw, BM_WUFC, wufc);
4838 e1e_wphy(&adapter->hw, BM_WUC, E1000_WUC_PME_EN);
4839
4840 /* activate PHY wakeup */
Bruce Allan94d81862009-11-20 23:25:26 +00004841 retval = hw->phy.ops.acquire(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00004842 if (retval) {
4843 e_err("Could not acquire PHY\n");
4844 return retval;
4845 }
4846 e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT,
4847 (BM_WUC_ENABLE_PAGE << IGP_PAGE_SHIFT));
4848 retval = e1000e_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, &phy_reg);
4849 if (retval) {
4850 e_err("Could not read PHY page 769\n");
4851 goto out;
4852 }
4853 phy_reg |= BM_WUC_ENABLE_BIT | BM_WUC_HOST_WU_BIT;
4854 retval = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg);
4855 if (retval)
4856 e_err("Could not set PHY Host Wakeup bit\n");
4857out:
Bruce Allan94d81862009-11-20 23:25:26 +00004858 hw->phy.ops.release(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00004859
4860 return retval;
4861}
4862
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004863static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake,
4864 bool runtime)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004865{
4866 struct net_device *netdev = pci_get_drvdata(pdev);
4867 struct e1000_adapter *adapter = netdev_priv(netdev);
4868 struct e1000_hw *hw = &adapter->hw;
4869 u32 ctrl, ctrl_ext, rctl, status;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004870 /* Runtime suspend should only enable wakeup for link changes */
4871 u32 wufc = runtime ? E1000_WUFC_LNKC : adapter->wol;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004872 int retval = 0;
4873
4874 netif_device_detach(netdev);
4875
4876 if (netif_running(netdev)) {
4877 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
4878 e1000e_down(adapter);
4879 e1000_free_irq(adapter);
4880 }
Bruce Allan4662e822008-08-26 18:37:06 -07004881 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004882
4883 retval = pci_save_state(pdev);
4884 if (retval)
4885 return retval;
4886
4887 status = er32(STATUS);
4888 if (status & E1000_STATUS_LU)
4889 wufc &= ~E1000_WUFC_LNKC;
4890
4891 if (wufc) {
4892 e1000_setup_rctl(adapter);
4893 e1000_set_multi(netdev);
4894
4895 /* turn on all-multi mode if wake on multicast is enabled */
4896 if (wufc & E1000_WUFC_MC) {
4897 rctl = er32(RCTL);
4898 rctl |= E1000_RCTL_MPE;
4899 ew32(RCTL, rctl);
4900 }
4901
4902 ctrl = er32(CTRL);
4903 /* advertise wake from D3Cold */
4904 #define E1000_CTRL_ADVD3WUC 0x00100000
4905 /* phy power management enable */
4906 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
Bruce Allana4f58f52009-06-02 11:29:18 +00004907 ctrl |= E1000_CTRL_ADVD3WUC;
4908 if (!(adapter->flags2 & FLAG2_HAS_PHY_WAKEUP))
4909 ctrl |= E1000_CTRL_EN_PHY_PWR_MGMT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004910 ew32(CTRL, ctrl);
4911
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004912 if (adapter->hw.phy.media_type == e1000_media_type_fiber ||
4913 adapter->hw.phy.media_type ==
4914 e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004915 /* keep the laser running in D3 */
4916 ctrl_ext = er32(CTRL_EXT);
Bruce Allan93a23f42009-12-08 07:27:41 +00004917 ctrl_ext |= E1000_CTRL_EXT_SDP3_DATA;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004918 ew32(CTRL_EXT, ctrl_ext);
4919 }
4920
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004921 if (adapter->flags & FLAG_IS_ICH)
4922 e1000e_disable_gig_wol_ich8lan(&adapter->hw);
4923
Auke Kokbc7f75f2007-09-17 12:30:59 -07004924 /* Allow time for pending master requests to run */
4925 e1000e_disable_pcie_master(&adapter->hw);
4926
Bruce Allan82776a42009-08-14 14:35:33 +00004927 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
Bruce Allana4f58f52009-06-02 11:29:18 +00004928 /* enable wakeup by the PHY */
4929 retval = e1000_init_phy_wakeup(adapter, wufc);
4930 if (retval)
4931 return retval;
4932 } else {
4933 /* enable wakeup by the MAC */
4934 ew32(WUFC, wufc);
4935 ew32(WUC, E1000_WUC_PME_EN);
4936 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004937 } else {
4938 ew32(WUC, 0);
4939 ew32(WUFC, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004940 }
4941
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004942 *enable_wake = !!wufc;
4943
Auke Kokbc7f75f2007-09-17 12:30:59 -07004944 /* make sure adapter isn't asleep if manageability is enabled */
Bruce Allan82776a42009-08-14 14:35:33 +00004945 if ((adapter->flags & FLAG_MNG_PT_ENABLED) ||
4946 (hw->mac.ops.check_mng_mode(hw)))
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004947 *enable_wake = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004948
4949 if (adapter->hw.phy.type == e1000_phy_igp_3)
4950 e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw);
4951
Bruce Allanad680762008-03-28 09:15:03 -07004952 /*
4953 * Release control of h/w to f/w. If f/w is AMT enabled, this
4954 * would have already happened in close and is redundant.
4955 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004956 e1000_release_hw_control(adapter);
4957
4958 pci_disable_device(pdev);
4959
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004960 return 0;
4961}
4962
4963static void e1000_power_off(struct pci_dev *pdev, bool sleep, bool wake)
4964{
4965 if (sleep && wake) {
4966 pci_prepare_to_sleep(pdev);
4967 return;
4968 }
4969
4970 pci_wake_from_d3(pdev, wake);
4971 pci_set_power_state(pdev, PCI_D3hot);
4972}
4973
4974static void e1000_complete_shutdown(struct pci_dev *pdev, bool sleep,
4975 bool wake)
4976{
4977 struct net_device *netdev = pci_get_drvdata(pdev);
4978 struct e1000_adapter *adapter = netdev_priv(netdev);
4979
Alexander Duyck005cbdf2008-11-21 16:49:10 -08004980 /*
4981 * The pci-e switch on some quad port adapters will report a
4982 * correctable error when the MAC transitions from D0 to D3. To
4983 * prevent this we need to mask off the correctable errors on the
4984 * downstream port of the pci-e switch.
4985 */
4986 if (adapter->flags & FLAG_IS_QUAD_PORT) {
4987 struct pci_dev *us_dev = pdev->bus->self;
4988 int pos = pci_find_capability(us_dev, PCI_CAP_ID_EXP);
4989 u16 devctl;
4990
4991 pci_read_config_word(us_dev, pos + PCI_EXP_DEVCTL, &devctl);
4992 pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL,
4993 (devctl & ~PCI_EXP_DEVCTL_CERE));
4994
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004995 e1000_power_off(pdev, sleep, wake);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08004996
4997 pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, devctl);
4998 } else {
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004999 e1000_power_off(pdev, sleep, wake);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08005000 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005001}
5002
Bruce Allan6f461f62010-04-27 03:33:04 +00005003#ifdef CONFIG_PCIEASPM
5004static void __e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
5005{
5006 pci_disable_link_state(pdev, state);
5007}
5008#else
5009static void __e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
Auke Kok1eae4eb2007-10-31 15:22:00 -07005010{
5011 int pos;
Bruce Allan6f461f62010-04-27 03:33:04 +00005012 u16 reg16;
Auke Kok1eae4eb2007-10-31 15:22:00 -07005013
5014 /*
Bruce Allan6f461f62010-04-27 03:33:04 +00005015 * Both device and parent should have the same ASPM setting.
5016 * Disable ASPM in downstream component first and then upstream.
Auke Kok1eae4eb2007-10-31 15:22:00 -07005017 */
Bruce Allan6f461f62010-04-27 03:33:04 +00005018 pos = pci_pcie_cap(pdev);
5019 pci_read_config_word(pdev, pos + PCI_EXP_LNKCTL, &reg16);
5020 reg16 &= ~state;
5021 pci_write_config_word(pdev, pos + PCI_EXP_LNKCTL, reg16);
5022
5023 pos = pci_pcie_cap(pdev->bus->self);
5024 pci_read_config_word(pdev->bus->self, pos + PCI_EXP_LNKCTL, &reg16);
5025 reg16 &= ~state;
5026 pci_write_config_word(pdev->bus->self, pos + PCI_EXP_LNKCTL, reg16);
5027}
5028#endif
5029void e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
5030{
5031 dev_info(&pdev->dev, "Disabling ASPM %s %s\n",
5032 (state & PCIE_LINK_STATE_L0S) ? "L0s" : "",
5033 (state & PCIE_LINK_STATE_L1) ? "L1" : "");
5034
5035 __e1000e_disable_aspm(pdev, state);
Auke Kok1eae4eb2007-10-31 15:22:00 -07005036}
5037
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005038#ifdef CONFIG_PM_OPS
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005039static bool e1000e_pm_ready(struct e1000_adapter *adapter)
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005040{
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005041 return !!adapter->tx_ring->buffer_info;
5042}
5043
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005044static int __e1000_resume(struct pci_dev *pdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005045{
5046 struct net_device *netdev = pci_get_drvdata(pdev);
5047 struct e1000_adapter *adapter = netdev_priv(netdev);
5048 struct e1000_hw *hw = &adapter->hw;
5049 u32 err;
5050
5051 pci_set_power_state(pdev, PCI_D0);
5052 pci_restore_state(pdev);
Bruce Allan28b8f042010-01-07 16:30:56 +00005053 pci_save_state(pdev);
Bruce Allan6f461f62010-04-27 03:33:04 +00005054 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
5055 e1000e_disable_aspm(pdev, PCIE_LINK_STATE_L1);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005056
Bruce Allan4662e822008-08-26 18:37:06 -07005057 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005058 if (netif_running(netdev)) {
5059 err = e1000_request_irq(adapter);
5060 if (err)
5061 return err;
5062 }
5063
5064 e1000e_power_up_phy(adapter);
Bruce Allana4f58f52009-06-02 11:29:18 +00005065
5066 /* report the system wakeup cause from S3/S4 */
5067 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
5068 u16 phy_data;
5069
5070 e1e_rphy(&adapter->hw, BM_WUS, &phy_data);
5071 if (phy_data) {
5072 e_info("PHY Wakeup cause - %s\n",
5073 phy_data & E1000_WUS_EX ? "Unicast Packet" :
5074 phy_data & E1000_WUS_MC ? "Multicast Packet" :
5075 phy_data & E1000_WUS_BC ? "Broadcast Packet" :
5076 phy_data & E1000_WUS_MAG ? "Magic Packet" :
5077 phy_data & E1000_WUS_LNKC ? "Link Status "
5078 " Change" : "other");
5079 }
5080 e1e_wphy(&adapter->hw, BM_WUS, ~0);
5081 } else {
5082 u32 wus = er32(WUS);
5083 if (wus) {
5084 e_info("MAC Wakeup cause - %s\n",
5085 wus & E1000_WUS_EX ? "Unicast Packet" :
5086 wus & E1000_WUS_MC ? "Multicast Packet" :
5087 wus & E1000_WUS_BC ? "Broadcast Packet" :
5088 wus & E1000_WUS_MAG ? "Magic Packet" :
5089 wus & E1000_WUS_LNKC ? "Link Status Change" :
5090 "other");
5091 }
5092 ew32(WUS, ~0);
5093 }
5094
Auke Kokbc7f75f2007-09-17 12:30:59 -07005095 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005096
5097 e1000_init_manageability(adapter);
5098
5099 if (netif_running(netdev))
5100 e1000e_up(adapter);
5101
5102 netif_device_attach(netdev);
5103
Bruce Allanad680762008-03-28 09:15:03 -07005104 /*
5105 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07005106 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07005107 * under the control of the driver.
5108 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005109 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005110 e1000_get_hw_control(adapter);
5111
5112 return 0;
5113}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005114
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005115#ifdef CONFIG_PM_SLEEP
5116static int e1000_suspend(struct device *dev)
5117{
5118 struct pci_dev *pdev = to_pci_dev(dev);
5119 int retval;
5120 bool wake;
5121
5122 retval = __e1000_shutdown(pdev, &wake, false);
5123 if (!retval)
5124 e1000_complete_shutdown(pdev, true, wake);
5125
5126 return retval;
5127}
5128
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005129static int e1000_resume(struct device *dev)
5130{
5131 struct pci_dev *pdev = to_pci_dev(dev);
5132 struct net_device *netdev = pci_get_drvdata(pdev);
5133 struct e1000_adapter *adapter = netdev_priv(netdev);
5134
5135 if (e1000e_pm_ready(adapter))
5136 adapter->idle_check = true;
5137
5138 return __e1000_resume(pdev);
5139}
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005140#endif /* CONFIG_PM_SLEEP */
5141
5142#ifdef CONFIG_PM_RUNTIME
5143static int e1000_runtime_suspend(struct device *dev)
5144{
5145 struct pci_dev *pdev = to_pci_dev(dev);
5146 struct net_device *netdev = pci_get_drvdata(pdev);
5147 struct e1000_adapter *adapter = netdev_priv(netdev);
5148
5149 if (e1000e_pm_ready(adapter)) {
5150 bool wake;
5151
5152 __e1000_shutdown(pdev, &wake, true);
5153 }
5154
5155 return 0;
5156}
5157
5158static int e1000_idle(struct device *dev)
5159{
5160 struct pci_dev *pdev = to_pci_dev(dev);
5161 struct net_device *netdev = pci_get_drvdata(pdev);
5162 struct e1000_adapter *adapter = netdev_priv(netdev);
5163
5164 if (!e1000e_pm_ready(adapter))
5165 return 0;
5166
5167 if (adapter->idle_check) {
5168 adapter->idle_check = false;
5169 if (!e1000e_has_link(adapter))
5170 pm_schedule_suspend(dev, MSEC_PER_SEC);
5171 }
5172
5173 return -EBUSY;
5174}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005175
5176static int e1000_runtime_resume(struct device *dev)
5177{
5178 struct pci_dev *pdev = to_pci_dev(dev);
5179 struct net_device *netdev = pci_get_drvdata(pdev);
5180 struct e1000_adapter *adapter = netdev_priv(netdev);
5181
5182 if (!e1000e_pm_ready(adapter))
5183 return 0;
5184
5185 adapter->idle_check = !dev->power.runtime_auto;
5186 return __e1000_resume(pdev);
5187}
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005188#endif /* CONFIG_PM_RUNTIME */
5189#endif /* CONFIG_PM_OPS */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005190
5191static void e1000_shutdown(struct pci_dev *pdev)
5192{
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005193 bool wake = false;
5194
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005195 __e1000_shutdown(pdev, &wake, false);
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005196
5197 if (system_state == SYSTEM_POWER_OFF)
5198 e1000_complete_shutdown(pdev, false, wake);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005199}
5200
5201#ifdef CONFIG_NET_POLL_CONTROLLER
5202/*
5203 * Polling 'interrupt' - used by things like netconsole to send skbs
5204 * without having to re-enable interrupts. It's not called while
5205 * the interrupt routine is executing.
5206 */
5207static void e1000_netpoll(struct net_device *netdev)
5208{
5209 struct e1000_adapter *adapter = netdev_priv(netdev);
5210
5211 disable_irq(adapter->pdev->irq);
5212 e1000_intr(adapter->pdev->irq, netdev);
5213
Auke Kokbc7f75f2007-09-17 12:30:59 -07005214 enable_irq(adapter->pdev->irq);
5215}
5216#endif
5217
5218/**
5219 * e1000_io_error_detected - called when PCI error is detected
5220 * @pdev: Pointer to PCI device
5221 * @state: The current pci connection state
5222 *
5223 * This function is called after a PCI bus error affecting
5224 * this device has been detected.
5225 */
5226static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
5227 pci_channel_state_t state)
5228{
5229 struct net_device *netdev = pci_get_drvdata(pdev);
5230 struct e1000_adapter *adapter = netdev_priv(netdev);
5231
5232 netif_device_detach(netdev);
5233
Mike Masonc93b5a72009-06-30 12:45:53 +00005234 if (state == pci_channel_io_perm_failure)
5235 return PCI_ERS_RESULT_DISCONNECT;
5236
Auke Kokbc7f75f2007-09-17 12:30:59 -07005237 if (netif_running(netdev))
5238 e1000e_down(adapter);
5239 pci_disable_device(pdev);
5240
5241 /* Request a slot slot reset. */
5242 return PCI_ERS_RESULT_NEED_RESET;
5243}
5244
5245/**
5246 * e1000_io_slot_reset - called after the pci bus has been reset.
5247 * @pdev: Pointer to PCI device
5248 *
5249 * Restart the card from scratch, as if from a cold-boot. Implementation
5250 * resembles the first-half of the e1000_resume routine.
5251 */
5252static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
5253{
5254 struct net_device *netdev = pci_get_drvdata(pdev);
5255 struct e1000_adapter *adapter = netdev_priv(netdev);
5256 struct e1000_hw *hw = &adapter->hw;
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005257 int err;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005258 pci_ers_result_t result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005259
Bruce Allan6f461f62010-04-27 03:33:04 +00005260 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
5261 e1000e_disable_aspm(pdev, PCIE_LINK_STATE_L1);
Bruce Allanf0f422e2008-08-04 17:21:53 -07005262 err = pci_enable_device_mem(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005263 if (err) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005264 dev_err(&pdev->dev,
5265 "Cannot re-enable PCI device after reset.\n");
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005266 result = PCI_ERS_RESULT_DISCONNECT;
5267 } else {
5268 pci_set_master(pdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005269 pdev->state_saved = true;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005270 pci_restore_state(pdev);
5271
5272 pci_enable_wake(pdev, PCI_D3hot, 0);
5273 pci_enable_wake(pdev, PCI_D3cold, 0);
5274
5275 e1000e_reset(adapter);
5276 ew32(WUS, ~0);
5277 result = PCI_ERS_RESULT_RECOVERED;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005278 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005279
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005280 pci_cleanup_aer_uncorrect_error_status(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005281
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005282 return result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005283}
5284
5285/**
5286 * e1000_io_resume - called when traffic can start flowing again.
5287 * @pdev: Pointer to PCI device
5288 *
5289 * This callback is called when the error recovery driver tells us that
5290 * its OK to resume normal operation. Implementation resembles the
5291 * second-half of the e1000_resume routine.
5292 */
5293static void e1000_io_resume(struct pci_dev *pdev)
5294{
5295 struct net_device *netdev = pci_get_drvdata(pdev);
5296 struct e1000_adapter *adapter = netdev_priv(netdev);
5297
5298 e1000_init_manageability(adapter);
5299
5300 if (netif_running(netdev)) {
5301 if (e1000e_up(adapter)) {
5302 dev_err(&pdev->dev,
5303 "can't bring device back up after reset\n");
5304 return;
5305 }
5306 }
5307
5308 netif_device_attach(netdev);
5309
Bruce Allanad680762008-03-28 09:15:03 -07005310 /*
5311 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07005312 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07005313 * under the control of the driver.
5314 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005315 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005316 e1000_get_hw_control(adapter);
5317
5318}
5319
5320static void e1000_print_device_info(struct e1000_adapter *adapter)
5321{
5322 struct e1000_hw *hw = &adapter->hw;
5323 struct net_device *netdev = adapter->netdev;
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005324 u32 pba_num;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005325
5326 /* print bus type/speed/width info */
Johannes Berg7c510e42008-10-27 17:47:26 -07005327 e_info("(PCI Express:2.5GB/s:%s) %pM\n",
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005328 /* bus width */
5329 ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" :
5330 "Width x1"),
5331 /* MAC address */
Johannes Berg7c510e42008-10-27 17:47:26 -07005332 netdev->dev_addr);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005333 e_info("Intel(R) PRO/%s Network Connection\n",
5334 (hw->phy.type == e1000_phy_ife) ? "10/100" : "1000");
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005335 e1000e_read_pba_num(hw, &pba_num);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005336 e_info("MAC: %d, PHY: %d, PBA No: %06x-%03x\n",
5337 hw->mac.type, hw->phy.type, (pba_num >> 8), (pba_num & 0xff));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005338}
5339
Auke Kok10aa4c02008-08-04 17:21:20 -07005340static void e1000_eeprom_checks(struct e1000_adapter *adapter)
5341{
5342 struct e1000_hw *hw = &adapter->hw;
5343 int ret_val;
5344 u16 buf = 0;
5345
5346 if (hw->mac.type != e1000_82573)
5347 return;
5348
5349 ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &buf);
Bruce Allane2434552008-11-21 17:02:41 -08005350 if (!ret_val && (!(le16_to_cpu(buf) & (1 << 0)))) {
Auke Kok10aa4c02008-08-04 17:21:20 -07005351 /* Deep Smart Power Down (DSPD) */
Frans Pop6c2a9ef2008-09-22 14:52:22 -07005352 dev_warn(&adapter->pdev->dev,
5353 "Warning: detected DSPD enabled in EEPROM\n");
Auke Kok10aa4c02008-08-04 17:21:20 -07005354 }
Auke Kok10aa4c02008-08-04 17:21:20 -07005355}
5356
Stephen Hemminger651c2462008-11-19 21:57:48 -08005357static const struct net_device_ops e1000e_netdev_ops = {
5358 .ndo_open = e1000_open,
5359 .ndo_stop = e1000_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08005360 .ndo_start_xmit = e1000_xmit_frame,
Stephen Hemminger651c2462008-11-19 21:57:48 -08005361 .ndo_get_stats = e1000_get_stats,
5362 .ndo_set_multicast_list = e1000_set_multi,
5363 .ndo_set_mac_address = e1000_set_mac,
5364 .ndo_change_mtu = e1000_change_mtu,
5365 .ndo_do_ioctl = e1000_ioctl,
5366 .ndo_tx_timeout = e1000_tx_timeout,
5367 .ndo_validate_addr = eth_validate_addr,
5368
5369 .ndo_vlan_rx_register = e1000_vlan_rx_register,
5370 .ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
5371 .ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
5372#ifdef CONFIG_NET_POLL_CONTROLLER
5373 .ndo_poll_controller = e1000_netpoll,
5374#endif
5375};
5376
Auke Kokbc7f75f2007-09-17 12:30:59 -07005377/**
5378 * e1000_probe - Device Initialization Routine
5379 * @pdev: PCI device information struct
5380 * @ent: entry in e1000_pci_tbl
5381 *
5382 * Returns 0 on success, negative on failure
5383 *
5384 * e1000_probe initializes an adapter identified by a pci_dev structure.
5385 * The OS initialization, configuring of the adapter private structure,
5386 * and a hardware reset occur.
5387 **/
5388static int __devinit e1000_probe(struct pci_dev *pdev,
5389 const struct pci_device_id *ent)
5390{
5391 struct net_device *netdev;
5392 struct e1000_adapter *adapter;
5393 struct e1000_hw *hw;
5394 const struct e1000_info *ei = e1000_info_tbl[ent->driver_data];
Becky Brucef47e81f2008-05-01 18:03:11 -05005395 resource_size_t mmio_start, mmio_len;
5396 resource_size_t flash_start, flash_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005397
5398 static int cards_found;
5399 int i, err, pci_using_dac;
5400 u16 eeprom_data = 0;
5401 u16 eeprom_apme_mask = E1000_EEPROM_APME;
5402
Bruce Allan6f461f62010-04-27 03:33:04 +00005403 if (ei->flags2 & FLAG2_DISABLE_ASPM_L1)
5404 e1000e_disable_aspm(pdev, PCIE_LINK_STATE_L1);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005405
Bruce Allanf0f422e2008-08-04 17:21:53 -07005406 err = pci_enable_device_mem(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005407 if (err)
5408 return err;
5409
5410 pci_using_dac = 0;
Nick Nunley0be3f552010-04-27 13:09:05 +00005411 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005412 if (!err) {
Nick Nunley0be3f552010-04-27 13:09:05 +00005413 err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005414 if (!err)
5415 pci_using_dac = 1;
5416 } else {
Nick Nunley0be3f552010-04-27 13:09:05 +00005417 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005418 if (err) {
Nick Nunley0be3f552010-04-27 13:09:05 +00005419 err = dma_set_coherent_mask(&pdev->dev,
5420 DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005421 if (err) {
5422 dev_err(&pdev->dev, "No usable DMA "
5423 "configuration, aborting\n");
5424 goto err_dma;
5425 }
5426 }
5427 }
5428
Arjan van de Vene8de1482008-10-22 19:55:31 -07005429 err = pci_request_selected_regions_exclusive(pdev,
Bruce Allanf0f422e2008-08-04 17:21:53 -07005430 pci_select_bars(pdev, IORESOURCE_MEM),
5431 e1000e_driver_name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005432 if (err)
5433 goto err_pci_reg;
5434
Xiaotian Feng68eac462009-08-14 14:35:52 +00005435 /* AER (Advanced Error Reporting) hooks */
Frans Pop19d5afd2009-10-02 10:04:12 -07005436 pci_enable_pcie_error_reporting(pdev);
Xiaotian Feng68eac462009-08-14 14:35:52 +00005437
Auke Kokbc7f75f2007-09-17 12:30:59 -07005438 pci_set_master(pdev);
Bruce Allan438b3652008-11-21 16:51:33 -08005439 /* PCI config space info */
5440 err = pci_save_state(pdev);
5441 if (err)
5442 goto err_alloc_etherdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005443
5444 err = -ENOMEM;
5445 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
5446 if (!netdev)
5447 goto err_alloc_etherdev;
5448
Auke Kokbc7f75f2007-09-17 12:30:59 -07005449 SET_NETDEV_DEV(netdev, &pdev->dev);
5450
5451 pci_set_drvdata(pdev, netdev);
5452 adapter = netdev_priv(netdev);
5453 hw = &adapter->hw;
5454 adapter->netdev = netdev;
5455 adapter->pdev = pdev;
5456 adapter->ei = ei;
5457 adapter->pba = ei->pba;
5458 adapter->flags = ei->flags;
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00005459 adapter->flags2 = ei->flags2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005460 adapter->hw.adapter = adapter;
5461 adapter->hw.mac.type = ei->mac;
Bruce Allan2adc55c2009-06-02 11:28:58 +00005462 adapter->max_hw_frame_size = ei->max_hw_frame_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005463 adapter->msg_enable = (1 << NETIF_MSG_DRV | NETIF_MSG_PROBE) - 1;
5464
5465 mmio_start = pci_resource_start(pdev, 0);
5466 mmio_len = pci_resource_len(pdev, 0);
5467
5468 err = -EIO;
5469 adapter->hw.hw_addr = ioremap(mmio_start, mmio_len);
5470 if (!adapter->hw.hw_addr)
5471 goto err_ioremap;
5472
5473 if ((adapter->flags & FLAG_HAS_FLASH) &&
5474 (pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
5475 flash_start = pci_resource_start(pdev, 1);
5476 flash_len = pci_resource_len(pdev, 1);
5477 adapter->hw.flash_address = ioremap(flash_start, flash_len);
5478 if (!adapter->hw.flash_address)
5479 goto err_flashmap;
5480 }
5481
5482 /* construct the net_device struct */
Stephen Hemminger651c2462008-11-19 21:57:48 -08005483 netdev->netdev_ops = &e1000e_netdev_ops;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005484 e1000e_set_ethtool_ops(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005485 netdev->watchdog_timeo = 5 * HZ;
5486 netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005487 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
5488
5489 netdev->mem_start = mmio_start;
5490 netdev->mem_end = mmio_start + mmio_len;
5491
5492 adapter->bd_number = cards_found++;
5493
Bruce Allan4662e822008-08-26 18:37:06 -07005494 e1000e_check_options(adapter);
5495
Auke Kokbc7f75f2007-09-17 12:30:59 -07005496 /* setup adapter struct */
5497 err = e1000_sw_init(adapter);
5498 if (err)
5499 goto err_sw_init;
5500
5501 err = -EIO;
5502
5503 memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops));
5504 memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops));
5505 memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops));
5506
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005507 err = ei->get_variants(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005508 if (err)
5509 goto err_hw_init;
5510
Bruce Allan4a770352008-10-01 17:18:35 -07005511 if ((adapter->flags & FLAG_IS_ICH) &&
5512 (adapter->flags & FLAG_READ_ONLY_NVM))
5513 e1000e_write_protect_nvm_ich8lan(&adapter->hw);
5514
Auke Kokbc7f75f2007-09-17 12:30:59 -07005515 hw->mac.ops.get_bus_info(&adapter->hw);
5516
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005517 adapter->hw.phy.autoneg_wait_to_complete = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005518
5519 /* Copper options */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005520 if (adapter->hw.phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005521 adapter->hw.phy.mdix = AUTO_ALL_MODES;
5522 adapter->hw.phy.disable_polarity_correction = 0;
5523 adapter->hw.phy.ms_type = e1000_ms_hw_default;
5524 }
5525
5526 if (e1000_check_reset_block(&adapter->hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005527 e_info("PHY reset is blocked due to SOL/IDER session.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005528
5529 netdev->features = NETIF_F_SG |
5530 NETIF_F_HW_CSUM |
5531 NETIF_F_HW_VLAN_TX |
5532 NETIF_F_HW_VLAN_RX;
5533
5534 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
5535 netdev->features |= NETIF_F_HW_VLAN_FILTER;
5536
5537 netdev->features |= NETIF_F_TSO;
5538 netdev->features |= NETIF_F_TSO6;
5539
Jeff Kirshera5136e22008-06-05 04:07:28 -07005540 netdev->vlan_features |= NETIF_F_TSO;
5541 netdev->vlan_features |= NETIF_F_TSO6;
5542 netdev->vlan_features |= NETIF_F_HW_CSUM;
5543 netdev->vlan_features |= NETIF_F_SG;
5544
Auke Kokbc7f75f2007-09-17 12:30:59 -07005545 if (pci_using_dac)
5546 netdev->features |= NETIF_F_HIGHDMA;
5547
Auke Kokbc7f75f2007-09-17 12:30:59 -07005548 if (e1000e_enable_mng_pass_thru(&adapter->hw))
5549 adapter->flags |= FLAG_MNG_PT_ENABLED;
5550
Bruce Allanad680762008-03-28 09:15:03 -07005551 /*
5552 * before reading the NVM, reset the controller to
5553 * put the device in a known good starting state
5554 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005555 adapter->hw.mac.ops.reset_hw(&adapter->hw);
5556
5557 /*
5558 * systems with ASPM and others may see the checksum fail on the first
5559 * attempt. Let's give it a few tries
5560 */
5561 for (i = 0;; i++) {
5562 if (e1000_validate_nvm_checksum(&adapter->hw) >= 0)
5563 break;
5564 if (i == 2) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005565 e_err("The NVM Checksum Is Not Valid\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005566 err = -EIO;
5567 goto err_eeprom;
5568 }
5569 }
5570
Auke Kok10aa4c02008-08-04 17:21:20 -07005571 e1000_eeprom_checks(adapter);
5572
Bruce Allan608f8a02010-01-13 02:04:58 +00005573 /* copy the MAC address */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005574 if (e1000e_read_mac_addr(&adapter->hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005575 e_err("NVM Read Error while reading MAC address\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005576
5577 memcpy(netdev->dev_addr, adapter->hw.mac.addr, netdev->addr_len);
5578 memcpy(netdev->perm_addr, adapter->hw.mac.addr, netdev->addr_len);
5579
5580 if (!is_valid_ether_addr(netdev->perm_addr)) {
Johannes Berg7c510e42008-10-27 17:47:26 -07005581 e_err("Invalid MAC Address: %pM\n", netdev->perm_addr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005582 err = -EIO;
5583 goto err_eeprom;
5584 }
5585
5586 init_timer(&adapter->watchdog_timer);
5587 adapter->watchdog_timer.function = &e1000_watchdog;
5588 adapter->watchdog_timer.data = (unsigned long) adapter;
5589
5590 init_timer(&adapter->phy_info_timer);
5591 adapter->phy_info_timer.function = &e1000_update_phy_info;
5592 adapter->phy_info_timer.data = (unsigned long) adapter;
5593
5594 INIT_WORK(&adapter->reset_task, e1000_reset_task);
5595 INIT_WORK(&adapter->watchdog_task, e1000_watchdog_task);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07005596 INIT_WORK(&adapter->downshift_task, e1000e_downshift_workaround);
5597 INIT_WORK(&adapter->update_phy_task, e1000e_update_phy_task);
Bruce Allan41cec6f2009-11-20 23:28:56 +00005598 INIT_WORK(&adapter->print_hang_task, e1000_print_hw_hang);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005599
Auke Kokbc7f75f2007-09-17 12:30:59 -07005600 /* Initialize link parameters. User can change them with ethtool */
5601 adapter->hw.mac.autoneg = 1;
Auke Kok309af402007-10-05 15:22:02 -07005602 adapter->fc_autoneg = 1;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08005603 adapter->hw.fc.requested_mode = e1000_fc_default;
5604 adapter->hw.fc.current_mode = e1000_fc_default;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005605 adapter->hw.phy.autoneg_advertised = 0x2f;
5606
5607 /* ring size defaults */
5608 adapter->rx_ring->count = 256;
5609 adapter->tx_ring->count = 256;
5610
5611 /*
5612 * Initial Wake on LAN setting - If APM wake is enabled in
5613 * the EEPROM, enable the ACPI Magic Packet filter
5614 */
5615 if (adapter->flags & FLAG_APME_IN_WUC) {
5616 /* APME bit in EEPROM is mapped to WUC.APME */
5617 eeprom_data = er32(WUC);
5618 eeprom_apme_mask = E1000_WUC_APME;
Bruce Allana4f58f52009-06-02 11:29:18 +00005619 if (eeprom_data & E1000_WUC_PHY_WAKE)
5620 adapter->flags2 |= FLAG2_HAS_PHY_WAKEUP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005621 } else if (adapter->flags & FLAG_APME_IN_CTRL3) {
5622 if (adapter->flags & FLAG_APME_CHECK_PORT_B &&
5623 (adapter->hw.bus.func == 1))
5624 e1000_read_nvm(&adapter->hw,
5625 NVM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
5626 else
5627 e1000_read_nvm(&adapter->hw,
5628 NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
5629 }
5630
5631 /* fetch WoL from EEPROM */
5632 if (eeprom_data & eeprom_apme_mask)
5633 adapter->eeprom_wol |= E1000_WUFC_MAG;
5634
5635 /*
5636 * now that we have the eeprom settings, apply the special cases
5637 * where the eeprom may be wrong or the board simply won't support
5638 * wake on lan on a particular port
5639 */
5640 if (!(adapter->flags & FLAG_HAS_WOL))
5641 adapter->eeprom_wol = 0;
5642
5643 /* initialize the wol settings based on the eeprom settings */
5644 adapter->wol = adapter->eeprom_wol;
\"Rafael J. Wysocki\6ff68022008-11-12 09:52:32 +00005645 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005646
Bruce Allan84527592008-11-21 17:00:22 -08005647 /* save off EEPROM version number */
5648 e1000_read_nvm(&adapter->hw, 5, 1, &adapter->eeprom_vers);
5649
Auke Kokbc7f75f2007-09-17 12:30:59 -07005650 /* reset the hardware with the new settings */
5651 e1000e_reset(adapter);
5652
Bruce Allanad680762008-03-28 09:15:03 -07005653 /*
5654 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07005655 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07005656 * under the control of the driver.
5657 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005658 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005659 e1000_get_hw_control(adapter);
5660
Auke Kokbc7f75f2007-09-17 12:30:59 -07005661 strcpy(netdev->name, "eth%d");
5662 err = register_netdev(netdev);
5663 if (err)
5664 goto err_register;
5665
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00005666 /* carrier off reporting is important to ethtool even BEFORE open */
5667 netif_carrier_off(netdev);
5668
Auke Kokbc7f75f2007-09-17 12:30:59 -07005669 e1000_print_device_info(adapter);
5670
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005671 if (pci_dev_run_wake(pdev)) {
5672 pm_runtime_set_active(&pdev->dev);
5673 pm_runtime_enable(&pdev->dev);
5674 }
5675 pm_schedule_suspend(&pdev->dev, MSEC_PER_SEC);
5676
Auke Kokbc7f75f2007-09-17 12:30:59 -07005677 return 0;
5678
5679err_register:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005680 if (!(adapter->flags & FLAG_HAS_AMT))
5681 e1000_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005682err_eeprom:
5683 if (!e1000_check_reset_block(&adapter->hw))
5684 e1000_phy_hw_reset(&adapter->hw);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005685err_hw_init:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005686
Auke Kokbc7f75f2007-09-17 12:30:59 -07005687 kfree(adapter->tx_ring);
5688 kfree(adapter->rx_ring);
5689err_sw_init:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005690 if (adapter->hw.flash_address)
5691 iounmap(adapter->hw.flash_address);
Jeff Kirshere82f54b2008-11-14 06:45:07 +00005692 e1000e_reset_interrupt_capability(adapter);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005693err_flashmap:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005694 iounmap(adapter->hw.hw_addr);
5695err_ioremap:
5696 free_netdev(netdev);
5697err_alloc_etherdev:
Bruce Allanf0f422e2008-08-04 17:21:53 -07005698 pci_release_selected_regions(pdev,
5699 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005700err_pci_reg:
5701err_dma:
5702 pci_disable_device(pdev);
5703 return err;
5704}
5705
5706/**
5707 * e1000_remove - Device Removal Routine
5708 * @pdev: PCI device information struct
5709 *
5710 * e1000_remove is called by the PCI subsystem to alert the driver
5711 * that it should release a PCI device. The could be caused by a
5712 * Hot-Plug event, or because the driver is going to be removed from
5713 * memory.
5714 **/
5715static void __devexit e1000_remove(struct pci_dev *pdev)
5716{
5717 struct net_device *netdev = pci_get_drvdata(pdev);
5718 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005719 bool down = test_bit(__E1000_DOWN, &adapter->state);
5720
5721 pm_runtime_get_sync(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005722
Bruce Allanad680762008-03-28 09:15:03 -07005723 /*
5724 * flush_scheduled work may reschedule our watchdog task, so
5725 * explicitly disable watchdog tasks from being rescheduled
5726 */
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005727 if (!down)
5728 set_bit(__E1000_DOWN, &adapter->state);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005729 del_timer_sync(&adapter->watchdog_timer);
5730 del_timer_sync(&adapter->phy_info_timer);
5731
Bruce Allan41cec6f2009-11-20 23:28:56 +00005732 cancel_work_sync(&adapter->reset_task);
5733 cancel_work_sync(&adapter->watchdog_task);
5734 cancel_work_sync(&adapter->downshift_task);
5735 cancel_work_sync(&adapter->update_phy_task);
5736 cancel_work_sync(&adapter->print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005737 flush_scheduled_work();
5738
Bruce Allan17f208d2009-12-01 15:47:22 +00005739 if (!(netdev->flags & IFF_UP))
5740 e1000_power_down_phy(adapter);
5741
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005742 /* Don't lie to e1000_close() down the road. */
5743 if (!down)
5744 clear_bit(__E1000_DOWN, &adapter->state);
Bruce Allan17f208d2009-12-01 15:47:22 +00005745 unregister_netdev(netdev);
5746
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005747 if (pci_dev_run_wake(pdev)) {
5748 pm_runtime_disable(&pdev->dev);
5749 pm_runtime_set_suspended(&pdev->dev);
5750 }
5751 pm_runtime_put_noidle(&pdev->dev);
5752
Bruce Allanad680762008-03-28 09:15:03 -07005753 /*
5754 * Release control of h/w to f/w. If f/w is AMT enabled, this
5755 * would have already happened in close and is redundant.
5756 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005757 e1000_release_hw_control(adapter);
5758
Bruce Allan4662e822008-08-26 18:37:06 -07005759 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005760 kfree(adapter->tx_ring);
5761 kfree(adapter->rx_ring);
5762
5763 iounmap(adapter->hw.hw_addr);
5764 if (adapter->hw.flash_address)
5765 iounmap(adapter->hw.flash_address);
Bruce Allanf0f422e2008-08-04 17:21:53 -07005766 pci_release_selected_regions(pdev,
5767 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005768
5769 free_netdev(netdev);
5770
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005771 /* AER disable */
Frans Pop19d5afd2009-10-02 10:04:12 -07005772 pci_disable_pcie_error_reporting(pdev);
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005773
Auke Kokbc7f75f2007-09-17 12:30:59 -07005774 pci_disable_device(pdev);
5775}
5776
5777/* PCI Error Recovery (ERS) */
5778static struct pci_error_handlers e1000_err_handler = {
5779 .error_detected = e1000_io_error_detected,
5780 .slot_reset = e1000_io_slot_reset,
5781 .resume = e1000_io_resume,
5782};
5783
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00005784static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005785 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_COPPER), board_82571 },
5786 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_FIBER), board_82571 },
5787 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER), board_82571 },
5788 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER_LP), board_82571 },
5789 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_FIBER), board_82571 },
5790 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES), board_82571 },
Auke Kok040babf2007-10-31 15:22:05 -07005791 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_DUAL), board_82571 },
5792 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_QUAD), board_82571 },
5793 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571PT_QUAD_COPPER), board_82571 },
Bruce Allanad680762008-03-28 09:15:03 -07005794
Auke Kokbc7f75f2007-09-17 12:30:59 -07005795 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI), board_82572 },
5796 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_COPPER), board_82572 },
5797 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_FIBER), board_82572 },
5798 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_SERDES), board_82572 },
Bruce Allanad680762008-03-28 09:15:03 -07005799
Auke Kokbc7f75f2007-09-17 12:30:59 -07005800 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E), board_82573 },
5801 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E_IAMT), board_82573 },
5802 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573L), board_82573 },
Bruce Allanad680762008-03-28 09:15:03 -07005803
Bruce Allan4662e822008-08-26 18:37:06 -07005804 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574L), board_82574 },
Bruce Allanbef28b12009-03-24 23:28:02 -07005805 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574LA), board_82574 },
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00005806 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82583V), board_82583 },
Bruce Allan4662e822008-08-26 18:37:06 -07005807
Auke Kokbc7f75f2007-09-17 12:30:59 -07005808 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_DPT),
5809 board_80003es2lan },
5810 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_SPT),
5811 board_80003es2lan },
5812 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_DPT),
5813 board_80003es2lan },
5814 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_SPT),
5815 board_80003es2lan },
Bruce Allanad680762008-03-28 09:15:03 -07005816
Auke Kokbc7f75f2007-09-17 12:30:59 -07005817 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE), board_ich8lan },
5818 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_G), board_ich8lan },
5819 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_GT), board_ich8lan },
5820 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_AMT), board_ich8lan },
5821 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_C), board_ich8lan },
5822 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M), board_ich8lan },
5823 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M_AMT), board_ich8lan },
Bruce Allan9e135a22009-12-01 15:50:31 +00005824 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_82567V_3), board_ich8lan },
Bruce Allanad680762008-03-28 09:15:03 -07005825
Auke Kokbc7f75f2007-09-17 12:30:59 -07005826 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE), board_ich9lan },
5827 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_G), board_ich9lan },
5828 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_GT), board_ich9lan },
5829 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_AMT), board_ich9lan },
5830 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_C), board_ich9lan },
Bruce Allan2f15f9d2008-08-26 18:36:36 -07005831 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_BM), board_ich9lan },
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005832 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M), board_ich9lan },
5833 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_AMT), board_ich9lan },
5834 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_V), board_ich9lan },
5835
5836 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LM), board_ich9lan },
5837 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LF), board_ich9lan },
5838 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_V), board_ich9lan },
Auke Kokbc7f75f2007-09-17 12:30:59 -07005839
Bruce Allanf4187b52008-08-26 18:36:50 -07005840 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LM), board_ich10lan },
5841 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LF), board_ich10lan },
5842
Bruce Allana4f58f52009-06-02 11:29:18 +00005843 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LM), board_pchlan },
5844 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LC), board_pchlan },
5845 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DM), board_pchlan },
5846 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DC), board_pchlan },
5847
Auke Kokbc7f75f2007-09-17 12:30:59 -07005848 { } /* terminate list */
5849};
5850MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
5851
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005852#ifdef CONFIG_PM_OPS
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005853static const struct dev_pm_ops e1000_pm_ops = {
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005854 SET_SYSTEM_SLEEP_PM_OPS(e1000_suspend, e1000_resume)
5855 SET_RUNTIME_PM_OPS(e1000_runtime_suspend,
5856 e1000_runtime_resume, e1000_idle)
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005857};
David S. Millere50208a2010-03-16 23:36:24 -07005858#endif
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005859
Auke Kokbc7f75f2007-09-17 12:30:59 -07005860/* PCI Device API Driver */
5861static struct pci_driver e1000_driver = {
5862 .name = e1000e_driver_name,
5863 .id_table = e1000_pci_tbl,
5864 .probe = e1000_probe,
5865 .remove = __devexit_p(e1000_remove),
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005866#ifdef CONFIG_PM_OPS
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005867 .driver.pm = &e1000_pm_ops,
Auke Kokbc7f75f2007-09-17 12:30:59 -07005868#endif
5869 .shutdown = e1000_shutdown,
5870 .err_handler = &e1000_err_handler
5871};
5872
5873/**
5874 * e1000_init_module - Driver Registration Routine
5875 *
5876 * e1000_init_module is the first routine called when the driver is
5877 * loaded. All it does is register with the PCI subsystem.
5878 **/
5879static int __init e1000_init_module(void)
5880{
5881 int ret;
Bruce Allan8544b9f2010-03-24 12:55:30 +00005882 pr_info("Intel(R) PRO/1000 Network Driver - %s\n",
5883 e1000e_driver_version);
5884 pr_info("Copyright (c) 1999 - 2009 Intel Corporation.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005885 ret = pci_register_driver(&e1000_driver);
Bruce Allan53ec5492009-11-20 23:27:40 +00005886
Auke Kokbc7f75f2007-09-17 12:30:59 -07005887 return ret;
5888}
5889module_init(e1000_init_module);
5890
5891/**
5892 * e1000_exit_module - Driver Exit Cleanup Routine
5893 *
5894 * e1000_exit_module is called just before the driver is removed
5895 * from memory.
5896 **/
5897static void __exit e1000_exit_module(void)
5898{
5899 pci_unregister_driver(&e1000_driver);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005900}
5901module_exit(e1000_exit_module);
5902
5903
5904MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
5905MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
5906MODULE_LICENSE("GPL");
5907MODULE_VERSION(DRV_VERSION);
5908
5909/* e1000_main.c */