blob: ab79bec082f0ec537c0fec1a4868429104f4a1be [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
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +000055#define DRV_VERSION "1.0.2-k4"
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
Tom Herbert50849d72010-05-05 14:02:49 +0000551 if (unlikely(!(i & (E1000_RX_BUFFER_WRITE - 1)))) {
552 /*
553 * Force memory writes to complete before letting h/w
554 * know there are new descriptors to fetch. (Only
555 * applicable for weak-ordered memory model archs,
556 * such as IA-64).
557 */
558 wmb();
559 writel(i, adapter->hw.hw_addr + rx_ring->tail);
560 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700561 i++;
562 if (i == rx_ring->count)
563 i = 0;
564 buffer_info = &rx_ring->buffer_info[i];
565 }
566
Tom Herbert50849d72010-05-05 14:02:49 +0000567 rx_ring->next_to_use = i;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700568}
569
570/**
571 * e1000_alloc_rx_buffers_ps - Replace used receive buffers; packet split
572 * @adapter: address of board private structure
573 **/
574static void e1000_alloc_rx_buffers_ps(struct e1000_adapter *adapter,
575 int cleaned_count)
576{
577 struct net_device *netdev = adapter->netdev;
578 struct pci_dev *pdev = adapter->pdev;
579 union e1000_rx_desc_packet_split *rx_desc;
580 struct e1000_ring *rx_ring = adapter->rx_ring;
581 struct e1000_buffer *buffer_info;
582 struct e1000_ps_page *ps_page;
583 struct sk_buff *skb;
584 unsigned int i, j;
585
586 i = rx_ring->next_to_use;
587 buffer_info = &rx_ring->buffer_info[i];
588
589 while (cleaned_count--) {
590 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
591
592 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -0700593 ps_page = &buffer_info->ps_pages[j];
594 if (j >= adapter->rx_ps_pages) {
595 /* all unused desc entries get hw null ptr */
Al Viroa39fe742007-12-11 19:50:34 +0000596 rx_desc->read.buffer_addr[j+1] = ~cpu_to_le64(0);
Auke Kok47f44e42007-10-25 13:57:44 -0700597 continue;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700598 }
Auke Kok47f44e42007-10-25 13:57:44 -0700599 if (!ps_page->page) {
600 ps_page->page = alloc_page(GFP_ATOMIC);
601 if (!ps_page->page) {
602 adapter->alloc_rx_buff_failed++;
603 goto no_buffers;
604 }
Nick Nunley0be3f552010-04-27 13:09:05 +0000605 ps_page->dma = dma_map_page(&pdev->dev,
606 ps_page->page,
607 0, PAGE_SIZE,
608 DMA_FROM_DEVICE);
609 if (dma_mapping_error(&pdev->dev,
610 ps_page->dma)) {
Auke Kok47f44e42007-10-25 13:57:44 -0700611 dev_err(&adapter->pdev->dev,
612 "RX DMA page map failed\n");
613 adapter->rx_dma_failed++;
614 goto no_buffers;
615 }
616 }
617 /*
618 * Refresh the desc even if buffer_addrs
619 * didn't change because each write-back
620 * erases this info.
621 */
622 rx_desc->read.buffer_addr[j+1] =
623 cpu_to_le64(ps_page->dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700624 }
625
Eric Dumazet89d71a62009-10-13 05:34:20 +0000626 skb = netdev_alloc_skb_ip_align(netdev,
627 adapter->rx_ps_bsize0);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700628
629 if (!skb) {
630 adapter->alloc_rx_buff_failed++;
631 break;
632 }
633
Auke Kokbc7f75f2007-09-17 12:30:59 -0700634 buffer_info->skb = skb;
Nick Nunley0be3f552010-04-27 13:09:05 +0000635 buffer_info->dma = dma_map_single(&pdev->dev, skb->data,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700636 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +0000637 DMA_FROM_DEVICE);
638 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700639 dev_err(&pdev->dev, "RX DMA map failed\n");
640 adapter->rx_dma_failed++;
641 /* cleanup skb */
642 dev_kfree_skb_any(skb);
643 buffer_info->skb = NULL;
644 break;
645 }
646
647 rx_desc->read.buffer_addr[0] = cpu_to_le64(buffer_info->dma);
648
Tom Herbert50849d72010-05-05 14:02:49 +0000649 if (unlikely(!(i & (E1000_RX_BUFFER_WRITE - 1)))) {
650 /*
651 * Force memory writes to complete before letting h/w
652 * know there are new descriptors to fetch. (Only
653 * applicable for weak-ordered memory model archs,
654 * such as IA-64).
655 */
656 wmb();
657 writel(i<<1, adapter->hw.hw_addr + rx_ring->tail);
658 }
659
Auke Kokbc7f75f2007-09-17 12:30:59 -0700660 i++;
661 if (i == rx_ring->count)
662 i = 0;
663 buffer_info = &rx_ring->buffer_info[i];
664 }
665
666no_buffers:
Tom Herbert50849d72010-05-05 14:02:49 +0000667 rx_ring->next_to_use = i;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700668}
669
670/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700671 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
672 * @adapter: address of board private structure
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700673 * @cleaned_count: number of buffers to allocate this pass
674 **/
675
676static void e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
677 int cleaned_count)
678{
679 struct net_device *netdev = adapter->netdev;
680 struct pci_dev *pdev = adapter->pdev;
681 struct e1000_rx_desc *rx_desc;
682 struct e1000_ring *rx_ring = adapter->rx_ring;
683 struct e1000_buffer *buffer_info;
684 struct sk_buff *skb;
685 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000686 unsigned int bufsz = 256 - 16 /* for skb_reserve */;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700687
688 i = rx_ring->next_to_use;
689 buffer_info = &rx_ring->buffer_info[i];
690
691 while (cleaned_count--) {
692 skb = buffer_info->skb;
693 if (skb) {
694 skb_trim(skb, 0);
695 goto check_page;
696 }
697
Eric Dumazet89d71a62009-10-13 05:34:20 +0000698 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700699 if (unlikely(!skb)) {
700 /* Better luck next round */
701 adapter->alloc_rx_buff_failed++;
702 break;
703 }
704
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700705 buffer_info->skb = skb;
706check_page:
707 /* allocate a new page if necessary */
708 if (!buffer_info->page) {
709 buffer_info->page = alloc_page(GFP_ATOMIC);
710 if (unlikely(!buffer_info->page)) {
711 adapter->alloc_rx_buff_failed++;
712 break;
713 }
714 }
715
716 if (!buffer_info->dma)
Nick Nunley0be3f552010-04-27 13:09:05 +0000717 buffer_info->dma = dma_map_page(&pdev->dev,
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700718 buffer_info->page, 0,
719 PAGE_SIZE,
Nick Nunley0be3f552010-04-27 13:09:05 +0000720 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700721
722 rx_desc = E1000_RX_DESC(*rx_ring, i);
723 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
724
725 if (unlikely(++i == rx_ring->count))
726 i = 0;
727 buffer_info = &rx_ring->buffer_info[i];
728 }
729
730 if (likely(rx_ring->next_to_use != i)) {
731 rx_ring->next_to_use = i;
732 if (unlikely(i-- == 0))
733 i = (rx_ring->count - 1);
734
735 /* Force memory writes to complete before letting h/w
736 * know there are new descriptors to fetch. (Only
737 * applicable for weak-ordered memory model archs,
738 * such as IA-64). */
739 wmb();
740 writel(i, adapter->hw.hw_addr + rx_ring->tail);
741 }
742}
743
744/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700745 * e1000_clean_rx_irq - Send received data up the network stack; legacy
746 * @adapter: board private structure
747 *
748 * the return value indicates whether actual cleaning was done, there
749 * is no guarantee that everything was cleaned
750 **/
751static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
752 int *work_done, int work_to_do)
753{
754 struct net_device *netdev = adapter->netdev;
755 struct pci_dev *pdev = adapter->pdev;
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000756 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700757 struct e1000_ring *rx_ring = adapter->rx_ring;
758 struct e1000_rx_desc *rx_desc, *next_rxd;
759 struct e1000_buffer *buffer_info, *next_buffer;
760 u32 length;
761 unsigned int i;
762 int cleaned_count = 0;
763 bool cleaned = 0;
764 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
765
766 i = rx_ring->next_to_clean;
767 rx_desc = E1000_RX_DESC(*rx_ring, i);
768 buffer_info = &rx_ring->buffer_info[i];
769
770 while (rx_desc->status & E1000_RXD_STAT_DD) {
771 struct sk_buff *skb;
772 u8 status;
773
774 if (*work_done >= work_to_do)
775 break;
776 (*work_done)++;
777
778 status = rx_desc->status;
779 skb = buffer_info->skb;
780 buffer_info->skb = NULL;
781
782 prefetch(skb->data - NET_IP_ALIGN);
783
784 i++;
785 if (i == rx_ring->count)
786 i = 0;
787 next_rxd = E1000_RX_DESC(*rx_ring, i);
788 prefetch(next_rxd);
789
790 next_buffer = &rx_ring->buffer_info[i];
791
792 cleaned = 1;
793 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +0000794 dma_unmap_single(&pdev->dev,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700795 buffer_info->dma,
796 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +0000797 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700798 buffer_info->dma = 0;
799
800 length = le16_to_cpu(rx_desc->length);
801
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000802 /*
803 * !EOP means multiple descriptors were used to store a single
804 * packet, if that's the case we need to toss it. In fact, we
805 * need to toss every packet with the EOP bit clear and the
806 * next frame that _does_ have the EOP bit set, as it is by
807 * definition only a frame fragment
808 */
809 if (unlikely(!(status & E1000_RXD_STAT_EOP)))
810 adapter->flags2 |= FLAG2_IS_DISCARDING;
811
812 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700813 /* All receives must fit into a single buffer */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000814 e_dbg("Receive packet consumed multiple buffers\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700815 /* recycle */
816 buffer_info->skb = skb;
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000817 if (status & E1000_RXD_STAT_EOP)
818 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700819 goto next_desc;
820 }
821
822 if (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK) {
823 /* recycle */
824 buffer_info->skb = skb;
825 goto next_desc;
826 }
827
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000828 /* adjust length to remove Ethernet CRC */
829 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
830 length -= 4;
831
Auke Kokbc7f75f2007-09-17 12:30:59 -0700832 total_rx_bytes += length;
833 total_rx_packets++;
834
Bruce Allanad680762008-03-28 09:15:03 -0700835 /*
836 * code added for copybreak, this should improve
Auke Kokbc7f75f2007-09-17 12:30:59 -0700837 * performance for small packets with large amounts
Bruce Allanad680762008-03-28 09:15:03 -0700838 * of reassembly being done in the stack
839 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700840 if (length < copybreak) {
841 struct sk_buff *new_skb =
Eric Dumazet89d71a62009-10-13 05:34:20 +0000842 netdev_alloc_skb_ip_align(netdev, length);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700843 if (new_skb) {
Bruce Allan808ff672008-08-08 18:35:56 -0700844 skb_copy_to_linear_data_offset(new_skb,
845 -NET_IP_ALIGN,
846 (skb->data -
847 NET_IP_ALIGN),
848 (length +
849 NET_IP_ALIGN));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700850 /* save the skb in buffer_info as good */
851 buffer_info->skb = skb;
852 skb = new_skb;
853 }
854 /* else just continue with the old one */
855 }
856 /* end copybreak code */
857 skb_put(skb, length);
858
859 /* Receive Checksum Offload */
860 e1000_rx_checksum(adapter,
861 (u32)(status) |
862 ((u32)(rx_desc->errors) << 24),
863 le16_to_cpu(rx_desc->csum), skb);
864
865 e1000_receive_skb(adapter, netdev, skb,status,rx_desc->special);
866
867next_desc:
868 rx_desc->status = 0;
869
870 /* return some buffers to hardware, one at a time is too slow */
871 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
872 adapter->alloc_rx_buf(adapter, cleaned_count);
873 cleaned_count = 0;
874 }
875
876 /* use prefetched values */
877 rx_desc = next_rxd;
878 buffer_info = next_buffer;
879 }
880 rx_ring->next_to_clean = i;
881
882 cleaned_count = e1000_desc_unused(rx_ring);
883 if (cleaned_count)
884 adapter->alloc_rx_buf(adapter, cleaned_count);
885
Auke Kokbc7f75f2007-09-17 12:30:59 -0700886 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -0700887 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +0000888 netdev->stats.rx_bytes += total_rx_bytes;
889 netdev->stats.rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700890 return cleaned;
891}
892
Auke Kokbc7f75f2007-09-17 12:30:59 -0700893static void e1000_put_txbuf(struct e1000_adapter *adapter,
894 struct e1000_buffer *buffer_info)
895{
Alexander Duyck03b13202009-12-02 16:45:31 +0000896 if (buffer_info->dma) {
897 if (buffer_info->mapped_as_page)
Nick Nunley0be3f552010-04-27 13:09:05 +0000898 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
899 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +0000900 else
Nick Nunley0be3f552010-04-27 13:09:05 +0000901 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
902 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +0000903 buffer_info->dma = 0;
904 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700905 if (buffer_info->skb) {
906 dev_kfree_skb_any(buffer_info->skb);
907 buffer_info->skb = NULL;
908 }
Alexander Duyck1b7719c2009-03-19 01:12:50 +0000909 buffer_info->time_stamp = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700910}
911
Bruce Allan41cec6f2009-11-20 23:28:56 +0000912static void e1000_print_hw_hang(struct work_struct *work)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700913{
Bruce Allan41cec6f2009-11-20 23:28:56 +0000914 struct e1000_adapter *adapter = container_of(work,
915 struct e1000_adapter,
916 print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700917 struct e1000_ring *tx_ring = adapter->tx_ring;
918 unsigned int i = tx_ring->next_to_clean;
919 unsigned int eop = tx_ring->buffer_info[i].next_to_watch;
920 struct e1000_tx_desc *eop_desc = E1000_TX_DESC(*tx_ring, eop);
Bruce Allan41cec6f2009-11-20 23:28:56 +0000921 struct e1000_hw *hw = &adapter->hw;
922 u16 phy_status, phy_1000t_status, phy_ext_status;
923 u16 pci_status;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700924
Bruce Allan41cec6f2009-11-20 23:28:56 +0000925 e1e_rphy(hw, PHY_STATUS, &phy_status);
926 e1e_rphy(hw, PHY_1000T_STATUS, &phy_1000t_status);
927 e1e_rphy(hw, PHY_EXT_STATUS, &phy_ext_status);
928
929 pci_read_config_word(adapter->pdev, PCI_STATUS, &pci_status);
930
931 /* detected Hardware unit hang */
932 e_err("Detected Hardware Unit Hang:\n"
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700933 " TDH <%x>\n"
934 " TDT <%x>\n"
935 " next_to_use <%x>\n"
936 " next_to_clean <%x>\n"
937 "buffer_info[next_to_clean]:\n"
938 " time_stamp <%lx>\n"
939 " next_to_watch <%x>\n"
940 " jiffies <%lx>\n"
Bruce Allan41cec6f2009-11-20 23:28:56 +0000941 " next_to_watch.status <%x>\n"
942 "MAC Status <%x>\n"
943 "PHY Status <%x>\n"
944 "PHY 1000BASE-T Status <%x>\n"
945 "PHY Extended Status <%x>\n"
946 "PCI Status <%x>\n",
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700947 readl(adapter->hw.hw_addr + tx_ring->head),
948 readl(adapter->hw.hw_addr + tx_ring->tail),
949 tx_ring->next_to_use,
950 tx_ring->next_to_clean,
951 tx_ring->buffer_info[eop].time_stamp,
952 eop,
953 jiffies,
Bruce Allan41cec6f2009-11-20 23:28:56 +0000954 eop_desc->upper.fields.status,
955 er32(STATUS),
956 phy_status,
957 phy_1000t_status,
958 phy_ext_status,
959 pci_status);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700960}
961
962/**
963 * e1000_clean_tx_irq - Reclaim resources after transmit completes
964 * @adapter: board private structure
965 *
966 * the return value indicates whether actual cleaning was done, there
967 * is no guarantee that everything was cleaned
968 **/
969static bool e1000_clean_tx_irq(struct e1000_adapter *adapter)
970{
971 struct net_device *netdev = adapter->netdev;
972 struct e1000_hw *hw = &adapter->hw;
973 struct e1000_ring *tx_ring = adapter->tx_ring;
974 struct e1000_tx_desc *tx_desc, *eop_desc;
975 struct e1000_buffer *buffer_info;
976 unsigned int i, eop;
977 unsigned int count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700978 unsigned int total_tx_bytes = 0, total_tx_packets = 0;
979
980 i = tx_ring->next_to_clean;
981 eop = tx_ring->buffer_info[i].next_to_watch;
982 eop_desc = E1000_TX_DESC(*tx_ring, eop);
983
Alexander Duyck12d04a32009-03-25 22:05:03 +0000984 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
985 (count < tx_ring->count)) {
Jesse Brandeburga86043c2009-04-16 16:59:28 +0000986 bool cleaned = false;
987 for (; !cleaned; count++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700988 tx_desc = E1000_TX_DESC(*tx_ring, i);
989 buffer_info = &tx_ring->buffer_info[i];
990 cleaned = (i == eop);
991
992 if (cleaned) {
Tom Herbert9ed318d2010-05-05 14:02:27 +0000993 total_tx_packets += buffer_info->segs;
994 total_tx_bytes += buffer_info->bytecount;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700995 }
996
997 e1000_put_txbuf(adapter, buffer_info);
998 tx_desc->upper.data = 0;
999
1000 i++;
1001 if (i == tx_ring->count)
1002 i = 0;
1003 }
1004
Terry Loftindac87612010-04-09 10:29:49 +00001005 if (i == tx_ring->next_to_use)
1006 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001007 eop = tx_ring->buffer_info[i].next_to_watch;
1008 eop_desc = E1000_TX_DESC(*tx_ring, eop);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001009 }
1010
1011 tx_ring->next_to_clean = i;
1012
1013#define TX_WAKE_THRESHOLD 32
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001014 if (count && netif_carrier_ok(netdev) &&
1015 e1000_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001016 /* Make sure that anybody stopping the queue after this
1017 * sees the new next_to_clean.
1018 */
1019 smp_mb();
1020
1021 if (netif_queue_stopped(netdev) &&
1022 !(test_bit(__E1000_DOWN, &adapter->state))) {
1023 netif_wake_queue(netdev);
1024 ++adapter->restart_queue;
1025 }
1026 }
1027
1028 if (adapter->detect_tx_hung) {
Bruce Allan41cec6f2009-11-20 23:28:56 +00001029 /*
1030 * Detect a transmit hang in hardware, this serializes the
1031 * check with the clearing of time_stamp and movement of i
1032 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001033 adapter->detect_tx_hung = 0;
Alexander Duyck12d04a32009-03-25 22:05:03 +00001034 if (tx_ring->buffer_info[i].time_stamp &&
1035 time_after(jiffies, tx_ring->buffer_info[i].time_stamp
Joe Perches8e95a202009-12-03 07:58:21 +00001036 + (adapter->tx_timeout_factor * HZ)) &&
1037 !(er32(STATUS) & E1000_STATUS_TXOFF)) {
Bruce Allan41cec6f2009-11-20 23:28:56 +00001038 schedule_work(&adapter->print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001039 netif_stop_queue(netdev);
1040 }
1041 }
1042 adapter->total_tx_bytes += total_tx_bytes;
1043 adapter->total_tx_packets += total_tx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +00001044 netdev->stats.tx_bytes += total_tx_bytes;
1045 netdev->stats.tx_packets += total_tx_packets;
Alexander Duyck12d04a32009-03-25 22:05:03 +00001046 return (count < tx_ring->count);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001047}
1048
1049/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001050 * e1000_clean_rx_irq_ps - Send received data up the network stack; packet split
1051 * @adapter: board private structure
1052 *
1053 * the return value indicates whether actual cleaning was done, there
1054 * is no guarantee that everything was cleaned
1055 **/
1056static bool e1000_clean_rx_irq_ps(struct e1000_adapter *adapter,
1057 int *work_done, int work_to_do)
1058{
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001059 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001060 union e1000_rx_desc_packet_split *rx_desc, *next_rxd;
1061 struct net_device *netdev = adapter->netdev;
1062 struct pci_dev *pdev = adapter->pdev;
1063 struct e1000_ring *rx_ring = adapter->rx_ring;
1064 struct e1000_buffer *buffer_info, *next_buffer;
1065 struct e1000_ps_page *ps_page;
1066 struct sk_buff *skb;
1067 unsigned int i, j;
1068 u32 length, staterr;
1069 int cleaned_count = 0;
1070 bool cleaned = 0;
1071 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
1072
1073 i = rx_ring->next_to_clean;
1074 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
1075 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1076 buffer_info = &rx_ring->buffer_info[i];
1077
1078 while (staterr & E1000_RXD_STAT_DD) {
1079 if (*work_done >= work_to_do)
1080 break;
1081 (*work_done)++;
1082 skb = buffer_info->skb;
1083
1084 /* in the packet split case this is header only */
1085 prefetch(skb->data - NET_IP_ALIGN);
1086
1087 i++;
1088 if (i == rx_ring->count)
1089 i = 0;
1090 next_rxd = E1000_RX_DESC_PS(*rx_ring, i);
1091 prefetch(next_rxd);
1092
1093 next_buffer = &rx_ring->buffer_info[i];
1094
1095 cleaned = 1;
1096 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001097 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001098 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +00001099 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001100 buffer_info->dma = 0;
1101
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001102 /* see !EOP comment in other rx routine */
1103 if (!(staterr & E1000_RXD_STAT_EOP))
1104 adapter->flags2 |= FLAG2_IS_DISCARDING;
1105
1106 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001107 e_dbg("Packet Split buffers didn't pick up the full "
1108 "packet\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001109 dev_kfree_skb_irq(skb);
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001110 if (staterr & E1000_RXD_STAT_EOP)
1111 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001112 goto next_desc;
1113 }
1114
1115 if (staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) {
1116 dev_kfree_skb_irq(skb);
1117 goto next_desc;
1118 }
1119
1120 length = le16_to_cpu(rx_desc->wb.middle.length0);
1121
1122 if (!length) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001123 e_dbg("Last part of the packet spanning multiple "
1124 "descriptors\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001125 dev_kfree_skb_irq(skb);
1126 goto next_desc;
1127 }
1128
1129 /* Good Receive */
1130 skb_put(skb, length);
1131
1132 {
Bruce Allanad680762008-03-28 09:15:03 -07001133 /*
1134 * this looks ugly, but it seems compiler issues make it
1135 * more efficient than reusing j
1136 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001137 int l1 = le16_to_cpu(rx_desc->wb.upper.length[0]);
1138
Bruce Allanad680762008-03-28 09:15:03 -07001139 /*
1140 * page alloc/put takes too long and effects small packet
1141 * throughput, so unsplit small packets and save the alloc/put
1142 * only valid in softirq (napi) context to call kmap_*
1143 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001144 if (l1 && (l1 <= copybreak) &&
1145 ((length + l1) <= adapter->rx_ps_bsize0)) {
1146 u8 *vaddr;
1147
Auke Kok47f44e42007-10-25 13:57:44 -07001148 ps_page = &buffer_info->ps_pages[0];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001149
Bruce Allanad680762008-03-28 09:15:03 -07001150 /*
1151 * there is no documentation about how to call
Auke Kokbc7f75f2007-09-17 12:30:59 -07001152 * kmap_atomic, so we can't hold the mapping
Bruce Allanad680762008-03-28 09:15:03 -07001153 * very long
1154 */
Nick Nunley0be3f552010-04-27 13:09:05 +00001155 dma_sync_single_for_cpu(&pdev->dev, ps_page->dma,
1156 PAGE_SIZE, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001157 vaddr = kmap_atomic(ps_page->page, KM_SKB_DATA_SOFTIRQ);
1158 memcpy(skb_tail_pointer(skb), vaddr, l1);
1159 kunmap_atomic(vaddr, KM_SKB_DATA_SOFTIRQ);
Nick Nunley0be3f552010-04-27 13:09:05 +00001160 dma_sync_single_for_device(&pdev->dev, ps_page->dma,
1161 PAGE_SIZE, DMA_FROM_DEVICE);
Auke Kok140a7482007-10-25 13:57:58 -07001162
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001163 /* remove the CRC */
1164 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
1165 l1 -= 4;
1166
Auke Kokbc7f75f2007-09-17 12:30:59 -07001167 skb_put(skb, l1);
1168 goto copydone;
1169 } /* if */
1170 }
1171
1172 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
1173 length = le16_to_cpu(rx_desc->wb.upper.length[j]);
1174 if (!length)
1175 break;
1176
Auke Kok47f44e42007-10-25 13:57:44 -07001177 ps_page = &buffer_info->ps_pages[j];
Nick Nunley0be3f552010-04-27 13:09:05 +00001178 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1179 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001180 ps_page->dma = 0;
1181 skb_fill_page_desc(skb, j, ps_page->page, 0, length);
1182 ps_page->page = NULL;
1183 skb->len += length;
1184 skb->data_len += length;
1185 skb->truesize += length;
1186 }
1187
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001188 /* strip the ethernet crc, problem is we're using pages now so
1189 * this whole operation can get a little cpu intensive
1190 */
1191 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
1192 pskb_trim(skb, skb->len - 4);
1193
Auke Kokbc7f75f2007-09-17 12:30:59 -07001194copydone:
1195 total_rx_bytes += skb->len;
1196 total_rx_packets++;
1197
1198 e1000_rx_checksum(adapter, staterr, le16_to_cpu(
1199 rx_desc->wb.lower.hi_dword.csum_ip.csum), skb);
1200
1201 if (rx_desc->wb.upper.header_status &
1202 cpu_to_le16(E1000_RXDPS_HDRSTAT_HDRSP))
1203 adapter->rx_hdr_split++;
1204
1205 e1000_receive_skb(adapter, netdev, skb,
1206 staterr, rx_desc->wb.middle.vlan);
1207
1208next_desc:
1209 rx_desc->wb.middle.status_error &= cpu_to_le32(~0xFF);
1210 buffer_info->skb = NULL;
1211
1212 /* return some buffers to hardware, one at a time is too slow */
1213 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
1214 adapter->alloc_rx_buf(adapter, cleaned_count);
1215 cleaned_count = 0;
1216 }
1217
1218 /* use prefetched values */
1219 rx_desc = next_rxd;
1220 buffer_info = next_buffer;
1221
1222 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1223 }
1224 rx_ring->next_to_clean = i;
1225
1226 cleaned_count = e1000_desc_unused(rx_ring);
1227 if (cleaned_count)
1228 adapter->alloc_rx_buf(adapter, cleaned_count);
1229
Auke Kokbc7f75f2007-09-17 12:30:59 -07001230 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -07001231 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +00001232 netdev->stats.rx_bytes += total_rx_bytes;
1233 netdev->stats.rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001234 return cleaned;
1235}
1236
1237/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001238 * e1000_consume_page - helper function
1239 **/
1240static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
1241 u16 length)
1242{
1243 bi->page = NULL;
1244 skb->len += length;
1245 skb->data_len += length;
1246 skb->truesize += length;
1247}
1248
1249/**
1250 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
1251 * @adapter: board private structure
1252 *
1253 * the return value indicates whether actual cleaning was done, there
1254 * is no guarantee that everything was cleaned
1255 **/
1256
1257static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
1258 int *work_done, int work_to_do)
1259{
1260 struct net_device *netdev = adapter->netdev;
1261 struct pci_dev *pdev = adapter->pdev;
1262 struct e1000_ring *rx_ring = adapter->rx_ring;
1263 struct e1000_rx_desc *rx_desc, *next_rxd;
1264 struct e1000_buffer *buffer_info, *next_buffer;
1265 u32 length;
1266 unsigned int i;
1267 int cleaned_count = 0;
1268 bool cleaned = false;
1269 unsigned int total_rx_bytes=0, total_rx_packets=0;
1270
1271 i = rx_ring->next_to_clean;
1272 rx_desc = E1000_RX_DESC(*rx_ring, i);
1273 buffer_info = &rx_ring->buffer_info[i];
1274
1275 while (rx_desc->status & E1000_RXD_STAT_DD) {
1276 struct sk_buff *skb;
1277 u8 status;
1278
1279 if (*work_done >= work_to_do)
1280 break;
1281 (*work_done)++;
1282
1283 status = rx_desc->status;
1284 skb = buffer_info->skb;
1285 buffer_info->skb = NULL;
1286
1287 ++i;
1288 if (i == rx_ring->count)
1289 i = 0;
1290 next_rxd = E1000_RX_DESC(*rx_ring, i);
1291 prefetch(next_rxd);
1292
1293 next_buffer = &rx_ring->buffer_info[i];
1294
1295 cleaned = true;
1296 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001297 dma_unmap_page(&pdev->dev, buffer_info->dma, PAGE_SIZE,
1298 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001299 buffer_info->dma = 0;
1300
1301 length = le16_to_cpu(rx_desc->length);
1302
1303 /* errors is only valid for DD + EOP descriptors */
1304 if (unlikely((status & E1000_RXD_STAT_EOP) &&
1305 (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) {
1306 /* recycle both page and skb */
1307 buffer_info->skb = skb;
1308 /* an error means any chain goes out the window
1309 * too */
1310 if (rx_ring->rx_skb_top)
1311 dev_kfree_skb(rx_ring->rx_skb_top);
1312 rx_ring->rx_skb_top = NULL;
1313 goto next_desc;
1314 }
1315
1316#define rxtop rx_ring->rx_skb_top
1317 if (!(status & E1000_RXD_STAT_EOP)) {
1318 /* this descriptor is only the beginning (or middle) */
1319 if (!rxtop) {
1320 /* this is the beginning of a chain */
1321 rxtop = skb;
1322 skb_fill_page_desc(rxtop, 0, buffer_info->page,
1323 0, length);
1324 } else {
1325 /* this is the middle of a chain */
1326 skb_fill_page_desc(rxtop,
1327 skb_shinfo(rxtop)->nr_frags,
1328 buffer_info->page, 0, length);
1329 /* re-use the skb, only consumed the page */
1330 buffer_info->skb = skb;
1331 }
1332 e1000_consume_page(buffer_info, rxtop, length);
1333 goto next_desc;
1334 } else {
1335 if (rxtop) {
1336 /* end of the chain */
1337 skb_fill_page_desc(rxtop,
1338 skb_shinfo(rxtop)->nr_frags,
1339 buffer_info->page, 0, length);
1340 /* re-use the current skb, we only consumed the
1341 * page */
1342 buffer_info->skb = skb;
1343 skb = rxtop;
1344 rxtop = NULL;
1345 e1000_consume_page(buffer_info, skb, length);
1346 } else {
1347 /* no chain, got EOP, this buf is the packet
1348 * copybreak to save the put_page/alloc_page */
1349 if (length <= copybreak &&
1350 skb_tailroom(skb) >= length) {
1351 u8 *vaddr;
1352 vaddr = kmap_atomic(buffer_info->page,
1353 KM_SKB_DATA_SOFTIRQ);
1354 memcpy(skb_tail_pointer(skb), vaddr,
1355 length);
1356 kunmap_atomic(vaddr,
1357 KM_SKB_DATA_SOFTIRQ);
1358 /* re-use the page, so don't erase
1359 * buffer_info->page */
1360 skb_put(skb, length);
1361 } else {
1362 skb_fill_page_desc(skb, 0,
1363 buffer_info->page, 0,
1364 length);
1365 e1000_consume_page(buffer_info, skb,
1366 length);
1367 }
1368 }
1369 }
1370
1371 /* Receive Checksum Offload XXX recompute due to CRC strip? */
1372 e1000_rx_checksum(adapter,
1373 (u32)(status) |
1374 ((u32)(rx_desc->errors) << 24),
1375 le16_to_cpu(rx_desc->csum), skb);
1376
1377 /* probably a little skewed due to removing CRC */
1378 total_rx_bytes += skb->len;
1379 total_rx_packets++;
1380
1381 /* eth type trans needs skb->data to point to something */
1382 if (!pskb_may_pull(skb, ETH_HLEN)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001383 e_err("pskb_may_pull failed.\n");
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001384 dev_kfree_skb(skb);
1385 goto next_desc;
1386 }
1387
1388 e1000_receive_skb(adapter, netdev, skb, status,
1389 rx_desc->special);
1390
1391next_desc:
1392 rx_desc->status = 0;
1393
1394 /* return some buffers to hardware, one at a time is too slow */
1395 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
1396 adapter->alloc_rx_buf(adapter, cleaned_count);
1397 cleaned_count = 0;
1398 }
1399
1400 /* use prefetched values */
1401 rx_desc = next_rxd;
1402 buffer_info = next_buffer;
1403 }
1404 rx_ring->next_to_clean = i;
1405
1406 cleaned_count = e1000_desc_unused(rx_ring);
1407 if (cleaned_count)
1408 adapter->alloc_rx_buf(adapter, cleaned_count);
1409
1410 adapter->total_rx_bytes += total_rx_bytes;
1411 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +00001412 netdev->stats.rx_bytes += total_rx_bytes;
1413 netdev->stats.rx_packets += total_rx_packets;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001414 return cleaned;
1415}
1416
1417/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001418 * e1000_clean_rx_ring - Free Rx Buffers per Queue
1419 * @adapter: board private structure
1420 **/
1421static void e1000_clean_rx_ring(struct e1000_adapter *adapter)
1422{
1423 struct e1000_ring *rx_ring = adapter->rx_ring;
1424 struct e1000_buffer *buffer_info;
1425 struct e1000_ps_page *ps_page;
1426 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001427 unsigned int i, j;
1428
1429 /* Free all the Rx ring sk_buffs */
1430 for (i = 0; i < rx_ring->count; i++) {
1431 buffer_info = &rx_ring->buffer_info[i];
1432 if (buffer_info->dma) {
1433 if (adapter->clean_rx == e1000_clean_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001434 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001435 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +00001436 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001437 else if (adapter->clean_rx == e1000_clean_jumbo_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001438 dma_unmap_page(&pdev->dev, buffer_info->dma,
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001439 PAGE_SIZE,
Nick Nunley0be3f552010-04-27 13:09:05 +00001440 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001441 else if (adapter->clean_rx == e1000_clean_rx_irq_ps)
Nick Nunley0be3f552010-04-27 13:09:05 +00001442 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001443 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +00001444 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001445 buffer_info->dma = 0;
1446 }
1447
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001448 if (buffer_info->page) {
1449 put_page(buffer_info->page);
1450 buffer_info->page = NULL;
1451 }
1452
Auke Kokbc7f75f2007-09-17 12:30:59 -07001453 if (buffer_info->skb) {
1454 dev_kfree_skb(buffer_info->skb);
1455 buffer_info->skb = NULL;
1456 }
1457
1458 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -07001459 ps_page = &buffer_info->ps_pages[j];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001460 if (!ps_page->page)
1461 break;
Nick Nunley0be3f552010-04-27 13:09:05 +00001462 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1463 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001464 ps_page->dma = 0;
1465 put_page(ps_page->page);
1466 ps_page->page = NULL;
1467 }
1468 }
1469
1470 /* there also may be some cached data from a chained receive */
1471 if (rx_ring->rx_skb_top) {
1472 dev_kfree_skb(rx_ring->rx_skb_top);
1473 rx_ring->rx_skb_top = NULL;
1474 }
1475
Auke Kokbc7f75f2007-09-17 12:30:59 -07001476 /* Zero out the descriptor ring */
1477 memset(rx_ring->desc, 0, rx_ring->size);
1478
1479 rx_ring->next_to_clean = 0;
1480 rx_ring->next_to_use = 0;
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001481 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001482
1483 writel(0, adapter->hw.hw_addr + rx_ring->head);
1484 writel(0, adapter->hw.hw_addr + rx_ring->tail);
1485}
1486
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001487static void e1000e_downshift_workaround(struct work_struct *work)
1488{
1489 struct e1000_adapter *adapter = container_of(work,
1490 struct e1000_adapter, downshift_task);
1491
1492 e1000e_gig_downshift_workaround_ich8lan(&adapter->hw);
1493}
1494
Auke Kokbc7f75f2007-09-17 12:30:59 -07001495/**
1496 * e1000_intr_msi - Interrupt Handler
1497 * @irq: interrupt number
1498 * @data: pointer to a network interface device structure
1499 **/
1500static irqreturn_t e1000_intr_msi(int irq, void *data)
1501{
1502 struct net_device *netdev = data;
1503 struct e1000_adapter *adapter = netdev_priv(netdev);
1504 struct e1000_hw *hw = &adapter->hw;
1505 u32 icr = er32(ICR);
1506
Bruce Allanad680762008-03-28 09:15:03 -07001507 /*
1508 * read ICR disables interrupts using IAM
1509 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001510
dave graham573cca82009-02-10 12:52:05 +00001511 if (icr & E1000_ICR_LSC) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001512 hw->mac.get_link_status = 1;
Bruce Allanad680762008-03-28 09:15:03 -07001513 /*
1514 * ICH8 workaround-- Call gig speed drop workaround on cable
1515 * disconnect (LSC) before accessing any PHY registers
1516 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001517 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1518 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001519 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001520
Bruce Allanad680762008-03-28 09:15:03 -07001521 /*
1522 * 80003ES2LAN workaround-- For packet buffer work-around on
Auke Kokbc7f75f2007-09-17 12:30:59 -07001523 * link down event; disable receives here in the ISR and reset
Bruce Allanad680762008-03-28 09:15:03 -07001524 * adapter in watchdog
1525 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001526 if (netif_carrier_ok(netdev) &&
1527 adapter->flags & FLAG_RX_NEEDS_RESTART) {
1528 /* disable receives */
1529 u32 rctl = er32(RCTL);
1530 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001531 adapter->flags |= FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001532 }
1533 /* guard against interrupt when we're going down */
1534 if (!test_bit(__E1000_DOWN, &adapter->state))
1535 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1536 }
1537
Ben Hutchings288379f2009-01-19 16:43:59 -08001538 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001539 adapter->total_tx_bytes = 0;
1540 adapter->total_tx_packets = 0;
1541 adapter->total_rx_bytes = 0;
1542 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001543 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001544 }
1545
1546 return IRQ_HANDLED;
1547}
1548
1549/**
1550 * e1000_intr - Interrupt Handler
1551 * @irq: interrupt number
1552 * @data: pointer to a network interface device structure
1553 **/
1554static irqreturn_t e1000_intr(int irq, void *data)
1555{
1556 struct net_device *netdev = data;
1557 struct e1000_adapter *adapter = netdev_priv(netdev);
1558 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001559 u32 rctl, icr = er32(ICR);
Bruce Allan4662e822008-08-26 18:37:06 -07001560
Bruce Allana68ea772009-11-20 23:23:16 +00001561 if (!icr || test_bit(__E1000_DOWN, &adapter->state))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001562 return IRQ_NONE; /* Not our interrupt */
1563
Bruce Allanad680762008-03-28 09:15:03 -07001564 /*
1565 * IMS will not auto-mask if INT_ASSERTED is not set, and if it is
1566 * not set, then the adapter didn't send an interrupt
1567 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001568 if (!(icr & E1000_ICR_INT_ASSERTED))
1569 return IRQ_NONE;
1570
Bruce Allanad680762008-03-28 09:15:03 -07001571 /*
1572 * Interrupt Auto-Mask...upon reading ICR,
1573 * interrupts are masked. No need for the
1574 * IMC write
1575 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001576
dave graham573cca82009-02-10 12:52:05 +00001577 if (icr & E1000_ICR_LSC) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001578 hw->mac.get_link_status = 1;
Bruce Allanad680762008-03-28 09:15:03 -07001579 /*
1580 * ICH8 workaround-- Call gig speed drop workaround on cable
1581 * disconnect (LSC) before accessing any PHY registers
1582 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001583 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1584 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001585 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001586
Bruce Allanad680762008-03-28 09:15:03 -07001587 /*
1588 * 80003ES2LAN workaround--
Auke Kokbc7f75f2007-09-17 12:30:59 -07001589 * For packet buffer work-around on link down event;
1590 * disable receives here in the ISR and
1591 * reset adapter in watchdog
1592 */
1593 if (netif_carrier_ok(netdev) &&
1594 (adapter->flags & FLAG_RX_NEEDS_RESTART)) {
1595 /* disable receives */
1596 rctl = er32(RCTL);
1597 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001598 adapter->flags |= FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001599 }
1600 /* guard against interrupt when we're going down */
1601 if (!test_bit(__E1000_DOWN, &adapter->state))
1602 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1603 }
1604
Ben Hutchings288379f2009-01-19 16:43:59 -08001605 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001606 adapter->total_tx_bytes = 0;
1607 adapter->total_tx_packets = 0;
1608 adapter->total_rx_bytes = 0;
1609 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001610 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001611 }
1612
1613 return IRQ_HANDLED;
1614}
1615
Bruce Allan4662e822008-08-26 18:37:06 -07001616static irqreturn_t e1000_msix_other(int irq, void *data)
1617{
1618 struct net_device *netdev = data;
1619 struct e1000_adapter *adapter = netdev_priv(netdev);
1620 struct e1000_hw *hw = &adapter->hw;
1621 u32 icr = er32(ICR);
1622
1623 if (!(icr & E1000_ICR_INT_ASSERTED)) {
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001624 if (!test_bit(__E1000_DOWN, &adapter->state))
1625 ew32(IMS, E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001626 return IRQ_NONE;
1627 }
1628
1629 if (icr & adapter->eiac_mask)
1630 ew32(ICS, (icr & adapter->eiac_mask));
1631
1632 if (icr & E1000_ICR_OTHER) {
1633 if (!(icr & E1000_ICR_LSC))
1634 goto no_link_interrupt;
1635 hw->mac.get_link_status = 1;
1636 /* guard against interrupt when we're going down */
1637 if (!test_bit(__E1000_DOWN, &adapter->state))
1638 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1639 }
1640
1641no_link_interrupt:
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001642 if (!test_bit(__E1000_DOWN, &adapter->state))
1643 ew32(IMS, E1000_IMS_LSC | E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001644
1645 return IRQ_HANDLED;
1646}
1647
1648
1649static irqreturn_t e1000_intr_msix_tx(int irq, void *data)
1650{
1651 struct net_device *netdev = data;
1652 struct e1000_adapter *adapter = netdev_priv(netdev);
1653 struct e1000_hw *hw = &adapter->hw;
1654 struct e1000_ring *tx_ring = adapter->tx_ring;
1655
1656
1657 adapter->total_tx_bytes = 0;
1658 adapter->total_tx_packets = 0;
1659
1660 if (!e1000_clean_tx_irq(adapter))
1661 /* Ring was not completely cleaned, so fire another interrupt */
1662 ew32(ICS, tx_ring->ims_val);
1663
1664 return IRQ_HANDLED;
1665}
1666
1667static irqreturn_t e1000_intr_msix_rx(int irq, void *data)
1668{
1669 struct net_device *netdev = data;
1670 struct e1000_adapter *adapter = netdev_priv(netdev);
1671
1672 /* Write the ITR value calculated at the end of the
1673 * previous interrupt.
1674 */
1675 if (adapter->rx_ring->set_itr) {
1676 writel(1000000000 / (adapter->rx_ring->itr_val * 256),
1677 adapter->hw.hw_addr + adapter->rx_ring->itr_register);
1678 adapter->rx_ring->set_itr = 0;
1679 }
1680
Ben Hutchings288379f2009-01-19 16:43:59 -08001681 if (napi_schedule_prep(&adapter->napi)) {
Bruce Allan4662e822008-08-26 18:37:06 -07001682 adapter->total_rx_bytes = 0;
1683 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001684 __napi_schedule(&adapter->napi);
Bruce Allan4662e822008-08-26 18:37:06 -07001685 }
1686 return IRQ_HANDLED;
1687}
1688
1689/**
1690 * e1000_configure_msix - Configure MSI-X hardware
1691 *
1692 * e1000_configure_msix sets up the hardware to properly
1693 * generate MSI-X interrupts.
1694 **/
1695static void e1000_configure_msix(struct e1000_adapter *adapter)
1696{
1697 struct e1000_hw *hw = &adapter->hw;
1698 struct e1000_ring *rx_ring = adapter->rx_ring;
1699 struct e1000_ring *tx_ring = adapter->tx_ring;
1700 int vector = 0;
1701 u32 ctrl_ext, ivar = 0;
1702
1703 adapter->eiac_mask = 0;
1704
1705 /* Workaround issue with spurious interrupts on 82574 in MSI-X mode */
1706 if (hw->mac.type == e1000_82574) {
1707 u32 rfctl = er32(RFCTL);
1708 rfctl |= E1000_RFCTL_ACK_DIS;
1709 ew32(RFCTL, rfctl);
1710 }
1711
1712#define E1000_IVAR_INT_ALLOC_VALID 0x8
1713 /* Configure Rx vector */
1714 rx_ring->ims_val = E1000_IMS_RXQ0;
1715 adapter->eiac_mask |= rx_ring->ims_val;
1716 if (rx_ring->itr_val)
1717 writel(1000000000 / (rx_ring->itr_val * 256),
1718 hw->hw_addr + rx_ring->itr_register);
1719 else
1720 writel(1, hw->hw_addr + rx_ring->itr_register);
1721 ivar = E1000_IVAR_INT_ALLOC_VALID | vector;
1722
1723 /* Configure Tx vector */
1724 tx_ring->ims_val = E1000_IMS_TXQ0;
1725 vector++;
1726 if (tx_ring->itr_val)
1727 writel(1000000000 / (tx_ring->itr_val * 256),
1728 hw->hw_addr + tx_ring->itr_register);
1729 else
1730 writel(1, hw->hw_addr + tx_ring->itr_register);
1731 adapter->eiac_mask |= tx_ring->ims_val;
1732 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 8);
1733
1734 /* set vector for Other Causes, e.g. link changes */
1735 vector++;
1736 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 16);
1737 if (rx_ring->itr_val)
1738 writel(1000000000 / (rx_ring->itr_val * 256),
1739 hw->hw_addr + E1000_EITR_82574(vector));
1740 else
1741 writel(1, hw->hw_addr + E1000_EITR_82574(vector));
1742
1743 /* Cause Tx interrupts on every write back */
1744 ivar |= (1 << 31);
1745
1746 ew32(IVAR, ivar);
1747
1748 /* enable MSI-X PBA support */
1749 ctrl_ext = er32(CTRL_EXT);
1750 ctrl_ext |= E1000_CTRL_EXT_PBA_CLR;
1751
1752 /* Auto-Mask Other interrupts upon ICR read */
1753#define E1000_EIAC_MASK_82574 0x01F00000
1754 ew32(IAM, ~E1000_EIAC_MASK_82574 | E1000_IMS_OTHER);
1755 ctrl_ext |= E1000_CTRL_EXT_EIAME;
1756 ew32(CTRL_EXT, ctrl_ext);
1757 e1e_flush();
1758}
1759
1760void e1000e_reset_interrupt_capability(struct e1000_adapter *adapter)
1761{
1762 if (adapter->msix_entries) {
1763 pci_disable_msix(adapter->pdev);
1764 kfree(adapter->msix_entries);
1765 adapter->msix_entries = NULL;
1766 } else if (adapter->flags & FLAG_MSI_ENABLED) {
1767 pci_disable_msi(adapter->pdev);
1768 adapter->flags &= ~FLAG_MSI_ENABLED;
1769 }
1770
1771 return;
1772}
1773
1774/**
1775 * e1000e_set_interrupt_capability - set MSI or MSI-X if supported
1776 *
1777 * Attempt to configure interrupts using the best available
1778 * capabilities of the hardware and kernel.
1779 **/
1780void e1000e_set_interrupt_capability(struct e1000_adapter *adapter)
1781{
1782 int err;
1783 int numvecs, i;
1784
1785
1786 switch (adapter->int_mode) {
1787 case E1000E_INT_MODE_MSIX:
1788 if (adapter->flags & FLAG_HAS_MSIX) {
1789 numvecs = 3; /* RxQ0, TxQ0 and other */
1790 adapter->msix_entries = kcalloc(numvecs,
1791 sizeof(struct msix_entry),
1792 GFP_KERNEL);
1793 if (adapter->msix_entries) {
1794 for (i = 0; i < numvecs; i++)
1795 adapter->msix_entries[i].entry = i;
1796
1797 err = pci_enable_msix(adapter->pdev,
1798 adapter->msix_entries,
1799 numvecs);
1800 if (err == 0)
1801 return;
1802 }
1803 /* MSI-X failed, so fall through and try MSI */
1804 e_err("Failed to initialize MSI-X interrupts. "
1805 "Falling back to MSI interrupts.\n");
1806 e1000e_reset_interrupt_capability(adapter);
1807 }
1808 adapter->int_mode = E1000E_INT_MODE_MSI;
1809 /* Fall through */
1810 case E1000E_INT_MODE_MSI:
1811 if (!pci_enable_msi(adapter->pdev)) {
1812 adapter->flags |= FLAG_MSI_ENABLED;
1813 } else {
1814 adapter->int_mode = E1000E_INT_MODE_LEGACY;
1815 e_err("Failed to initialize MSI interrupts. Falling "
1816 "back to legacy interrupts.\n");
1817 }
1818 /* Fall through */
1819 case E1000E_INT_MODE_LEGACY:
1820 /* Don't do anything; this is the system default */
1821 break;
1822 }
1823
1824 return;
1825}
1826
1827/**
1828 * e1000_request_msix - Initialize MSI-X interrupts
1829 *
1830 * e1000_request_msix allocates MSI-X vectors and requests interrupts from the
1831 * kernel.
1832 **/
1833static int e1000_request_msix(struct e1000_adapter *adapter)
1834{
1835 struct net_device *netdev = adapter->netdev;
1836 int err = 0, vector = 0;
1837
1838 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Alexander Duyckcb7b48f2008-12-05 15:08:03 -08001839 sprintf(adapter->rx_ring->name, "%s-rx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07001840 else
1841 memcpy(adapter->rx_ring->name, netdev->name, IFNAMSIZ);
1842 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001843 e1000_intr_msix_rx, 0, adapter->rx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07001844 netdev);
1845 if (err)
1846 goto out;
1847 adapter->rx_ring->itr_register = E1000_EITR_82574(vector);
1848 adapter->rx_ring->itr_val = adapter->itr;
1849 vector++;
1850
1851 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Alexander Duyckcb7b48f2008-12-05 15:08:03 -08001852 sprintf(adapter->tx_ring->name, "%s-tx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07001853 else
1854 memcpy(adapter->tx_ring->name, netdev->name, IFNAMSIZ);
1855 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001856 e1000_intr_msix_tx, 0, adapter->tx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07001857 netdev);
1858 if (err)
1859 goto out;
1860 adapter->tx_ring->itr_register = E1000_EITR_82574(vector);
1861 adapter->tx_ring->itr_val = adapter->itr;
1862 vector++;
1863
1864 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001865 e1000_msix_other, 0, netdev->name, netdev);
Bruce Allan4662e822008-08-26 18:37:06 -07001866 if (err)
1867 goto out;
1868
1869 e1000_configure_msix(adapter);
1870 return 0;
1871out:
1872 return err;
1873}
1874
Bruce Allanf8d59f72008-08-08 18:36:11 -07001875/**
1876 * e1000_request_irq - initialize interrupts
1877 *
1878 * Attempts to configure interrupts using the best available
1879 * capabilities of the hardware and kernel.
1880 **/
Auke Kokbc7f75f2007-09-17 12:30:59 -07001881static int e1000_request_irq(struct e1000_adapter *adapter)
1882{
1883 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001884 int err;
1885
Bruce Allan4662e822008-08-26 18:37:06 -07001886 if (adapter->msix_entries) {
1887 err = e1000_request_msix(adapter);
1888 if (!err)
1889 return err;
1890 /* fall back to MSI */
1891 e1000e_reset_interrupt_capability(adapter);
1892 adapter->int_mode = E1000E_INT_MODE_MSI;
1893 e1000e_set_interrupt_capability(adapter);
1894 }
1895 if (adapter->flags & FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08001896 err = request_irq(adapter->pdev->irq, e1000_intr_msi, 0,
Bruce Allan4662e822008-08-26 18:37:06 -07001897 netdev->name, netdev);
1898 if (!err)
1899 return err;
1900
1901 /* fall back to legacy interrupt */
1902 e1000e_reset_interrupt_capability(adapter);
1903 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001904 }
1905
Joe Perchesa0607fd2009-11-18 23:29:17 -08001906 err = request_irq(adapter->pdev->irq, e1000_intr, IRQF_SHARED,
Bruce Allan4662e822008-08-26 18:37:06 -07001907 netdev->name, netdev);
1908 if (err)
Bruce Allanf8d59f72008-08-08 18:36:11 -07001909 e_err("Unable to allocate interrupt, Error: %d\n", err);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001910
1911 return err;
1912}
1913
1914static void e1000_free_irq(struct e1000_adapter *adapter)
1915{
1916 struct net_device *netdev = adapter->netdev;
1917
Bruce Allan4662e822008-08-26 18:37:06 -07001918 if (adapter->msix_entries) {
1919 int vector = 0;
1920
1921 free_irq(adapter->msix_entries[vector].vector, netdev);
1922 vector++;
1923
1924 free_irq(adapter->msix_entries[vector].vector, netdev);
1925 vector++;
1926
1927 /* Other Causes interrupt vector */
1928 free_irq(adapter->msix_entries[vector].vector, netdev);
1929 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001930 }
Bruce Allan4662e822008-08-26 18:37:06 -07001931
1932 free_irq(adapter->pdev->irq, netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001933}
1934
1935/**
1936 * e1000_irq_disable - Mask off interrupt generation on the NIC
1937 **/
1938static void e1000_irq_disable(struct e1000_adapter *adapter)
1939{
1940 struct e1000_hw *hw = &adapter->hw;
1941
Auke Kokbc7f75f2007-09-17 12:30:59 -07001942 ew32(IMC, ~0);
Bruce Allan4662e822008-08-26 18:37:06 -07001943 if (adapter->msix_entries)
1944 ew32(EIAC_82574, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001945 e1e_flush();
1946 synchronize_irq(adapter->pdev->irq);
1947}
1948
1949/**
1950 * e1000_irq_enable - Enable default interrupt generation settings
1951 **/
1952static void e1000_irq_enable(struct e1000_adapter *adapter)
1953{
1954 struct e1000_hw *hw = &adapter->hw;
1955
Bruce Allan4662e822008-08-26 18:37:06 -07001956 if (adapter->msix_entries) {
1957 ew32(EIAC_82574, adapter->eiac_mask & E1000_EIAC_MASK_82574);
1958 ew32(IMS, adapter->eiac_mask | E1000_IMS_OTHER | E1000_IMS_LSC);
1959 } else {
1960 ew32(IMS, IMS_ENABLE_MASK);
1961 }
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07001962 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -07001963}
1964
1965/**
1966 * e1000_get_hw_control - get control of the h/w from f/w
1967 * @adapter: address of board private structure
1968 *
Auke Kok489815c2008-02-21 15:11:07 -08001969 * e1000_get_hw_control sets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001970 * For ASF and Pass Through versions of f/w this means that
1971 * the driver is loaded. For AMT version (only with 82573)
1972 * of the f/w this means that the network i/f is open.
1973 **/
1974static void e1000_get_hw_control(struct e1000_adapter *adapter)
1975{
1976 struct e1000_hw *hw = &adapter->hw;
1977 u32 ctrl_ext;
1978 u32 swsm;
1979
1980 /* Let firmware know the driver has taken over */
1981 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
1982 swsm = er32(SWSM);
1983 ew32(SWSM, swsm | E1000_SWSM_DRV_LOAD);
1984 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
1985 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07001986 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001987 }
1988}
1989
1990/**
1991 * e1000_release_hw_control - release control of the h/w to f/w
1992 * @adapter: address of board private structure
1993 *
Auke Kok489815c2008-02-21 15:11:07 -08001994 * e1000_release_hw_control resets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001995 * For ASF and Pass Through versions of f/w this means that the
1996 * driver is no longer loaded. For AMT version (only with 82573) i
1997 * of the f/w this means that the network i/f is closed.
1998 *
1999 **/
2000static void e1000_release_hw_control(struct e1000_adapter *adapter)
2001{
2002 struct e1000_hw *hw = &adapter->hw;
2003 u32 ctrl_ext;
2004 u32 swsm;
2005
2006 /* Let firmware taken over control of h/w */
2007 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
2008 swsm = er32(SWSM);
2009 ew32(SWSM, swsm & ~E1000_SWSM_DRV_LOAD);
2010 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
2011 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07002012 ew32(CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002013 }
2014}
2015
Auke Kokbc7f75f2007-09-17 12:30:59 -07002016/**
2017 * @e1000_alloc_ring - allocate memory for a ring structure
2018 **/
2019static int e1000_alloc_ring_dma(struct e1000_adapter *adapter,
2020 struct e1000_ring *ring)
2021{
2022 struct pci_dev *pdev = adapter->pdev;
2023
2024 ring->desc = dma_alloc_coherent(&pdev->dev, ring->size, &ring->dma,
2025 GFP_KERNEL);
2026 if (!ring->desc)
2027 return -ENOMEM;
2028
2029 return 0;
2030}
2031
2032/**
2033 * e1000e_setup_tx_resources - allocate Tx resources (Descriptors)
2034 * @adapter: board private structure
2035 *
2036 * Return 0 on success, negative on failure
2037 **/
2038int e1000e_setup_tx_resources(struct e1000_adapter *adapter)
2039{
2040 struct e1000_ring *tx_ring = adapter->tx_ring;
2041 int err = -ENOMEM, size;
2042
2043 size = sizeof(struct e1000_buffer) * tx_ring->count;
2044 tx_ring->buffer_info = vmalloc(size);
2045 if (!tx_ring->buffer_info)
2046 goto err;
2047 memset(tx_ring->buffer_info, 0, size);
2048
2049 /* round up to nearest 4K */
2050 tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc);
2051 tx_ring->size = ALIGN(tx_ring->size, 4096);
2052
2053 err = e1000_alloc_ring_dma(adapter, tx_ring);
2054 if (err)
2055 goto err;
2056
2057 tx_ring->next_to_use = 0;
2058 tx_ring->next_to_clean = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002059
2060 return 0;
2061err:
2062 vfree(tx_ring->buffer_info);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07002063 e_err("Unable to allocate memory for the transmit descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002064 return err;
2065}
2066
2067/**
2068 * e1000e_setup_rx_resources - allocate Rx resources (Descriptors)
2069 * @adapter: board private structure
2070 *
2071 * Returns 0 on success, negative on failure
2072 **/
2073int e1000e_setup_rx_resources(struct e1000_adapter *adapter)
2074{
2075 struct e1000_ring *rx_ring = adapter->rx_ring;
Auke Kok47f44e42007-10-25 13:57:44 -07002076 struct e1000_buffer *buffer_info;
2077 int i, size, desc_len, err = -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002078
2079 size = sizeof(struct e1000_buffer) * rx_ring->count;
2080 rx_ring->buffer_info = vmalloc(size);
2081 if (!rx_ring->buffer_info)
2082 goto err;
2083 memset(rx_ring->buffer_info, 0, size);
2084
Auke Kok47f44e42007-10-25 13:57:44 -07002085 for (i = 0; i < rx_ring->count; i++) {
2086 buffer_info = &rx_ring->buffer_info[i];
2087 buffer_info->ps_pages = kcalloc(PS_PAGE_BUFFERS,
2088 sizeof(struct e1000_ps_page),
2089 GFP_KERNEL);
2090 if (!buffer_info->ps_pages)
2091 goto err_pages;
2092 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002093
2094 desc_len = sizeof(union e1000_rx_desc_packet_split);
2095
2096 /* Round up to nearest 4K */
2097 rx_ring->size = rx_ring->count * desc_len;
2098 rx_ring->size = ALIGN(rx_ring->size, 4096);
2099
2100 err = e1000_alloc_ring_dma(adapter, rx_ring);
2101 if (err)
Auke Kok47f44e42007-10-25 13:57:44 -07002102 goto err_pages;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002103
2104 rx_ring->next_to_clean = 0;
2105 rx_ring->next_to_use = 0;
2106 rx_ring->rx_skb_top = NULL;
2107
2108 return 0;
Auke Kok47f44e42007-10-25 13:57:44 -07002109
2110err_pages:
2111 for (i = 0; i < rx_ring->count; i++) {
2112 buffer_info = &rx_ring->buffer_info[i];
2113 kfree(buffer_info->ps_pages);
2114 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002115err:
2116 vfree(rx_ring->buffer_info);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07002117 e_err("Unable to allocate memory for the transmit descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002118 return err;
2119}
2120
2121/**
2122 * e1000_clean_tx_ring - Free Tx Buffers
2123 * @adapter: board private structure
2124 **/
2125static void e1000_clean_tx_ring(struct e1000_adapter *adapter)
2126{
2127 struct e1000_ring *tx_ring = adapter->tx_ring;
2128 struct e1000_buffer *buffer_info;
2129 unsigned long size;
2130 unsigned int i;
2131
2132 for (i = 0; i < tx_ring->count; i++) {
2133 buffer_info = &tx_ring->buffer_info[i];
2134 e1000_put_txbuf(adapter, buffer_info);
2135 }
2136
2137 size = sizeof(struct e1000_buffer) * tx_ring->count;
2138 memset(tx_ring->buffer_info, 0, size);
2139
2140 memset(tx_ring->desc, 0, tx_ring->size);
2141
2142 tx_ring->next_to_use = 0;
2143 tx_ring->next_to_clean = 0;
2144
2145 writel(0, adapter->hw.hw_addr + tx_ring->head);
2146 writel(0, adapter->hw.hw_addr + tx_ring->tail);
2147}
2148
2149/**
2150 * e1000e_free_tx_resources - Free Tx Resources per Queue
2151 * @adapter: board private structure
2152 *
2153 * Free all transmit software resources
2154 **/
2155void e1000e_free_tx_resources(struct e1000_adapter *adapter)
2156{
2157 struct pci_dev *pdev = adapter->pdev;
2158 struct e1000_ring *tx_ring = adapter->tx_ring;
2159
2160 e1000_clean_tx_ring(adapter);
2161
2162 vfree(tx_ring->buffer_info);
2163 tx_ring->buffer_info = NULL;
2164
2165 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
2166 tx_ring->dma);
2167 tx_ring->desc = NULL;
2168}
2169
2170/**
2171 * e1000e_free_rx_resources - Free Rx Resources
2172 * @adapter: board private structure
2173 *
2174 * Free all receive software resources
2175 **/
2176
2177void e1000e_free_rx_resources(struct e1000_adapter *adapter)
2178{
2179 struct pci_dev *pdev = adapter->pdev;
2180 struct e1000_ring *rx_ring = adapter->rx_ring;
Auke Kok47f44e42007-10-25 13:57:44 -07002181 int i;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002182
2183 e1000_clean_rx_ring(adapter);
2184
Auke Kok47f44e42007-10-25 13:57:44 -07002185 for (i = 0; i < rx_ring->count; i++) {
2186 kfree(rx_ring->buffer_info[i].ps_pages);
2187 }
2188
Auke Kokbc7f75f2007-09-17 12:30:59 -07002189 vfree(rx_ring->buffer_info);
2190 rx_ring->buffer_info = NULL;
2191
Auke Kokbc7f75f2007-09-17 12:30:59 -07002192 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
2193 rx_ring->dma);
2194 rx_ring->desc = NULL;
2195}
2196
2197/**
2198 * e1000_update_itr - update the dynamic ITR value based on statistics
Auke Kok489815c2008-02-21 15:11:07 -08002199 * @adapter: pointer to adapter
2200 * @itr_setting: current adapter->itr
2201 * @packets: the number of packets during this measurement interval
2202 * @bytes: the number of bytes during this measurement interval
2203 *
Auke Kokbc7f75f2007-09-17 12:30:59 -07002204 * Stores a new ITR value based on packets and byte
2205 * counts during the last interrupt. The advantage of per interrupt
2206 * computation is faster updates and more accurate ITR for the current
2207 * traffic pattern. Constants in this function were computed
2208 * based on theoretical maximum wire speed and thresholds were set based
2209 * on testing data as well as attempting to minimize response time
Bruce Allan4662e822008-08-26 18:37:06 -07002210 * while increasing bulk throughput. This functionality is controlled
2211 * by the InterruptThrottleRate module parameter.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002212 **/
2213static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
2214 u16 itr_setting, int packets,
2215 int bytes)
2216{
2217 unsigned int retval = itr_setting;
2218
2219 if (packets == 0)
2220 goto update_itr_done;
2221
2222 switch (itr_setting) {
2223 case lowest_latency:
2224 /* handle TSO and jumbo frames */
2225 if (bytes/packets > 8000)
2226 retval = bulk_latency;
2227 else if ((packets < 5) && (bytes > 512)) {
2228 retval = low_latency;
2229 }
2230 break;
2231 case low_latency: /* 50 usec aka 20000 ints/s */
2232 if (bytes > 10000) {
2233 /* this if handles the TSO accounting */
2234 if (bytes/packets > 8000) {
2235 retval = bulk_latency;
2236 } else if ((packets < 10) || ((bytes/packets) > 1200)) {
2237 retval = bulk_latency;
2238 } else if ((packets > 35)) {
2239 retval = lowest_latency;
2240 }
2241 } else if (bytes/packets > 2000) {
2242 retval = bulk_latency;
2243 } else if (packets <= 2 && bytes < 512) {
2244 retval = lowest_latency;
2245 }
2246 break;
2247 case bulk_latency: /* 250 usec aka 4000 ints/s */
2248 if (bytes > 25000) {
2249 if (packets > 35) {
2250 retval = low_latency;
2251 }
2252 } else if (bytes < 6000) {
2253 retval = low_latency;
2254 }
2255 break;
2256 }
2257
2258update_itr_done:
2259 return retval;
2260}
2261
2262static void e1000_set_itr(struct e1000_adapter *adapter)
2263{
2264 struct e1000_hw *hw = &adapter->hw;
2265 u16 current_itr;
2266 u32 new_itr = adapter->itr;
2267
2268 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2269 if (adapter->link_speed != SPEED_1000) {
2270 current_itr = 0;
2271 new_itr = 4000;
2272 goto set_itr_now;
2273 }
2274
2275 adapter->tx_itr = e1000_update_itr(adapter,
2276 adapter->tx_itr,
2277 adapter->total_tx_packets,
2278 adapter->total_tx_bytes);
2279 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2280 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2281 adapter->tx_itr = low_latency;
2282
2283 adapter->rx_itr = e1000_update_itr(adapter,
2284 adapter->rx_itr,
2285 adapter->total_rx_packets,
2286 adapter->total_rx_bytes);
2287 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2288 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2289 adapter->rx_itr = low_latency;
2290
2291 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2292
2293 switch (current_itr) {
2294 /* counts and packets in update_itr are dependent on these numbers */
2295 case lowest_latency:
2296 new_itr = 70000;
2297 break;
2298 case low_latency:
2299 new_itr = 20000; /* aka hwitr = ~200 */
2300 break;
2301 case bulk_latency:
2302 new_itr = 4000;
2303 break;
2304 default:
2305 break;
2306 }
2307
2308set_itr_now:
2309 if (new_itr != adapter->itr) {
Bruce Allanad680762008-03-28 09:15:03 -07002310 /*
2311 * this attempts to bias the interrupt rate towards Bulk
Auke Kokbc7f75f2007-09-17 12:30:59 -07002312 * by adding intermediate steps when interrupt rate is
Bruce Allanad680762008-03-28 09:15:03 -07002313 * increasing
2314 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002315 new_itr = new_itr > adapter->itr ?
2316 min(adapter->itr + (new_itr >> 2), new_itr) :
2317 new_itr;
2318 adapter->itr = new_itr;
Bruce Allan4662e822008-08-26 18:37:06 -07002319 adapter->rx_ring->itr_val = new_itr;
2320 if (adapter->msix_entries)
2321 adapter->rx_ring->set_itr = 1;
2322 else
2323 ew32(ITR, 1000000000 / (new_itr * 256));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002324 }
2325}
2326
2327/**
Bruce Allan4662e822008-08-26 18:37:06 -07002328 * e1000_alloc_queues - Allocate memory for all rings
2329 * @adapter: board private structure to initialize
2330 **/
2331static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
2332{
2333 adapter->tx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
2334 if (!adapter->tx_ring)
2335 goto err;
2336
2337 adapter->rx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
2338 if (!adapter->rx_ring)
2339 goto err;
2340
2341 return 0;
2342err:
2343 e_err("Unable to allocate memory for queues\n");
2344 kfree(adapter->rx_ring);
2345 kfree(adapter->tx_ring);
2346 return -ENOMEM;
2347}
2348
2349/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002350 * e1000_clean - NAPI Rx polling callback
Bruce Allanad680762008-03-28 09:15:03 -07002351 * @napi: struct associated with this polling callback
Auke Kok489815c2008-02-21 15:11:07 -08002352 * @budget: amount of packets driver is allowed to process this poll
Auke Kokbc7f75f2007-09-17 12:30:59 -07002353 **/
2354static int e1000_clean(struct napi_struct *napi, int budget)
2355{
2356 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
Bruce Allan4662e822008-08-26 18:37:06 -07002357 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002358 struct net_device *poll_dev = adapter->netdev;
Andy Gospodarek679e8a02009-06-18 11:57:37 +00002359 int tx_cleaned = 1, work_done = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002360
Wang Chen4cf16532008-11-12 23:38:14 -08002361 adapter = netdev_priv(poll_dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002362
Bruce Allan4662e822008-08-26 18:37:06 -07002363 if (adapter->msix_entries &&
2364 !(adapter->rx_ring->ims_val & adapter->tx_ring->ims_val))
2365 goto clean_rx;
2366
Jesse Brandeburg92af3e92009-01-19 14:17:08 +00002367 tx_cleaned = e1000_clean_tx_irq(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002368
Bruce Allan4662e822008-08-26 18:37:06 -07002369clean_rx:
Auke Kokbc7f75f2007-09-17 12:30:59 -07002370 adapter->clean_rx(adapter, &work_done, budget);
2371
Alexander Duyck12d04a32009-03-25 22:05:03 +00002372 if (!tx_cleaned)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08002373 work_done = budget;
2374
David S. Miller53e52c72008-01-07 21:06:12 -08002375 /* If budget not fully consumed, exit the polling mode */
2376 if (work_done < budget) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002377 if (adapter->itr_setting & 3)
2378 e1000_set_itr(adapter);
Ben Hutchings288379f2009-01-19 16:43:59 -08002379 napi_complete(napi);
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00002380 if (!test_bit(__E1000_DOWN, &adapter->state)) {
2381 if (adapter->msix_entries)
2382 ew32(IMS, adapter->rx_ring->ims_val);
2383 else
2384 e1000_irq_enable(adapter);
2385 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002386 }
2387
2388 return work_done;
2389}
2390
2391static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
2392{
2393 struct e1000_adapter *adapter = netdev_priv(netdev);
2394 struct e1000_hw *hw = &adapter->hw;
2395 u32 vfta, index;
2396
2397 /* don't update vlan cookie if already programmed */
2398 if ((adapter->hw.mng_cookie.status &
2399 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2400 (vid == adapter->mng_vlan_id))
2401 return;
Bruce Allancaaddaf2009-12-01 15:46:43 +00002402
Auke Kokbc7f75f2007-09-17 12:30:59 -07002403 /* add VID to filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002404 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2405 index = (vid >> 5) & 0x7F;
2406 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2407 vfta |= (1 << (vid & 0x1F));
2408 hw->mac.ops.write_vfta(hw, index, vfta);
2409 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002410}
2411
2412static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
2413{
2414 struct e1000_adapter *adapter = netdev_priv(netdev);
2415 struct e1000_hw *hw = &adapter->hw;
2416 u32 vfta, index;
2417
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002418 if (!test_bit(__E1000_DOWN, &adapter->state))
2419 e1000_irq_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002420 vlan_group_set_device(adapter->vlgrp, vid, NULL);
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002421
2422 if (!test_bit(__E1000_DOWN, &adapter->state))
2423 e1000_irq_enable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002424
2425 if ((adapter->hw.mng_cookie.status &
2426 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2427 (vid == adapter->mng_vlan_id)) {
2428 /* release control to f/w */
2429 e1000_release_hw_control(adapter);
2430 return;
2431 }
2432
2433 /* remove VID from filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002434 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2435 index = (vid >> 5) & 0x7F;
2436 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2437 vfta &= ~(1 << (vid & 0x1F));
2438 hw->mac.ops.write_vfta(hw, index, vfta);
2439 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002440}
2441
2442static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
2443{
2444 struct net_device *netdev = adapter->netdev;
2445 u16 vid = adapter->hw.mng_cookie.vlan_id;
2446 u16 old_vid = adapter->mng_vlan_id;
2447
2448 if (!adapter->vlgrp)
2449 return;
2450
2451 if (!vlan_group_get_device(adapter->vlgrp, vid)) {
2452 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2453 if (adapter->hw.mng_cookie.status &
2454 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
2455 e1000_vlan_rx_add_vid(netdev, vid);
2456 adapter->mng_vlan_id = vid;
2457 }
2458
2459 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) &&
2460 (vid != old_vid) &&
2461 !vlan_group_get_device(adapter->vlgrp, old_vid))
2462 e1000_vlan_rx_kill_vid(netdev, old_vid);
2463 } else {
2464 adapter->mng_vlan_id = vid;
2465 }
2466}
2467
2468
2469static void e1000_vlan_rx_register(struct net_device *netdev,
2470 struct vlan_group *grp)
2471{
2472 struct e1000_adapter *adapter = netdev_priv(netdev);
2473 struct e1000_hw *hw = &adapter->hw;
2474 u32 ctrl, rctl;
2475
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002476 if (!test_bit(__E1000_DOWN, &adapter->state))
2477 e1000_irq_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002478 adapter->vlgrp = grp;
2479
2480 if (grp) {
2481 /* enable VLAN tag insert/strip */
2482 ctrl = er32(CTRL);
2483 ctrl |= E1000_CTRL_VME;
2484 ew32(CTRL, ctrl);
2485
2486 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2487 /* enable VLAN receive filtering */
2488 rctl = er32(RCTL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002489 rctl &= ~E1000_RCTL_CFIEN;
2490 ew32(RCTL, rctl);
2491 e1000_update_mng_vlan(adapter);
2492 }
2493 } else {
2494 /* disable VLAN tag insert/strip */
2495 ctrl = er32(CTRL);
2496 ctrl &= ~E1000_CTRL_VME;
2497 ew32(CTRL, ctrl);
2498
2499 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002500 if (adapter->mng_vlan_id !=
2501 (u16)E1000_MNG_VLAN_NONE) {
2502 e1000_vlan_rx_kill_vid(netdev,
2503 adapter->mng_vlan_id);
2504 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2505 }
2506 }
2507 }
2508
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002509 if (!test_bit(__E1000_DOWN, &adapter->state))
2510 e1000_irq_enable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002511}
2512
2513static void e1000_restore_vlan(struct e1000_adapter *adapter)
2514{
2515 u16 vid;
2516
2517 e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
2518
2519 if (!adapter->vlgrp)
2520 return;
2521
2522 for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
2523 if (!vlan_group_get_device(adapter->vlgrp, vid))
2524 continue;
2525 e1000_vlan_rx_add_vid(adapter->netdev, vid);
2526 }
2527}
2528
2529static void e1000_init_manageability(struct e1000_adapter *adapter)
2530{
2531 struct e1000_hw *hw = &adapter->hw;
2532 u32 manc, manc2h;
2533
2534 if (!(adapter->flags & FLAG_MNG_PT_ENABLED))
2535 return;
2536
2537 manc = er32(MANC);
2538
Bruce Allanad680762008-03-28 09:15:03 -07002539 /*
2540 * enable receiving management packets to the host. this will probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07002541 * generate destination unreachable messages from the host OS, but
Bruce Allanad680762008-03-28 09:15:03 -07002542 * the packets will be handled on SMBUS
2543 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002544 manc |= E1000_MANC_EN_MNG2HOST;
2545 manc2h = er32(MANC2H);
2546#define E1000_MNG2HOST_PORT_623 (1 << 5)
2547#define E1000_MNG2HOST_PORT_664 (1 << 6)
2548 manc2h |= E1000_MNG2HOST_PORT_623;
2549 manc2h |= E1000_MNG2HOST_PORT_664;
2550 ew32(MANC2H, manc2h);
2551 ew32(MANC, manc);
2552}
2553
2554/**
2555 * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
2556 * @adapter: board private structure
2557 *
2558 * Configure the Tx unit of the MAC after a reset.
2559 **/
2560static void e1000_configure_tx(struct e1000_adapter *adapter)
2561{
2562 struct e1000_hw *hw = &adapter->hw;
2563 struct e1000_ring *tx_ring = adapter->tx_ring;
2564 u64 tdba;
2565 u32 tdlen, tctl, tipg, tarc;
2566 u32 ipgr1, ipgr2;
2567
2568 /* Setup the HW Tx Head and Tail descriptor pointers */
2569 tdba = tx_ring->dma;
2570 tdlen = tx_ring->count * sizeof(struct e1000_tx_desc);
Yang Hongyang284901a2009-04-06 19:01:15 -07002571 ew32(TDBAL, (tdba & DMA_BIT_MASK(32)));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002572 ew32(TDBAH, (tdba >> 32));
2573 ew32(TDLEN, tdlen);
2574 ew32(TDH, 0);
2575 ew32(TDT, 0);
2576 tx_ring->head = E1000_TDH;
2577 tx_ring->tail = E1000_TDT;
2578
2579 /* Set the default values for the Tx Inter Packet Gap timer */
2580 tipg = DEFAULT_82543_TIPG_IPGT_COPPER; /* 8 */
2581 ipgr1 = DEFAULT_82543_TIPG_IPGR1; /* 8 */
2582 ipgr2 = DEFAULT_82543_TIPG_IPGR2; /* 6 */
2583
2584 if (adapter->flags & FLAG_TIPG_MEDIUM_FOR_80003ESLAN)
2585 ipgr2 = DEFAULT_80003ES2LAN_TIPG_IPGR2; /* 7 */
2586
2587 tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
2588 tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
2589 ew32(TIPG, tipg);
2590
2591 /* Set the Tx Interrupt Delay register */
2592 ew32(TIDV, adapter->tx_int_delay);
Bruce Allanad680762008-03-28 09:15:03 -07002593 /* Tx irq moderation */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002594 ew32(TADV, adapter->tx_abs_int_delay);
2595
2596 /* Program the Transmit Control Register */
2597 tctl = er32(TCTL);
2598 tctl &= ~E1000_TCTL_CT;
2599 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
2600 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
2601
2602 if (adapter->flags & FLAG_TARC_SPEED_MODE_BIT) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002603 tarc = er32(TARC(0));
Bruce Allanad680762008-03-28 09:15:03 -07002604 /*
2605 * set the speed mode bit, we'll clear it if we're not at
2606 * gigabit link later
2607 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002608#define SPEED_MODE_BIT (1 << 21)
2609 tarc |= SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002610 ew32(TARC(0), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002611 }
2612
2613 /* errata: program both queues to unweighted RR */
2614 if (adapter->flags & FLAG_TARC_SET_BIT_ZERO) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002615 tarc = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002616 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002617 ew32(TARC(0), tarc);
2618 tarc = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002619 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002620 ew32(TARC(1), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002621 }
2622
Auke Kokbc7f75f2007-09-17 12:30:59 -07002623 /* Setup Transmit Descriptor Settings for eop descriptor */
2624 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
2625
2626 /* only set IDE if we are delaying interrupts using the timers */
2627 if (adapter->tx_int_delay)
2628 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
2629
2630 /* enable Report Status bit */
2631 adapter->txd_cmd |= E1000_TXD_CMD_RS;
2632
2633 ew32(TCTL, tctl);
2634
Simon Hormanedfea6e62009-06-08 14:28:36 +00002635 e1000e_config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002636}
2637
2638/**
2639 * e1000_setup_rctl - configure the receive control registers
2640 * @adapter: Board private structure
2641 **/
2642#define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
2643 (((S) & (PAGE_SIZE - 1)) ? 1 : 0))
2644static void e1000_setup_rctl(struct e1000_adapter *adapter)
2645{
2646 struct e1000_hw *hw = &adapter->hw;
2647 u32 rctl, rfctl;
2648 u32 psrctl = 0;
2649 u32 pages = 0;
2650
2651 /* Program MC offset vector base */
2652 rctl = er32(RCTL);
2653 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
2654 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
2655 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
2656 (adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
2657
2658 /* Do not Store bad packets */
2659 rctl &= ~E1000_RCTL_SBP;
2660
2661 /* Enable Long Packet receive */
2662 if (adapter->netdev->mtu <= ETH_DATA_LEN)
2663 rctl &= ~E1000_RCTL_LPE;
2664 else
2665 rctl |= E1000_RCTL_LPE;
2666
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00002667 /* Some systems expect that the CRC is included in SMBUS traffic. The
2668 * hardware strips the CRC before sending to both SMBUS (BMC) and to
2669 * host memory when this is enabled
2670 */
2671 if (adapter->flags2 & FLAG2_CRC_STRIPPING)
2672 rctl |= E1000_RCTL_SECRC;
Auke Kok5918bd82008-02-12 15:20:24 -08002673
Bruce Allana4f58f52009-06-02 11:29:18 +00002674 /* Workaround Si errata on 82577 PHY - configure IPG for jumbos */
2675 if ((hw->phy.type == e1000_phy_82577) && (rctl & E1000_RCTL_LPE)) {
2676 u16 phy_data;
2677
2678 e1e_rphy(hw, PHY_REG(770, 26), &phy_data);
2679 phy_data &= 0xfff8;
2680 phy_data |= (1 << 2);
2681 e1e_wphy(hw, PHY_REG(770, 26), phy_data);
2682
2683 e1e_rphy(hw, 22, &phy_data);
2684 phy_data &= 0x0fff;
2685 phy_data |= (1 << 14);
2686 e1e_wphy(hw, 0x10, 0x2823);
2687 e1e_wphy(hw, 0x11, 0x0003);
2688 e1e_wphy(hw, 22, phy_data);
2689 }
2690
Auke Kokbc7f75f2007-09-17 12:30:59 -07002691 /* Setup buffer sizes */
2692 rctl &= ~E1000_RCTL_SZ_4096;
2693 rctl |= E1000_RCTL_BSEX;
2694 switch (adapter->rx_buffer_len) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002695 case 2048:
2696 default:
2697 rctl |= E1000_RCTL_SZ_2048;
2698 rctl &= ~E1000_RCTL_BSEX;
2699 break;
2700 case 4096:
2701 rctl |= E1000_RCTL_SZ_4096;
2702 break;
2703 case 8192:
2704 rctl |= E1000_RCTL_SZ_8192;
2705 break;
2706 case 16384:
2707 rctl |= E1000_RCTL_SZ_16384;
2708 break;
2709 }
2710
2711 /*
2712 * 82571 and greater support packet-split where the protocol
2713 * header is placed in skb->data and the packet data is
2714 * placed in pages hanging off of skb_shinfo(skb)->nr_frags.
2715 * In the case of a non-split, skb->data is linearly filled,
2716 * followed by the page buffers. Therefore, skb->data is
2717 * sized to hold the largest protocol header.
2718 *
2719 * allocations using alloc_page take too long for regular MTU
2720 * so only enable packet split for jumbo frames
2721 *
2722 * Using pages when the page size is greater than 16k wastes
2723 * a lot of memory, since we allocate 3 pages at all times
2724 * per packet.
2725 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002726 pages = PAGE_USE_COUNT(adapter->netdev->mtu);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002727 if (!(adapter->flags & FLAG_IS_ICH) && (pages <= 3) &&
2728 (PAGE_SIZE <= 16384) && (rctl & E1000_RCTL_LPE))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002729 adapter->rx_ps_pages = pages;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002730 else
2731 adapter->rx_ps_pages = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002732
2733 if (adapter->rx_ps_pages) {
2734 /* Configure extra packet-split registers */
2735 rfctl = er32(RFCTL);
2736 rfctl |= E1000_RFCTL_EXTEN;
Bruce Allanad680762008-03-28 09:15:03 -07002737 /*
2738 * disable packet split support for IPv6 extension headers,
2739 * because some malformed IPv6 headers can hang the Rx
2740 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002741 rfctl |= (E1000_RFCTL_IPV6_EX_DIS |
2742 E1000_RFCTL_NEW_IPV6_EXT_DIS);
2743
2744 ew32(RFCTL, rfctl);
2745
Auke Kok140a7482007-10-25 13:57:58 -07002746 /* Enable Packet split descriptors */
2747 rctl |= E1000_RCTL_DTYP_PS;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002748
2749 psrctl |= adapter->rx_ps_bsize0 >>
2750 E1000_PSRCTL_BSIZE0_SHIFT;
2751
2752 switch (adapter->rx_ps_pages) {
2753 case 3:
2754 psrctl |= PAGE_SIZE <<
2755 E1000_PSRCTL_BSIZE3_SHIFT;
2756 case 2:
2757 psrctl |= PAGE_SIZE <<
2758 E1000_PSRCTL_BSIZE2_SHIFT;
2759 case 1:
2760 psrctl |= PAGE_SIZE >>
2761 E1000_PSRCTL_BSIZE1_SHIFT;
2762 break;
2763 }
2764
2765 ew32(PSRCTL, psrctl);
2766 }
2767
2768 ew32(RCTL, rctl);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002769 /* just started the receive unit, no need to restart */
2770 adapter->flags &= ~FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002771}
2772
2773/**
2774 * e1000_configure_rx - Configure Receive Unit after Reset
2775 * @adapter: board private structure
2776 *
2777 * Configure the Rx unit of the MAC after a reset.
2778 **/
2779static void e1000_configure_rx(struct e1000_adapter *adapter)
2780{
2781 struct e1000_hw *hw = &adapter->hw;
2782 struct e1000_ring *rx_ring = adapter->rx_ring;
2783 u64 rdba;
2784 u32 rdlen, rctl, rxcsum, ctrl_ext;
2785
2786 if (adapter->rx_ps_pages) {
2787 /* this is a 32 byte descriptor */
2788 rdlen = rx_ring->count *
2789 sizeof(union e1000_rx_desc_packet_split);
2790 adapter->clean_rx = e1000_clean_rx_irq_ps;
2791 adapter->alloc_rx_buf = e1000_alloc_rx_buffers_ps;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002792 } else if (adapter->netdev->mtu > ETH_FRAME_LEN + ETH_FCS_LEN) {
2793 rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
2794 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
2795 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002796 } else {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002797 rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002798 adapter->clean_rx = e1000_clean_rx_irq;
2799 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
2800 }
2801
2802 /* disable receives while setting up the descriptors */
2803 rctl = er32(RCTL);
2804 ew32(RCTL, rctl & ~E1000_RCTL_EN);
2805 e1e_flush();
2806 msleep(10);
2807
2808 /* set the Receive Delay Timer Register */
2809 ew32(RDTR, adapter->rx_int_delay);
2810
2811 /* irq moderation */
2812 ew32(RADV, adapter->rx_abs_int_delay);
2813 if (adapter->itr_setting != 0)
Bruce Allanad680762008-03-28 09:15:03 -07002814 ew32(ITR, 1000000000 / (adapter->itr * 256));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002815
2816 ctrl_ext = er32(CTRL_EXT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002817 /* Auto-Mask interrupts upon ICR access */
2818 ctrl_ext |= E1000_CTRL_EXT_IAME;
2819 ew32(IAM, 0xffffffff);
2820 ew32(CTRL_EXT, ctrl_ext);
2821 e1e_flush();
2822
Bruce Allanad680762008-03-28 09:15:03 -07002823 /*
2824 * Setup the HW Rx Head and Tail Descriptor Pointers and
2825 * the Base and Length of the Rx Descriptor Ring
2826 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002827 rdba = rx_ring->dma;
Yang Hongyang284901a2009-04-06 19:01:15 -07002828 ew32(RDBAL, (rdba & DMA_BIT_MASK(32)));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002829 ew32(RDBAH, (rdba >> 32));
2830 ew32(RDLEN, rdlen);
2831 ew32(RDH, 0);
2832 ew32(RDT, 0);
2833 rx_ring->head = E1000_RDH;
2834 rx_ring->tail = E1000_RDT;
2835
2836 /* Enable Receive Checksum Offload for TCP and UDP */
2837 rxcsum = er32(RXCSUM);
2838 if (adapter->flags & FLAG_RX_CSUM_ENABLED) {
2839 rxcsum |= E1000_RXCSUM_TUOFL;
2840
Bruce Allanad680762008-03-28 09:15:03 -07002841 /*
2842 * IPv4 payload checksum for UDP fragments must be
2843 * used in conjunction with packet-split.
2844 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002845 if (adapter->rx_ps_pages)
2846 rxcsum |= E1000_RXCSUM_IPPCSE;
2847 } else {
2848 rxcsum &= ~E1000_RXCSUM_TUOFL;
2849 /* no need to clear IPPCSE as it defaults to 0 */
2850 }
2851 ew32(RXCSUM, rxcsum);
2852
Bruce Allanad680762008-03-28 09:15:03 -07002853 /*
2854 * Enable early receives on supported devices, only takes effect when
Auke Kokbc7f75f2007-09-17 12:30:59 -07002855 * packet size is equal or larger than the specified value (in 8 byte
Bruce Allanad680762008-03-28 09:15:03 -07002856 * units), e.g. using jumbo frames when setting to E1000_ERT_2048
2857 */
Bruce Allan53ec5492009-11-20 23:27:40 +00002858 if (adapter->flags & FLAG_HAS_ERT) {
2859 if (adapter->netdev->mtu > ETH_DATA_LEN) {
2860 u32 rxdctl = er32(RXDCTL(0));
2861 ew32(RXDCTL(0), rxdctl | 0x3);
2862 ew32(ERT, E1000_ERT_2048 | (1 << 13));
2863 /*
2864 * With jumbo frames and early-receive enabled,
2865 * excessive C-state transition latencies result in
2866 * dropped transactions.
2867 */
2868 pm_qos_update_requirement(PM_QOS_CPU_DMA_LATENCY,
2869 adapter->netdev->name, 55);
2870 } else {
2871 pm_qos_update_requirement(PM_QOS_CPU_DMA_LATENCY,
2872 adapter->netdev->name,
2873 PM_QOS_DEFAULT_VALUE);
2874 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002875 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002876
2877 /* Enable Receives */
2878 ew32(RCTL, rctl);
2879}
2880
2881/**
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07002882 * e1000_update_mc_addr_list - Update Multicast addresses
Auke Kokbc7f75f2007-09-17 12:30:59 -07002883 * @hw: pointer to the HW structure
2884 * @mc_addr_list: array of multicast addresses to program
2885 * @mc_addr_count: number of multicast addresses to program
Auke Kokbc7f75f2007-09-17 12:30:59 -07002886 *
Bruce Allanab8932f2010-01-13 02:05:38 +00002887 * Updates the Multicast Table Array.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002888 * The caller must have a packed mc_addr_list of multicast addresses.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002889 **/
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07002890static void e1000_update_mc_addr_list(struct e1000_hw *hw, u8 *mc_addr_list,
Bruce Allanab8932f2010-01-13 02:05:38 +00002891 u32 mc_addr_count)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002892{
Bruce Allanab8932f2010-01-13 02:05:38 +00002893 hw->mac.ops.update_mc_addr_list(hw, mc_addr_list, mc_addr_count);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002894}
2895
2896/**
2897 * e1000_set_multi - Multicast and Promiscuous mode set
2898 * @netdev: network interface device structure
2899 *
2900 * The set_multi entry point is called whenever the multicast address
2901 * list or the network interface flags are updated. This routine is
2902 * responsible for configuring the hardware for proper multicast,
2903 * promiscuous mode, and all-multi behavior.
2904 **/
2905static void e1000_set_multi(struct net_device *netdev)
2906{
2907 struct e1000_adapter *adapter = netdev_priv(netdev);
2908 struct e1000_hw *hw = &adapter->hw;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002909 struct netdev_hw_addr *ha;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002910 u8 *mta_list;
2911 u32 rctl;
2912 int i;
2913
2914 /* Check for Promiscuous and All Multicast modes */
2915
2916 rctl = er32(RCTL);
2917
2918 if (netdev->flags & IFF_PROMISC) {
2919 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Patrick McHardy746b9f02008-07-16 20:15:45 -07002920 rctl &= ~E1000_RCTL_VFE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002921 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07002922 if (netdev->flags & IFF_ALLMULTI) {
2923 rctl |= E1000_RCTL_MPE;
2924 rctl &= ~E1000_RCTL_UPE;
2925 } else {
2926 rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE);
2927 }
Patrick McHardy78ed11a2008-07-16 20:16:14 -07002928 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
Patrick McHardy746b9f02008-07-16 20:15:45 -07002929 rctl |= E1000_RCTL_VFE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002930 }
2931
2932 ew32(RCTL, rctl);
2933
Jiri Pirko7aeef972010-02-05 02:52:39 +00002934 if (!netdev_mc_empty(netdev)) {
2935 mta_list = kmalloc(netdev_mc_count(netdev) * 6, GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002936 if (!mta_list)
2937 return;
2938
2939 /* prepare a packed array of only addresses. */
Jiri Pirko7aeef972010-02-05 02:52:39 +00002940 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002941 netdev_for_each_mc_addr(ha, netdev)
2942 memcpy(mta_list + (i++ * ETH_ALEN), ha->addr, ETH_ALEN);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002943
Bruce Allanab8932f2010-01-13 02:05:38 +00002944 e1000_update_mc_addr_list(hw, mta_list, i);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002945 kfree(mta_list);
2946 } else {
2947 /*
2948 * if we're called from probe, we might not have
2949 * anything to do here, so clear out the list
2950 */
Bruce Allanab8932f2010-01-13 02:05:38 +00002951 e1000_update_mc_addr_list(hw, NULL, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002952 }
2953}
2954
2955/**
Bruce Allanad680762008-03-28 09:15:03 -07002956 * e1000_configure - configure the hardware for Rx and Tx
Auke Kokbc7f75f2007-09-17 12:30:59 -07002957 * @adapter: private board structure
2958 **/
2959static void e1000_configure(struct e1000_adapter *adapter)
2960{
2961 e1000_set_multi(adapter->netdev);
2962
2963 e1000_restore_vlan(adapter);
2964 e1000_init_manageability(adapter);
2965
2966 e1000_configure_tx(adapter);
2967 e1000_setup_rctl(adapter);
2968 e1000_configure_rx(adapter);
Bruce Allanad680762008-03-28 09:15:03 -07002969 adapter->alloc_rx_buf(adapter, e1000_desc_unused(adapter->rx_ring));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002970}
2971
2972/**
2973 * e1000e_power_up_phy - restore link in case the phy was powered down
2974 * @adapter: address of board private structure
2975 *
2976 * The phy may be powered down to save power and turn off link when the
2977 * driver is unloaded and wake on lan is not enabled (among others)
2978 * *** this routine MUST be followed by a call to e1000e_reset ***
2979 **/
2980void e1000e_power_up_phy(struct e1000_adapter *adapter)
2981{
Bruce Allan17f208d2009-12-01 15:47:22 +00002982 if (adapter->hw.phy.ops.power_up)
2983 adapter->hw.phy.ops.power_up(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002984
2985 adapter->hw.mac.ops.setup_link(&adapter->hw);
2986}
2987
2988/**
2989 * e1000_power_down_phy - Power down the PHY
2990 *
Bruce Allan17f208d2009-12-01 15:47:22 +00002991 * Power down the PHY so no link is implied when interface is down.
2992 * The PHY cannot be powered down if management or WoL is active.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002993 */
2994static void e1000_power_down_phy(struct e1000_adapter *adapter)
2995{
Auke Kokbc7f75f2007-09-17 12:30:59 -07002996 /* WoL is enabled */
Auke Kok23b66e22008-02-11 09:25:51 -08002997 if (adapter->wol)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002998 return;
2999
Bruce Allan17f208d2009-12-01 15:47:22 +00003000 if (adapter->hw.phy.ops.power_down)
3001 adapter->hw.phy.ops.power_down(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003002}
3003
3004/**
3005 * e1000e_reset - bring the hardware into a known good state
3006 *
3007 * This function boots the hardware and enables some settings that
3008 * require a configuration cycle of the hardware - those cannot be
3009 * set/changed during runtime. After reset the device needs to be
Bruce Allanad680762008-03-28 09:15:03 -07003010 * properly configured for Rx, Tx etc.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003011 */
3012void e1000e_reset(struct e1000_adapter *adapter)
3013{
3014 struct e1000_mac_info *mac = &adapter->hw.mac;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003015 struct e1000_fc_info *fc = &adapter->hw.fc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003016 struct e1000_hw *hw = &adapter->hw;
3017 u32 tx_space, min_tx_space, min_rx_space;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003018 u32 pba = adapter->pba;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003019 u16 hwm;
3020
Bruce Allanad680762008-03-28 09:15:03 -07003021 /* reset Packet Buffer Allocation to default */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003022 ew32(PBA, pba);
Auke Kokdf762462007-10-25 13:57:53 -07003023
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003024 if (adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allanad680762008-03-28 09:15:03 -07003025 /*
3026 * To maintain wire speed transmits, the Tx FIFO should be
Auke Kokbc7f75f2007-09-17 12:30:59 -07003027 * large enough to accommodate two full transmit packets,
3028 * rounded up to the next 1KB and expressed in KB. Likewise,
3029 * the Rx FIFO should be large enough to accommodate at least
3030 * one full receive packet and is similarly rounded up and
Bruce Allanad680762008-03-28 09:15:03 -07003031 * expressed in KB.
3032 */
Auke Kokdf762462007-10-25 13:57:53 -07003033 pba = er32(PBA);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003034 /* upper 16 bits has Tx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003035 tx_space = pba >> 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003036 /* lower 16 bits has Rx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003037 pba &= 0xffff;
Bruce Allanad680762008-03-28 09:15:03 -07003038 /*
3039 * the Tx fifo also stores 16 bytes of information about the tx
3040 * but don't include ethernet FCS because hardware appends it
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003041 */
3042 min_tx_space = (adapter->max_frame_size +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003043 sizeof(struct e1000_tx_desc) -
3044 ETH_FCS_LEN) * 2;
3045 min_tx_space = ALIGN(min_tx_space, 1024);
3046 min_tx_space >>= 10;
3047 /* software strips receive CRC, so leave room for it */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003048 min_rx_space = adapter->max_frame_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003049 min_rx_space = ALIGN(min_rx_space, 1024);
3050 min_rx_space >>= 10;
3051
Bruce Allanad680762008-03-28 09:15:03 -07003052 /*
3053 * If current Tx allocation is less than the min Tx FIFO size,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003054 * and the min Tx FIFO size is less than the current Rx FIFO
Bruce Allanad680762008-03-28 09:15:03 -07003055 * allocation, take space away from current Rx allocation
3056 */
Auke Kokdf762462007-10-25 13:57:53 -07003057 if ((tx_space < min_tx_space) &&
3058 ((min_tx_space - tx_space) < pba)) {
3059 pba -= min_tx_space - tx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003060
Bruce Allanad680762008-03-28 09:15:03 -07003061 /*
3062 * if short on Rx space, Rx wins and must trump tx
3063 * adjustment or use Early Receive if available
3064 */
Auke Kokdf762462007-10-25 13:57:53 -07003065 if ((pba < min_rx_space) &&
Auke Kokbc7f75f2007-09-17 12:30:59 -07003066 (!(adapter->flags & FLAG_HAS_ERT)))
3067 /* ERT enabled in e1000_configure_rx */
Auke Kokdf762462007-10-25 13:57:53 -07003068 pba = min_rx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003069 }
Auke Kokdf762462007-10-25 13:57:53 -07003070
3071 ew32(PBA, pba);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003072 }
3073
Auke Kokbc7f75f2007-09-17 12:30:59 -07003074
Bruce Allanad680762008-03-28 09:15:03 -07003075 /*
3076 * flow control settings
3077 *
Bruce Allan38eb3942009-11-19 12:34:20 +00003078 * The high water mark must be low enough to fit one full frame
Auke Kokbc7f75f2007-09-17 12:30:59 -07003079 * (or the size used for early receive) above it in the Rx FIFO.
3080 * Set it to the lower of:
3081 * - 90% of the Rx FIFO size, and
3082 * - the full Rx FIFO size minus the early receive size (for parts
3083 * with ERT support assuming ERT set to E1000_ERT_2048), or
Bruce Allan38eb3942009-11-19 12:34:20 +00003084 * - the full Rx FIFO size minus one full frame
Bruce Allanad680762008-03-28 09:15:03 -07003085 */
Bruce Allan38eb3942009-11-19 12:34:20 +00003086 if (hw->mac.type == e1000_pchlan) {
3087 /*
3088 * Workaround PCH LOM adapter hangs with certain network
3089 * loads. If hangs persist, try disabling Tx flow control.
3090 */
3091 if (adapter->netdev->mtu > ETH_DATA_LEN) {
3092 fc->high_water = 0x3500;
3093 fc->low_water = 0x1500;
3094 } else {
3095 fc->high_water = 0x5000;
3096 fc->low_water = 0x3000;
3097 }
3098 } else {
3099 if ((adapter->flags & FLAG_HAS_ERT) &&
3100 (adapter->netdev->mtu > ETH_DATA_LEN))
3101 hwm = min(((pba << 10) * 9 / 10),
3102 ((pba << 10) - (E1000_ERT_2048 << 3)));
3103 else
3104 hwm = min(((pba << 10) * 9 / 10),
3105 ((pba << 10) - adapter->max_frame_size));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003106
Bruce Allan38eb3942009-11-19 12:34:20 +00003107 fc->high_water = hwm & E1000_FCRTH_RTH; /* 8-byte granularity */
3108 fc->low_water = fc->high_water - 8;
3109 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003110
3111 if (adapter->flags & FLAG_DISABLE_FC_PAUSE_TIME)
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003112 fc->pause_time = 0xFFFF;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003113 else
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003114 fc->pause_time = E1000_FC_PAUSE_TIME;
3115 fc->send_xon = 1;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08003116 fc->current_mode = fc->requested_mode;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003117
3118 /* Allow time for pending master requests to run */
3119 mac->ops.reset_hw(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003120
3121 /*
3122 * For parts with AMT enabled, let the firmware know
3123 * that the network interface is in control
3124 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07003125 if (adapter->flags & FLAG_HAS_AMT)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003126 e1000_get_hw_control(adapter);
3127
Auke Kokbc7f75f2007-09-17 12:30:59 -07003128 ew32(WUC, 0);
Bruce Allana4f58f52009-06-02 11:29:18 +00003129 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP)
3130 e1e_wphy(&adapter->hw, BM_WUC, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003131
3132 if (mac->ops.init_hw(hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003133 e_err("Hardware Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003134
Bruce Allan38eb3942009-11-19 12:34:20 +00003135 /* additional part of the flow-control workaround above */
3136 if (hw->mac.type == e1000_pchlan)
3137 ew32(FCRTV_PCH, 0x1000);
3138
Auke Kokbc7f75f2007-09-17 12:30:59 -07003139 e1000_update_mng_vlan(adapter);
3140
3141 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
3142 ew32(VET, ETH_P_8021Q);
3143
3144 e1000e_reset_adaptive(hw);
3145 e1000_get_phy_info(hw);
3146
Bruce Allan918d7192009-06-02 11:28:20 +00003147 if ((adapter->flags & FLAG_HAS_SMART_POWER_DOWN) &&
3148 !(adapter->flags & FLAG_SMART_POWER_DOWN)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003149 u16 phy_data = 0;
Bruce Allanad680762008-03-28 09:15:03 -07003150 /*
3151 * speed up time to link by disabling smart power down, ignore
Auke Kokbc7f75f2007-09-17 12:30:59 -07003152 * the return value of this function because there is nothing
Bruce Allanad680762008-03-28 09:15:03 -07003153 * different we would do if it failed
3154 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003155 e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &phy_data);
3156 phy_data &= ~IGP02E1000_PM_SPD;
3157 e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, phy_data);
3158 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003159}
3160
3161int e1000e_up(struct e1000_adapter *adapter)
3162{
3163 struct e1000_hw *hw = &adapter->hw;
3164
Bruce Allan53ec5492009-11-20 23:27:40 +00003165 /* DMA latency requirement to workaround early-receive/jumbo issue */
3166 if (adapter->flags & FLAG_HAS_ERT)
3167 pm_qos_add_requirement(PM_QOS_CPU_DMA_LATENCY,
3168 adapter->netdev->name,
3169 PM_QOS_DEFAULT_VALUE);
3170
Auke Kokbc7f75f2007-09-17 12:30:59 -07003171 /* hardware has been reset, we need to reload some things */
3172 e1000_configure(adapter);
3173
3174 clear_bit(__E1000_DOWN, &adapter->state);
3175
3176 napi_enable(&adapter->napi);
Bruce Allan4662e822008-08-26 18:37:06 -07003177 if (adapter->msix_entries)
3178 e1000_configure_msix(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003179 e1000_irq_enable(adapter);
3180
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003181 netif_wake_queue(adapter->netdev);
3182
Auke Kokbc7f75f2007-09-17 12:30:59 -07003183 /* fire a link change interrupt to start the watchdog */
3184 ew32(ICS, E1000_ICS_LSC);
3185 return 0;
3186}
3187
3188void e1000e_down(struct e1000_adapter *adapter)
3189{
3190 struct net_device *netdev = adapter->netdev;
3191 struct e1000_hw *hw = &adapter->hw;
3192 u32 tctl, rctl;
3193
Bruce Allanad680762008-03-28 09:15:03 -07003194 /*
3195 * signal that we're down so the interrupt handler does not
3196 * reschedule our watchdog timer
3197 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003198 set_bit(__E1000_DOWN, &adapter->state);
3199
3200 /* disable receives in the hardware */
3201 rctl = er32(RCTL);
3202 ew32(RCTL, rctl & ~E1000_RCTL_EN);
3203 /* flush and sleep below */
3204
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003205 netif_stop_queue(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003206
3207 /* disable transmits in the hardware */
3208 tctl = er32(TCTL);
3209 tctl &= ~E1000_TCTL_EN;
3210 ew32(TCTL, tctl);
3211 /* flush both disables and wait for them to finish */
3212 e1e_flush();
3213 msleep(10);
3214
3215 napi_disable(&adapter->napi);
3216 e1000_irq_disable(adapter);
3217
3218 del_timer_sync(&adapter->watchdog_timer);
3219 del_timer_sync(&adapter->phy_info_timer);
3220
Auke Kokbc7f75f2007-09-17 12:30:59 -07003221 netif_carrier_off(netdev);
3222 adapter->link_speed = 0;
3223 adapter->link_duplex = 0;
3224
Jeff Kirsher52cc3082008-06-24 17:01:29 -07003225 if (!pci_channel_offline(adapter->pdev))
3226 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003227 e1000_clean_tx_ring(adapter);
3228 e1000_clean_rx_ring(adapter);
3229
Bruce Allan53ec5492009-11-20 23:27:40 +00003230 if (adapter->flags & FLAG_HAS_ERT)
3231 pm_qos_remove_requirement(PM_QOS_CPU_DMA_LATENCY,
3232 adapter->netdev->name);
3233
Auke Kokbc7f75f2007-09-17 12:30:59 -07003234 /*
3235 * TODO: for power management, we could drop the link and
3236 * pci_disable_device here.
3237 */
3238}
3239
3240void e1000e_reinit_locked(struct e1000_adapter *adapter)
3241{
3242 might_sleep();
3243 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
3244 msleep(1);
3245 e1000e_down(adapter);
3246 e1000e_up(adapter);
3247 clear_bit(__E1000_RESETTING, &adapter->state);
3248}
3249
3250/**
3251 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
3252 * @adapter: board private structure to initialize
3253 *
3254 * e1000_sw_init initializes the Adapter private data structure.
3255 * Fields are initialized based on PCI device information and
3256 * OS network device settings (MTU size).
3257 **/
3258static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
3259{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003260 struct net_device *netdev = adapter->netdev;
3261
3262 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN;
3263 adapter->rx_ps_bsize0 = 128;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003264 adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
3265 adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003266
Bruce Allan4662e822008-08-26 18:37:06 -07003267 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003268
Bruce Allan4662e822008-08-26 18:37:06 -07003269 if (e1000_alloc_queues(adapter))
3270 return -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003271
Auke Kokbc7f75f2007-09-17 12:30:59 -07003272 /* Explicitly disable IRQ since the NIC can be in any state. */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003273 e1000_irq_disable(adapter);
3274
Auke Kokbc7f75f2007-09-17 12:30:59 -07003275 set_bit(__E1000_DOWN, &adapter->state);
3276 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003277}
3278
3279/**
Bruce Allanf8d59f72008-08-08 18:36:11 -07003280 * e1000_intr_msi_test - Interrupt Handler
3281 * @irq: interrupt number
3282 * @data: pointer to a network interface device structure
3283 **/
3284static irqreturn_t e1000_intr_msi_test(int irq, void *data)
3285{
3286 struct net_device *netdev = data;
3287 struct e1000_adapter *adapter = netdev_priv(netdev);
3288 struct e1000_hw *hw = &adapter->hw;
3289 u32 icr = er32(ICR);
3290
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003291 e_dbg("icr is %08X\n", icr);
Bruce Allanf8d59f72008-08-08 18:36:11 -07003292 if (icr & E1000_ICR_RXSEQ) {
3293 adapter->flags &= ~FLAG_MSI_TEST_FAILED;
3294 wmb();
3295 }
3296
3297 return IRQ_HANDLED;
3298}
3299
3300/**
3301 * e1000_test_msi_interrupt - Returns 0 for successful test
3302 * @adapter: board private struct
3303 *
3304 * code flow taken from tg3.c
3305 **/
3306static int e1000_test_msi_interrupt(struct e1000_adapter *adapter)
3307{
3308 struct net_device *netdev = adapter->netdev;
3309 struct e1000_hw *hw = &adapter->hw;
3310 int err;
3311
3312 /* poll_enable hasn't been called yet, so don't need disable */
3313 /* clear any pending events */
3314 er32(ICR);
3315
3316 /* free the real vector and request a test handler */
3317 e1000_free_irq(adapter);
Bruce Allan4662e822008-08-26 18:37:06 -07003318 e1000e_reset_interrupt_capability(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07003319
3320 /* Assume that the test fails, if it succeeds then the test
3321 * MSI irq handler will unset this flag */
3322 adapter->flags |= FLAG_MSI_TEST_FAILED;
3323
3324 err = pci_enable_msi(adapter->pdev);
3325 if (err)
3326 goto msi_test_failed;
3327
Joe Perchesa0607fd2009-11-18 23:29:17 -08003328 err = request_irq(adapter->pdev->irq, e1000_intr_msi_test, 0,
Bruce Allanf8d59f72008-08-08 18:36:11 -07003329 netdev->name, netdev);
3330 if (err) {
3331 pci_disable_msi(adapter->pdev);
3332 goto msi_test_failed;
3333 }
3334
3335 wmb();
3336
3337 e1000_irq_enable(adapter);
3338
3339 /* fire an unusual interrupt on the test handler */
3340 ew32(ICS, E1000_ICS_RXSEQ);
3341 e1e_flush();
3342 msleep(50);
3343
3344 e1000_irq_disable(adapter);
3345
3346 rmb();
3347
3348 if (adapter->flags & FLAG_MSI_TEST_FAILED) {
Bruce Allan4662e822008-08-26 18:37:06 -07003349 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Bruce Allanf8d59f72008-08-08 18:36:11 -07003350 err = -EIO;
3351 e_info("MSI interrupt test failed!\n");
3352 }
3353
3354 free_irq(adapter->pdev->irq, netdev);
3355 pci_disable_msi(adapter->pdev);
3356
3357 if (err == -EIO)
3358 goto msi_test_failed;
3359
3360 /* okay so the test worked, restore settings */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003361 e_dbg("MSI interrupt test succeeded!\n");
Bruce Allanf8d59f72008-08-08 18:36:11 -07003362msi_test_failed:
Bruce Allan4662e822008-08-26 18:37:06 -07003363 e1000e_set_interrupt_capability(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07003364 e1000_request_irq(adapter);
3365 return err;
3366}
3367
3368/**
3369 * e1000_test_msi - Returns 0 if MSI test succeeds or INTx mode is restored
3370 * @adapter: board private struct
3371 *
3372 * code flow taken from tg3.c, called with e1000 interrupts disabled.
3373 **/
3374static int e1000_test_msi(struct e1000_adapter *adapter)
3375{
3376 int err;
3377 u16 pci_cmd;
3378
3379 if (!(adapter->flags & FLAG_MSI_ENABLED))
3380 return 0;
3381
3382 /* disable SERR in case the MSI write causes a master abort */
3383 pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
3384 pci_write_config_word(adapter->pdev, PCI_COMMAND,
3385 pci_cmd & ~PCI_COMMAND_SERR);
3386
3387 err = e1000_test_msi_interrupt(adapter);
3388
3389 /* restore previous setting of command word */
3390 pci_write_config_word(adapter->pdev, PCI_COMMAND, pci_cmd);
3391
3392 /* success ! */
3393 if (!err)
3394 return 0;
3395
3396 /* EIO means MSI test failed */
3397 if (err != -EIO)
3398 return err;
3399
3400 /* back to INTx mode */
3401 e_warn("MSI interrupt test failed, using legacy interrupt.\n");
3402
3403 e1000_free_irq(adapter);
3404
3405 err = e1000_request_irq(adapter);
3406
3407 return err;
3408}
3409
3410/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003411 * e1000_open - Called when a network interface is made active
3412 * @netdev: network interface device structure
3413 *
3414 * Returns 0 on success, negative value on failure
3415 *
3416 * The open entry point is called when a network interface is made
3417 * active by the system (IFF_UP). At this point all resources needed
3418 * for transmit and receive operations are allocated, the interrupt
3419 * handler is registered with the OS, the watchdog timer is started,
3420 * and the stack is notified that the interface is ready.
3421 **/
3422static int e1000_open(struct net_device *netdev)
3423{
3424 struct e1000_adapter *adapter = netdev_priv(netdev);
3425 struct e1000_hw *hw = &adapter->hw;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003426 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003427 int err;
3428
3429 /* disallow open during test */
3430 if (test_bit(__E1000_TESTING, &adapter->state))
3431 return -EBUSY;
3432
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003433 pm_runtime_get_sync(&pdev->dev);
3434
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00003435 netif_carrier_off(netdev);
3436
Auke Kokbc7f75f2007-09-17 12:30:59 -07003437 /* allocate transmit descriptors */
3438 err = e1000e_setup_tx_resources(adapter);
3439 if (err)
3440 goto err_setup_tx;
3441
3442 /* allocate receive descriptors */
3443 err = e1000e_setup_rx_resources(adapter);
3444 if (err)
3445 goto err_setup_rx;
3446
Bruce Allan11b08be2010-05-10 14:59:31 +00003447 /*
3448 * If AMT is enabled, let the firmware know that the network
3449 * interface is now open and reset the part to a known state.
3450 */
3451 if (adapter->flags & FLAG_HAS_AMT) {
3452 e1000_get_hw_control(adapter);
3453 e1000e_reset(adapter);
3454 }
3455
Auke Kokbc7f75f2007-09-17 12:30:59 -07003456 e1000e_power_up_phy(adapter);
3457
3458 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
3459 if ((adapter->hw.mng_cookie.status &
3460 E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
3461 e1000_update_mng_vlan(adapter);
3462
Bruce Allanad680762008-03-28 09:15:03 -07003463 /*
Bruce Allanad680762008-03-28 09:15:03 -07003464 * before we allocate an interrupt, we must be ready to handle it.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003465 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
3466 * as soon as we call pci_request_irq, so we have to setup our
Bruce Allanad680762008-03-28 09:15:03 -07003467 * clean_rx handler before we do so.
3468 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003469 e1000_configure(adapter);
3470
3471 err = e1000_request_irq(adapter);
3472 if (err)
3473 goto err_req_irq;
3474
Bruce Allanf8d59f72008-08-08 18:36:11 -07003475 /*
3476 * Work around PCIe errata with MSI interrupts causing some chipsets to
3477 * ignore e1000e MSI messages, which means we need to test our MSI
3478 * interrupt now
3479 */
Bruce Allan4662e822008-08-26 18:37:06 -07003480 if (adapter->int_mode != E1000E_INT_MODE_LEGACY) {
Bruce Allanf8d59f72008-08-08 18:36:11 -07003481 err = e1000_test_msi(adapter);
3482 if (err) {
3483 e_err("Interrupt allocation failed\n");
3484 goto err_req_irq;
3485 }
3486 }
3487
Auke Kokbc7f75f2007-09-17 12:30:59 -07003488 /* From here on the code is the same as e1000e_up() */
3489 clear_bit(__E1000_DOWN, &adapter->state);
3490
3491 napi_enable(&adapter->napi);
3492
3493 e1000_irq_enable(adapter);
3494
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003495 netif_start_queue(netdev);
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07003496
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003497 adapter->idle_check = true;
3498 pm_runtime_put(&pdev->dev);
3499
Auke Kokbc7f75f2007-09-17 12:30:59 -07003500 /* fire a link status change interrupt to start the watchdog */
3501 ew32(ICS, E1000_ICS_LSC);
3502
3503 return 0;
3504
3505err_req_irq:
3506 e1000_release_hw_control(adapter);
3507 e1000_power_down_phy(adapter);
3508 e1000e_free_rx_resources(adapter);
3509err_setup_rx:
3510 e1000e_free_tx_resources(adapter);
3511err_setup_tx:
3512 e1000e_reset(adapter);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003513 pm_runtime_put_sync(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003514
3515 return err;
3516}
3517
3518/**
3519 * e1000_close - Disables a network interface
3520 * @netdev: network interface device structure
3521 *
3522 * Returns 0, this is not allowed to fail
3523 *
3524 * The close entry point is called when an interface is de-activated
3525 * by the OS. The hardware is still under the drivers control, but
3526 * needs to be disabled. A global MAC reset is issued to stop the
3527 * hardware, and all transmit and receive resources are freed.
3528 **/
3529static int e1000_close(struct net_device *netdev)
3530{
3531 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003532 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003533
3534 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003535
3536 pm_runtime_get_sync(&pdev->dev);
3537
3538 if (!test_bit(__E1000_DOWN, &adapter->state)) {
3539 e1000e_down(adapter);
3540 e1000_free_irq(adapter);
3541 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003542 e1000_power_down_phy(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003543
3544 e1000e_free_tx_resources(adapter);
3545 e1000e_free_rx_resources(adapter);
3546
Bruce Allanad680762008-03-28 09:15:03 -07003547 /*
3548 * kill manageability vlan ID if supported, but not if a vlan with
3549 * the same ID is registered on the host OS (let 8021q kill it)
3550 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003551 if ((adapter->hw.mng_cookie.status &
3552 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
3553 !(adapter->vlgrp &&
3554 vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id)))
3555 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
3556
Bruce Allanad680762008-03-28 09:15:03 -07003557 /*
3558 * If AMT is enabled, let the firmware know that the network
3559 * interface is now closed
3560 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07003561 if (adapter->flags & FLAG_HAS_AMT)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003562 e1000_release_hw_control(adapter);
3563
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003564 pm_runtime_put_sync(&pdev->dev);
3565
Auke Kokbc7f75f2007-09-17 12:30:59 -07003566 return 0;
3567}
3568/**
3569 * e1000_set_mac - Change the Ethernet Address of the NIC
3570 * @netdev: network interface device structure
3571 * @p: pointer to an address structure
3572 *
3573 * Returns 0 on success, negative on failure
3574 **/
3575static int e1000_set_mac(struct net_device *netdev, void *p)
3576{
3577 struct e1000_adapter *adapter = netdev_priv(netdev);
3578 struct sockaddr *addr = p;
3579
3580 if (!is_valid_ether_addr(addr->sa_data))
3581 return -EADDRNOTAVAIL;
3582
3583 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
3584 memcpy(adapter->hw.mac.addr, addr->sa_data, netdev->addr_len);
3585
3586 e1000e_rar_set(&adapter->hw, adapter->hw.mac.addr, 0);
3587
3588 if (adapter->flags & FLAG_RESET_OVERWRITES_LAA) {
3589 /* activate the work around */
3590 e1000e_set_laa_state_82571(&adapter->hw, 1);
3591
Bruce Allanad680762008-03-28 09:15:03 -07003592 /*
3593 * Hold a copy of the LAA in RAR[14] This is done so that
Auke Kokbc7f75f2007-09-17 12:30:59 -07003594 * between the time RAR[0] gets clobbered and the time it
3595 * gets fixed (in e1000_watchdog), the actual LAA is in one
3596 * of the RARs and no incoming packets directed to this port
3597 * are dropped. Eventually the LAA will be in RAR[0] and
Bruce Allanad680762008-03-28 09:15:03 -07003598 * RAR[14]
3599 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003600 e1000e_rar_set(&adapter->hw,
3601 adapter->hw.mac.addr,
3602 adapter->hw.mac.rar_entry_count - 1);
3603 }
3604
3605 return 0;
3606}
3607
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07003608/**
3609 * e1000e_update_phy_task - work thread to update phy
3610 * @work: pointer to our work struct
3611 *
3612 * this worker thread exists because we must acquire a
3613 * semaphore to read the phy, which we could msleep while
3614 * waiting for it, and we can't msleep in a timer.
3615 **/
3616static void e1000e_update_phy_task(struct work_struct *work)
3617{
3618 struct e1000_adapter *adapter = container_of(work,
3619 struct e1000_adapter, update_phy_task);
3620 e1000_get_phy_info(&adapter->hw);
3621}
3622
Bruce Allanad680762008-03-28 09:15:03 -07003623/*
3624 * Need to wait a few seconds after link up to get diagnostic information from
3625 * the phy
3626 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003627static void e1000_update_phy_info(unsigned long data)
3628{
3629 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07003630 schedule_work(&adapter->update_phy_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003631}
3632
3633/**
3634 * e1000e_update_stats - Update the board statistics counters
3635 * @adapter: board private structure
3636 **/
3637void e1000e_update_stats(struct e1000_adapter *adapter)
3638{
Ajit Khaparde7274c202009-10-07 02:44:26 +00003639 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003640 struct e1000_hw *hw = &adapter->hw;
3641 struct pci_dev *pdev = adapter->pdev;
Bruce Allana4f58f52009-06-02 11:29:18 +00003642 u16 phy_data;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003643
3644 /*
3645 * Prevent stats update while adapter is being reset, or if the pci
3646 * connection is down.
3647 */
3648 if (adapter->link_speed == 0)
3649 return;
3650 if (pci_channel_offline(pdev))
3651 return;
3652
Auke Kokbc7f75f2007-09-17 12:30:59 -07003653 adapter->stats.crcerrs += er32(CRCERRS);
3654 adapter->stats.gprc += er32(GPRC);
Bruce Allan7c257692008-04-23 11:09:00 -07003655 adapter->stats.gorc += er32(GORCL);
3656 er32(GORCH); /* Clear gorc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003657 adapter->stats.bprc += er32(BPRC);
3658 adapter->stats.mprc += er32(MPRC);
3659 adapter->stats.roc += er32(ROC);
3660
Auke Kokbc7f75f2007-09-17 12:30:59 -07003661 adapter->stats.mpc += er32(MPC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003662 if ((hw->phy.type == e1000_phy_82578) ||
3663 (hw->phy.type == e1000_phy_82577)) {
3664 e1e_rphy(hw, HV_SCC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003665 if (!e1e_rphy(hw, HV_SCC_LOWER, &phy_data))
3666 adapter->stats.scc += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003667
3668 e1e_rphy(hw, HV_ECOL_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003669 if (!e1e_rphy(hw, HV_ECOL_LOWER, &phy_data))
3670 adapter->stats.ecol += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003671
3672 e1e_rphy(hw, HV_MCC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003673 if (!e1e_rphy(hw, HV_MCC_LOWER, &phy_data))
3674 adapter->stats.mcc += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003675
3676 e1e_rphy(hw, HV_LATECOL_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003677 if (!e1e_rphy(hw, HV_LATECOL_LOWER, &phy_data))
3678 adapter->stats.latecol += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003679
3680 e1e_rphy(hw, HV_DC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003681 if (!e1e_rphy(hw, HV_DC_LOWER, &phy_data))
3682 adapter->stats.dc += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003683 } else {
3684 adapter->stats.scc += er32(SCC);
3685 adapter->stats.ecol += er32(ECOL);
3686 adapter->stats.mcc += er32(MCC);
3687 adapter->stats.latecol += er32(LATECOL);
3688 adapter->stats.dc += er32(DC);
3689 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003690 adapter->stats.xonrxc += er32(XONRXC);
3691 adapter->stats.xontxc += er32(XONTXC);
3692 adapter->stats.xoffrxc += er32(XOFFRXC);
3693 adapter->stats.xofftxc += er32(XOFFTXC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003694 adapter->stats.gptc += er32(GPTC);
Bruce Allan7c257692008-04-23 11:09:00 -07003695 adapter->stats.gotc += er32(GOTCL);
3696 er32(GOTCH); /* Clear gotc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003697 adapter->stats.rnbc += er32(RNBC);
3698 adapter->stats.ruc += er32(RUC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003699
3700 adapter->stats.mptc += er32(MPTC);
3701 adapter->stats.bptc += er32(BPTC);
3702
3703 /* used for adaptive IFS */
3704
3705 hw->mac.tx_packet_delta = er32(TPT);
3706 adapter->stats.tpt += hw->mac.tx_packet_delta;
Bruce Allana4f58f52009-06-02 11:29:18 +00003707 if ((hw->phy.type == e1000_phy_82578) ||
3708 (hw->phy.type == e1000_phy_82577)) {
3709 e1e_rphy(hw, HV_COLC_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003710 if (!e1e_rphy(hw, HV_COLC_LOWER, &phy_data))
3711 hw->mac.collision_delta = phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003712 } else {
3713 hw->mac.collision_delta = er32(COLC);
3714 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003715 adapter->stats.colc += hw->mac.collision_delta;
3716
3717 adapter->stats.algnerrc += er32(ALGNERRC);
3718 adapter->stats.rxerrc += er32(RXERRC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003719 if ((hw->phy.type == e1000_phy_82578) ||
3720 (hw->phy.type == e1000_phy_82577)) {
3721 e1e_rphy(hw, HV_TNCRS_UPPER, &phy_data);
Bruce Allan29477e22010-01-07 16:31:16 +00003722 if (!e1e_rphy(hw, HV_TNCRS_LOWER, &phy_data))
3723 adapter->stats.tncrs += phy_data;
Bruce Allana4f58f52009-06-02 11:29:18 +00003724 } else {
3725 if ((hw->mac.type != e1000_82574) &&
3726 (hw->mac.type != e1000_82583))
3727 adapter->stats.tncrs += er32(TNCRS);
3728 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003729 adapter->stats.cexterr += er32(CEXTERR);
3730 adapter->stats.tsctc += er32(TSCTC);
3731 adapter->stats.tsctfc += er32(TSCTFC);
3732
Auke Kokbc7f75f2007-09-17 12:30:59 -07003733 /* Fill out the OS statistics structure */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003734 netdev->stats.multicast = adapter->stats.mprc;
3735 netdev->stats.collisions = adapter->stats.colc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003736
3737 /* Rx Errors */
3738
Bruce Allanad680762008-03-28 09:15:03 -07003739 /*
3740 * RLEC on some newer hardware can be incorrect so build
3741 * our own version based on RUC and ROC
3742 */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003743 netdev->stats.rx_errors = adapter->stats.rxerrc +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003744 adapter->stats.crcerrs + adapter->stats.algnerrc +
3745 adapter->stats.ruc + adapter->stats.roc +
3746 adapter->stats.cexterr;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003747 netdev->stats.rx_length_errors = adapter->stats.ruc +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003748 adapter->stats.roc;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003749 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
3750 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
3751 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003752
3753 /* Tx Errors */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003754 netdev->stats.tx_errors = adapter->stats.ecol +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003755 adapter->stats.latecol;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003756 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
3757 netdev->stats.tx_window_errors = adapter->stats.latecol;
3758 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003759
3760 /* Tx Dropped needs to be maintained elsewhere */
3761
Auke Kokbc7f75f2007-09-17 12:30:59 -07003762 /* Management Stats */
3763 adapter->stats.mgptc += er32(MGTPTC);
3764 adapter->stats.mgprc += er32(MGTPRC);
3765 adapter->stats.mgpdc += er32(MGTPDC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003766}
3767
Bruce Allan7c257692008-04-23 11:09:00 -07003768/**
3769 * e1000_phy_read_status - Update the PHY register status snapshot
3770 * @adapter: board private structure
3771 **/
3772static void e1000_phy_read_status(struct e1000_adapter *adapter)
3773{
3774 struct e1000_hw *hw = &adapter->hw;
3775 struct e1000_phy_regs *phy = &adapter->phy_regs;
3776 int ret_val;
Bruce Allan7c257692008-04-23 11:09:00 -07003777
3778 if ((er32(STATUS) & E1000_STATUS_LU) &&
3779 (adapter->hw.phy.media_type == e1000_media_type_copper)) {
3780 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy->bmcr);
3781 ret_val |= e1e_rphy(hw, PHY_STATUS, &phy->bmsr);
3782 ret_val |= e1e_rphy(hw, PHY_AUTONEG_ADV, &phy->advertise);
3783 ret_val |= e1e_rphy(hw, PHY_LP_ABILITY, &phy->lpa);
3784 ret_val |= e1e_rphy(hw, PHY_AUTONEG_EXP, &phy->expansion);
3785 ret_val |= e1e_rphy(hw, PHY_1000T_CTRL, &phy->ctrl1000);
3786 ret_val |= e1e_rphy(hw, PHY_1000T_STATUS, &phy->stat1000);
3787 ret_val |= e1e_rphy(hw, PHY_EXT_STATUS, &phy->estatus);
3788 if (ret_val)
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003789 e_warn("Error reading PHY register\n");
Bruce Allan7c257692008-04-23 11:09:00 -07003790 } else {
3791 /*
3792 * Do not read PHY registers if link is not up
3793 * Set values to typical power-on defaults
3794 */
3795 phy->bmcr = (BMCR_SPEED1000 | BMCR_ANENABLE | BMCR_FULLDPLX);
3796 phy->bmsr = (BMSR_100FULL | BMSR_100HALF | BMSR_10FULL |
3797 BMSR_10HALF | BMSR_ESTATEN | BMSR_ANEGCAPABLE |
3798 BMSR_ERCAP);
3799 phy->advertise = (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP |
3800 ADVERTISE_ALL | ADVERTISE_CSMA);
3801 phy->lpa = 0;
3802 phy->expansion = EXPANSION_ENABLENPAGE;
3803 phy->ctrl1000 = ADVERTISE_1000FULL;
3804 phy->stat1000 = 0;
3805 phy->estatus = (ESTATUS_1000_TFULL | ESTATUS_1000_THALF);
3806 }
Bruce Allan7c257692008-04-23 11:09:00 -07003807}
3808
Auke Kokbc7f75f2007-09-17 12:30:59 -07003809static void e1000_print_link_info(struct e1000_adapter *adapter)
3810{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003811 struct e1000_hw *hw = &adapter->hw;
3812 u32 ctrl = er32(CTRL);
3813
Bruce Allan8f12fe82008-11-21 16:54:43 -08003814 /* Link status message must follow this format for user tools */
3815 printk(KERN_INFO "e1000e: %s NIC Link is Up %d Mbps %s, "
3816 "Flow Control: %s\n",
3817 adapter->netdev->name,
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003818 adapter->link_speed,
3819 (adapter->link_duplex == FULL_DUPLEX) ?
3820 "Full Duplex" : "Half Duplex",
3821 ((ctrl & E1000_CTRL_TFCE) && (ctrl & E1000_CTRL_RFCE)) ?
3822 "RX/TX" :
3823 ((ctrl & E1000_CTRL_RFCE) ? "RX" :
3824 ((ctrl & E1000_CTRL_TFCE) ? "TX" : "None" )));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003825}
3826
David S. Millerb405e8d2010-02-04 22:31:41 -08003827bool e1000e_has_link(struct e1000_adapter *adapter)
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003828{
3829 struct e1000_hw *hw = &adapter->hw;
3830 bool link_active = 0;
3831 s32 ret_val = 0;
3832
3833 /*
3834 * get_link_status is set on LSC (link status) interrupt or
3835 * Rx sequence error interrupt. get_link_status will stay
3836 * false until the check_for_link establishes link
3837 * for copper adapters ONLY
3838 */
3839 switch (hw->phy.media_type) {
3840 case e1000_media_type_copper:
3841 if (hw->mac.get_link_status) {
3842 ret_val = hw->mac.ops.check_for_link(hw);
3843 link_active = !hw->mac.get_link_status;
3844 } else {
3845 link_active = 1;
3846 }
3847 break;
3848 case e1000_media_type_fiber:
3849 ret_val = hw->mac.ops.check_for_link(hw);
3850 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
3851 break;
3852 case e1000_media_type_internal_serdes:
3853 ret_val = hw->mac.ops.check_for_link(hw);
3854 link_active = adapter->hw.mac.serdes_has_link;
3855 break;
3856 default:
3857 case e1000_media_type_unknown:
3858 break;
3859 }
3860
3861 if ((ret_val == E1000_ERR_PHY) && (hw->phy.type == e1000_phy_igp_3) &&
3862 (er32(CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
3863 /* See e1000_kmrn_lock_loss_workaround_ich8lan() */
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003864 e_info("Gigabit has been disabled, downgrading speed\n");
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003865 }
3866
3867 return link_active;
3868}
3869
3870static void e1000e_enable_receives(struct e1000_adapter *adapter)
3871{
3872 /* make sure the receive unit is started */
3873 if ((adapter->flags & FLAG_RX_NEEDS_RESTART) &&
3874 (adapter->flags & FLAG_RX_RESTART_NOW)) {
3875 struct e1000_hw *hw = &adapter->hw;
3876 u32 rctl = er32(RCTL);
3877 ew32(RCTL, rctl | E1000_RCTL_EN);
3878 adapter->flags &= ~FLAG_RX_RESTART_NOW;
3879 }
3880}
3881
Auke Kokbc7f75f2007-09-17 12:30:59 -07003882/**
3883 * e1000_watchdog - Timer Call-back
3884 * @data: pointer to adapter cast into an unsigned long
3885 **/
3886static void e1000_watchdog(unsigned long data)
3887{
3888 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
3889
3890 /* Do the rest outside of interrupt context */
3891 schedule_work(&adapter->watchdog_task);
3892
3893 /* TODO: make this use queue_delayed_work() */
3894}
3895
3896static void e1000_watchdog_task(struct work_struct *work)
3897{
3898 struct e1000_adapter *adapter = container_of(work,
3899 struct e1000_adapter, watchdog_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003900 struct net_device *netdev = adapter->netdev;
3901 struct e1000_mac_info *mac = &adapter->hw.mac;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08003902 struct e1000_phy_info *phy = &adapter->hw.phy;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003903 struct e1000_ring *tx_ring = adapter->tx_ring;
3904 struct e1000_hw *hw = &adapter->hw;
3905 u32 link, tctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003906 int tx_pending = 0;
3907
David S. Millerb405e8d2010-02-04 22:31:41 -08003908 link = e1000e_has_link(adapter);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003909 if ((netif_carrier_ok(netdev)) && link) {
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003910 /* Cancel scheduled suspend requests. */
3911 pm_runtime_resume(netdev->dev.parent);
3912
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003913 e1000e_enable_receives(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003914 goto link_up;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003915 }
3916
3917 if ((e1000e_enable_tx_pkt_filtering(hw)) &&
3918 (adapter->mng_vlan_id != adapter->hw.mng_cookie.vlan_id))
3919 e1000_update_mng_vlan(adapter);
3920
Auke Kokbc7f75f2007-09-17 12:30:59 -07003921 if (link) {
3922 if (!netif_carrier_ok(netdev)) {
3923 bool txb2b = 1;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003924
3925 /* Cancel scheduled suspend requests. */
3926 pm_runtime_resume(netdev->dev.parent);
3927
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003928 /* update snapshot of PHY registers on LSC */
Bruce Allan7c257692008-04-23 11:09:00 -07003929 e1000_phy_read_status(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003930 mac->ops.get_link_up_info(&adapter->hw,
3931 &adapter->link_speed,
3932 &adapter->link_duplex);
3933 e1000_print_link_info(adapter);
Bruce Allanad680762008-03-28 09:15:03 -07003934 /*
Bruce Allanf4187b52008-08-26 18:36:50 -07003935 * On supported PHYs, check for duplex mismatch only
3936 * if link has autonegotiated at 10/100 half
3937 */
3938 if ((hw->phy.type == e1000_phy_igp_3 ||
3939 hw->phy.type == e1000_phy_bm) &&
3940 (hw->mac.autoneg == true) &&
3941 (adapter->link_speed == SPEED_10 ||
3942 adapter->link_speed == SPEED_100) &&
3943 (adapter->link_duplex == HALF_DUPLEX)) {
3944 u16 autoneg_exp;
3945
3946 e1e_rphy(hw, PHY_AUTONEG_EXP, &autoneg_exp);
3947
3948 if (!(autoneg_exp & NWAY_ER_LP_NWAY_CAPS))
3949 e_info("Autonegotiated half duplex but"
3950 " link partner cannot autoneg. "
3951 " Try forcing full duplex if "
3952 "link gets many collisions.\n");
3953 }
3954
Emil Tantilovf49c57e2010-03-24 12:55:02 +00003955 /* adjust timeout factor according to speed/duplex */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003956 adapter->tx_timeout_factor = 1;
3957 switch (adapter->link_speed) {
3958 case SPEED_10:
3959 txb2b = 0;
Bruce Allan10f1b492008-08-08 18:36:01 -07003960 adapter->tx_timeout_factor = 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003961 break;
3962 case SPEED_100:
3963 txb2b = 0;
Bruce Allan4c86e0b2009-11-19 12:35:26 +00003964 adapter->tx_timeout_factor = 10;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003965 break;
3966 }
3967
Bruce Allanad680762008-03-28 09:15:03 -07003968 /*
3969 * workaround: re-program speed mode bit after
3970 * link-up event
3971 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003972 if ((adapter->flags & FLAG_TARC_SPEED_MODE_BIT) &&
3973 !txb2b) {
3974 u32 tarc0;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003975 tarc0 = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003976 tarc0 &= ~SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07003977 ew32(TARC(0), tarc0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003978 }
3979
Bruce Allanad680762008-03-28 09:15:03 -07003980 /*
3981 * disable TSO for pcie and 10/100 speeds, to avoid
3982 * some hardware issues
3983 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003984 if (!(adapter->flags & FLAG_TSO_FORCE)) {
3985 switch (adapter->link_speed) {
3986 case SPEED_10:
3987 case SPEED_100:
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003988 e_info("10/100 speed: disabling TSO\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003989 netdev->features &= ~NETIF_F_TSO;
3990 netdev->features &= ~NETIF_F_TSO6;
3991 break;
3992 case SPEED_1000:
3993 netdev->features |= NETIF_F_TSO;
3994 netdev->features |= NETIF_F_TSO6;
3995 break;
3996 default:
3997 /* oops */
3998 break;
3999 }
4000 }
4001
Bruce Allanad680762008-03-28 09:15:03 -07004002 /*
4003 * enable transmits in the hardware, need to do this
4004 * after setting TARC(0)
4005 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004006 tctl = er32(TCTL);
4007 tctl |= E1000_TCTL_EN;
4008 ew32(TCTL, tctl);
4009
Bruce Allan75eb0fa2008-11-21 16:53:51 -08004010 /*
4011 * Perform any post-link-up configuration before
4012 * reporting link up.
4013 */
4014 if (phy->ops.cfg_on_link_up)
4015 phy->ops.cfg_on_link_up(hw);
4016
Auke Kokbc7f75f2007-09-17 12:30:59 -07004017 netif_carrier_on(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004018
4019 if (!test_bit(__E1000_DOWN, &adapter->state))
4020 mod_timer(&adapter->phy_info_timer,
4021 round_jiffies(jiffies + 2 * HZ));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004022 }
4023 } else {
4024 if (netif_carrier_ok(netdev)) {
4025 adapter->link_speed = 0;
4026 adapter->link_duplex = 0;
Bruce Allan8f12fe82008-11-21 16:54:43 -08004027 /* Link status message must follow this format */
4028 printk(KERN_INFO "e1000e: %s NIC Link is Down\n",
4029 adapter->netdev->name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004030 netif_carrier_off(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004031 if (!test_bit(__E1000_DOWN, &adapter->state))
4032 mod_timer(&adapter->phy_info_timer,
4033 round_jiffies(jiffies + 2 * HZ));
4034
4035 if (adapter->flags & FLAG_RX_NEEDS_RESTART)
4036 schedule_work(&adapter->reset_task);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004037 else
4038 pm_schedule_suspend(netdev->dev.parent,
4039 LINK_TIMEOUT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004040 }
4041 }
4042
4043link_up:
4044 e1000e_update_stats(adapter);
4045
4046 mac->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
4047 adapter->tpt_old = adapter->stats.tpt;
4048 mac->collision_delta = adapter->stats.colc - adapter->colc_old;
4049 adapter->colc_old = adapter->stats.colc;
4050
Bruce Allan7c257692008-04-23 11:09:00 -07004051 adapter->gorc = adapter->stats.gorc - adapter->gorc_old;
4052 adapter->gorc_old = adapter->stats.gorc;
4053 adapter->gotc = adapter->stats.gotc - adapter->gotc_old;
4054 adapter->gotc_old = adapter->stats.gotc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004055
4056 e1000e_update_adaptive(&adapter->hw);
4057
4058 if (!netif_carrier_ok(netdev)) {
4059 tx_pending = (e1000_desc_unused(tx_ring) + 1 <
4060 tx_ring->count);
4061 if (tx_pending) {
Bruce Allanad680762008-03-28 09:15:03 -07004062 /*
4063 * We've lost link, so the controller stops DMA,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004064 * but we've got queued Tx work that's never going
4065 * to get done, so reset controller to flush Tx.
Bruce Allanad680762008-03-28 09:15:03 -07004066 * (Do the reset outside of interrupt context).
4067 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004068 adapter->tx_timeout_count++;
4069 schedule_work(&adapter->reset_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00004070 /* return immediately since reset is imminent */
4071 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004072 }
4073 }
4074
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00004075 /* Simple mode for Interrupt Throttle Rate (ITR) */
4076 if (adapter->itr_setting == 4) {
4077 /*
4078 * Symmetric Tx/Rx gets a reduced ITR=2000;
4079 * Total asymmetrical Tx or Rx gets ITR=8000;
4080 * everyone else is between 2000-8000.
4081 */
4082 u32 goc = (adapter->gotc + adapter->gorc) / 10000;
4083 u32 dif = (adapter->gotc > adapter->gorc ?
4084 adapter->gotc - adapter->gorc :
4085 adapter->gorc - adapter->gotc) / 10000;
4086 u32 itr = goc > 0 ? (dif * 6000 / goc + 2000) : 8000;
4087
4088 ew32(ITR, 1000000000 / (itr * 256));
4089 }
4090
Bruce Allanad680762008-03-28 09:15:03 -07004091 /* Cause software interrupt to ensure Rx ring is cleaned */
Bruce Allan4662e822008-08-26 18:37:06 -07004092 if (adapter->msix_entries)
4093 ew32(ICS, adapter->rx_ring->ims_val);
4094 else
4095 ew32(ICS, E1000_ICS_RXDMT0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004096
4097 /* Force detection of hung controller every watchdog period */
4098 adapter->detect_tx_hung = 1;
4099
Bruce Allanad680762008-03-28 09:15:03 -07004100 /*
4101 * With 82571 controllers, LAA may be overwritten due to controller
4102 * reset from the other port. Set the appropriate LAA in RAR[0]
4103 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004104 if (e1000e_get_laa_state_82571(hw))
4105 e1000e_rar_set(hw, adapter->hw.mac.addr, 0);
4106
4107 /* Reset the timer */
4108 if (!test_bit(__E1000_DOWN, &adapter->state))
4109 mod_timer(&adapter->watchdog_timer,
4110 round_jiffies(jiffies + 2 * HZ));
4111}
4112
4113#define E1000_TX_FLAGS_CSUM 0x00000001
4114#define E1000_TX_FLAGS_VLAN 0x00000002
4115#define E1000_TX_FLAGS_TSO 0x00000004
4116#define E1000_TX_FLAGS_IPV4 0x00000008
4117#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
4118#define E1000_TX_FLAGS_VLAN_SHIFT 16
4119
4120static int e1000_tso(struct e1000_adapter *adapter,
4121 struct sk_buff *skb)
4122{
4123 struct e1000_ring *tx_ring = adapter->tx_ring;
4124 struct e1000_context_desc *context_desc;
4125 struct e1000_buffer *buffer_info;
4126 unsigned int i;
4127 u32 cmd_length = 0;
4128 u16 ipcse = 0, tucse, mss;
4129 u8 ipcss, ipcso, tucss, tucso, hdr_len;
4130 int err;
4131
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004132 if (!skb_is_gso(skb))
4133 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004134
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004135 if (skb_header_cloned(skb)) {
4136 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
4137 if (err)
4138 return err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004139 }
4140
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004141 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
4142 mss = skb_shinfo(skb)->gso_size;
4143 if (skb->protocol == htons(ETH_P_IP)) {
4144 struct iphdr *iph = ip_hdr(skb);
4145 iph->tot_len = 0;
4146 iph->check = 0;
4147 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
4148 0, IPPROTO_TCP, 0);
4149 cmd_length = E1000_TXD_CMD_IP;
4150 ipcse = skb_transport_offset(skb) - 1;
Sridhar Samudrala8e1e8a42010-01-23 02:02:21 -08004151 } else if (skb_is_gso_v6(skb)) {
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004152 ipv6_hdr(skb)->payload_len = 0;
4153 tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
4154 &ipv6_hdr(skb)->daddr,
4155 0, IPPROTO_TCP, 0);
4156 ipcse = 0;
4157 }
4158 ipcss = skb_network_offset(skb);
4159 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
4160 tucss = skb_transport_offset(skb);
4161 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
4162 tucse = 0;
4163
4164 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
4165 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
4166
4167 i = tx_ring->next_to_use;
4168 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
4169 buffer_info = &tx_ring->buffer_info[i];
4170
4171 context_desc->lower_setup.ip_fields.ipcss = ipcss;
4172 context_desc->lower_setup.ip_fields.ipcso = ipcso;
4173 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
4174 context_desc->upper_setup.tcp_fields.tucss = tucss;
4175 context_desc->upper_setup.tcp_fields.tucso = tucso;
4176 context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
4177 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
4178 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
4179 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
4180
4181 buffer_info->time_stamp = jiffies;
4182 buffer_info->next_to_watch = i;
4183
4184 i++;
4185 if (i == tx_ring->count)
4186 i = 0;
4187 tx_ring->next_to_use = i;
4188
4189 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004190}
4191
4192static bool e1000_tx_csum(struct e1000_adapter *adapter, struct sk_buff *skb)
4193{
4194 struct e1000_ring *tx_ring = adapter->tx_ring;
4195 struct e1000_context_desc *context_desc;
4196 struct e1000_buffer *buffer_info;
4197 unsigned int i;
4198 u8 css;
Dave Grahamaf807c82008-10-09 14:28:58 -07004199 u32 cmd_len = E1000_TXD_CMD_DEXT;
Arthur Jones5f66f202009-03-19 01:13:08 +00004200 __be16 protocol;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004201
Dave Grahamaf807c82008-10-09 14:28:58 -07004202 if (skb->ip_summed != CHECKSUM_PARTIAL)
4203 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004204
Arthur Jones5f66f202009-03-19 01:13:08 +00004205 if (skb->protocol == cpu_to_be16(ETH_P_8021Q))
4206 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
4207 else
4208 protocol = skb->protocol;
4209
Arthur Jones3f518392009-03-20 15:56:35 -07004210 switch (protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08004211 case cpu_to_be16(ETH_P_IP):
Dave Grahamaf807c82008-10-09 14:28:58 -07004212 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
4213 cmd_len |= E1000_TXD_CMD_TCP;
4214 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08004215 case cpu_to_be16(ETH_P_IPV6):
Dave Grahamaf807c82008-10-09 14:28:58 -07004216 /* XXX not handling all IPV6 headers */
4217 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
4218 cmd_len |= E1000_TXD_CMD_TCP;
4219 break;
4220 default:
4221 if (unlikely(net_ratelimit()))
Arthur Jones5f66f202009-03-19 01:13:08 +00004222 e_warn("checksum_partial proto=%x!\n",
4223 be16_to_cpu(protocol));
Dave Grahamaf807c82008-10-09 14:28:58 -07004224 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004225 }
4226
Dave Grahamaf807c82008-10-09 14:28:58 -07004227 css = skb_transport_offset(skb);
4228
4229 i = tx_ring->next_to_use;
4230 buffer_info = &tx_ring->buffer_info[i];
4231 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
4232
4233 context_desc->lower_setup.ip_config = 0;
4234 context_desc->upper_setup.tcp_fields.tucss = css;
4235 context_desc->upper_setup.tcp_fields.tucso =
4236 css + skb->csum_offset;
4237 context_desc->upper_setup.tcp_fields.tucse = 0;
4238 context_desc->tcp_seg_setup.data = 0;
4239 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
4240
4241 buffer_info->time_stamp = jiffies;
4242 buffer_info->next_to_watch = i;
4243
4244 i++;
4245 if (i == tx_ring->count)
4246 i = 0;
4247 tx_ring->next_to_use = i;
4248
4249 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004250}
4251
4252#define E1000_MAX_PER_TXD 8192
4253#define E1000_MAX_TXD_PWR 12
4254
4255static int e1000_tx_map(struct e1000_adapter *adapter,
4256 struct sk_buff *skb, unsigned int first,
4257 unsigned int max_per_txd, unsigned int nr_frags,
4258 unsigned int mss)
4259{
4260 struct e1000_ring *tx_ring = adapter->tx_ring;
Alexander Duyck03b13202009-12-02 16:45:31 +00004261 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004262 struct e1000_buffer *buffer_info;
Jesse Brandeburg8ddc9512009-03-02 16:02:53 -08004263 unsigned int len = skb_headlen(skb);
Alexander Duyck03b13202009-12-02 16:45:31 +00004264 unsigned int offset = 0, size, count = 0, i;
Tom Herbert9ed318d2010-05-05 14:02:27 +00004265 unsigned int f, bytecount, segs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004266
4267 i = tx_ring->next_to_use;
4268
4269 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004270 buffer_info = &tx_ring->buffer_info[i];
Auke Kokbc7f75f2007-09-17 12:30:59 -07004271 size = min(len, max_per_txd);
4272
Auke Kokbc7f75f2007-09-17 12:30:59 -07004273 buffer_info->length = size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004274 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004275 buffer_info->next_to_watch = i;
Nick Nunley0be3f552010-04-27 13:09:05 +00004276 buffer_info->dma = dma_map_single(&pdev->dev,
4277 skb->data + offset,
4278 size, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00004279 buffer_info->mapped_as_page = false;
Nick Nunley0be3f552010-04-27 13:09:05 +00004280 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00004281 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004282
4283 len -= size;
4284 offset += size;
Alexander Duyck03b13202009-12-02 16:45:31 +00004285 count++;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004286
4287 if (len) {
4288 i++;
4289 if (i == tx_ring->count)
4290 i = 0;
4291 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004292 }
4293
4294 for (f = 0; f < nr_frags; f++) {
4295 struct skb_frag_struct *frag;
4296
4297 frag = &skb_shinfo(skb)->frags[f];
4298 len = frag->size;
Alexander Duyck03b13202009-12-02 16:45:31 +00004299 offset = frag->page_offset;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004300
4301 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004302 i++;
4303 if (i == tx_ring->count)
4304 i = 0;
4305
Auke Kokbc7f75f2007-09-17 12:30:59 -07004306 buffer_info = &tx_ring->buffer_info[i];
4307 size = min(len, max_per_txd);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004308
4309 buffer_info->length = size;
4310 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004311 buffer_info->next_to_watch = i;
Nick Nunley0be3f552010-04-27 13:09:05 +00004312 buffer_info->dma = dma_map_page(&pdev->dev, frag->page,
Alexander Duyck03b13202009-12-02 16:45:31 +00004313 offset, size,
Nick Nunley0be3f552010-04-27 13:09:05 +00004314 DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00004315 buffer_info->mapped_as_page = true;
Nick Nunley0be3f552010-04-27 13:09:05 +00004316 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00004317 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004318
4319 len -= size;
4320 offset += size;
4321 count++;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004322 }
4323 }
4324
Tom Herbert9ed318d2010-05-05 14:02:27 +00004325 segs = skb_shinfo(skb)->gso_segs ?: 1;
4326 /* multiply data chunks by size of headers */
4327 bytecount = ((segs - 1) * skb_headlen(skb)) + skb->len;
4328
Auke Kokbc7f75f2007-09-17 12:30:59 -07004329 tx_ring->buffer_info[i].skb = skb;
Tom Herbert9ed318d2010-05-05 14:02:27 +00004330 tx_ring->buffer_info[i].segs = segs;
4331 tx_ring->buffer_info[i].bytecount = bytecount;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004332 tx_ring->buffer_info[first].next_to_watch = i;
4333
4334 return count;
Alexander Duyck03b13202009-12-02 16:45:31 +00004335
4336dma_error:
4337 dev_err(&pdev->dev, "TX DMA map failed\n");
4338 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00004339 if (count)
Alexander Duyck03b13202009-12-02 16:45:31 +00004340 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00004341
4342 while (count--) {
4343 if (i==0)
Alexander Duyck03b13202009-12-02 16:45:31 +00004344 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00004345 i--;
Alexander Duyck03b13202009-12-02 16:45:31 +00004346 buffer_info = &tx_ring->buffer_info[i];
4347 e1000_put_txbuf(adapter, buffer_info);;
4348 }
4349
4350 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004351}
4352
4353static void e1000_tx_queue(struct e1000_adapter *adapter,
4354 int tx_flags, int count)
4355{
4356 struct e1000_ring *tx_ring = adapter->tx_ring;
4357 struct e1000_tx_desc *tx_desc = NULL;
4358 struct e1000_buffer *buffer_info;
4359 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
4360 unsigned int i;
4361
4362 if (tx_flags & E1000_TX_FLAGS_TSO) {
4363 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
4364 E1000_TXD_CMD_TSE;
4365 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
4366
4367 if (tx_flags & E1000_TX_FLAGS_IPV4)
4368 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
4369 }
4370
4371 if (tx_flags & E1000_TX_FLAGS_CSUM) {
4372 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
4373 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
4374 }
4375
4376 if (tx_flags & E1000_TX_FLAGS_VLAN) {
4377 txd_lower |= E1000_TXD_CMD_VLE;
4378 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
4379 }
4380
4381 i = tx_ring->next_to_use;
4382
4383 while (count--) {
4384 buffer_info = &tx_ring->buffer_info[i];
4385 tx_desc = E1000_TX_DESC(*tx_ring, i);
4386 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4387 tx_desc->lower.data =
4388 cpu_to_le32(txd_lower | buffer_info->length);
4389 tx_desc->upper.data = cpu_to_le32(txd_upper);
4390
4391 i++;
4392 if (i == tx_ring->count)
4393 i = 0;
4394 }
4395
4396 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
4397
Bruce Allanad680762008-03-28 09:15:03 -07004398 /*
4399 * Force memory writes to complete before letting h/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07004400 * know there are new descriptors to fetch. (Only
4401 * applicable for weak-ordered memory model archs,
Bruce Allanad680762008-03-28 09:15:03 -07004402 * such as IA-64).
4403 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004404 wmb();
4405
4406 tx_ring->next_to_use = i;
4407 writel(i, adapter->hw.hw_addr + tx_ring->tail);
Bruce Allanad680762008-03-28 09:15:03 -07004408 /*
4409 * we need this if more than one processor can write to our tail
4410 * at a time, it synchronizes IO on IA64/Altix systems
4411 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004412 mmiowb();
4413}
4414
4415#define MINIMUM_DHCP_PACKET_SIZE 282
4416static int e1000_transfer_dhcp_info(struct e1000_adapter *adapter,
4417 struct sk_buff *skb)
4418{
4419 struct e1000_hw *hw = &adapter->hw;
4420 u16 length, offset;
4421
4422 if (vlan_tx_tag_present(skb)) {
Joe Perches8e95a202009-12-03 07:58:21 +00004423 if (!((vlan_tx_tag_get(skb) == adapter->hw.mng_cookie.vlan_id) &&
4424 (adapter->hw.mng_cookie.status &
Auke Kokbc7f75f2007-09-17 12:30:59 -07004425 E1000_MNG_DHCP_COOKIE_STATUS_VLAN)))
4426 return 0;
4427 }
4428
4429 if (skb->len <= MINIMUM_DHCP_PACKET_SIZE)
4430 return 0;
4431
4432 if (((struct ethhdr *) skb->data)->h_proto != htons(ETH_P_IP))
4433 return 0;
4434
4435 {
4436 const struct iphdr *ip = (struct iphdr *)((u8 *)skb->data+14);
4437 struct udphdr *udp;
4438
4439 if (ip->protocol != IPPROTO_UDP)
4440 return 0;
4441
4442 udp = (struct udphdr *)((u8 *)ip + (ip->ihl << 2));
4443 if (ntohs(udp->dest) != 67)
4444 return 0;
4445
4446 offset = (u8 *)udp + 8 - skb->data;
4447 length = skb->len - offset;
4448 return e1000e_mng_write_dhcp_info(hw, (u8 *)udp + 8, length);
4449 }
4450
4451 return 0;
4452}
4453
4454static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
4455{
4456 struct e1000_adapter *adapter = netdev_priv(netdev);
4457
4458 netif_stop_queue(netdev);
Bruce Allanad680762008-03-28 09:15:03 -07004459 /*
4460 * Herbert's original patch had:
Auke Kokbc7f75f2007-09-17 12:30:59 -07004461 * smp_mb__after_netif_stop_queue();
Bruce Allanad680762008-03-28 09:15:03 -07004462 * but since that doesn't exist yet, just open code it.
4463 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004464 smp_mb();
4465
Bruce Allanad680762008-03-28 09:15:03 -07004466 /*
4467 * We need to check again in a case another CPU has just
4468 * made room available.
4469 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004470 if (e1000_desc_unused(adapter->tx_ring) < size)
4471 return -EBUSY;
4472
4473 /* A reprieve! */
4474 netif_start_queue(netdev);
4475 ++adapter->restart_queue;
4476 return 0;
4477}
4478
4479static int e1000_maybe_stop_tx(struct net_device *netdev, int size)
4480{
4481 struct e1000_adapter *adapter = netdev_priv(netdev);
4482
4483 if (e1000_desc_unused(adapter->tx_ring) >= size)
4484 return 0;
4485 return __e1000_maybe_stop_tx(netdev, size);
4486}
4487
4488#define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
Stephen Hemminger3b29a562009-08-31 19:50:55 +00004489static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
4490 struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004491{
4492 struct e1000_adapter *adapter = netdev_priv(netdev);
4493 struct e1000_ring *tx_ring = adapter->tx_ring;
4494 unsigned int first;
4495 unsigned int max_per_txd = E1000_MAX_PER_TXD;
4496 unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
4497 unsigned int tx_flags = 0;
Eric Dumazete743d312010-04-14 15:59:40 -07004498 unsigned int len = skb_headlen(skb);
Auke Kok4e6c7092007-10-05 14:15:23 -07004499 unsigned int nr_frags;
4500 unsigned int mss;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004501 int count = 0;
4502 int tso;
4503 unsigned int f;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004504
4505 if (test_bit(__E1000_DOWN, &adapter->state)) {
4506 dev_kfree_skb_any(skb);
4507 return NETDEV_TX_OK;
4508 }
4509
4510 if (skb->len <= 0) {
4511 dev_kfree_skb_any(skb);
4512 return NETDEV_TX_OK;
4513 }
4514
4515 mss = skb_shinfo(skb)->gso_size;
Bruce Allanad680762008-03-28 09:15:03 -07004516 /*
4517 * The controller does a simple calculation to
Auke Kokbc7f75f2007-09-17 12:30:59 -07004518 * make sure there is enough room in the FIFO before
4519 * initiating the DMA for each buffer. The calc is:
4520 * 4 = ceil(buffer len/mss). To make sure we don't
4521 * overrun the FIFO, adjust the max buffer len if mss
Bruce Allanad680762008-03-28 09:15:03 -07004522 * drops.
4523 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004524 if (mss) {
4525 u8 hdr_len;
4526 max_per_txd = min(mss << 2, max_per_txd);
4527 max_txd_pwr = fls(max_per_txd) - 1;
4528
Bruce Allanad680762008-03-28 09:15:03 -07004529 /*
4530 * TSO Workaround for 82571/2/3 Controllers -- if skb->data
4531 * points to just header, pull a few bytes of payload from
4532 * frags into skb->data
4533 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004534 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Bruce Allanad680762008-03-28 09:15:03 -07004535 /*
4536 * we do this workaround for ES2LAN, but it is un-necessary,
4537 * avoiding it could save a lot of cycles
4538 */
Auke Kok4e6c7092007-10-05 14:15:23 -07004539 if (skb->data_len && (hdr_len == len)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004540 unsigned int pull_size;
4541
4542 pull_size = min((unsigned int)4, skb->data_len);
4543 if (!__pskb_pull_tail(skb, pull_size)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004544 e_err("__pskb_pull_tail failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004545 dev_kfree_skb_any(skb);
4546 return NETDEV_TX_OK;
4547 }
Eric Dumazete743d312010-04-14 15:59:40 -07004548 len = skb_headlen(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004549 }
4550 }
4551
4552 /* reserve a descriptor for the offload context */
4553 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
4554 count++;
4555 count++;
4556
4557 count += TXD_USE_COUNT(len, max_txd_pwr);
4558
4559 nr_frags = skb_shinfo(skb)->nr_frags;
4560 for (f = 0; f < nr_frags; f++)
4561 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size,
4562 max_txd_pwr);
4563
4564 if (adapter->hw.mac.tx_pkt_filtering)
4565 e1000_transfer_dhcp_info(adapter, skb);
4566
Bruce Allanad680762008-03-28 09:15:03 -07004567 /*
4568 * need: count + 2 desc gap to keep tail from touching
4569 * head, otherwise try next time
4570 */
Jesse Brandeburg92af3e92009-01-19 14:17:08 +00004571 if (e1000_maybe_stop_tx(netdev, count + 2))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004572 return NETDEV_TX_BUSY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004573
4574 if (adapter->vlgrp && vlan_tx_tag_present(skb)) {
4575 tx_flags |= E1000_TX_FLAGS_VLAN;
4576 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
4577 }
4578
4579 first = tx_ring->next_to_use;
4580
4581 tso = e1000_tso(adapter, skb);
4582 if (tso < 0) {
4583 dev_kfree_skb_any(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004584 return NETDEV_TX_OK;
4585 }
4586
4587 if (tso)
4588 tx_flags |= E1000_TX_FLAGS_TSO;
4589 else if (e1000_tx_csum(adapter, skb))
4590 tx_flags |= E1000_TX_FLAGS_CSUM;
4591
Bruce Allanad680762008-03-28 09:15:03 -07004592 /*
4593 * Old method was to assume IPv4 packet by default if TSO was enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004594 * 82571 hardware supports TSO capabilities for IPv6 as well...
Bruce Allanad680762008-03-28 09:15:03 -07004595 * no longer assume, we must.
4596 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004597 if (skb->protocol == htons(ETH_P_IP))
4598 tx_flags |= E1000_TX_FLAGS_IPV4;
4599
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004600 /* if count is 0 then mapping error has occured */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004601 count = e1000_tx_map(adapter, skb, first, max_per_txd, nr_frags, mss);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004602 if (count) {
4603 e1000_tx_queue(adapter, tx_flags, count);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004604 /* Make sure there is space in the ring for the next send. */
4605 e1000_maybe_stop_tx(netdev, MAX_SKB_FRAGS + 2);
4606
4607 } else {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004608 dev_kfree_skb_any(skb);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004609 tx_ring->buffer_info[first].time_stamp = 0;
4610 tx_ring->next_to_use = first;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004611 }
4612
Auke Kokbc7f75f2007-09-17 12:30:59 -07004613 return NETDEV_TX_OK;
4614}
4615
4616/**
4617 * e1000_tx_timeout - Respond to a Tx Hang
4618 * @netdev: network interface device structure
4619 **/
4620static void e1000_tx_timeout(struct net_device *netdev)
4621{
4622 struct e1000_adapter *adapter = netdev_priv(netdev);
4623
4624 /* Do the reset outside of interrupt context */
4625 adapter->tx_timeout_count++;
4626 schedule_work(&adapter->reset_task);
4627}
4628
4629static void e1000_reset_task(struct work_struct *work)
4630{
4631 struct e1000_adapter *adapter;
4632 adapter = container_of(work, struct e1000_adapter, reset_task);
4633
Taku Izumi84f4ee92010-04-27 14:39:08 +00004634 e1000e_dump(adapter);
4635 e_err("Reset adapter\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004636 e1000e_reinit_locked(adapter);
4637}
4638
4639/**
4640 * e1000_get_stats - Get System Network Statistics
4641 * @netdev: network interface device structure
4642 *
4643 * Returns the address of the device statistics structure.
4644 * The statistics are actually updated from the timer callback.
4645 **/
4646static struct net_device_stats *e1000_get_stats(struct net_device *netdev)
4647{
Auke Kokbc7f75f2007-09-17 12:30:59 -07004648 /* only return the current stats */
Ajit Khaparde7274c202009-10-07 02:44:26 +00004649 return &netdev->stats;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004650}
4651
4652/**
4653 * e1000_change_mtu - Change the Maximum Transfer Unit
4654 * @netdev: network interface device structure
4655 * @new_mtu: new value for maximum frame size
4656 *
4657 * Returns 0 on success, negative on failure
4658 **/
4659static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
4660{
4661 struct e1000_adapter *adapter = netdev_priv(netdev);
4662 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
4663
Bruce Allan2adc55c2009-06-02 11:28:58 +00004664 /* Jumbo frame support */
4665 if ((max_frame > ETH_FRAME_LEN + ETH_FCS_LEN) &&
4666 !(adapter->flags & FLAG_HAS_JUMBO_FRAMES)) {
4667 e_err("Jumbo Frames not supported.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004668 return -EINVAL;
4669 }
4670
Bruce Allan2adc55c2009-06-02 11:28:58 +00004671 /* Supported frame sizes */
4672 if ((new_mtu < ETH_ZLEN + ETH_FCS_LEN + VLAN_HLEN) ||
4673 (max_frame > adapter->max_hw_frame_size)) {
4674 e_err("Unsupported MTU setting\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004675 return -EINVAL;
4676 }
4677
Bruce Allan6f461f62010-04-27 03:33:04 +00004678 /* 82573 Errata 17 */
4679 if (((adapter->hw.mac.type == e1000_82573) ||
4680 (adapter->hw.mac.type == e1000_82574)) &&
4681 (max_frame > ETH_FRAME_LEN + ETH_FCS_LEN)) {
4682 adapter->flags2 |= FLAG2_DISABLE_ASPM_L1;
4683 e1000e_disable_aspm(adapter->pdev, PCIE_LINK_STATE_L1);
4684 }
4685
Auke Kokbc7f75f2007-09-17 12:30:59 -07004686 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
4687 msleep(1);
Bruce Allan610c9922009-11-19 12:35:45 +00004688 /* e1000e_down -> e1000e_reset dependent on max_frame_size & mtu */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004689 adapter->max_frame_size = max_frame;
Bruce Allan610c9922009-11-19 12:35:45 +00004690 e_info("changing MTU from %d to %d\n", netdev->mtu, new_mtu);
4691 netdev->mtu = new_mtu;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004692 if (netif_running(netdev))
4693 e1000e_down(adapter);
4694
Bruce Allanad680762008-03-28 09:15:03 -07004695 /*
4696 * NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kokbc7f75f2007-09-17 12:30:59 -07004697 * means we reserve 2 more, this pushes us to allocate from the next
4698 * larger slab size.
Bruce Allanad680762008-03-28 09:15:03 -07004699 * i.e. RXBUFFER_2048 --> size-4096 slab
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004700 * However with the new *_jumbo_rx* routines, jumbo receives will use
4701 * fragmented skbs
Bruce Allanad680762008-03-28 09:15:03 -07004702 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004703
Jesse Brandeburg99261462010-01-22 22:56:16 +00004704 if (max_frame <= 2048)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004705 adapter->rx_buffer_len = 2048;
4706 else
4707 adapter->rx_buffer_len = 4096;
4708
4709 /* adjust allocation if LPE protects us, and we aren't using SBP */
4710 if ((max_frame == ETH_FRAME_LEN + ETH_FCS_LEN) ||
4711 (max_frame == ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN))
4712 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN
Bruce Allanad680762008-03-28 09:15:03 -07004713 + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004714
Auke Kokbc7f75f2007-09-17 12:30:59 -07004715 if (netif_running(netdev))
4716 e1000e_up(adapter);
4717 else
4718 e1000e_reset(adapter);
4719
4720 clear_bit(__E1000_RESETTING, &adapter->state);
4721
4722 return 0;
4723}
4724
4725static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
4726 int cmd)
4727{
4728 struct e1000_adapter *adapter = netdev_priv(netdev);
4729 struct mii_ioctl_data *data = if_mii(ifr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004730
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004731 if (adapter->hw.phy.media_type != e1000_media_type_copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004732 return -EOPNOTSUPP;
4733
4734 switch (cmd) {
4735 case SIOCGMIIPHY:
4736 data->phy_id = adapter->hw.phy.addr;
4737 break;
4738 case SIOCGMIIREG:
Bruce Allanb16a0022009-11-20 23:24:30 +00004739 e1000_phy_read_status(adapter);
4740
Bruce Allan7c257692008-04-23 11:09:00 -07004741 switch (data->reg_num & 0x1F) {
4742 case MII_BMCR:
4743 data->val_out = adapter->phy_regs.bmcr;
4744 break;
4745 case MII_BMSR:
4746 data->val_out = adapter->phy_regs.bmsr;
4747 break;
4748 case MII_PHYSID1:
4749 data->val_out = (adapter->hw.phy.id >> 16);
4750 break;
4751 case MII_PHYSID2:
4752 data->val_out = (adapter->hw.phy.id & 0xFFFF);
4753 break;
4754 case MII_ADVERTISE:
4755 data->val_out = adapter->phy_regs.advertise;
4756 break;
4757 case MII_LPA:
4758 data->val_out = adapter->phy_regs.lpa;
4759 break;
4760 case MII_EXPANSION:
4761 data->val_out = adapter->phy_regs.expansion;
4762 break;
4763 case MII_CTRL1000:
4764 data->val_out = adapter->phy_regs.ctrl1000;
4765 break;
4766 case MII_STAT1000:
4767 data->val_out = adapter->phy_regs.stat1000;
4768 break;
4769 case MII_ESTATUS:
4770 data->val_out = adapter->phy_regs.estatus;
4771 break;
4772 default:
Auke Kokbc7f75f2007-09-17 12:30:59 -07004773 return -EIO;
4774 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004775 break;
4776 case SIOCSMIIREG:
4777 default:
4778 return -EOPNOTSUPP;
4779 }
4780 return 0;
4781}
4782
4783static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
4784{
4785 switch (cmd) {
4786 case SIOCGMIIPHY:
4787 case SIOCGMIIREG:
4788 case SIOCSMIIREG:
4789 return e1000_mii_ioctl(netdev, ifr, cmd);
4790 default:
4791 return -EOPNOTSUPP;
4792 }
4793}
4794
Bruce Allana4f58f52009-06-02 11:29:18 +00004795static int e1000_init_phy_wakeup(struct e1000_adapter *adapter, u32 wufc)
4796{
4797 struct e1000_hw *hw = &adapter->hw;
4798 u32 i, mac_reg;
4799 u16 phy_reg;
4800 int retval = 0;
4801
4802 /* copy MAC RARs to PHY RARs */
4803 for (i = 0; i < adapter->hw.mac.rar_entry_count; i++) {
4804 mac_reg = er32(RAL(i));
4805 e1e_wphy(hw, BM_RAR_L(i), (u16)(mac_reg & 0xFFFF));
4806 e1e_wphy(hw, BM_RAR_M(i), (u16)((mac_reg >> 16) & 0xFFFF));
4807 mac_reg = er32(RAH(i));
4808 e1e_wphy(hw, BM_RAR_H(i), (u16)(mac_reg & 0xFFFF));
4809 e1e_wphy(hw, BM_RAR_CTRL(i), (u16)((mac_reg >> 16) & 0xFFFF));
4810 }
4811
4812 /* copy MAC MTA to PHY MTA */
4813 for (i = 0; i < adapter->hw.mac.mta_reg_count; i++) {
4814 mac_reg = E1000_READ_REG_ARRAY(hw, E1000_MTA, i);
4815 e1e_wphy(hw, BM_MTA(i), (u16)(mac_reg & 0xFFFF));
4816 e1e_wphy(hw, BM_MTA(i) + 1, (u16)((mac_reg >> 16) & 0xFFFF));
4817 }
4818
4819 /* configure PHY Rx Control register */
4820 e1e_rphy(&adapter->hw, BM_RCTL, &phy_reg);
4821 mac_reg = er32(RCTL);
4822 if (mac_reg & E1000_RCTL_UPE)
4823 phy_reg |= BM_RCTL_UPE;
4824 if (mac_reg & E1000_RCTL_MPE)
4825 phy_reg |= BM_RCTL_MPE;
4826 phy_reg &= ~(BM_RCTL_MO_MASK);
4827 if (mac_reg & E1000_RCTL_MO_3)
4828 phy_reg |= (((mac_reg & E1000_RCTL_MO_3) >> E1000_RCTL_MO_SHIFT)
4829 << BM_RCTL_MO_SHIFT);
4830 if (mac_reg & E1000_RCTL_BAM)
4831 phy_reg |= BM_RCTL_BAM;
4832 if (mac_reg & E1000_RCTL_PMCF)
4833 phy_reg |= BM_RCTL_PMCF;
4834 mac_reg = er32(CTRL);
4835 if (mac_reg & E1000_CTRL_RFCE)
4836 phy_reg |= BM_RCTL_RFCE;
4837 e1e_wphy(&adapter->hw, BM_RCTL, phy_reg);
4838
4839 /* enable PHY wakeup in MAC register */
4840 ew32(WUFC, wufc);
4841 ew32(WUC, E1000_WUC_PHY_WAKE | E1000_WUC_PME_EN);
4842
4843 /* configure and enable PHY wakeup in PHY registers */
4844 e1e_wphy(&adapter->hw, BM_WUFC, wufc);
4845 e1e_wphy(&adapter->hw, BM_WUC, E1000_WUC_PME_EN);
4846
4847 /* activate PHY wakeup */
Bruce Allan94d81862009-11-20 23:25:26 +00004848 retval = hw->phy.ops.acquire(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00004849 if (retval) {
4850 e_err("Could not acquire PHY\n");
4851 return retval;
4852 }
4853 e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT,
4854 (BM_WUC_ENABLE_PAGE << IGP_PAGE_SHIFT));
4855 retval = e1000e_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, &phy_reg);
4856 if (retval) {
4857 e_err("Could not read PHY page 769\n");
4858 goto out;
4859 }
4860 phy_reg |= BM_WUC_ENABLE_BIT | BM_WUC_HOST_WU_BIT;
4861 retval = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg);
4862 if (retval)
4863 e_err("Could not set PHY Host Wakeup bit\n");
4864out:
Bruce Allan94d81862009-11-20 23:25:26 +00004865 hw->phy.ops.release(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00004866
4867 return retval;
4868}
4869
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004870static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake,
4871 bool runtime)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004872{
4873 struct net_device *netdev = pci_get_drvdata(pdev);
4874 struct e1000_adapter *adapter = netdev_priv(netdev);
4875 struct e1000_hw *hw = &adapter->hw;
4876 u32 ctrl, ctrl_ext, rctl, status;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004877 /* Runtime suspend should only enable wakeup for link changes */
4878 u32 wufc = runtime ? E1000_WUFC_LNKC : adapter->wol;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004879 int retval = 0;
4880
4881 netif_device_detach(netdev);
4882
4883 if (netif_running(netdev)) {
4884 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
4885 e1000e_down(adapter);
4886 e1000_free_irq(adapter);
4887 }
Bruce Allan4662e822008-08-26 18:37:06 -07004888 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004889
4890 retval = pci_save_state(pdev);
4891 if (retval)
4892 return retval;
4893
4894 status = er32(STATUS);
4895 if (status & E1000_STATUS_LU)
4896 wufc &= ~E1000_WUFC_LNKC;
4897
4898 if (wufc) {
4899 e1000_setup_rctl(adapter);
4900 e1000_set_multi(netdev);
4901
4902 /* turn on all-multi mode if wake on multicast is enabled */
4903 if (wufc & E1000_WUFC_MC) {
4904 rctl = er32(RCTL);
4905 rctl |= E1000_RCTL_MPE;
4906 ew32(RCTL, rctl);
4907 }
4908
4909 ctrl = er32(CTRL);
4910 /* advertise wake from D3Cold */
4911 #define E1000_CTRL_ADVD3WUC 0x00100000
4912 /* phy power management enable */
4913 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
Bruce Allana4f58f52009-06-02 11:29:18 +00004914 ctrl |= E1000_CTRL_ADVD3WUC;
4915 if (!(adapter->flags2 & FLAG2_HAS_PHY_WAKEUP))
4916 ctrl |= E1000_CTRL_EN_PHY_PWR_MGMT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004917 ew32(CTRL, ctrl);
4918
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004919 if (adapter->hw.phy.media_type == e1000_media_type_fiber ||
4920 adapter->hw.phy.media_type ==
4921 e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004922 /* keep the laser running in D3 */
4923 ctrl_ext = er32(CTRL_EXT);
Bruce Allan93a23f42009-12-08 07:27:41 +00004924 ctrl_ext |= E1000_CTRL_EXT_SDP3_DATA;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004925 ew32(CTRL_EXT, ctrl_ext);
4926 }
4927
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004928 if (adapter->flags & FLAG_IS_ICH)
4929 e1000e_disable_gig_wol_ich8lan(&adapter->hw);
4930
Auke Kokbc7f75f2007-09-17 12:30:59 -07004931 /* Allow time for pending master requests to run */
4932 e1000e_disable_pcie_master(&adapter->hw);
4933
Bruce Allan82776a42009-08-14 14:35:33 +00004934 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
Bruce Allana4f58f52009-06-02 11:29:18 +00004935 /* enable wakeup by the PHY */
4936 retval = e1000_init_phy_wakeup(adapter, wufc);
4937 if (retval)
4938 return retval;
4939 } else {
4940 /* enable wakeup by the MAC */
4941 ew32(WUFC, wufc);
4942 ew32(WUC, E1000_WUC_PME_EN);
4943 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004944 } else {
4945 ew32(WUC, 0);
4946 ew32(WUFC, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004947 }
4948
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004949 *enable_wake = !!wufc;
4950
Auke Kokbc7f75f2007-09-17 12:30:59 -07004951 /* make sure adapter isn't asleep if manageability is enabled */
Bruce Allan82776a42009-08-14 14:35:33 +00004952 if ((adapter->flags & FLAG_MNG_PT_ENABLED) ||
4953 (hw->mac.ops.check_mng_mode(hw)))
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004954 *enable_wake = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004955
4956 if (adapter->hw.phy.type == e1000_phy_igp_3)
4957 e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw);
4958
Bruce Allanad680762008-03-28 09:15:03 -07004959 /*
4960 * Release control of h/w to f/w. If f/w is AMT enabled, this
4961 * would have already happened in close and is redundant.
4962 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004963 e1000_release_hw_control(adapter);
4964
4965 pci_disable_device(pdev);
4966
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00004967 return 0;
4968}
4969
4970static void e1000_power_off(struct pci_dev *pdev, bool sleep, bool wake)
4971{
4972 if (sleep && wake) {
4973 pci_prepare_to_sleep(pdev);
4974 return;
4975 }
4976
4977 pci_wake_from_d3(pdev, wake);
4978 pci_set_power_state(pdev, PCI_D3hot);
4979}
4980
4981static void e1000_complete_shutdown(struct pci_dev *pdev, bool sleep,
4982 bool wake)
4983{
4984 struct net_device *netdev = pci_get_drvdata(pdev);
4985 struct e1000_adapter *adapter = netdev_priv(netdev);
4986
Alexander Duyck005cbdf2008-11-21 16:49:10 -08004987 /*
4988 * The pci-e switch on some quad port adapters will report a
4989 * correctable error when the MAC transitions from D0 to D3. To
4990 * prevent this we need to mask off the correctable errors on the
4991 * downstream port of the pci-e switch.
4992 */
4993 if (adapter->flags & FLAG_IS_QUAD_PORT) {
4994 struct pci_dev *us_dev = pdev->bus->self;
4995 int pos = pci_find_capability(us_dev, PCI_CAP_ID_EXP);
4996 u16 devctl;
4997
4998 pci_read_config_word(us_dev, pos + PCI_EXP_DEVCTL, &devctl);
4999 pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL,
5000 (devctl & ~PCI_EXP_DEVCTL_CERE));
5001
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005002 e1000_power_off(pdev, sleep, wake);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08005003
5004 pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, devctl);
5005 } else {
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005006 e1000_power_off(pdev, sleep, wake);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08005007 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005008}
5009
Bruce Allan6f461f62010-04-27 03:33:04 +00005010#ifdef CONFIG_PCIEASPM
5011static void __e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
5012{
5013 pci_disable_link_state(pdev, state);
5014}
5015#else
5016static void __e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
Auke Kok1eae4eb2007-10-31 15:22:00 -07005017{
5018 int pos;
Bruce Allan6f461f62010-04-27 03:33:04 +00005019 u16 reg16;
Auke Kok1eae4eb2007-10-31 15:22:00 -07005020
5021 /*
Bruce Allan6f461f62010-04-27 03:33:04 +00005022 * Both device and parent should have the same ASPM setting.
5023 * Disable ASPM in downstream component first and then upstream.
Auke Kok1eae4eb2007-10-31 15:22:00 -07005024 */
Bruce Allan6f461f62010-04-27 03:33:04 +00005025 pos = pci_pcie_cap(pdev);
5026 pci_read_config_word(pdev, pos + PCI_EXP_LNKCTL, &reg16);
5027 reg16 &= ~state;
5028 pci_write_config_word(pdev, pos + PCI_EXP_LNKCTL, reg16);
5029
Anton Blanchard0c75ba22010-04-28 21:46:06 +00005030 if (!pdev->bus->self)
5031 return;
5032
Bruce Allan6f461f62010-04-27 03:33:04 +00005033 pos = pci_pcie_cap(pdev->bus->self);
5034 pci_read_config_word(pdev->bus->self, pos + PCI_EXP_LNKCTL, &reg16);
5035 reg16 &= ~state;
5036 pci_write_config_word(pdev->bus->self, pos + PCI_EXP_LNKCTL, reg16);
5037}
5038#endif
5039void e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
5040{
5041 dev_info(&pdev->dev, "Disabling ASPM %s %s\n",
5042 (state & PCIE_LINK_STATE_L0S) ? "L0s" : "",
5043 (state & PCIE_LINK_STATE_L1) ? "L1" : "");
5044
5045 __e1000e_disable_aspm(pdev, state);
Auke Kok1eae4eb2007-10-31 15:22:00 -07005046}
5047
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005048#ifdef CONFIG_PM_OPS
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005049static bool e1000e_pm_ready(struct e1000_adapter *adapter)
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005050{
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005051 return !!adapter->tx_ring->buffer_info;
5052}
5053
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005054static int __e1000_resume(struct pci_dev *pdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005055{
5056 struct net_device *netdev = pci_get_drvdata(pdev);
5057 struct e1000_adapter *adapter = netdev_priv(netdev);
5058 struct e1000_hw *hw = &adapter->hw;
5059 u32 err;
5060
5061 pci_set_power_state(pdev, PCI_D0);
5062 pci_restore_state(pdev);
Bruce Allan28b8f042010-01-07 16:30:56 +00005063 pci_save_state(pdev);
Bruce Allan6f461f62010-04-27 03:33:04 +00005064 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
5065 e1000e_disable_aspm(pdev, PCIE_LINK_STATE_L1);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005066
Bruce Allan4662e822008-08-26 18:37:06 -07005067 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005068 if (netif_running(netdev)) {
5069 err = e1000_request_irq(adapter);
5070 if (err)
5071 return err;
5072 }
5073
5074 e1000e_power_up_phy(adapter);
Bruce Allana4f58f52009-06-02 11:29:18 +00005075
5076 /* report the system wakeup cause from S3/S4 */
5077 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
5078 u16 phy_data;
5079
5080 e1e_rphy(&adapter->hw, BM_WUS, &phy_data);
5081 if (phy_data) {
5082 e_info("PHY Wakeup cause - %s\n",
5083 phy_data & E1000_WUS_EX ? "Unicast Packet" :
5084 phy_data & E1000_WUS_MC ? "Multicast Packet" :
5085 phy_data & E1000_WUS_BC ? "Broadcast Packet" :
5086 phy_data & E1000_WUS_MAG ? "Magic Packet" :
5087 phy_data & E1000_WUS_LNKC ? "Link Status "
5088 " Change" : "other");
5089 }
5090 e1e_wphy(&adapter->hw, BM_WUS, ~0);
5091 } else {
5092 u32 wus = er32(WUS);
5093 if (wus) {
5094 e_info("MAC Wakeup cause - %s\n",
5095 wus & E1000_WUS_EX ? "Unicast Packet" :
5096 wus & E1000_WUS_MC ? "Multicast Packet" :
5097 wus & E1000_WUS_BC ? "Broadcast Packet" :
5098 wus & E1000_WUS_MAG ? "Magic Packet" :
5099 wus & E1000_WUS_LNKC ? "Link Status Change" :
5100 "other");
5101 }
5102 ew32(WUS, ~0);
5103 }
5104
Auke Kokbc7f75f2007-09-17 12:30:59 -07005105 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005106
5107 e1000_init_manageability(adapter);
5108
5109 if (netif_running(netdev))
5110 e1000e_up(adapter);
5111
5112 netif_device_attach(netdev);
5113
Bruce Allanad680762008-03-28 09:15:03 -07005114 /*
5115 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07005116 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07005117 * under the control of the driver.
5118 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005119 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005120 e1000_get_hw_control(adapter);
5121
5122 return 0;
5123}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005124
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005125#ifdef CONFIG_PM_SLEEP
5126static int e1000_suspend(struct device *dev)
5127{
5128 struct pci_dev *pdev = to_pci_dev(dev);
5129 int retval;
5130 bool wake;
5131
5132 retval = __e1000_shutdown(pdev, &wake, false);
5133 if (!retval)
5134 e1000_complete_shutdown(pdev, true, wake);
5135
5136 return retval;
5137}
5138
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005139static int e1000_resume(struct device *dev)
5140{
5141 struct pci_dev *pdev = to_pci_dev(dev);
5142 struct net_device *netdev = pci_get_drvdata(pdev);
5143 struct e1000_adapter *adapter = netdev_priv(netdev);
5144
5145 if (e1000e_pm_ready(adapter))
5146 adapter->idle_check = true;
5147
5148 return __e1000_resume(pdev);
5149}
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005150#endif /* CONFIG_PM_SLEEP */
5151
5152#ifdef CONFIG_PM_RUNTIME
5153static int e1000_runtime_suspend(struct device *dev)
5154{
5155 struct pci_dev *pdev = to_pci_dev(dev);
5156 struct net_device *netdev = pci_get_drvdata(pdev);
5157 struct e1000_adapter *adapter = netdev_priv(netdev);
5158
5159 if (e1000e_pm_ready(adapter)) {
5160 bool wake;
5161
5162 __e1000_shutdown(pdev, &wake, true);
5163 }
5164
5165 return 0;
5166}
5167
5168static int e1000_idle(struct device *dev)
5169{
5170 struct pci_dev *pdev = to_pci_dev(dev);
5171 struct net_device *netdev = pci_get_drvdata(pdev);
5172 struct e1000_adapter *adapter = netdev_priv(netdev);
5173
5174 if (!e1000e_pm_ready(adapter))
5175 return 0;
5176
5177 if (adapter->idle_check) {
5178 adapter->idle_check = false;
5179 if (!e1000e_has_link(adapter))
5180 pm_schedule_suspend(dev, MSEC_PER_SEC);
5181 }
5182
5183 return -EBUSY;
5184}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005185
5186static int e1000_runtime_resume(struct device *dev)
5187{
5188 struct pci_dev *pdev = to_pci_dev(dev);
5189 struct net_device *netdev = pci_get_drvdata(pdev);
5190 struct e1000_adapter *adapter = netdev_priv(netdev);
5191
5192 if (!e1000e_pm_ready(adapter))
5193 return 0;
5194
5195 adapter->idle_check = !dev->power.runtime_auto;
5196 return __e1000_resume(pdev);
5197}
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005198#endif /* CONFIG_PM_RUNTIME */
5199#endif /* CONFIG_PM_OPS */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005200
5201static void e1000_shutdown(struct pci_dev *pdev)
5202{
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005203 bool wake = false;
5204
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005205 __e1000_shutdown(pdev, &wake, false);
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005206
5207 if (system_state == SYSTEM_POWER_OFF)
5208 e1000_complete_shutdown(pdev, false, wake);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005209}
5210
5211#ifdef CONFIG_NET_POLL_CONTROLLER
5212/*
5213 * Polling 'interrupt' - used by things like netconsole to send skbs
5214 * without having to re-enable interrupts. It's not called while
5215 * the interrupt routine is executing.
5216 */
5217static void e1000_netpoll(struct net_device *netdev)
5218{
5219 struct e1000_adapter *adapter = netdev_priv(netdev);
5220
5221 disable_irq(adapter->pdev->irq);
5222 e1000_intr(adapter->pdev->irq, netdev);
5223
Auke Kokbc7f75f2007-09-17 12:30:59 -07005224 enable_irq(adapter->pdev->irq);
5225}
5226#endif
5227
5228/**
5229 * e1000_io_error_detected - called when PCI error is detected
5230 * @pdev: Pointer to PCI device
5231 * @state: The current pci connection state
5232 *
5233 * This function is called after a PCI bus error affecting
5234 * this device has been detected.
5235 */
5236static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
5237 pci_channel_state_t state)
5238{
5239 struct net_device *netdev = pci_get_drvdata(pdev);
5240 struct e1000_adapter *adapter = netdev_priv(netdev);
5241
5242 netif_device_detach(netdev);
5243
Mike Masonc93b5a72009-06-30 12:45:53 +00005244 if (state == pci_channel_io_perm_failure)
5245 return PCI_ERS_RESULT_DISCONNECT;
5246
Auke Kokbc7f75f2007-09-17 12:30:59 -07005247 if (netif_running(netdev))
5248 e1000e_down(adapter);
5249 pci_disable_device(pdev);
5250
5251 /* Request a slot slot reset. */
5252 return PCI_ERS_RESULT_NEED_RESET;
5253}
5254
5255/**
5256 * e1000_io_slot_reset - called after the pci bus has been reset.
5257 * @pdev: Pointer to PCI device
5258 *
5259 * Restart the card from scratch, as if from a cold-boot. Implementation
5260 * resembles the first-half of the e1000_resume routine.
5261 */
5262static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
5263{
5264 struct net_device *netdev = pci_get_drvdata(pdev);
5265 struct e1000_adapter *adapter = netdev_priv(netdev);
5266 struct e1000_hw *hw = &adapter->hw;
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005267 int err;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005268 pci_ers_result_t result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005269
Bruce Allan6f461f62010-04-27 03:33:04 +00005270 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
5271 e1000e_disable_aspm(pdev, PCIE_LINK_STATE_L1);
Bruce Allanf0f422e2008-08-04 17:21:53 -07005272 err = pci_enable_device_mem(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005273 if (err) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005274 dev_err(&pdev->dev,
5275 "Cannot re-enable PCI device after reset.\n");
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005276 result = PCI_ERS_RESULT_DISCONNECT;
5277 } else {
5278 pci_set_master(pdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005279 pdev->state_saved = true;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005280 pci_restore_state(pdev);
5281
5282 pci_enable_wake(pdev, PCI_D3hot, 0);
5283 pci_enable_wake(pdev, PCI_D3cold, 0);
5284
5285 e1000e_reset(adapter);
5286 ew32(WUS, ~0);
5287 result = PCI_ERS_RESULT_RECOVERED;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005288 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005289
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005290 pci_cleanup_aer_uncorrect_error_status(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005291
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005292 return result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005293}
5294
5295/**
5296 * e1000_io_resume - called when traffic can start flowing again.
5297 * @pdev: Pointer to PCI device
5298 *
5299 * This callback is called when the error recovery driver tells us that
5300 * its OK to resume normal operation. Implementation resembles the
5301 * second-half of the e1000_resume routine.
5302 */
5303static void e1000_io_resume(struct pci_dev *pdev)
5304{
5305 struct net_device *netdev = pci_get_drvdata(pdev);
5306 struct e1000_adapter *adapter = netdev_priv(netdev);
5307
5308 e1000_init_manageability(adapter);
5309
5310 if (netif_running(netdev)) {
5311 if (e1000e_up(adapter)) {
5312 dev_err(&pdev->dev,
5313 "can't bring device back up after reset\n");
5314 return;
5315 }
5316 }
5317
5318 netif_device_attach(netdev);
5319
Bruce Allanad680762008-03-28 09:15:03 -07005320 /*
5321 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07005322 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07005323 * under the control of the driver.
5324 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005325 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005326 e1000_get_hw_control(adapter);
5327
5328}
5329
5330static void e1000_print_device_info(struct e1000_adapter *adapter)
5331{
5332 struct e1000_hw *hw = &adapter->hw;
5333 struct net_device *netdev = adapter->netdev;
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005334 u32 pba_num;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005335
5336 /* print bus type/speed/width info */
Johannes Berg7c510e42008-10-27 17:47:26 -07005337 e_info("(PCI Express:2.5GB/s:%s) %pM\n",
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005338 /* bus width */
5339 ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" :
5340 "Width x1"),
5341 /* MAC address */
Johannes Berg7c510e42008-10-27 17:47:26 -07005342 netdev->dev_addr);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005343 e_info("Intel(R) PRO/%s Network Connection\n",
5344 (hw->phy.type == e1000_phy_ife) ? "10/100" : "1000");
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005345 e1000e_read_pba_num(hw, &pba_num);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005346 e_info("MAC: %d, PHY: %d, PBA No: %06x-%03x\n",
5347 hw->mac.type, hw->phy.type, (pba_num >> 8), (pba_num & 0xff));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005348}
5349
Auke Kok10aa4c02008-08-04 17:21:20 -07005350static void e1000_eeprom_checks(struct e1000_adapter *adapter)
5351{
5352 struct e1000_hw *hw = &adapter->hw;
5353 int ret_val;
5354 u16 buf = 0;
5355
5356 if (hw->mac.type != e1000_82573)
5357 return;
5358
5359 ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &buf);
Bruce Allane2434552008-11-21 17:02:41 -08005360 if (!ret_val && (!(le16_to_cpu(buf) & (1 << 0)))) {
Auke Kok10aa4c02008-08-04 17:21:20 -07005361 /* Deep Smart Power Down (DSPD) */
Frans Pop6c2a9ef2008-09-22 14:52:22 -07005362 dev_warn(&adapter->pdev->dev,
5363 "Warning: detected DSPD enabled in EEPROM\n");
Auke Kok10aa4c02008-08-04 17:21:20 -07005364 }
Auke Kok10aa4c02008-08-04 17:21:20 -07005365}
5366
Stephen Hemminger651c2462008-11-19 21:57:48 -08005367static const struct net_device_ops e1000e_netdev_ops = {
5368 .ndo_open = e1000_open,
5369 .ndo_stop = e1000_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08005370 .ndo_start_xmit = e1000_xmit_frame,
Stephen Hemminger651c2462008-11-19 21:57:48 -08005371 .ndo_get_stats = e1000_get_stats,
5372 .ndo_set_multicast_list = e1000_set_multi,
5373 .ndo_set_mac_address = e1000_set_mac,
5374 .ndo_change_mtu = e1000_change_mtu,
5375 .ndo_do_ioctl = e1000_ioctl,
5376 .ndo_tx_timeout = e1000_tx_timeout,
5377 .ndo_validate_addr = eth_validate_addr,
5378
5379 .ndo_vlan_rx_register = e1000_vlan_rx_register,
5380 .ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
5381 .ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
5382#ifdef CONFIG_NET_POLL_CONTROLLER
5383 .ndo_poll_controller = e1000_netpoll,
5384#endif
5385};
5386
Auke Kokbc7f75f2007-09-17 12:30:59 -07005387/**
5388 * e1000_probe - Device Initialization Routine
5389 * @pdev: PCI device information struct
5390 * @ent: entry in e1000_pci_tbl
5391 *
5392 * Returns 0 on success, negative on failure
5393 *
5394 * e1000_probe initializes an adapter identified by a pci_dev structure.
5395 * The OS initialization, configuring of the adapter private structure,
5396 * and a hardware reset occur.
5397 **/
5398static int __devinit e1000_probe(struct pci_dev *pdev,
5399 const struct pci_device_id *ent)
5400{
5401 struct net_device *netdev;
5402 struct e1000_adapter *adapter;
5403 struct e1000_hw *hw;
5404 const struct e1000_info *ei = e1000_info_tbl[ent->driver_data];
Becky Brucef47e81f2008-05-01 18:03:11 -05005405 resource_size_t mmio_start, mmio_len;
5406 resource_size_t flash_start, flash_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005407
5408 static int cards_found;
5409 int i, err, pci_using_dac;
5410 u16 eeprom_data = 0;
5411 u16 eeprom_apme_mask = E1000_EEPROM_APME;
5412
Bruce Allan6f461f62010-04-27 03:33:04 +00005413 if (ei->flags2 & FLAG2_DISABLE_ASPM_L1)
5414 e1000e_disable_aspm(pdev, PCIE_LINK_STATE_L1);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005415
Bruce Allanf0f422e2008-08-04 17:21:53 -07005416 err = pci_enable_device_mem(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005417 if (err)
5418 return err;
5419
5420 pci_using_dac = 0;
Nick Nunley0be3f552010-04-27 13:09:05 +00005421 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005422 if (!err) {
Nick Nunley0be3f552010-04-27 13:09:05 +00005423 err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005424 if (!err)
5425 pci_using_dac = 1;
5426 } else {
Nick Nunley0be3f552010-04-27 13:09:05 +00005427 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005428 if (err) {
Nick Nunley0be3f552010-04-27 13:09:05 +00005429 err = dma_set_coherent_mask(&pdev->dev,
5430 DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005431 if (err) {
5432 dev_err(&pdev->dev, "No usable DMA "
5433 "configuration, aborting\n");
5434 goto err_dma;
5435 }
5436 }
5437 }
5438
Arjan van de Vene8de1482008-10-22 19:55:31 -07005439 err = pci_request_selected_regions_exclusive(pdev,
Bruce Allanf0f422e2008-08-04 17:21:53 -07005440 pci_select_bars(pdev, IORESOURCE_MEM),
5441 e1000e_driver_name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005442 if (err)
5443 goto err_pci_reg;
5444
Xiaotian Feng68eac462009-08-14 14:35:52 +00005445 /* AER (Advanced Error Reporting) hooks */
Frans Pop19d5afd2009-10-02 10:04:12 -07005446 pci_enable_pcie_error_reporting(pdev);
Xiaotian Feng68eac462009-08-14 14:35:52 +00005447
Auke Kokbc7f75f2007-09-17 12:30:59 -07005448 pci_set_master(pdev);
Bruce Allan438b3652008-11-21 16:51:33 -08005449 /* PCI config space info */
5450 err = pci_save_state(pdev);
5451 if (err)
5452 goto err_alloc_etherdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005453
5454 err = -ENOMEM;
5455 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
5456 if (!netdev)
5457 goto err_alloc_etherdev;
5458
Auke Kokbc7f75f2007-09-17 12:30:59 -07005459 SET_NETDEV_DEV(netdev, &pdev->dev);
5460
Tom Herbertf85e4df2010-05-05 14:03:32 +00005461 netdev->irq = pdev->irq;
5462
Auke Kokbc7f75f2007-09-17 12:30:59 -07005463 pci_set_drvdata(pdev, netdev);
5464 adapter = netdev_priv(netdev);
5465 hw = &adapter->hw;
5466 adapter->netdev = netdev;
5467 adapter->pdev = pdev;
5468 adapter->ei = ei;
5469 adapter->pba = ei->pba;
5470 adapter->flags = ei->flags;
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00005471 adapter->flags2 = ei->flags2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005472 adapter->hw.adapter = adapter;
5473 adapter->hw.mac.type = ei->mac;
Bruce Allan2adc55c2009-06-02 11:28:58 +00005474 adapter->max_hw_frame_size = ei->max_hw_frame_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005475 adapter->msg_enable = (1 << NETIF_MSG_DRV | NETIF_MSG_PROBE) - 1;
5476
5477 mmio_start = pci_resource_start(pdev, 0);
5478 mmio_len = pci_resource_len(pdev, 0);
5479
5480 err = -EIO;
5481 adapter->hw.hw_addr = ioremap(mmio_start, mmio_len);
5482 if (!adapter->hw.hw_addr)
5483 goto err_ioremap;
5484
5485 if ((adapter->flags & FLAG_HAS_FLASH) &&
5486 (pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
5487 flash_start = pci_resource_start(pdev, 1);
5488 flash_len = pci_resource_len(pdev, 1);
5489 adapter->hw.flash_address = ioremap(flash_start, flash_len);
5490 if (!adapter->hw.flash_address)
5491 goto err_flashmap;
5492 }
5493
5494 /* construct the net_device struct */
Stephen Hemminger651c2462008-11-19 21:57:48 -08005495 netdev->netdev_ops = &e1000e_netdev_ops;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005496 e1000e_set_ethtool_ops(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005497 netdev->watchdog_timeo = 5 * HZ;
5498 netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005499 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
5500
5501 netdev->mem_start = mmio_start;
5502 netdev->mem_end = mmio_start + mmio_len;
5503
5504 adapter->bd_number = cards_found++;
5505
Bruce Allan4662e822008-08-26 18:37:06 -07005506 e1000e_check_options(adapter);
5507
Auke Kokbc7f75f2007-09-17 12:30:59 -07005508 /* setup adapter struct */
5509 err = e1000_sw_init(adapter);
5510 if (err)
5511 goto err_sw_init;
5512
5513 err = -EIO;
5514
5515 memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops));
5516 memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops));
5517 memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops));
5518
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005519 err = ei->get_variants(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005520 if (err)
5521 goto err_hw_init;
5522
Bruce Allan4a770352008-10-01 17:18:35 -07005523 if ((adapter->flags & FLAG_IS_ICH) &&
5524 (adapter->flags & FLAG_READ_ONLY_NVM))
5525 e1000e_write_protect_nvm_ich8lan(&adapter->hw);
5526
Auke Kokbc7f75f2007-09-17 12:30:59 -07005527 hw->mac.ops.get_bus_info(&adapter->hw);
5528
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005529 adapter->hw.phy.autoneg_wait_to_complete = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005530
5531 /* Copper options */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005532 if (adapter->hw.phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005533 adapter->hw.phy.mdix = AUTO_ALL_MODES;
5534 adapter->hw.phy.disable_polarity_correction = 0;
5535 adapter->hw.phy.ms_type = e1000_ms_hw_default;
5536 }
5537
5538 if (e1000_check_reset_block(&adapter->hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005539 e_info("PHY reset is blocked due to SOL/IDER session.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005540
5541 netdev->features = NETIF_F_SG |
5542 NETIF_F_HW_CSUM |
5543 NETIF_F_HW_VLAN_TX |
5544 NETIF_F_HW_VLAN_RX;
5545
5546 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
5547 netdev->features |= NETIF_F_HW_VLAN_FILTER;
5548
5549 netdev->features |= NETIF_F_TSO;
5550 netdev->features |= NETIF_F_TSO6;
5551
Jeff Kirshera5136e22008-06-05 04:07:28 -07005552 netdev->vlan_features |= NETIF_F_TSO;
5553 netdev->vlan_features |= NETIF_F_TSO6;
5554 netdev->vlan_features |= NETIF_F_HW_CSUM;
5555 netdev->vlan_features |= NETIF_F_SG;
5556
Auke Kokbc7f75f2007-09-17 12:30:59 -07005557 if (pci_using_dac)
5558 netdev->features |= NETIF_F_HIGHDMA;
5559
Auke Kokbc7f75f2007-09-17 12:30:59 -07005560 if (e1000e_enable_mng_pass_thru(&adapter->hw))
5561 adapter->flags |= FLAG_MNG_PT_ENABLED;
5562
Bruce Allanad680762008-03-28 09:15:03 -07005563 /*
5564 * before reading the NVM, reset the controller to
5565 * put the device in a known good starting state
5566 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005567 adapter->hw.mac.ops.reset_hw(&adapter->hw);
5568
5569 /*
5570 * systems with ASPM and others may see the checksum fail on the first
5571 * attempt. Let's give it a few tries
5572 */
5573 for (i = 0;; i++) {
5574 if (e1000_validate_nvm_checksum(&adapter->hw) >= 0)
5575 break;
5576 if (i == 2) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005577 e_err("The NVM Checksum Is Not Valid\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005578 err = -EIO;
5579 goto err_eeprom;
5580 }
5581 }
5582
Auke Kok10aa4c02008-08-04 17:21:20 -07005583 e1000_eeprom_checks(adapter);
5584
Bruce Allan608f8a02010-01-13 02:04:58 +00005585 /* copy the MAC address */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005586 if (e1000e_read_mac_addr(&adapter->hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005587 e_err("NVM Read Error while reading MAC address\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005588
5589 memcpy(netdev->dev_addr, adapter->hw.mac.addr, netdev->addr_len);
5590 memcpy(netdev->perm_addr, adapter->hw.mac.addr, netdev->addr_len);
5591
5592 if (!is_valid_ether_addr(netdev->perm_addr)) {
Johannes Berg7c510e42008-10-27 17:47:26 -07005593 e_err("Invalid MAC Address: %pM\n", netdev->perm_addr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005594 err = -EIO;
5595 goto err_eeprom;
5596 }
5597
5598 init_timer(&adapter->watchdog_timer);
5599 adapter->watchdog_timer.function = &e1000_watchdog;
5600 adapter->watchdog_timer.data = (unsigned long) adapter;
5601
5602 init_timer(&adapter->phy_info_timer);
5603 adapter->phy_info_timer.function = &e1000_update_phy_info;
5604 adapter->phy_info_timer.data = (unsigned long) adapter;
5605
5606 INIT_WORK(&adapter->reset_task, e1000_reset_task);
5607 INIT_WORK(&adapter->watchdog_task, e1000_watchdog_task);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07005608 INIT_WORK(&adapter->downshift_task, e1000e_downshift_workaround);
5609 INIT_WORK(&adapter->update_phy_task, e1000e_update_phy_task);
Bruce Allan41cec6f2009-11-20 23:28:56 +00005610 INIT_WORK(&adapter->print_hang_task, e1000_print_hw_hang);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005611
Auke Kokbc7f75f2007-09-17 12:30:59 -07005612 /* Initialize link parameters. User can change them with ethtool */
5613 adapter->hw.mac.autoneg = 1;
Auke Kok309af402007-10-05 15:22:02 -07005614 adapter->fc_autoneg = 1;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08005615 adapter->hw.fc.requested_mode = e1000_fc_default;
5616 adapter->hw.fc.current_mode = e1000_fc_default;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005617 adapter->hw.phy.autoneg_advertised = 0x2f;
5618
5619 /* ring size defaults */
5620 adapter->rx_ring->count = 256;
5621 adapter->tx_ring->count = 256;
5622
5623 /*
5624 * Initial Wake on LAN setting - If APM wake is enabled in
5625 * the EEPROM, enable the ACPI Magic Packet filter
5626 */
5627 if (adapter->flags & FLAG_APME_IN_WUC) {
5628 /* APME bit in EEPROM is mapped to WUC.APME */
5629 eeprom_data = er32(WUC);
5630 eeprom_apme_mask = E1000_WUC_APME;
Bruce Allana4f58f52009-06-02 11:29:18 +00005631 if (eeprom_data & E1000_WUC_PHY_WAKE)
5632 adapter->flags2 |= FLAG2_HAS_PHY_WAKEUP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005633 } else if (adapter->flags & FLAG_APME_IN_CTRL3) {
5634 if (adapter->flags & FLAG_APME_CHECK_PORT_B &&
5635 (adapter->hw.bus.func == 1))
5636 e1000_read_nvm(&adapter->hw,
5637 NVM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
5638 else
5639 e1000_read_nvm(&adapter->hw,
5640 NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
5641 }
5642
5643 /* fetch WoL from EEPROM */
5644 if (eeprom_data & eeprom_apme_mask)
5645 adapter->eeprom_wol |= E1000_WUFC_MAG;
5646
5647 /*
5648 * now that we have the eeprom settings, apply the special cases
5649 * where the eeprom may be wrong or the board simply won't support
5650 * wake on lan on a particular port
5651 */
5652 if (!(adapter->flags & FLAG_HAS_WOL))
5653 adapter->eeprom_wol = 0;
5654
5655 /* initialize the wol settings based on the eeprom settings */
5656 adapter->wol = adapter->eeprom_wol;
\"Rafael J. Wysocki\6ff68022008-11-12 09:52:32 +00005657 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005658
Bruce Allan84527592008-11-21 17:00:22 -08005659 /* save off EEPROM version number */
5660 e1000_read_nvm(&adapter->hw, 5, 1, &adapter->eeprom_vers);
5661
Auke Kokbc7f75f2007-09-17 12:30:59 -07005662 /* reset the hardware with the new settings */
5663 e1000e_reset(adapter);
5664
Bruce Allanad680762008-03-28 09:15:03 -07005665 /*
5666 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07005667 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07005668 * under the control of the driver.
5669 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005670 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005671 e1000_get_hw_control(adapter);
5672
Auke Kokbc7f75f2007-09-17 12:30:59 -07005673 strcpy(netdev->name, "eth%d");
5674 err = register_netdev(netdev);
5675 if (err)
5676 goto err_register;
5677
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00005678 /* carrier off reporting is important to ethtool even BEFORE open */
5679 netif_carrier_off(netdev);
5680
Auke Kokbc7f75f2007-09-17 12:30:59 -07005681 e1000_print_device_info(adapter);
5682
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005683 if (pci_dev_run_wake(pdev)) {
5684 pm_runtime_set_active(&pdev->dev);
5685 pm_runtime_enable(&pdev->dev);
5686 }
5687 pm_schedule_suspend(&pdev->dev, MSEC_PER_SEC);
5688
Auke Kokbc7f75f2007-09-17 12:30:59 -07005689 return 0;
5690
5691err_register:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005692 if (!(adapter->flags & FLAG_HAS_AMT))
5693 e1000_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005694err_eeprom:
5695 if (!e1000_check_reset_block(&adapter->hw))
5696 e1000_phy_hw_reset(&adapter->hw);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005697err_hw_init:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005698
Auke Kokbc7f75f2007-09-17 12:30:59 -07005699 kfree(adapter->tx_ring);
5700 kfree(adapter->rx_ring);
5701err_sw_init:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005702 if (adapter->hw.flash_address)
5703 iounmap(adapter->hw.flash_address);
Jeff Kirshere82f54b2008-11-14 06:45:07 +00005704 e1000e_reset_interrupt_capability(adapter);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005705err_flashmap:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005706 iounmap(adapter->hw.hw_addr);
5707err_ioremap:
5708 free_netdev(netdev);
5709err_alloc_etherdev:
Bruce Allanf0f422e2008-08-04 17:21:53 -07005710 pci_release_selected_regions(pdev,
5711 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005712err_pci_reg:
5713err_dma:
5714 pci_disable_device(pdev);
5715 return err;
5716}
5717
5718/**
5719 * e1000_remove - Device Removal Routine
5720 * @pdev: PCI device information struct
5721 *
5722 * e1000_remove is called by the PCI subsystem to alert the driver
5723 * that it should release a PCI device. The could be caused by a
5724 * Hot-Plug event, or because the driver is going to be removed from
5725 * memory.
5726 **/
5727static void __devexit e1000_remove(struct pci_dev *pdev)
5728{
5729 struct net_device *netdev = pci_get_drvdata(pdev);
5730 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005731 bool down = test_bit(__E1000_DOWN, &adapter->state);
5732
5733 pm_runtime_get_sync(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005734
Bruce Allanad680762008-03-28 09:15:03 -07005735 /*
5736 * flush_scheduled work may reschedule our watchdog task, so
5737 * explicitly disable watchdog tasks from being rescheduled
5738 */
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005739 if (!down)
5740 set_bit(__E1000_DOWN, &adapter->state);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005741 del_timer_sync(&adapter->watchdog_timer);
5742 del_timer_sync(&adapter->phy_info_timer);
5743
Bruce Allan41cec6f2009-11-20 23:28:56 +00005744 cancel_work_sync(&adapter->reset_task);
5745 cancel_work_sync(&adapter->watchdog_task);
5746 cancel_work_sync(&adapter->downshift_task);
5747 cancel_work_sync(&adapter->update_phy_task);
5748 cancel_work_sync(&adapter->print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005749 flush_scheduled_work();
5750
Bruce Allan17f208d2009-12-01 15:47:22 +00005751 if (!(netdev->flags & IFF_UP))
5752 e1000_power_down_phy(adapter);
5753
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005754 /* Don't lie to e1000_close() down the road. */
5755 if (!down)
5756 clear_bit(__E1000_DOWN, &adapter->state);
Bruce Allan17f208d2009-12-01 15:47:22 +00005757 unregister_netdev(netdev);
5758
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005759 if (pci_dev_run_wake(pdev)) {
5760 pm_runtime_disable(&pdev->dev);
5761 pm_runtime_set_suspended(&pdev->dev);
5762 }
5763 pm_runtime_put_noidle(&pdev->dev);
5764
Bruce Allanad680762008-03-28 09:15:03 -07005765 /*
5766 * Release control of h/w to f/w. If f/w is AMT enabled, this
5767 * would have already happened in close and is redundant.
5768 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005769 e1000_release_hw_control(adapter);
5770
Bruce Allan4662e822008-08-26 18:37:06 -07005771 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005772 kfree(adapter->tx_ring);
5773 kfree(adapter->rx_ring);
5774
5775 iounmap(adapter->hw.hw_addr);
5776 if (adapter->hw.flash_address)
5777 iounmap(adapter->hw.flash_address);
Bruce Allanf0f422e2008-08-04 17:21:53 -07005778 pci_release_selected_regions(pdev,
5779 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005780
5781 free_netdev(netdev);
5782
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005783 /* AER disable */
Frans Pop19d5afd2009-10-02 10:04:12 -07005784 pci_disable_pcie_error_reporting(pdev);
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005785
Auke Kokbc7f75f2007-09-17 12:30:59 -07005786 pci_disable_device(pdev);
5787}
5788
5789/* PCI Error Recovery (ERS) */
5790static struct pci_error_handlers e1000_err_handler = {
5791 .error_detected = e1000_io_error_detected,
5792 .slot_reset = e1000_io_slot_reset,
5793 .resume = e1000_io_resume,
5794};
5795
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00005796static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005797 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_COPPER), board_82571 },
5798 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_FIBER), board_82571 },
5799 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER), board_82571 },
5800 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER_LP), board_82571 },
5801 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_FIBER), board_82571 },
5802 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES), board_82571 },
Auke Kok040babf2007-10-31 15:22:05 -07005803 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_DUAL), board_82571 },
5804 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_QUAD), board_82571 },
5805 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571PT_QUAD_COPPER), board_82571 },
Bruce Allanad680762008-03-28 09:15:03 -07005806
Auke Kokbc7f75f2007-09-17 12:30:59 -07005807 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI), board_82572 },
5808 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_COPPER), board_82572 },
5809 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_FIBER), board_82572 },
5810 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_SERDES), board_82572 },
Bruce Allanad680762008-03-28 09:15:03 -07005811
Auke Kokbc7f75f2007-09-17 12:30:59 -07005812 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E), board_82573 },
5813 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E_IAMT), board_82573 },
5814 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573L), board_82573 },
Bruce Allanad680762008-03-28 09:15:03 -07005815
Bruce Allan4662e822008-08-26 18:37:06 -07005816 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574L), board_82574 },
Bruce Allanbef28b12009-03-24 23:28:02 -07005817 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574LA), board_82574 },
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00005818 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82583V), board_82583 },
Bruce Allan4662e822008-08-26 18:37:06 -07005819
Auke Kokbc7f75f2007-09-17 12:30:59 -07005820 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_DPT),
5821 board_80003es2lan },
5822 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_SPT),
5823 board_80003es2lan },
5824 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_DPT),
5825 board_80003es2lan },
5826 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_SPT),
5827 board_80003es2lan },
Bruce Allanad680762008-03-28 09:15:03 -07005828
Auke Kokbc7f75f2007-09-17 12:30:59 -07005829 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE), board_ich8lan },
5830 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_G), board_ich8lan },
5831 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_GT), board_ich8lan },
5832 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_AMT), board_ich8lan },
5833 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_C), board_ich8lan },
5834 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M), board_ich8lan },
5835 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M_AMT), board_ich8lan },
Bruce Allan9e135a22009-12-01 15:50:31 +00005836 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_82567V_3), board_ich8lan },
Bruce Allanad680762008-03-28 09:15:03 -07005837
Auke Kokbc7f75f2007-09-17 12:30:59 -07005838 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE), board_ich9lan },
5839 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_G), board_ich9lan },
5840 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_GT), board_ich9lan },
5841 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_AMT), board_ich9lan },
5842 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_C), board_ich9lan },
Bruce Allan2f15f9d2008-08-26 18:36:36 -07005843 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_BM), board_ich9lan },
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005844 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M), board_ich9lan },
5845 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_AMT), board_ich9lan },
5846 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_V), board_ich9lan },
5847
5848 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LM), board_ich9lan },
5849 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LF), board_ich9lan },
5850 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_V), board_ich9lan },
Auke Kokbc7f75f2007-09-17 12:30:59 -07005851
Bruce Allanf4187b52008-08-26 18:36:50 -07005852 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LM), board_ich10lan },
5853 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LF), board_ich10lan },
5854
Bruce Allana4f58f52009-06-02 11:29:18 +00005855 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LM), board_pchlan },
5856 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LC), board_pchlan },
5857 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DM), board_pchlan },
5858 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DC), board_pchlan },
5859
Auke Kokbc7f75f2007-09-17 12:30:59 -07005860 { } /* terminate list */
5861};
5862MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
5863
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005864#ifdef CONFIG_PM_OPS
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005865static const struct dev_pm_ops e1000_pm_ops = {
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005866 SET_SYSTEM_SLEEP_PM_OPS(e1000_suspend, e1000_resume)
5867 SET_RUNTIME_PM_OPS(e1000_runtime_suspend,
5868 e1000_runtime_resume, e1000_idle)
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005869};
David S. Millere50208a2010-03-16 23:36:24 -07005870#endif
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005871
Auke Kokbc7f75f2007-09-17 12:30:59 -07005872/* PCI Device API Driver */
5873static struct pci_driver e1000_driver = {
5874 .name = e1000e_driver_name,
5875 .id_table = e1000_pci_tbl,
5876 .probe = e1000_probe,
5877 .remove = __devexit_p(e1000_remove),
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005878#ifdef CONFIG_PM_OPS
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005879 .driver.pm = &e1000_pm_ops,
Auke Kokbc7f75f2007-09-17 12:30:59 -07005880#endif
5881 .shutdown = e1000_shutdown,
5882 .err_handler = &e1000_err_handler
5883};
5884
5885/**
5886 * e1000_init_module - Driver Registration Routine
5887 *
5888 * e1000_init_module is the first routine called when the driver is
5889 * loaded. All it does is register with the PCI subsystem.
5890 **/
5891static int __init e1000_init_module(void)
5892{
5893 int ret;
Bruce Allan8544b9f2010-03-24 12:55:30 +00005894 pr_info("Intel(R) PRO/1000 Network Driver - %s\n",
5895 e1000e_driver_version);
5896 pr_info("Copyright (c) 1999 - 2009 Intel Corporation.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005897 ret = pci_register_driver(&e1000_driver);
Bruce Allan53ec5492009-11-20 23:27:40 +00005898
Auke Kokbc7f75f2007-09-17 12:30:59 -07005899 return ret;
5900}
5901module_init(e1000_init_module);
5902
5903/**
5904 * e1000_exit_module - Driver Exit Cleanup Routine
5905 *
5906 * e1000_exit_module is called just before the driver is removed
5907 * from memory.
5908 **/
5909static void __exit e1000_exit_module(void)
5910{
5911 pci_unregister_driver(&e1000_driver);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005912}
5913module_exit(e1000_exit_module);
5914
5915
5916MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
5917MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
5918MODULE_LICENSE("GPL");
5919MODULE_VERSION(DRV_VERSION);
5920
5921/* e1000_main.c */