blob: c9b66f4727e4535eb2de110133d86f0229eb36b0 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allan451152d2010-06-16 13:28:11 +00004 Copyright(c) 1999 - 2010 Intel Corporation.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
Bruce Allan8544b9f2010-03-24 12:55:30 +000029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Auke Kokbc7f75f2007-09-17 12:30:59 -070031#include <linux/module.h>
32#include <linux/types.h>
33#include <linux/init.h>
34#include <linux/pci.h>
35#include <linux/vmalloc.h>
36#include <linux/pagemap.h>
37#include <linux/delay.h>
38#include <linux/netdevice.h>
39#include <linux/tcp.h>
40#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070042#include <net/checksum.h>
43#include <net/ip6_checksum.h>
44#include <linux/mii.h>
45#include <linux/ethtool.h>
46#include <linux/if_vlan.h>
47#include <linux/cpu.h>
48#include <linux/smp.h>
Bruce Allan97ac8ca2008-04-29 09:16:05 -070049#include <linux/pm_qos_params.h>
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +000050#include <linux/pm_runtime.h>
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +000051#include <linux/aer.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070052
53#include "e1000.h"
54
Bruce Allanc14c6432010-06-16 13:28:34 +000055#define DRV_EXTRAVERSION "-k2"
56
57#define DRV_VERSION "1.2.7" DRV_EXTRAVERSION
Auke Kokbc7f75f2007-09-17 12:30:59 -070058char e1000e_driver_name[] = "e1000e";
59const char e1000e_driver_version[] = DRV_VERSION;
60
61static const struct e1000_info *e1000_info_tbl[] = {
62 [board_82571] = &e1000_82571_info,
63 [board_82572] = &e1000_82572_info,
64 [board_82573] = &e1000_82573_info,
Bruce Allan4662e822008-08-26 18:37:06 -070065 [board_82574] = &e1000_82574_info,
Alexander Duyck8c81c9c2009-03-19 01:12:27 +000066 [board_82583] = &e1000_82583_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070067 [board_80003es2lan] = &e1000_es2_info,
68 [board_ich8lan] = &e1000_ich8_info,
69 [board_ich9lan] = &e1000_ich9_info,
Bruce Allanf4187b52008-08-26 18:36:50 -070070 [board_ich10lan] = &e1000_ich10_info,
Bruce Allana4f58f52009-06-02 11:29:18 +000071 [board_pchlan] = &e1000_pch_info,
Bruce Alland3738bb2010-06-16 13:27:28 +000072 [board_pch2lan] = &e1000_pch2_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070073};
74
Taku Izumi84f4ee92010-04-27 14:39:08 +000075struct e1000_reg_info {
76 u32 ofs;
77 char *name;
78};
79
80#define E1000_RDFH 0x02410 /* Rx Data FIFO Head - RW */
81#define E1000_RDFT 0x02418 /* Rx Data FIFO Tail - RW */
82#define E1000_RDFHS 0x02420 /* Rx Data FIFO Head Saved - RW */
83#define E1000_RDFTS 0x02428 /* Rx Data FIFO Tail Saved - RW */
84#define E1000_RDFPC 0x02430 /* Rx Data FIFO Packet Count - RW */
85
86#define E1000_TDFH 0x03410 /* Tx Data FIFO Head - RW */
87#define E1000_TDFT 0x03418 /* Tx Data FIFO Tail - RW */
88#define E1000_TDFHS 0x03420 /* Tx Data FIFO Head Saved - RW */
89#define E1000_TDFTS 0x03428 /* Tx Data FIFO Tail Saved - RW */
90#define E1000_TDFPC 0x03430 /* Tx Data FIFO Packet Count - RW */
91
92static const struct e1000_reg_info e1000_reg_info_tbl[] = {
93
94 /* General Registers */
95 {E1000_CTRL, "CTRL"},
96 {E1000_STATUS, "STATUS"},
97 {E1000_CTRL_EXT, "CTRL_EXT"},
98
99 /* Interrupt Registers */
100 {E1000_ICR, "ICR"},
101
102 /* RX Registers */
103 {E1000_RCTL, "RCTL"},
104 {E1000_RDLEN, "RDLEN"},
105 {E1000_RDH, "RDH"},
106 {E1000_RDT, "RDT"},
107 {E1000_RDTR, "RDTR"},
108 {E1000_RXDCTL(0), "RXDCTL"},
109 {E1000_ERT, "ERT"},
110 {E1000_RDBAL, "RDBAL"},
111 {E1000_RDBAH, "RDBAH"},
112 {E1000_RDFH, "RDFH"},
113 {E1000_RDFT, "RDFT"},
114 {E1000_RDFHS, "RDFHS"},
115 {E1000_RDFTS, "RDFTS"},
116 {E1000_RDFPC, "RDFPC"},
117
118 /* TX Registers */
119 {E1000_TCTL, "TCTL"},
120 {E1000_TDBAL, "TDBAL"},
121 {E1000_TDBAH, "TDBAH"},
122 {E1000_TDLEN, "TDLEN"},
123 {E1000_TDH, "TDH"},
124 {E1000_TDT, "TDT"},
125 {E1000_TIDV, "TIDV"},
126 {E1000_TXDCTL(0), "TXDCTL"},
127 {E1000_TADV, "TADV"},
128 {E1000_TARC(0), "TARC"},
129 {E1000_TDFH, "TDFH"},
130 {E1000_TDFT, "TDFT"},
131 {E1000_TDFHS, "TDFHS"},
132 {E1000_TDFTS, "TDFTS"},
133 {E1000_TDFPC, "TDFPC"},
134
135 /* List Terminator */
136 {}
137};
138
139/*
140 * e1000_regdump - register printout routine
141 */
142static void e1000_regdump(struct e1000_hw *hw, struct e1000_reg_info *reginfo)
143{
144 int n = 0;
145 char rname[16];
146 u32 regs[8];
147
148 switch (reginfo->ofs) {
149 case E1000_RXDCTL(0):
150 for (n = 0; n < 2; n++)
151 regs[n] = __er32(hw, E1000_RXDCTL(n));
152 break;
153 case E1000_TXDCTL(0):
154 for (n = 0; n < 2; n++)
155 regs[n] = __er32(hw, E1000_TXDCTL(n));
156 break;
157 case E1000_TARC(0):
158 for (n = 0; n < 2; n++)
159 regs[n] = __er32(hw, E1000_TARC(n));
160 break;
161 default:
162 printk(KERN_INFO "%-15s %08x\n",
163 reginfo->name, __er32(hw, reginfo->ofs));
164 return;
165 }
166
167 snprintf(rname, 16, "%s%s", reginfo->name, "[0-1]");
168 printk(KERN_INFO "%-15s ", rname);
169 for (n = 0; n < 2; n++)
170 printk(KERN_CONT "%08x ", regs[n]);
171 printk(KERN_CONT "\n");
172}
173
174
175/*
176 * e1000e_dump - Print registers, tx-ring and rx-ring
177 */
178static void e1000e_dump(struct e1000_adapter *adapter)
179{
180 struct net_device *netdev = adapter->netdev;
181 struct e1000_hw *hw = &adapter->hw;
182 struct e1000_reg_info *reginfo;
183 struct e1000_ring *tx_ring = adapter->tx_ring;
184 struct e1000_tx_desc *tx_desc;
185 struct my_u0 { u64 a; u64 b; } *u0;
186 struct e1000_buffer *buffer_info;
187 struct e1000_ring *rx_ring = adapter->rx_ring;
188 union e1000_rx_desc_packet_split *rx_desc_ps;
189 struct e1000_rx_desc *rx_desc;
190 struct my_u1 { u64 a; u64 b; u64 c; u64 d; } *u1;
191 u32 staterr;
192 int i = 0;
193
194 if (!netif_msg_hw(adapter))
195 return;
196
197 /* Print netdevice Info */
198 if (netdev) {
199 dev_info(&adapter->pdev->dev, "Net device Info\n");
200 printk(KERN_INFO "Device Name state "
201 "trans_start last_rx\n");
202 printk(KERN_INFO "%-15s %016lX %016lX %016lX\n",
203 netdev->name,
204 netdev->state,
205 netdev->trans_start,
206 netdev->last_rx);
207 }
208
209 /* Print Registers */
210 dev_info(&adapter->pdev->dev, "Register Dump\n");
211 printk(KERN_INFO " Register Name Value\n");
212 for (reginfo = (struct e1000_reg_info *)e1000_reg_info_tbl;
213 reginfo->name; reginfo++) {
214 e1000_regdump(hw, reginfo);
215 }
216
217 /* Print TX Ring Summary */
218 if (!netdev || !netif_running(netdev))
219 goto exit;
220
221 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
222 printk(KERN_INFO "Queue [NTU] [NTC] [bi(ntc)->dma ]"
223 " leng ntw timestamp\n");
224 buffer_info = &tx_ring->buffer_info[tx_ring->next_to_clean];
225 printk(KERN_INFO " %5d %5X %5X %016llX %04X %3X %016llX\n",
226 0, tx_ring->next_to_use, tx_ring->next_to_clean,
Bruce Allan8eb64e62010-06-29 18:12:30 +0000227 (unsigned long long)buffer_info->dma,
Taku Izumi84f4ee92010-04-27 14:39:08 +0000228 buffer_info->length,
229 buffer_info->next_to_watch,
Bruce Allan8eb64e62010-06-29 18:12:30 +0000230 (unsigned long long)buffer_info->time_stamp);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000231
232 /* Print TX Rings */
233 if (!netif_msg_tx_done(adapter))
234 goto rx_ring_summary;
235
236 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
237
238 /* Transmit Descriptor Formats - DEXT[29] is 0 (Legacy) or 1 (Extended)
239 *
240 * Legacy Transmit Descriptor
241 * +--------------------------------------------------------------+
242 * 0 | Buffer Address [63:0] (Reserved on Write Back) |
243 * +--------------------------------------------------------------+
244 * 8 | Special | CSS | Status | CMD | CSO | Length |
245 * +--------------------------------------------------------------+
246 * 63 48 47 36 35 32 31 24 23 16 15 0
247 *
248 * Extended Context Descriptor (DTYP=0x0) for TSO or checksum offload
249 * 63 48 47 40 39 32 31 16 15 8 7 0
250 * +----------------------------------------------------------------+
251 * 0 | TUCSE | TUCS0 | TUCSS | IPCSE | IPCS0 | IPCSS |
252 * +----------------------------------------------------------------+
253 * 8 | MSS | HDRLEN | RSV | STA | TUCMD | DTYP | PAYLEN |
254 * +----------------------------------------------------------------+
255 * 63 48 47 40 39 36 35 32 31 24 23 20 19 0
256 *
257 * Extended Data Descriptor (DTYP=0x1)
258 * +----------------------------------------------------------------+
259 * 0 | Buffer Address [63:0] |
260 * +----------------------------------------------------------------+
261 * 8 | VLAN tag | POPTS | Rsvd | Status | Command | DTYP | DTALEN |
262 * +----------------------------------------------------------------+
263 * 63 48 47 40 39 36 35 32 31 24 23 20 19 0
264 */
265 printk(KERN_INFO "Tl[desc] [address 63:0 ] [SpeCssSCmCsLen]"
266 " [bi->dma ] leng ntw timestamp bi->skb "
267 "<-- Legacy format\n");
268 printk(KERN_INFO "Tc[desc] [Ce CoCsIpceCoS] [MssHlRSCm0Plen]"
269 " [bi->dma ] leng ntw timestamp bi->skb "
270 "<-- Ext Context format\n");
271 printk(KERN_INFO "Td[desc] [address 63:0 ] [VlaPoRSCm1Dlen]"
272 " [bi->dma ] leng ntw timestamp bi->skb "
273 "<-- Ext Data format\n");
274 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
275 tx_desc = E1000_TX_DESC(*tx_ring, i);
276 buffer_info = &tx_ring->buffer_info[i];
277 u0 = (struct my_u0 *)tx_desc;
278 printk(KERN_INFO "T%c[0x%03X] %016llX %016llX %016llX "
279 "%04X %3X %016llX %p",
280 (!(le64_to_cpu(u0->b) & (1<<29)) ? 'l' :
281 ((le64_to_cpu(u0->b) & (1<<20)) ? 'd' : 'c')), i,
Bruce Allan8eb64e62010-06-29 18:12:30 +0000282 (unsigned long long)le64_to_cpu(u0->a),
283 (unsigned long long)le64_to_cpu(u0->b),
284 (unsigned long long)buffer_info->dma,
285 buffer_info->length, buffer_info->next_to_watch,
286 (unsigned long long)buffer_info->time_stamp,
Taku Izumi84f4ee92010-04-27 14:39:08 +0000287 buffer_info->skb);
288 if (i == tx_ring->next_to_use && i == tx_ring->next_to_clean)
289 printk(KERN_CONT " NTC/U\n");
290 else if (i == tx_ring->next_to_use)
291 printk(KERN_CONT " NTU\n");
292 else if (i == tx_ring->next_to_clean)
293 printk(KERN_CONT " NTC\n");
294 else
295 printk(KERN_CONT "\n");
296
297 if (netif_msg_pktdata(adapter) && buffer_info->dma != 0)
298 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS,
299 16, 1, phys_to_virt(buffer_info->dma),
300 buffer_info->length, true);
301 }
302
303 /* Print RX Rings Summary */
304rx_ring_summary:
305 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
306 printk(KERN_INFO "Queue [NTU] [NTC]\n");
307 printk(KERN_INFO " %5d %5X %5X\n", 0,
308 rx_ring->next_to_use, rx_ring->next_to_clean);
309
310 /* Print RX Rings */
311 if (!netif_msg_rx_status(adapter))
312 goto exit;
313
314 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
315 switch (adapter->rx_ps_pages) {
316 case 1:
317 case 2:
318 case 3:
319 /* [Extended] Packet Split Receive Descriptor Format
320 *
321 * +-----------------------------------------------------+
322 * 0 | Buffer Address 0 [63:0] |
323 * +-----------------------------------------------------+
324 * 8 | Buffer Address 1 [63:0] |
325 * +-----------------------------------------------------+
326 * 16 | Buffer Address 2 [63:0] |
327 * +-----------------------------------------------------+
328 * 24 | Buffer Address 3 [63:0] |
329 * +-----------------------------------------------------+
330 */
331 printk(KERN_INFO "R [desc] [buffer 0 63:0 ] "
332 "[buffer 1 63:0 ] "
333 "[buffer 2 63:0 ] [buffer 3 63:0 ] [bi->dma ] "
334 "[bi->skb] <-- Ext Pkt Split format\n");
335 /* [Extended] Receive Descriptor (Write-Back) Format
336 *
337 * 63 48 47 32 31 13 12 8 7 4 3 0
338 * +------------------------------------------------------+
339 * 0 | Packet | IP | Rsvd | MRQ | Rsvd | MRQ RSS |
340 * | Checksum | Ident | | Queue | | Type |
341 * +------------------------------------------------------+
342 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
343 * +------------------------------------------------------+
344 * 63 48 47 32 31 20 19 0
345 */
346 printk(KERN_INFO "RWB[desc] [ck ipid mrqhsh] "
347 "[vl l0 ee es] "
348 "[ l3 l2 l1 hs] [reserved ] ---------------- "
349 "[bi->skb] <-- Ext Rx Write-Back format\n");
350 for (i = 0; i < rx_ring->count; i++) {
351 buffer_info = &rx_ring->buffer_info[i];
352 rx_desc_ps = E1000_RX_DESC_PS(*rx_ring, i);
353 u1 = (struct my_u1 *)rx_desc_ps;
354 staterr =
355 le32_to_cpu(rx_desc_ps->wb.middle.status_error);
356 if (staterr & E1000_RXD_STAT_DD) {
357 /* Descriptor Done */
358 printk(KERN_INFO "RWB[0x%03X] %016llX "
359 "%016llX %016llX %016llX "
360 "---------------- %p", i,
Bruce Allan8eb64e62010-06-29 18:12:30 +0000361 (unsigned long long)le64_to_cpu(u1->a),
362 (unsigned long long)le64_to_cpu(u1->b),
363 (unsigned long long)le64_to_cpu(u1->c),
364 (unsigned long long)le64_to_cpu(u1->d),
Taku Izumi84f4ee92010-04-27 14:39:08 +0000365 buffer_info->skb);
366 } else {
367 printk(KERN_INFO "R [0x%03X] %016llX "
368 "%016llX %016llX %016llX %016llX %p", i,
Bruce Allan8eb64e62010-06-29 18:12:30 +0000369 (unsigned long long)le64_to_cpu(u1->a),
370 (unsigned long long)le64_to_cpu(u1->b),
371 (unsigned long long)le64_to_cpu(u1->c),
372 (unsigned long long)le64_to_cpu(u1->d),
373 (unsigned long long)buffer_info->dma,
Taku Izumi84f4ee92010-04-27 14:39:08 +0000374 buffer_info->skb);
375
376 if (netif_msg_pktdata(adapter))
377 print_hex_dump(KERN_INFO, "",
378 DUMP_PREFIX_ADDRESS, 16, 1,
379 phys_to_virt(buffer_info->dma),
380 adapter->rx_ps_bsize0, true);
381 }
382
383 if (i == rx_ring->next_to_use)
384 printk(KERN_CONT " NTU\n");
385 else if (i == rx_ring->next_to_clean)
386 printk(KERN_CONT " NTC\n");
387 else
388 printk(KERN_CONT "\n");
389 }
390 break;
391 default:
392 case 0:
393 /* Legacy Receive Descriptor Format
394 *
395 * +-----------------------------------------------------+
396 * | Buffer Address [63:0] |
397 * +-----------------------------------------------------+
398 * | VLAN Tag | Errors | Status 0 | Packet csum | Length |
399 * +-----------------------------------------------------+
400 * 63 48 47 40 39 32 31 16 15 0
401 */
402 printk(KERN_INFO "Rl[desc] [address 63:0 ] "
403 "[vl er S cks ln] [bi->dma ] [bi->skb] "
404 "<-- Legacy format\n");
405 for (i = 0; rx_ring->desc && (i < rx_ring->count); i++) {
406 rx_desc = E1000_RX_DESC(*rx_ring, i);
407 buffer_info = &rx_ring->buffer_info[i];
408 u0 = (struct my_u0 *)rx_desc;
409 printk(KERN_INFO "Rl[0x%03X] %016llX %016llX "
Bruce Allan8eb64e62010-06-29 18:12:30 +0000410 "%016llX %p", i,
411 (unsigned long long)le64_to_cpu(u0->a),
412 (unsigned long long)le64_to_cpu(u0->b),
413 (unsigned long long)buffer_info->dma,
414 buffer_info->skb);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000415 if (i == rx_ring->next_to_use)
416 printk(KERN_CONT " NTU\n");
417 else if (i == rx_ring->next_to_clean)
418 printk(KERN_CONT " NTC\n");
419 else
420 printk(KERN_CONT "\n");
421
422 if (netif_msg_pktdata(adapter))
423 print_hex_dump(KERN_INFO, "",
424 DUMP_PREFIX_ADDRESS,
425 16, 1, phys_to_virt(buffer_info->dma),
426 adapter->rx_buffer_len, true);
427 }
428 }
429
430exit:
431 return;
432}
433
Auke Kokbc7f75f2007-09-17 12:30:59 -0700434/**
435 * e1000_desc_unused - calculate if we have unused descriptors
436 **/
437static int e1000_desc_unused(struct e1000_ring *ring)
438{
439 if (ring->next_to_clean > ring->next_to_use)
440 return ring->next_to_clean - ring->next_to_use - 1;
441
442 return ring->count + ring->next_to_clean - ring->next_to_use - 1;
443}
444
445/**
Bruce Allanad680762008-03-28 09:15:03 -0700446 * e1000_receive_skb - helper function to handle Rx indications
Auke Kokbc7f75f2007-09-17 12:30:59 -0700447 * @adapter: board private structure
448 * @status: descriptor status field as written by hardware
449 * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
450 * @skb: pointer to sk_buff to be indicated to stack
451 **/
452static void e1000_receive_skb(struct e1000_adapter *adapter,
453 struct net_device *netdev,
454 struct sk_buff *skb,
Al Viroa39fe742007-12-11 19:50:34 +0000455 u8 status, __le16 vlan)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700456{
457 skb->protocol = eth_type_trans(skb, netdev);
458
459 if (adapter->vlgrp && (status & E1000_RXD_STAT_VP))
Herbert Xuc405b822009-01-14 20:37:59 -0800460 vlan_gro_receive(&adapter->napi, adapter->vlgrp,
461 le16_to_cpu(vlan), skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700462 else
Herbert Xu89c88b12008-12-15 23:46:15 -0800463 napi_gro_receive(&adapter->napi, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700464}
465
466/**
467 * e1000_rx_checksum - Receive Checksum Offload for 82543
468 * @adapter: board private structure
469 * @status_err: receive descriptor status and error fields
470 * @csum: receive descriptor csum field
471 * @sk_buff: socket buffer with received data
472 **/
473static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
474 u32 csum, struct sk_buff *skb)
475{
476 u16 status = (u16)status_err;
477 u8 errors = (u8)(status_err >> 24);
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700478
479 skb_checksum_none_assert(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700480
481 /* Ignore Checksum bit is set */
482 if (status & E1000_RXD_STAT_IXSM)
483 return;
484 /* TCP/UDP checksum error bit is set */
485 if (errors & E1000_RXD_ERR_TCPE) {
486 /* let the stack verify checksum errors */
487 adapter->hw_csum_err++;
488 return;
489 }
490
491 /* TCP/UDP Checksum has not been calculated */
492 if (!(status & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)))
493 return;
494
495 /* It must be a TCP or UDP packet with a valid checksum */
496 if (status & E1000_RXD_STAT_TCPCS) {
497 /* TCP checksum is good */
498 skb->ip_summed = CHECKSUM_UNNECESSARY;
499 } else {
Bruce Allanad680762008-03-28 09:15:03 -0700500 /*
501 * IP fragment with UDP payload
502 * Hardware complements the payload checksum, so we undo it
Auke Kokbc7f75f2007-09-17 12:30:59 -0700503 * and then put the value in host order for further stack use.
504 */
Al Viroa39fe742007-12-11 19:50:34 +0000505 __sum16 sum = (__force __sum16)htons(csum);
506 skb->csum = csum_unfold(~sum);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700507 skb->ip_summed = CHECKSUM_COMPLETE;
508 }
509 adapter->hw_csum_good++;
510}
511
512/**
513 * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
514 * @adapter: address of board private structure
515 **/
516static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
517 int cleaned_count)
518{
519 struct net_device *netdev = adapter->netdev;
520 struct pci_dev *pdev = adapter->pdev;
521 struct e1000_ring *rx_ring = adapter->rx_ring;
522 struct e1000_rx_desc *rx_desc;
523 struct e1000_buffer *buffer_info;
524 struct sk_buff *skb;
525 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000526 unsigned int bufsz = adapter->rx_buffer_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700527
528 i = rx_ring->next_to_use;
529 buffer_info = &rx_ring->buffer_info[i];
530
531 while (cleaned_count--) {
532 skb = buffer_info->skb;
533 if (skb) {
534 skb_trim(skb, 0);
535 goto map_skb;
536 }
537
Eric Dumazet89d71a62009-10-13 05:34:20 +0000538 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700539 if (!skb) {
540 /* Better luck next round */
541 adapter->alloc_rx_buff_failed++;
542 break;
543 }
544
Auke Kokbc7f75f2007-09-17 12:30:59 -0700545 buffer_info->skb = skb;
546map_skb:
Nick Nunley0be3f552010-04-27 13:09:05 +0000547 buffer_info->dma = dma_map_single(&pdev->dev, skb->data,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700548 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +0000549 DMA_FROM_DEVICE);
550 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700551 dev_err(&pdev->dev, "RX DMA map failed\n");
552 adapter->rx_dma_failed++;
553 break;
554 }
555
556 rx_desc = E1000_RX_DESC(*rx_ring, i);
557 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
558
Tom Herbert50849d72010-05-05 14:02:49 +0000559 if (unlikely(!(i & (E1000_RX_BUFFER_WRITE - 1)))) {
560 /*
561 * Force memory writes to complete before letting h/w
562 * know there are new descriptors to fetch. (Only
563 * applicable for weak-ordered memory model archs,
564 * such as IA-64).
565 */
566 wmb();
567 writel(i, adapter->hw.hw_addr + rx_ring->tail);
568 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700569 i++;
570 if (i == rx_ring->count)
571 i = 0;
572 buffer_info = &rx_ring->buffer_info[i];
573 }
574
Tom Herbert50849d72010-05-05 14:02:49 +0000575 rx_ring->next_to_use = i;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700576}
577
578/**
579 * e1000_alloc_rx_buffers_ps - Replace used receive buffers; packet split
580 * @adapter: address of board private structure
581 **/
582static void e1000_alloc_rx_buffers_ps(struct e1000_adapter *adapter,
583 int cleaned_count)
584{
585 struct net_device *netdev = adapter->netdev;
586 struct pci_dev *pdev = adapter->pdev;
587 union e1000_rx_desc_packet_split *rx_desc;
588 struct e1000_ring *rx_ring = adapter->rx_ring;
589 struct e1000_buffer *buffer_info;
590 struct e1000_ps_page *ps_page;
591 struct sk_buff *skb;
592 unsigned int i, j;
593
594 i = rx_ring->next_to_use;
595 buffer_info = &rx_ring->buffer_info[i];
596
597 while (cleaned_count--) {
598 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
599
600 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -0700601 ps_page = &buffer_info->ps_pages[j];
602 if (j >= adapter->rx_ps_pages) {
603 /* all unused desc entries get hw null ptr */
Al Viroa39fe742007-12-11 19:50:34 +0000604 rx_desc->read.buffer_addr[j+1] = ~cpu_to_le64(0);
Auke Kok47f44e42007-10-25 13:57:44 -0700605 continue;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700606 }
Auke Kok47f44e42007-10-25 13:57:44 -0700607 if (!ps_page->page) {
608 ps_page->page = alloc_page(GFP_ATOMIC);
609 if (!ps_page->page) {
610 adapter->alloc_rx_buff_failed++;
611 goto no_buffers;
612 }
Nick Nunley0be3f552010-04-27 13:09:05 +0000613 ps_page->dma = dma_map_page(&pdev->dev,
614 ps_page->page,
615 0, PAGE_SIZE,
616 DMA_FROM_DEVICE);
617 if (dma_mapping_error(&pdev->dev,
618 ps_page->dma)) {
Auke Kok47f44e42007-10-25 13:57:44 -0700619 dev_err(&adapter->pdev->dev,
620 "RX DMA page map failed\n");
621 adapter->rx_dma_failed++;
622 goto no_buffers;
623 }
624 }
625 /*
626 * Refresh the desc even if buffer_addrs
627 * didn't change because each write-back
628 * erases this info.
629 */
630 rx_desc->read.buffer_addr[j+1] =
631 cpu_to_le64(ps_page->dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700632 }
633
Eric Dumazet89d71a62009-10-13 05:34:20 +0000634 skb = netdev_alloc_skb_ip_align(netdev,
635 adapter->rx_ps_bsize0);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700636
637 if (!skb) {
638 adapter->alloc_rx_buff_failed++;
639 break;
640 }
641
Auke Kokbc7f75f2007-09-17 12:30:59 -0700642 buffer_info->skb = skb;
Nick Nunley0be3f552010-04-27 13:09:05 +0000643 buffer_info->dma = dma_map_single(&pdev->dev, skb->data,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700644 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +0000645 DMA_FROM_DEVICE);
646 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700647 dev_err(&pdev->dev, "RX DMA map failed\n");
648 adapter->rx_dma_failed++;
649 /* cleanup skb */
650 dev_kfree_skb_any(skb);
651 buffer_info->skb = NULL;
652 break;
653 }
654
655 rx_desc->read.buffer_addr[0] = cpu_to_le64(buffer_info->dma);
656
Tom Herbert50849d72010-05-05 14:02:49 +0000657 if (unlikely(!(i & (E1000_RX_BUFFER_WRITE - 1)))) {
658 /*
659 * Force memory writes to complete before letting h/w
660 * know there are new descriptors to fetch. (Only
661 * applicable for weak-ordered memory model archs,
662 * such as IA-64).
663 */
664 wmb();
665 writel(i<<1, adapter->hw.hw_addr + rx_ring->tail);
666 }
667
Auke Kokbc7f75f2007-09-17 12:30:59 -0700668 i++;
669 if (i == rx_ring->count)
670 i = 0;
671 buffer_info = &rx_ring->buffer_info[i];
672 }
673
674no_buffers:
Tom Herbert50849d72010-05-05 14:02:49 +0000675 rx_ring->next_to_use = i;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700676}
677
678/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700679 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
680 * @adapter: address of board private structure
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700681 * @cleaned_count: number of buffers to allocate this pass
682 **/
683
684static void e1000_alloc_jumbo_rx_buffers(struct e1000_adapter *adapter,
685 int cleaned_count)
686{
687 struct net_device *netdev = adapter->netdev;
688 struct pci_dev *pdev = adapter->pdev;
689 struct e1000_rx_desc *rx_desc;
690 struct e1000_ring *rx_ring = adapter->rx_ring;
691 struct e1000_buffer *buffer_info;
692 struct sk_buff *skb;
693 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000694 unsigned int bufsz = 256 - 16 /* for skb_reserve */;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700695
696 i = rx_ring->next_to_use;
697 buffer_info = &rx_ring->buffer_info[i];
698
699 while (cleaned_count--) {
700 skb = buffer_info->skb;
701 if (skb) {
702 skb_trim(skb, 0);
703 goto check_page;
704 }
705
Eric Dumazet89d71a62009-10-13 05:34:20 +0000706 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700707 if (unlikely(!skb)) {
708 /* Better luck next round */
709 adapter->alloc_rx_buff_failed++;
710 break;
711 }
712
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700713 buffer_info->skb = skb;
714check_page:
715 /* allocate a new page if necessary */
716 if (!buffer_info->page) {
717 buffer_info->page = alloc_page(GFP_ATOMIC);
718 if (unlikely(!buffer_info->page)) {
719 adapter->alloc_rx_buff_failed++;
720 break;
721 }
722 }
723
724 if (!buffer_info->dma)
Nick Nunley0be3f552010-04-27 13:09:05 +0000725 buffer_info->dma = dma_map_page(&pdev->dev,
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700726 buffer_info->page, 0,
727 PAGE_SIZE,
Nick Nunley0be3f552010-04-27 13:09:05 +0000728 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700729
730 rx_desc = E1000_RX_DESC(*rx_ring, i);
731 rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
732
733 if (unlikely(++i == rx_ring->count))
734 i = 0;
735 buffer_info = &rx_ring->buffer_info[i];
736 }
737
738 if (likely(rx_ring->next_to_use != i)) {
739 rx_ring->next_to_use = i;
740 if (unlikely(i-- == 0))
741 i = (rx_ring->count - 1);
742
743 /* Force memory writes to complete before letting h/w
744 * know there are new descriptors to fetch. (Only
745 * applicable for weak-ordered memory model archs,
746 * such as IA-64). */
747 wmb();
748 writel(i, adapter->hw.hw_addr + rx_ring->tail);
749 }
750}
751
752/**
Auke Kokbc7f75f2007-09-17 12:30:59 -0700753 * e1000_clean_rx_irq - Send received data up the network stack; legacy
754 * @adapter: board private structure
755 *
756 * the return value indicates whether actual cleaning was done, there
757 * is no guarantee that everything was cleaned
758 **/
759static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
760 int *work_done, int work_to_do)
761{
762 struct net_device *netdev = adapter->netdev;
763 struct pci_dev *pdev = adapter->pdev;
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000764 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700765 struct e1000_ring *rx_ring = adapter->rx_ring;
766 struct e1000_rx_desc *rx_desc, *next_rxd;
767 struct e1000_buffer *buffer_info, *next_buffer;
768 u32 length;
769 unsigned int i;
770 int cleaned_count = 0;
771 bool cleaned = 0;
772 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
773
774 i = rx_ring->next_to_clean;
775 rx_desc = E1000_RX_DESC(*rx_ring, i);
776 buffer_info = &rx_ring->buffer_info[i];
777
778 while (rx_desc->status & E1000_RXD_STAT_DD) {
779 struct sk_buff *skb;
780 u8 status;
781
782 if (*work_done >= work_to_do)
783 break;
784 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +0000785 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700786
787 status = rx_desc->status;
788 skb = buffer_info->skb;
789 buffer_info->skb = NULL;
790
791 prefetch(skb->data - NET_IP_ALIGN);
792
793 i++;
794 if (i == rx_ring->count)
795 i = 0;
796 next_rxd = E1000_RX_DESC(*rx_ring, i);
797 prefetch(next_rxd);
798
799 next_buffer = &rx_ring->buffer_info[i];
800
801 cleaned = 1;
802 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +0000803 dma_unmap_single(&pdev->dev,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700804 buffer_info->dma,
805 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +0000806 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700807 buffer_info->dma = 0;
808
809 length = le16_to_cpu(rx_desc->length);
810
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000811 /*
812 * !EOP means multiple descriptors were used to store a single
813 * packet, if that's the case we need to toss it. In fact, we
814 * need to toss every packet with the EOP bit clear and the
815 * next frame that _does_ have the EOP bit set, as it is by
816 * definition only a frame fragment
817 */
818 if (unlikely(!(status & E1000_RXD_STAT_EOP)))
819 adapter->flags2 |= FLAG2_IS_DISCARDING;
820
821 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700822 /* All receives must fit into a single buffer */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000823 e_dbg("Receive packet consumed multiple buffers\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700824 /* recycle */
825 buffer_info->skb = skb;
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000826 if (status & E1000_RXD_STAT_EOP)
827 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700828 goto next_desc;
829 }
830
831 if (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK) {
832 /* recycle */
833 buffer_info->skb = skb;
834 goto next_desc;
835 }
836
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000837 /* adjust length to remove Ethernet CRC */
838 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
839 length -= 4;
840
Auke Kokbc7f75f2007-09-17 12:30:59 -0700841 total_rx_bytes += length;
842 total_rx_packets++;
843
Bruce Allanad680762008-03-28 09:15:03 -0700844 /*
845 * code added for copybreak, this should improve
Auke Kokbc7f75f2007-09-17 12:30:59 -0700846 * performance for small packets with large amounts
Bruce Allanad680762008-03-28 09:15:03 -0700847 * of reassembly being done in the stack
848 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700849 if (length < copybreak) {
850 struct sk_buff *new_skb =
Eric Dumazet89d71a62009-10-13 05:34:20 +0000851 netdev_alloc_skb_ip_align(netdev, length);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700852 if (new_skb) {
Bruce Allan808ff672008-08-08 18:35:56 -0700853 skb_copy_to_linear_data_offset(new_skb,
854 -NET_IP_ALIGN,
855 (skb->data -
856 NET_IP_ALIGN),
857 (length +
858 NET_IP_ALIGN));
Auke Kokbc7f75f2007-09-17 12:30:59 -0700859 /* save the skb in buffer_info as good */
860 buffer_info->skb = skb;
861 skb = new_skb;
862 }
863 /* else just continue with the old one */
864 }
865 /* end copybreak code */
866 skb_put(skb, length);
867
868 /* Receive Checksum Offload */
869 e1000_rx_checksum(adapter,
870 (u32)(status) |
871 ((u32)(rx_desc->errors) << 24),
872 le16_to_cpu(rx_desc->csum), skb);
873
874 e1000_receive_skb(adapter, netdev, skb,status,rx_desc->special);
875
876next_desc:
877 rx_desc->status = 0;
878
879 /* return some buffers to hardware, one at a time is too slow */
880 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
881 adapter->alloc_rx_buf(adapter, cleaned_count);
882 cleaned_count = 0;
883 }
884
885 /* use prefetched values */
886 rx_desc = next_rxd;
887 buffer_info = next_buffer;
888 }
889 rx_ring->next_to_clean = i;
890
891 cleaned_count = e1000_desc_unused(rx_ring);
892 if (cleaned_count)
893 adapter->alloc_rx_buf(adapter, cleaned_count);
894
Auke Kokbc7f75f2007-09-17 12:30:59 -0700895 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -0700896 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +0000897 netdev->stats.rx_bytes += total_rx_bytes;
898 netdev->stats.rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700899 return cleaned;
900}
901
Auke Kokbc7f75f2007-09-17 12:30:59 -0700902static void e1000_put_txbuf(struct e1000_adapter *adapter,
903 struct e1000_buffer *buffer_info)
904{
Alexander Duyck03b13202009-12-02 16:45:31 +0000905 if (buffer_info->dma) {
906 if (buffer_info->mapped_as_page)
Nick Nunley0be3f552010-04-27 13:09:05 +0000907 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
908 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +0000909 else
Nick Nunley0be3f552010-04-27 13:09:05 +0000910 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
911 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +0000912 buffer_info->dma = 0;
913 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700914 if (buffer_info->skb) {
915 dev_kfree_skb_any(buffer_info->skb);
916 buffer_info->skb = NULL;
917 }
Alexander Duyck1b7719c2009-03-19 01:12:50 +0000918 buffer_info->time_stamp = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700919}
920
Bruce Allan41cec6f2009-11-20 23:28:56 +0000921static void e1000_print_hw_hang(struct work_struct *work)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700922{
Bruce Allan41cec6f2009-11-20 23:28:56 +0000923 struct e1000_adapter *adapter = container_of(work,
924 struct e1000_adapter,
925 print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700926 struct e1000_ring *tx_ring = adapter->tx_ring;
927 unsigned int i = tx_ring->next_to_clean;
928 unsigned int eop = tx_ring->buffer_info[i].next_to_watch;
929 struct e1000_tx_desc *eop_desc = E1000_TX_DESC(*tx_ring, eop);
Bruce Allan41cec6f2009-11-20 23:28:56 +0000930 struct e1000_hw *hw = &adapter->hw;
931 u16 phy_status, phy_1000t_status, phy_ext_status;
932 u16 pci_status;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700933
Bruce Allan41cec6f2009-11-20 23:28:56 +0000934 e1e_rphy(hw, PHY_STATUS, &phy_status);
935 e1e_rphy(hw, PHY_1000T_STATUS, &phy_1000t_status);
936 e1e_rphy(hw, PHY_EXT_STATUS, &phy_ext_status);
937
938 pci_read_config_word(adapter->pdev, PCI_STATUS, &pci_status);
939
940 /* detected Hardware unit hang */
941 e_err("Detected Hardware Unit Hang:\n"
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700942 " TDH <%x>\n"
943 " TDT <%x>\n"
944 " next_to_use <%x>\n"
945 " next_to_clean <%x>\n"
946 "buffer_info[next_to_clean]:\n"
947 " time_stamp <%lx>\n"
948 " next_to_watch <%x>\n"
949 " jiffies <%lx>\n"
Bruce Allan41cec6f2009-11-20 23:28:56 +0000950 " next_to_watch.status <%x>\n"
951 "MAC Status <%x>\n"
952 "PHY Status <%x>\n"
953 "PHY 1000BASE-T Status <%x>\n"
954 "PHY Extended Status <%x>\n"
955 "PCI Status <%x>\n",
Jeff Kirsher44defeb2008-08-04 17:20:41 -0700956 readl(adapter->hw.hw_addr + tx_ring->head),
957 readl(adapter->hw.hw_addr + tx_ring->tail),
958 tx_ring->next_to_use,
959 tx_ring->next_to_clean,
960 tx_ring->buffer_info[eop].time_stamp,
961 eop,
962 jiffies,
Bruce Allan41cec6f2009-11-20 23:28:56 +0000963 eop_desc->upper.fields.status,
964 er32(STATUS),
965 phy_status,
966 phy_1000t_status,
967 phy_ext_status,
968 pci_status);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700969}
970
971/**
972 * e1000_clean_tx_irq - Reclaim resources after transmit completes
973 * @adapter: board private structure
974 *
975 * the return value indicates whether actual cleaning was done, there
976 * is no guarantee that everything was cleaned
977 **/
978static bool e1000_clean_tx_irq(struct e1000_adapter *adapter)
979{
980 struct net_device *netdev = adapter->netdev;
981 struct e1000_hw *hw = &adapter->hw;
982 struct e1000_ring *tx_ring = adapter->tx_ring;
983 struct e1000_tx_desc *tx_desc, *eop_desc;
984 struct e1000_buffer *buffer_info;
985 unsigned int i, eop;
986 unsigned int count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700987 unsigned int total_tx_bytes = 0, total_tx_packets = 0;
988
989 i = tx_ring->next_to_clean;
990 eop = tx_ring->buffer_info[i].next_to_watch;
991 eop_desc = E1000_TX_DESC(*tx_ring, eop);
992
Alexander Duyck12d04a32009-03-25 22:05:03 +0000993 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
994 (count < tx_ring->count)) {
Jesse Brandeburga86043c2009-04-16 16:59:28 +0000995 bool cleaned = false;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +0000996 rmb(); /* read buffer_info after eop_desc */
Jesse Brandeburga86043c2009-04-16 16:59:28 +0000997 for (; !cleaned; count++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700998 tx_desc = E1000_TX_DESC(*tx_ring, i);
999 buffer_info = &tx_ring->buffer_info[i];
1000 cleaned = (i == eop);
1001
1002 if (cleaned) {
Tom Herbert9ed318d2010-05-05 14:02:27 +00001003 total_tx_packets += buffer_info->segs;
1004 total_tx_bytes += buffer_info->bytecount;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001005 }
1006
1007 e1000_put_txbuf(adapter, buffer_info);
1008 tx_desc->upper.data = 0;
1009
1010 i++;
1011 if (i == tx_ring->count)
1012 i = 0;
1013 }
1014
Terry Loftindac87612010-04-09 10:29:49 +00001015 if (i == tx_ring->next_to_use)
1016 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001017 eop = tx_ring->buffer_info[i].next_to_watch;
1018 eop_desc = E1000_TX_DESC(*tx_ring, eop);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001019 }
1020
1021 tx_ring->next_to_clean = i;
1022
1023#define TX_WAKE_THRESHOLD 32
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001024 if (count && netif_carrier_ok(netdev) &&
1025 e1000_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001026 /* Make sure that anybody stopping the queue after this
1027 * sees the new next_to_clean.
1028 */
1029 smp_mb();
1030
1031 if (netif_queue_stopped(netdev) &&
1032 !(test_bit(__E1000_DOWN, &adapter->state))) {
1033 netif_wake_queue(netdev);
1034 ++adapter->restart_queue;
1035 }
1036 }
1037
1038 if (adapter->detect_tx_hung) {
Bruce Allan41cec6f2009-11-20 23:28:56 +00001039 /*
1040 * Detect a transmit hang in hardware, this serializes the
1041 * check with the clearing of time_stamp and movement of i
1042 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001043 adapter->detect_tx_hung = 0;
Alexander Duyck12d04a32009-03-25 22:05:03 +00001044 if (tx_ring->buffer_info[i].time_stamp &&
1045 time_after(jiffies, tx_ring->buffer_info[i].time_stamp
Joe Perches8e95a202009-12-03 07:58:21 +00001046 + (adapter->tx_timeout_factor * HZ)) &&
1047 !(er32(STATUS) & E1000_STATUS_TXOFF)) {
Bruce Allan41cec6f2009-11-20 23:28:56 +00001048 schedule_work(&adapter->print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001049 netif_stop_queue(netdev);
1050 }
1051 }
1052 adapter->total_tx_bytes += total_tx_bytes;
1053 adapter->total_tx_packets += total_tx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +00001054 netdev->stats.tx_bytes += total_tx_bytes;
1055 netdev->stats.tx_packets += total_tx_packets;
Alexander Duyck12d04a32009-03-25 22:05:03 +00001056 return (count < tx_ring->count);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001057}
1058
1059/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001060 * e1000_clean_rx_irq_ps - Send received data up the network stack; packet split
1061 * @adapter: board private structure
1062 *
1063 * the return value indicates whether actual cleaning was done, there
1064 * is no guarantee that everything was cleaned
1065 **/
1066static bool e1000_clean_rx_irq_ps(struct e1000_adapter *adapter,
1067 int *work_done, int work_to_do)
1068{
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001069 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001070 union e1000_rx_desc_packet_split *rx_desc, *next_rxd;
1071 struct net_device *netdev = adapter->netdev;
1072 struct pci_dev *pdev = adapter->pdev;
1073 struct e1000_ring *rx_ring = adapter->rx_ring;
1074 struct e1000_buffer *buffer_info, *next_buffer;
1075 struct e1000_ps_page *ps_page;
1076 struct sk_buff *skb;
1077 unsigned int i, j;
1078 u32 length, staterr;
1079 int cleaned_count = 0;
1080 bool cleaned = 0;
1081 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
1082
1083 i = rx_ring->next_to_clean;
1084 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
1085 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1086 buffer_info = &rx_ring->buffer_info[i];
1087
1088 while (staterr & E1000_RXD_STAT_DD) {
1089 if (*work_done >= work_to_do)
1090 break;
1091 (*work_done)++;
1092 skb = buffer_info->skb;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00001093 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001094
1095 /* in the packet split case this is header only */
1096 prefetch(skb->data - NET_IP_ALIGN);
1097
1098 i++;
1099 if (i == rx_ring->count)
1100 i = 0;
1101 next_rxd = E1000_RX_DESC_PS(*rx_ring, i);
1102 prefetch(next_rxd);
1103
1104 next_buffer = &rx_ring->buffer_info[i];
1105
1106 cleaned = 1;
1107 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001108 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001109 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +00001110 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001111 buffer_info->dma = 0;
1112
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001113 /* see !EOP comment in other rx routine */
1114 if (!(staterr & E1000_RXD_STAT_EOP))
1115 adapter->flags2 |= FLAG2_IS_DISCARDING;
1116
1117 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001118 e_dbg("Packet Split buffers didn't pick up the full "
1119 "packet\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001120 dev_kfree_skb_irq(skb);
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001121 if (staterr & E1000_RXD_STAT_EOP)
1122 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001123 goto next_desc;
1124 }
1125
1126 if (staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) {
1127 dev_kfree_skb_irq(skb);
1128 goto next_desc;
1129 }
1130
1131 length = le16_to_cpu(rx_desc->wb.middle.length0);
1132
1133 if (!length) {
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001134 e_dbg("Last part of the packet spanning multiple "
1135 "descriptors\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001136 dev_kfree_skb_irq(skb);
1137 goto next_desc;
1138 }
1139
1140 /* Good Receive */
1141 skb_put(skb, length);
1142
1143 {
Bruce Allanad680762008-03-28 09:15:03 -07001144 /*
1145 * this looks ugly, but it seems compiler issues make it
1146 * more efficient than reusing j
1147 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001148 int l1 = le16_to_cpu(rx_desc->wb.upper.length[0]);
1149
Bruce Allanad680762008-03-28 09:15:03 -07001150 /*
1151 * page alloc/put takes too long and effects small packet
1152 * throughput, so unsplit small packets and save the alloc/put
1153 * only valid in softirq (napi) context to call kmap_*
1154 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001155 if (l1 && (l1 <= copybreak) &&
1156 ((length + l1) <= adapter->rx_ps_bsize0)) {
1157 u8 *vaddr;
1158
Auke Kok47f44e42007-10-25 13:57:44 -07001159 ps_page = &buffer_info->ps_pages[0];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001160
Bruce Allanad680762008-03-28 09:15:03 -07001161 /*
1162 * there is no documentation about how to call
Auke Kokbc7f75f2007-09-17 12:30:59 -07001163 * kmap_atomic, so we can't hold the mapping
Bruce Allanad680762008-03-28 09:15:03 -07001164 * very long
1165 */
Nick Nunley0be3f552010-04-27 13:09:05 +00001166 dma_sync_single_for_cpu(&pdev->dev, ps_page->dma,
1167 PAGE_SIZE, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001168 vaddr = kmap_atomic(ps_page->page, KM_SKB_DATA_SOFTIRQ);
1169 memcpy(skb_tail_pointer(skb), vaddr, l1);
1170 kunmap_atomic(vaddr, KM_SKB_DATA_SOFTIRQ);
Nick Nunley0be3f552010-04-27 13:09:05 +00001171 dma_sync_single_for_device(&pdev->dev, ps_page->dma,
1172 PAGE_SIZE, DMA_FROM_DEVICE);
Auke Kok140a7482007-10-25 13:57:58 -07001173
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001174 /* remove the CRC */
1175 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
1176 l1 -= 4;
1177
Auke Kokbc7f75f2007-09-17 12:30:59 -07001178 skb_put(skb, l1);
1179 goto copydone;
1180 } /* if */
1181 }
1182
1183 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
1184 length = le16_to_cpu(rx_desc->wb.upper.length[j]);
1185 if (!length)
1186 break;
1187
Auke Kok47f44e42007-10-25 13:57:44 -07001188 ps_page = &buffer_info->ps_pages[j];
Nick Nunley0be3f552010-04-27 13:09:05 +00001189 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1190 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001191 ps_page->dma = 0;
1192 skb_fill_page_desc(skb, j, ps_page->page, 0, length);
1193 ps_page->page = NULL;
1194 skb->len += length;
1195 skb->data_len += length;
1196 skb->truesize += length;
1197 }
1198
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001199 /* strip the ethernet crc, problem is we're using pages now so
1200 * this whole operation can get a little cpu intensive
1201 */
1202 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING))
1203 pskb_trim(skb, skb->len - 4);
1204
Auke Kokbc7f75f2007-09-17 12:30:59 -07001205copydone:
1206 total_rx_bytes += skb->len;
1207 total_rx_packets++;
1208
1209 e1000_rx_checksum(adapter, staterr, le16_to_cpu(
1210 rx_desc->wb.lower.hi_dword.csum_ip.csum), skb);
1211
1212 if (rx_desc->wb.upper.header_status &
1213 cpu_to_le16(E1000_RXDPS_HDRSTAT_HDRSP))
1214 adapter->rx_hdr_split++;
1215
1216 e1000_receive_skb(adapter, netdev, skb,
1217 staterr, rx_desc->wb.middle.vlan);
1218
1219next_desc:
1220 rx_desc->wb.middle.status_error &= cpu_to_le32(~0xFF);
1221 buffer_info->skb = NULL;
1222
1223 /* return some buffers to hardware, one at a time is too slow */
1224 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
1225 adapter->alloc_rx_buf(adapter, cleaned_count);
1226 cleaned_count = 0;
1227 }
1228
1229 /* use prefetched values */
1230 rx_desc = next_rxd;
1231 buffer_info = next_buffer;
1232
1233 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1234 }
1235 rx_ring->next_to_clean = i;
1236
1237 cleaned_count = e1000_desc_unused(rx_ring);
1238 if (cleaned_count)
1239 adapter->alloc_rx_buf(adapter, cleaned_count);
1240
Auke Kokbc7f75f2007-09-17 12:30:59 -07001241 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -07001242 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +00001243 netdev->stats.rx_bytes += total_rx_bytes;
1244 netdev->stats.rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001245 return cleaned;
1246}
1247
1248/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001249 * e1000_consume_page - helper function
1250 **/
1251static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
1252 u16 length)
1253{
1254 bi->page = NULL;
1255 skb->len += length;
1256 skb->data_len += length;
1257 skb->truesize += length;
1258}
1259
1260/**
1261 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
1262 * @adapter: board private structure
1263 *
1264 * the return value indicates whether actual cleaning was done, there
1265 * is no guarantee that everything was cleaned
1266 **/
1267
1268static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
1269 int *work_done, int work_to_do)
1270{
1271 struct net_device *netdev = adapter->netdev;
1272 struct pci_dev *pdev = adapter->pdev;
1273 struct e1000_ring *rx_ring = adapter->rx_ring;
1274 struct e1000_rx_desc *rx_desc, *next_rxd;
1275 struct e1000_buffer *buffer_info, *next_buffer;
1276 u32 length;
1277 unsigned int i;
1278 int cleaned_count = 0;
1279 bool cleaned = false;
1280 unsigned int total_rx_bytes=0, total_rx_packets=0;
1281
1282 i = rx_ring->next_to_clean;
1283 rx_desc = E1000_RX_DESC(*rx_ring, i);
1284 buffer_info = &rx_ring->buffer_info[i];
1285
1286 while (rx_desc->status & E1000_RXD_STAT_DD) {
1287 struct sk_buff *skb;
1288 u8 status;
1289
1290 if (*work_done >= work_to_do)
1291 break;
1292 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00001293 rmb(); /* read descriptor and rx_buffer_info after status DD */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001294
1295 status = rx_desc->status;
1296 skb = buffer_info->skb;
1297 buffer_info->skb = NULL;
1298
1299 ++i;
1300 if (i == rx_ring->count)
1301 i = 0;
1302 next_rxd = E1000_RX_DESC(*rx_ring, i);
1303 prefetch(next_rxd);
1304
1305 next_buffer = &rx_ring->buffer_info[i];
1306
1307 cleaned = true;
1308 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001309 dma_unmap_page(&pdev->dev, buffer_info->dma, PAGE_SIZE,
1310 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001311 buffer_info->dma = 0;
1312
1313 length = le16_to_cpu(rx_desc->length);
1314
1315 /* errors is only valid for DD + EOP descriptors */
1316 if (unlikely((status & E1000_RXD_STAT_EOP) &&
1317 (rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK))) {
1318 /* recycle both page and skb */
1319 buffer_info->skb = skb;
1320 /* an error means any chain goes out the window
1321 * too */
1322 if (rx_ring->rx_skb_top)
1323 dev_kfree_skb(rx_ring->rx_skb_top);
1324 rx_ring->rx_skb_top = NULL;
1325 goto next_desc;
1326 }
1327
1328#define rxtop rx_ring->rx_skb_top
1329 if (!(status & E1000_RXD_STAT_EOP)) {
1330 /* this descriptor is only the beginning (or middle) */
1331 if (!rxtop) {
1332 /* this is the beginning of a chain */
1333 rxtop = skb;
1334 skb_fill_page_desc(rxtop, 0, buffer_info->page,
1335 0, length);
1336 } else {
1337 /* this is the middle of a chain */
1338 skb_fill_page_desc(rxtop,
1339 skb_shinfo(rxtop)->nr_frags,
1340 buffer_info->page, 0, length);
1341 /* re-use the skb, only consumed the page */
1342 buffer_info->skb = skb;
1343 }
1344 e1000_consume_page(buffer_info, rxtop, length);
1345 goto next_desc;
1346 } else {
1347 if (rxtop) {
1348 /* end of the chain */
1349 skb_fill_page_desc(rxtop,
1350 skb_shinfo(rxtop)->nr_frags,
1351 buffer_info->page, 0, length);
1352 /* re-use the current skb, we only consumed the
1353 * page */
1354 buffer_info->skb = skb;
1355 skb = rxtop;
1356 rxtop = NULL;
1357 e1000_consume_page(buffer_info, skb, length);
1358 } else {
1359 /* no chain, got EOP, this buf is the packet
1360 * copybreak to save the put_page/alloc_page */
1361 if (length <= copybreak &&
1362 skb_tailroom(skb) >= length) {
1363 u8 *vaddr;
1364 vaddr = kmap_atomic(buffer_info->page,
1365 KM_SKB_DATA_SOFTIRQ);
1366 memcpy(skb_tail_pointer(skb), vaddr,
1367 length);
1368 kunmap_atomic(vaddr,
1369 KM_SKB_DATA_SOFTIRQ);
1370 /* re-use the page, so don't erase
1371 * buffer_info->page */
1372 skb_put(skb, length);
1373 } else {
1374 skb_fill_page_desc(skb, 0,
1375 buffer_info->page, 0,
1376 length);
1377 e1000_consume_page(buffer_info, skb,
1378 length);
1379 }
1380 }
1381 }
1382
1383 /* Receive Checksum Offload XXX recompute due to CRC strip? */
1384 e1000_rx_checksum(adapter,
1385 (u32)(status) |
1386 ((u32)(rx_desc->errors) << 24),
1387 le16_to_cpu(rx_desc->csum), skb);
1388
1389 /* probably a little skewed due to removing CRC */
1390 total_rx_bytes += skb->len;
1391 total_rx_packets++;
1392
1393 /* eth type trans needs skb->data to point to something */
1394 if (!pskb_may_pull(skb, ETH_HLEN)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001395 e_err("pskb_may_pull failed.\n");
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001396 dev_kfree_skb(skb);
1397 goto next_desc;
1398 }
1399
1400 e1000_receive_skb(adapter, netdev, skb, status,
1401 rx_desc->special);
1402
1403next_desc:
1404 rx_desc->status = 0;
1405
1406 /* return some buffers to hardware, one at a time is too slow */
1407 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
1408 adapter->alloc_rx_buf(adapter, cleaned_count);
1409 cleaned_count = 0;
1410 }
1411
1412 /* use prefetched values */
1413 rx_desc = next_rxd;
1414 buffer_info = next_buffer;
1415 }
1416 rx_ring->next_to_clean = i;
1417
1418 cleaned_count = e1000_desc_unused(rx_ring);
1419 if (cleaned_count)
1420 adapter->alloc_rx_buf(adapter, cleaned_count);
1421
1422 adapter->total_rx_bytes += total_rx_bytes;
1423 adapter->total_rx_packets += total_rx_packets;
Ajit Khaparde7274c202009-10-07 02:44:26 +00001424 netdev->stats.rx_bytes += total_rx_bytes;
1425 netdev->stats.rx_packets += total_rx_packets;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001426 return cleaned;
1427}
1428
1429/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001430 * e1000_clean_rx_ring - Free Rx Buffers per Queue
1431 * @adapter: board private structure
1432 **/
1433static void e1000_clean_rx_ring(struct e1000_adapter *adapter)
1434{
1435 struct e1000_ring *rx_ring = adapter->rx_ring;
1436 struct e1000_buffer *buffer_info;
1437 struct e1000_ps_page *ps_page;
1438 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001439 unsigned int i, j;
1440
1441 /* Free all the Rx ring sk_buffs */
1442 for (i = 0; i < rx_ring->count; i++) {
1443 buffer_info = &rx_ring->buffer_info[i];
1444 if (buffer_info->dma) {
1445 if (adapter->clean_rx == e1000_clean_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001446 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001447 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +00001448 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001449 else if (adapter->clean_rx == e1000_clean_jumbo_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001450 dma_unmap_page(&pdev->dev, buffer_info->dma,
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001451 PAGE_SIZE,
Nick Nunley0be3f552010-04-27 13:09:05 +00001452 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001453 else if (adapter->clean_rx == e1000_clean_rx_irq_ps)
Nick Nunley0be3f552010-04-27 13:09:05 +00001454 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001455 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +00001456 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001457 buffer_info->dma = 0;
1458 }
1459
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001460 if (buffer_info->page) {
1461 put_page(buffer_info->page);
1462 buffer_info->page = NULL;
1463 }
1464
Auke Kokbc7f75f2007-09-17 12:30:59 -07001465 if (buffer_info->skb) {
1466 dev_kfree_skb(buffer_info->skb);
1467 buffer_info->skb = NULL;
1468 }
1469
1470 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -07001471 ps_page = &buffer_info->ps_pages[j];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001472 if (!ps_page->page)
1473 break;
Nick Nunley0be3f552010-04-27 13:09:05 +00001474 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1475 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001476 ps_page->dma = 0;
1477 put_page(ps_page->page);
1478 ps_page->page = NULL;
1479 }
1480 }
1481
1482 /* there also may be some cached data from a chained receive */
1483 if (rx_ring->rx_skb_top) {
1484 dev_kfree_skb(rx_ring->rx_skb_top);
1485 rx_ring->rx_skb_top = NULL;
1486 }
1487
Auke Kokbc7f75f2007-09-17 12:30:59 -07001488 /* Zero out the descriptor ring */
1489 memset(rx_ring->desc, 0, rx_ring->size);
1490
1491 rx_ring->next_to_clean = 0;
1492 rx_ring->next_to_use = 0;
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001493 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001494
1495 writel(0, adapter->hw.hw_addr + rx_ring->head);
1496 writel(0, adapter->hw.hw_addr + rx_ring->tail);
1497}
1498
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001499static void e1000e_downshift_workaround(struct work_struct *work)
1500{
1501 struct e1000_adapter *adapter = container_of(work,
1502 struct e1000_adapter, downshift_task);
1503
1504 e1000e_gig_downshift_workaround_ich8lan(&adapter->hw);
1505}
1506
Auke Kokbc7f75f2007-09-17 12:30:59 -07001507/**
1508 * e1000_intr_msi - Interrupt Handler
1509 * @irq: interrupt number
1510 * @data: pointer to a network interface device structure
1511 **/
1512static irqreturn_t e1000_intr_msi(int irq, void *data)
1513{
1514 struct net_device *netdev = data;
1515 struct e1000_adapter *adapter = netdev_priv(netdev);
1516 struct e1000_hw *hw = &adapter->hw;
1517 u32 icr = er32(ICR);
1518
Bruce Allanad680762008-03-28 09:15:03 -07001519 /*
1520 * read ICR disables interrupts using IAM
1521 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001522
dave graham573cca82009-02-10 12:52:05 +00001523 if (icr & E1000_ICR_LSC) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001524 hw->mac.get_link_status = 1;
Bruce Allanad680762008-03-28 09:15:03 -07001525 /*
1526 * ICH8 workaround-- Call gig speed drop workaround on cable
1527 * disconnect (LSC) before accessing any PHY registers
1528 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001529 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1530 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001531 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001532
Bruce Allanad680762008-03-28 09:15:03 -07001533 /*
1534 * 80003ES2LAN workaround-- For packet buffer work-around on
Auke Kokbc7f75f2007-09-17 12:30:59 -07001535 * link down event; disable receives here in the ISR and reset
Bruce Allanad680762008-03-28 09:15:03 -07001536 * adapter in watchdog
1537 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001538 if (netif_carrier_ok(netdev) &&
1539 adapter->flags & FLAG_RX_NEEDS_RESTART) {
1540 /* disable receives */
1541 u32 rctl = er32(RCTL);
1542 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001543 adapter->flags |= FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001544 }
1545 /* guard against interrupt when we're going down */
1546 if (!test_bit(__E1000_DOWN, &adapter->state))
1547 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1548 }
1549
Ben Hutchings288379f2009-01-19 16:43:59 -08001550 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001551 adapter->total_tx_bytes = 0;
1552 adapter->total_tx_packets = 0;
1553 adapter->total_rx_bytes = 0;
1554 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001555 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001556 }
1557
1558 return IRQ_HANDLED;
1559}
1560
1561/**
1562 * e1000_intr - Interrupt Handler
1563 * @irq: interrupt number
1564 * @data: pointer to a network interface device structure
1565 **/
1566static irqreturn_t e1000_intr(int irq, void *data)
1567{
1568 struct net_device *netdev = data;
1569 struct e1000_adapter *adapter = netdev_priv(netdev);
1570 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001571 u32 rctl, icr = er32(ICR);
Bruce Allan4662e822008-08-26 18:37:06 -07001572
Bruce Allana68ea772009-11-20 23:23:16 +00001573 if (!icr || test_bit(__E1000_DOWN, &adapter->state))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001574 return IRQ_NONE; /* Not our interrupt */
1575
Bruce Allanad680762008-03-28 09:15:03 -07001576 /*
1577 * IMS will not auto-mask if INT_ASSERTED is not set, and if it is
1578 * not set, then the adapter didn't send an interrupt
1579 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001580 if (!(icr & E1000_ICR_INT_ASSERTED))
1581 return IRQ_NONE;
1582
Bruce Allanad680762008-03-28 09:15:03 -07001583 /*
1584 * Interrupt Auto-Mask...upon reading ICR,
1585 * interrupts are masked. No need for the
1586 * IMC write
1587 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001588
dave graham573cca82009-02-10 12:52:05 +00001589 if (icr & E1000_ICR_LSC) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001590 hw->mac.get_link_status = 1;
Bruce Allanad680762008-03-28 09:15:03 -07001591 /*
1592 * ICH8 workaround-- Call gig speed drop workaround on cable
1593 * disconnect (LSC) before accessing any PHY registers
1594 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001595 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1596 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001597 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001598
Bruce Allanad680762008-03-28 09:15:03 -07001599 /*
1600 * 80003ES2LAN workaround--
Auke Kokbc7f75f2007-09-17 12:30:59 -07001601 * For packet buffer work-around on link down event;
1602 * disable receives here in the ISR and
1603 * reset adapter in watchdog
1604 */
1605 if (netif_carrier_ok(netdev) &&
1606 (adapter->flags & FLAG_RX_NEEDS_RESTART)) {
1607 /* disable receives */
1608 rctl = er32(RCTL);
1609 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07001610 adapter->flags |= FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001611 }
1612 /* guard against interrupt when we're going down */
1613 if (!test_bit(__E1000_DOWN, &adapter->state))
1614 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1615 }
1616
Ben Hutchings288379f2009-01-19 16:43:59 -08001617 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001618 adapter->total_tx_bytes = 0;
1619 adapter->total_tx_packets = 0;
1620 adapter->total_rx_bytes = 0;
1621 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001622 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001623 }
1624
1625 return IRQ_HANDLED;
1626}
1627
Bruce Allan4662e822008-08-26 18:37:06 -07001628static irqreturn_t e1000_msix_other(int irq, void *data)
1629{
1630 struct net_device *netdev = data;
1631 struct e1000_adapter *adapter = netdev_priv(netdev);
1632 struct e1000_hw *hw = &adapter->hw;
1633 u32 icr = er32(ICR);
1634
1635 if (!(icr & E1000_ICR_INT_ASSERTED)) {
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001636 if (!test_bit(__E1000_DOWN, &adapter->state))
1637 ew32(IMS, E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001638 return IRQ_NONE;
1639 }
1640
1641 if (icr & adapter->eiac_mask)
1642 ew32(ICS, (icr & adapter->eiac_mask));
1643
1644 if (icr & E1000_ICR_OTHER) {
1645 if (!(icr & E1000_ICR_LSC))
1646 goto no_link_interrupt;
1647 hw->mac.get_link_status = 1;
1648 /* guard against interrupt when we're going down */
1649 if (!test_bit(__E1000_DOWN, &adapter->state))
1650 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1651 }
1652
1653no_link_interrupt:
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001654 if (!test_bit(__E1000_DOWN, &adapter->state))
1655 ew32(IMS, E1000_IMS_LSC | E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001656
1657 return IRQ_HANDLED;
1658}
1659
1660
1661static irqreturn_t e1000_intr_msix_tx(int irq, void *data)
1662{
1663 struct net_device *netdev = data;
1664 struct e1000_adapter *adapter = netdev_priv(netdev);
1665 struct e1000_hw *hw = &adapter->hw;
1666 struct e1000_ring *tx_ring = adapter->tx_ring;
1667
1668
1669 adapter->total_tx_bytes = 0;
1670 adapter->total_tx_packets = 0;
1671
1672 if (!e1000_clean_tx_irq(adapter))
1673 /* Ring was not completely cleaned, so fire another interrupt */
1674 ew32(ICS, tx_ring->ims_val);
1675
1676 return IRQ_HANDLED;
1677}
1678
1679static irqreturn_t e1000_intr_msix_rx(int irq, void *data)
1680{
1681 struct net_device *netdev = data;
1682 struct e1000_adapter *adapter = netdev_priv(netdev);
1683
1684 /* Write the ITR value calculated at the end of the
1685 * previous interrupt.
1686 */
1687 if (adapter->rx_ring->set_itr) {
1688 writel(1000000000 / (adapter->rx_ring->itr_val * 256),
1689 adapter->hw.hw_addr + adapter->rx_ring->itr_register);
1690 adapter->rx_ring->set_itr = 0;
1691 }
1692
Ben Hutchings288379f2009-01-19 16:43:59 -08001693 if (napi_schedule_prep(&adapter->napi)) {
Bruce Allan4662e822008-08-26 18:37:06 -07001694 adapter->total_rx_bytes = 0;
1695 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001696 __napi_schedule(&adapter->napi);
Bruce Allan4662e822008-08-26 18:37:06 -07001697 }
1698 return IRQ_HANDLED;
1699}
1700
1701/**
1702 * e1000_configure_msix - Configure MSI-X hardware
1703 *
1704 * e1000_configure_msix sets up the hardware to properly
1705 * generate MSI-X interrupts.
1706 **/
1707static void e1000_configure_msix(struct e1000_adapter *adapter)
1708{
1709 struct e1000_hw *hw = &adapter->hw;
1710 struct e1000_ring *rx_ring = adapter->rx_ring;
1711 struct e1000_ring *tx_ring = adapter->tx_ring;
1712 int vector = 0;
1713 u32 ctrl_ext, ivar = 0;
1714
1715 adapter->eiac_mask = 0;
1716
1717 /* Workaround issue with spurious interrupts on 82574 in MSI-X mode */
1718 if (hw->mac.type == e1000_82574) {
1719 u32 rfctl = er32(RFCTL);
1720 rfctl |= E1000_RFCTL_ACK_DIS;
1721 ew32(RFCTL, rfctl);
1722 }
1723
1724#define E1000_IVAR_INT_ALLOC_VALID 0x8
1725 /* Configure Rx vector */
1726 rx_ring->ims_val = E1000_IMS_RXQ0;
1727 adapter->eiac_mask |= rx_ring->ims_val;
1728 if (rx_ring->itr_val)
1729 writel(1000000000 / (rx_ring->itr_val * 256),
1730 hw->hw_addr + rx_ring->itr_register);
1731 else
1732 writel(1, hw->hw_addr + rx_ring->itr_register);
1733 ivar = E1000_IVAR_INT_ALLOC_VALID | vector;
1734
1735 /* Configure Tx vector */
1736 tx_ring->ims_val = E1000_IMS_TXQ0;
1737 vector++;
1738 if (tx_ring->itr_val)
1739 writel(1000000000 / (tx_ring->itr_val * 256),
1740 hw->hw_addr + tx_ring->itr_register);
1741 else
1742 writel(1, hw->hw_addr + tx_ring->itr_register);
1743 adapter->eiac_mask |= tx_ring->ims_val;
1744 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 8);
1745
1746 /* set vector for Other Causes, e.g. link changes */
1747 vector++;
1748 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 16);
1749 if (rx_ring->itr_val)
1750 writel(1000000000 / (rx_ring->itr_val * 256),
1751 hw->hw_addr + E1000_EITR_82574(vector));
1752 else
1753 writel(1, hw->hw_addr + E1000_EITR_82574(vector));
1754
1755 /* Cause Tx interrupts on every write back */
1756 ivar |= (1 << 31);
1757
1758 ew32(IVAR, ivar);
1759
1760 /* enable MSI-X PBA support */
1761 ctrl_ext = er32(CTRL_EXT);
1762 ctrl_ext |= E1000_CTRL_EXT_PBA_CLR;
1763
1764 /* Auto-Mask Other interrupts upon ICR read */
1765#define E1000_EIAC_MASK_82574 0x01F00000
1766 ew32(IAM, ~E1000_EIAC_MASK_82574 | E1000_IMS_OTHER);
1767 ctrl_ext |= E1000_CTRL_EXT_EIAME;
1768 ew32(CTRL_EXT, ctrl_ext);
1769 e1e_flush();
1770}
1771
1772void e1000e_reset_interrupt_capability(struct e1000_adapter *adapter)
1773{
1774 if (adapter->msix_entries) {
1775 pci_disable_msix(adapter->pdev);
1776 kfree(adapter->msix_entries);
1777 adapter->msix_entries = NULL;
1778 } else if (adapter->flags & FLAG_MSI_ENABLED) {
1779 pci_disable_msi(adapter->pdev);
1780 adapter->flags &= ~FLAG_MSI_ENABLED;
1781 }
Bruce Allan4662e822008-08-26 18:37:06 -07001782}
1783
1784/**
1785 * e1000e_set_interrupt_capability - set MSI or MSI-X if supported
1786 *
1787 * Attempt to configure interrupts using the best available
1788 * capabilities of the hardware and kernel.
1789 **/
1790void e1000e_set_interrupt_capability(struct e1000_adapter *adapter)
1791{
1792 int err;
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00001793 int i;
Bruce Allan4662e822008-08-26 18:37:06 -07001794
1795 switch (adapter->int_mode) {
1796 case E1000E_INT_MODE_MSIX:
1797 if (adapter->flags & FLAG_HAS_MSIX) {
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00001798 adapter->num_vectors = 3; /* RxQ0, TxQ0 and other */
1799 adapter->msix_entries = kcalloc(adapter->num_vectors,
Bruce Allan4662e822008-08-26 18:37:06 -07001800 sizeof(struct msix_entry),
1801 GFP_KERNEL);
1802 if (adapter->msix_entries) {
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00001803 for (i = 0; i < adapter->num_vectors; i++)
Bruce Allan4662e822008-08-26 18:37:06 -07001804 adapter->msix_entries[i].entry = i;
1805
1806 err = pci_enable_msix(adapter->pdev,
1807 adapter->msix_entries,
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00001808 adapter->num_vectors);
1809 if (err == 0) {
Bruce Allan4662e822008-08-26 18:37:06 -07001810 return;
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00001811 }
Bruce Allan4662e822008-08-26 18:37:06 -07001812 }
1813 /* MSI-X failed, so fall through and try MSI */
1814 e_err("Failed to initialize MSI-X interrupts. "
1815 "Falling back to MSI interrupts.\n");
1816 e1000e_reset_interrupt_capability(adapter);
1817 }
1818 adapter->int_mode = E1000E_INT_MODE_MSI;
1819 /* Fall through */
1820 case E1000E_INT_MODE_MSI:
1821 if (!pci_enable_msi(adapter->pdev)) {
1822 adapter->flags |= FLAG_MSI_ENABLED;
1823 } else {
1824 adapter->int_mode = E1000E_INT_MODE_LEGACY;
1825 e_err("Failed to initialize MSI interrupts. Falling "
1826 "back to legacy interrupts.\n");
1827 }
1828 /* Fall through */
1829 case E1000E_INT_MODE_LEGACY:
1830 /* Don't do anything; this is the system default */
1831 break;
1832 }
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00001833
1834 /* store the number of vectors being used */
1835 adapter->num_vectors = 1;
Bruce Allan4662e822008-08-26 18:37:06 -07001836}
1837
1838/**
1839 * e1000_request_msix - Initialize MSI-X interrupts
1840 *
1841 * e1000_request_msix allocates MSI-X vectors and requests interrupts from the
1842 * kernel.
1843 **/
1844static int e1000_request_msix(struct e1000_adapter *adapter)
1845{
1846 struct net_device *netdev = adapter->netdev;
1847 int err = 0, vector = 0;
1848
1849 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Alexander Duyckcb7b48f2008-12-05 15:08:03 -08001850 sprintf(adapter->rx_ring->name, "%s-rx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07001851 else
1852 memcpy(adapter->rx_ring->name, netdev->name, IFNAMSIZ);
1853 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001854 e1000_intr_msix_rx, 0, adapter->rx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07001855 netdev);
1856 if (err)
1857 goto out;
1858 adapter->rx_ring->itr_register = E1000_EITR_82574(vector);
1859 adapter->rx_ring->itr_val = adapter->itr;
1860 vector++;
1861
1862 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Alexander Duyckcb7b48f2008-12-05 15:08:03 -08001863 sprintf(adapter->tx_ring->name, "%s-tx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07001864 else
1865 memcpy(adapter->tx_ring->name, netdev->name, IFNAMSIZ);
1866 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001867 e1000_intr_msix_tx, 0, adapter->tx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07001868 netdev);
1869 if (err)
1870 goto out;
1871 adapter->tx_ring->itr_register = E1000_EITR_82574(vector);
1872 adapter->tx_ring->itr_val = adapter->itr;
1873 vector++;
1874
1875 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08001876 e1000_msix_other, 0, netdev->name, netdev);
Bruce Allan4662e822008-08-26 18:37:06 -07001877 if (err)
1878 goto out;
1879
1880 e1000_configure_msix(adapter);
1881 return 0;
1882out:
1883 return err;
1884}
1885
Bruce Allanf8d59f72008-08-08 18:36:11 -07001886/**
1887 * e1000_request_irq - initialize interrupts
1888 *
1889 * Attempts to configure interrupts using the best available
1890 * capabilities of the hardware and kernel.
1891 **/
Auke Kokbc7f75f2007-09-17 12:30:59 -07001892static int e1000_request_irq(struct e1000_adapter *adapter)
1893{
1894 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001895 int err;
1896
Bruce Allan4662e822008-08-26 18:37:06 -07001897 if (adapter->msix_entries) {
1898 err = e1000_request_msix(adapter);
1899 if (!err)
1900 return err;
1901 /* fall back to MSI */
1902 e1000e_reset_interrupt_capability(adapter);
1903 adapter->int_mode = E1000E_INT_MODE_MSI;
1904 e1000e_set_interrupt_capability(adapter);
1905 }
1906 if (adapter->flags & FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08001907 err = request_irq(adapter->pdev->irq, e1000_intr_msi, 0,
Bruce Allan4662e822008-08-26 18:37:06 -07001908 netdev->name, netdev);
1909 if (!err)
1910 return err;
1911
1912 /* fall back to legacy interrupt */
1913 e1000e_reset_interrupt_capability(adapter);
1914 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001915 }
1916
Joe Perchesa0607fd2009-11-18 23:29:17 -08001917 err = request_irq(adapter->pdev->irq, e1000_intr, IRQF_SHARED,
Bruce Allan4662e822008-08-26 18:37:06 -07001918 netdev->name, netdev);
1919 if (err)
Bruce Allanf8d59f72008-08-08 18:36:11 -07001920 e_err("Unable to allocate interrupt, Error: %d\n", err);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001921
1922 return err;
1923}
1924
1925static void e1000_free_irq(struct e1000_adapter *adapter)
1926{
1927 struct net_device *netdev = adapter->netdev;
1928
Bruce Allan4662e822008-08-26 18:37:06 -07001929 if (adapter->msix_entries) {
1930 int vector = 0;
1931
1932 free_irq(adapter->msix_entries[vector].vector, netdev);
1933 vector++;
1934
1935 free_irq(adapter->msix_entries[vector].vector, netdev);
1936 vector++;
1937
1938 /* Other Causes interrupt vector */
1939 free_irq(adapter->msix_entries[vector].vector, netdev);
1940 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001941 }
Bruce Allan4662e822008-08-26 18:37:06 -07001942
1943 free_irq(adapter->pdev->irq, netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001944}
1945
1946/**
1947 * e1000_irq_disable - Mask off interrupt generation on the NIC
1948 **/
1949static void e1000_irq_disable(struct e1000_adapter *adapter)
1950{
1951 struct e1000_hw *hw = &adapter->hw;
1952
Auke Kokbc7f75f2007-09-17 12:30:59 -07001953 ew32(IMC, ~0);
Bruce Allan4662e822008-08-26 18:37:06 -07001954 if (adapter->msix_entries)
1955 ew32(EIAC_82574, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001956 e1e_flush();
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00001957
1958 if (adapter->msix_entries) {
1959 int i;
1960 for (i = 0; i < adapter->num_vectors; i++)
1961 synchronize_irq(adapter->msix_entries[i].vector);
1962 } else {
1963 synchronize_irq(adapter->pdev->irq);
1964 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001965}
1966
1967/**
1968 * e1000_irq_enable - Enable default interrupt generation settings
1969 **/
1970static void e1000_irq_enable(struct e1000_adapter *adapter)
1971{
1972 struct e1000_hw *hw = &adapter->hw;
1973
Bruce Allan4662e822008-08-26 18:37:06 -07001974 if (adapter->msix_entries) {
1975 ew32(EIAC_82574, adapter->eiac_mask & E1000_EIAC_MASK_82574);
1976 ew32(IMS, adapter->eiac_mask | E1000_IMS_OTHER | E1000_IMS_LSC);
1977 } else {
1978 ew32(IMS, IMS_ENABLE_MASK);
1979 }
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07001980 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -07001981}
1982
1983/**
1984 * e1000_get_hw_control - get control of the h/w from f/w
1985 * @adapter: address of board private structure
1986 *
Auke Kok489815c2008-02-21 15:11:07 -08001987 * e1000_get_hw_control sets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07001988 * For ASF and Pass Through versions of f/w this means that
1989 * the driver is loaded. For AMT version (only with 82573)
1990 * of the f/w this means that the network i/f is open.
1991 **/
1992static void e1000_get_hw_control(struct e1000_adapter *adapter)
1993{
1994 struct e1000_hw *hw = &adapter->hw;
1995 u32 ctrl_ext;
1996 u32 swsm;
1997
1998 /* Let firmware know the driver has taken over */
1999 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
2000 swsm = er32(SWSM);
2001 ew32(SWSM, swsm | E1000_SWSM_DRV_LOAD);
2002 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
2003 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07002004 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002005 }
2006}
2007
2008/**
2009 * e1000_release_hw_control - release control of the h/w to f/w
2010 * @adapter: address of board private structure
2011 *
Auke Kok489815c2008-02-21 15:11:07 -08002012 * e1000_release_hw_control resets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002013 * For ASF and Pass Through versions of f/w this means that the
2014 * driver is no longer loaded. For AMT version (only with 82573) i
2015 * of the f/w this means that the network i/f is closed.
2016 *
2017 **/
2018static void e1000_release_hw_control(struct e1000_adapter *adapter)
2019{
2020 struct e1000_hw *hw = &adapter->hw;
2021 u32 ctrl_ext;
2022 u32 swsm;
2023
2024 /* Let firmware taken over control of h/w */
2025 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
2026 swsm = er32(SWSM);
2027 ew32(SWSM, swsm & ~E1000_SWSM_DRV_LOAD);
2028 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
2029 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07002030 ew32(CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002031 }
2032}
2033
Auke Kokbc7f75f2007-09-17 12:30:59 -07002034/**
2035 * @e1000_alloc_ring - allocate memory for a ring structure
2036 **/
2037static int e1000_alloc_ring_dma(struct e1000_adapter *adapter,
2038 struct e1000_ring *ring)
2039{
2040 struct pci_dev *pdev = adapter->pdev;
2041
2042 ring->desc = dma_alloc_coherent(&pdev->dev, ring->size, &ring->dma,
2043 GFP_KERNEL);
2044 if (!ring->desc)
2045 return -ENOMEM;
2046
2047 return 0;
2048}
2049
2050/**
2051 * e1000e_setup_tx_resources - allocate Tx resources (Descriptors)
2052 * @adapter: board private structure
2053 *
2054 * Return 0 on success, negative on failure
2055 **/
2056int e1000e_setup_tx_resources(struct e1000_adapter *adapter)
2057{
2058 struct e1000_ring *tx_ring = adapter->tx_ring;
2059 int err = -ENOMEM, size;
2060
2061 size = sizeof(struct e1000_buffer) * tx_ring->count;
2062 tx_ring->buffer_info = vmalloc(size);
2063 if (!tx_ring->buffer_info)
2064 goto err;
2065 memset(tx_ring->buffer_info, 0, size);
2066
2067 /* round up to nearest 4K */
2068 tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc);
2069 tx_ring->size = ALIGN(tx_ring->size, 4096);
2070
2071 err = e1000_alloc_ring_dma(adapter, tx_ring);
2072 if (err)
2073 goto err;
2074
2075 tx_ring->next_to_use = 0;
2076 tx_ring->next_to_clean = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002077
2078 return 0;
2079err:
2080 vfree(tx_ring->buffer_info);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07002081 e_err("Unable to allocate memory for the transmit descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002082 return err;
2083}
2084
2085/**
2086 * e1000e_setup_rx_resources - allocate Rx resources (Descriptors)
2087 * @adapter: board private structure
2088 *
2089 * Returns 0 on success, negative on failure
2090 **/
2091int e1000e_setup_rx_resources(struct e1000_adapter *adapter)
2092{
2093 struct e1000_ring *rx_ring = adapter->rx_ring;
Auke Kok47f44e42007-10-25 13:57:44 -07002094 struct e1000_buffer *buffer_info;
2095 int i, size, desc_len, err = -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002096
2097 size = sizeof(struct e1000_buffer) * rx_ring->count;
2098 rx_ring->buffer_info = vmalloc(size);
2099 if (!rx_ring->buffer_info)
2100 goto err;
2101 memset(rx_ring->buffer_info, 0, size);
2102
Auke Kok47f44e42007-10-25 13:57:44 -07002103 for (i = 0; i < rx_ring->count; i++) {
2104 buffer_info = &rx_ring->buffer_info[i];
2105 buffer_info->ps_pages = kcalloc(PS_PAGE_BUFFERS,
2106 sizeof(struct e1000_ps_page),
2107 GFP_KERNEL);
2108 if (!buffer_info->ps_pages)
2109 goto err_pages;
2110 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002111
2112 desc_len = sizeof(union e1000_rx_desc_packet_split);
2113
2114 /* Round up to nearest 4K */
2115 rx_ring->size = rx_ring->count * desc_len;
2116 rx_ring->size = ALIGN(rx_ring->size, 4096);
2117
2118 err = e1000_alloc_ring_dma(adapter, rx_ring);
2119 if (err)
Auke Kok47f44e42007-10-25 13:57:44 -07002120 goto err_pages;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002121
2122 rx_ring->next_to_clean = 0;
2123 rx_ring->next_to_use = 0;
2124 rx_ring->rx_skb_top = NULL;
2125
2126 return 0;
Auke Kok47f44e42007-10-25 13:57:44 -07002127
2128err_pages:
2129 for (i = 0; i < rx_ring->count; i++) {
2130 buffer_info = &rx_ring->buffer_info[i];
2131 kfree(buffer_info->ps_pages);
2132 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002133err:
2134 vfree(rx_ring->buffer_info);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07002135 e_err("Unable to allocate memory for the transmit descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002136 return err;
2137}
2138
2139/**
2140 * e1000_clean_tx_ring - Free Tx Buffers
2141 * @adapter: board private structure
2142 **/
2143static void e1000_clean_tx_ring(struct e1000_adapter *adapter)
2144{
2145 struct e1000_ring *tx_ring = adapter->tx_ring;
2146 struct e1000_buffer *buffer_info;
2147 unsigned long size;
2148 unsigned int i;
2149
2150 for (i = 0; i < tx_ring->count; i++) {
2151 buffer_info = &tx_ring->buffer_info[i];
2152 e1000_put_txbuf(adapter, buffer_info);
2153 }
2154
2155 size = sizeof(struct e1000_buffer) * tx_ring->count;
2156 memset(tx_ring->buffer_info, 0, size);
2157
2158 memset(tx_ring->desc, 0, tx_ring->size);
2159
2160 tx_ring->next_to_use = 0;
2161 tx_ring->next_to_clean = 0;
2162
2163 writel(0, adapter->hw.hw_addr + tx_ring->head);
2164 writel(0, adapter->hw.hw_addr + tx_ring->tail);
2165}
2166
2167/**
2168 * e1000e_free_tx_resources - Free Tx Resources per Queue
2169 * @adapter: board private structure
2170 *
2171 * Free all transmit software resources
2172 **/
2173void e1000e_free_tx_resources(struct e1000_adapter *adapter)
2174{
2175 struct pci_dev *pdev = adapter->pdev;
2176 struct e1000_ring *tx_ring = adapter->tx_ring;
2177
2178 e1000_clean_tx_ring(adapter);
2179
2180 vfree(tx_ring->buffer_info);
2181 tx_ring->buffer_info = NULL;
2182
2183 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
2184 tx_ring->dma);
2185 tx_ring->desc = NULL;
2186}
2187
2188/**
2189 * e1000e_free_rx_resources - Free Rx Resources
2190 * @adapter: board private structure
2191 *
2192 * Free all receive software resources
2193 **/
2194
2195void e1000e_free_rx_resources(struct e1000_adapter *adapter)
2196{
2197 struct pci_dev *pdev = adapter->pdev;
2198 struct e1000_ring *rx_ring = adapter->rx_ring;
Auke Kok47f44e42007-10-25 13:57:44 -07002199 int i;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002200
2201 e1000_clean_rx_ring(adapter);
2202
Auke Kok47f44e42007-10-25 13:57:44 -07002203 for (i = 0; i < rx_ring->count; i++) {
2204 kfree(rx_ring->buffer_info[i].ps_pages);
2205 }
2206
Auke Kokbc7f75f2007-09-17 12:30:59 -07002207 vfree(rx_ring->buffer_info);
2208 rx_ring->buffer_info = NULL;
2209
Auke Kokbc7f75f2007-09-17 12:30:59 -07002210 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
2211 rx_ring->dma);
2212 rx_ring->desc = NULL;
2213}
2214
2215/**
2216 * e1000_update_itr - update the dynamic ITR value based on statistics
Auke Kok489815c2008-02-21 15:11:07 -08002217 * @adapter: pointer to adapter
2218 * @itr_setting: current adapter->itr
2219 * @packets: the number of packets during this measurement interval
2220 * @bytes: the number of bytes during this measurement interval
2221 *
Auke Kokbc7f75f2007-09-17 12:30:59 -07002222 * Stores a new ITR value based on packets and byte
2223 * counts during the last interrupt. The advantage of per interrupt
2224 * computation is faster updates and more accurate ITR for the current
2225 * traffic pattern. Constants in this function were computed
2226 * based on theoretical maximum wire speed and thresholds were set based
2227 * on testing data as well as attempting to minimize response time
Bruce Allan4662e822008-08-26 18:37:06 -07002228 * while increasing bulk throughput. This functionality is controlled
2229 * by the InterruptThrottleRate module parameter.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002230 **/
2231static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
2232 u16 itr_setting, int packets,
2233 int bytes)
2234{
2235 unsigned int retval = itr_setting;
2236
2237 if (packets == 0)
2238 goto update_itr_done;
2239
2240 switch (itr_setting) {
2241 case lowest_latency:
2242 /* handle TSO and jumbo frames */
2243 if (bytes/packets > 8000)
2244 retval = bulk_latency;
2245 else if ((packets < 5) && (bytes > 512)) {
2246 retval = low_latency;
2247 }
2248 break;
2249 case low_latency: /* 50 usec aka 20000 ints/s */
2250 if (bytes > 10000) {
2251 /* this if handles the TSO accounting */
2252 if (bytes/packets > 8000) {
2253 retval = bulk_latency;
2254 } else if ((packets < 10) || ((bytes/packets) > 1200)) {
2255 retval = bulk_latency;
2256 } else if ((packets > 35)) {
2257 retval = lowest_latency;
2258 }
2259 } else if (bytes/packets > 2000) {
2260 retval = bulk_latency;
2261 } else if (packets <= 2 && bytes < 512) {
2262 retval = lowest_latency;
2263 }
2264 break;
2265 case bulk_latency: /* 250 usec aka 4000 ints/s */
2266 if (bytes > 25000) {
2267 if (packets > 35) {
2268 retval = low_latency;
2269 }
2270 } else if (bytes < 6000) {
2271 retval = low_latency;
2272 }
2273 break;
2274 }
2275
2276update_itr_done:
2277 return retval;
2278}
2279
2280static void e1000_set_itr(struct e1000_adapter *adapter)
2281{
2282 struct e1000_hw *hw = &adapter->hw;
2283 u16 current_itr;
2284 u32 new_itr = adapter->itr;
2285
2286 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2287 if (adapter->link_speed != SPEED_1000) {
2288 current_itr = 0;
2289 new_itr = 4000;
2290 goto set_itr_now;
2291 }
2292
2293 adapter->tx_itr = e1000_update_itr(adapter,
2294 adapter->tx_itr,
2295 adapter->total_tx_packets,
2296 adapter->total_tx_bytes);
2297 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2298 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2299 adapter->tx_itr = low_latency;
2300
2301 adapter->rx_itr = e1000_update_itr(adapter,
2302 adapter->rx_itr,
2303 adapter->total_rx_packets,
2304 adapter->total_rx_bytes);
2305 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2306 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2307 adapter->rx_itr = low_latency;
2308
2309 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2310
2311 switch (current_itr) {
2312 /* counts and packets in update_itr are dependent on these numbers */
2313 case lowest_latency:
2314 new_itr = 70000;
2315 break;
2316 case low_latency:
2317 new_itr = 20000; /* aka hwitr = ~200 */
2318 break;
2319 case bulk_latency:
2320 new_itr = 4000;
2321 break;
2322 default:
2323 break;
2324 }
2325
2326set_itr_now:
2327 if (new_itr != adapter->itr) {
Bruce Allanad680762008-03-28 09:15:03 -07002328 /*
2329 * this attempts to bias the interrupt rate towards Bulk
Auke Kokbc7f75f2007-09-17 12:30:59 -07002330 * by adding intermediate steps when interrupt rate is
Bruce Allanad680762008-03-28 09:15:03 -07002331 * increasing
2332 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002333 new_itr = new_itr > adapter->itr ?
2334 min(adapter->itr + (new_itr >> 2), new_itr) :
2335 new_itr;
2336 adapter->itr = new_itr;
Bruce Allan4662e822008-08-26 18:37:06 -07002337 adapter->rx_ring->itr_val = new_itr;
2338 if (adapter->msix_entries)
2339 adapter->rx_ring->set_itr = 1;
2340 else
2341 ew32(ITR, 1000000000 / (new_itr * 256));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002342 }
2343}
2344
2345/**
Bruce Allan4662e822008-08-26 18:37:06 -07002346 * e1000_alloc_queues - Allocate memory for all rings
2347 * @adapter: board private structure to initialize
2348 **/
2349static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
2350{
2351 adapter->tx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
2352 if (!adapter->tx_ring)
2353 goto err;
2354
2355 adapter->rx_ring = kzalloc(sizeof(struct e1000_ring), GFP_KERNEL);
2356 if (!adapter->rx_ring)
2357 goto err;
2358
2359 return 0;
2360err:
2361 e_err("Unable to allocate memory for queues\n");
2362 kfree(adapter->rx_ring);
2363 kfree(adapter->tx_ring);
2364 return -ENOMEM;
2365}
2366
2367/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07002368 * e1000_clean - NAPI Rx polling callback
Bruce Allanad680762008-03-28 09:15:03 -07002369 * @napi: struct associated with this polling callback
Auke Kok489815c2008-02-21 15:11:07 -08002370 * @budget: amount of packets driver is allowed to process this poll
Auke Kokbc7f75f2007-09-17 12:30:59 -07002371 **/
2372static int e1000_clean(struct napi_struct *napi, int budget)
2373{
2374 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
Bruce Allan4662e822008-08-26 18:37:06 -07002375 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002376 struct net_device *poll_dev = adapter->netdev;
Andy Gospodarek679e8a02009-06-18 11:57:37 +00002377 int tx_cleaned = 1, work_done = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002378
Wang Chen4cf16532008-11-12 23:38:14 -08002379 adapter = netdev_priv(poll_dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002380
Bruce Allan4662e822008-08-26 18:37:06 -07002381 if (adapter->msix_entries &&
2382 !(adapter->rx_ring->ims_val & adapter->tx_ring->ims_val))
2383 goto clean_rx;
2384
Jesse Brandeburg92af3e92009-01-19 14:17:08 +00002385 tx_cleaned = e1000_clean_tx_irq(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002386
Bruce Allan4662e822008-08-26 18:37:06 -07002387clean_rx:
Auke Kokbc7f75f2007-09-17 12:30:59 -07002388 adapter->clean_rx(adapter, &work_done, budget);
2389
Alexander Duyck12d04a32009-03-25 22:05:03 +00002390 if (!tx_cleaned)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08002391 work_done = budget;
2392
David S. Miller53e52c72008-01-07 21:06:12 -08002393 /* If budget not fully consumed, exit the polling mode */
2394 if (work_done < budget) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002395 if (adapter->itr_setting & 3)
2396 e1000_set_itr(adapter);
Ben Hutchings288379f2009-01-19 16:43:59 -08002397 napi_complete(napi);
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00002398 if (!test_bit(__E1000_DOWN, &adapter->state)) {
2399 if (adapter->msix_entries)
2400 ew32(IMS, adapter->rx_ring->ims_val);
2401 else
2402 e1000_irq_enable(adapter);
2403 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002404 }
2405
2406 return work_done;
2407}
2408
2409static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
2410{
2411 struct e1000_adapter *adapter = netdev_priv(netdev);
2412 struct e1000_hw *hw = &adapter->hw;
2413 u32 vfta, index;
2414
2415 /* don't update vlan cookie if already programmed */
2416 if ((adapter->hw.mng_cookie.status &
2417 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2418 (vid == adapter->mng_vlan_id))
2419 return;
Bruce Allancaaddaf2009-12-01 15:46:43 +00002420
Auke Kokbc7f75f2007-09-17 12:30:59 -07002421 /* add VID to filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002422 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2423 index = (vid >> 5) & 0x7F;
2424 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2425 vfta |= (1 << (vid & 0x1F));
2426 hw->mac.ops.write_vfta(hw, index, vfta);
2427 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002428}
2429
2430static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
2431{
2432 struct e1000_adapter *adapter = netdev_priv(netdev);
2433 struct e1000_hw *hw = &adapter->hw;
2434 u32 vfta, index;
2435
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002436 if (!test_bit(__E1000_DOWN, &adapter->state))
2437 e1000_irq_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002438 vlan_group_set_device(adapter->vlgrp, vid, NULL);
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002439
2440 if (!test_bit(__E1000_DOWN, &adapter->state))
2441 e1000_irq_enable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002442
2443 if ((adapter->hw.mng_cookie.status &
2444 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2445 (vid == adapter->mng_vlan_id)) {
2446 /* release control to f/w */
2447 e1000_release_hw_control(adapter);
2448 return;
2449 }
2450
2451 /* remove VID from filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002452 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2453 index = (vid >> 5) & 0x7F;
2454 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2455 vfta &= ~(1 << (vid & 0x1F));
2456 hw->mac.ops.write_vfta(hw, index, vfta);
2457 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002458}
2459
2460static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
2461{
2462 struct net_device *netdev = adapter->netdev;
2463 u16 vid = adapter->hw.mng_cookie.vlan_id;
2464 u16 old_vid = adapter->mng_vlan_id;
2465
2466 if (!adapter->vlgrp)
2467 return;
2468
2469 if (!vlan_group_get_device(adapter->vlgrp, vid)) {
2470 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2471 if (adapter->hw.mng_cookie.status &
2472 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
2473 e1000_vlan_rx_add_vid(netdev, vid);
2474 adapter->mng_vlan_id = vid;
2475 }
2476
2477 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) &&
2478 (vid != old_vid) &&
2479 !vlan_group_get_device(adapter->vlgrp, old_vid))
2480 e1000_vlan_rx_kill_vid(netdev, old_vid);
2481 } else {
2482 adapter->mng_vlan_id = vid;
2483 }
2484}
2485
2486
2487static void e1000_vlan_rx_register(struct net_device *netdev,
2488 struct vlan_group *grp)
2489{
2490 struct e1000_adapter *adapter = netdev_priv(netdev);
2491 struct e1000_hw *hw = &adapter->hw;
2492 u32 ctrl, rctl;
2493
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002494 if (!test_bit(__E1000_DOWN, &adapter->state))
2495 e1000_irq_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002496 adapter->vlgrp = grp;
2497
2498 if (grp) {
2499 /* enable VLAN tag insert/strip */
2500 ctrl = er32(CTRL);
2501 ctrl |= E1000_CTRL_VME;
2502 ew32(CTRL, ctrl);
2503
2504 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2505 /* enable VLAN receive filtering */
2506 rctl = er32(RCTL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002507 rctl &= ~E1000_RCTL_CFIEN;
2508 ew32(RCTL, rctl);
2509 e1000_update_mng_vlan(adapter);
2510 }
2511 } else {
2512 /* disable VLAN tag insert/strip */
2513 ctrl = er32(CTRL);
2514 ctrl &= ~E1000_CTRL_VME;
2515 ew32(CTRL, ctrl);
2516
2517 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002518 if (adapter->mng_vlan_id !=
2519 (u16)E1000_MNG_VLAN_NONE) {
2520 e1000_vlan_rx_kill_vid(netdev,
2521 adapter->mng_vlan_id);
2522 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2523 }
2524 }
2525 }
2526
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002527 if (!test_bit(__E1000_DOWN, &adapter->state))
2528 e1000_irq_enable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002529}
2530
2531static void e1000_restore_vlan(struct e1000_adapter *adapter)
2532{
2533 u16 vid;
2534
2535 e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
2536
2537 if (!adapter->vlgrp)
2538 return;
2539
2540 for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
2541 if (!vlan_group_get_device(adapter->vlgrp, vid))
2542 continue;
2543 e1000_vlan_rx_add_vid(adapter->netdev, vid);
2544 }
2545}
2546
Bruce Allancd791612010-05-10 14:59:51 +00002547static void e1000_init_manageability_pt(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002548{
2549 struct e1000_hw *hw = &adapter->hw;
Bruce Allancd791612010-05-10 14:59:51 +00002550 u32 manc, manc2h, mdef, i, j;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002551
2552 if (!(adapter->flags & FLAG_MNG_PT_ENABLED))
2553 return;
2554
2555 manc = er32(MANC);
2556
Bruce Allanad680762008-03-28 09:15:03 -07002557 /*
2558 * enable receiving management packets to the host. this will probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07002559 * generate destination unreachable messages from the host OS, but
Bruce Allanad680762008-03-28 09:15:03 -07002560 * the packets will be handled on SMBUS
2561 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002562 manc |= E1000_MANC_EN_MNG2HOST;
2563 manc2h = er32(MANC2H);
Bruce Allancd791612010-05-10 14:59:51 +00002564
2565 switch (hw->mac.type) {
2566 default:
2567 manc2h |= (E1000_MANC2H_PORT_623 | E1000_MANC2H_PORT_664);
2568 break;
2569 case e1000_82574:
2570 case e1000_82583:
2571 /*
2572 * Check if IPMI pass-through decision filter already exists;
2573 * if so, enable it.
2574 */
2575 for (i = 0, j = 0; i < 8; i++) {
2576 mdef = er32(MDEF(i));
2577
2578 /* Ignore filters with anything other than IPMI ports */
Dan Carpenter3b21b502010-06-02 13:43:15 +00002579 if (mdef & ~(E1000_MDEF_PORT_623 | E1000_MDEF_PORT_664))
Bruce Allancd791612010-05-10 14:59:51 +00002580 continue;
2581
2582 /* Enable this decision filter in MANC2H */
2583 if (mdef)
2584 manc2h |= (1 << i);
2585
2586 j |= mdef;
2587 }
2588
2589 if (j == (E1000_MDEF_PORT_623 | E1000_MDEF_PORT_664))
2590 break;
2591
2592 /* Create new decision filter in an empty filter */
2593 for (i = 0, j = 0; i < 8; i++)
2594 if (er32(MDEF(i)) == 0) {
2595 ew32(MDEF(i), (E1000_MDEF_PORT_623 |
2596 E1000_MDEF_PORT_664));
2597 manc2h |= (1 << 1);
2598 j++;
2599 break;
2600 }
2601
2602 if (!j)
2603 e_warn("Unable to create IPMI pass-through filter\n");
2604 break;
2605 }
2606
Auke Kokbc7f75f2007-09-17 12:30:59 -07002607 ew32(MANC2H, manc2h);
2608 ew32(MANC, manc);
2609}
2610
2611/**
2612 * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
2613 * @adapter: board private structure
2614 *
2615 * Configure the Tx unit of the MAC after a reset.
2616 **/
2617static void e1000_configure_tx(struct e1000_adapter *adapter)
2618{
2619 struct e1000_hw *hw = &adapter->hw;
2620 struct e1000_ring *tx_ring = adapter->tx_ring;
2621 u64 tdba;
2622 u32 tdlen, tctl, tipg, tarc;
2623 u32 ipgr1, ipgr2;
2624
2625 /* Setup the HW Tx Head and Tail descriptor pointers */
2626 tdba = tx_ring->dma;
2627 tdlen = tx_ring->count * sizeof(struct e1000_tx_desc);
Yang Hongyang284901a2009-04-06 19:01:15 -07002628 ew32(TDBAL, (tdba & DMA_BIT_MASK(32)));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002629 ew32(TDBAH, (tdba >> 32));
2630 ew32(TDLEN, tdlen);
2631 ew32(TDH, 0);
2632 ew32(TDT, 0);
2633 tx_ring->head = E1000_TDH;
2634 tx_ring->tail = E1000_TDT;
2635
2636 /* Set the default values for the Tx Inter Packet Gap timer */
2637 tipg = DEFAULT_82543_TIPG_IPGT_COPPER; /* 8 */
2638 ipgr1 = DEFAULT_82543_TIPG_IPGR1; /* 8 */
2639 ipgr2 = DEFAULT_82543_TIPG_IPGR2; /* 6 */
2640
2641 if (adapter->flags & FLAG_TIPG_MEDIUM_FOR_80003ESLAN)
2642 ipgr2 = DEFAULT_80003ES2LAN_TIPG_IPGR2; /* 7 */
2643
2644 tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
2645 tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
2646 ew32(TIPG, tipg);
2647
2648 /* Set the Tx Interrupt Delay register */
2649 ew32(TIDV, adapter->tx_int_delay);
Bruce Allanad680762008-03-28 09:15:03 -07002650 /* Tx irq moderation */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002651 ew32(TADV, adapter->tx_abs_int_delay);
2652
2653 /* Program the Transmit Control Register */
2654 tctl = er32(TCTL);
2655 tctl &= ~E1000_TCTL_CT;
2656 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
2657 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
2658
2659 if (adapter->flags & FLAG_TARC_SPEED_MODE_BIT) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002660 tarc = er32(TARC(0));
Bruce Allanad680762008-03-28 09:15:03 -07002661 /*
2662 * set the speed mode bit, we'll clear it if we're not at
2663 * gigabit link later
2664 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002665#define SPEED_MODE_BIT (1 << 21)
2666 tarc |= SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002667 ew32(TARC(0), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002668 }
2669
2670 /* errata: program both queues to unweighted RR */
2671 if (adapter->flags & FLAG_TARC_SET_BIT_ZERO) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002672 tarc = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002673 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002674 ew32(TARC(0), tarc);
2675 tarc = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002676 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002677 ew32(TARC(1), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002678 }
2679
Auke Kokbc7f75f2007-09-17 12:30:59 -07002680 /* Setup Transmit Descriptor Settings for eop descriptor */
2681 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
2682
2683 /* only set IDE if we are delaying interrupts using the timers */
2684 if (adapter->tx_int_delay)
2685 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
2686
2687 /* enable Report Status bit */
2688 adapter->txd_cmd |= E1000_TXD_CMD_RS;
2689
2690 ew32(TCTL, tctl);
2691
Simon Hormanedfea6e62009-06-08 14:28:36 +00002692 e1000e_config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002693}
2694
2695/**
2696 * e1000_setup_rctl - configure the receive control registers
2697 * @adapter: Board private structure
2698 **/
2699#define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
2700 (((S) & (PAGE_SIZE - 1)) ? 1 : 0))
2701static void e1000_setup_rctl(struct e1000_adapter *adapter)
2702{
2703 struct e1000_hw *hw = &adapter->hw;
2704 u32 rctl, rfctl;
2705 u32 psrctl = 0;
2706 u32 pages = 0;
2707
2708 /* Program MC offset vector base */
2709 rctl = er32(RCTL);
2710 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
2711 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
2712 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
2713 (adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
2714
2715 /* Do not Store bad packets */
2716 rctl &= ~E1000_RCTL_SBP;
2717
2718 /* Enable Long Packet receive */
2719 if (adapter->netdev->mtu <= ETH_DATA_LEN)
2720 rctl &= ~E1000_RCTL_LPE;
2721 else
2722 rctl |= E1000_RCTL_LPE;
2723
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00002724 /* Some systems expect that the CRC is included in SMBUS traffic. The
2725 * hardware strips the CRC before sending to both SMBUS (BMC) and to
2726 * host memory when this is enabled
2727 */
2728 if (adapter->flags2 & FLAG2_CRC_STRIPPING)
2729 rctl |= E1000_RCTL_SECRC;
Auke Kok5918bd82008-02-12 15:20:24 -08002730
Bruce Allana4f58f52009-06-02 11:29:18 +00002731 /* Workaround Si errata on 82577 PHY - configure IPG for jumbos */
2732 if ((hw->phy.type == e1000_phy_82577) && (rctl & E1000_RCTL_LPE)) {
2733 u16 phy_data;
2734
2735 e1e_rphy(hw, PHY_REG(770, 26), &phy_data);
2736 phy_data &= 0xfff8;
2737 phy_data |= (1 << 2);
2738 e1e_wphy(hw, PHY_REG(770, 26), phy_data);
2739
2740 e1e_rphy(hw, 22, &phy_data);
2741 phy_data &= 0x0fff;
2742 phy_data |= (1 << 14);
2743 e1e_wphy(hw, 0x10, 0x2823);
2744 e1e_wphy(hw, 0x11, 0x0003);
2745 e1e_wphy(hw, 22, phy_data);
2746 }
2747
Bruce Alland3738bb2010-06-16 13:27:28 +00002748 /* Workaround Si errata on 82579 - configure jumbo frame flow */
2749 if (hw->mac.type == e1000_pch2lan) {
2750 s32 ret_val;
2751
2752 if (rctl & E1000_RCTL_LPE)
2753 ret_val = e1000_lv_jumbo_workaround_ich8lan(hw, true);
2754 else
2755 ret_val = e1000_lv_jumbo_workaround_ich8lan(hw, false);
2756 }
2757
Auke Kokbc7f75f2007-09-17 12:30:59 -07002758 /* Setup buffer sizes */
2759 rctl &= ~E1000_RCTL_SZ_4096;
2760 rctl |= E1000_RCTL_BSEX;
2761 switch (adapter->rx_buffer_len) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002762 case 2048:
2763 default:
2764 rctl |= E1000_RCTL_SZ_2048;
2765 rctl &= ~E1000_RCTL_BSEX;
2766 break;
2767 case 4096:
2768 rctl |= E1000_RCTL_SZ_4096;
2769 break;
2770 case 8192:
2771 rctl |= E1000_RCTL_SZ_8192;
2772 break;
2773 case 16384:
2774 rctl |= E1000_RCTL_SZ_16384;
2775 break;
2776 }
2777
2778 /*
2779 * 82571 and greater support packet-split where the protocol
2780 * header is placed in skb->data and the packet data is
2781 * placed in pages hanging off of skb_shinfo(skb)->nr_frags.
2782 * In the case of a non-split, skb->data is linearly filled,
2783 * followed by the page buffers. Therefore, skb->data is
2784 * sized to hold the largest protocol header.
2785 *
2786 * allocations using alloc_page take too long for regular MTU
2787 * so only enable packet split for jumbo frames
2788 *
2789 * Using pages when the page size is greater than 16k wastes
2790 * a lot of memory, since we allocate 3 pages at all times
2791 * per packet.
2792 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002793 pages = PAGE_USE_COUNT(adapter->netdev->mtu);
Bruce Allandbcb9fec2010-06-17 18:59:27 +00002794 if (!(adapter->flags & FLAG_HAS_ERT) && (pages <= 3) &&
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002795 (PAGE_SIZE <= 16384) && (rctl & E1000_RCTL_LPE))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002796 adapter->rx_ps_pages = pages;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002797 else
2798 adapter->rx_ps_pages = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002799
2800 if (adapter->rx_ps_pages) {
2801 /* Configure extra packet-split registers */
2802 rfctl = er32(RFCTL);
2803 rfctl |= E1000_RFCTL_EXTEN;
Bruce Allanad680762008-03-28 09:15:03 -07002804 /*
2805 * disable packet split support for IPv6 extension headers,
2806 * because some malformed IPv6 headers can hang the Rx
2807 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002808 rfctl |= (E1000_RFCTL_IPV6_EX_DIS |
2809 E1000_RFCTL_NEW_IPV6_EXT_DIS);
2810
2811 ew32(RFCTL, rfctl);
2812
Auke Kok140a7482007-10-25 13:57:58 -07002813 /* Enable Packet split descriptors */
2814 rctl |= E1000_RCTL_DTYP_PS;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002815
2816 psrctl |= adapter->rx_ps_bsize0 >>
2817 E1000_PSRCTL_BSIZE0_SHIFT;
2818
2819 switch (adapter->rx_ps_pages) {
2820 case 3:
2821 psrctl |= PAGE_SIZE <<
2822 E1000_PSRCTL_BSIZE3_SHIFT;
2823 case 2:
2824 psrctl |= PAGE_SIZE <<
2825 E1000_PSRCTL_BSIZE2_SHIFT;
2826 case 1:
2827 psrctl |= PAGE_SIZE >>
2828 E1000_PSRCTL_BSIZE1_SHIFT;
2829 break;
2830 }
2831
2832 ew32(PSRCTL, psrctl);
2833 }
2834
2835 ew32(RCTL, rctl);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07002836 /* just started the receive unit, no need to restart */
2837 adapter->flags &= ~FLAG_RX_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002838}
2839
2840/**
2841 * e1000_configure_rx - Configure Receive Unit after Reset
2842 * @adapter: board private structure
2843 *
2844 * Configure the Rx unit of the MAC after a reset.
2845 **/
2846static void e1000_configure_rx(struct e1000_adapter *adapter)
2847{
2848 struct e1000_hw *hw = &adapter->hw;
2849 struct e1000_ring *rx_ring = adapter->rx_ring;
2850 u64 rdba;
2851 u32 rdlen, rctl, rxcsum, ctrl_ext;
2852
2853 if (adapter->rx_ps_pages) {
2854 /* this is a 32 byte descriptor */
2855 rdlen = rx_ring->count *
2856 sizeof(union e1000_rx_desc_packet_split);
2857 adapter->clean_rx = e1000_clean_rx_irq_ps;
2858 adapter->alloc_rx_buf = e1000_alloc_rx_buffers_ps;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002859 } else if (adapter->netdev->mtu > ETH_FRAME_LEN + ETH_FCS_LEN) {
2860 rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
2861 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
2862 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002863 } else {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002864 rdlen = rx_ring->count * sizeof(struct e1000_rx_desc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002865 adapter->clean_rx = e1000_clean_rx_irq;
2866 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
2867 }
2868
2869 /* disable receives while setting up the descriptors */
2870 rctl = er32(RCTL);
2871 ew32(RCTL, rctl & ~E1000_RCTL_EN);
2872 e1e_flush();
2873 msleep(10);
2874
2875 /* set the Receive Delay Timer Register */
2876 ew32(RDTR, adapter->rx_int_delay);
2877
2878 /* irq moderation */
2879 ew32(RADV, adapter->rx_abs_int_delay);
2880 if (adapter->itr_setting != 0)
Bruce Allanad680762008-03-28 09:15:03 -07002881 ew32(ITR, 1000000000 / (adapter->itr * 256));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002882
2883 ctrl_ext = er32(CTRL_EXT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002884 /* Auto-Mask interrupts upon ICR access */
2885 ctrl_ext |= E1000_CTRL_EXT_IAME;
2886 ew32(IAM, 0xffffffff);
2887 ew32(CTRL_EXT, ctrl_ext);
2888 e1e_flush();
2889
Bruce Allanad680762008-03-28 09:15:03 -07002890 /*
2891 * Setup the HW Rx Head and Tail Descriptor Pointers and
2892 * the Base and Length of the Rx Descriptor Ring
2893 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002894 rdba = rx_ring->dma;
Yang Hongyang284901a2009-04-06 19:01:15 -07002895 ew32(RDBAL, (rdba & DMA_BIT_MASK(32)));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002896 ew32(RDBAH, (rdba >> 32));
2897 ew32(RDLEN, rdlen);
2898 ew32(RDH, 0);
2899 ew32(RDT, 0);
2900 rx_ring->head = E1000_RDH;
2901 rx_ring->tail = E1000_RDT;
2902
2903 /* Enable Receive Checksum Offload for TCP and UDP */
2904 rxcsum = er32(RXCSUM);
2905 if (adapter->flags & FLAG_RX_CSUM_ENABLED) {
2906 rxcsum |= E1000_RXCSUM_TUOFL;
2907
Bruce Allanad680762008-03-28 09:15:03 -07002908 /*
2909 * IPv4 payload checksum for UDP fragments must be
2910 * used in conjunction with packet-split.
2911 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002912 if (adapter->rx_ps_pages)
2913 rxcsum |= E1000_RXCSUM_IPPCSE;
2914 } else {
2915 rxcsum &= ~E1000_RXCSUM_TUOFL;
2916 /* no need to clear IPPCSE as it defaults to 0 */
2917 }
2918 ew32(RXCSUM, rxcsum);
2919
Bruce Allanad680762008-03-28 09:15:03 -07002920 /*
2921 * Enable early receives on supported devices, only takes effect when
Auke Kokbc7f75f2007-09-17 12:30:59 -07002922 * packet size is equal or larger than the specified value (in 8 byte
Bruce Allanad680762008-03-28 09:15:03 -07002923 * units), e.g. using jumbo frames when setting to E1000_ERT_2048
2924 */
Bruce Allan53ec5492009-11-20 23:27:40 +00002925 if (adapter->flags & FLAG_HAS_ERT) {
2926 if (adapter->netdev->mtu > ETH_DATA_LEN) {
2927 u32 rxdctl = er32(RXDCTL(0));
2928 ew32(RXDCTL(0), rxdctl | 0x3);
2929 ew32(ERT, E1000_ERT_2048 | (1 << 13));
2930 /*
2931 * With jumbo frames and early-receive enabled,
2932 * excessive C-state transition latencies result in
2933 * dropped transactions.
2934 */
Mark Grossed771342010-05-06 01:59:26 +02002935 pm_qos_update_request(
James Bottomley82f68252010-07-05 22:53:06 +02002936 &adapter->netdev->pm_qos_req, 55);
Bruce Allan53ec5492009-11-20 23:27:40 +00002937 } else {
Mark Grossed771342010-05-06 01:59:26 +02002938 pm_qos_update_request(
James Bottomley82f68252010-07-05 22:53:06 +02002939 &adapter->netdev->pm_qos_req,
Mark Grossed771342010-05-06 01:59:26 +02002940 PM_QOS_DEFAULT_VALUE);
Bruce Allan53ec5492009-11-20 23:27:40 +00002941 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -07002942 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002943
2944 /* Enable Receives */
2945 ew32(RCTL, rctl);
2946}
2947
2948/**
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07002949 * e1000_update_mc_addr_list - Update Multicast addresses
Auke Kokbc7f75f2007-09-17 12:30:59 -07002950 * @hw: pointer to the HW structure
2951 * @mc_addr_list: array of multicast addresses to program
2952 * @mc_addr_count: number of multicast addresses to program
Auke Kokbc7f75f2007-09-17 12:30:59 -07002953 *
Bruce Allanab8932f2010-01-13 02:05:38 +00002954 * Updates the Multicast Table Array.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002955 * The caller must have a packed mc_addr_list of multicast addresses.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002956 **/
Jeff Kirshere2de3eb2008-03-28 09:15:11 -07002957static void e1000_update_mc_addr_list(struct e1000_hw *hw, u8 *mc_addr_list,
Bruce Allanab8932f2010-01-13 02:05:38 +00002958 u32 mc_addr_count)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002959{
Bruce Allanab8932f2010-01-13 02:05:38 +00002960 hw->mac.ops.update_mc_addr_list(hw, mc_addr_list, mc_addr_count);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002961}
2962
2963/**
2964 * e1000_set_multi - Multicast and Promiscuous mode set
2965 * @netdev: network interface device structure
2966 *
2967 * The set_multi entry point is called whenever the multicast address
2968 * list or the network interface flags are updated. This routine is
2969 * responsible for configuring the hardware for proper multicast,
2970 * promiscuous mode, and all-multi behavior.
2971 **/
2972static void e1000_set_multi(struct net_device *netdev)
2973{
2974 struct e1000_adapter *adapter = netdev_priv(netdev);
2975 struct e1000_hw *hw = &adapter->hw;
Jiri Pirko22bedad32010-04-01 21:22:57 +00002976 struct netdev_hw_addr *ha;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002977 u8 *mta_list;
2978 u32 rctl;
2979 int i;
2980
2981 /* Check for Promiscuous and All Multicast modes */
2982
2983 rctl = er32(RCTL);
2984
2985 if (netdev->flags & IFF_PROMISC) {
2986 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Patrick McHardy746b9f02008-07-16 20:15:45 -07002987 rctl &= ~E1000_RCTL_VFE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002988 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07002989 if (netdev->flags & IFF_ALLMULTI) {
2990 rctl |= E1000_RCTL_MPE;
2991 rctl &= ~E1000_RCTL_UPE;
2992 } else {
2993 rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE);
2994 }
Patrick McHardy78ed11a2008-07-16 20:16:14 -07002995 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
Patrick McHardy746b9f02008-07-16 20:15:45 -07002996 rctl |= E1000_RCTL_VFE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002997 }
2998
2999 ew32(RCTL, rctl);
3000
Jiri Pirko7aeef972010-02-05 02:52:39 +00003001 if (!netdev_mc_empty(netdev)) {
3002 mta_list = kmalloc(netdev_mc_count(netdev) * 6, GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003003 if (!mta_list)
3004 return;
3005
3006 /* prepare a packed array of only addresses. */
Jiri Pirko7aeef972010-02-05 02:52:39 +00003007 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00003008 netdev_for_each_mc_addr(ha, netdev)
3009 memcpy(mta_list + (i++ * ETH_ALEN), ha->addr, ETH_ALEN);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003010
Bruce Allanab8932f2010-01-13 02:05:38 +00003011 e1000_update_mc_addr_list(hw, mta_list, i);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003012 kfree(mta_list);
3013 } else {
3014 /*
3015 * if we're called from probe, we might not have
3016 * anything to do here, so clear out the list
3017 */
Bruce Allanab8932f2010-01-13 02:05:38 +00003018 e1000_update_mc_addr_list(hw, NULL, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003019 }
3020}
3021
3022/**
Bruce Allanad680762008-03-28 09:15:03 -07003023 * e1000_configure - configure the hardware for Rx and Tx
Auke Kokbc7f75f2007-09-17 12:30:59 -07003024 * @adapter: private board structure
3025 **/
3026static void e1000_configure(struct e1000_adapter *adapter)
3027{
3028 e1000_set_multi(adapter->netdev);
3029
3030 e1000_restore_vlan(adapter);
Bruce Allancd791612010-05-10 14:59:51 +00003031 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003032
3033 e1000_configure_tx(adapter);
3034 e1000_setup_rctl(adapter);
3035 e1000_configure_rx(adapter);
Bruce Allanad680762008-03-28 09:15:03 -07003036 adapter->alloc_rx_buf(adapter, e1000_desc_unused(adapter->rx_ring));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003037}
3038
3039/**
3040 * e1000e_power_up_phy - restore link in case the phy was powered down
3041 * @adapter: address of board private structure
3042 *
3043 * The phy may be powered down to save power and turn off link when the
3044 * driver is unloaded and wake on lan is not enabled (among others)
3045 * *** this routine MUST be followed by a call to e1000e_reset ***
3046 **/
3047void e1000e_power_up_phy(struct e1000_adapter *adapter)
3048{
Bruce Allan17f208d2009-12-01 15:47:22 +00003049 if (adapter->hw.phy.ops.power_up)
3050 adapter->hw.phy.ops.power_up(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003051
3052 adapter->hw.mac.ops.setup_link(&adapter->hw);
3053}
3054
3055/**
3056 * e1000_power_down_phy - Power down the PHY
3057 *
Bruce Allan17f208d2009-12-01 15:47:22 +00003058 * Power down the PHY so no link is implied when interface is down.
3059 * The PHY cannot be powered down if management or WoL is active.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003060 */
3061static void e1000_power_down_phy(struct e1000_adapter *adapter)
3062{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003063 /* WoL is enabled */
Auke Kok23b66e22008-02-11 09:25:51 -08003064 if (adapter->wol)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003065 return;
3066
Bruce Allan17f208d2009-12-01 15:47:22 +00003067 if (adapter->hw.phy.ops.power_down)
3068 adapter->hw.phy.ops.power_down(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003069}
3070
3071/**
3072 * e1000e_reset - bring the hardware into a known good state
3073 *
3074 * This function boots the hardware and enables some settings that
3075 * require a configuration cycle of the hardware - those cannot be
3076 * set/changed during runtime. After reset the device needs to be
Bruce Allanad680762008-03-28 09:15:03 -07003077 * properly configured for Rx, Tx etc.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003078 */
3079void e1000e_reset(struct e1000_adapter *adapter)
3080{
3081 struct e1000_mac_info *mac = &adapter->hw.mac;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003082 struct e1000_fc_info *fc = &adapter->hw.fc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003083 struct e1000_hw *hw = &adapter->hw;
3084 u32 tx_space, min_tx_space, min_rx_space;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003085 u32 pba = adapter->pba;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003086 u16 hwm;
3087
Bruce Allanad680762008-03-28 09:15:03 -07003088 /* reset Packet Buffer Allocation to default */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003089 ew32(PBA, pba);
Auke Kokdf762462007-10-25 13:57:53 -07003090
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003091 if (adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allanad680762008-03-28 09:15:03 -07003092 /*
3093 * To maintain wire speed transmits, the Tx FIFO should be
Auke Kokbc7f75f2007-09-17 12:30:59 -07003094 * large enough to accommodate two full transmit packets,
3095 * rounded up to the next 1KB and expressed in KB. Likewise,
3096 * the Rx FIFO should be large enough to accommodate at least
3097 * one full receive packet and is similarly rounded up and
Bruce Allanad680762008-03-28 09:15:03 -07003098 * expressed in KB.
3099 */
Auke Kokdf762462007-10-25 13:57:53 -07003100 pba = er32(PBA);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003101 /* upper 16 bits has Tx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003102 tx_space = pba >> 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003103 /* lower 16 bits has Rx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003104 pba &= 0xffff;
Bruce Allanad680762008-03-28 09:15:03 -07003105 /*
3106 * the Tx fifo also stores 16 bytes of information about the tx
3107 * but don't include ethernet FCS because hardware appends it
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003108 */
3109 min_tx_space = (adapter->max_frame_size +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003110 sizeof(struct e1000_tx_desc) -
3111 ETH_FCS_LEN) * 2;
3112 min_tx_space = ALIGN(min_tx_space, 1024);
3113 min_tx_space >>= 10;
3114 /* software strips receive CRC, so leave room for it */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003115 min_rx_space = adapter->max_frame_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003116 min_rx_space = ALIGN(min_rx_space, 1024);
3117 min_rx_space >>= 10;
3118
Bruce Allanad680762008-03-28 09:15:03 -07003119 /*
3120 * If current Tx allocation is less than the min Tx FIFO size,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003121 * and the min Tx FIFO size is less than the current Rx FIFO
Bruce Allanad680762008-03-28 09:15:03 -07003122 * allocation, take space away from current Rx allocation
3123 */
Auke Kokdf762462007-10-25 13:57:53 -07003124 if ((tx_space < min_tx_space) &&
3125 ((min_tx_space - tx_space) < pba)) {
3126 pba -= min_tx_space - tx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003127
Bruce Allanad680762008-03-28 09:15:03 -07003128 /*
3129 * if short on Rx space, Rx wins and must trump tx
3130 * adjustment or use Early Receive if available
3131 */
Auke Kokdf762462007-10-25 13:57:53 -07003132 if ((pba < min_rx_space) &&
Auke Kokbc7f75f2007-09-17 12:30:59 -07003133 (!(adapter->flags & FLAG_HAS_ERT)))
3134 /* ERT enabled in e1000_configure_rx */
Auke Kokdf762462007-10-25 13:57:53 -07003135 pba = min_rx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003136 }
Auke Kokdf762462007-10-25 13:57:53 -07003137
3138 ew32(PBA, pba);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003139 }
3140
Auke Kokbc7f75f2007-09-17 12:30:59 -07003141
Bruce Allanad680762008-03-28 09:15:03 -07003142 /*
3143 * flow control settings
3144 *
Bruce Allan38eb3942009-11-19 12:34:20 +00003145 * The high water mark must be low enough to fit one full frame
Auke Kokbc7f75f2007-09-17 12:30:59 -07003146 * (or the size used for early receive) above it in the Rx FIFO.
3147 * Set it to the lower of:
3148 * - 90% of the Rx FIFO size, and
3149 * - the full Rx FIFO size minus the early receive size (for parts
3150 * with ERT support assuming ERT set to E1000_ERT_2048), or
Bruce Allan38eb3942009-11-19 12:34:20 +00003151 * - the full Rx FIFO size minus one full frame
Bruce Allanad680762008-03-28 09:15:03 -07003152 */
Bruce Alland3738bb2010-06-16 13:27:28 +00003153 if (adapter->flags & FLAG_DISABLE_FC_PAUSE_TIME)
3154 fc->pause_time = 0xFFFF;
3155 else
3156 fc->pause_time = E1000_FC_PAUSE_TIME;
3157 fc->send_xon = 1;
3158 fc->current_mode = fc->requested_mode;
3159
3160 switch (hw->mac.type) {
3161 default:
3162 if ((adapter->flags & FLAG_HAS_ERT) &&
3163 (adapter->netdev->mtu > ETH_DATA_LEN))
3164 hwm = min(((pba << 10) * 9 / 10),
3165 ((pba << 10) - (E1000_ERT_2048 << 3)));
3166 else
3167 hwm = min(((pba << 10) * 9 / 10),
3168 ((pba << 10) - adapter->max_frame_size));
3169
3170 fc->high_water = hwm & E1000_FCRTH_RTH; /* 8-byte granularity */
3171 fc->low_water = fc->high_water - 8;
3172 break;
3173 case e1000_pchlan:
Bruce Allan38eb3942009-11-19 12:34:20 +00003174 /*
3175 * Workaround PCH LOM adapter hangs with certain network
3176 * loads. If hangs persist, try disabling Tx flow control.
3177 */
3178 if (adapter->netdev->mtu > ETH_DATA_LEN) {
3179 fc->high_water = 0x3500;
3180 fc->low_water = 0x1500;
3181 } else {
3182 fc->high_water = 0x5000;
3183 fc->low_water = 0x3000;
3184 }
Bruce Allana3055952010-05-10 15:02:12 +00003185 fc->refresh_time = 0x1000;
Bruce Alland3738bb2010-06-16 13:27:28 +00003186 break;
3187 case e1000_pch2lan:
3188 fc->high_water = 0x05C20;
3189 fc->low_water = 0x05048;
3190 fc->pause_time = 0x0650;
3191 fc->refresh_time = 0x0400;
3192 break;
Bruce Allan38eb3942009-11-19 12:34:20 +00003193 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003194
Auke Kokbc7f75f2007-09-17 12:30:59 -07003195 /* Allow time for pending master requests to run */
3196 mac->ops.reset_hw(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003197
3198 /*
3199 * For parts with AMT enabled, let the firmware know
3200 * that the network interface is in control
3201 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07003202 if (adapter->flags & FLAG_HAS_AMT)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003203 e1000_get_hw_control(adapter);
3204
Auke Kokbc7f75f2007-09-17 12:30:59 -07003205 ew32(WUC, 0);
3206
3207 if (mac->ops.init_hw(hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003208 e_err("Hardware Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003209
3210 e1000_update_mng_vlan(adapter);
3211
3212 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
3213 ew32(VET, ETH_P_8021Q);
3214
3215 e1000e_reset_adaptive(hw);
3216 e1000_get_phy_info(hw);
3217
Bruce Allan918d7192009-06-02 11:28:20 +00003218 if ((adapter->flags & FLAG_HAS_SMART_POWER_DOWN) &&
3219 !(adapter->flags & FLAG_SMART_POWER_DOWN)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003220 u16 phy_data = 0;
Bruce Allanad680762008-03-28 09:15:03 -07003221 /*
3222 * speed up time to link by disabling smart power down, ignore
Auke Kokbc7f75f2007-09-17 12:30:59 -07003223 * the return value of this function because there is nothing
Bruce Allanad680762008-03-28 09:15:03 -07003224 * different we would do if it failed
3225 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003226 e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &phy_data);
3227 phy_data &= ~IGP02E1000_PM_SPD;
3228 e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, phy_data);
3229 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003230}
3231
3232int e1000e_up(struct e1000_adapter *adapter)
3233{
3234 struct e1000_hw *hw = &adapter->hw;
3235
3236 /* hardware has been reset, we need to reload some things */
3237 e1000_configure(adapter);
3238
3239 clear_bit(__E1000_DOWN, &adapter->state);
3240
3241 napi_enable(&adapter->napi);
Bruce Allan4662e822008-08-26 18:37:06 -07003242 if (adapter->msix_entries)
3243 e1000_configure_msix(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003244 e1000_irq_enable(adapter);
3245
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003246 netif_wake_queue(adapter->netdev);
3247
Auke Kokbc7f75f2007-09-17 12:30:59 -07003248 /* fire a link change interrupt to start the watchdog */
Bruce Allan52a9b232010-05-10 15:00:10 +00003249 if (adapter->msix_entries)
3250 ew32(ICS, E1000_ICS_LSC | E1000_ICR_OTHER);
3251 else
3252 ew32(ICS, E1000_ICS_LSC);
3253
Auke Kokbc7f75f2007-09-17 12:30:59 -07003254 return 0;
3255}
3256
3257void e1000e_down(struct e1000_adapter *adapter)
3258{
3259 struct net_device *netdev = adapter->netdev;
3260 struct e1000_hw *hw = &adapter->hw;
3261 u32 tctl, rctl;
3262
Bruce Allanad680762008-03-28 09:15:03 -07003263 /*
3264 * signal that we're down so the interrupt handler does not
3265 * reschedule our watchdog timer
3266 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003267 set_bit(__E1000_DOWN, &adapter->state);
3268
3269 /* disable receives in the hardware */
3270 rctl = er32(RCTL);
3271 ew32(RCTL, rctl & ~E1000_RCTL_EN);
3272 /* flush and sleep below */
3273
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003274 netif_stop_queue(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003275
3276 /* disable transmits in the hardware */
3277 tctl = er32(TCTL);
3278 tctl &= ~E1000_TCTL_EN;
3279 ew32(TCTL, tctl);
3280 /* flush both disables and wait for them to finish */
3281 e1e_flush();
3282 msleep(10);
3283
3284 napi_disable(&adapter->napi);
3285 e1000_irq_disable(adapter);
3286
3287 del_timer_sync(&adapter->watchdog_timer);
3288 del_timer_sync(&adapter->phy_info_timer);
3289
Auke Kokbc7f75f2007-09-17 12:30:59 -07003290 netif_carrier_off(netdev);
3291 adapter->link_speed = 0;
3292 adapter->link_duplex = 0;
3293
Jeff Kirsher52cc3082008-06-24 17:01:29 -07003294 if (!pci_channel_offline(adapter->pdev))
3295 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003296 e1000_clean_tx_ring(adapter);
3297 e1000_clean_rx_ring(adapter);
3298
3299 /*
3300 * TODO: for power management, we could drop the link and
3301 * pci_disable_device here.
3302 */
3303}
3304
3305void e1000e_reinit_locked(struct e1000_adapter *adapter)
3306{
3307 might_sleep();
3308 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
3309 msleep(1);
3310 e1000e_down(adapter);
3311 e1000e_up(adapter);
3312 clear_bit(__E1000_RESETTING, &adapter->state);
3313}
3314
3315/**
3316 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
3317 * @adapter: board private structure to initialize
3318 *
3319 * e1000_sw_init initializes the Adapter private data structure.
3320 * Fields are initialized based on PCI device information and
3321 * OS network device settings (MTU size).
3322 **/
3323static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
3324{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003325 struct net_device *netdev = adapter->netdev;
3326
3327 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN;
3328 adapter->rx_ps_bsize0 = 128;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003329 adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
3330 adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003331
Bruce Allan4662e822008-08-26 18:37:06 -07003332 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003333
Bruce Allan4662e822008-08-26 18:37:06 -07003334 if (e1000_alloc_queues(adapter))
3335 return -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003336
Auke Kokbc7f75f2007-09-17 12:30:59 -07003337 /* Explicitly disable IRQ since the NIC can be in any state. */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003338 e1000_irq_disable(adapter);
3339
Auke Kokbc7f75f2007-09-17 12:30:59 -07003340 set_bit(__E1000_DOWN, &adapter->state);
3341 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003342}
3343
3344/**
Bruce Allanf8d59f72008-08-08 18:36:11 -07003345 * e1000_intr_msi_test - Interrupt Handler
3346 * @irq: interrupt number
3347 * @data: pointer to a network interface device structure
3348 **/
3349static irqreturn_t e1000_intr_msi_test(int irq, void *data)
3350{
3351 struct net_device *netdev = data;
3352 struct e1000_adapter *adapter = netdev_priv(netdev);
3353 struct e1000_hw *hw = &adapter->hw;
3354 u32 icr = er32(ICR);
3355
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003356 e_dbg("icr is %08X\n", icr);
Bruce Allanf8d59f72008-08-08 18:36:11 -07003357 if (icr & E1000_ICR_RXSEQ) {
3358 adapter->flags &= ~FLAG_MSI_TEST_FAILED;
3359 wmb();
3360 }
3361
3362 return IRQ_HANDLED;
3363}
3364
3365/**
3366 * e1000_test_msi_interrupt - Returns 0 for successful test
3367 * @adapter: board private struct
3368 *
3369 * code flow taken from tg3.c
3370 **/
3371static int e1000_test_msi_interrupt(struct e1000_adapter *adapter)
3372{
3373 struct net_device *netdev = adapter->netdev;
3374 struct e1000_hw *hw = &adapter->hw;
3375 int err;
3376
3377 /* poll_enable hasn't been called yet, so don't need disable */
3378 /* clear any pending events */
3379 er32(ICR);
3380
3381 /* free the real vector and request a test handler */
3382 e1000_free_irq(adapter);
Bruce Allan4662e822008-08-26 18:37:06 -07003383 e1000e_reset_interrupt_capability(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07003384
3385 /* Assume that the test fails, if it succeeds then the test
3386 * MSI irq handler will unset this flag */
3387 adapter->flags |= FLAG_MSI_TEST_FAILED;
3388
3389 err = pci_enable_msi(adapter->pdev);
3390 if (err)
3391 goto msi_test_failed;
3392
Joe Perchesa0607fd2009-11-18 23:29:17 -08003393 err = request_irq(adapter->pdev->irq, e1000_intr_msi_test, 0,
Bruce Allanf8d59f72008-08-08 18:36:11 -07003394 netdev->name, netdev);
3395 if (err) {
3396 pci_disable_msi(adapter->pdev);
3397 goto msi_test_failed;
3398 }
3399
3400 wmb();
3401
3402 e1000_irq_enable(adapter);
3403
3404 /* fire an unusual interrupt on the test handler */
3405 ew32(ICS, E1000_ICS_RXSEQ);
3406 e1e_flush();
3407 msleep(50);
3408
3409 e1000_irq_disable(adapter);
3410
3411 rmb();
3412
3413 if (adapter->flags & FLAG_MSI_TEST_FAILED) {
Bruce Allan4662e822008-08-26 18:37:06 -07003414 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Bruce Allanf8d59f72008-08-08 18:36:11 -07003415 err = -EIO;
3416 e_info("MSI interrupt test failed!\n");
3417 }
3418
3419 free_irq(adapter->pdev->irq, netdev);
3420 pci_disable_msi(adapter->pdev);
3421
3422 if (err == -EIO)
3423 goto msi_test_failed;
3424
3425 /* okay so the test worked, restore settings */
Bruce Allan3bb99fe2009-11-20 23:25:07 +00003426 e_dbg("MSI interrupt test succeeded!\n");
Bruce Allanf8d59f72008-08-08 18:36:11 -07003427msi_test_failed:
Bruce Allan4662e822008-08-26 18:37:06 -07003428 e1000e_set_interrupt_capability(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07003429 e1000_request_irq(adapter);
3430 return err;
3431}
3432
3433/**
3434 * e1000_test_msi - Returns 0 if MSI test succeeds or INTx mode is restored
3435 * @adapter: board private struct
3436 *
3437 * code flow taken from tg3.c, called with e1000 interrupts disabled.
3438 **/
3439static int e1000_test_msi(struct e1000_adapter *adapter)
3440{
3441 int err;
3442 u16 pci_cmd;
3443
3444 if (!(adapter->flags & FLAG_MSI_ENABLED))
3445 return 0;
3446
3447 /* disable SERR in case the MSI write causes a master abort */
3448 pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
Dean Nelson36f24072010-06-29 18:12:05 +00003449 if (pci_cmd & PCI_COMMAND_SERR)
3450 pci_write_config_word(adapter->pdev, PCI_COMMAND,
3451 pci_cmd & ~PCI_COMMAND_SERR);
Bruce Allanf8d59f72008-08-08 18:36:11 -07003452
3453 err = e1000_test_msi_interrupt(adapter);
3454
Dean Nelson36f24072010-06-29 18:12:05 +00003455 /* re-enable SERR */
3456 if (pci_cmd & PCI_COMMAND_SERR) {
3457 pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
3458 pci_cmd |= PCI_COMMAND_SERR;
3459 pci_write_config_word(adapter->pdev, PCI_COMMAND, pci_cmd);
3460 }
Bruce Allanf8d59f72008-08-08 18:36:11 -07003461
3462 /* success ! */
3463 if (!err)
3464 return 0;
3465
3466 /* EIO means MSI test failed */
3467 if (err != -EIO)
3468 return err;
3469
3470 /* back to INTx mode */
3471 e_warn("MSI interrupt test failed, using legacy interrupt.\n");
3472
3473 e1000_free_irq(adapter);
3474
3475 err = e1000_request_irq(adapter);
3476
3477 return err;
3478}
3479
3480/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003481 * e1000_open - Called when a network interface is made active
3482 * @netdev: network interface device structure
3483 *
3484 * Returns 0 on success, negative value on failure
3485 *
3486 * The open entry point is called when a network interface is made
3487 * active by the system (IFF_UP). At this point all resources needed
3488 * for transmit and receive operations are allocated, the interrupt
3489 * handler is registered with the OS, the watchdog timer is started,
3490 * and the stack is notified that the interface is ready.
3491 **/
3492static int e1000_open(struct net_device *netdev)
3493{
3494 struct e1000_adapter *adapter = netdev_priv(netdev);
3495 struct e1000_hw *hw = &adapter->hw;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003496 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003497 int err;
3498
3499 /* disallow open during test */
3500 if (test_bit(__E1000_TESTING, &adapter->state))
3501 return -EBUSY;
3502
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003503 pm_runtime_get_sync(&pdev->dev);
3504
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00003505 netif_carrier_off(netdev);
3506
Auke Kokbc7f75f2007-09-17 12:30:59 -07003507 /* allocate transmit descriptors */
3508 err = e1000e_setup_tx_resources(adapter);
3509 if (err)
3510 goto err_setup_tx;
3511
3512 /* allocate receive descriptors */
3513 err = e1000e_setup_rx_resources(adapter);
3514 if (err)
3515 goto err_setup_rx;
3516
Bruce Allan11b08be2010-05-10 14:59:31 +00003517 /*
3518 * If AMT is enabled, let the firmware know that the network
3519 * interface is now open and reset the part to a known state.
3520 */
3521 if (adapter->flags & FLAG_HAS_AMT) {
3522 e1000_get_hw_control(adapter);
3523 e1000e_reset(adapter);
3524 }
3525
Auke Kokbc7f75f2007-09-17 12:30:59 -07003526 e1000e_power_up_phy(adapter);
3527
3528 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
3529 if ((adapter->hw.mng_cookie.status &
3530 E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
3531 e1000_update_mng_vlan(adapter);
3532
Florian Micklerc128ec22010-08-02 14:27:00 +00003533 /* DMA latency requirement to workaround early-receive/jumbo issue */
3534 if (adapter->flags & FLAG_HAS_ERT)
Linus Torvalds6ba74012010-08-04 11:47:58 -07003535 pm_qos_add_request(&adapter->netdev->pm_qos_req,
3536 PM_QOS_CPU_DMA_LATENCY,
3537 PM_QOS_DEFAULT_VALUE);
Florian Micklerc128ec22010-08-02 14:27:00 +00003538
Bruce Allanad680762008-03-28 09:15:03 -07003539 /*
Bruce Allanad680762008-03-28 09:15:03 -07003540 * before we allocate an interrupt, we must be ready to handle it.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003541 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
3542 * as soon as we call pci_request_irq, so we have to setup our
Bruce Allanad680762008-03-28 09:15:03 -07003543 * clean_rx handler before we do so.
3544 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003545 e1000_configure(adapter);
3546
3547 err = e1000_request_irq(adapter);
3548 if (err)
3549 goto err_req_irq;
3550
Bruce Allanf8d59f72008-08-08 18:36:11 -07003551 /*
3552 * Work around PCIe errata with MSI interrupts causing some chipsets to
3553 * ignore e1000e MSI messages, which means we need to test our MSI
3554 * interrupt now
3555 */
Bruce Allan4662e822008-08-26 18:37:06 -07003556 if (adapter->int_mode != E1000E_INT_MODE_LEGACY) {
Bruce Allanf8d59f72008-08-08 18:36:11 -07003557 err = e1000_test_msi(adapter);
3558 if (err) {
3559 e_err("Interrupt allocation failed\n");
3560 goto err_req_irq;
3561 }
3562 }
3563
Auke Kokbc7f75f2007-09-17 12:30:59 -07003564 /* From here on the code is the same as e1000e_up() */
3565 clear_bit(__E1000_DOWN, &adapter->state);
3566
3567 napi_enable(&adapter->napi);
3568
3569 e1000_irq_enable(adapter);
3570
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003571 netif_start_queue(netdev);
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07003572
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003573 adapter->idle_check = true;
3574 pm_runtime_put(&pdev->dev);
3575
Auke Kokbc7f75f2007-09-17 12:30:59 -07003576 /* fire a link status change interrupt to start the watchdog */
Bruce Allan52a9b232010-05-10 15:00:10 +00003577 if (adapter->msix_entries)
3578 ew32(ICS, E1000_ICS_LSC | E1000_ICR_OTHER);
3579 else
3580 ew32(ICS, E1000_ICS_LSC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003581
3582 return 0;
3583
3584err_req_irq:
3585 e1000_release_hw_control(adapter);
3586 e1000_power_down_phy(adapter);
3587 e1000e_free_rx_resources(adapter);
3588err_setup_rx:
3589 e1000e_free_tx_resources(adapter);
3590err_setup_tx:
3591 e1000e_reset(adapter);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003592 pm_runtime_put_sync(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003593
3594 return err;
3595}
3596
3597/**
3598 * e1000_close - Disables a network interface
3599 * @netdev: network interface device structure
3600 *
3601 * Returns 0, this is not allowed to fail
3602 *
3603 * The close entry point is called when an interface is de-activated
3604 * by the OS. The hardware is still under the drivers control, but
3605 * needs to be disabled. A global MAC reset is issued to stop the
3606 * hardware, and all transmit and receive resources are freed.
3607 **/
3608static int e1000_close(struct net_device *netdev)
3609{
3610 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003611 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003612
3613 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003614
3615 pm_runtime_get_sync(&pdev->dev);
3616
3617 if (!test_bit(__E1000_DOWN, &adapter->state)) {
3618 e1000e_down(adapter);
3619 e1000_free_irq(adapter);
3620 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003621 e1000_power_down_phy(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003622
3623 e1000e_free_tx_resources(adapter);
3624 e1000e_free_rx_resources(adapter);
3625
Bruce Allanad680762008-03-28 09:15:03 -07003626 /*
3627 * kill manageability vlan ID if supported, but not if a vlan with
3628 * the same ID is registered on the host OS (let 8021q kill it)
3629 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003630 if ((adapter->hw.mng_cookie.status &
3631 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
3632 !(adapter->vlgrp &&
3633 vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id)))
3634 e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
3635
Bruce Allanad680762008-03-28 09:15:03 -07003636 /*
3637 * If AMT is enabled, let the firmware know that the network
3638 * interface is now closed
3639 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07003640 if (adapter->flags & FLAG_HAS_AMT)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003641 e1000_release_hw_control(adapter);
3642
Linus Torvalds6ba74012010-08-04 11:47:58 -07003643 if (adapter->flags & FLAG_HAS_ERT)
3644 pm_qos_remove_request(&adapter->netdev->pm_qos_req);
Florian Micklerc128ec22010-08-02 14:27:00 +00003645
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00003646 pm_runtime_put_sync(&pdev->dev);
3647
Auke Kokbc7f75f2007-09-17 12:30:59 -07003648 return 0;
3649}
3650/**
3651 * e1000_set_mac - Change the Ethernet Address of the NIC
3652 * @netdev: network interface device structure
3653 * @p: pointer to an address structure
3654 *
3655 * Returns 0 on success, negative on failure
3656 **/
3657static int e1000_set_mac(struct net_device *netdev, void *p)
3658{
3659 struct e1000_adapter *adapter = netdev_priv(netdev);
3660 struct sockaddr *addr = p;
3661
3662 if (!is_valid_ether_addr(addr->sa_data))
3663 return -EADDRNOTAVAIL;
3664
3665 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
3666 memcpy(adapter->hw.mac.addr, addr->sa_data, netdev->addr_len);
3667
3668 e1000e_rar_set(&adapter->hw, adapter->hw.mac.addr, 0);
3669
3670 if (adapter->flags & FLAG_RESET_OVERWRITES_LAA) {
3671 /* activate the work around */
3672 e1000e_set_laa_state_82571(&adapter->hw, 1);
3673
Bruce Allanad680762008-03-28 09:15:03 -07003674 /*
3675 * Hold a copy of the LAA in RAR[14] This is done so that
Auke Kokbc7f75f2007-09-17 12:30:59 -07003676 * between the time RAR[0] gets clobbered and the time it
3677 * gets fixed (in e1000_watchdog), the actual LAA is in one
3678 * of the RARs and no incoming packets directed to this port
3679 * are dropped. Eventually the LAA will be in RAR[0] and
Bruce Allanad680762008-03-28 09:15:03 -07003680 * RAR[14]
3681 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003682 e1000e_rar_set(&adapter->hw,
3683 adapter->hw.mac.addr,
3684 adapter->hw.mac.rar_entry_count - 1);
3685 }
3686
3687 return 0;
3688}
3689
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07003690/**
3691 * e1000e_update_phy_task - work thread to update phy
3692 * @work: pointer to our work struct
3693 *
3694 * this worker thread exists because we must acquire a
3695 * semaphore to read the phy, which we could msleep while
3696 * waiting for it, and we can't msleep in a timer.
3697 **/
3698static void e1000e_update_phy_task(struct work_struct *work)
3699{
3700 struct e1000_adapter *adapter = container_of(work,
3701 struct e1000_adapter, update_phy_task);
3702 e1000_get_phy_info(&adapter->hw);
3703}
3704
Bruce Allanad680762008-03-28 09:15:03 -07003705/*
3706 * Need to wait a few seconds after link up to get diagnostic information from
3707 * the phy
3708 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003709static void e1000_update_phy_info(unsigned long data)
3710{
3711 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07003712 schedule_work(&adapter->update_phy_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003713}
3714
3715/**
Bruce Allan8c7bbb92010-06-16 13:26:41 +00003716 * e1000e_update_phy_stats - Update the PHY statistics counters
3717 * @adapter: board private structure
3718 **/
3719static void e1000e_update_phy_stats(struct e1000_adapter *adapter)
3720{
3721 struct e1000_hw *hw = &adapter->hw;
3722 s32 ret_val;
3723 u16 phy_data;
3724
3725 ret_val = hw->phy.ops.acquire(hw);
3726 if (ret_val)
3727 return;
3728
3729 hw->phy.addr = 1;
3730
3731#define HV_PHY_STATS_PAGE 778
3732 /*
3733 * A page set is expensive so check if already on desired page.
3734 * If not, set to the page with the PHY status registers.
3735 */
3736 ret_val = e1000e_read_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT,
3737 &phy_data);
3738 if (ret_val)
3739 goto release;
3740 if (phy_data != (HV_PHY_STATS_PAGE << IGP_PAGE_SHIFT)) {
3741 ret_val = e1000e_write_phy_reg_mdic(hw,
3742 IGP01E1000_PHY_PAGE_SELECT,
3743 (HV_PHY_STATS_PAGE <<
3744 IGP_PAGE_SHIFT));
3745 if (ret_val)
3746 goto release;
3747 }
3748
3749 /* Read/clear the upper 16-bit registers and read/accumulate lower */
3750
3751 /* Single Collision Count */
3752 e1000e_read_phy_reg_mdic(hw, HV_SCC_UPPER & MAX_PHY_REG_ADDRESS,
3753 &phy_data);
3754 ret_val = e1000e_read_phy_reg_mdic(hw,
3755 HV_SCC_LOWER & MAX_PHY_REG_ADDRESS,
3756 &phy_data);
3757 if (!ret_val)
3758 adapter->stats.scc += phy_data;
3759
3760 /* Excessive Collision Count */
3761 e1000e_read_phy_reg_mdic(hw, HV_ECOL_UPPER & MAX_PHY_REG_ADDRESS,
3762 &phy_data);
3763 ret_val = e1000e_read_phy_reg_mdic(hw,
3764 HV_ECOL_LOWER & MAX_PHY_REG_ADDRESS,
3765 &phy_data);
3766 if (!ret_val)
3767 adapter->stats.ecol += phy_data;
3768
3769 /* Multiple Collision Count */
3770 e1000e_read_phy_reg_mdic(hw, HV_MCC_UPPER & MAX_PHY_REG_ADDRESS,
3771 &phy_data);
3772 ret_val = e1000e_read_phy_reg_mdic(hw,
3773 HV_MCC_LOWER & MAX_PHY_REG_ADDRESS,
3774 &phy_data);
3775 if (!ret_val)
3776 adapter->stats.mcc += phy_data;
3777
3778 /* Late Collision Count */
3779 e1000e_read_phy_reg_mdic(hw, HV_LATECOL_UPPER & MAX_PHY_REG_ADDRESS,
3780 &phy_data);
3781 ret_val = e1000e_read_phy_reg_mdic(hw,
3782 HV_LATECOL_LOWER &
3783 MAX_PHY_REG_ADDRESS,
3784 &phy_data);
3785 if (!ret_val)
3786 adapter->stats.latecol += phy_data;
3787
3788 /* Collision Count - also used for adaptive IFS */
3789 e1000e_read_phy_reg_mdic(hw, HV_COLC_UPPER & MAX_PHY_REG_ADDRESS,
3790 &phy_data);
3791 ret_val = e1000e_read_phy_reg_mdic(hw,
3792 HV_COLC_LOWER & MAX_PHY_REG_ADDRESS,
3793 &phy_data);
3794 if (!ret_val)
3795 hw->mac.collision_delta = phy_data;
3796
3797 /* Defer Count */
3798 e1000e_read_phy_reg_mdic(hw, HV_DC_UPPER & MAX_PHY_REG_ADDRESS,
3799 &phy_data);
3800 ret_val = e1000e_read_phy_reg_mdic(hw,
3801 HV_DC_LOWER & MAX_PHY_REG_ADDRESS,
3802 &phy_data);
3803 if (!ret_val)
3804 adapter->stats.dc += phy_data;
3805
3806 /* Transmit with no CRS */
3807 e1000e_read_phy_reg_mdic(hw, HV_TNCRS_UPPER & MAX_PHY_REG_ADDRESS,
3808 &phy_data);
3809 ret_val = e1000e_read_phy_reg_mdic(hw,
3810 HV_TNCRS_LOWER & MAX_PHY_REG_ADDRESS,
3811 &phy_data);
3812 if (!ret_val)
3813 adapter->stats.tncrs += phy_data;
3814
3815release:
3816 hw->phy.ops.release(hw);
3817}
3818
3819/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003820 * e1000e_update_stats - Update the board statistics counters
3821 * @adapter: board private structure
3822 **/
3823void e1000e_update_stats(struct e1000_adapter *adapter)
3824{
Ajit Khaparde7274c202009-10-07 02:44:26 +00003825 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003826 struct e1000_hw *hw = &adapter->hw;
3827 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003828
3829 /*
3830 * Prevent stats update while adapter is being reset, or if the pci
3831 * connection is down.
3832 */
3833 if (adapter->link_speed == 0)
3834 return;
3835 if (pci_channel_offline(pdev))
3836 return;
3837
Auke Kokbc7f75f2007-09-17 12:30:59 -07003838 adapter->stats.crcerrs += er32(CRCERRS);
3839 adapter->stats.gprc += er32(GPRC);
Bruce Allan7c257692008-04-23 11:09:00 -07003840 adapter->stats.gorc += er32(GORCL);
3841 er32(GORCH); /* Clear gorc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003842 adapter->stats.bprc += er32(BPRC);
3843 adapter->stats.mprc += er32(MPRC);
3844 adapter->stats.roc += er32(ROC);
3845
Auke Kokbc7f75f2007-09-17 12:30:59 -07003846 adapter->stats.mpc += er32(MPC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003847
Bruce Allan8c7bbb92010-06-16 13:26:41 +00003848 /* Half-duplex statistics */
3849 if (adapter->link_duplex == HALF_DUPLEX) {
3850 if (adapter->flags2 & FLAG2_HAS_PHY_STATS) {
3851 e1000e_update_phy_stats(adapter);
3852 } else {
3853 adapter->stats.scc += er32(SCC);
3854 adapter->stats.ecol += er32(ECOL);
3855 adapter->stats.mcc += er32(MCC);
3856 adapter->stats.latecol += er32(LATECOL);
3857 adapter->stats.dc += er32(DC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003858
Bruce Allan8c7bbb92010-06-16 13:26:41 +00003859 hw->mac.collision_delta = er32(COLC);
Bruce Allana4f58f52009-06-02 11:29:18 +00003860
Bruce Allan8c7bbb92010-06-16 13:26:41 +00003861 if ((hw->mac.type != e1000_82574) &&
3862 (hw->mac.type != e1000_82583))
3863 adapter->stats.tncrs += er32(TNCRS);
3864 }
3865 adapter->stats.colc += hw->mac.collision_delta;
Bruce Allana4f58f52009-06-02 11:29:18 +00003866 }
Bruce Allan8c7bbb92010-06-16 13:26:41 +00003867
Auke Kokbc7f75f2007-09-17 12:30:59 -07003868 adapter->stats.xonrxc += er32(XONRXC);
3869 adapter->stats.xontxc += er32(XONTXC);
3870 adapter->stats.xoffrxc += er32(XOFFRXC);
3871 adapter->stats.xofftxc += er32(XOFFTXC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003872 adapter->stats.gptc += er32(GPTC);
Bruce Allan7c257692008-04-23 11:09:00 -07003873 adapter->stats.gotc += er32(GOTCL);
3874 er32(GOTCH); /* Clear gotc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003875 adapter->stats.rnbc += er32(RNBC);
3876 adapter->stats.ruc += er32(RUC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003877
3878 adapter->stats.mptc += er32(MPTC);
3879 adapter->stats.bptc += er32(BPTC);
3880
3881 /* used for adaptive IFS */
3882
3883 hw->mac.tx_packet_delta = er32(TPT);
3884 adapter->stats.tpt += hw->mac.tx_packet_delta;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003885
3886 adapter->stats.algnerrc += er32(ALGNERRC);
3887 adapter->stats.rxerrc += er32(RXERRC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003888 adapter->stats.cexterr += er32(CEXTERR);
3889 adapter->stats.tsctc += er32(TSCTC);
3890 adapter->stats.tsctfc += er32(TSCTFC);
3891
Auke Kokbc7f75f2007-09-17 12:30:59 -07003892 /* Fill out the OS statistics structure */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003893 netdev->stats.multicast = adapter->stats.mprc;
3894 netdev->stats.collisions = adapter->stats.colc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003895
3896 /* Rx Errors */
3897
Bruce Allanad680762008-03-28 09:15:03 -07003898 /*
3899 * RLEC on some newer hardware can be incorrect so build
3900 * our own version based on RUC and ROC
3901 */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003902 netdev->stats.rx_errors = adapter->stats.rxerrc +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003903 adapter->stats.crcerrs + adapter->stats.algnerrc +
3904 adapter->stats.ruc + adapter->stats.roc +
3905 adapter->stats.cexterr;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003906 netdev->stats.rx_length_errors = adapter->stats.ruc +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003907 adapter->stats.roc;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003908 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
3909 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
3910 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003911
3912 /* Tx Errors */
Ajit Khaparde7274c202009-10-07 02:44:26 +00003913 netdev->stats.tx_errors = adapter->stats.ecol +
Auke Kokbc7f75f2007-09-17 12:30:59 -07003914 adapter->stats.latecol;
Ajit Khaparde7274c202009-10-07 02:44:26 +00003915 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
3916 netdev->stats.tx_window_errors = adapter->stats.latecol;
3917 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003918
3919 /* Tx Dropped needs to be maintained elsewhere */
3920
Auke Kokbc7f75f2007-09-17 12:30:59 -07003921 /* Management Stats */
3922 adapter->stats.mgptc += er32(MGTPTC);
3923 adapter->stats.mgprc += er32(MGTPRC);
3924 adapter->stats.mgpdc += er32(MGTPDC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003925}
3926
Bruce Allan7c257692008-04-23 11:09:00 -07003927/**
3928 * e1000_phy_read_status - Update the PHY register status snapshot
3929 * @adapter: board private structure
3930 **/
3931static void e1000_phy_read_status(struct e1000_adapter *adapter)
3932{
3933 struct e1000_hw *hw = &adapter->hw;
3934 struct e1000_phy_regs *phy = &adapter->phy_regs;
3935 int ret_val;
Bruce Allan7c257692008-04-23 11:09:00 -07003936
3937 if ((er32(STATUS) & E1000_STATUS_LU) &&
3938 (adapter->hw.phy.media_type == e1000_media_type_copper)) {
3939 ret_val = e1e_rphy(hw, PHY_CONTROL, &phy->bmcr);
3940 ret_val |= e1e_rphy(hw, PHY_STATUS, &phy->bmsr);
3941 ret_val |= e1e_rphy(hw, PHY_AUTONEG_ADV, &phy->advertise);
3942 ret_val |= e1e_rphy(hw, PHY_LP_ABILITY, &phy->lpa);
3943 ret_val |= e1e_rphy(hw, PHY_AUTONEG_EXP, &phy->expansion);
3944 ret_val |= e1e_rphy(hw, PHY_1000T_CTRL, &phy->ctrl1000);
3945 ret_val |= e1e_rphy(hw, PHY_1000T_STATUS, &phy->stat1000);
3946 ret_val |= e1e_rphy(hw, PHY_EXT_STATUS, &phy->estatus);
3947 if (ret_val)
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003948 e_warn("Error reading PHY register\n");
Bruce Allan7c257692008-04-23 11:09:00 -07003949 } else {
3950 /*
3951 * Do not read PHY registers if link is not up
3952 * Set values to typical power-on defaults
3953 */
3954 phy->bmcr = (BMCR_SPEED1000 | BMCR_ANENABLE | BMCR_FULLDPLX);
3955 phy->bmsr = (BMSR_100FULL | BMSR_100HALF | BMSR_10FULL |
3956 BMSR_10HALF | BMSR_ESTATEN | BMSR_ANEGCAPABLE |
3957 BMSR_ERCAP);
3958 phy->advertise = (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP |
3959 ADVERTISE_ALL | ADVERTISE_CSMA);
3960 phy->lpa = 0;
3961 phy->expansion = EXPANSION_ENABLENPAGE;
3962 phy->ctrl1000 = ADVERTISE_1000FULL;
3963 phy->stat1000 = 0;
3964 phy->estatus = (ESTATUS_1000_TFULL | ESTATUS_1000_THALF);
3965 }
Bruce Allan7c257692008-04-23 11:09:00 -07003966}
3967
Auke Kokbc7f75f2007-09-17 12:30:59 -07003968static void e1000_print_link_info(struct e1000_adapter *adapter)
3969{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003970 struct e1000_hw *hw = &adapter->hw;
3971 u32 ctrl = er32(CTRL);
3972
Bruce Allan8f12fe82008-11-21 16:54:43 -08003973 /* Link status message must follow this format for user tools */
3974 printk(KERN_INFO "e1000e: %s NIC Link is Up %d Mbps %s, "
3975 "Flow Control: %s\n",
3976 adapter->netdev->name,
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003977 adapter->link_speed,
3978 (adapter->link_duplex == FULL_DUPLEX) ?
3979 "Full Duplex" : "Half Duplex",
3980 ((ctrl & E1000_CTRL_TFCE) && (ctrl & E1000_CTRL_RFCE)) ?
3981 "RX/TX" :
3982 ((ctrl & E1000_CTRL_RFCE) ? "RX" :
3983 ((ctrl & E1000_CTRL_TFCE) ? "TX" : "None" )));
Auke Kokbc7f75f2007-09-17 12:30:59 -07003984}
3985
Bruce Allan0c6bdb32010-06-17 18:58:43 +00003986static bool e1000e_has_link(struct e1000_adapter *adapter)
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003987{
3988 struct e1000_hw *hw = &adapter->hw;
3989 bool link_active = 0;
3990 s32 ret_val = 0;
3991
3992 /*
3993 * get_link_status is set on LSC (link status) interrupt or
3994 * Rx sequence error interrupt. get_link_status will stay
3995 * false until the check_for_link establishes link
3996 * for copper adapters ONLY
3997 */
3998 switch (hw->phy.media_type) {
3999 case e1000_media_type_copper:
4000 if (hw->mac.get_link_status) {
4001 ret_val = hw->mac.ops.check_for_link(hw);
4002 link_active = !hw->mac.get_link_status;
4003 } else {
4004 link_active = 1;
4005 }
4006 break;
4007 case e1000_media_type_fiber:
4008 ret_val = hw->mac.ops.check_for_link(hw);
4009 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
4010 break;
4011 case e1000_media_type_internal_serdes:
4012 ret_val = hw->mac.ops.check_for_link(hw);
4013 link_active = adapter->hw.mac.serdes_has_link;
4014 break;
4015 default:
4016 case e1000_media_type_unknown:
4017 break;
4018 }
4019
4020 if ((ret_val == E1000_ERR_PHY) && (hw->phy.type == e1000_phy_igp_3) &&
4021 (er32(CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
4022 /* See e1000_kmrn_lock_loss_workaround_ich8lan() */
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004023 e_info("Gigabit has been disabled, downgrading speed\n");
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004024 }
4025
4026 return link_active;
4027}
4028
4029static void e1000e_enable_receives(struct e1000_adapter *adapter)
4030{
4031 /* make sure the receive unit is started */
4032 if ((adapter->flags & FLAG_RX_NEEDS_RESTART) &&
4033 (adapter->flags & FLAG_RX_RESTART_NOW)) {
4034 struct e1000_hw *hw = &adapter->hw;
4035 u32 rctl = er32(RCTL);
4036 ew32(RCTL, rctl | E1000_RCTL_EN);
4037 adapter->flags &= ~FLAG_RX_RESTART_NOW;
4038 }
4039}
4040
Auke Kokbc7f75f2007-09-17 12:30:59 -07004041/**
4042 * e1000_watchdog - Timer Call-back
4043 * @data: pointer to adapter cast into an unsigned long
4044 **/
4045static void e1000_watchdog(unsigned long data)
4046{
4047 struct e1000_adapter *adapter = (struct e1000_adapter *) data;
4048
4049 /* Do the rest outside of interrupt context */
4050 schedule_work(&adapter->watchdog_task);
4051
4052 /* TODO: make this use queue_delayed_work() */
4053}
4054
4055static void e1000_watchdog_task(struct work_struct *work)
4056{
4057 struct e1000_adapter *adapter = container_of(work,
4058 struct e1000_adapter, watchdog_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004059 struct net_device *netdev = adapter->netdev;
4060 struct e1000_mac_info *mac = &adapter->hw.mac;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08004061 struct e1000_phy_info *phy = &adapter->hw.phy;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004062 struct e1000_ring *tx_ring = adapter->tx_ring;
4063 struct e1000_hw *hw = &adapter->hw;
4064 u32 link, tctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004065 int tx_pending = 0;
4066
David S. Millerb405e8d2010-02-04 22:31:41 -08004067 link = e1000e_has_link(adapter);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004068 if ((netif_carrier_ok(netdev)) && link) {
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004069 /* Cancel scheduled suspend requests. */
4070 pm_runtime_resume(netdev->dev.parent);
4071
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004072 e1000e_enable_receives(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004073 goto link_up;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004074 }
4075
4076 if ((e1000e_enable_tx_pkt_filtering(hw)) &&
4077 (adapter->mng_vlan_id != adapter->hw.mng_cookie.vlan_id))
4078 e1000_update_mng_vlan(adapter);
4079
Auke Kokbc7f75f2007-09-17 12:30:59 -07004080 if (link) {
4081 if (!netif_carrier_ok(netdev)) {
4082 bool txb2b = 1;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004083
4084 /* Cancel scheduled suspend requests. */
4085 pm_runtime_resume(netdev->dev.parent);
4086
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004087 /* update snapshot of PHY registers on LSC */
Bruce Allan7c257692008-04-23 11:09:00 -07004088 e1000_phy_read_status(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004089 mac->ops.get_link_up_info(&adapter->hw,
4090 &adapter->link_speed,
4091 &adapter->link_duplex);
4092 e1000_print_link_info(adapter);
Bruce Allanad680762008-03-28 09:15:03 -07004093 /*
Bruce Allanf4187b52008-08-26 18:36:50 -07004094 * On supported PHYs, check for duplex mismatch only
4095 * if link has autonegotiated at 10/100 half
4096 */
4097 if ((hw->phy.type == e1000_phy_igp_3 ||
4098 hw->phy.type == e1000_phy_bm) &&
4099 (hw->mac.autoneg == true) &&
4100 (adapter->link_speed == SPEED_10 ||
4101 adapter->link_speed == SPEED_100) &&
4102 (adapter->link_duplex == HALF_DUPLEX)) {
4103 u16 autoneg_exp;
4104
4105 e1e_rphy(hw, PHY_AUTONEG_EXP, &autoneg_exp);
4106
4107 if (!(autoneg_exp & NWAY_ER_LP_NWAY_CAPS))
4108 e_info("Autonegotiated half duplex but"
4109 " link partner cannot autoneg. "
4110 " Try forcing full duplex if "
4111 "link gets many collisions.\n");
4112 }
4113
Emil Tantilovf49c57e2010-03-24 12:55:02 +00004114 /* adjust timeout factor according to speed/duplex */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004115 adapter->tx_timeout_factor = 1;
4116 switch (adapter->link_speed) {
4117 case SPEED_10:
4118 txb2b = 0;
Bruce Allan10f1b492008-08-08 18:36:01 -07004119 adapter->tx_timeout_factor = 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004120 break;
4121 case SPEED_100:
4122 txb2b = 0;
Bruce Allan4c86e0b2009-11-19 12:35:26 +00004123 adapter->tx_timeout_factor = 10;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004124 break;
4125 }
4126
Bruce Allanad680762008-03-28 09:15:03 -07004127 /*
4128 * workaround: re-program speed mode bit after
4129 * link-up event
4130 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004131 if ((adapter->flags & FLAG_TARC_SPEED_MODE_BIT) &&
4132 !txb2b) {
4133 u32 tarc0;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004134 tarc0 = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004135 tarc0 &= ~SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004136 ew32(TARC(0), tarc0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004137 }
4138
Bruce Allanad680762008-03-28 09:15:03 -07004139 /*
4140 * disable TSO for pcie and 10/100 speeds, to avoid
4141 * some hardware issues
4142 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004143 if (!(adapter->flags & FLAG_TSO_FORCE)) {
4144 switch (adapter->link_speed) {
4145 case SPEED_10:
4146 case SPEED_100:
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004147 e_info("10/100 speed: disabling TSO\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004148 netdev->features &= ~NETIF_F_TSO;
4149 netdev->features &= ~NETIF_F_TSO6;
4150 break;
4151 case SPEED_1000:
4152 netdev->features |= NETIF_F_TSO;
4153 netdev->features |= NETIF_F_TSO6;
4154 break;
4155 default:
4156 /* oops */
4157 break;
4158 }
4159 }
4160
Bruce Allanad680762008-03-28 09:15:03 -07004161 /*
4162 * enable transmits in the hardware, need to do this
4163 * after setting TARC(0)
4164 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004165 tctl = er32(TCTL);
4166 tctl |= E1000_TCTL_EN;
4167 ew32(TCTL, tctl);
4168
Bruce Allan75eb0fa2008-11-21 16:53:51 -08004169 /*
4170 * Perform any post-link-up configuration before
4171 * reporting link up.
4172 */
4173 if (phy->ops.cfg_on_link_up)
4174 phy->ops.cfg_on_link_up(hw);
4175
Auke Kokbc7f75f2007-09-17 12:30:59 -07004176 netif_carrier_on(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004177
4178 if (!test_bit(__E1000_DOWN, &adapter->state))
4179 mod_timer(&adapter->phy_info_timer,
4180 round_jiffies(jiffies + 2 * HZ));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004181 }
4182 } else {
4183 if (netif_carrier_ok(netdev)) {
4184 adapter->link_speed = 0;
4185 adapter->link_duplex = 0;
Bruce Allan8f12fe82008-11-21 16:54:43 -08004186 /* Link status message must follow this format */
4187 printk(KERN_INFO "e1000e: %s NIC Link is Down\n",
4188 adapter->netdev->name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004189 netif_carrier_off(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004190 if (!test_bit(__E1000_DOWN, &adapter->state))
4191 mod_timer(&adapter->phy_info_timer,
4192 round_jiffies(jiffies + 2 * HZ));
4193
4194 if (adapter->flags & FLAG_RX_NEEDS_RESTART)
4195 schedule_work(&adapter->reset_task);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004196 else
4197 pm_schedule_suspend(netdev->dev.parent,
4198 LINK_TIMEOUT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004199 }
4200 }
4201
4202link_up:
4203 e1000e_update_stats(adapter);
4204
4205 mac->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
4206 adapter->tpt_old = adapter->stats.tpt;
4207 mac->collision_delta = adapter->stats.colc - adapter->colc_old;
4208 adapter->colc_old = adapter->stats.colc;
4209
Bruce Allan7c257692008-04-23 11:09:00 -07004210 adapter->gorc = adapter->stats.gorc - adapter->gorc_old;
4211 adapter->gorc_old = adapter->stats.gorc;
4212 adapter->gotc = adapter->stats.gotc - adapter->gotc_old;
4213 adapter->gotc_old = adapter->stats.gotc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004214
4215 e1000e_update_adaptive(&adapter->hw);
4216
4217 if (!netif_carrier_ok(netdev)) {
4218 tx_pending = (e1000_desc_unused(tx_ring) + 1 <
4219 tx_ring->count);
4220 if (tx_pending) {
Bruce Allanad680762008-03-28 09:15:03 -07004221 /*
4222 * We've lost link, so the controller stops DMA,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004223 * but we've got queued Tx work that's never going
4224 * to get done, so reset controller to flush Tx.
Bruce Allanad680762008-03-28 09:15:03 -07004225 * (Do the reset outside of interrupt context).
4226 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004227 adapter->tx_timeout_count++;
4228 schedule_work(&adapter->reset_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00004229 /* return immediately since reset is imminent */
4230 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004231 }
4232 }
4233
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00004234 /* Simple mode for Interrupt Throttle Rate (ITR) */
4235 if (adapter->itr_setting == 4) {
4236 /*
4237 * Symmetric Tx/Rx gets a reduced ITR=2000;
4238 * Total asymmetrical Tx or Rx gets ITR=8000;
4239 * everyone else is between 2000-8000.
4240 */
4241 u32 goc = (adapter->gotc + adapter->gorc) / 10000;
4242 u32 dif = (adapter->gotc > adapter->gorc ?
4243 adapter->gotc - adapter->gorc :
4244 adapter->gorc - adapter->gotc) / 10000;
4245 u32 itr = goc > 0 ? (dif * 6000 / goc + 2000) : 8000;
4246
4247 ew32(ITR, 1000000000 / (itr * 256));
4248 }
4249
Bruce Allanad680762008-03-28 09:15:03 -07004250 /* Cause software interrupt to ensure Rx ring is cleaned */
Bruce Allan4662e822008-08-26 18:37:06 -07004251 if (adapter->msix_entries)
4252 ew32(ICS, adapter->rx_ring->ims_val);
4253 else
4254 ew32(ICS, E1000_ICS_RXDMT0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004255
4256 /* Force detection of hung controller every watchdog period */
4257 adapter->detect_tx_hung = 1;
4258
Bruce Allanad680762008-03-28 09:15:03 -07004259 /*
4260 * With 82571 controllers, LAA may be overwritten due to controller
4261 * reset from the other port. Set the appropriate LAA in RAR[0]
4262 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004263 if (e1000e_get_laa_state_82571(hw))
4264 e1000e_rar_set(hw, adapter->hw.mac.addr, 0);
4265
4266 /* Reset the timer */
4267 if (!test_bit(__E1000_DOWN, &adapter->state))
4268 mod_timer(&adapter->watchdog_timer,
4269 round_jiffies(jiffies + 2 * HZ));
4270}
4271
4272#define E1000_TX_FLAGS_CSUM 0x00000001
4273#define E1000_TX_FLAGS_VLAN 0x00000002
4274#define E1000_TX_FLAGS_TSO 0x00000004
4275#define E1000_TX_FLAGS_IPV4 0x00000008
4276#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
4277#define E1000_TX_FLAGS_VLAN_SHIFT 16
4278
4279static int e1000_tso(struct e1000_adapter *adapter,
4280 struct sk_buff *skb)
4281{
4282 struct e1000_ring *tx_ring = adapter->tx_ring;
4283 struct e1000_context_desc *context_desc;
4284 struct e1000_buffer *buffer_info;
4285 unsigned int i;
4286 u32 cmd_length = 0;
4287 u16 ipcse = 0, tucse, mss;
4288 u8 ipcss, ipcso, tucss, tucso, hdr_len;
4289 int err;
4290
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004291 if (!skb_is_gso(skb))
4292 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004293
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004294 if (skb_header_cloned(skb)) {
4295 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
4296 if (err)
4297 return err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004298 }
4299
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004300 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
4301 mss = skb_shinfo(skb)->gso_size;
4302 if (skb->protocol == htons(ETH_P_IP)) {
4303 struct iphdr *iph = ip_hdr(skb);
4304 iph->tot_len = 0;
4305 iph->check = 0;
4306 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
4307 0, IPPROTO_TCP, 0);
4308 cmd_length = E1000_TXD_CMD_IP;
4309 ipcse = skb_transport_offset(skb) - 1;
Sridhar Samudrala8e1e8a42010-01-23 02:02:21 -08004310 } else if (skb_is_gso_v6(skb)) {
Bruce Allan3d5e33c2009-11-20 23:27:03 +00004311 ipv6_hdr(skb)->payload_len = 0;
4312 tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
4313 &ipv6_hdr(skb)->daddr,
4314 0, IPPROTO_TCP, 0);
4315 ipcse = 0;
4316 }
4317 ipcss = skb_network_offset(skb);
4318 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
4319 tucss = skb_transport_offset(skb);
4320 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
4321 tucse = 0;
4322
4323 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
4324 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
4325
4326 i = tx_ring->next_to_use;
4327 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
4328 buffer_info = &tx_ring->buffer_info[i];
4329
4330 context_desc->lower_setup.ip_fields.ipcss = ipcss;
4331 context_desc->lower_setup.ip_fields.ipcso = ipcso;
4332 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
4333 context_desc->upper_setup.tcp_fields.tucss = tucss;
4334 context_desc->upper_setup.tcp_fields.tucso = tucso;
4335 context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
4336 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
4337 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
4338 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
4339
4340 buffer_info->time_stamp = jiffies;
4341 buffer_info->next_to_watch = i;
4342
4343 i++;
4344 if (i == tx_ring->count)
4345 i = 0;
4346 tx_ring->next_to_use = i;
4347
4348 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004349}
4350
4351static bool e1000_tx_csum(struct e1000_adapter *adapter, struct sk_buff *skb)
4352{
4353 struct e1000_ring *tx_ring = adapter->tx_ring;
4354 struct e1000_context_desc *context_desc;
4355 struct e1000_buffer *buffer_info;
4356 unsigned int i;
4357 u8 css;
Dave Grahamaf807c82008-10-09 14:28:58 -07004358 u32 cmd_len = E1000_TXD_CMD_DEXT;
Arthur Jones5f66f202009-03-19 01:13:08 +00004359 __be16 protocol;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004360
Dave Grahamaf807c82008-10-09 14:28:58 -07004361 if (skb->ip_summed != CHECKSUM_PARTIAL)
4362 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004363
Arthur Jones5f66f202009-03-19 01:13:08 +00004364 if (skb->protocol == cpu_to_be16(ETH_P_8021Q))
4365 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
4366 else
4367 protocol = skb->protocol;
4368
Arthur Jones3f518392009-03-20 15:56:35 -07004369 switch (protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08004370 case cpu_to_be16(ETH_P_IP):
Dave Grahamaf807c82008-10-09 14:28:58 -07004371 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
4372 cmd_len |= E1000_TXD_CMD_TCP;
4373 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08004374 case cpu_to_be16(ETH_P_IPV6):
Dave Grahamaf807c82008-10-09 14:28:58 -07004375 /* XXX not handling all IPV6 headers */
4376 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
4377 cmd_len |= E1000_TXD_CMD_TCP;
4378 break;
4379 default:
4380 if (unlikely(net_ratelimit()))
Arthur Jones5f66f202009-03-19 01:13:08 +00004381 e_warn("checksum_partial proto=%x!\n",
4382 be16_to_cpu(protocol));
Dave Grahamaf807c82008-10-09 14:28:58 -07004383 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004384 }
4385
Dave Grahamaf807c82008-10-09 14:28:58 -07004386 css = skb_transport_offset(skb);
4387
4388 i = tx_ring->next_to_use;
4389 buffer_info = &tx_ring->buffer_info[i];
4390 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
4391
4392 context_desc->lower_setup.ip_config = 0;
4393 context_desc->upper_setup.tcp_fields.tucss = css;
4394 context_desc->upper_setup.tcp_fields.tucso =
4395 css + skb->csum_offset;
4396 context_desc->upper_setup.tcp_fields.tucse = 0;
4397 context_desc->tcp_seg_setup.data = 0;
4398 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
4399
4400 buffer_info->time_stamp = jiffies;
4401 buffer_info->next_to_watch = i;
4402
4403 i++;
4404 if (i == tx_ring->count)
4405 i = 0;
4406 tx_ring->next_to_use = i;
4407
4408 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004409}
4410
4411#define E1000_MAX_PER_TXD 8192
4412#define E1000_MAX_TXD_PWR 12
4413
4414static int e1000_tx_map(struct e1000_adapter *adapter,
4415 struct sk_buff *skb, unsigned int first,
4416 unsigned int max_per_txd, unsigned int nr_frags,
4417 unsigned int mss)
4418{
4419 struct e1000_ring *tx_ring = adapter->tx_ring;
Alexander Duyck03b13202009-12-02 16:45:31 +00004420 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004421 struct e1000_buffer *buffer_info;
Jesse Brandeburg8ddc9512009-03-02 16:02:53 -08004422 unsigned int len = skb_headlen(skb);
Alexander Duyck03b13202009-12-02 16:45:31 +00004423 unsigned int offset = 0, size, count = 0, i;
Tom Herbert9ed318d2010-05-05 14:02:27 +00004424 unsigned int f, bytecount, segs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004425
4426 i = tx_ring->next_to_use;
4427
4428 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004429 buffer_info = &tx_ring->buffer_info[i];
Auke Kokbc7f75f2007-09-17 12:30:59 -07004430 size = min(len, max_per_txd);
4431
Auke Kokbc7f75f2007-09-17 12:30:59 -07004432 buffer_info->length = size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004433 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004434 buffer_info->next_to_watch = i;
Nick Nunley0be3f552010-04-27 13:09:05 +00004435 buffer_info->dma = dma_map_single(&pdev->dev,
4436 skb->data + offset,
4437 size, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00004438 buffer_info->mapped_as_page = false;
Nick Nunley0be3f552010-04-27 13:09:05 +00004439 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00004440 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004441
4442 len -= size;
4443 offset += size;
Alexander Duyck03b13202009-12-02 16:45:31 +00004444 count++;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004445
4446 if (len) {
4447 i++;
4448 if (i == tx_ring->count)
4449 i = 0;
4450 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004451 }
4452
4453 for (f = 0; f < nr_frags; f++) {
4454 struct skb_frag_struct *frag;
4455
4456 frag = &skb_shinfo(skb)->frags[f];
4457 len = frag->size;
Alexander Duyck03b13202009-12-02 16:45:31 +00004458 offset = frag->page_offset;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004459
4460 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004461 i++;
4462 if (i == tx_ring->count)
4463 i = 0;
4464
Auke Kokbc7f75f2007-09-17 12:30:59 -07004465 buffer_info = &tx_ring->buffer_info[i];
4466 size = min(len, max_per_txd);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004467
4468 buffer_info->length = size;
4469 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004470 buffer_info->next_to_watch = i;
Nick Nunley0be3f552010-04-27 13:09:05 +00004471 buffer_info->dma = dma_map_page(&pdev->dev, frag->page,
Alexander Duyck03b13202009-12-02 16:45:31 +00004472 offset, size,
Nick Nunley0be3f552010-04-27 13:09:05 +00004473 DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00004474 buffer_info->mapped_as_page = true;
Nick Nunley0be3f552010-04-27 13:09:05 +00004475 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00004476 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004477
4478 len -= size;
4479 offset += size;
4480 count++;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004481 }
4482 }
4483
Tom Herbert9ed318d2010-05-05 14:02:27 +00004484 segs = skb_shinfo(skb)->gso_segs ?: 1;
4485 /* multiply data chunks by size of headers */
4486 bytecount = ((segs - 1) * skb_headlen(skb)) + skb->len;
4487
Auke Kokbc7f75f2007-09-17 12:30:59 -07004488 tx_ring->buffer_info[i].skb = skb;
Tom Herbert9ed318d2010-05-05 14:02:27 +00004489 tx_ring->buffer_info[i].segs = segs;
4490 tx_ring->buffer_info[i].bytecount = bytecount;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004491 tx_ring->buffer_info[first].next_to_watch = i;
4492
4493 return count;
Alexander Duyck03b13202009-12-02 16:45:31 +00004494
4495dma_error:
4496 dev_err(&pdev->dev, "TX DMA map failed\n");
4497 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00004498 if (count)
Alexander Duyck03b13202009-12-02 16:45:31 +00004499 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00004500
4501 while (count--) {
4502 if (i==0)
Alexander Duyck03b13202009-12-02 16:45:31 +00004503 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00004504 i--;
Alexander Duyck03b13202009-12-02 16:45:31 +00004505 buffer_info = &tx_ring->buffer_info[i];
4506 e1000_put_txbuf(adapter, buffer_info);;
4507 }
4508
4509 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004510}
4511
4512static void e1000_tx_queue(struct e1000_adapter *adapter,
4513 int tx_flags, int count)
4514{
4515 struct e1000_ring *tx_ring = adapter->tx_ring;
4516 struct e1000_tx_desc *tx_desc = NULL;
4517 struct e1000_buffer *buffer_info;
4518 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
4519 unsigned int i;
4520
4521 if (tx_flags & E1000_TX_FLAGS_TSO) {
4522 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
4523 E1000_TXD_CMD_TSE;
4524 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
4525
4526 if (tx_flags & E1000_TX_FLAGS_IPV4)
4527 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
4528 }
4529
4530 if (tx_flags & E1000_TX_FLAGS_CSUM) {
4531 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
4532 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
4533 }
4534
4535 if (tx_flags & E1000_TX_FLAGS_VLAN) {
4536 txd_lower |= E1000_TXD_CMD_VLE;
4537 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
4538 }
4539
4540 i = tx_ring->next_to_use;
4541
4542 while (count--) {
4543 buffer_info = &tx_ring->buffer_info[i];
4544 tx_desc = E1000_TX_DESC(*tx_ring, i);
4545 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
4546 tx_desc->lower.data =
4547 cpu_to_le32(txd_lower | buffer_info->length);
4548 tx_desc->upper.data = cpu_to_le32(txd_upper);
4549
4550 i++;
4551 if (i == tx_ring->count)
4552 i = 0;
4553 }
4554
4555 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
4556
Bruce Allanad680762008-03-28 09:15:03 -07004557 /*
4558 * Force memory writes to complete before letting h/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07004559 * know there are new descriptors to fetch. (Only
4560 * applicable for weak-ordered memory model archs,
Bruce Allanad680762008-03-28 09:15:03 -07004561 * such as IA-64).
4562 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004563 wmb();
4564
4565 tx_ring->next_to_use = i;
4566 writel(i, adapter->hw.hw_addr + tx_ring->tail);
Bruce Allanad680762008-03-28 09:15:03 -07004567 /*
4568 * we need this if more than one processor can write to our tail
4569 * at a time, it synchronizes IO on IA64/Altix systems
4570 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004571 mmiowb();
4572}
4573
4574#define MINIMUM_DHCP_PACKET_SIZE 282
4575static int e1000_transfer_dhcp_info(struct e1000_adapter *adapter,
4576 struct sk_buff *skb)
4577{
4578 struct e1000_hw *hw = &adapter->hw;
4579 u16 length, offset;
4580
4581 if (vlan_tx_tag_present(skb)) {
Joe Perches8e95a202009-12-03 07:58:21 +00004582 if (!((vlan_tx_tag_get(skb) == adapter->hw.mng_cookie.vlan_id) &&
4583 (adapter->hw.mng_cookie.status &
Auke Kokbc7f75f2007-09-17 12:30:59 -07004584 E1000_MNG_DHCP_COOKIE_STATUS_VLAN)))
4585 return 0;
4586 }
4587
4588 if (skb->len <= MINIMUM_DHCP_PACKET_SIZE)
4589 return 0;
4590
4591 if (((struct ethhdr *) skb->data)->h_proto != htons(ETH_P_IP))
4592 return 0;
4593
4594 {
4595 const struct iphdr *ip = (struct iphdr *)((u8 *)skb->data+14);
4596 struct udphdr *udp;
4597
4598 if (ip->protocol != IPPROTO_UDP)
4599 return 0;
4600
4601 udp = (struct udphdr *)((u8 *)ip + (ip->ihl << 2));
4602 if (ntohs(udp->dest) != 67)
4603 return 0;
4604
4605 offset = (u8 *)udp + 8 - skb->data;
4606 length = skb->len - offset;
4607 return e1000e_mng_write_dhcp_info(hw, (u8 *)udp + 8, length);
4608 }
4609
4610 return 0;
4611}
4612
4613static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
4614{
4615 struct e1000_adapter *adapter = netdev_priv(netdev);
4616
4617 netif_stop_queue(netdev);
Bruce Allanad680762008-03-28 09:15:03 -07004618 /*
4619 * Herbert's original patch had:
Auke Kokbc7f75f2007-09-17 12:30:59 -07004620 * smp_mb__after_netif_stop_queue();
Bruce Allanad680762008-03-28 09:15:03 -07004621 * but since that doesn't exist yet, just open code it.
4622 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004623 smp_mb();
4624
Bruce Allanad680762008-03-28 09:15:03 -07004625 /*
4626 * We need to check again in a case another CPU has just
4627 * made room available.
4628 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004629 if (e1000_desc_unused(adapter->tx_ring) < size)
4630 return -EBUSY;
4631
4632 /* A reprieve! */
4633 netif_start_queue(netdev);
4634 ++adapter->restart_queue;
4635 return 0;
4636}
4637
4638static int e1000_maybe_stop_tx(struct net_device *netdev, int size)
4639{
4640 struct e1000_adapter *adapter = netdev_priv(netdev);
4641
4642 if (e1000_desc_unused(adapter->tx_ring) >= size)
4643 return 0;
4644 return __e1000_maybe_stop_tx(netdev, size);
4645}
4646
4647#define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
Stephen Hemminger3b29a562009-08-31 19:50:55 +00004648static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
4649 struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004650{
4651 struct e1000_adapter *adapter = netdev_priv(netdev);
4652 struct e1000_ring *tx_ring = adapter->tx_ring;
4653 unsigned int first;
4654 unsigned int max_per_txd = E1000_MAX_PER_TXD;
4655 unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
4656 unsigned int tx_flags = 0;
Eric Dumazete743d312010-04-14 15:59:40 -07004657 unsigned int len = skb_headlen(skb);
Auke Kok4e6c7092007-10-05 14:15:23 -07004658 unsigned int nr_frags;
4659 unsigned int mss;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004660 int count = 0;
4661 int tso;
4662 unsigned int f;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004663
4664 if (test_bit(__E1000_DOWN, &adapter->state)) {
4665 dev_kfree_skb_any(skb);
4666 return NETDEV_TX_OK;
4667 }
4668
4669 if (skb->len <= 0) {
4670 dev_kfree_skb_any(skb);
4671 return NETDEV_TX_OK;
4672 }
4673
4674 mss = skb_shinfo(skb)->gso_size;
Bruce Allanad680762008-03-28 09:15:03 -07004675 /*
4676 * The controller does a simple calculation to
Auke Kokbc7f75f2007-09-17 12:30:59 -07004677 * make sure there is enough room in the FIFO before
4678 * initiating the DMA for each buffer. The calc is:
4679 * 4 = ceil(buffer len/mss). To make sure we don't
4680 * overrun the FIFO, adjust the max buffer len if mss
Bruce Allanad680762008-03-28 09:15:03 -07004681 * drops.
4682 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004683 if (mss) {
4684 u8 hdr_len;
4685 max_per_txd = min(mss << 2, max_per_txd);
4686 max_txd_pwr = fls(max_per_txd) - 1;
4687
Bruce Allanad680762008-03-28 09:15:03 -07004688 /*
4689 * TSO Workaround for 82571/2/3 Controllers -- if skb->data
4690 * points to just header, pull a few bytes of payload from
4691 * frags into skb->data
4692 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004693 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Bruce Allanad680762008-03-28 09:15:03 -07004694 /*
4695 * we do this workaround for ES2LAN, but it is un-necessary,
4696 * avoiding it could save a lot of cycles
4697 */
Auke Kok4e6c7092007-10-05 14:15:23 -07004698 if (skb->data_len && (hdr_len == len)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004699 unsigned int pull_size;
4700
4701 pull_size = min((unsigned int)4, skb->data_len);
4702 if (!__pskb_pull_tail(skb, pull_size)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004703 e_err("__pskb_pull_tail failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004704 dev_kfree_skb_any(skb);
4705 return NETDEV_TX_OK;
4706 }
Eric Dumazete743d312010-04-14 15:59:40 -07004707 len = skb_headlen(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004708 }
4709 }
4710
4711 /* reserve a descriptor for the offload context */
4712 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
4713 count++;
4714 count++;
4715
4716 count += TXD_USE_COUNT(len, max_txd_pwr);
4717
4718 nr_frags = skb_shinfo(skb)->nr_frags;
4719 for (f = 0; f < nr_frags; f++)
4720 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size,
4721 max_txd_pwr);
4722
4723 if (adapter->hw.mac.tx_pkt_filtering)
4724 e1000_transfer_dhcp_info(adapter, skb);
4725
Bruce Allanad680762008-03-28 09:15:03 -07004726 /*
4727 * need: count + 2 desc gap to keep tail from touching
4728 * head, otherwise try next time
4729 */
Jesse Brandeburg92af3e92009-01-19 14:17:08 +00004730 if (e1000_maybe_stop_tx(netdev, count + 2))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004731 return NETDEV_TX_BUSY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004732
4733 if (adapter->vlgrp && vlan_tx_tag_present(skb)) {
4734 tx_flags |= E1000_TX_FLAGS_VLAN;
4735 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
4736 }
4737
4738 first = tx_ring->next_to_use;
4739
4740 tso = e1000_tso(adapter, skb);
4741 if (tso < 0) {
4742 dev_kfree_skb_any(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004743 return NETDEV_TX_OK;
4744 }
4745
4746 if (tso)
4747 tx_flags |= E1000_TX_FLAGS_TSO;
4748 else if (e1000_tx_csum(adapter, skb))
4749 tx_flags |= E1000_TX_FLAGS_CSUM;
4750
Bruce Allanad680762008-03-28 09:15:03 -07004751 /*
4752 * Old method was to assume IPv4 packet by default if TSO was enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004753 * 82571 hardware supports TSO capabilities for IPv6 as well...
Bruce Allanad680762008-03-28 09:15:03 -07004754 * no longer assume, we must.
4755 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004756 if (skb->protocol == htons(ETH_P_IP))
4757 tx_flags |= E1000_TX_FLAGS_IPV4;
4758
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004759 /* if count is 0 then mapping error has occured */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004760 count = e1000_tx_map(adapter, skb, first, max_per_txd, nr_frags, mss);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004761 if (count) {
4762 e1000_tx_queue(adapter, tx_flags, count);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004763 /* Make sure there is space in the ring for the next send. */
4764 e1000_maybe_stop_tx(netdev, MAX_SKB_FRAGS + 2);
4765
4766 } else {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004767 dev_kfree_skb_any(skb);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00004768 tx_ring->buffer_info[first].time_stamp = 0;
4769 tx_ring->next_to_use = first;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004770 }
4771
Auke Kokbc7f75f2007-09-17 12:30:59 -07004772 return NETDEV_TX_OK;
4773}
4774
4775/**
4776 * e1000_tx_timeout - Respond to a Tx Hang
4777 * @netdev: network interface device structure
4778 **/
4779static void e1000_tx_timeout(struct net_device *netdev)
4780{
4781 struct e1000_adapter *adapter = netdev_priv(netdev);
4782
4783 /* Do the reset outside of interrupt context */
4784 adapter->tx_timeout_count++;
4785 schedule_work(&adapter->reset_task);
4786}
4787
4788static void e1000_reset_task(struct work_struct *work)
4789{
4790 struct e1000_adapter *adapter;
4791 adapter = container_of(work, struct e1000_adapter, reset_task);
4792
Taku Izumi84f4ee92010-04-27 14:39:08 +00004793 e1000e_dump(adapter);
4794 e_err("Reset adapter\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004795 e1000e_reinit_locked(adapter);
4796}
4797
4798/**
4799 * e1000_get_stats - Get System Network Statistics
4800 * @netdev: network interface device structure
4801 *
4802 * Returns the address of the device statistics structure.
4803 * The statistics are actually updated from the timer callback.
4804 **/
4805static struct net_device_stats *e1000_get_stats(struct net_device *netdev)
4806{
Auke Kokbc7f75f2007-09-17 12:30:59 -07004807 /* only return the current stats */
Ajit Khaparde7274c202009-10-07 02:44:26 +00004808 return &netdev->stats;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004809}
4810
4811/**
4812 * e1000_change_mtu - Change the Maximum Transfer Unit
4813 * @netdev: network interface device structure
4814 * @new_mtu: new value for maximum frame size
4815 *
4816 * Returns 0 on success, negative on failure
4817 **/
4818static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
4819{
4820 struct e1000_adapter *adapter = netdev_priv(netdev);
4821 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
4822
Bruce Allan2adc55c2009-06-02 11:28:58 +00004823 /* Jumbo frame support */
4824 if ((max_frame > ETH_FRAME_LEN + ETH_FCS_LEN) &&
4825 !(adapter->flags & FLAG_HAS_JUMBO_FRAMES)) {
4826 e_err("Jumbo Frames not supported.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004827 return -EINVAL;
4828 }
4829
Bruce Allan2adc55c2009-06-02 11:28:58 +00004830 /* Supported frame sizes */
4831 if ((new_mtu < ETH_ZLEN + ETH_FCS_LEN + VLAN_HLEN) ||
4832 (max_frame > adapter->max_hw_frame_size)) {
4833 e_err("Unsupported MTU setting\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004834 return -EINVAL;
4835 }
4836
Bruce Allan6f461f62010-04-27 03:33:04 +00004837 /* 82573 Errata 17 */
4838 if (((adapter->hw.mac.type == e1000_82573) ||
4839 (adapter->hw.mac.type == e1000_82574)) &&
4840 (max_frame > ETH_FRAME_LEN + ETH_FCS_LEN)) {
4841 adapter->flags2 |= FLAG2_DISABLE_ASPM_L1;
4842 e1000e_disable_aspm(adapter->pdev, PCIE_LINK_STATE_L1);
4843 }
4844
Auke Kokbc7f75f2007-09-17 12:30:59 -07004845 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
4846 msleep(1);
Bruce Allan610c9922009-11-19 12:35:45 +00004847 /* e1000e_down -> e1000e_reset dependent on max_frame_size & mtu */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004848 adapter->max_frame_size = max_frame;
Bruce Allan610c9922009-11-19 12:35:45 +00004849 e_info("changing MTU from %d to %d\n", netdev->mtu, new_mtu);
4850 netdev->mtu = new_mtu;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004851 if (netif_running(netdev))
4852 e1000e_down(adapter);
4853
Bruce Allanad680762008-03-28 09:15:03 -07004854 /*
4855 * NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kokbc7f75f2007-09-17 12:30:59 -07004856 * means we reserve 2 more, this pushes us to allocate from the next
4857 * larger slab size.
Bruce Allanad680762008-03-28 09:15:03 -07004858 * i.e. RXBUFFER_2048 --> size-4096 slab
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004859 * However with the new *_jumbo_rx* routines, jumbo receives will use
4860 * fragmented skbs
Bruce Allanad680762008-03-28 09:15:03 -07004861 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004862
Jesse Brandeburg99261462010-01-22 22:56:16 +00004863 if (max_frame <= 2048)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004864 adapter->rx_buffer_len = 2048;
4865 else
4866 adapter->rx_buffer_len = 4096;
4867
4868 /* adjust allocation if LPE protects us, and we aren't using SBP */
4869 if ((max_frame == ETH_FRAME_LEN + ETH_FCS_LEN) ||
4870 (max_frame == ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN))
4871 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN
Bruce Allanad680762008-03-28 09:15:03 -07004872 + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004873
Auke Kokbc7f75f2007-09-17 12:30:59 -07004874 if (netif_running(netdev))
4875 e1000e_up(adapter);
4876 else
4877 e1000e_reset(adapter);
4878
4879 clear_bit(__E1000_RESETTING, &adapter->state);
4880
4881 return 0;
4882}
4883
4884static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
4885 int cmd)
4886{
4887 struct e1000_adapter *adapter = netdev_priv(netdev);
4888 struct mii_ioctl_data *data = if_mii(ifr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004889
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004890 if (adapter->hw.phy.media_type != e1000_media_type_copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004891 return -EOPNOTSUPP;
4892
4893 switch (cmd) {
4894 case SIOCGMIIPHY:
4895 data->phy_id = adapter->hw.phy.addr;
4896 break;
4897 case SIOCGMIIREG:
Bruce Allanb16a0022009-11-20 23:24:30 +00004898 e1000_phy_read_status(adapter);
4899
Bruce Allan7c257692008-04-23 11:09:00 -07004900 switch (data->reg_num & 0x1F) {
4901 case MII_BMCR:
4902 data->val_out = adapter->phy_regs.bmcr;
4903 break;
4904 case MII_BMSR:
4905 data->val_out = adapter->phy_regs.bmsr;
4906 break;
4907 case MII_PHYSID1:
4908 data->val_out = (adapter->hw.phy.id >> 16);
4909 break;
4910 case MII_PHYSID2:
4911 data->val_out = (adapter->hw.phy.id & 0xFFFF);
4912 break;
4913 case MII_ADVERTISE:
4914 data->val_out = adapter->phy_regs.advertise;
4915 break;
4916 case MII_LPA:
4917 data->val_out = adapter->phy_regs.lpa;
4918 break;
4919 case MII_EXPANSION:
4920 data->val_out = adapter->phy_regs.expansion;
4921 break;
4922 case MII_CTRL1000:
4923 data->val_out = adapter->phy_regs.ctrl1000;
4924 break;
4925 case MII_STAT1000:
4926 data->val_out = adapter->phy_regs.stat1000;
4927 break;
4928 case MII_ESTATUS:
4929 data->val_out = adapter->phy_regs.estatus;
4930 break;
4931 default:
Auke Kokbc7f75f2007-09-17 12:30:59 -07004932 return -EIO;
4933 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004934 break;
4935 case SIOCSMIIREG:
4936 default:
4937 return -EOPNOTSUPP;
4938 }
4939 return 0;
4940}
4941
4942static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
4943{
4944 switch (cmd) {
4945 case SIOCGMIIPHY:
4946 case SIOCGMIIREG:
4947 case SIOCSMIIREG:
4948 return e1000_mii_ioctl(netdev, ifr, cmd);
4949 default:
4950 return -EOPNOTSUPP;
4951 }
4952}
4953
Bruce Allana4f58f52009-06-02 11:29:18 +00004954static int e1000_init_phy_wakeup(struct e1000_adapter *adapter, u32 wufc)
4955{
4956 struct e1000_hw *hw = &adapter->hw;
4957 u32 i, mac_reg;
4958 u16 phy_reg;
4959 int retval = 0;
4960
4961 /* copy MAC RARs to PHY RARs */
Bruce Alland3738bb2010-06-16 13:27:28 +00004962 e1000_copy_rx_addrs_to_phy_ich8lan(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00004963
4964 /* copy MAC MTA to PHY MTA */
4965 for (i = 0; i < adapter->hw.mac.mta_reg_count; i++) {
4966 mac_reg = E1000_READ_REG_ARRAY(hw, E1000_MTA, i);
4967 e1e_wphy(hw, BM_MTA(i), (u16)(mac_reg & 0xFFFF));
4968 e1e_wphy(hw, BM_MTA(i) + 1, (u16)((mac_reg >> 16) & 0xFFFF));
4969 }
4970
4971 /* configure PHY Rx Control register */
4972 e1e_rphy(&adapter->hw, BM_RCTL, &phy_reg);
4973 mac_reg = er32(RCTL);
4974 if (mac_reg & E1000_RCTL_UPE)
4975 phy_reg |= BM_RCTL_UPE;
4976 if (mac_reg & E1000_RCTL_MPE)
4977 phy_reg |= BM_RCTL_MPE;
4978 phy_reg &= ~(BM_RCTL_MO_MASK);
4979 if (mac_reg & E1000_RCTL_MO_3)
4980 phy_reg |= (((mac_reg & E1000_RCTL_MO_3) >> E1000_RCTL_MO_SHIFT)
4981 << BM_RCTL_MO_SHIFT);
4982 if (mac_reg & E1000_RCTL_BAM)
4983 phy_reg |= BM_RCTL_BAM;
4984 if (mac_reg & E1000_RCTL_PMCF)
4985 phy_reg |= BM_RCTL_PMCF;
4986 mac_reg = er32(CTRL);
4987 if (mac_reg & E1000_CTRL_RFCE)
4988 phy_reg |= BM_RCTL_RFCE;
4989 e1e_wphy(&adapter->hw, BM_RCTL, phy_reg);
4990
4991 /* enable PHY wakeup in MAC register */
4992 ew32(WUFC, wufc);
4993 ew32(WUC, E1000_WUC_PHY_WAKE | E1000_WUC_PME_EN);
4994
4995 /* configure and enable PHY wakeup in PHY registers */
4996 e1e_wphy(&adapter->hw, BM_WUFC, wufc);
4997 e1e_wphy(&adapter->hw, BM_WUC, E1000_WUC_PME_EN);
4998
4999 /* activate PHY wakeup */
Bruce Allan94d81862009-11-20 23:25:26 +00005000 retval = hw->phy.ops.acquire(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00005001 if (retval) {
5002 e_err("Could not acquire PHY\n");
5003 return retval;
5004 }
5005 e1000e_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT,
5006 (BM_WUC_ENABLE_PAGE << IGP_PAGE_SHIFT));
5007 retval = e1000e_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, &phy_reg);
5008 if (retval) {
5009 e_err("Could not read PHY page 769\n");
5010 goto out;
5011 }
5012 phy_reg |= BM_WUC_ENABLE_BIT | BM_WUC_HOST_WU_BIT;
5013 retval = e1000e_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, phy_reg);
5014 if (retval)
5015 e_err("Could not set PHY Host Wakeup bit\n");
5016out:
Bruce Allan94d81862009-11-20 23:25:26 +00005017 hw->phy.ops.release(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00005018
5019 return retval;
5020}
5021
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005022static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake,
5023 bool runtime)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005024{
5025 struct net_device *netdev = pci_get_drvdata(pdev);
5026 struct e1000_adapter *adapter = netdev_priv(netdev);
5027 struct e1000_hw *hw = &adapter->hw;
5028 u32 ctrl, ctrl_ext, rctl, status;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005029 /* Runtime suspend should only enable wakeup for link changes */
5030 u32 wufc = runtime ? E1000_WUFC_LNKC : adapter->wol;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005031 int retval = 0;
5032
5033 netif_device_detach(netdev);
5034
5035 if (netif_running(netdev)) {
5036 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
5037 e1000e_down(adapter);
5038 e1000_free_irq(adapter);
5039 }
Bruce Allan4662e822008-08-26 18:37:06 -07005040 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005041
5042 retval = pci_save_state(pdev);
5043 if (retval)
5044 return retval;
5045
5046 status = er32(STATUS);
5047 if (status & E1000_STATUS_LU)
5048 wufc &= ~E1000_WUFC_LNKC;
5049
5050 if (wufc) {
5051 e1000_setup_rctl(adapter);
5052 e1000_set_multi(netdev);
5053
5054 /* turn on all-multi mode if wake on multicast is enabled */
5055 if (wufc & E1000_WUFC_MC) {
5056 rctl = er32(RCTL);
5057 rctl |= E1000_RCTL_MPE;
5058 ew32(RCTL, rctl);
5059 }
5060
5061 ctrl = er32(CTRL);
5062 /* advertise wake from D3Cold */
5063 #define E1000_CTRL_ADVD3WUC 0x00100000
5064 /* phy power management enable */
5065 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
Bruce Allana4f58f52009-06-02 11:29:18 +00005066 ctrl |= E1000_CTRL_ADVD3WUC;
5067 if (!(adapter->flags2 & FLAG2_HAS_PHY_WAKEUP))
5068 ctrl |= E1000_CTRL_EN_PHY_PWR_MGMT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005069 ew32(CTRL, ctrl);
5070
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005071 if (adapter->hw.phy.media_type == e1000_media_type_fiber ||
5072 adapter->hw.phy.media_type ==
5073 e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005074 /* keep the laser running in D3 */
5075 ctrl_ext = er32(CTRL_EXT);
Bruce Allan93a23f42009-12-08 07:27:41 +00005076 ctrl_ext |= E1000_CTRL_EXT_SDP3_DATA;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005077 ew32(CTRL_EXT, ctrl_ext);
5078 }
5079
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005080 if (adapter->flags & FLAG_IS_ICH)
5081 e1000e_disable_gig_wol_ich8lan(&adapter->hw);
5082
Auke Kokbc7f75f2007-09-17 12:30:59 -07005083 /* Allow time for pending master requests to run */
5084 e1000e_disable_pcie_master(&adapter->hw);
5085
Bruce Allan82776a42009-08-14 14:35:33 +00005086 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
Bruce Allana4f58f52009-06-02 11:29:18 +00005087 /* enable wakeup by the PHY */
5088 retval = e1000_init_phy_wakeup(adapter, wufc);
5089 if (retval)
5090 return retval;
5091 } else {
5092 /* enable wakeup by the MAC */
5093 ew32(WUFC, wufc);
5094 ew32(WUC, E1000_WUC_PME_EN);
5095 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005096 } else {
5097 ew32(WUC, 0);
5098 ew32(WUFC, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005099 }
5100
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005101 *enable_wake = !!wufc;
5102
Auke Kokbc7f75f2007-09-17 12:30:59 -07005103 /* make sure adapter isn't asleep if manageability is enabled */
Bruce Allan82776a42009-08-14 14:35:33 +00005104 if ((adapter->flags & FLAG_MNG_PT_ENABLED) ||
5105 (hw->mac.ops.check_mng_mode(hw)))
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005106 *enable_wake = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005107
5108 if (adapter->hw.phy.type == e1000_phy_igp_3)
5109 e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw);
5110
Bruce Allanad680762008-03-28 09:15:03 -07005111 /*
5112 * Release control of h/w to f/w. If f/w is AMT enabled, this
5113 * would have already happened in close and is redundant.
5114 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005115 e1000_release_hw_control(adapter);
5116
5117 pci_disable_device(pdev);
5118
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005119 return 0;
5120}
5121
5122static void e1000_power_off(struct pci_dev *pdev, bool sleep, bool wake)
5123{
5124 if (sleep && wake) {
5125 pci_prepare_to_sleep(pdev);
5126 return;
5127 }
5128
5129 pci_wake_from_d3(pdev, wake);
5130 pci_set_power_state(pdev, PCI_D3hot);
5131}
5132
5133static void e1000_complete_shutdown(struct pci_dev *pdev, bool sleep,
5134 bool wake)
5135{
5136 struct net_device *netdev = pci_get_drvdata(pdev);
5137 struct e1000_adapter *adapter = netdev_priv(netdev);
5138
Alexander Duyck005cbdf2008-11-21 16:49:10 -08005139 /*
5140 * The pci-e switch on some quad port adapters will report a
5141 * correctable error when the MAC transitions from D0 to D3. To
5142 * prevent this we need to mask off the correctable errors on the
5143 * downstream port of the pci-e switch.
5144 */
5145 if (adapter->flags & FLAG_IS_QUAD_PORT) {
5146 struct pci_dev *us_dev = pdev->bus->self;
5147 int pos = pci_find_capability(us_dev, PCI_CAP_ID_EXP);
5148 u16 devctl;
5149
5150 pci_read_config_word(us_dev, pos + PCI_EXP_DEVCTL, &devctl);
5151 pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL,
5152 (devctl & ~PCI_EXP_DEVCTL_CERE));
5153
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005154 e1000_power_off(pdev, sleep, wake);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08005155
5156 pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, devctl);
5157 } else {
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005158 e1000_power_off(pdev, sleep, wake);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08005159 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005160}
5161
Bruce Allan6f461f62010-04-27 03:33:04 +00005162#ifdef CONFIG_PCIEASPM
5163static void __e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
5164{
5165 pci_disable_link_state(pdev, state);
5166}
5167#else
5168static void __e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
Auke Kok1eae4eb2007-10-31 15:22:00 -07005169{
5170 int pos;
Bruce Allan6f461f62010-04-27 03:33:04 +00005171 u16 reg16;
Auke Kok1eae4eb2007-10-31 15:22:00 -07005172
5173 /*
Bruce Allan6f461f62010-04-27 03:33:04 +00005174 * Both device and parent should have the same ASPM setting.
5175 * Disable ASPM in downstream component first and then upstream.
Auke Kok1eae4eb2007-10-31 15:22:00 -07005176 */
Bruce Allan6f461f62010-04-27 03:33:04 +00005177 pos = pci_pcie_cap(pdev);
5178 pci_read_config_word(pdev, pos + PCI_EXP_LNKCTL, &reg16);
5179 reg16 &= ~state;
5180 pci_write_config_word(pdev, pos + PCI_EXP_LNKCTL, reg16);
5181
Anton Blanchard0c75ba22010-04-28 21:46:06 +00005182 if (!pdev->bus->self)
5183 return;
5184
Bruce Allan6f461f62010-04-27 03:33:04 +00005185 pos = pci_pcie_cap(pdev->bus->self);
5186 pci_read_config_word(pdev->bus->self, pos + PCI_EXP_LNKCTL, &reg16);
5187 reg16 &= ~state;
5188 pci_write_config_word(pdev->bus->self, pos + PCI_EXP_LNKCTL, reg16);
5189}
5190#endif
5191void e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
5192{
5193 dev_info(&pdev->dev, "Disabling ASPM %s %s\n",
5194 (state & PCIE_LINK_STATE_L0S) ? "L0s" : "",
5195 (state & PCIE_LINK_STATE_L1) ? "L1" : "");
5196
5197 __e1000e_disable_aspm(pdev, state);
Auke Kok1eae4eb2007-10-31 15:22:00 -07005198}
5199
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005200#ifdef CONFIG_PM_OPS
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005201static bool e1000e_pm_ready(struct e1000_adapter *adapter)
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005202{
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005203 return !!adapter->tx_ring->buffer_info;
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005204}
5205
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005206static int __e1000_resume(struct pci_dev *pdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005207{
5208 struct net_device *netdev = pci_get_drvdata(pdev);
5209 struct e1000_adapter *adapter = netdev_priv(netdev);
5210 struct e1000_hw *hw = &adapter->hw;
5211 u32 err;
5212
5213 pci_set_power_state(pdev, PCI_D0);
5214 pci_restore_state(pdev);
Bruce Allan28b8f042010-01-07 16:30:56 +00005215 pci_save_state(pdev);
Bruce Allan6f461f62010-04-27 03:33:04 +00005216 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
5217 e1000e_disable_aspm(pdev, PCIE_LINK_STATE_L1);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005218
Bruce Allan4662e822008-08-26 18:37:06 -07005219 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005220 if (netif_running(netdev)) {
5221 err = e1000_request_irq(adapter);
5222 if (err)
5223 return err;
5224 }
5225
5226 e1000e_power_up_phy(adapter);
Bruce Allana4f58f52009-06-02 11:29:18 +00005227
5228 /* report the system wakeup cause from S3/S4 */
5229 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
5230 u16 phy_data;
5231
5232 e1e_rphy(&adapter->hw, BM_WUS, &phy_data);
5233 if (phy_data) {
5234 e_info("PHY Wakeup cause - %s\n",
5235 phy_data & E1000_WUS_EX ? "Unicast Packet" :
5236 phy_data & E1000_WUS_MC ? "Multicast Packet" :
5237 phy_data & E1000_WUS_BC ? "Broadcast Packet" :
5238 phy_data & E1000_WUS_MAG ? "Magic Packet" :
5239 phy_data & E1000_WUS_LNKC ? "Link Status "
5240 " Change" : "other");
5241 }
5242 e1e_wphy(&adapter->hw, BM_WUS, ~0);
5243 } else {
5244 u32 wus = er32(WUS);
5245 if (wus) {
5246 e_info("MAC Wakeup cause - %s\n",
5247 wus & E1000_WUS_EX ? "Unicast Packet" :
5248 wus & E1000_WUS_MC ? "Multicast Packet" :
5249 wus & E1000_WUS_BC ? "Broadcast Packet" :
5250 wus & E1000_WUS_MAG ? "Magic Packet" :
5251 wus & E1000_WUS_LNKC ? "Link Status Change" :
5252 "other");
5253 }
5254 ew32(WUS, ~0);
5255 }
5256
Auke Kokbc7f75f2007-09-17 12:30:59 -07005257 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005258
Bruce Allancd791612010-05-10 14:59:51 +00005259 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005260
5261 if (netif_running(netdev))
5262 e1000e_up(adapter);
5263
5264 netif_device_attach(netdev);
5265
Bruce Allanad680762008-03-28 09:15:03 -07005266 /*
5267 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07005268 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07005269 * under the control of the driver.
5270 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005271 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005272 e1000_get_hw_control(adapter);
5273
5274 return 0;
5275}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005276
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005277#ifdef CONFIG_PM_SLEEP
5278static int e1000_suspend(struct device *dev)
5279{
5280 struct pci_dev *pdev = to_pci_dev(dev);
5281 int retval;
5282 bool wake;
5283
5284 retval = __e1000_shutdown(pdev, &wake, false);
5285 if (!retval)
5286 e1000_complete_shutdown(pdev, true, wake);
5287
5288 return retval;
5289}
5290
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005291static int e1000_resume(struct device *dev)
5292{
5293 struct pci_dev *pdev = to_pci_dev(dev);
5294 struct net_device *netdev = pci_get_drvdata(pdev);
5295 struct e1000_adapter *adapter = netdev_priv(netdev);
5296
5297 if (e1000e_pm_ready(adapter))
5298 adapter->idle_check = true;
5299
5300 return __e1000_resume(pdev);
5301}
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005302#endif /* CONFIG_PM_SLEEP */
5303
5304#ifdef CONFIG_PM_RUNTIME
5305static int e1000_runtime_suspend(struct device *dev)
5306{
5307 struct pci_dev *pdev = to_pci_dev(dev);
5308 struct net_device *netdev = pci_get_drvdata(pdev);
5309 struct e1000_adapter *adapter = netdev_priv(netdev);
5310
5311 if (e1000e_pm_ready(adapter)) {
5312 bool wake;
5313
5314 __e1000_shutdown(pdev, &wake, true);
5315 }
5316
5317 return 0;
5318}
5319
5320static int e1000_idle(struct device *dev)
5321{
5322 struct pci_dev *pdev = to_pci_dev(dev);
5323 struct net_device *netdev = pci_get_drvdata(pdev);
5324 struct e1000_adapter *adapter = netdev_priv(netdev);
5325
5326 if (!e1000e_pm_ready(adapter))
5327 return 0;
5328
5329 if (adapter->idle_check) {
5330 adapter->idle_check = false;
5331 if (!e1000e_has_link(adapter))
5332 pm_schedule_suspend(dev, MSEC_PER_SEC);
5333 }
5334
5335 return -EBUSY;
5336}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005337
5338static int e1000_runtime_resume(struct device *dev)
5339{
5340 struct pci_dev *pdev = to_pci_dev(dev);
5341 struct net_device *netdev = pci_get_drvdata(pdev);
5342 struct e1000_adapter *adapter = netdev_priv(netdev);
5343
5344 if (!e1000e_pm_ready(adapter))
5345 return 0;
5346
5347 adapter->idle_check = !dev->power.runtime_auto;
5348 return __e1000_resume(pdev);
5349}
Rafael J. Wysockia0340162010-03-17 23:12:24 -07005350#endif /* CONFIG_PM_RUNTIME */
5351#endif /* CONFIG_PM_OPS */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005352
5353static void e1000_shutdown(struct pci_dev *pdev)
5354{
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005355 bool wake = false;
5356
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005357 __e1000_shutdown(pdev, &wake, false);
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00005358
5359 if (system_state == SYSTEM_POWER_OFF)
5360 e1000_complete_shutdown(pdev, false, wake);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005361}
5362
5363#ifdef CONFIG_NET_POLL_CONTROLLER
5364/*
5365 * Polling 'interrupt' - used by things like netconsole to send skbs
5366 * without having to re-enable interrupts. It's not called while
5367 * the interrupt routine is executing.
5368 */
5369static void e1000_netpoll(struct net_device *netdev)
5370{
5371 struct e1000_adapter *adapter = netdev_priv(netdev);
5372
5373 disable_irq(adapter->pdev->irq);
5374 e1000_intr(adapter->pdev->irq, netdev);
5375
Auke Kokbc7f75f2007-09-17 12:30:59 -07005376 enable_irq(adapter->pdev->irq);
5377}
5378#endif
5379
5380/**
5381 * e1000_io_error_detected - called when PCI error is detected
5382 * @pdev: Pointer to PCI device
5383 * @state: The current pci connection state
5384 *
5385 * This function is called after a PCI bus error affecting
5386 * this device has been detected.
5387 */
5388static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
5389 pci_channel_state_t state)
5390{
5391 struct net_device *netdev = pci_get_drvdata(pdev);
5392 struct e1000_adapter *adapter = netdev_priv(netdev);
5393
5394 netif_device_detach(netdev);
5395
Mike Masonc93b5a72009-06-30 12:45:53 +00005396 if (state == pci_channel_io_perm_failure)
5397 return PCI_ERS_RESULT_DISCONNECT;
5398
Auke Kokbc7f75f2007-09-17 12:30:59 -07005399 if (netif_running(netdev))
5400 e1000e_down(adapter);
5401 pci_disable_device(pdev);
5402
5403 /* Request a slot slot reset. */
5404 return PCI_ERS_RESULT_NEED_RESET;
5405}
5406
5407/**
5408 * e1000_io_slot_reset - called after the pci bus has been reset.
5409 * @pdev: Pointer to PCI device
5410 *
5411 * Restart the card from scratch, as if from a cold-boot. Implementation
5412 * resembles the first-half of the e1000_resume routine.
5413 */
5414static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
5415{
5416 struct net_device *netdev = pci_get_drvdata(pdev);
5417 struct e1000_adapter *adapter = netdev_priv(netdev);
5418 struct e1000_hw *hw = &adapter->hw;
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005419 int err;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005420 pci_ers_result_t result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005421
Bruce Allan6f461f62010-04-27 03:33:04 +00005422 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
5423 e1000e_disable_aspm(pdev, PCIE_LINK_STATE_L1);
Bruce Allanf0f422e2008-08-04 17:21:53 -07005424 err = pci_enable_device_mem(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005425 if (err) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005426 dev_err(&pdev->dev,
5427 "Cannot re-enable PCI device after reset.\n");
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005428 result = PCI_ERS_RESULT_DISCONNECT;
5429 } else {
5430 pci_set_master(pdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005431 pdev->state_saved = true;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005432 pci_restore_state(pdev);
5433
5434 pci_enable_wake(pdev, PCI_D3hot, 0);
5435 pci_enable_wake(pdev, PCI_D3cold, 0);
5436
5437 e1000e_reset(adapter);
5438 ew32(WUS, ~0);
5439 result = PCI_ERS_RESULT_RECOVERED;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005440 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005441
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005442 pci_cleanup_aer_uncorrect_error_status(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005443
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005444 return result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005445}
5446
5447/**
5448 * e1000_io_resume - called when traffic can start flowing again.
5449 * @pdev: Pointer to PCI device
5450 *
5451 * This callback is called when the error recovery driver tells us that
5452 * its OK to resume normal operation. Implementation resembles the
5453 * second-half of the e1000_resume routine.
5454 */
5455static void e1000_io_resume(struct pci_dev *pdev)
5456{
5457 struct net_device *netdev = pci_get_drvdata(pdev);
5458 struct e1000_adapter *adapter = netdev_priv(netdev);
5459
Bruce Allancd791612010-05-10 14:59:51 +00005460 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005461
5462 if (netif_running(netdev)) {
5463 if (e1000e_up(adapter)) {
5464 dev_err(&pdev->dev,
5465 "can't bring device back up after reset\n");
5466 return;
5467 }
5468 }
5469
5470 netif_device_attach(netdev);
5471
Bruce Allanad680762008-03-28 09:15:03 -07005472 /*
5473 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07005474 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07005475 * under the control of the driver.
5476 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005477 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005478 e1000_get_hw_control(adapter);
5479
5480}
5481
5482static void e1000_print_device_info(struct e1000_adapter *adapter)
5483{
5484 struct e1000_hw *hw = &adapter->hw;
5485 struct net_device *netdev = adapter->netdev;
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005486 u32 pba_num;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005487
5488 /* print bus type/speed/width info */
Johannes Berg7c510e42008-10-27 17:47:26 -07005489 e_info("(PCI Express:2.5GB/s:%s) %pM\n",
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005490 /* bus width */
5491 ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" :
5492 "Width x1"),
5493 /* MAC address */
Johannes Berg7c510e42008-10-27 17:47:26 -07005494 netdev->dev_addr);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005495 e_info("Intel(R) PRO/%s Network Connection\n",
5496 (hw->phy.type == e1000_phy_ife) ? "10/100" : "1000");
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005497 e1000e_read_pba_num(hw, &pba_num);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005498 e_info("MAC: %d, PHY: %d, PBA No: %06x-%03x\n",
5499 hw->mac.type, hw->phy.type, (pba_num >> 8), (pba_num & 0xff));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005500}
5501
Auke Kok10aa4c02008-08-04 17:21:20 -07005502static void e1000_eeprom_checks(struct e1000_adapter *adapter)
5503{
5504 struct e1000_hw *hw = &adapter->hw;
5505 int ret_val;
5506 u16 buf = 0;
5507
5508 if (hw->mac.type != e1000_82573)
5509 return;
5510
5511 ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &buf);
Bruce Allane2434552008-11-21 17:02:41 -08005512 if (!ret_val && (!(le16_to_cpu(buf) & (1 << 0)))) {
Auke Kok10aa4c02008-08-04 17:21:20 -07005513 /* Deep Smart Power Down (DSPD) */
Frans Pop6c2a9ef2008-09-22 14:52:22 -07005514 dev_warn(&adapter->pdev->dev,
5515 "Warning: detected DSPD enabled in EEPROM\n");
Auke Kok10aa4c02008-08-04 17:21:20 -07005516 }
Auke Kok10aa4c02008-08-04 17:21:20 -07005517}
5518
Stephen Hemminger651c2462008-11-19 21:57:48 -08005519static const struct net_device_ops e1000e_netdev_ops = {
5520 .ndo_open = e1000_open,
5521 .ndo_stop = e1000_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08005522 .ndo_start_xmit = e1000_xmit_frame,
Stephen Hemminger651c2462008-11-19 21:57:48 -08005523 .ndo_get_stats = e1000_get_stats,
5524 .ndo_set_multicast_list = e1000_set_multi,
5525 .ndo_set_mac_address = e1000_set_mac,
5526 .ndo_change_mtu = e1000_change_mtu,
5527 .ndo_do_ioctl = e1000_ioctl,
5528 .ndo_tx_timeout = e1000_tx_timeout,
5529 .ndo_validate_addr = eth_validate_addr,
5530
5531 .ndo_vlan_rx_register = e1000_vlan_rx_register,
5532 .ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
5533 .ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
5534#ifdef CONFIG_NET_POLL_CONTROLLER
5535 .ndo_poll_controller = e1000_netpoll,
5536#endif
5537};
5538
Auke Kokbc7f75f2007-09-17 12:30:59 -07005539/**
5540 * e1000_probe - Device Initialization Routine
5541 * @pdev: PCI device information struct
5542 * @ent: entry in e1000_pci_tbl
5543 *
5544 * Returns 0 on success, negative on failure
5545 *
5546 * e1000_probe initializes an adapter identified by a pci_dev structure.
5547 * The OS initialization, configuring of the adapter private structure,
5548 * and a hardware reset occur.
5549 **/
5550static int __devinit e1000_probe(struct pci_dev *pdev,
5551 const struct pci_device_id *ent)
5552{
5553 struct net_device *netdev;
5554 struct e1000_adapter *adapter;
5555 struct e1000_hw *hw;
5556 const struct e1000_info *ei = e1000_info_tbl[ent->driver_data];
Becky Brucef47e81f2008-05-01 18:03:11 -05005557 resource_size_t mmio_start, mmio_len;
5558 resource_size_t flash_start, flash_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005559
5560 static int cards_found;
5561 int i, err, pci_using_dac;
5562 u16 eeprom_data = 0;
5563 u16 eeprom_apme_mask = E1000_EEPROM_APME;
5564
Bruce Allan6f461f62010-04-27 03:33:04 +00005565 if (ei->flags2 & FLAG2_DISABLE_ASPM_L1)
5566 e1000e_disable_aspm(pdev, PCIE_LINK_STATE_L1);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09005567
Bruce Allanf0f422e2008-08-04 17:21:53 -07005568 err = pci_enable_device_mem(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005569 if (err)
5570 return err;
5571
5572 pci_using_dac = 0;
Nick Nunley0be3f552010-04-27 13:09:05 +00005573 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005574 if (!err) {
Nick Nunley0be3f552010-04-27 13:09:05 +00005575 err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005576 if (!err)
5577 pci_using_dac = 1;
5578 } else {
Nick Nunley0be3f552010-04-27 13:09:05 +00005579 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005580 if (err) {
Nick Nunley0be3f552010-04-27 13:09:05 +00005581 err = dma_set_coherent_mask(&pdev->dev,
5582 DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005583 if (err) {
5584 dev_err(&pdev->dev, "No usable DMA "
5585 "configuration, aborting\n");
5586 goto err_dma;
5587 }
5588 }
5589 }
5590
Arjan van de Vene8de1482008-10-22 19:55:31 -07005591 err = pci_request_selected_regions_exclusive(pdev,
Bruce Allanf0f422e2008-08-04 17:21:53 -07005592 pci_select_bars(pdev, IORESOURCE_MEM),
5593 e1000e_driver_name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005594 if (err)
5595 goto err_pci_reg;
5596
Xiaotian Feng68eac462009-08-14 14:35:52 +00005597 /* AER (Advanced Error Reporting) hooks */
Frans Pop19d5afd2009-10-02 10:04:12 -07005598 pci_enable_pcie_error_reporting(pdev);
Xiaotian Feng68eac462009-08-14 14:35:52 +00005599
Auke Kokbc7f75f2007-09-17 12:30:59 -07005600 pci_set_master(pdev);
Bruce Allan438b3652008-11-21 16:51:33 -08005601 /* PCI config space info */
5602 err = pci_save_state(pdev);
5603 if (err)
5604 goto err_alloc_etherdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005605
5606 err = -ENOMEM;
5607 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
5608 if (!netdev)
5609 goto err_alloc_etherdev;
5610
Auke Kokbc7f75f2007-09-17 12:30:59 -07005611 SET_NETDEV_DEV(netdev, &pdev->dev);
5612
Tom Herbertf85e4df2010-05-05 14:03:32 +00005613 netdev->irq = pdev->irq;
5614
Auke Kokbc7f75f2007-09-17 12:30:59 -07005615 pci_set_drvdata(pdev, netdev);
5616 adapter = netdev_priv(netdev);
5617 hw = &adapter->hw;
5618 adapter->netdev = netdev;
5619 adapter->pdev = pdev;
5620 adapter->ei = ei;
5621 adapter->pba = ei->pba;
5622 adapter->flags = ei->flags;
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00005623 adapter->flags2 = ei->flags2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005624 adapter->hw.adapter = adapter;
5625 adapter->hw.mac.type = ei->mac;
Bruce Allan2adc55c2009-06-02 11:28:58 +00005626 adapter->max_hw_frame_size = ei->max_hw_frame_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005627 adapter->msg_enable = (1 << NETIF_MSG_DRV | NETIF_MSG_PROBE) - 1;
5628
5629 mmio_start = pci_resource_start(pdev, 0);
5630 mmio_len = pci_resource_len(pdev, 0);
5631
5632 err = -EIO;
5633 adapter->hw.hw_addr = ioremap(mmio_start, mmio_len);
5634 if (!adapter->hw.hw_addr)
5635 goto err_ioremap;
5636
5637 if ((adapter->flags & FLAG_HAS_FLASH) &&
5638 (pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
5639 flash_start = pci_resource_start(pdev, 1);
5640 flash_len = pci_resource_len(pdev, 1);
5641 adapter->hw.flash_address = ioremap(flash_start, flash_len);
5642 if (!adapter->hw.flash_address)
5643 goto err_flashmap;
5644 }
5645
5646 /* construct the net_device struct */
Stephen Hemminger651c2462008-11-19 21:57:48 -08005647 netdev->netdev_ops = &e1000e_netdev_ops;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005648 e1000e_set_ethtool_ops(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005649 netdev->watchdog_timeo = 5 * HZ;
5650 netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005651 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
5652
5653 netdev->mem_start = mmio_start;
5654 netdev->mem_end = mmio_start + mmio_len;
5655
5656 adapter->bd_number = cards_found++;
5657
Bruce Allan4662e822008-08-26 18:37:06 -07005658 e1000e_check_options(adapter);
5659
Auke Kokbc7f75f2007-09-17 12:30:59 -07005660 /* setup adapter struct */
5661 err = e1000_sw_init(adapter);
5662 if (err)
5663 goto err_sw_init;
5664
Auke Kokbc7f75f2007-09-17 12:30:59 -07005665 memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops));
5666 memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops));
5667 memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops));
5668
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07005669 err = ei->get_variants(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005670 if (err)
5671 goto err_hw_init;
5672
Bruce Allan4a770352008-10-01 17:18:35 -07005673 if ((adapter->flags & FLAG_IS_ICH) &&
5674 (adapter->flags & FLAG_READ_ONLY_NVM))
5675 e1000e_write_protect_nvm_ich8lan(&adapter->hw);
5676
Auke Kokbc7f75f2007-09-17 12:30:59 -07005677 hw->mac.ops.get_bus_info(&adapter->hw);
5678
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005679 adapter->hw.phy.autoneg_wait_to_complete = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005680
5681 /* Copper options */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005682 if (adapter->hw.phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005683 adapter->hw.phy.mdix = AUTO_ALL_MODES;
5684 adapter->hw.phy.disable_polarity_correction = 0;
5685 adapter->hw.phy.ms_type = e1000_ms_hw_default;
5686 }
5687
5688 if (e1000_check_reset_block(&adapter->hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005689 e_info("PHY reset is blocked due to SOL/IDER session.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005690
5691 netdev->features = NETIF_F_SG |
5692 NETIF_F_HW_CSUM |
5693 NETIF_F_HW_VLAN_TX |
5694 NETIF_F_HW_VLAN_RX;
5695
5696 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
5697 netdev->features |= NETIF_F_HW_VLAN_FILTER;
5698
5699 netdev->features |= NETIF_F_TSO;
5700 netdev->features |= NETIF_F_TSO6;
5701
Jeff Kirshera5136e22008-06-05 04:07:28 -07005702 netdev->vlan_features |= NETIF_F_TSO;
5703 netdev->vlan_features |= NETIF_F_TSO6;
5704 netdev->vlan_features |= NETIF_F_HW_CSUM;
5705 netdev->vlan_features |= NETIF_F_SG;
5706
Auke Kokbc7f75f2007-09-17 12:30:59 -07005707 if (pci_using_dac)
5708 netdev->features |= NETIF_F_HIGHDMA;
5709
Auke Kokbc7f75f2007-09-17 12:30:59 -07005710 if (e1000e_enable_mng_pass_thru(&adapter->hw))
5711 adapter->flags |= FLAG_MNG_PT_ENABLED;
5712
Bruce Allanad680762008-03-28 09:15:03 -07005713 /*
5714 * before reading the NVM, reset the controller to
5715 * put the device in a known good starting state
5716 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005717 adapter->hw.mac.ops.reset_hw(&adapter->hw);
5718
5719 /*
5720 * systems with ASPM and others may see the checksum fail on the first
5721 * attempt. Let's give it a few tries
5722 */
5723 for (i = 0;; i++) {
5724 if (e1000_validate_nvm_checksum(&adapter->hw) >= 0)
5725 break;
5726 if (i == 2) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005727 e_err("The NVM Checksum Is Not Valid\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005728 err = -EIO;
5729 goto err_eeprom;
5730 }
5731 }
5732
Auke Kok10aa4c02008-08-04 17:21:20 -07005733 e1000_eeprom_checks(adapter);
5734
Bruce Allan608f8a02010-01-13 02:04:58 +00005735 /* copy the MAC address */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005736 if (e1000e_read_mac_addr(&adapter->hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005737 e_err("NVM Read Error while reading MAC address\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005738
5739 memcpy(netdev->dev_addr, adapter->hw.mac.addr, netdev->addr_len);
5740 memcpy(netdev->perm_addr, adapter->hw.mac.addr, netdev->addr_len);
5741
5742 if (!is_valid_ether_addr(netdev->perm_addr)) {
Johannes Berg7c510e42008-10-27 17:47:26 -07005743 e_err("Invalid MAC Address: %pM\n", netdev->perm_addr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005744 err = -EIO;
5745 goto err_eeprom;
5746 }
5747
5748 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00005749 adapter->watchdog_timer.function = e1000_watchdog;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005750 adapter->watchdog_timer.data = (unsigned long) adapter;
5751
5752 init_timer(&adapter->phy_info_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00005753 adapter->phy_info_timer.function = e1000_update_phy_info;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005754 adapter->phy_info_timer.data = (unsigned long) adapter;
5755
5756 INIT_WORK(&adapter->reset_task, e1000_reset_task);
5757 INIT_WORK(&adapter->watchdog_task, e1000_watchdog_task);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07005758 INIT_WORK(&adapter->downshift_task, e1000e_downshift_workaround);
5759 INIT_WORK(&adapter->update_phy_task, e1000e_update_phy_task);
Bruce Allan41cec6f2009-11-20 23:28:56 +00005760 INIT_WORK(&adapter->print_hang_task, e1000_print_hw_hang);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005761
Auke Kokbc7f75f2007-09-17 12:30:59 -07005762 /* Initialize link parameters. User can change them with ethtool */
5763 adapter->hw.mac.autoneg = 1;
Auke Kok309af402007-10-05 15:22:02 -07005764 adapter->fc_autoneg = 1;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08005765 adapter->hw.fc.requested_mode = e1000_fc_default;
5766 adapter->hw.fc.current_mode = e1000_fc_default;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005767 adapter->hw.phy.autoneg_advertised = 0x2f;
5768
5769 /* ring size defaults */
5770 adapter->rx_ring->count = 256;
5771 adapter->tx_ring->count = 256;
5772
5773 /*
5774 * Initial Wake on LAN setting - If APM wake is enabled in
5775 * the EEPROM, enable the ACPI Magic Packet filter
5776 */
5777 if (adapter->flags & FLAG_APME_IN_WUC) {
5778 /* APME bit in EEPROM is mapped to WUC.APME */
5779 eeprom_data = er32(WUC);
5780 eeprom_apme_mask = E1000_WUC_APME;
Bruce Allana4f58f52009-06-02 11:29:18 +00005781 if (eeprom_data & E1000_WUC_PHY_WAKE)
5782 adapter->flags2 |= FLAG2_HAS_PHY_WAKEUP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005783 } else if (adapter->flags & FLAG_APME_IN_CTRL3) {
5784 if (adapter->flags & FLAG_APME_CHECK_PORT_B &&
5785 (adapter->hw.bus.func == 1))
5786 e1000_read_nvm(&adapter->hw,
5787 NVM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
5788 else
5789 e1000_read_nvm(&adapter->hw,
5790 NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
5791 }
5792
5793 /* fetch WoL from EEPROM */
5794 if (eeprom_data & eeprom_apme_mask)
5795 adapter->eeprom_wol |= E1000_WUFC_MAG;
5796
5797 /*
5798 * now that we have the eeprom settings, apply the special cases
5799 * where the eeprom may be wrong or the board simply won't support
5800 * wake on lan on a particular port
5801 */
5802 if (!(adapter->flags & FLAG_HAS_WOL))
5803 adapter->eeprom_wol = 0;
5804
5805 /* initialize the wol settings based on the eeprom settings */
5806 adapter->wol = adapter->eeprom_wol;
\"Rafael J. Wysocki\6ff68022008-11-12 09:52:32 +00005807 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005808
Bruce Allan84527592008-11-21 17:00:22 -08005809 /* save off EEPROM version number */
5810 e1000_read_nvm(&adapter->hw, 5, 1, &adapter->eeprom_vers);
5811
Auke Kokbc7f75f2007-09-17 12:30:59 -07005812 /* reset the hardware with the new settings */
5813 e1000e_reset(adapter);
5814
Bruce Allanad680762008-03-28 09:15:03 -07005815 /*
5816 * If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07005817 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07005818 * under the control of the driver.
5819 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005820 if (!(adapter->flags & FLAG_HAS_AMT))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005821 e1000_get_hw_control(adapter);
5822
Auke Kokbc7f75f2007-09-17 12:30:59 -07005823 strcpy(netdev->name, "eth%d");
5824 err = register_netdev(netdev);
5825 if (err)
5826 goto err_register;
5827
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00005828 /* carrier off reporting is important to ethtool even BEFORE open */
5829 netif_carrier_off(netdev);
5830
Auke Kokbc7f75f2007-09-17 12:30:59 -07005831 e1000_print_device_info(adapter);
5832
Alan Sternf3ec4f82010-06-08 15:23:51 -04005833 if (pci_dev_run_wake(pdev))
5834 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005835
Auke Kokbc7f75f2007-09-17 12:30:59 -07005836 return 0;
5837
5838err_register:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005839 if (!(adapter->flags & FLAG_HAS_AMT))
5840 e1000_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005841err_eeprom:
5842 if (!e1000_check_reset_block(&adapter->hw))
5843 e1000_phy_hw_reset(&adapter->hw);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005844err_hw_init:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005845
Auke Kokbc7f75f2007-09-17 12:30:59 -07005846 kfree(adapter->tx_ring);
5847 kfree(adapter->rx_ring);
5848err_sw_init:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005849 if (adapter->hw.flash_address)
5850 iounmap(adapter->hw.flash_address);
Jeff Kirshere82f54b2008-11-14 06:45:07 +00005851 e1000e_reset_interrupt_capability(adapter);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07005852err_flashmap:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005853 iounmap(adapter->hw.hw_addr);
5854err_ioremap:
5855 free_netdev(netdev);
5856err_alloc_etherdev:
Bruce Allanf0f422e2008-08-04 17:21:53 -07005857 pci_release_selected_regions(pdev,
5858 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005859err_pci_reg:
5860err_dma:
5861 pci_disable_device(pdev);
5862 return err;
5863}
5864
5865/**
5866 * e1000_remove - Device Removal Routine
5867 * @pdev: PCI device information struct
5868 *
5869 * e1000_remove is called by the PCI subsystem to alert the driver
5870 * that it should release a PCI device. The could be caused by a
5871 * Hot-Plug event, or because the driver is going to be removed from
5872 * memory.
5873 **/
5874static void __devexit e1000_remove(struct pci_dev *pdev)
5875{
5876 struct net_device *netdev = pci_get_drvdata(pdev);
5877 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005878 bool down = test_bit(__E1000_DOWN, &adapter->state);
5879
Bruce Allanad680762008-03-28 09:15:03 -07005880 /*
5881 * flush_scheduled work may reschedule our watchdog task, so
5882 * explicitly disable watchdog tasks from being rescheduled
5883 */
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005884 if (!down)
5885 set_bit(__E1000_DOWN, &adapter->state);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005886 del_timer_sync(&adapter->watchdog_timer);
5887 del_timer_sync(&adapter->phy_info_timer);
5888
Bruce Allan41cec6f2009-11-20 23:28:56 +00005889 cancel_work_sync(&adapter->reset_task);
5890 cancel_work_sync(&adapter->watchdog_task);
5891 cancel_work_sync(&adapter->downshift_task);
5892 cancel_work_sync(&adapter->update_phy_task);
5893 cancel_work_sync(&adapter->print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005894 flush_scheduled_work();
5895
Bruce Allan17f208d2009-12-01 15:47:22 +00005896 if (!(netdev->flags & IFF_UP))
5897 e1000_power_down_phy(adapter);
5898
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005899 /* Don't lie to e1000_close() down the road. */
5900 if (!down)
5901 clear_bit(__E1000_DOWN, &adapter->state);
Bruce Allan17f208d2009-12-01 15:47:22 +00005902 unregister_netdev(netdev);
5903
Alan Sternf3ec4f82010-06-08 15:23:51 -04005904 if (pci_dev_run_wake(pdev))
5905 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005906
Bruce Allanad680762008-03-28 09:15:03 -07005907 /*
5908 * Release control of h/w to f/w. If f/w is AMT enabled, this
5909 * would have already happened in close and is redundant.
5910 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005911 e1000_release_hw_control(adapter);
5912
Bruce Allan4662e822008-08-26 18:37:06 -07005913 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005914 kfree(adapter->tx_ring);
5915 kfree(adapter->rx_ring);
5916
5917 iounmap(adapter->hw.hw_addr);
5918 if (adapter->hw.flash_address)
5919 iounmap(adapter->hw.flash_address);
Bruce Allanf0f422e2008-08-04 17:21:53 -07005920 pci_release_selected_regions(pdev,
5921 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005922
5923 free_netdev(netdev);
5924
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005925 /* AER disable */
Frans Pop19d5afd2009-10-02 10:04:12 -07005926 pci_disable_pcie_error_reporting(pdev);
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00005927
Auke Kokbc7f75f2007-09-17 12:30:59 -07005928 pci_disable_device(pdev);
5929}
5930
5931/* PCI Error Recovery (ERS) */
5932static struct pci_error_handlers e1000_err_handler = {
5933 .error_detected = e1000_io_error_detected,
5934 .slot_reset = e1000_io_slot_reset,
5935 .resume = e1000_io_resume,
5936};
5937
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00005938static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005939 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_COPPER), board_82571 },
5940 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_FIBER), board_82571 },
5941 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER), board_82571 },
5942 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER_LP), board_82571 },
5943 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_FIBER), board_82571 },
5944 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES), board_82571 },
Auke Kok040babf2007-10-31 15:22:05 -07005945 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_DUAL), board_82571 },
5946 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_QUAD), board_82571 },
5947 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571PT_QUAD_COPPER), board_82571 },
Bruce Allanad680762008-03-28 09:15:03 -07005948
Auke Kokbc7f75f2007-09-17 12:30:59 -07005949 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI), board_82572 },
5950 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_COPPER), board_82572 },
5951 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_FIBER), board_82572 },
5952 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_SERDES), board_82572 },
Bruce Allanad680762008-03-28 09:15:03 -07005953
Auke Kokbc7f75f2007-09-17 12:30:59 -07005954 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E), board_82573 },
5955 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E_IAMT), board_82573 },
5956 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573L), board_82573 },
Bruce Allanad680762008-03-28 09:15:03 -07005957
Bruce Allan4662e822008-08-26 18:37:06 -07005958 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574L), board_82574 },
Bruce Allanbef28b12009-03-24 23:28:02 -07005959 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574LA), board_82574 },
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00005960 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82583V), board_82583 },
Bruce Allan4662e822008-08-26 18:37:06 -07005961
Auke Kokbc7f75f2007-09-17 12:30:59 -07005962 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_DPT),
5963 board_80003es2lan },
5964 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_SPT),
5965 board_80003es2lan },
5966 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_DPT),
5967 board_80003es2lan },
5968 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_SPT),
5969 board_80003es2lan },
Bruce Allanad680762008-03-28 09:15:03 -07005970
Auke Kokbc7f75f2007-09-17 12:30:59 -07005971 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE), board_ich8lan },
5972 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_G), board_ich8lan },
5973 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_GT), board_ich8lan },
5974 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_AMT), board_ich8lan },
5975 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_C), board_ich8lan },
5976 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M), board_ich8lan },
5977 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M_AMT), board_ich8lan },
Bruce Allan9e135a22009-12-01 15:50:31 +00005978 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_82567V_3), board_ich8lan },
Bruce Allanad680762008-03-28 09:15:03 -07005979
Auke Kokbc7f75f2007-09-17 12:30:59 -07005980 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE), board_ich9lan },
5981 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_G), board_ich9lan },
5982 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_GT), board_ich9lan },
5983 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_AMT), board_ich9lan },
5984 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_C), board_ich9lan },
Bruce Allan2f15f9d2008-08-26 18:36:36 -07005985 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_BM), board_ich9lan },
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005986 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M), board_ich9lan },
5987 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_AMT), board_ich9lan },
5988 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_V), board_ich9lan },
5989
5990 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LM), board_ich9lan },
5991 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LF), board_ich9lan },
5992 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_V), board_ich9lan },
Auke Kokbc7f75f2007-09-17 12:30:59 -07005993
Bruce Allanf4187b52008-08-26 18:36:50 -07005994 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LM), board_ich10lan },
5995 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LF), board_ich10lan },
Bruce Allan10df0b92010-05-10 15:02:52 +00005996 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_V), board_ich10lan },
Bruce Allanf4187b52008-08-26 18:36:50 -07005997
Bruce Allana4f58f52009-06-02 11:29:18 +00005998 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LM), board_pchlan },
5999 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LC), board_pchlan },
6000 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DM), board_pchlan },
6001 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DC), board_pchlan },
6002
Bruce Alland3738bb2010-06-16 13:27:28 +00006003 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH2_LV_LM), board_pch2lan },
6004 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH2_LV_V), board_pch2lan },
6005
Auke Kokbc7f75f2007-09-17 12:30:59 -07006006 { } /* terminate list */
6007};
6008MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
6009
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006010#ifdef CONFIG_PM_OPS
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006011static const struct dev_pm_ops e1000_pm_ops = {
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006012 SET_SYSTEM_SLEEP_PM_OPS(e1000_suspend, e1000_resume)
6013 SET_RUNTIME_PM_OPS(e1000_runtime_suspend,
6014 e1000_runtime_resume, e1000_idle)
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006015};
David S. Millere50208a2010-03-16 23:36:24 -07006016#endif
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006017
Auke Kokbc7f75f2007-09-17 12:30:59 -07006018/* PCI Device API Driver */
6019static struct pci_driver e1000_driver = {
6020 .name = e1000e_driver_name,
6021 .id_table = e1000_pci_tbl,
6022 .probe = e1000_probe,
6023 .remove = __devexit_p(e1000_remove),
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006024#ifdef CONFIG_PM_OPS
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006025 .driver.pm = &e1000_pm_ops,
Auke Kokbc7f75f2007-09-17 12:30:59 -07006026#endif
6027 .shutdown = e1000_shutdown,
6028 .err_handler = &e1000_err_handler
6029};
6030
6031/**
6032 * e1000_init_module - Driver Registration Routine
6033 *
6034 * e1000_init_module is the first routine called when the driver is
6035 * loaded. All it does is register with the PCI subsystem.
6036 **/
6037static int __init e1000_init_module(void)
6038{
6039 int ret;
Bruce Allan8544b9f2010-03-24 12:55:30 +00006040 pr_info("Intel(R) PRO/1000 Network Driver - %s\n",
6041 e1000e_driver_version);
Bruce Allan451152d2010-06-16 13:28:11 +00006042 pr_info("Copyright (c) 1999 - 2010 Intel Corporation.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07006043 ret = pci_register_driver(&e1000_driver);
Bruce Allan53ec5492009-11-20 23:27:40 +00006044
Auke Kokbc7f75f2007-09-17 12:30:59 -07006045 return ret;
6046}
6047module_init(e1000_init_module);
6048
6049/**
6050 * e1000_exit_module - Driver Exit Cleanup Routine
6051 *
6052 * e1000_exit_module is called just before the driver is removed
6053 * from memory.
6054 **/
6055static void __exit e1000_exit_module(void)
6056{
6057 pci_unregister_driver(&e1000_driver);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006058}
6059module_exit(e1000_exit_module);
6060
6061
6062MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
6063MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
6064MODULE_LICENSE("GPL");
6065MODULE_VERSION(DRV_VERSION);
6066
6067/* e1000_main.c */