blob: 94bd92da29fade52ef3aafb3ea31bdae7fa5eb78 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allanbf670442013-01-01 16:00:01 +00004 Copyright(c) 1999 - 2013 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>
Bruce Allan9fb7a5f2011-07-29 05:52:51 +000039#include <linux/interrupt.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070040#include <linux/tcp.h>
41#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070043#include <net/checksum.h>
44#include <net/ip6_checksum.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070045#include <linux/ethtool.h>
46#include <linux/if_vlan.h>
47#include <linux/cpu.h>
48#include <linux/smp.h>
Linus Torvalds7e0bb712011-10-25 15:18:39 +020049#include <linux/pm_qos.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>
Paul Gortmaker70c71602011-05-22 16:47:17 -040052#include <linux/prefetch.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070053
54#include "e1000.h"
55
Bruce Allanb3ccf262011-05-19 01:53:41 +000056#define DRV_EXTRAVERSION "-k"
Bruce Allanc14c6432010-06-16 13:28:34 +000057
Bruce Allan8defe712013-03-06 09:03:13 +000058#define DRV_VERSION "2.3.2" DRV_EXTRAVERSION
Auke Kokbc7f75f2007-09-17 12:30:59 -070059char e1000e_driver_name[] = "e1000e";
60const char e1000e_driver_version[] = DRV_VERSION;
61
stephen hemmingerb3f4d592012-03-13 06:04:20 +000062#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
63static int debug = -1;
64module_param(debug, int, 0);
65MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
66
Auke Kokbc7f75f2007-09-17 12:30:59 -070067static const struct e1000_info *e1000_info_tbl[] = {
68 [board_82571] = &e1000_82571_info,
69 [board_82572] = &e1000_82572_info,
70 [board_82573] = &e1000_82573_info,
Bruce Allan4662e822008-08-26 18:37:06 -070071 [board_82574] = &e1000_82574_info,
Alexander Duyck8c81c9c2009-03-19 01:12:27 +000072 [board_82583] = &e1000_82583_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070073 [board_80003es2lan] = &e1000_es2_info,
74 [board_ich8lan] = &e1000_ich8_info,
75 [board_ich9lan] = &e1000_ich9_info,
Bruce Allanf4187b52008-08-26 18:36:50 -070076 [board_ich10lan] = &e1000_ich10_info,
Bruce Allana4f58f52009-06-02 11:29:18 +000077 [board_pchlan] = &e1000_pch_info,
Bruce Alland3738bb2010-06-16 13:27:28 +000078 [board_pch2lan] = &e1000_pch2_info,
Bruce Allan2fbe4522012-04-19 03:21:47 +000079 [board_pch_lpt] = &e1000_pch_lpt_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070080};
81
Taku Izumi84f4ee92010-04-27 14:39:08 +000082struct e1000_reg_info {
83 u32 ofs;
84 char *name;
85};
86
Taku Izumi84f4ee92010-04-27 14:39:08 +000087static const struct e1000_reg_info e1000_reg_info_tbl[] = {
Taku Izumi84f4ee92010-04-27 14:39:08 +000088 /* General Registers */
89 {E1000_CTRL, "CTRL"},
90 {E1000_STATUS, "STATUS"},
91 {E1000_CTRL_EXT, "CTRL_EXT"},
92
93 /* Interrupt Registers */
94 {E1000_ICR, "ICR"},
95
Bruce Allanaf667a22010-12-31 06:10:01 +000096 /* Rx Registers */
Taku Izumi84f4ee92010-04-27 14:39:08 +000097 {E1000_RCTL, "RCTL"},
Bruce Allan1e360522012-03-20 03:48:13 +000098 {E1000_RDLEN(0), "RDLEN"},
99 {E1000_RDH(0), "RDH"},
100 {E1000_RDT(0), "RDT"},
Taku Izumi84f4ee92010-04-27 14:39:08 +0000101 {E1000_RDTR, "RDTR"},
102 {E1000_RXDCTL(0), "RXDCTL"},
103 {E1000_ERT, "ERT"},
Bruce Allan1e360522012-03-20 03:48:13 +0000104 {E1000_RDBAL(0), "RDBAL"},
105 {E1000_RDBAH(0), "RDBAH"},
Taku Izumi84f4ee92010-04-27 14:39:08 +0000106 {E1000_RDFH, "RDFH"},
107 {E1000_RDFT, "RDFT"},
108 {E1000_RDFHS, "RDFHS"},
109 {E1000_RDFTS, "RDFTS"},
110 {E1000_RDFPC, "RDFPC"},
111
Bruce Allanaf667a22010-12-31 06:10:01 +0000112 /* Tx Registers */
Taku Izumi84f4ee92010-04-27 14:39:08 +0000113 {E1000_TCTL, "TCTL"},
Bruce Allan1e360522012-03-20 03:48:13 +0000114 {E1000_TDBAL(0), "TDBAL"},
115 {E1000_TDBAH(0), "TDBAH"},
116 {E1000_TDLEN(0), "TDLEN"},
117 {E1000_TDH(0), "TDH"},
118 {E1000_TDT(0), "TDT"},
Taku Izumi84f4ee92010-04-27 14:39:08 +0000119 {E1000_TIDV, "TIDV"},
120 {E1000_TXDCTL(0), "TXDCTL"},
121 {E1000_TADV, "TADV"},
122 {E1000_TARC(0), "TARC"},
123 {E1000_TDFH, "TDFH"},
124 {E1000_TDFT, "TDFT"},
125 {E1000_TDFHS, "TDFHS"},
126 {E1000_TDFTS, "TDFTS"},
127 {E1000_TDFPC, "TDFPC"},
128
129 /* List Terminator */
Bruce Allanf36bb6c2012-01-31 06:38:04 +0000130 {0, NULL}
Taku Izumi84f4ee92010-04-27 14:39:08 +0000131};
132
Bruce Allane921eb12012-11-28 09:28:37 +0000133/**
Taku Izumi84f4ee92010-04-27 14:39:08 +0000134 * e1000_regdump - register printout routine
Bruce Allane921eb12012-11-28 09:28:37 +0000135 * @hw: pointer to the HW structure
136 * @reginfo: pointer to the register info table
137 **/
Taku Izumi84f4ee92010-04-27 14:39:08 +0000138static void e1000_regdump(struct e1000_hw *hw, struct e1000_reg_info *reginfo)
139{
140 int n = 0;
141 char rname[16];
142 u32 regs[8];
143
144 switch (reginfo->ofs) {
145 case E1000_RXDCTL(0):
146 for (n = 0; n < 2; n++)
147 regs[n] = __er32(hw, E1000_RXDCTL(n));
148 break;
149 case E1000_TXDCTL(0):
150 for (n = 0; n < 2; n++)
151 regs[n] = __er32(hw, E1000_TXDCTL(n));
152 break;
153 case E1000_TARC(0):
154 for (n = 0; n < 2; n++)
155 regs[n] = __er32(hw, E1000_TARC(n));
156 break;
157 default:
Jeff Kirsheref456f82011-11-03 11:40:28 +0000158 pr_info("%-15s %08x\n",
159 reginfo->name, __er32(hw, reginfo->ofs));
Taku Izumi84f4ee92010-04-27 14:39:08 +0000160 return;
161 }
162
163 snprintf(rname, 16, "%s%s", reginfo->name, "[0-1]");
Jeff Kirsheref456f82011-11-03 11:40:28 +0000164 pr_info("%-15s %08x %08x\n", rname, regs[0], regs[1]);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000165}
166
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000167static void e1000e_dump_ps_pages(struct e1000_adapter *adapter,
168 struct e1000_buffer *bi)
169{
170 int i;
171 struct e1000_ps_page *ps_page;
172
173 for (i = 0; i < adapter->rx_ps_pages; i++) {
174 ps_page = &bi->ps_pages[i];
175
176 if (ps_page->page) {
177 pr_info("packet dump for ps_page %d:\n", i);
178 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS,
179 16, 1, page_address(ps_page->page),
180 PAGE_SIZE, true);
181 }
182 }
183}
184
Bruce Allane921eb12012-11-28 09:28:37 +0000185/**
Bruce Allanaf667a22010-12-31 06:10:01 +0000186 * e1000e_dump - Print registers, Tx-ring and Rx-ring
Bruce Allane921eb12012-11-28 09:28:37 +0000187 * @adapter: board private structure
188 **/
Taku Izumi84f4ee92010-04-27 14:39:08 +0000189static void e1000e_dump(struct e1000_adapter *adapter)
190{
191 struct net_device *netdev = adapter->netdev;
192 struct e1000_hw *hw = &adapter->hw;
193 struct e1000_reg_info *reginfo;
194 struct e1000_ring *tx_ring = adapter->tx_ring;
195 struct e1000_tx_desc *tx_desc;
Bruce Allanaf667a22010-12-31 06:10:01 +0000196 struct my_u0 {
Bruce Allane885d762012-01-31 06:37:32 +0000197 __le64 a;
198 __le64 b;
Bruce Allanaf667a22010-12-31 06:10:01 +0000199 } *u0;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000200 struct e1000_buffer *buffer_info;
201 struct e1000_ring *rx_ring = adapter->rx_ring;
202 union e1000_rx_desc_packet_split *rx_desc_ps;
Bruce Allan5f450212011-07-22 06:21:46 +0000203 union e1000_rx_desc_extended *rx_desc;
Bruce Allanaf667a22010-12-31 06:10:01 +0000204 struct my_u1 {
Bruce Allane885d762012-01-31 06:37:32 +0000205 __le64 a;
206 __le64 b;
207 __le64 c;
208 __le64 d;
Bruce Allanaf667a22010-12-31 06:10:01 +0000209 } *u1;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000210 u32 staterr;
211 int i = 0;
212
213 if (!netif_msg_hw(adapter))
214 return;
215
216 /* Print netdevice Info */
217 if (netdev) {
218 dev_info(&adapter->pdev->dev, "Net device Info\n");
Jeff Kirsheref456f82011-11-03 11:40:28 +0000219 pr_info("Device Name state trans_start last_rx\n");
Bruce Allane5fe2542013-02-20 04:06:27 +0000220 pr_info("%-15s %016lX %016lX %016lX\n", netdev->name,
221 netdev->state, netdev->trans_start, netdev->last_rx);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000222 }
223
224 /* Print Registers */
225 dev_info(&adapter->pdev->dev, "Register Dump\n");
Jeff Kirsheref456f82011-11-03 11:40:28 +0000226 pr_info(" Register Name Value\n");
Taku Izumi84f4ee92010-04-27 14:39:08 +0000227 for (reginfo = (struct e1000_reg_info *)e1000_reg_info_tbl;
228 reginfo->name; reginfo++) {
229 e1000_regdump(hw, reginfo);
230 }
231
Bruce Allanaf667a22010-12-31 06:10:01 +0000232 /* Print Tx Ring Summary */
Taku Izumi84f4ee92010-04-27 14:39:08 +0000233 if (!netdev || !netif_running(netdev))
Bruce Allanfe1e9802012-01-31 06:37:54 +0000234 return;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000235
Bruce Allanaf667a22010-12-31 06:10:01 +0000236 dev_info(&adapter->pdev->dev, "Tx Ring Summary\n");
Jeff Kirsheref456f82011-11-03 11:40:28 +0000237 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumi84f4ee92010-04-27 14:39:08 +0000238 buffer_info = &tx_ring->buffer_info[tx_ring->next_to_clean];
Jeff Kirsheref456f82011-11-03 11:40:28 +0000239 pr_info(" %5d %5X %5X %016llX %04X %3X %016llX\n",
240 0, tx_ring->next_to_use, tx_ring->next_to_clean,
241 (unsigned long long)buffer_info->dma,
242 buffer_info->length,
243 buffer_info->next_to_watch,
244 (unsigned long long)buffer_info->time_stamp);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000245
Bruce Allanaf667a22010-12-31 06:10:01 +0000246 /* Print Tx Ring */
Taku Izumi84f4ee92010-04-27 14:39:08 +0000247 if (!netif_msg_tx_done(adapter))
248 goto rx_ring_summary;
249
Bruce Allanaf667a22010-12-31 06:10:01 +0000250 dev_info(&adapter->pdev->dev, "Tx Ring Dump\n");
Taku Izumi84f4ee92010-04-27 14:39:08 +0000251
252 /* Transmit Descriptor Formats - DEXT[29] is 0 (Legacy) or 1 (Extended)
253 *
254 * Legacy Transmit Descriptor
255 * +--------------------------------------------------------------+
256 * 0 | Buffer Address [63:0] (Reserved on Write Back) |
257 * +--------------------------------------------------------------+
258 * 8 | Special | CSS | Status | CMD | CSO | Length |
259 * +--------------------------------------------------------------+
260 * 63 48 47 36 35 32 31 24 23 16 15 0
261 *
262 * Extended Context Descriptor (DTYP=0x0) for TSO or checksum offload
263 * 63 48 47 40 39 32 31 16 15 8 7 0
264 * +----------------------------------------------------------------+
265 * 0 | TUCSE | TUCS0 | TUCSS | IPCSE | IPCS0 | IPCSS |
266 * +----------------------------------------------------------------+
267 * 8 | MSS | HDRLEN | RSV | STA | TUCMD | DTYP | PAYLEN |
268 * +----------------------------------------------------------------+
269 * 63 48 47 40 39 36 35 32 31 24 23 20 19 0
270 *
271 * Extended Data Descriptor (DTYP=0x1)
272 * +----------------------------------------------------------------+
273 * 0 | Buffer Address [63:0] |
274 * +----------------------------------------------------------------+
275 * 8 | VLAN tag | POPTS | Rsvd | Status | Command | DTYP | DTALEN |
276 * +----------------------------------------------------------------+
277 * 63 48 47 40 39 36 35 32 31 24 23 20 19 0
278 */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000279 pr_info("Tl[desc] [address 63:0 ] [SpeCssSCmCsLen] [bi->dma ] leng ntw timestamp bi->skb <-- Legacy format\n");
280 pr_info("Tc[desc] [Ce CoCsIpceCoS] [MssHlRSCm0Plen] [bi->dma ] leng ntw timestamp bi->skb <-- Ext Context format\n");
281 pr_info("Td[desc] [address 63:0 ] [VlaPoRSCm1Dlen] [bi->dma ] leng ntw timestamp bi->skb <-- Ext Data format\n");
Taku Izumi84f4ee92010-04-27 14:39:08 +0000282 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Jeff Kirsheref456f82011-11-03 11:40:28 +0000283 const char *next_desc;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000284 tx_desc = E1000_TX_DESC(*tx_ring, i);
285 buffer_info = &tx_ring->buffer_info[i];
286 u0 = (struct my_u0 *)tx_desc;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000287 if (i == tx_ring->next_to_use && i == tx_ring->next_to_clean)
Jeff Kirsheref456f82011-11-03 11:40:28 +0000288 next_desc = " NTC/U";
Taku Izumi84f4ee92010-04-27 14:39:08 +0000289 else if (i == tx_ring->next_to_use)
Jeff Kirsheref456f82011-11-03 11:40:28 +0000290 next_desc = " NTU";
Taku Izumi84f4ee92010-04-27 14:39:08 +0000291 else if (i == tx_ring->next_to_clean)
Jeff Kirsheref456f82011-11-03 11:40:28 +0000292 next_desc = " NTC";
Taku Izumi84f4ee92010-04-27 14:39:08 +0000293 else
Jeff Kirsheref456f82011-11-03 11:40:28 +0000294 next_desc = "";
295 pr_info("T%c[0x%03X] %016llX %016llX %016llX %04X %3X %016llX %p%s\n",
296 (!(le64_to_cpu(u0->b) & (1 << 29)) ? 'l' :
297 ((le64_to_cpu(u0->b) & (1 << 20)) ? 'd' : 'c')),
298 i,
299 (unsigned long long)le64_to_cpu(u0->a),
300 (unsigned long long)le64_to_cpu(u0->b),
301 (unsigned long long)buffer_info->dma,
302 buffer_info->length, buffer_info->next_to_watch,
303 (unsigned long long)buffer_info->time_stamp,
304 buffer_info->skb, next_desc);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000305
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000306 if (netif_msg_pktdata(adapter) && buffer_info->skb)
Taku Izumi84f4ee92010-04-27 14:39:08 +0000307 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS,
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000308 16, 1, buffer_info->skb->data,
309 buffer_info->skb->len, true);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000310 }
311
Bruce Allanaf667a22010-12-31 06:10:01 +0000312 /* Print Rx Ring Summary */
Taku Izumi84f4ee92010-04-27 14:39:08 +0000313rx_ring_summary:
Bruce Allanaf667a22010-12-31 06:10:01 +0000314 dev_info(&adapter->pdev->dev, "Rx Ring Summary\n");
Jeff Kirsheref456f82011-11-03 11:40:28 +0000315 pr_info("Queue [NTU] [NTC]\n");
316 pr_info(" %5d %5X %5X\n",
317 0, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000318
Bruce Allanaf667a22010-12-31 06:10:01 +0000319 /* Print Rx Ring */
Taku Izumi84f4ee92010-04-27 14:39:08 +0000320 if (!netif_msg_rx_status(adapter))
Bruce Allanfe1e9802012-01-31 06:37:54 +0000321 return;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000322
Bruce Allanaf667a22010-12-31 06:10:01 +0000323 dev_info(&adapter->pdev->dev, "Rx Ring Dump\n");
Taku Izumi84f4ee92010-04-27 14:39:08 +0000324 switch (adapter->rx_ps_pages) {
325 case 1:
326 case 2:
327 case 3:
328 /* [Extended] Packet Split Receive Descriptor Format
329 *
330 * +-----------------------------------------------------+
331 * 0 | Buffer Address 0 [63:0] |
332 * +-----------------------------------------------------+
333 * 8 | Buffer Address 1 [63:0] |
334 * +-----------------------------------------------------+
335 * 16 | Buffer Address 2 [63:0] |
336 * +-----------------------------------------------------+
337 * 24 | Buffer Address 3 [63:0] |
338 * +-----------------------------------------------------+
339 */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000340 pr_info("R [desc] [buffer 0 63:0 ] [buffer 1 63:0 ] [buffer 2 63:0 ] [buffer 3 63:0 ] [bi->dma ] [bi->skb] <-- Ext Pkt Split format\n");
Taku Izumi84f4ee92010-04-27 14:39:08 +0000341 /* [Extended] Receive Descriptor (Write-Back) Format
342 *
343 * 63 48 47 32 31 13 12 8 7 4 3 0
344 * +------------------------------------------------------+
345 * 0 | Packet | IP | Rsvd | MRQ | Rsvd | MRQ RSS |
346 * | Checksum | Ident | | Queue | | Type |
347 * +------------------------------------------------------+
348 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
349 * +------------------------------------------------------+
350 * 63 48 47 32 31 20 19 0
351 */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000352 pr_info("RWB[desc] [ck ipid mrqhsh] [vl l0 ee es] [ l3 l2 l1 hs] [reserved ] ---------------- [bi->skb] <-- Ext Rx Write-Back format\n");
Taku Izumi84f4ee92010-04-27 14:39:08 +0000353 for (i = 0; i < rx_ring->count; i++) {
Jeff Kirsheref456f82011-11-03 11:40:28 +0000354 const char *next_desc;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000355 buffer_info = &rx_ring->buffer_info[i];
356 rx_desc_ps = E1000_RX_DESC_PS(*rx_ring, i);
357 u1 = (struct my_u1 *)rx_desc_ps;
358 staterr =
Bruce Allanaf667a22010-12-31 06:10:01 +0000359 le32_to_cpu(rx_desc_ps->wb.middle.status_error);
Jeff Kirsheref456f82011-11-03 11:40:28 +0000360
361 if (i == rx_ring->next_to_use)
362 next_desc = " NTU";
363 else if (i == rx_ring->next_to_clean)
364 next_desc = " NTC";
365 else
366 next_desc = "";
367
Taku Izumi84f4ee92010-04-27 14:39:08 +0000368 if (staterr & E1000_RXD_STAT_DD) {
369 /* Descriptor Done */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000370 pr_info("%s[0x%03X] %016llX %016llX %016llX %016llX ---------------- %p%s\n",
371 "RWB", i,
372 (unsigned long long)le64_to_cpu(u1->a),
373 (unsigned long long)le64_to_cpu(u1->b),
374 (unsigned long long)le64_to_cpu(u1->c),
375 (unsigned long long)le64_to_cpu(u1->d),
376 buffer_info->skb, next_desc);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000377 } else {
Jeff Kirsheref456f82011-11-03 11:40:28 +0000378 pr_info("%s[0x%03X] %016llX %016llX %016llX %016llX %016llX %p%s\n",
379 "R ", i,
380 (unsigned long long)le64_to_cpu(u1->a),
381 (unsigned long long)le64_to_cpu(u1->b),
382 (unsigned long long)le64_to_cpu(u1->c),
383 (unsigned long long)le64_to_cpu(u1->d),
384 (unsigned long long)buffer_info->dma,
385 buffer_info->skb, next_desc);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000386
387 if (netif_msg_pktdata(adapter))
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000388 e1000e_dump_ps_pages(adapter,
389 buffer_info);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000390 }
Taku Izumi84f4ee92010-04-27 14:39:08 +0000391 }
392 break;
393 default:
394 case 0:
Bruce Allan5f450212011-07-22 06:21:46 +0000395 /* Extended Receive Descriptor (Read) Format
Taku Izumi84f4ee92010-04-27 14:39:08 +0000396 *
Bruce Allan5f450212011-07-22 06:21:46 +0000397 * +-----------------------------------------------------+
398 * 0 | Buffer Address [63:0] |
399 * +-----------------------------------------------------+
400 * 8 | Reserved |
401 * +-----------------------------------------------------+
Taku Izumi84f4ee92010-04-27 14:39:08 +0000402 */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000403 pr_info("R [desc] [buf addr 63:0 ] [reserved 63:0 ] [bi->dma ] [bi->skb] <-- Ext (Read) format\n");
Bruce Allan5f450212011-07-22 06:21:46 +0000404 /* Extended Receive Descriptor (Write-Back) Format
405 *
406 * 63 48 47 32 31 24 23 4 3 0
407 * +------------------------------------------------------+
408 * | RSS Hash | | | |
409 * 0 +-------------------+ Rsvd | Reserved | MRQ RSS |
410 * | Packet | IP | | | Type |
411 * | Checksum | Ident | | | |
412 * +------------------------------------------------------+
413 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
414 * +------------------------------------------------------+
415 * 63 48 47 32 31 20 19 0
416 */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000417 pr_info("RWB[desc] [cs ipid mrq] [vt ln xe xs] [bi->skb] <-- Ext (Write-Back) format\n");
Bruce Allan5f450212011-07-22 06:21:46 +0000418
419 for (i = 0; i < rx_ring->count; i++) {
Jeff Kirsheref456f82011-11-03 11:40:28 +0000420 const char *next_desc;
421
Taku Izumi84f4ee92010-04-27 14:39:08 +0000422 buffer_info = &rx_ring->buffer_info[i];
Bruce Allan5f450212011-07-22 06:21:46 +0000423 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
424 u1 = (struct my_u1 *)rx_desc;
425 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Jeff Kirsheref456f82011-11-03 11:40:28 +0000426
427 if (i == rx_ring->next_to_use)
428 next_desc = " NTU";
429 else if (i == rx_ring->next_to_clean)
430 next_desc = " NTC";
431 else
432 next_desc = "";
433
Bruce Allan5f450212011-07-22 06:21:46 +0000434 if (staterr & E1000_RXD_STAT_DD) {
435 /* Descriptor Done */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000436 pr_info("%s[0x%03X] %016llX %016llX ---------------- %p%s\n",
437 "RWB", i,
438 (unsigned long long)le64_to_cpu(u1->a),
439 (unsigned long long)le64_to_cpu(u1->b),
440 buffer_info->skb, next_desc);
Bruce Allan5f450212011-07-22 06:21:46 +0000441 } else {
Jeff Kirsheref456f82011-11-03 11:40:28 +0000442 pr_info("%s[0x%03X] %016llX %016llX %016llX %p%s\n",
443 "R ", i,
444 (unsigned long long)le64_to_cpu(u1->a),
445 (unsigned long long)le64_to_cpu(u1->b),
446 (unsigned long long)buffer_info->dma,
447 buffer_info->skb, next_desc);
Bruce Allan5f450212011-07-22 06:21:46 +0000448
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000449 if (netif_msg_pktdata(adapter) &&
450 buffer_info->skb)
Bruce Allan5f450212011-07-22 06:21:46 +0000451 print_hex_dump(KERN_INFO, "",
452 DUMP_PREFIX_ADDRESS, 16,
453 1,
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000454 buffer_info->skb->data,
Bruce Allan5f450212011-07-22 06:21:46 +0000455 adapter->rx_buffer_len,
456 true);
457 }
Taku Izumi84f4ee92010-04-27 14:39:08 +0000458 }
459 }
Taku Izumi84f4ee92010-04-27 14:39:08 +0000460}
461
Auke Kokbc7f75f2007-09-17 12:30:59 -0700462/**
463 * e1000_desc_unused - calculate if we have unused descriptors
464 **/
465static int e1000_desc_unused(struct e1000_ring *ring)
466{
467 if (ring->next_to_clean > ring->next_to_use)
468 return ring->next_to_clean - ring->next_to_use - 1;
469
470 return ring->count + ring->next_to_clean - ring->next_to_use - 1;
471}
472
473/**
Bruce Allanb67e1912012-12-27 08:32:33 +0000474 * e1000e_systim_to_hwtstamp - convert system time value to hw time stamp
475 * @adapter: board private structure
476 * @hwtstamps: time stamp structure to update
477 * @systim: unsigned 64bit system time value.
478 *
479 * Convert the system time value stored in the RX/TXSTMP registers into a
480 * hwtstamp which can be used by the upper level time stamping functions.
481 *
482 * The 'systim_lock' spinlock is used to protect the consistency of the
483 * system time value. This is needed because reading the 64 bit time
484 * value involves reading two 32 bit registers. The first read latches the
485 * value.
486 **/
487static void e1000e_systim_to_hwtstamp(struct e1000_adapter *adapter,
488 struct skb_shared_hwtstamps *hwtstamps,
489 u64 systim)
490{
491 u64 ns;
492 unsigned long flags;
493
494 spin_lock_irqsave(&adapter->systim_lock, flags);
495 ns = timecounter_cyc2time(&adapter->tc, systim);
496 spin_unlock_irqrestore(&adapter->systim_lock, flags);
497
498 memset(hwtstamps, 0, sizeof(*hwtstamps));
499 hwtstamps->hwtstamp = ns_to_ktime(ns);
500}
501
502/**
503 * e1000e_rx_hwtstamp - utility function which checks for Rx time stamp
504 * @adapter: board private structure
505 * @status: descriptor extended error and status field
506 * @skb: particular skb to include time stamp
507 *
508 * If the time stamp is valid, convert it into the timecounter ns value
509 * and store that result into the shhwtstamps structure which is passed
510 * up the network stack.
511 **/
512static void e1000e_rx_hwtstamp(struct e1000_adapter *adapter, u32 status,
513 struct sk_buff *skb)
514{
515 struct e1000_hw *hw = &adapter->hw;
516 u64 rxstmp;
517
518 if (!(adapter->flags & FLAG_HAS_HW_TIMESTAMP) ||
519 !(status & E1000_RXDEXT_STATERR_TST) ||
520 !(er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_VALID))
521 return;
522
523 /* The Rx time stamp registers contain the time stamp. No other
524 * received packet will be time stamped until the Rx time stamp
525 * registers are read. Because only one packet can be time stamped
526 * at a time, the register values must belong to this packet and
527 * therefore none of the other additional attributes need to be
528 * compared.
529 */
530 rxstmp = (u64)er32(RXSTMPL);
531 rxstmp |= (u64)er32(RXSTMPH) << 32;
532 e1000e_systim_to_hwtstamp(adapter, skb_hwtstamps(skb), rxstmp);
533
534 adapter->flags2 &= ~FLAG2_CHECK_RX_HWTSTAMP;
535}
536
537/**
Bruce Allanad680762008-03-28 09:15:03 -0700538 * e1000_receive_skb - helper function to handle Rx indications
Auke Kokbc7f75f2007-09-17 12:30:59 -0700539 * @adapter: board private structure
Bruce Allanb67e1912012-12-27 08:32:33 +0000540 * @staterr: descriptor extended error and status field as written by hardware
Auke Kokbc7f75f2007-09-17 12:30:59 -0700541 * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
542 * @skb: pointer to sk_buff to be indicated to stack
543 **/
544static void e1000_receive_skb(struct e1000_adapter *adapter,
Bruce Allanaf667a22010-12-31 06:10:01 +0000545 struct net_device *netdev, struct sk_buff *skb,
Bruce Allanb67e1912012-12-27 08:32:33 +0000546 u32 staterr, __le16 vlan)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700547{
Jeff Kirsher86d70e52011-03-25 16:01:01 +0000548 u16 tag = le16_to_cpu(vlan);
Bruce Allanb67e1912012-12-27 08:32:33 +0000549
550 e1000e_rx_hwtstamp(adapter, staterr, skb);
551
Auke Kokbc7f75f2007-09-17 12:30:59 -0700552 skb->protocol = eth_type_trans(skb, netdev);
553
Bruce Allanb67e1912012-12-27 08:32:33 +0000554 if (staterr & E1000_RXD_STAT_VP)
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000555 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), tag);
Jeff Kirsher86d70e52011-03-25 16:01:01 +0000556
557 napi_gro_receive(&adapter->napi, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700558}
559
560/**
Bruce Allanaf667a22010-12-31 06:10:01 +0000561 * e1000_rx_checksum - Receive Checksum Offload
Bruce Allanafd12932012-01-05 00:34:05 +0000562 * @adapter: board private structure
563 * @status_err: receive descriptor status and error fields
564 * @csum: receive descriptor csum field
565 * @sk_buff: socket buffer with received data
Auke Kokbc7f75f2007-09-17 12:30:59 -0700566 **/
567static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
Bruce Allan2e1706f2012-06-30 20:02:42 +0000568 struct sk_buff *skb)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700569{
570 u16 status = (u16)status_err;
571 u8 errors = (u8)(status_err >> 24);
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700572
573 skb_checksum_none_assert(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700574
Bruce Allanafd12932012-01-05 00:34:05 +0000575 /* Rx checksum disabled */
576 if (!(adapter->netdev->features & NETIF_F_RXCSUM))
577 return;
578
Auke Kokbc7f75f2007-09-17 12:30:59 -0700579 /* Ignore Checksum bit is set */
580 if (status & E1000_RXD_STAT_IXSM)
581 return;
Bruce Allanafd12932012-01-05 00:34:05 +0000582
Bruce Allan2e1706f2012-06-30 20:02:42 +0000583 /* TCP/UDP checksum error bit or IP checksum error bit is set */
584 if (errors & (E1000_RXD_ERR_TCPE | E1000_RXD_ERR_IPE)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700585 /* let the stack verify checksum errors */
586 adapter->hw_csum_err++;
587 return;
588 }
589
590 /* TCP/UDP Checksum has not been calculated */
591 if (!(status & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)))
592 return;
593
594 /* It must be a TCP or UDP packet with a valid checksum */
Bruce Allan2e1706f2012-06-30 20:02:42 +0000595 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700596 adapter->hw_csum_good++;
597}
598
Bruce Allan55aa6982011-12-16 00:45:45 +0000599static void e1000e_update_rdt_wa(struct e1000_ring *rx_ring, unsigned int i)
David S. Miller823dcd22011-08-20 10:39:12 -0700600{
Bruce Allan55aa6982011-12-16 00:45:45 +0000601 struct e1000_adapter *adapter = rx_ring->adapter;
David S. Miller823dcd22011-08-20 10:39:12 -0700602 struct e1000_hw *hw = &adapter->hw;
Bruce Allanbdc125f2012-03-20 03:47:52 +0000603 s32 ret_val = __ew32_prepare(hw);
David S. Miller823dcd22011-08-20 10:39:12 -0700604
Bruce Allanbdc125f2012-03-20 03:47:52 +0000605 writel(i, rx_ring->tail);
606
607 if (unlikely(!ret_val && (i != readl(rx_ring->tail)))) {
David S. Miller823dcd22011-08-20 10:39:12 -0700608 u32 rctl = er32(RCTL);
609 ew32(RCTL, rctl & ~E1000_RCTL_EN);
610 e_err("ME firmware caused invalid RDT - resetting\n");
611 schedule_work(&adapter->reset_task);
612 }
613}
614
Bruce Allan55aa6982011-12-16 00:45:45 +0000615static void e1000e_update_tdt_wa(struct e1000_ring *tx_ring, unsigned int i)
David S. Miller823dcd22011-08-20 10:39:12 -0700616{
Bruce Allan55aa6982011-12-16 00:45:45 +0000617 struct e1000_adapter *adapter = tx_ring->adapter;
David S. Miller823dcd22011-08-20 10:39:12 -0700618 struct e1000_hw *hw = &adapter->hw;
Bruce Allanbdc125f2012-03-20 03:47:52 +0000619 s32 ret_val = __ew32_prepare(hw);
David S. Miller823dcd22011-08-20 10:39:12 -0700620
Bruce Allanbdc125f2012-03-20 03:47:52 +0000621 writel(i, tx_ring->tail);
622
623 if (unlikely(!ret_val && (i != readl(tx_ring->tail)))) {
David S. Miller823dcd22011-08-20 10:39:12 -0700624 u32 tctl = er32(TCTL);
625 ew32(TCTL, tctl & ~E1000_TCTL_EN);
626 e_err("ME firmware caused invalid TDT - resetting\n");
627 schedule_work(&adapter->reset_task);
628 }
629}
630
631/**
Bruce Allan5f450212011-07-22 06:21:46 +0000632 * e1000_alloc_rx_buffers - Replace used receive buffers
Bruce Allan55aa6982011-12-16 00:45:45 +0000633 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -0700634 **/
Bruce Allan55aa6982011-12-16 00:45:45 +0000635static void e1000_alloc_rx_buffers(struct e1000_ring *rx_ring,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000636 int cleaned_count, gfp_t gfp)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700637{
Bruce Allan55aa6982011-12-16 00:45:45 +0000638 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700639 struct net_device *netdev = adapter->netdev;
640 struct pci_dev *pdev = adapter->pdev;
Bruce Allan5f450212011-07-22 06:21:46 +0000641 union e1000_rx_desc_extended *rx_desc;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700642 struct e1000_buffer *buffer_info;
643 struct sk_buff *skb;
644 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000645 unsigned int bufsz = adapter->rx_buffer_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700646
647 i = rx_ring->next_to_use;
648 buffer_info = &rx_ring->buffer_info[i];
649
650 while (cleaned_count--) {
651 skb = buffer_info->skb;
652 if (skb) {
653 skb_trim(skb, 0);
654 goto map_skb;
655 }
656
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000657 skb = __netdev_alloc_skb_ip_align(netdev, bufsz, gfp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700658 if (!skb) {
659 /* Better luck next round */
660 adapter->alloc_rx_buff_failed++;
661 break;
662 }
663
Auke Kokbc7f75f2007-09-17 12:30:59 -0700664 buffer_info->skb = skb;
665map_skb:
Nick Nunley0be3f552010-04-27 13:09:05 +0000666 buffer_info->dma = dma_map_single(&pdev->dev, skb->data,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700667 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +0000668 DMA_FROM_DEVICE);
669 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Bruce Allanaf667a22010-12-31 06:10:01 +0000670 dev_err(&pdev->dev, "Rx DMA map failed\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700671 adapter->rx_dma_failed++;
672 break;
673 }
674
Bruce Allan5f450212011-07-22 06:21:46 +0000675 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
676 rx_desc->read.buffer_addr = cpu_to_le64(buffer_info->dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700677
Tom Herbert50849d72010-05-05 14:02:49 +0000678 if (unlikely(!(i & (E1000_RX_BUFFER_WRITE - 1)))) {
Bruce Allane921eb12012-11-28 09:28:37 +0000679 /* Force memory writes to complete before letting h/w
Tom Herbert50849d72010-05-05 14:02:49 +0000680 * know there are new descriptors to fetch. (Only
681 * applicable for weak-ordered memory model archs,
682 * such as IA-64).
683 */
684 wmb();
David S. Miller823dcd22011-08-20 10:39:12 -0700685 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allan55aa6982011-12-16 00:45:45 +0000686 e1000e_update_rdt_wa(rx_ring, i);
David S. Miller823dcd22011-08-20 10:39:12 -0700687 else
Bruce Allanc5083cf2011-12-16 00:45:40 +0000688 writel(i, rx_ring->tail);
Tom Herbert50849d72010-05-05 14:02:49 +0000689 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700690 i++;
691 if (i == rx_ring->count)
692 i = 0;
693 buffer_info = &rx_ring->buffer_info[i];
694 }
695
Tom Herbert50849d72010-05-05 14:02:49 +0000696 rx_ring->next_to_use = i;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700697}
698
699/**
700 * e1000_alloc_rx_buffers_ps - Replace used receive buffers; packet split
Bruce Allan55aa6982011-12-16 00:45:45 +0000701 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -0700702 **/
Bruce Allan55aa6982011-12-16 00:45:45 +0000703static void e1000_alloc_rx_buffers_ps(struct e1000_ring *rx_ring,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000704 int cleaned_count, gfp_t gfp)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700705{
Bruce Allan55aa6982011-12-16 00:45:45 +0000706 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700707 struct net_device *netdev = adapter->netdev;
708 struct pci_dev *pdev = adapter->pdev;
709 union e1000_rx_desc_packet_split *rx_desc;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700710 struct e1000_buffer *buffer_info;
711 struct e1000_ps_page *ps_page;
712 struct sk_buff *skb;
713 unsigned int i, j;
714
715 i = rx_ring->next_to_use;
716 buffer_info = &rx_ring->buffer_info[i];
717
718 while (cleaned_count--) {
719 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
720
721 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -0700722 ps_page = &buffer_info->ps_pages[j];
723 if (j >= adapter->rx_ps_pages) {
724 /* all unused desc entries get hw null ptr */
Bruce Allanaf667a22010-12-31 06:10:01 +0000725 rx_desc->read.buffer_addr[j + 1] =
726 ~cpu_to_le64(0);
Auke Kok47f44e42007-10-25 13:57:44 -0700727 continue;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700728 }
Auke Kok47f44e42007-10-25 13:57:44 -0700729 if (!ps_page->page) {
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000730 ps_page->page = alloc_page(gfp);
Auke Kok47f44e42007-10-25 13:57:44 -0700731 if (!ps_page->page) {
732 adapter->alloc_rx_buff_failed++;
733 goto no_buffers;
734 }
Nick Nunley0be3f552010-04-27 13:09:05 +0000735 ps_page->dma = dma_map_page(&pdev->dev,
736 ps_page->page,
737 0, PAGE_SIZE,
738 DMA_FROM_DEVICE);
739 if (dma_mapping_error(&pdev->dev,
740 ps_page->dma)) {
Auke Kok47f44e42007-10-25 13:57:44 -0700741 dev_err(&adapter->pdev->dev,
Bruce Allanaf667a22010-12-31 06:10:01 +0000742 "Rx DMA page map failed\n");
Auke Kok47f44e42007-10-25 13:57:44 -0700743 adapter->rx_dma_failed++;
744 goto no_buffers;
745 }
746 }
Bruce Allane921eb12012-11-28 09:28:37 +0000747 /* Refresh the desc even if buffer_addrs
Auke Kok47f44e42007-10-25 13:57:44 -0700748 * didn't change because each write-back
749 * erases this info.
750 */
Bruce Allanaf667a22010-12-31 06:10:01 +0000751 rx_desc->read.buffer_addr[j + 1] =
752 cpu_to_le64(ps_page->dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700753 }
754
Bruce Allane5fe2542013-02-20 04:06:27 +0000755 skb = __netdev_alloc_skb_ip_align(netdev, adapter->rx_ps_bsize0,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000756 gfp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700757
758 if (!skb) {
759 adapter->alloc_rx_buff_failed++;
760 break;
761 }
762
Auke Kokbc7f75f2007-09-17 12:30:59 -0700763 buffer_info->skb = skb;
Nick Nunley0be3f552010-04-27 13:09:05 +0000764 buffer_info->dma = dma_map_single(&pdev->dev, skb->data,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700765 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +0000766 DMA_FROM_DEVICE);
767 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Bruce Allanaf667a22010-12-31 06:10:01 +0000768 dev_err(&pdev->dev, "Rx DMA map failed\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700769 adapter->rx_dma_failed++;
770 /* cleanup skb */
771 dev_kfree_skb_any(skb);
772 buffer_info->skb = NULL;
773 break;
774 }
775
776 rx_desc->read.buffer_addr[0] = cpu_to_le64(buffer_info->dma);
777
Tom Herbert50849d72010-05-05 14:02:49 +0000778 if (unlikely(!(i & (E1000_RX_BUFFER_WRITE - 1)))) {
Bruce Allane921eb12012-11-28 09:28:37 +0000779 /* Force memory writes to complete before letting h/w
Tom Herbert50849d72010-05-05 14:02:49 +0000780 * know there are new descriptors to fetch. (Only
781 * applicable for weak-ordered memory model archs,
782 * such as IA-64).
783 */
784 wmb();
David S. Miller823dcd22011-08-20 10:39:12 -0700785 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allan55aa6982011-12-16 00:45:45 +0000786 e1000e_update_rdt_wa(rx_ring, i << 1);
David S. Miller823dcd22011-08-20 10:39:12 -0700787 else
Bruce Allanc5083cf2011-12-16 00:45:40 +0000788 writel(i << 1, rx_ring->tail);
Tom Herbert50849d72010-05-05 14:02:49 +0000789 }
790
Auke Kokbc7f75f2007-09-17 12:30:59 -0700791 i++;
792 if (i == rx_ring->count)
793 i = 0;
794 buffer_info = &rx_ring->buffer_info[i];
795 }
796
797no_buffers:
Tom Herbert50849d72010-05-05 14:02:49 +0000798 rx_ring->next_to_use = i;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700799}
800
801/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700802 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
Bruce Allan55aa6982011-12-16 00:45:45 +0000803 * @rx_ring: Rx descriptor ring
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700804 * @cleaned_count: number of buffers to allocate this pass
805 **/
806
Bruce Allan55aa6982011-12-16 00:45:45 +0000807static void e1000_alloc_jumbo_rx_buffers(struct e1000_ring *rx_ring,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000808 int cleaned_count, gfp_t gfp)
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700809{
Bruce Allan55aa6982011-12-16 00:45:45 +0000810 struct e1000_adapter *adapter = rx_ring->adapter;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700811 struct net_device *netdev = adapter->netdev;
812 struct pci_dev *pdev = adapter->pdev;
Bruce Allan5f450212011-07-22 06:21:46 +0000813 union e1000_rx_desc_extended *rx_desc;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700814 struct e1000_buffer *buffer_info;
815 struct sk_buff *skb;
816 unsigned int i;
Bruce Allan2a2293b2012-12-05 06:26:35 +0000817 unsigned int bufsz = 256 - 16; /* for skb_reserve */
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700818
819 i = rx_ring->next_to_use;
820 buffer_info = &rx_ring->buffer_info[i];
821
822 while (cleaned_count--) {
823 skb = buffer_info->skb;
824 if (skb) {
825 skb_trim(skb, 0);
826 goto check_page;
827 }
828
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000829 skb = __netdev_alloc_skb_ip_align(netdev, bufsz, gfp);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700830 if (unlikely(!skb)) {
831 /* Better luck next round */
832 adapter->alloc_rx_buff_failed++;
833 break;
834 }
835
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700836 buffer_info->skb = skb;
837check_page:
838 /* allocate a new page if necessary */
839 if (!buffer_info->page) {
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000840 buffer_info->page = alloc_page(gfp);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700841 if (unlikely(!buffer_info->page)) {
842 adapter->alloc_rx_buff_failed++;
843 break;
844 }
845 }
846
Christoph Paasch37287fae2013-03-20 08:59:46 +0000847 if (!buffer_info->dma) {
Nick Nunley0be3f552010-04-27 13:09:05 +0000848 buffer_info->dma = dma_map_page(&pdev->dev,
Bruce Allanf0ff4392013-02-20 04:05:39 +0000849 buffer_info->page, 0,
850 PAGE_SIZE,
Nick Nunley0be3f552010-04-27 13:09:05 +0000851 DMA_FROM_DEVICE);
Christoph Paasch37287fae2013-03-20 08:59:46 +0000852 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
853 adapter->alloc_rx_buff_failed++;
854 break;
855 }
856 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700857
Bruce Allan5f450212011-07-22 06:21:46 +0000858 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
859 rx_desc->read.buffer_addr = cpu_to_le64(buffer_info->dma);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700860
861 if (unlikely(++i == rx_ring->count))
862 i = 0;
863 buffer_info = &rx_ring->buffer_info[i];
864 }
865
866 if (likely(rx_ring->next_to_use != i)) {
867 rx_ring->next_to_use = i;
868 if (unlikely(i-- == 0))
869 i = (rx_ring->count - 1);
870
871 /* Force memory writes to complete before letting h/w
872 * know there are new descriptors to fetch. (Only
873 * applicable for weak-ordered memory model archs,
Bruce Allane921eb12012-11-28 09:28:37 +0000874 * such as IA-64).
875 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700876 wmb();
David S. Miller823dcd22011-08-20 10:39:12 -0700877 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allan55aa6982011-12-16 00:45:45 +0000878 e1000e_update_rdt_wa(rx_ring, i);
David S. Miller823dcd22011-08-20 10:39:12 -0700879 else
Bruce Allanc5083cf2011-12-16 00:45:40 +0000880 writel(i, rx_ring->tail);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700881 }
882}
883
Bruce Allan70495a52012-01-11 01:26:50 +0000884static inline void e1000_rx_hash(struct net_device *netdev, __le32 rss,
885 struct sk_buff *skb)
886{
887 if (netdev->features & NETIF_F_RXHASH)
888 skb->rxhash = le32_to_cpu(rss);
889}
890
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700891/**
Bruce Allan55aa6982011-12-16 00:45:45 +0000892 * e1000_clean_rx_irq - Send received data up the network stack
893 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -0700894 *
895 * the return value indicates whether actual cleaning was done, there
896 * is no guarantee that everything was cleaned
897 **/
Bruce Allan55aa6982011-12-16 00:45:45 +0000898static bool e1000_clean_rx_irq(struct e1000_ring *rx_ring, int *work_done,
899 int work_to_do)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700900{
Bruce Allan55aa6982011-12-16 00:45:45 +0000901 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700902 struct net_device *netdev = adapter->netdev;
903 struct pci_dev *pdev = adapter->pdev;
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000904 struct e1000_hw *hw = &adapter->hw;
Bruce Allan5f450212011-07-22 06:21:46 +0000905 union e1000_rx_desc_extended *rx_desc, *next_rxd;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700906 struct e1000_buffer *buffer_info, *next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +0000907 u32 length, staterr;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700908 unsigned int i;
909 int cleaned_count = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +0000910 bool cleaned = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700911 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
912
913 i = rx_ring->next_to_clean;
Bruce Allan5f450212011-07-22 06:21:46 +0000914 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
915 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700916 buffer_info = &rx_ring->buffer_info[i];
917
Bruce Allan5f450212011-07-22 06:21:46 +0000918 while (staterr & E1000_RXD_STAT_DD) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700919 struct sk_buff *skb;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700920
921 if (*work_done >= work_to_do)
922 break;
923 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +0000924 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700925
Auke Kokbc7f75f2007-09-17 12:30:59 -0700926 skb = buffer_info->skb;
927 buffer_info->skb = NULL;
928
929 prefetch(skb->data - NET_IP_ALIGN);
930
931 i++;
932 if (i == rx_ring->count)
933 i = 0;
Bruce Allan5f450212011-07-22 06:21:46 +0000934 next_rxd = E1000_RX_DESC_EXT(*rx_ring, i);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700935 prefetch(next_rxd);
936
937 next_buffer = &rx_ring->buffer_info[i];
938
Rusty Russell3db1cd52011-12-19 13:56:45 +0000939 cleaned = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700940 cleaned_count++;
Bruce Allane5fe2542013-02-20 04:06:27 +0000941 dma_unmap_single(&pdev->dev, buffer_info->dma,
942 adapter->rx_buffer_len, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700943 buffer_info->dma = 0;
944
Bruce Allan5f450212011-07-22 06:21:46 +0000945 length = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700946
Bruce Allane921eb12012-11-28 09:28:37 +0000947 /* !EOP means multiple descriptors were used to store a single
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000948 * packet, if that's the case we need to toss it. In fact, we
949 * need to toss every packet with the EOP bit clear and the
950 * next frame that _does_ have the EOP bit set, as it is by
951 * definition only a frame fragment
952 */
Bruce Allan5f450212011-07-22 06:21:46 +0000953 if (unlikely(!(staterr & E1000_RXD_STAT_EOP)))
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000954 adapter->flags2 |= FLAG2_IS_DISCARDING;
955
956 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700957 /* All receives must fit into a single buffer */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000958 e_dbg("Receive packet consumed multiple buffers\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700959 /* recycle */
960 buffer_info->skb = skb;
Bruce Allan5f450212011-07-22 06:21:46 +0000961 if (staterr & E1000_RXD_STAT_EOP)
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000962 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700963 goto next_desc;
964 }
965
Ben Greearcf955e62012-02-11 15:39:51 +0000966 if (unlikely((staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) &&
967 !(netdev->features & NETIF_F_RXALL))) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700968 /* recycle */
969 buffer_info->skb = skb;
970 goto next_desc;
971 }
972
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000973 /* adjust length to remove Ethernet CRC */
Ben Greear01840392012-02-11 15:39:25 +0000974 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING)) {
975 /* If configured to store CRC, don't subtract FCS,
976 * but keep the FCS bytes out of the total_rx_bytes
977 * counter
978 */
979 if (netdev->features & NETIF_F_RXFCS)
980 total_rx_bytes -= 4;
981 else
982 length -= 4;
983 }
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000984
Auke Kokbc7f75f2007-09-17 12:30:59 -0700985 total_rx_bytes += length;
986 total_rx_packets++;
987
Bruce Allane921eb12012-11-28 09:28:37 +0000988 /* code added for copybreak, this should improve
Auke Kokbc7f75f2007-09-17 12:30:59 -0700989 * performance for small packets with large amounts
Bruce Allanad680762008-03-28 09:15:03 -0700990 * of reassembly being done in the stack
991 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700992 if (length < copybreak) {
993 struct sk_buff *new_skb =
Eric Dumazet89d71a62009-10-13 05:34:20 +0000994 netdev_alloc_skb_ip_align(netdev, length);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700995 if (new_skb) {
Bruce Allan808ff672008-08-08 18:35:56 -0700996 skb_copy_to_linear_data_offset(new_skb,
997 -NET_IP_ALIGN,
998 (skb->data -
999 NET_IP_ALIGN),
1000 (length +
1001 NET_IP_ALIGN));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001002 /* save the skb in buffer_info as good */
1003 buffer_info->skb = skb;
1004 skb = new_skb;
1005 }
1006 /* else just continue with the old one */
1007 }
1008 /* end copybreak code */
1009 skb_put(skb, length);
1010
1011 /* Receive Checksum Offload */
Bruce Allan2e1706f2012-06-30 20:02:42 +00001012 e1000_rx_checksum(adapter, staterr, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001013
Bruce Allan70495a52012-01-11 01:26:50 +00001014 e1000_rx_hash(netdev, rx_desc->wb.lower.hi_dword.rss, skb);
1015
Bruce Allan5f450212011-07-22 06:21:46 +00001016 e1000_receive_skb(adapter, netdev, skb, staterr,
1017 rx_desc->wb.upper.vlan);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001018
1019next_desc:
Bruce Allan5f450212011-07-22 06:21:46 +00001020 rx_desc->wb.upper.status_error &= cpu_to_le32(~0xFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001021
1022 /* return some buffers to hardware, one at a time is too slow */
1023 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
Bruce Allan55aa6982011-12-16 00:45:45 +00001024 adapter->alloc_rx_buf(rx_ring, cleaned_count,
Jeff Kirsherc2fed992011-07-12 16:10:12 +00001025 GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001026 cleaned_count = 0;
1027 }
1028
1029 /* use prefetched values */
1030 rx_desc = next_rxd;
1031 buffer_info = next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +00001032
1033 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001034 }
1035 rx_ring->next_to_clean = i;
1036
1037 cleaned_count = e1000_desc_unused(rx_ring);
1038 if (cleaned_count)
Bruce Allan55aa6982011-12-16 00:45:45 +00001039 adapter->alloc_rx_buf(rx_ring, cleaned_count, GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001040
Auke Kokbc7f75f2007-09-17 12:30:59 -07001041 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -07001042 adapter->total_rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001043 return cleaned;
1044}
1045
Bruce Allan55aa6982011-12-16 00:45:45 +00001046static void e1000_put_txbuf(struct e1000_ring *tx_ring,
1047 struct e1000_buffer *buffer_info)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001048{
Bruce Allan55aa6982011-12-16 00:45:45 +00001049 struct e1000_adapter *adapter = tx_ring->adapter;
1050
Alexander Duyck03b13202009-12-02 16:45:31 +00001051 if (buffer_info->dma) {
1052 if (buffer_info->mapped_as_page)
Nick Nunley0be3f552010-04-27 13:09:05 +00001053 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
1054 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00001055 else
Nick Nunley0be3f552010-04-27 13:09:05 +00001056 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
1057 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00001058 buffer_info->dma = 0;
1059 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001060 if (buffer_info->skb) {
1061 dev_kfree_skb_any(buffer_info->skb);
1062 buffer_info->skb = NULL;
1063 }
Alexander Duyck1b7719c2009-03-19 01:12:50 +00001064 buffer_info->time_stamp = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001065}
1066
Bruce Allan41cec6f2009-11-20 23:28:56 +00001067static void e1000_print_hw_hang(struct work_struct *work)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001068{
Bruce Allan41cec6f2009-11-20 23:28:56 +00001069 struct e1000_adapter *adapter = container_of(work,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001070 struct e1000_adapter,
1071 print_hang_task);
Jeff Kirsher09357b02011-11-18 14:25:00 +00001072 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001073 struct e1000_ring *tx_ring = adapter->tx_ring;
1074 unsigned int i = tx_ring->next_to_clean;
1075 unsigned int eop = tx_ring->buffer_info[i].next_to_watch;
1076 struct e1000_tx_desc *eop_desc = E1000_TX_DESC(*tx_ring, eop);
Bruce Allan41cec6f2009-11-20 23:28:56 +00001077 struct e1000_hw *hw = &adapter->hw;
1078 u16 phy_status, phy_1000t_status, phy_ext_status;
1079 u16 pci_status;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001080
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00001081 if (test_bit(__E1000_DOWN, &adapter->state))
1082 return;
1083
Bruce Allane5fe2542013-02-20 04:06:27 +00001084 if (!adapter->tx_hang_recheck && (adapter->flags2 & FLAG2_DMA_BURST)) {
Bruce Allane921eb12012-11-28 09:28:37 +00001085 /* May be block on write-back, flush and detect again
Jeff Kirsher09357b02011-11-18 14:25:00 +00001086 * flush pending descriptor writebacks to memory
1087 */
1088 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
1089 /* execute the writes immediately */
1090 e1e_flush();
Bruce Allane921eb12012-11-28 09:28:37 +00001091 /* Due to rare timing issues, write to TIDV again to ensure
Matthew Vickbf030852012-03-16 09:03:00 +00001092 * the write is successful
1093 */
1094 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
1095 /* execute the writes immediately */
1096 e1e_flush();
Jeff Kirsher09357b02011-11-18 14:25:00 +00001097 adapter->tx_hang_recheck = true;
1098 return;
1099 }
1100 /* Real hang detected */
1101 adapter->tx_hang_recheck = false;
1102 netif_stop_queue(netdev);
1103
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001104 e1e_rphy(hw, MII_BMSR, &phy_status);
1105 e1e_rphy(hw, MII_STAT1000, &phy_1000t_status);
1106 e1e_rphy(hw, MII_ESTATUS, &phy_ext_status);
Bruce Allan41cec6f2009-11-20 23:28:56 +00001107
1108 pci_read_config_word(adapter->pdev, PCI_STATUS, &pci_status);
1109
1110 /* detected Hardware unit hang */
1111 e_err("Detected Hardware Unit Hang:\n"
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001112 " TDH <%x>\n"
1113 " TDT <%x>\n"
1114 " next_to_use <%x>\n"
1115 " next_to_clean <%x>\n"
1116 "buffer_info[next_to_clean]:\n"
1117 " time_stamp <%lx>\n"
1118 " next_to_watch <%x>\n"
1119 " jiffies <%lx>\n"
Bruce Allan41cec6f2009-11-20 23:28:56 +00001120 " next_to_watch.status <%x>\n"
1121 "MAC Status <%x>\n"
1122 "PHY Status <%x>\n"
1123 "PHY 1000BASE-T Status <%x>\n"
1124 "PHY Extended Status <%x>\n"
1125 "PCI Status <%x>\n",
Bruce Allane5fe2542013-02-20 04:06:27 +00001126 readl(tx_ring->head), readl(tx_ring->tail), tx_ring->next_to_use,
1127 tx_ring->next_to_clean, tx_ring->buffer_info[eop].time_stamp,
1128 eop, jiffies, eop_desc->upper.fields.status, er32(STATUS),
1129 phy_status, phy_1000t_status, phy_ext_status, pci_status);
Bruce Allan7c0427e2012-03-20 03:48:08 +00001130
1131 /* Suggest workaround for known h/w issue */
1132 if ((hw->mac.type == e1000_pchlan) && (er32(CTRL) & E1000_CTRL_TFCE))
1133 e_err("Try turning off Tx pause (flow control) via ethtool\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001134}
1135
1136/**
Bruce Allanb67e1912012-12-27 08:32:33 +00001137 * e1000e_tx_hwtstamp_work - check for Tx time stamp
1138 * @work: pointer to work struct
1139 *
1140 * This work function polls the TSYNCTXCTL valid bit to determine when a
1141 * timestamp has been taken for the current stored skb. The timestamp must
1142 * be for this skb because only one such packet is allowed in the queue.
1143 */
1144static void e1000e_tx_hwtstamp_work(struct work_struct *work)
1145{
1146 struct e1000_adapter *adapter = container_of(work, struct e1000_adapter,
1147 tx_hwtstamp_work);
1148 struct e1000_hw *hw = &adapter->hw;
1149
1150 if (!adapter->tx_hwtstamp_skb)
1151 return;
1152
1153 if (er32(TSYNCTXCTL) & E1000_TSYNCTXCTL_VALID) {
1154 struct skb_shared_hwtstamps shhwtstamps;
1155 u64 txstmp;
1156
1157 txstmp = er32(TXSTMPL);
1158 txstmp |= (u64)er32(TXSTMPH) << 32;
1159
1160 e1000e_systim_to_hwtstamp(adapter, &shhwtstamps, txstmp);
1161
1162 skb_tstamp_tx(adapter->tx_hwtstamp_skb, &shhwtstamps);
1163 dev_kfree_skb_any(adapter->tx_hwtstamp_skb);
1164 adapter->tx_hwtstamp_skb = NULL;
1165 } else {
1166 /* reschedule to check later */
1167 schedule_work(&adapter->tx_hwtstamp_work);
1168 }
1169}
1170
1171/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001172 * e1000_clean_tx_irq - Reclaim resources after transmit completes
Bruce Allan55aa6982011-12-16 00:45:45 +00001173 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07001174 *
1175 * the return value indicates whether actual cleaning was done, there
1176 * is no guarantee that everything was cleaned
1177 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001178static bool e1000_clean_tx_irq(struct e1000_ring *tx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001179{
Bruce Allan55aa6982011-12-16 00:45:45 +00001180 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001181 struct net_device *netdev = adapter->netdev;
1182 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001183 struct e1000_tx_desc *tx_desc, *eop_desc;
1184 struct e1000_buffer *buffer_info;
1185 unsigned int i, eop;
1186 unsigned int count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001187 unsigned int total_tx_bytes = 0, total_tx_packets = 0;
Tom Herbert3f0cfa32011-11-28 16:33:16 +00001188 unsigned int bytes_compl = 0, pkts_compl = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001189
1190 i = tx_ring->next_to_clean;
1191 eop = tx_ring->buffer_info[i].next_to_watch;
1192 eop_desc = E1000_TX_DESC(*tx_ring, eop);
1193
Alexander Duyck12d04a32009-03-25 22:05:03 +00001194 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
1195 (count < tx_ring->count)) {
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001196 bool cleaned = false;
Bruce Allane80bd1d2013-05-01 01:19:46 +00001197 rmb(); /* read buffer_info after eop_desc */
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001198 for (; !cleaned; count++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001199 tx_desc = E1000_TX_DESC(*tx_ring, i);
1200 buffer_info = &tx_ring->buffer_info[i];
1201 cleaned = (i == eop);
1202
1203 if (cleaned) {
Tom Herbert9ed318d2010-05-05 14:02:27 +00001204 total_tx_packets += buffer_info->segs;
1205 total_tx_bytes += buffer_info->bytecount;
Tom Herbert3f0cfa32011-11-28 16:33:16 +00001206 if (buffer_info->skb) {
1207 bytes_compl += buffer_info->skb->len;
1208 pkts_compl++;
1209 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001210 }
1211
Bruce Allan55aa6982011-12-16 00:45:45 +00001212 e1000_put_txbuf(tx_ring, buffer_info);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001213 tx_desc->upper.data = 0;
1214
1215 i++;
1216 if (i == tx_ring->count)
1217 i = 0;
1218 }
1219
Terry Loftindac87612010-04-09 10:29:49 +00001220 if (i == tx_ring->next_to_use)
1221 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001222 eop = tx_ring->buffer_info[i].next_to_watch;
1223 eop_desc = E1000_TX_DESC(*tx_ring, eop);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001224 }
1225
1226 tx_ring->next_to_clean = i;
1227
Tom Herbert3f0cfa32011-11-28 16:33:16 +00001228 netdev_completed_queue(netdev, pkts_compl, bytes_compl);
1229
Auke Kokbc7f75f2007-09-17 12:30:59 -07001230#define TX_WAKE_THRESHOLD 32
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001231 if (count && netif_carrier_ok(netdev) &&
1232 e1000_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001233 /* Make sure that anybody stopping the queue after this
1234 * sees the new next_to_clean.
1235 */
1236 smp_mb();
1237
1238 if (netif_queue_stopped(netdev) &&
1239 !(test_bit(__E1000_DOWN, &adapter->state))) {
1240 netif_wake_queue(netdev);
1241 ++adapter->restart_queue;
1242 }
1243 }
1244
1245 if (adapter->detect_tx_hung) {
Bruce Allane921eb12012-11-28 09:28:37 +00001246 /* Detect a transmit hang in hardware, this serializes the
Bruce Allan41cec6f2009-11-20 23:28:56 +00001247 * check with the clearing of time_stamp and movement of i
1248 */
Rusty Russell3db1cd52011-12-19 13:56:45 +00001249 adapter->detect_tx_hung = false;
Alexander Duyck12d04a32009-03-25 22:05:03 +00001250 if (tx_ring->buffer_info[i].time_stamp &&
1251 time_after(jiffies, tx_ring->buffer_info[i].time_stamp
Joe Perches8e95a202009-12-03 07:58:21 +00001252 + (adapter->tx_timeout_factor * HZ)) &&
Jeff Kirsher09357b02011-11-18 14:25:00 +00001253 !(er32(STATUS) & E1000_STATUS_TXOFF))
Bruce Allan41cec6f2009-11-20 23:28:56 +00001254 schedule_work(&adapter->print_hang_task);
Jeff Kirsher09357b02011-11-18 14:25:00 +00001255 else
1256 adapter->tx_hang_recheck = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001257 }
1258 adapter->total_tx_bytes += total_tx_bytes;
1259 adapter->total_tx_packets += total_tx_packets;
Eric Dumazet807540b2010-09-23 05:40:09 +00001260 return count < tx_ring->count;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001261}
1262
1263/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001264 * e1000_clean_rx_irq_ps - Send received data up the network stack; packet split
Bruce Allan55aa6982011-12-16 00:45:45 +00001265 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07001266 *
1267 * the return value indicates whether actual cleaning was done, there
1268 * is no guarantee that everything was cleaned
1269 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001270static bool e1000_clean_rx_irq_ps(struct e1000_ring *rx_ring, int *work_done,
1271 int work_to_do)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001272{
Bruce Allan55aa6982011-12-16 00:45:45 +00001273 struct e1000_adapter *adapter = rx_ring->adapter;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001274 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001275 union e1000_rx_desc_packet_split *rx_desc, *next_rxd;
1276 struct net_device *netdev = adapter->netdev;
1277 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001278 struct e1000_buffer *buffer_info, *next_buffer;
1279 struct e1000_ps_page *ps_page;
1280 struct sk_buff *skb;
1281 unsigned int i, j;
1282 u32 length, staterr;
1283 int cleaned_count = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001284 bool cleaned = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001285 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
1286
1287 i = rx_ring->next_to_clean;
1288 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
1289 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1290 buffer_info = &rx_ring->buffer_info[i];
1291
1292 while (staterr & E1000_RXD_STAT_DD) {
1293 if (*work_done >= work_to_do)
1294 break;
1295 (*work_done)++;
1296 skb = buffer_info->skb;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00001297 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001298
1299 /* in the packet split case this is header only */
1300 prefetch(skb->data - NET_IP_ALIGN);
1301
1302 i++;
1303 if (i == rx_ring->count)
1304 i = 0;
1305 next_rxd = E1000_RX_DESC_PS(*rx_ring, i);
1306 prefetch(next_rxd);
1307
1308 next_buffer = &rx_ring->buffer_info[i];
1309
Rusty Russell3db1cd52011-12-19 13:56:45 +00001310 cleaned = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001311 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001312 dma_unmap_single(&pdev->dev, buffer_info->dma,
Bruce Allanaf667a22010-12-31 06:10:01 +00001313 adapter->rx_ps_bsize0, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001314 buffer_info->dma = 0;
1315
Bruce Allanaf667a22010-12-31 06:10:01 +00001316 /* see !EOP comment in other Rx routine */
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001317 if (!(staterr & E1000_RXD_STAT_EOP))
1318 adapter->flags2 |= FLAG2_IS_DISCARDING;
1319
1320 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Jeff Kirsheref456f82011-11-03 11:40:28 +00001321 e_dbg("Packet Split buffers didn't pick up the full packet\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001322 dev_kfree_skb_irq(skb);
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001323 if (staterr & E1000_RXD_STAT_EOP)
1324 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001325 goto next_desc;
1326 }
1327
Ben Greearcf955e62012-02-11 15:39:51 +00001328 if (unlikely((staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) &&
1329 !(netdev->features & NETIF_F_RXALL))) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001330 dev_kfree_skb_irq(skb);
1331 goto next_desc;
1332 }
1333
1334 length = le16_to_cpu(rx_desc->wb.middle.length0);
1335
1336 if (!length) {
Jeff Kirsheref456f82011-11-03 11:40:28 +00001337 e_dbg("Last part of the packet spanning multiple descriptors\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001338 dev_kfree_skb_irq(skb);
1339 goto next_desc;
1340 }
1341
1342 /* Good Receive */
1343 skb_put(skb, length);
1344
1345 {
Bruce Allane921eb12012-11-28 09:28:37 +00001346 /* this looks ugly, but it seems compiler issues make
Bruce Allan0e15df42012-01-31 06:37:11 +00001347 * it more efficient than reusing j
1348 */
1349 int l1 = le16_to_cpu(rx_desc->wb.upper.length[0]);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001350
Bruce Allane921eb12012-11-28 09:28:37 +00001351 /* page alloc/put takes too long and effects small
Bruce Allan0e15df42012-01-31 06:37:11 +00001352 * packet throughput, so unsplit small packets and
1353 * save the alloc/put only valid in softirq (napi)
1354 * context to call kmap_*
Bruce Allanad680762008-03-28 09:15:03 -07001355 */
Bruce Allan0e15df42012-01-31 06:37:11 +00001356 if (l1 && (l1 <= copybreak) &&
1357 ((length + l1) <= adapter->rx_ps_bsize0)) {
1358 u8 *vaddr;
Auke Kok140a7482007-10-25 13:57:58 -07001359
Bruce Allan0e15df42012-01-31 06:37:11 +00001360 ps_page = &buffer_info->ps_pages[0];
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001361
Bruce Allane921eb12012-11-28 09:28:37 +00001362 /* there is no documentation about how to call
Bruce Allan0e15df42012-01-31 06:37:11 +00001363 * kmap_atomic, so we can't hold the mapping
1364 * very long
1365 */
1366 dma_sync_single_for_cpu(&pdev->dev,
1367 ps_page->dma,
1368 PAGE_SIZE,
1369 DMA_FROM_DEVICE);
Linus Torvalds9f393832012-03-21 09:40:26 -07001370 vaddr = kmap_atomic(ps_page->page);
Bruce Allan0e15df42012-01-31 06:37:11 +00001371 memcpy(skb_tail_pointer(skb), vaddr, l1);
Linus Torvalds9f393832012-03-21 09:40:26 -07001372 kunmap_atomic(vaddr);
Bruce Allan0e15df42012-01-31 06:37:11 +00001373 dma_sync_single_for_device(&pdev->dev,
1374 ps_page->dma,
1375 PAGE_SIZE,
1376 DMA_FROM_DEVICE);
1377
1378 /* remove the CRC */
Ben Greear01840392012-02-11 15:39:25 +00001379 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING)) {
1380 if (!(netdev->features & NETIF_F_RXFCS))
1381 l1 -= 4;
1382 }
Bruce Allan0e15df42012-01-31 06:37:11 +00001383
1384 skb_put(skb, l1);
1385 goto copydone;
Bruce Allane80bd1d2013-05-01 01:19:46 +00001386 } /* if */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001387 }
1388
1389 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
1390 length = le16_to_cpu(rx_desc->wb.upper.length[j]);
1391 if (!length)
1392 break;
1393
Auke Kok47f44e42007-10-25 13:57:44 -07001394 ps_page = &buffer_info->ps_pages[j];
Nick Nunley0be3f552010-04-27 13:09:05 +00001395 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1396 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001397 ps_page->dma = 0;
1398 skb_fill_page_desc(skb, j, ps_page->page, 0, length);
1399 ps_page->page = NULL;
1400 skb->len += length;
1401 skb->data_len += length;
Eric Dumazet98a045d2011-10-13 08:03:36 +00001402 skb->truesize += PAGE_SIZE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001403 }
1404
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001405 /* strip the ethernet crc, problem is we're using pages now so
1406 * this whole operation can get a little cpu intensive
1407 */
Ben Greear01840392012-02-11 15:39:25 +00001408 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING)) {
1409 if (!(netdev->features & NETIF_F_RXFCS))
1410 pskb_trim(skb, skb->len - 4);
1411 }
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001412
Auke Kokbc7f75f2007-09-17 12:30:59 -07001413copydone:
1414 total_rx_bytes += skb->len;
1415 total_rx_packets++;
1416
Bruce Allan2e1706f2012-06-30 20:02:42 +00001417 e1000_rx_checksum(adapter, staterr, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001418
Bruce Allan70495a52012-01-11 01:26:50 +00001419 e1000_rx_hash(netdev, rx_desc->wb.lower.hi_dword.rss, skb);
1420
Auke Kokbc7f75f2007-09-17 12:30:59 -07001421 if (rx_desc->wb.upper.header_status &
Bruce Allan17e813e2013-02-20 04:06:01 +00001422 cpu_to_le16(E1000_RXDPS_HDRSTAT_HDRSP))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001423 adapter->rx_hdr_split++;
1424
Bruce Allanb67e1912012-12-27 08:32:33 +00001425 e1000_receive_skb(adapter, netdev, skb, staterr,
1426 rx_desc->wb.middle.vlan);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001427
1428next_desc:
1429 rx_desc->wb.middle.status_error &= cpu_to_le32(~0xFF);
1430 buffer_info->skb = NULL;
1431
1432 /* return some buffers to hardware, one at a time is too slow */
1433 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
Bruce Allan55aa6982011-12-16 00:45:45 +00001434 adapter->alloc_rx_buf(rx_ring, cleaned_count,
Jeff Kirsherc2fed992011-07-12 16:10:12 +00001435 GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001436 cleaned_count = 0;
1437 }
1438
1439 /* use prefetched values */
1440 rx_desc = next_rxd;
1441 buffer_info = next_buffer;
1442
1443 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1444 }
1445 rx_ring->next_to_clean = i;
1446
1447 cleaned_count = e1000_desc_unused(rx_ring);
1448 if (cleaned_count)
Bruce Allan55aa6982011-12-16 00:45:45 +00001449 adapter->alloc_rx_buf(rx_ring, cleaned_count, GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001450
Auke Kokbc7f75f2007-09-17 12:30:59 -07001451 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -07001452 adapter->total_rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001453 return cleaned;
1454}
1455
1456/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001457 * e1000_consume_page - helper function
1458 **/
1459static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
Bruce Allan66501f52013-02-20 04:05:55 +00001460 u16 length)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001461{
1462 bi->page = NULL;
1463 skb->len += length;
1464 skb->data_len += length;
Eric Dumazet98a045d2011-10-13 08:03:36 +00001465 skb->truesize += PAGE_SIZE;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001466}
1467
1468/**
1469 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
1470 * @adapter: board private structure
1471 *
1472 * the return value indicates whether actual cleaning was done, there
1473 * is no guarantee that everything was cleaned
1474 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001475static bool e1000_clean_jumbo_rx_irq(struct e1000_ring *rx_ring, int *work_done,
1476 int work_to_do)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001477{
Bruce Allan55aa6982011-12-16 00:45:45 +00001478 struct e1000_adapter *adapter = rx_ring->adapter;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001479 struct net_device *netdev = adapter->netdev;
1480 struct pci_dev *pdev = adapter->pdev;
Bruce Allan5f450212011-07-22 06:21:46 +00001481 union e1000_rx_desc_extended *rx_desc, *next_rxd;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001482 struct e1000_buffer *buffer_info, *next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +00001483 u32 length, staterr;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001484 unsigned int i;
1485 int cleaned_count = 0;
1486 bool cleaned = false;
Bruce Allan362e20c2013-02-20 04:05:45 +00001487 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Bruce Allan17e813e2013-02-20 04:06:01 +00001488 struct skb_shared_info *shinfo;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001489
1490 i = rx_ring->next_to_clean;
Bruce Allan5f450212011-07-22 06:21:46 +00001491 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
1492 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001493 buffer_info = &rx_ring->buffer_info[i];
1494
Bruce Allan5f450212011-07-22 06:21:46 +00001495 while (staterr & E1000_RXD_STAT_DD) {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001496 struct sk_buff *skb;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001497
1498 if (*work_done >= work_to_do)
1499 break;
1500 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00001501 rmb(); /* read descriptor and rx_buffer_info after status DD */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001502
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001503 skb = buffer_info->skb;
1504 buffer_info->skb = NULL;
1505
1506 ++i;
1507 if (i == rx_ring->count)
1508 i = 0;
Bruce Allan5f450212011-07-22 06:21:46 +00001509 next_rxd = E1000_RX_DESC_EXT(*rx_ring, i);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001510 prefetch(next_rxd);
1511
1512 next_buffer = &rx_ring->buffer_info[i];
1513
1514 cleaned = true;
1515 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001516 dma_unmap_page(&pdev->dev, buffer_info->dma, PAGE_SIZE,
1517 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001518 buffer_info->dma = 0;
1519
Bruce Allan5f450212011-07-22 06:21:46 +00001520 length = le16_to_cpu(rx_desc->wb.upper.length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001521
1522 /* errors is only valid for DD + EOP descriptors */
Bruce Allan5f450212011-07-22 06:21:46 +00001523 if (unlikely((staterr & E1000_RXD_STAT_EOP) &&
Ben Greearcf955e62012-02-11 15:39:51 +00001524 ((staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) &&
1525 !(netdev->features & NETIF_F_RXALL)))) {
Bruce Allan5f450212011-07-22 06:21:46 +00001526 /* recycle both page and skb */
1527 buffer_info->skb = skb;
1528 /* an error means any chain goes out the window too */
1529 if (rx_ring->rx_skb_top)
1530 dev_kfree_skb_irq(rx_ring->rx_skb_top);
1531 rx_ring->rx_skb_top = NULL;
1532 goto next_desc;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001533 }
Bruce Allanf0f1a172010-12-11 05:53:32 +00001534#define rxtop (rx_ring->rx_skb_top)
Bruce Allan5f450212011-07-22 06:21:46 +00001535 if (!(staterr & E1000_RXD_STAT_EOP)) {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001536 /* this descriptor is only the beginning (or middle) */
1537 if (!rxtop) {
1538 /* this is the beginning of a chain */
1539 rxtop = skb;
1540 skb_fill_page_desc(rxtop, 0, buffer_info->page,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001541 0, length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001542 } else {
1543 /* this is the middle of a chain */
Bruce Allan17e813e2013-02-20 04:06:01 +00001544 shinfo = skb_shinfo(rxtop);
1545 skb_fill_page_desc(rxtop, shinfo->nr_frags,
1546 buffer_info->page, 0,
1547 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001548 /* re-use the skb, only consumed the page */
1549 buffer_info->skb = skb;
1550 }
1551 e1000_consume_page(buffer_info, rxtop, length);
1552 goto next_desc;
1553 } else {
1554 if (rxtop) {
1555 /* end of the chain */
Bruce Allan17e813e2013-02-20 04:06:01 +00001556 shinfo = skb_shinfo(rxtop);
1557 skb_fill_page_desc(rxtop, shinfo->nr_frags,
1558 buffer_info->page, 0,
1559 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001560 /* re-use the current skb, we only consumed the
Bruce Allane921eb12012-11-28 09:28:37 +00001561 * page
1562 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001563 buffer_info->skb = skb;
1564 skb = rxtop;
1565 rxtop = NULL;
1566 e1000_consume_page(buffer_info, skb, length);
1567 } else {
1568 /* no chain, got EOP, this buf is the packet
Bruce Allane921eb12012-11-28 09:28:37 +00001569 * copybreak to save the put_page/alloc_page
1570 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001571 if (length <= copybreak &&
1572 skb_tailroom(skb) >= length) {
1573 u8 *vaddr;
Cong Wang46790262011-11-25 23:14:23 +08001574 vaddr = kmap_atomic(buffer_info->page);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001575 memcpy(skb_tail_pointer(skb), vaddr,
1576 length);
Cong Wang46790262011-11-25 23:14:23 +08001577 kunmap_atomic(vaddr);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001578 /* re-use the page, so don't erase
Bruce Allane921eb12012-11-28 09:28:37 +00001579 * buffer_info->page
1580 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001581 skb_put(skb, length);
1582 } else {
1583 skb_fill_page_desc(skb, 0,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001584 buffer_info->page, 0,
1585 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001586 e1000_consume_page(buffer_info, skb,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001587 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001588 }
1589 }
1590 }
1591
Bruce Allan2e1706f2012-06-30 20:02:42 +00001592 /* Receive Checksum Offload */
1593 e1000_rx_checksum(adapter, staterr, skb);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001594
Bruce Allan70495a52012-01-11 01:26:50 +00001595 e1000_rx_hash(netdev, rx_desc->wb.lower.hi_dword.rss, skb);
1596
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001597 /* probably a little skewed due to removing CRC */
1598 total_rx_bytes += skb->len;
1599 total_rx_packets++;
1600
1601 /* eth type trans needs skb->data to point to something */
1602 if (!pskb_may_pull(skb, ETH_HLEN)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001603 e_err("pskb_may_pull failed.\n");
Bruce Allanef5ab892011-02-10 08:17:21 +00001604 dev_kfree_skb_irq(skb);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001605 goto next_desc;
1606 }
1607
Bruce Allan5f450212011-07-22 06:21:46 +00001608 e1000_receive_skb(adapter, netdev, skb, staterr,
1609 rx_desc->wb.upper.vlan);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001610
1611next_desc:
Bruce Allan5f450212011-07-22 06:21:46 +00001612 rx_desc->wb.upper.status_error &= cpu_to_le32(~0xFF);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001613
1614 /* return some buffers to hardware, one at a time is too slow */
1615 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
Bruce Allan55aa6982011-12-16 00:45:45 +00001616 adapter->alloc_rx_buf(rx_ring, cleaned_count,
Jeff Kirsherc2fed992011-07-12 16:10:12 +00001617 GFP_ATOMIC);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001618 cleaned_count = 0;
1619 }
1620
1621 /* use prefetched values */
1622 rx_desc = next_rxd;
1623 buffer_info = next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +00001624
1625 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001626 }
1627 rx_ring->next_to_clean = i;
1628
1629 cleaned_count = e1000_desc_unused(rx_ring);
1630 if (cleaned_count)
Bruce Allan55aa6982011-12-16 00:45:45 +00001631 adapter->alloc_rx_buf(rx_ring, cleaned_count, GFP_ATOMIC);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001632
1633 adapter->total_rx_bytes += total_rx_bytes;
1634 adapter->total_rx_packets += total_rx_packets;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001635 return cleaned;
1636}
1637
1638/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001639 * e1000_clean_rx_ring - Free Rx Buffers per Queue
Bruce Allan55aa6982011-12-16 00:45:45 +00001640 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07001641 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001642static void e1000_clean_rx_ring(struct e1000_ring *rx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001643{
Bruce Allan55aa6982011-12-16 00:45:45 +00001644 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001645 struct e1000_buffer *buffer_info;
1646 struct e1000_ps_page *ps_page;
1647 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001648 unsigned int i, j;
1649
1650 /* Free all the Rx ring sk_buffs */
1651 for (i = 0; i < rx_ring->count; i++) {
1652 buffer_info = &rx_ring->buffer_info[i];
1653 if (buffer_info->dma) {
1654 if (adapter->clean_rx == e1000_clean_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001655 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001656 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +00001657 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001658 else if (adapter->clean_rx == e1000_clean_jumbo_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001659 dma_unmap_page(&pdev->dev, buffer_info->dma,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001660 PAGE_SIZE, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001661 else if (adapter->clean_rx == e1000_clean_rx_irq_ps)
Nick Nunley0be3f552010-04-27 13:09:05 +00001662 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001663 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +00001664 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001665 buffer_info->dma = 0;
1666 }
1667
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001668 if (buffer_info->page) {
1669 put_page(buffer_info->page);
1670 buffer_info->page = NULL;
1671 }
1672
Auke Kokbc7f75f2007-09-17 12:30:59 -07001673 if (buffer_info->skb) {
1674 dev_kfree_skb(buffer_info->skb);
1675 buffer_info->skb = NULL;
1676 }
1677
1678 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -07001679 ps_page = &buffer_info->ps_pages[j];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001680 if (!ps_page->page)
1681 break;
Nick Nunley0be3f552010-04-27 13:09:05 +00001682 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1683 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001684 ps_page->dma = 0;
1685 put_page(ps_page->page);
1686 ps_page->page = NULL;
1687 }
1688 }
1689
1690 /* there also may be some cached data from a chained receive */
1691 if (rx_ring->rx_skb_top) {
1692 dev_kfree_skb(rx_ring->rx_skb_top);
1693 rx_ring->rx_skb_top = NULL;
1694 }
1695
Auke Kokbc7f75f2007-09-17 12:30:59 -07001696 /* Zero out the descriptor ring */
1697 memset(rx_ring->desc, 0, rx_ring->size);
1698
1699 rx_ring->next_to_clean = 0;
1700 rx_ring->next_to_use = 0;
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001701 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001702
Bruce Allanc5083cf2011-12-16 00:45:40 +00001703 writel(0, rx_ring->head);
David Ertmanb485dba2014-01-22 00:21:41 +00001704 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allanbdc125f2012-03-20 03:47:52 +00001705 e1000e_update_rdt_wa(rx_ring, 0);
1706 else
1707 writel(0, rx_ring->tail);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001708}
1709
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001710static void e1000e_downshift_workaround(struct work_struct *work)
1711{
1712 struct e1000_adapter *adapter = container_of(work,
Bruce Allan17e813e2013-02-20 04:06:01 +00001713 struct e1000_adapter,
1714 downshift_task);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001715
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00001716 if (test_bit(__E1000_DOWN, &adapter->state))
1717 return;
1718
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001719 e1000e_gig_downshift_workaround_ich8lan(&adapter->hw);
1720}
1721
Auke Kokbc7f75f2007-09-17 12:30:59 -07001722/**
1723 * e1000_intr_msi - Interrupt Handler
1724 * @irq: interrupt number
1725 * @data: pointer to a network interface device structure
1726 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00001727static irqreturn_t e1000_intr_msi(int __always_unused irq, void *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001728{
1729 struct net_device *netdev = data;
1730 struct e1000_adapter *adapter = netdev_priv(netdev);
1731 struct e1000_hw *hw = &adapter->hw;
1732 u32 icr = er32(ICR);
1733
Bruce Allane921eb12012-11-28 09:28:37 +00001734 /* read ICR disables interrupts using IAM */
dave graham573cca82009-02-10 12:52:05 +00001735 if (icr & E1000_ICR_LSC) {
Bruce Allanf92518d2012-02-01 11:16:42 +00001736 hw->mac.get_link_status = true;
Bruce Allane921eb12012-11-28 09:28:37 +00001737 /* ICH8 workaround-- Call gig speed drop workaround on cable
Bruce Allanad680762008-03-28 09:15:03 -07001738 * disconnect (LSC) before accessing any PHY registers
1739 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001740 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1741 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001742 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001743
Bruce Allane921eb12012-11-28 09:28:37 +00001744 /* 80003ES2LAN workaround-- For packet buffer work-around on
Auke Kokbc7f75f2007-09-17 12:30:59 -07001745 * link down event; disable receives here in the ISR and reset
Bruce Allanad680762008-03-28 09:15:03 -07001746 * adapter in watchdog
1747 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001748 if (netif_carrier_ok(netdev) &&
1749 adapter->flags & FLAG_RX_NEEDS_RESTART) {
1750 /* disable receives */
1751 u32 rctl = er32(RCTL);
1752 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Bruce Allan12d43f72012-12-05 06:26:14 +00001753 adapter->flags |= FLAG_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001754 }
1755 /* guard against interrupt when we're going down */
1756 if (!test_bit(__E1000_DOWN, &adapter->state))
1757 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1758 }
1759
Bruce Allan94fb8482013-01-23 09:00:03 +00001760 /* Reset on uncorrectable ECC error */
1761 if ((icr & E1000_ICR_ECCER) && (hw->mac.type == e1000_pch_lpt)) {
1762 u32 pbeccsts = er32(PBECCSTS);
1763
1764 adapter->corr_errors +=
1765 pbeccsts & E1000_PBECCSTS_CORR_ERR_CNT_MASK;
1766 adapter->uncorr_errors +=
1767 (pbeccsts & E1000_PBECCSTS_UNCORR_ERR_CNT_MASK) >>
1768 E1000_PBECCSTS_UNCORR_ERR_CNT_SHIFT;
1769
1770 /* Do the reset outside of interrupt context */
1771 schedule_work(&adapter->reset_task);
1772
1773 /* return immediately since reset is imminent */
1774 return IRQ_HANDLED;
1775 }
1776
Ben Hutchings288379f2009-01-19 16:43:59 -08001777 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001778 adapter->total_tx_bytes = 0;
1779 adapter->total_tx_packets = 0;
1780 adapter->total_rx_bytes = 0;
1781 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001782 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001783 }
1784
1785 return IRQ_HANDLED;
1786}
1787
1788/**
1789 * e1000_intr - Interrupt Handler
1790 * @irq: interrupt number
1791 * @data: pointer to a network interface device structure
1792 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00001793static irqreturn_t e1000_intr(int __always_unused irq, void *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001794{
1795 struct net_device *netdev = data;
1796 struct e1000_adapter *adapter = netdev_priv(netdev);
1797 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001798 u32 rctl, icr = er32(ICR);
Bruce Allan4662e822008-08-26 18:37:06 -07001799
Bruce Allana68ea772009-11-20 23:23:16 +00001800 if (!icr || test_bit(__E1000_DOWN, &adapter->state))
Bruce Allane80bd1d2013-05-01 01:19:46 +00001801 return IRQ_NONE; /* Not our interrupt */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001802
Bruce Allane921eb12012-11-28 09:28:37 +00001803 /* IMS will not auto-mask if INT_ASSERTED is not set, and if it is
Bruce Allanad680762008-03-28 09:15:03 -07001804 * not set, then the adapter didn't send an interrupt
1805 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001806 if (!(icr & E1000_ICR_INT_ASSERTED))
1807 return IRQ_NONE;
1808
Bruce Allane921eb12012-11-28 09:28:37 +00001809 /* Interrupt Auto-Mask...upon reading ICR,
Bruce Allanad680762008-03-28 09:15:03 -07001810 * interrupts are masked. No need for the
1811 * IMC write
1812 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001813
dave graham573cca82009-02-10 12:52:05 +00001814 if (icr & E1000_ICR_LSC) {
Bruce Allanf92518d2012-02-01 11:16:42 +00001815 hw->mac.get_link_status = true;
Bruce Allane921eb12012-11-28 09:28:37 +00001816 /* ICH8 workaround-- Call gig speed drop workaround on cable
Bruce Allanad680762008-03-28 09:15:03 -07001817 * disconnect (LSC) before accessing any PHY registers
1818 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001819 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1820 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001821 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001822
Bruce Allane921eb12012-11-28 09:28:37 +00001823 /* 80003ES2LAN workaround--
Auke Kokbc7f75f2007-09-17 12:30:59 -07001824 * For packet buffer work-around on link down event;
1825 * disable receives here in the ISR and
1826 * reset adapter in watchdog
1827 */
1828 if (netif_carrier_ok(netdev) &&
1829 (adapter->flags & FLAG_RX_NEEDS_RESTART)) {
1830 /* disable receives */
1831 rctl = er32(RCTL);
1832 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Bruce Allan12d43f72012-12-05 06:26:14 +00001833 adapter->flags |= FLAG_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001834 }
1835 /* guard against interrupt when we're going down */
1836 if (!test_bit(__E1000_DOWN, &adapter->state))
1837 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1838 }
1839
Bruce Allan94fb8482013-01-23 09:00:03 +00001840 /* Reset on uncorrectable ECC error */
1841 if ((icr & E1000_ICR_ECCER) && (hw->mac.type == e1000_pch_lpt)) {
1842 u32 pbeccsts = er32(PBECCSTS);
1843
1844 adapter->corr_errors +=
1845 pbeccsts & E1000_PBECCSTS_CORR_ERR_CNT_MASK;
1846 adapter->uncorr_errors +=
1847 (pbeccsts & E1000_PBECCSTS_UNCORR_ERR_CNT_MASK) >>
1848 E1000_PBECCSTS_UNCORR_ERR_CNT_SHIFT;
1849
1850 /* Do the reset outside of interrupt context */
1851 schedule_work(&adapter->reset_task);
1852
1853 /* return immediately since reset is imminent */
1854 return IRQ_HANDLED;
1855 }
1856
Ben Hutchings288379f2009-01-19 16:43:59 -08001857 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001858 adapter->total_tx_bytes = 0;
1859 adapter->total_tx_packets = 0;
1860 adapter->total_rx_bytes = 0;
1861 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001862 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001863 }
1864
1865 return IRQ_HANDLED;
1866}
1867
Bruce Allan8bb62862013-01-16 08:46:49 +00001868static irqreturn_t e1000_msix_other(int __always_unused irq, void *data)
Bruce Allan4662e822008-08-26 18:37:06 -07001869{
1870 struct net_device *netdev = data;
1871 struct e1000_adapter *adapter = netdev_priv(netdev);
1872 struct e1000_hw *hw = &adapter->hw;
1873 u32 icr = er32(ICR);
1874
1875 if (!(icr & E1000_ICR_INT_ASSERTED)) {
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001876 if (!test_bit(__E1000_DOWN, &adapter->state))
1877 ew32(IMS, E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001878 return IRQ_NONE;
1879 }
1880
1881 if (icr & adapter->eiac_mask)
1882 ew32(ICS, (icr & adapter->eiac_mask));
1883
1884 if (icr & E1000_ICR_OTHER) {
1885 if (!(icr & E1000_ICR_LSC))
1886 goto no_link_interrupt;
Bruce Allanf92518d2012-02-01 11:16:42 +00001887 hw->mac.get_link_status = true;
Bruce Allan4662e822008-08-26 18:37:06 -07001888 /* guard against interrupt when we're going down */
1889 if (!test_bit(__E1000_DOWN, &adapter->state))
1890 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1891 }
1892
1893no_link_interrupt:
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001894 if (!test_bit(__E1000_DOWN, &adapter->state))
1895 ew32(IMS, E1000_IMS_LSC | E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001896
1897 return IRQ_HANDLED;
1898}
1899
Bruce Allan8bb62862013-01-16 08:46:49 +00001900static irqreturn_t e1000_intr_msix_tx(int __always_unused irq, void *data)
Bruce Allan4662e822008-08-26 18:37:06 -07001901{
1902 struct net_device *netdev = data;
1903 struct e1000_adapter *adapter = netdev_priv(netdev);
1904 struct e1000_hw *hw = &adapter->hw;
1905 struct e1000_ring *tx_ring = adapter->tx_ring;
1906
Bruce Allan4662e822008-08-26 18:37:06 -07001907 adapter->total_tx_bytes = 0;
1908 adapter->total_tx_packets = 0;
1909
Bruce Allan55aa6982011-12-16 00:45:45 +00001910 if (!e1000_clean_tx_irq(tx_ring))
Bruce Allan4662e822008-08-26 18:37:06 -07001911 /* Ring was not completely cleaned, so fire another interrupt */
1912 ew32(ICS, tx_ring->ims_val);
1913
1914 return IRQ_HANDLED;
1915}
1916
Bruce Allan8bb62862013-01-16 08:46:49 +00001917static irqreturn_t e1000_intr_msix_rx(int __always_unused irq, void *data)
Bruce Allan4662e822008-08-26 18:37:06 -07001918{
1919 struct net_device *netdev = data;
1920 struct e1000_adapter *adapter = netdev_priv(netdev);
Bruce Allan55aa6982011-12-16 00:45:45 +00001921 struct e1000_ring *rx_ring = adapter->rx_ring;
Bruce Allan4662e822008-08-26 18:37:06 -07001922
1923 /* Write the ITR value calculated at the end of the
1924 * previous interrupt.
1925 */
Bruce Allan55aa6982011-12-16 00:45:45 +00001926 if (rx_ring->set_itr) {
1927 writel(1000000000 / (rx_ring->itr_val * 256),
1928 rx_ring->itr_register);
1929 rx_ring->set_itr = 0;
Bruce Allan4662e822008-08-26 18:37:06 -07001930 }
1931
Ben Hutchings288379f2009-01-19 16:43:59 -08001932 if (napi_schedule_prep(&adapter->napi)) {
Bruce Allan4662e822008-08-26 18:37:06 -07001933 adapter->total_rx_bytes = 0;
1934 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001935 __napi_schedule(&adapter->napi);
Bruce Allan4662e822008-08-26 18:37:06 -07001936 }
1937 return IRQ_HANDLED;
1938}
1939
1940/**
1941 * e1000_configure_msix - Configure MSI-X hardware
1942 *
1943 * e1000_configure_msix sets up the hardware to properly
1944 * generate MSI-X interrupts.
1945 **/
1946static void e1000_configure_msix(struct e1000_adapter *adapter)
1947{
1948 struct e1000_hw *hw = &adapter->hw;
1949 struct e1000_ring *rx_ring = adapter->rx_ring;
1950 struct e1000_ring *tx_ring = adapter->tx_ring;
1951 int vector = 0;
1952 u32 ctrl_ext, ivar = 0;
1953
1954 adapter->eiac_mask = 0;
1955
1956 /* Workaround issue with spurious interrupts on 82574 in MSI-X mode */
1957 if (hw->mac.type == e1000_82574) {
1958 u32 rfctl = er32(RFCTL);
1959 rfctl |= E1000_RFCTL_ACK_DIS;
1960 ew32(RFCTL, rfctl);
1961 }
1962
Bruce Allan4662e822008-08-26 18:37:06 -07001963 /* Configure Rx vector */
1964 rx_ring->ims_val = E1000_IMS_RXQ0;
1965 adapter->eiac_mask |= rx_ring->ims_val;
1966 if (rx_ring->itr_val)
1967 writel(1000000000 / (rx_ring->itr_val * 256),
Bruce Allanc5083cf2011-12-16 00:45:40 +00001968 rx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07001969 else
Bruce Allanc5083cf2011-12-16 00:45:40 +00001970 writel(1, rx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07001971 ivar = E1000_IVAR_INT_ALLOC_VALID | vector;
1972
1973 /* Configure Tx vector */
1974 tx_ring->ims_val = E1000_IMS_TXQ0;
1975 vector++;
1976 if (tx_ring->itr_val)
1977 writel(1000000000 / (tx_ring->itr_val * 256),
Bruce Allanc5083cf2011-12-16 00:45:40 +00001978 tx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07001979 else
Bruce Allanc5083cf2011-12-16 00:45:40 +00001980 writel(1, tx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07001981 adapter->eiac_mask |= tx_ring->ims_val;
1982 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 8);
1983
1984 /* set vector for Other Causes, e.g. link changes */
1985 vector++;
1986 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 16);
1987 if (rx_ring->itr_val)
1988 writel(1000000000 / (rx_ring->itr_val * 256),
1989 hw->hw_addr + E1000_EITR_82574(vector));
1990 else
1991 writel(1, hw->hw_addr + E1000_EITR_82574(vector));
1992
1993 /* Cause Tx interrupts on every write back */
1994 ivar |= (1 << 31);
1995
1996 ew32(IVAR, ivar);
1997
1998 /* enable MSI-X PBA support */
1999 ctrl_ext = er32(CTRL_EXT);
2000 ctrl_ext |= E1000_CTRL_EXT_PBA_CLR;
2001
2002 /* Auto-Mask Other interrupts upon ICR read */
Bruce Allan4662e822008-08-26 18:37:06 -07002003 ew32(IAM, ~E1000_EIAC_MASK_82574 | E1000_IMS_OTHER);
2004 ctrl_ext |= E1000_CTRL_EXT_EIAME;
2005 ew32(CTRL_EXT, ctrl_ext);
2006 e1e_flush();
2007}
2008
2009void e1000e_reset_interrupt_capability(struct e1000_adapter *adapter)
2010{
2011 if (adapter->msix_entries) {
2012 pci_disable_msix(adapter->pdev);
2013 kfree(adapter->msix_entries);
2014 adapter->msix_entries = NULL;
2015 } else if (adapter->flags & FLAG_MSI_ENABLED) {
2016 pci_disable_msi(adapter->pdev);
2017 adapter->flags &= ~FLAG_MSI_ENABLED;
2018 }
Bruce Allan4662e822008-08-26 18:37:06 -07002019}
2020
2021/**
2022 * e1000e_set_interrupt_capability - set MSI or MSI-X if supported
2023 *
2024 * Attempt to configure interrupts using the best available
2025 * capabilities of the hardware and kernel.
2026 **/
2027void e1000e_set_interrupt_capability(struct e1000_adapter *adapter)
2028{
2029 int err;
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002030 int i;
Bruce Allan4662e822008-08-26 18:37:06 -07002031
2032 switch (adapter->int_mode) {
2033 case E1000E_INT_MODE_MSIX:
2034 if (adapter->flags & FLAG_HAS_MSIX) {
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002035 adapter->num_vectors = 3; /* RxQ0, TxQ0 and other */
2036 adapter->msix_entries = kcalloc(adapter->num_vectors,
Bruce Allan17e813e2013-02-20 04:06:01 +00002037 sizeof(struct
2038 msix_entry),
2039 GFP_KERNEL);
Bruce Allan4662e822008-08-26 18:37:06 -07002040 if (adapter->msix_entries) {
Alexander Gordeev0cc7c952014-02-18 11:11:41 +01002041 struct e1000_adapter *a = adapter;
2042
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002043 for (i = 0; i < adapter->num_vectors; i++)
Bruce Allan4662e822008-08-26 18:37:06 -07002044 adapter->msix_entries[i].entry = i;
2045
Alexander Gordeev0cc7c952014-02-18 11:11:41 +01002046 err = pci_enable_msix_range(a->pdev,
2047 a->msix_entries,
2048 a->num_vectors,
2049 a->num_vectors);
2050 if (err > 0)
Bruce Allan4662e822008-08-26 18:37:06 -07002051 return;
2052 }
2053 /* MSI-X failed, so fall through and try MSI */
Jeff Kirsheref456f82011-11-03 11:40:28 +00002054 e_err("Failed to initialize MSI-X interrupts. Falling back to MSI interrupts.\n");
Bruce Allan4662e822008-08-26 18:37:06 -07002055 e1000e_reset_interrupt_capability(adapter);
2056 }
2057 adapter->int_mode = E1000E_INT_MODE_MSI;
2058 /* Fall through */
2059 case E1000E_INT_MODE_MSI:
2060 if (!pci_enable_msi(adapter->pdev)) {
2061 adapter->flags |= FLAG_MSI_ENABLED;
2062 } else {
2063 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Jeff Kirsheref456f82011-11-03 11:40:28 +00002064 e_err("Failed to initialize MSI interrupts. Falling back to legacy interrupts.\n");
Bruce Allan4662e822008-08-26 18:37:06 -07002065 }
2066 /* Fall through */
2067 case E1000E_INT_MODE_LEGACY:
2068 /* Don't do anything; this is the system default */
2069 break;
2070 }
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002071
2072 /* store the number of vectors being used */
2073 adapter->num_vectors = 1;
Bruce Allan4662e822008-08-26 18:37:06 -07002074}
2075
2076/**
2077 * e1000_request_msix - Initialize MSI-X interrupts
2078 *
2079 * e1000_request_msix allocates MSI-X vectors and requests interrupts from the
2080 * kernel.
2081 **/
2082static int e1000_request_msix(struct e1000_adapter *adapter)
2083{
2084 struct net_device *netdev = adapter->netdev;
2085 int err = 0, vector = 0;
2086
2087 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Bruce Allan79f5e842011-01-19 04:20:59 +00002088 snprintf(adapter->rx_ring->name,
2089 sizeof(adapter->rx_ring->name) - 1,
2090 "%s-rx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07002091 else
2092 memcpy(adapter->rx_ring->name, netdev->name, IFNAMSIZ);
2093 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08002094 e1000_intr_msix_rx, 0, adapter->rx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07002095 netdev);
2096 if (err)
Bruce Allan5015e532012-02-08 02:55:56 +00002097 return err;
Bruce Allanc5083cf2011-12-16 00:45:40 +00002098 adapter->rx_ring->itr_register = adapter->hw.hw_addr +
2099 E1000_EITR_82574(vector);
Bruce Allan4662e822008-08-26 18:37:06 -07002100 adapter->rx_ring->itr_val = adapter->itr;
2101 vector++;
2102
2103 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Bruce Allan79f5e842011-01-19 04:20:59 +00002104 snprintf(adapter->tx_ring->name,
2105 sizeof(adapter->tx_ring->name) - 1,
2106 "%s-tx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07002107 else
2108 memcpy(adapter->tx_ring->name, netdev->name, IFNAMSIZ);
2109 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08002110 e1000_intr_msix_tx, 0, adapter->tx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07002111 netdev);
2112 if (err)
Bruce Allan5015e532012-02-08 02:55:56 +00002113 return err;
Bruce Allanc5083cf2011-12-16 00:45:40 +00002114 adapter->tx_ring->itr_register = adapter->hw.hw_addr +
2115 E1000_EITR_82574(vector);
Bruce Allan4662e822008-08-26 18:37:06 -07002116 adapter->tx_ring->itr_val = adapter->itr;
2117 vector++;
2118
2119 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08002120 e1000_msix_other, 0, netdev->name, netdev);
Bruce Allan4662e822008-08-26 18:37:06 -07002121 if (err)
Bruce Allan5015e532012-02-08 02:55:56 +00002122 return err;
Bruce Allan4662e822008-08-26 18:37:06 -07002123
2124 e1000_configure_msix(adapter);
Bruce Allan5015e532012-02-08 02:55:56 +00002125
Bruce Allan4662e822008-08-26 18:37:06 -07002126 return 0;
Bruce Allan4662e822008-08-26 18:37:06 -07002127}
2128
Bruce Allanf8d59f72008-08-08 18:36:11 -07002129/**
2130 * e1000_request_irq - initialize interrupts
2131 *
2132 * Attempts to configure interrupts using the best available
2133 * capabilities of the hardware and kernel.
2134 **/
Auke Kokbc7f75f2007-09-17 12:30:59 -07002135static int e1000_request_irq(struct e1000_adapter *adapter)
2136{
2137 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002138 int err;
2139
Bruce Allan4662e822008-08-26 18:37:06 -07002140 if (adapter->msix_entries) {
2141 err = e1000_request_msix(adapter);
2142 if (!err)
2143 return err;
2144 /* fall back to MSI */
2145 e1000e_reset_interrupt_capability(adapter);
2146 adapter->int_mode = E1000E_INT_MODE_MSI;
2147 e1000e_set_interrupt_capability(adapter);
2148 }
2149 if (adapter->flags & FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002150 err = request_irq(adapter->pdev->irq, e1000_intr_msi, 0,
Bruce Allan4662e822008-08-26 18:37:06 -07002151 netdev->name, netdev);
2152 if (!err)
2153 return err;
2154
2155 /* fall back to legacy interrupt */
2156 e1000e_reset_interrupt_capability(adapter);
2157 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002158 }
2159
Joe Perchesa0607fd2009-11-18 23:29:17 -08002160 err = request_irq(adapter->pdev->irq, e1000_intr, IRQF_SHARED,
Bruce Allan4662e822008-08-26 18:37:06 -07002161 netdev->name, netdev);
2162 if (err)
Bruce Allanf8d59f72008-08-08 18:36:11 -07002163 e_err("Unable to allocate interrupt, Error: %d\n", err);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002164
2165 return err;
2166}
2167
2168static void e1000_free_irq(struct e1000_adapter *adapter)
2169{
2170 struct net_device *netdev = adapter->netdev;
2171
Bruce Allan4662e822008-08-26 18:37:06 -07002172 if (adapter->msix_entries) {
2173 int vector = 0;
2174
2175 free_irq(adapter->msix_entries[vector].vector, netdev);
2176 vector++;
2177
2178 free_irq(adapter->msix_entries[vector].vector, netdev);
2179 vector++;
2180
2181 /* Other Causes interrupt vector */
2182 free_irq(adapter->msix_entries[vector].vector, netdev);
2183 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002184 }
Bruce Allan4662e822008-08-26 18:37:06 -07002185
2186 free_irq(adapter->pdev->irq, netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002187}
2188
2189/**
2190 * e1000_irq_disable - Mask off interrupt generation on the NIC
2191 **/
2192static void e1000_irq_disable(struct e1000_adapter *adapter)
2193{
2194 struct e1000_hw *hw = &adapter->hw;
2195
Auke Kokbc7f75f2007-09-17 12:30:59 -07002196 ew32(IMC, ~0);
Bruce Allan4662e822008-08-26 18:37:06 -07002197 if (adapter->msix_entries)
2198 ew32(EIAC_82574, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002199 e1e_flush();
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002200
2201 if (adapter->msix_entries) {
2202 int i;
2203 for (i = 0; i < adapter->num_vectors; i++)
2204 synchronize_irq(adapter->msix_entries[i].vector);
2205 } else {
2206 synchronize_irq(adapter->pdev->irq);
2207 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002208}
2209
2210/**
2211 * e1000_irq_enable - Enable default interrupt generation settings
2212 **/
2213static void e1000_irq_enable(struct e1000_adapter *adapter)
2214{
2215 struct e1000_hw *hw = &adapter->hw;
2216
Bruce Allan4662e822008-08-26 18:37:06 -07002217 if (adapter->msix_entries) {
2218 ew32(EIAC_82574, adapter->eiac_mask & E1000_EIAC_MASK_82574);
2219 ew32(IMS, adapter->eiac_mask | E1000_IMS_OTHER | E1000_IMS_LSC);
Bruce Allan94fb8482013-01-23 09:00:03 +00002220 } else if (hw->mac.type == e1000_pch_lpt) {
2221 ew32(IMS, IMS_ENABLE_MASK | E1000_IMS_ECCER);
Bruce Allan4662e822008-08-26 18:37:06 -07002222 } else {
2223 ew32(IMS, IMS_ENABLE_MASK);
2224 }
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002225 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -07002226}
2227
2228/**
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002229 * e1000e_get_hw_control - get control of the h/w from f/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07002230 * @adapter: address of board private structure
2231 *
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002232 * e1000e_get_hw_control sets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002233 * For ASF and Pass Through versions of f/w this means that
2234 * the driver is loaded. For AMT version (only with 82573)
2235 * of the f/w this means that the network i/f is open.
2236 **/
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002237void e1000e_get_hw_control(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002238{
2239 struct e1000_hw *hw = &adapter->hw;
2240 u32 ctrl_ext;
2241 u32 swsm;
2242
2243 /* Let firmware know the driver has taken over */
2244 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
2245 swsm = er32(SWSM);
2246 ew32(SWSM, swsm | E1000_SWSM_DRV_LOAD);
2247 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
2248 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07002249 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002250 }
2251}
2252
2253/**
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002254 * e1000e_release_hw_control - release control of the h/w to f/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07002255 * @adapter: address of board private structure
2256 *
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002257 * e1000e_release_hw_control resets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002258 * For ASF and Pass Through versions of f/w this means that the
2259 * driver is no longer loaded. For AMT version (only with 82573) i
2260 * of the f/w this means that the network i/f is closed.
2261 *
2262 **/
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002263void e1000e_release_hw_control(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002264{
2265 struct e1000_hw *hw = &adapter->hw;
2266 u32 ctrl_ext;
2267 u32 swsm;
2268
2269 /* Let firmware taken over control of h/w */
2270 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
2271 swsm = er32(SWSM);
2272 ew32(SWSM, swsm & ~E1000_SWSM_DRV_LOAD);
2273 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
2274 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07002275 ew32(CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002276 }
2277}
2278
Auke Kokbc7f75f2007-09-17 12:30:59 -07002279/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002280 * e1000_alloc_ring_dma - allocate memory for a ring structure
Auke Kokbc7f75f2007-09-17 12:30:59 -07002281 **/
2282static int e1000_alloc_ring_dma(struct e1000_adapter *adapter,
2283 struct e1000_ring *ring)
2284{
2285 struct pci_dev *pdev = adapter->pdev;
2286
2287 ring->desc = dma_alloc_coherent(&pdev->dev, ring->size, &ring->dma,
2288 GFP_KERNEL);
2289 if (!ring->desc)
2290 return -ENOMEM;
2291
2292 return 0;
2293}
2294
2295/**
2296 * e1000e_setup_tx_resources - allocate Tx resources (Descriptors)
Bruce Allan55aa6982011-12-16 00:45:45 +00002297 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002298 *
2299 * Return 0 on success, negative on failure
2300 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002301int e1000e_setup_tx_resources(struct e1000_ring *tx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002302{
Bruce Allan55aa6982011-12-16 00:45:45 +00002303 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002304 int err = -ENOMEM, size;
2305
2306 size = sizeof(struct e1000_buffer) * tx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00002307 tx_ring->buffer_info = vzalloc(size);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002308 if (!tx_ring->buffer_info)
2309 goto err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002310
2311 /* round up to nearest 4K */
2312 tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc);
2313 tx_ring->size = ALIGN(tx_ring->size, 4096);
2314
2315 err = e1000_alloc_ring_dma(adapter, tx_ring);
2316 if (err)
2317 goto err;
2318
2319 tx_ring->next_to_use = 0;
2320 tx_ring->next_to_clean = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002321
2322 return 0;
2323err:
2324 vfree(tx_ring->buffer_info);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07002325 e_err("Unable to allocate memory for the transmit descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002326 return err;
2327}
2328
2329/**
2330 * e1000e_setup_rx_resources - allocate Rx resources (Descriptors)
Bruce Allan55aa6982011-12-16 00:45:45 +00002331 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002332 *
2333 * Returns 0 on success, negative on failure
2334 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002335int e1000e_setup_rx_resources(struct e1000_ring *rx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002336{
Bruce Allan55aa6982011-12-16 00:45:45 +00002337 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kok47f44e42007-10-25 13:57:44 -07002338 struct e1000_buffer *buffer_info;
2339 int i, size, desc_len, err = -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002340
2341 size = sizeof(struct e1000_buffer) * rx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00002342 rx_ring->buffer_info = vzalloc(size);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002343 if (!rx_ring->buffer_info)
2344 goto err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002345
Auke Kok47f44e42007-10-25 13:57:44 -07002346 for (i = 0; i < rx_ring->count; i++) {
2347 buffer_info = &rx_ring->buffer_info[i];
2348 buffer_info->ps_pages = kcalloc(PS_PAGE_BUFFERS,
2349 sizeof(struct e1000_ps_page),
2350 GFP_KERNEL);
2351 if (!buffer_info->ps_pages)
2352 goto err_pages;
2353 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002354
2355 desc_len = sizeof(union e1000_rx_desc_packet_split);
2356
2357 /* Round up to nearest 4K */
2358 rx_ring->size = rx_ring->count * desc_len;
2359 rx_ring->size = ALIGN(rx_ring->size, 4096);
2360
2361 err = e1000_alloc_ring_dma(adapter, rx_ring);
2362 if (err)
Auke Kok47f44e42007-10-25 13:57:44 -07002363 goto err_pages;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002364
2365 rx_ring->next_to_clean = 0;
2366 rx_ring->next_to_use = 0;
2367 rx_ring->rx_skb_top = NULL;
2368
2369 return 0;
Auke Kok47f44e42007-10-25 13:57:44 -07002370
2371err_pages:
2372 for (i = 0; i < rx_ring->count; i++) {
2373 buffer_info = &rx_ring->buffer_info[i];
2374 kfree(buffer_info->ps_pages);
2375 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002376err:
2377 vfree(rx_ring->buffer_info);
Bruce Allane9262442010-11-24 06:02:06 +00002378 e_err("Unable to allocate memory for the receive descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002379 return err;
2380}
2381
2382/**
2383 * e1000_clean_tx_ring - Free Tx Buffers
Bruce Allan55aa6982011-12-16 00:45:45 +00002384 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002385 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002386static void e1000_clean_tx_ring(struct e1000_ring *tx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002387{
Bruce Allan55aa6982011-12-16 00:45:45 +00002388 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002389 struct e1000_buffer *buffer_info;
2390 unsigned long size;
2391 unsigned int i;
2392
2393 for (i = 0; i < tx_ring->count; i++) {
2394 buffer_info = &tx_ring->buffer_info[i];
Bruce Allan55aa6982011-12-16 00:45:45 +00002395 e1000_put_txbuf(tx_ring, buffer_info);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002396 }
2397
Tom Herbert3f0cfa32011-11-28 16:33:16 +00002398 netdev_reset_queue(adapter->netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002399 size = sizeof(struct e1000_buffer) * tx_ring->count;
2400 memset(tx_ring->buffer_info, 0, size);
2401
2402 memset(tx_ring->desc, 0, tx_ring->size);
2403
2404 tx_ring->next_to_use = 0;
2405 tx_ring->next_to_clean = 0;
2406
Bruce Allanc5083cf2011-12-16 00:45:40 +00002407 writel(0, tx_ring->head);
David Ertmanb485dba2014-01-22 00:21:41 +00002408 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allanbdc125f2012-03-20 03:47:52 +00002409 e1000e_update_tdt_wa(tx_ring, 0);
2410 else
2411 writel(0, tx_ring->tail);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002412}
2413
2414/**
2415 * e1000e_free_tx_resources - Free Tx Resources per Queue
Bruce Allan55aa6982011-12-16 00:45:45 +00002416 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002417 *
2418 * Free all transmit software resources
2419 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002420void e1000e_free_tx_resources(struct e1000_ring *tx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002421{
Bruce Allan55aa6982011-12-16 00:45:45 +00002422 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002423 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002424
Bruce Allan55aa6982011-12-16 00:45:45 +00002425 e1000_clean_tx_ring(tx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002426
2427 vfree(tx_ring->buffer_info);
2428 tx_ring->buffer_info = NULL;
2429
2430 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
2431 tx_ring->dma);
2432 tx_ring->desc = NULL;
2433}
2434
2435/**
2436 * e1000e_free_rx_resources - Free Rx Resources
Bruce Allan55aa6982011-12-16 00:45:45 +00002437 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002438 *
2439 * Free all receive software resources
2440 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002441void e1000e_free_rx_resources(struct e1000_ring *rx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002442{
Bruce Allan55aa6982011-12-16 00:45:45 +00002443 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002444 struct pci_dev *pdev = adapter->pdev;
Auke Kok47f44e42007-10-25 13:57:44 -07002445 int i;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002446
Bruce Allan55aa6982011-12-16 00:45:45 +00002447 e1000_clean_rx_ring(rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002448
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002449 for (i = 0; i < rx_ring->count; i++)
Auke Kok47f44e42007-10-25 13:57:44 -07002450 kfree(rx_ring->buffer_info[i].ps_pages);
Auke Kok47f44e42007-10-25 13:57:44 -07002451
Auke Kokbc7f75f2007-09-17 12:30:59 -07002452 vfree(rx_ring->buffer_info);
2453 rx_ring->buffer_info = NULL;
2454
Auke Kokbc7f75f2007-09-17 12:30:59 -07002455 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
2456 rx_ring->dma);
2457 rx_ring->desc = NULL;
2458}
2459
2460/**
2461 * e1000_update_itr - update the dynamic ITR value based on statistics
Auke Kok489815c2008-02-21 15:11:07 -08002462 * @adapter: pointer to adapter
2463 * @itr_setting: current adapter->itr
2464 * @packets: the number of packets during this measurement interval
2465 * @bytes: the number of bytes during this measurement interval
2466 *
Auke Kokbc7f75f2007-09-17 12:30:59 -07002467 * Stores a new ITR value based on packets and byte
2468 * counts during the last interrupt. The advantage of per interrupt
2469 * computation is faster updates and more accurate ITR for the current
2470 * traffic pattern. Constants in this function were computed
2471 * based on theoretical maximum wire speed and thresholds were set based
2472 * on testing data as well as attempting to minimize response time
Bruce Allan4662e822008-08-26 18:37:06 -07002473 * while increasing bulk throughput. This functionality is controlled
2474 * by the InterruptThrottleRate module parameter.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002475 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00002476static unsigned int e1000_update_itr(u16 itr_setting, int packets, int bytes)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002477{
2478 unsigned int retval = itr_setting;
2479
2480 if (packets == 0)
Bruce Allan5015e532012-02-08 02:55:56 +00002481 return itr_setting;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002482
2483 switch (itr_setting) {
2484 case lowest_latency:
2485 /* handle TSO and jumbo frames */
Bruce Allan362e20c2013-02-20 04:05:45 +00002486 if (bytes / packets > 8000)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002487 retval = bulk_latency;
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002488 else if ((packets < 5) && (bytes > 512))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002489 retval = low_latency;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002490 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +00002491 case low_latency: /* 50 usec aka 20000 ints/s */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002492 if (bytes > 10000) {
2493 /* this if handles the TSO accounting */
Bruce Allan362e20c2013-02-20 04:05:45 +00002494 if (bytes / packets > 8000)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002495 retval = bulk_latency;
Bruce Allan362e20c2013-02-20 04:05:45 +00002496 else if ((packets < 10) || ((bytes / packets) > 1200))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002497 retval = bulk_latency;
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002498 else if ((packets > 35))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002499 retval = lowest_latency;
Bruce Allan362e20c2013-02-20 04:05:45 +00002500 } else if (bytes / packets > 2000) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002501 retval = bulk_latency;
2502 } else if (packets <= 2 && bytes < 512) {
2503 retval = lowest_latency;
2504 }
2505 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +00002506 case bulk_latency: /* 250 usec aka 4000 ints/s */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002507 if (bytes > 25000) {
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002508 if (packets > 35)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002509 retval = low_latency;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002510 } else if (bytes < 6000) {
2511 retval = low_latency;
2512 }
2513 break;
2514 }
2515
Auke Kokbc7f75f2007-09-17 12:30:59 -07002516 return retval;
2517}
2518
2519static void e1000_set_itr(struct e1000_adapter *adapter)
2520{
Auke Kokbc7f75f2007-09-17 12:30:59 -07002521 u16 current_itr;
2522 u32 new_itr = adapter->itr;
2523
2524 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2525 if (adapter->link_speed != SPEED_1000) {
2526 current_itr = 0;
2527 new_itr = 4000;
2528 goto set_itr_now;
2529 }
2530
Bruce Allan828bac82010-09-29 21:39:37 +00002531 if (adapter->flags2 & FLAG2_DISABLE_AIM) {
2532 new_itr = 0;
2533 goto set_itr_now;
2534 }
2535
Bruce Allan8bb62862013-01-16 08:46:49 +00002536 adapter->tx_itr = e1000_update_itr(adapter->tx_itr,
2537 adapter->total_tx_packets,
2538 adapter->total_tx_bytes);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002539 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2540 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2541 adapter->tx_itr = low_latency;
2542
Bruce Allan8bb62862013-01-16 08:46:49 +00002543 adapter->rx_itr = e1000_update_itr(adapter->rx_itr,
2544 adapter->total_rx_packets,
2545 adapter->total_rx_bytes);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002546 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2547 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2548 adapter->rx_itr = low_latency;
2549
2550 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2551
Auke Kokbc7f75f2007-09-17 12:30:59 -07002552 /* counts and packets in update_itr are dependent on these numbers */
Bruce Allan33550ce2013-02-20 04:06:16 +00002553 switch (current_itr) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002554 case lowest_latency:
2555 new_itr = 70000;
2556 break;
2557 case low_latency:
Bruce Allane80bd1d2013-05-01 01:19:46 +00002558 new_itr = 20000; /* aka hwitr = ~200 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002559 break;
2560 case bulk_latency:
2561 new_itr = 4000;
2562 break;
2563 default:
2564 break;
2565 }
2566
2567set_itr_now:
2568 if (new_itr != adapter->itr) {
Bruce Allane921eb12012-11-28 09:28:37 +00002569 /* this attempts to bias the interrupt rate towards Bulk
Auke Kokbc7f75f2007-09-17 12:30:59 -07002570 * by adding intermediate steps when interrupt rate is
Bruce Allanad680762008-03-28 09:15:03 -07002571 * increasing
2572 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002573 new_itr = new_itr > adapter->itr ?
Bruce Allanf0ff4392013-02-20 04:05:39 +00002574 min(adapter->itr + (new_itr >> 2), new_itr) : new_itr;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002575 adapter->itr = new_itr;
Bruce Allan4662e822008-08-26 18:37:06 -07002576 adapter->rx_ring->itr_val = new_itr;
2577 if (adapter->msix_entries)
2578 adapter->rx_ring->set_itr = 1;
2579 else
Bruce Allane3d14b02012-12-05 06:26:51 +00002580 e1000e_write_itr(adapter, new_itr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002581 }
2582}
2583
2584/**
Matthew Vick22a4cca2012-07-12 00:02:42 +00002585 * e1000e_write_itr - write the ITR value to the appropriate registers
2586 * @adapter: address of board private structure
2587 * @itr: new ITR value to program
2588 *
2589 * e1000e_write_itr determines if the adapter is in MSI-X mode
2590 * and, if so, writes the EITR registers with the ITR value.
2591 * Otherwise, it writes the ITR value into the ITR register.
2592 **/
2593void e1000e_write_itr(struct e1000_adapter *adapter, u32 itr)
2594{
2595 struct e1000_hw *hw = &adapter->hw;
2596 u32 new_itr = itr ? 1000000000 / (itr * 256) : 0;
2597
2598 if (adapter->msix_entries) {
2599 int vector;
2600
2601 for (vector = 0; vector < adapter->num_vectors; vector++)
2602 writel(new_itr, hw->hw_addr + E1000_EITR_82574(vector));
2603 } else {
2604 ew32(ITR, new_itr);
2605 }
2606}
2607
2608/**
Bruce Allan4662e822008-08-26 18:37:06 -07002609 * e1000_alloc_queues - Allocate memory for all rings
2610 * @adapter: board private structure to initialize
2611 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05002612static int e1000_alloc_queues(struct e1000_adapter *adapter)
Bruce Allan4662e822008-08-26 18:37:06 -07002613{
Bruce Allan55aa6982011-12-16 00:45:45 +00002614 int size = sizeof(struct e1000_ring);
2615
2616 adapter->tx_ring = kzalloc(size, GFP_KERNEL);
Bruce Allan4662e822008-08-26 18:37:06 -07002617 if (!adapter->tx_ring)
2618 goto err;
Bruce Allan55aa6982011-12-16 00:45:45 +00002619 adapter->tx_ring->count = adapter->tx_ring_count;
2620 adapter->tx_ring->adapter = adapter;
Bruce Allan4662e822008-08-26 18:37:06 -07002621
Bruce Allan55aa6982011-12-16 00:45:45 +00002622 adapter->rx_ring = kzalloc(size, GFP_KERNEL);
Bruce Allan4662e822008-08-26 18:37:06 -07002623 if (!adapter->rx_ring)
2624 goto err;
Bruce Allan55aa6982011-12-16 00:45:45 +00002625 adapter->rx_ring->count = adapter->rx_ring_count;
2626 adapter->rx_ring->adapter = adapter;
Bruce Allan4662e822008-08-26 18:37:06 -07002627
2628 return 0;
2629err:
2630 e_err("Unable to allocate memory for queues\n");
2631 kfree(adapter->rx_ring);
2632 kfree(adapter->tx_ring);
2633 return -ENOMEM;
2634}
2635
2636/**
Bruce Allanc58c8a72012-03-20 03:48:19 +00002637 * e1000e_poll - NAPI Rx polling callback
Bruce Allanad680762008-03-28 09:15:03 -07002638 * @napi: struct associated with this polling callback
Bruce Allanc58c8a72012-03-20 03:48:19 +00002639 * @weight: number of packets driver is allowed to process this poll
Auke Kokbc7f75f2007-09-17 12:30:59 -07002640 **/
Bruce Allanc58c8a72012-03-20 03:48:19 +00002641static int e1000e_poll(struct napi_struct *napi, int weight)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002642{
Bruce Allanc58c8a72012-03-20 03:48:19 +00002643 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter,
2644 napi);
Bruce Allan4662e822008-08-26 18:37:06 -07002645 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002646 struct net_device *poll_dev = adapter->netdev;
Andy Gospodarek679e8a02009-06-18 11:57:37 +00002647 int tx_cleaned = 1, work_done = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002648
Wang Chen4cf16532008-11-12 23:38:14 -08002649 adapter = netdev_priv(poll_dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002650
Bruce Allanc58c8a72012-03-20 03:48:19 +00002651 if (!adapter->msix_entries ||
2652 (adapter->rx_ring->ims_val & adapter->tx_ring->ims_val))
2653 tx_cleaned = e1000_clean_tx_irq(adapter->tx_ring);
Bruce Allan4662e822008-08-26 18:37:06 -07002654
Bruce Allanc58c8a72012-03-20 03:48:19 +00002655 adapter->clean_rx(adapter->rx_ring, &work_done, weight);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002656
Alexander Duyck12d04a32009-03-25 22:05:03 +00002657 if (!tx_cleaned)
Bruce Allanc58c8a72012-03-20 03:48:19 +00002658 work_done = weight;
David S. Millerd2c7ddd2008-01-15 22:43:24 -08002659
Bruce Allanc58c8a72012-03-20 03:48:19 +00002660 /* If weight not fully consumed, exit the polling mode */
2661 if (work_done < weight) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002662 if (adapter->itr_setting & 3)
2663 e1000_set_itr(adapter);
Ben Hutchings288379f2009-01-19 16:43:59 -08002664 napi_complete(napi);
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00002665 if (!test_bit(__E1000_DOWN, &adapter->state)) {
2666 if (adapter->msix_entries)
2667 ew32(IMS, adapter->rx_ring->ims_val);
2668 else
2669 e1000_irq_enable(adapter);
2670 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002671 }
2672
2673 return work_done;
2674}
2675
Patrick McHardy80d5c362013-04-19 02:04:28 +00002676static int e1000_vlan_rx_add_vid(struct net_device *netdev,
Bruce Allan603cdca2013-05-01 03:48:11 +00002677 __always_unused __be16 proto, u16 vid)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002678{
2679 struct e1000_adapter *adapter = netdev_priv(netdev);
2680 struct e1000_hw *hw = &adapter->hw;
2681 u32 vfta, index;
2682
2683 /* don't update vlan cookie if already programmed */
2684 if ((adapter->hw.mng_cookie.status &
2685 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2686 (vid == adapter->mng_vlan_id))
Jiri Pirko8e586132011-12-08 19:52:37 -05002687 return 0;
Bruce Allancaaddaf2009-12-01 15:46:43 +00002688
Auke Kokbc7f75f2007-09-17 12:30:59 -07002689 /* add VID to filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002690 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2691 index = (vid >> 5) & 0x7F;
2692 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2693 vfta |= (1 << (vid & 0x1F));
2694 hw->mac.ops.write_vfta(hw, index, vfta);
2695 }
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002696
2697 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002698
2699 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002700}
2701
Patrick McHardy80d5c362013-04-19 02:04:28 +00002702static int e1000_vlan_rx_kill_vid(struct net_device *netdev,
Bruce Allan603cdca2013-05-01 03:48:11 +00002703 __always_unused __be16 proto, u16 vid)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002704{
2705 struct e1000_adapter *adapter = netdev_priv(netdev);
2706 struct e1000_hw *hw = &adapter->hw;
2707 u32 vfta, index;
2708
Auke Kokbc7f75f2007-09-17 12:30:59 -07002709 if ((adapter->hw.mng_cookie.status &
2710 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2711 (vid == adapter->mng_vlan_id)) {
2712 /* release control to f/w */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002713 e1000e_release_hw_control(adapter);
Jiri Pirko8e586132011-12-08 19:52:37 -05002714 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002715 }
2716
2717 /* remove VID from filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002718 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2719 index = (vid >> 5) & 0x7F;
2720 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2721 vfta &= ~(1 << (vid & 0x1F));
2722 hw->mac.ops.write_vfta(hw, index, vfta);
2723 }
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002724
2725 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002726
2727 return 0;
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002728}
2729
2730/**
2731 * e1000e_vlan_filter_disable - helper to disable hw VLAN filtering
2732 * @adapter: board private structure to initialize
2733 **/
2734static void e1000e_vlan_filter_disable(struct e1000_adapter *adapter)
2735{
2736 struct net_device *netdev = adapter->netdev;
2737 struct e1000_hw *hw = &adapter->hw;
2738 u32 rctl;
2739
2740 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2741 /* disable VLAN receive filtering */
2742 rctl = er32(RCTL);
2743 rctl &= ~(E1000_RCTL_VFE | E1000_RCTL_CFIEN);
2744 ew32(RCTL, rctl);
2745
2746 if (adapter->mng_vlan_id != (u16)E1000_MNG_VLAN_NONE) {
Patrick McHardy80d5c362013-04-19 02:04:28 +00002747 e1000_vlan_rx_kill_vid(netdev, htons(ETH_P_8021Q),
2748 adapter->mng_vlan_id);
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002749 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2750 }
2751 }
2752}
2753
2754/**
2755 * e1000e_vlan_filter_enable - helper to enable HW VLAN filtering
2756 * @adapter: board private structure to initialize
2757 **/
2758static void e1000e_vlan_filter_enable(struct e1000_adapter *adapter)
2759{
2760 struct e1000_hw *hw = &adapter->hw;
2761 u32 rctl;
2762
2763 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2764 /* enable VLAN receive filtering */
2765 rctl = er32(RCTL);
2766 rctl |= E1000_RCTL_VFE;
2767 rctl &= ~E1000_RCTL_CFIEN;
2768 ew32(RCTL, rctl);
2769 }
2770}
2771
2772/**
2773 * e1000e_vlan_strip_enable - helper to disable HW VLAN stripping
2774 * @adapter: board private structure to initialize
2775 **/
2776static void e1000e_vlan_strip_disable(struct e1000_adapter *adapter)
2777{
2778 struct e1000_hw *hw = &adapter->hw;
2779 u32 ctrl;
2780
2781 /* disable VLAN tag insert/strip */
2782 ctrl = er32(CTRL);
2783 ctrl &= ~E1000_CTRL_VME;
2784 ew32(CTRL, ctrl);
2785}
2786
2787/**
2788 * e1000e_vlan_strip_enable - helper to enable HW VLAN stripping
2789 * @adapter: board private structure to initialize
2790 **/
2791static void e1000e_vlan_strip_enable(struct e1000_adapter *adapter)
2792{
2793 struct e1000_hw *hw = &adapter->hw;
2794 u32 ctrl;
2795
2796 /* enable VLAN tag insert/strip */
2797 ctrl = er32(CTRL);
2798 ctrl |= E1000_CTRL_VME;
2799 ew32(CTRL, ctrl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002800}
2801
2802static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
2803{
2804 struct net_device *netdev = adapter->netdev;
2805 u16 vid = adapter->hw.mng_cookie.vlan_id;
2806 u16 old_vid = adapter->mng_vlan_id;
2807
Bruce Allane5fe2542013-02-20 04:06:27 +00002808 if (adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
Patrick McHardy80d5c362013-04-19 02:04:28 +00002809 e1000_vlan_rx_add_vid(netdev, htons(ETH_P_8021Q), vid);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002810 adapter->mng_vlan_id = vid;
2811 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002812
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002813 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) && (vid != old_vid))
Patrick McHardy80d5c362013-04-19 02:04:28 +00002814 e1000_vlan_rx_kill_vid(netdev, htons(ETH_P_8021Q), old_vid);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002815}
2816
2817static void e1000_restore_vlan(struct e1000_adapter *adapter)
2818{
2819 u16 vid;
2820
Patrick McHardy80d5c362013-04-19 02:04:28 +00002821 e1000_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002822
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002823 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
Patrick McHardy80d5c362013-04-19 02:04:28 +00002824 e1000_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), vid);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002825}
2826
Bruce Allancd791612010-05-10 14:59:51 +00002827static void e1000_init_manageability_pt(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002828{
2829 struct e1000_hw *hw = &adapter->hw;
Bruce Allancd791612010-05-10 14:59:51 +00002830 u32 manc, manc2h, mdef, i, j;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002831
2832 if (!(adapter->flags & FLAG_MNG_PT_ENABLED))
2833 return;
2834
2835 manc = er32(MANC);
2836
Bruce Allane921eb12012-11-28 09:28:37 +00002837 /* enable receiving management packets to the host. this will probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07002838 * generate destination unreachable messages from the host OS, but
Bruce Allanad680762008-03-28 09:15:03 -07002839 * the packets will be handled on SMBUS
2840 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002841 manc |= E1000_MANC_EN_MNG2HOST;
2842 manc2h = er32(MANC2H);
Bruce Allancd791612010-05-10 14:59:51 +00002843
2844 switch (hw->mac.type) {
2845 default:
2846 manc2h |= (E1000_MANC2H_PORT_623 | E1000_MANC2H_PORT_664);
2847 break;
2848 case e1000_82574:
2849 case e1000_82583:
Bruce Allane921eb12012-11-28 09:28:37 +00002850 /* Check if IPMI pass-through decision filter already exists;
Bruce Allancd791612010-05-10 14:59:51 +00002851 * if so, enable it.
2852 */
2853 for (i = 0, j = 0; i < 8; i++) {
2854 mdef = er32(MDEF(i));
2855
2856 /* Ignore filters with anything other than IPMI ports */
Dan Carpenter3b21b502010-06-02 13:43:15 +00002857 if (mdef & ~(E1000_MDEF_PORT_623 | E1000_MDEF_PORT_664))
Bruce Allancd791612010-05-10 14:59:51 +00002858 continue;
2859
2860 /* Enable this decision filter in MANC2H */
2861 if (mdef)
2862 manc2h |= (1 << i);
2863
2864 j |= mdef;
2865 }
2866
2867 if (j == (E1000_MDEF_PORT_623 | E1000_MDEF_PORT_664))
2868 break;
2869
2870 /* Create new decision filter in an empty filter */
2871 for (i = 0, j = 0; i < 8; i++)
2872 if (er32(MDEF(i)) == 0) {
2873 ew32(MDEF(i), (E1000_MDEF_PORT_623 |
2874 E1000_MDEF_PORT_664));
2875 manc2h |= (1 << 1);
2876 j++;
2877 break;
2878 }
2879
2880 if (!j)
2881 e_warn("Unable to create IPMI pass-through filter\n");
2882 break;
2883 }
2884
Auke Kokbc7f75f2007-09-17 12:30:59 -07002885 ew32(MANC2H, manc2h);
2886 ew32(MANC, manc);
2887}
2888
2889/**
Bruce Allanaf667a22010-12-31 06:10:01 +00002890 * e1000_configure_tx - Configure Transmit Unit after Reset
Auke Kokbc7f75f2007-09-17 12:30:59 -07002891 * @adapter: board private structure
2892 *
2893 * Configure the Tx unit of the MAC after a reset.
2894 **/
2895static void e1000_configure_tx(struct e1000_adapter *adapter)
2896{
2897 struct e1000_hw *hw = &adapter->hw;
2898 struct e1000_ring *tx_ring = adapter->tx_ring;
2899 u64 tdba;
Bruce Allanc550b122011-12-16 00:46:17 +00002900 u32 tdlen, tarc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002901
2902 /* Setup the HW Tx Head and Tail descriptor pointers */
2903 tdba = tx_ring->dma;
2904 tdlen = tx_ring->count * sizeof(struct e1000_tx_desc);
Bruce Allan1e360522012-03-20 03:48:13 +00002905 ew32(TDBAL(0), (tdba & DMA_BIT_MASK(32)));
2906 ew32(TDBAH(0), (tdba >> 32));
2907 ew32(TDLEN(0), tdlen);
2908 ew32(TDH(0), 0);
2909 ew32(TDT(0), 0);
2910 tx_ring->head = adapter->hw.hw_addr + E1000_TDH(0);
2911 tx_ring->tail = adapter->hw.hw_addr + E1000_TDT(0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002912
Auke Kokbc7f75f2007-09-17 12:30:59 -07002913 /* Set the Tx Interrupt Delay register */
2914 ew32(TIDV, adapter->tx_int_delay);
Bruce Allanad680762008-03-28 09:15:03 -07002915 /* Tx irq moderation */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002916 ew32(TADV, adapter->tx_abs_int_delay);
2917
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002918 if (adapter->flags2 & FLAG2_DMA_BURST) {
2919 u32 txdctl = er32(TXDCTL(0));
2920 txdctl &= ~(E1000_TXDCTL_PTHRESH | E1000_TXDCTL_HTHRESH |
2921 E1000_TXDCTL_WTHRESH);
Bruce Allane921eb12012-11-28 09:28:37 +00002922 /* set up some performance related parameters to encourage the
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002923 * hardware to use the bus more efficiently in bursts, depends
2924 * on the tx_int_delay to be enabled,
Hiroaki SHIMODA8edc0e62012-10-10 15:34:20 +00002925 * wthresh = 1 ==> burst write is disabled to avoid Tx stalls
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002926 * hthresh = 1 ==> prefetch when one or more available
2927 * pthresh = 0x1f ==> prefetch if internal cache 31 or less
2928 * BEWARE: this seems to work but should be considered first if
Bruce Allanaf667a22010-12-31 06:10:01 +00002929 * there are Tx hangs or other Tx related bugs
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002930 */
2931 txdctl |= E1000_TXDCTL_DMA_BURST_ENABLE;
2932 ew32(TXDCTL(0), txdctl);
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002933 }
Bruce Allan56032be2011-12-16 00:46:01 +00002934 /* erratum work around: set txdctl the same for both queues */
2935 ew32(TXDCTL(1), er32(TXDCTL(0)));
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002936
Auke Kokbc7f75f2007-09-17 12:30:59 -07002937 if (adapter->flags & FLAG_TARC_SPEED_MODE_BIT) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002938 tarc = er32(TARC(0));
Bruce Allane921eb12012-11-28 09:28:37 +00002939 /* set the speed mode bit, we'll clear it if we're not at
Bruce Allanad680762008-03-28 09:15:03 -07002940 * gigabit link later
2941 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002942#define SPEED_MODE_BIT (1 << 21)
2943 tarc |= SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002944 ew32(TARC(0), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002945 }
2946
2947 /* errata: program both queues to unweighted RR */
2948 if (adapter->flags & FLAG_TARC_SET_BIT_ZERO) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002949 tarc = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002950 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002951 ew32(TARC(0), tarc);
2952 tarc = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002953 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002954 ew32(TARC(1), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002955 }
2956
Auke Kokbc7f75f2007-09-17 12:30:59 -07002957 /* Setup Transmit Descriptor Settings for eop descriptor */
2958 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
2959
2960 /* only set IDE if we are delaying interrupts using the timers */
2961 if (adapter->tx_int_delay)
2962 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
2963
2964 /* enable Report Status bit */
2965 adapter->txd_cmd |= E1000_TXD_CMD_RS;
2966
Bruce Allan57cde762012-02-22 09:02:58 +00002967 hw->mac.ops.config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002968}
2969
2970/**
2971 * e1000_setup_rctl - configure the receive control registers
2972 * @adapter: Board private structure
2973 **/
2974#define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
2975 (((S) & (PAGE_SIZE - 1)) ? 1 : 0))
2976static void e1000_setup_rctl(struct e1000_adapter *adapter)
2977{
2978 struct e1000_hw *hw = &adapter->hw;
2979 u32 rctl, rfctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002980 u32 pages = 0;
2981
Bruce Allan2fbe4522012-04-19 03:21:47 +00002982 /* Workaround Si errata on PCHx - configure jumbo frame flow */
Bruce Allanda1e20462013-06-21 09:07:02 +00002983 if ((hw->mac.type >= e1000_pch2lan) &&
2984 (adapter->netdev->mtu > ETH_DATA_LEN) &&
2985 e1000_lv_jumbo_workaround_ich8lan(hw, true))
2986 e_dbg("failed to enable jumbo frame workaround mode\n");
Bruce Allana1ce6472010-09-22 17:16:40 +00002987
Auke Kokbc7f75f2007-09-17 12:30:59 -07002988 /* Program MC offset vector base */
2989 rctl = er32(RCTL);
2990 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
2991 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
Bruce Allanf0ff4392013-02-20 04:05:39 +00002992 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
2993 (adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002994
2995 /* Do not Store bad packets */
2996 rctl &= ~E1000_RCTL_SBP;
2997
2998 /* Enable Long Packet receive */
2999 if (adapter->netdev->mtu <= ETH_DATA_LEN)
3000 rctl &= ~E1000_RCTL_LPE;
3001 else
3002 rctl |= E1000_RCTL_LPE;
3003
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00003004 /* Some systems expect that the CRC is included in SMBUS traffic. The
3005 * hardware strips the CRC before sending to both SMBUS (BMC) and to
3006 * host memory when this is enabled
3007 */
3008 if (adapter->flags2 & FLAG2_CRC_STRIPPING)
3009 rctl |= E1000_RCTL_SECRC;
Auke Kok5918bd82008-02-12 15:20:24 -08003010
Bruce Allana4f58f52009-06-02 11:29:18 +00003011 /* Workaround Si errata on 82577 PHY - configure IPG for jumbos */
3012 if ((hw->phy.type == e1000_phy_82577) && (rctl & E1000_RCTL_LPE)) {
3013 u16 phy_data;
3014
3015 e1e_rphy(hw, PHY_REG(770, 26), &phy_data);
3016 phy_data &= 0xfff8;
3017 phy_data |= (1 << 2);
3018 e1e_wphy(hw, PHY_REG(770, 26), phy_data);
3019
3020 e1e_rphy(hw, 22, &phy_data);
3021 phy_data &= 0x0fff;
3022 phy_data |= (1 << 14);
3023 e1e_wphy(hw, 0x10, 0x2823);
3024 e1e_wphy(hw, 0x11, 0x0003);
3025 e1e_wphy(hw, 22, phy_data);
3026 }
3027
Auke Kokbc7f75f2007-09-17 12:30:59 -07003028 /* Setup buffer sizes */
3029 rctl &= ~E1000_RCTL_SZ_4096;
3030 rctl |= E1000_RCTL_BSEX;
3031 switch (adapter->rx_buffer_len) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003032 case 2048:
3033 default:
3034 rctl |= E1000_RCTL_SZ_2048;
3035 rctl &= ~E1000_RCTL_BSEX;
3036 break;
3037 case 4096:
3038 rctl |= E1000_RCTL_SZ_4096;
3039 break;
3040 case 8192:
3041 rctl |= E1000_RCTL_SZ_8192;
3042 break;
3043 case 16384:
3044 rctl |= E1000_RCTL_SZ_16384;
3045 break;
3046 }
3047
Bruce Allan5f450212011-07-22 06:21:46 +00003048 /* Enable Extended Status in all Receive Descriptors */
3049 rfctl = er32(RFCTL);
3050 rfctl |= E1000_RFCTL_EXTEN;
Matthew Vickf6bd5572012-04-25 08:01:05 +00003051 ew32(RFCTL, rfctl);
Bruce Allan5f450212011-07-22 06:21:46 +00003052
Bruce Allane921eb12012-11-28 09:28:37 +00003053 /* 82571 and greater support packet-split where the protocol
Auke Kokbc7f75f2007-09-17 12:30:59 -07003054 * header is placed in skb->data and the packet data is
3055 * placed in pages hanging off of skb_shinfo(skb)->nr_frags.
3056 * In the case of a non-split, skb->data is linearly filled,
3057 * followed by the page buffers. Therefore, skb->data is
3058 * sized to hold the largest protocol header.
3059 *
3060 * allocations using alloc_page take too long for regular MTU
3061 * so only enable packet split for jumbo frames
3062 *
3063 * Using pages when the page size is greater than 16k wastes
3064 * a lot of memory, since we allocate 3 pages at all times
3065 * per packet.
3066 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003067 pages = PAGE_USE_COUNT(adapter->netdev->mtu);
Bruce Allan79d4e902011-12-16 00:46:27 +00003068 if ((pages <= 3) && (PAGE_SIZE <= 16384) && (rctl & E1000_RCTL_LPE))
Auke Kokbc7f75f2007-09-17 12:30:59 -07003069 adapter->rx_ps_pages = pages;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003070 else
3071 adapter->rx_ps_pages = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003072
3073 if (adapter->rx_ps_pages) {
Bruce Allan90da0662011-01-06 07:02:53 +00003074 u32 psrctl = 0;
3075
Auke Kok140a7482007-10-25 13:57:58 -07003076 /* Enable Packet split descriptors */
3077 rctl |= E1000_RCTL_DTYP_PS;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003078
Bruce Allane5fe2542013-02-20 04:06:27 +00003079 psrctl |= adapter->rx_ps_bsize0 >> E1000_PSRCTL_BSIZE0_SHIFT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003080
3081 switch (adapter->rx_ps_pages) {
3082 case 3:
Bruce Allane5fe2542013-02-20 04:06:27 +00003083 psrctl |= PAGE_SIZE << E1000_PSRCTL_BSIZE3_SHIFT;
3084 /* fall-through */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003085 case 2:
Bruce Allane5fe2542013-02-20 04:06:27 +00003086 psrctl |= PAGE_SIZE << E1000_PSRCTL_BSIZE2_SHIFT;
3087 /* fall-through */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003088 case 1:
Bruce Allane5fe2542013-02-20 04:06:27 +00003089 psrctl |= PAGE_SIZE >> E1000_PSRCTL_BSIZE1_SHIFT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003090 break;
3091 }
3092
3093 ew32(PSRCTL, psrctl);
3094 }
3095
Ben Greearcf955e62012-02-11 15:39:51 +00003096 /* This is useful for sniffing bad packets. */
3097 if (adapter->netdev->features & NETIF_F_RXALL) {
3098 /* UPE and MPE will be handled by normal PROMISC logic
Bruce Allane921eb12012-11-28 09:28:37 +00003099 * in e1000e_set_rx_mode
3100 */
Bruce Allane80bd1d2013-05-01 01:19:46 +00003101 rctl |= (E1000_RCTL_SBP | /* Receive bad packets */
3102 E1000_RCTL_BAM | /* RX All Bcast Pkts */
3103 E1000_RCTL_PMCF); /* RX All MAC Ctrl Pkts */
Ben Greearcf955e62012-02-11 15:39:51 +00003104
Bruce Allane80bd1d2013-05-01 01:19:46 +00003105 rctl &= ~(E1000_RCTL_VFE | /* Disable VLAN filter */
3106 E1000_RCTL_DPF | /* Allow filtered pause */
3107 E1000_RCTL_CFIEN); /* Dis VLAN CFIEN Filter */
Ben Greearcf955e62012-02-11 15:39:51 +00003108 /* Do not mess with E1000_CTRL_VME, it affects transmit as well,
3109 * and that breaks VLANs.
3110 */
3111 }
3112
Auke Kokbc7f75f2007-09-17 12:30:59 -07003113 ew32(RCTL, rctl);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003114 /* just started the receive unit, no need to restart */
Bruce Allan12d43f72012-12-05 06:26:14 +00003115 adapter->flags &= ~FLAG_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003116}
3117
3118/**
3119 * e1000_configure_rx - Configure Receive Unit after Reset
3120 * @adapter: board private structure
3121 *
3122 * Configure the Rx unit of the MAC after a reset.
3123 **/
3124static void e1000_configure_rx(struct e1000_adapter *adapter)
3125{
3126 struct e1000_hw *hw = &adapter->hw;
3127 struct e1000_ring *rx_ring = adapter->rx_ring;
3128 u64 rdba;
3129 u32 rdlen, rctl, rxcsum, ctrl_ext;
3130
3131 if (adapter->rx_ps_pages) {
3132 /* this is a 32 byte descriptor */
3133 rdlen = rx_ring->count *
Bruce Allanaf667a22010-12-31 06:10:01 +00003134 sizeof(union e1000_rx_desc_packet_split);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003135 adapter->clean_rx = e1000_clean_rx_irq_ps;
3136 adapter->alloc_rx_buf = e1000_alloc_rx_buffers_ps;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003137 } else if (adapter->netdev->mtu > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allan5f450212011-07-22 06:21:46 +00003138 rdlen = rx_ring->count * sizeof(union e1000_rx_desc_extended);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003139 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
3140 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003141 } else {
Bruce Allan5f450212011-07-22 06:21:46 +00003142 rdlen = rx_ring->count * sizeof(union e1000_rx_desc_extended);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003143 adapter->clean_rx = e1000_clean_rx_irq;
3144 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
3145 }
3146
3147 /* disable receives while setting up the descriptors */
3148 rctl = er32(RCTL);
David S. Miller823dcd22011-08-20 10:39:12 -07003149 if (!(adapter->flags2 & FLAG2_NO_DISABLE_RX))
3150 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003151 e1e_flush();
Bruce Allan1bba4382011-03-19 00:27:20 +00003152 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003153
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003154 if (adapter->flags2 & FLAG2_DMA_BURST) {
Bruce Allane921eb12012-11-28 09:28:37 +00003155 /* set the writeback threshold (only takes effect if the RDTR
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003156 * is set). set GRAN=1 and write back up to 0x4 worth, and
Bruce Allanaf667a22010-12-31 06:10:01 +00003157 * enable prefetching of 0x20 Rx descriptors
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003158 * granularity = 01
3159 * wthresh = 04,
3160 * hthresh = 04,
3161 * pthresh = 0x20
3162 */
3163 ew32(RXDCTL(0), E1000_RXDCTL_DMA_BURST_ENABLE);
3164 ew32(RXDCTL(1), E1000_RXDCTL_DMA_BURST_ENABLE);
3165
Bruce Allane921eb12012-11-28 09:28:37 +00003166 /* override the delay timers for enabling bursting, only if
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003167 * the value was not set by the user via module options
3168 */
3169 if (adapter->rx_int_delay == DEFAULT_RDTR)
3170 adapter->rx_int_delay = BURST_RDTR;
3171 if (adapter->rx_abs_int_delay == DEFAULT_RADV)
3172 adapter->rx_abs_int_delay = BURST_RADV;
3173 }
3174
Auke Kokbc7f75f2007-09-17 12:30:59 -07003175 /* set the Receive Delay Timer Register */
3176 ew32(RDTR, adapter->rx_int_delay);
3177
3178 /* irq moderation */
3179 ew32(RADV, adapter->rx_abs_int_delay);
Bruce Allan828bac82010-09-29 21:39:37 +00003180 if ((adapter->itr_setting != 0) && (adapter->itr != 0))
Matthew Vick22a4cca2012-07-12 00:02:42 +00003181 e1000e_write_itr(adapter, adapter->itr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003182
3183 ctrl_ext = er32(CTRL_EXT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003184 /* Auto-Mask interrupts upon ICR access */
3185 ctrl_ext |= E1000_CTRL_EXT_IAME;
3186 ew32(IAM, 0xffffffff);
3187 ew32(CTRL_EXT, ctrl_ext);
3188 e1e_flush();
3189
Bruce Allane921eb12012-11-28 09:28:37 +00003190 /* Setup the HW Rx Head and Tail Descriptor Pointers and
Bruce Allanad680762008-03-28 09:15:03 -07003191 * the Base and Length of the Rx Descriptor Ring
3192 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003193 rdba = rx_ring->dma;
Bruce Allan1e360522012-03-20 03:48:13 +00003194 ew32(RDBAL(0), (rdba & DMA_BIT_MASK(32)));
3195 ew32(RDBAH(0), (rdba >> 32));
3196 ew32(RDLEN(0), rdlen);
3197 ew32(RDH(0), 0);
3198 ew32(RDT(0), 0);
3199 rx_ring->head = adapter->hw.hw_addr + E1000_RDH(0);
3200 rx_ring->tail = adapter->hw.hw_addr + E1000_RDT(0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003201
3202 /* Enable Receive Checksum Offload for TCP and UDP */
3203 rxcsum = er32(RXCSUM);
Bruce Allan2e1706f2012-06-30 20:02:42 +00003204 if (adapter->netdev->features & NETIF_F_RXCSUM)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003205 rxcsum |= E1000_RXCSUM_TUOFL;
Bruce Allan2e1706f2012-06-30 20:02:42 +00003206 else
Auke Kokbc7f75f2007-09-17 12:30:59 -07003207 rxcsum &= ~E1000_RXCSUM_TUOFL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003208 ew32(RXCSUM, rxcsum);
3209
Bruce Allan3e35d992013-01-12 07:25:22 +00003210 /* With jumbo frames, excessive C-state transition latencies result
3211 * in dropped transactions.
3212 */
3213 if (adapter->netdev->mtu > ETH_DATA_LEN) {
3214 u32 lat =
3215 ((er32(PBA) & E1000_PBA_RXA_MASK) * 1024 -
3216 adapter->max_frame_size) * 8 / 1000;
3217
3218 if (adapter->flags & FLAG_IS_ICH) {
Bruce Allan53ec5492009-11-20 23:27:40 +00003219 u32 rxdctl = er32(RXDCTL(0));
3220 ew32(RXDCTL(0), rxdctl | 0x3);
Bruce Allan53ec5492009-11-20 23:27:40 +00003221 }
Bruce Allan3e35d992013-01-12 07:25:22 +00003222
3223 pm_qos_update_request(&adapter->netdev->pm_qos_req, lat);
3224 } else {
3225 pm_qos_update_request(&adapter->netdev->pm_qos_req,
3226 PM_QOS_DEFAULT_VALUE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003227 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003228
3229 /* Enable Receives */
3230 ew32(RCTL, rctl);
3231}
3232
3233/**
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003234 * e1000e_write_mc_addr_list - write multicast addresses to MTA
Auke Kokbc7f75f2007-09-17 12:30:59 -07003235 * @netdev: network interface device structure
3236 *
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003237 * Writes multicast address list to the MTA hash table.
3238 * Returns: -ENOMEM on failure
3239 * 0 on no addresses written
3240 * X on writing X addresses to MTA
3241 */
3242static int e1000e_write_mc_addr_list(struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003243{
3244 struct e1000_adapter *adapter = netdev_priv(netdev);
3245 struct e1000_hw *hw = &adapter->hw;
Jiri Pirko22bedad32010-04-01 21:22:57 +00003246 struct netdev_hw_addr *ha;
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003247 u8 *mta_list;
3248 int i;
3249
3250 if (netdev_mc_empty(netdev)) {
3251 /* nothing to program, so clear mc list */
3252 hw->mac.ops.update_mc_addr_list(hw, NULL, 0);
3253 return 0;
3254 }
3255
3256 mta_list = kzalloc(netdev_mc_count(netdev) * ETH_ALEN, GFP_ATOMIC);
3257 if (!mta_list)
3258 return -ENOMEM;
3259
3260 /* update_mc_addr_list expects a packed array of only addresses. */
3261 i = 0;
3262 netdev_for_each_mc_addr(ha, netdev)
Bruce Allanf0ff4392013-02-20 04:05:39 +00003263 memcpy(mta_list + (i++ * ETH_ALEN), ha->addr, ETH_ALEN);
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003264
3265 hw->mac.ops.update_mc_addr_list(hw, mta_list, i);
3266 kfree(mta_list);
3267
3268 return netdev_mc_count(netdev);
3269}
3270
3271/**
3272 * e1000e_write_uc_addr_list - write unicast addresses to RAR table
3273 * @netdev: network interface device structure
3274 *
3275 * Writes unicast address list to the RAR table.
3276 * Returns: -ENOMEM on failure/insufficient address space
3277 * 0 on no addresses written
3278 * X on writing X addresses to the RAR table
3279 **/
3280static int e1000e_write_uc_addr_list(struct net_device *netdev)
3281{
3282 struct e1000_adapter *adapter = netdev_priv(netdev);
3283 struct e1000_hw *hw = &adapter->hw;
3284 unsigned int rar_entries = hw->mac.rar_entry_count;
3285 int count = 0;
3286
3287 /* save a rar entry for our hardware address */
3288 rar_entries--;
3289
3290 /* save a rar entry for the LAA workaround */
3291 if (adapter->flags & FLAG_RESET_OVERWRITES_LAA)
3292 rar_entries--;
3293
3294 /* return ENOMEM indicating insufficient memory for addresses */
3295 if (netdev_uc_count(netdev) > rar_entries)
3296 return -ENOMEM;
3297
3298 if (!netdev_uc_empty(netdev) && rar_entries) {
3299 struct netdev_hw_addr *ha;
3300
Bruce Allane921eb12012-11-28 09:28:37 +00003301 /* write the addresses in reverse order to avoid write
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003302 * combining
3303 */
3304 netdev_for_each_uc_addr(ha, netdev) {
3305 if (!rar_entries)
3306 break;
Bruce Allan69e1e012012-04-14 03:28:50 +00003307 hw->mac.ops.rar_set(hw, ha->addr, rar_entries--);
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003308 count++;
3309 }
3310 }
3311
3312 /* zero out the remaining RAR entries not used above */
3313 for (; rar_entries > 0; rar_entries--) {
3314 ew32(RAH(rar_entries), 0);
3315 ew32(RAL(rar_entries), 0);
3316 }
3317 e1e_flush();
3318
3319 return count;
3320}
3321
3322/**
3323 * e1000e_set_rx_mode - secondary unicast, Multicast and Promiscuous mode set
3324 * @netdev: network interface device structure
3325 *
3326 * The ndo_set_rx_mode entry point is called whenever the unicast or multicast
3327 * address list or the network interface flags are updated. This routine is
3328 * responsible for configuring the hardware for proper unicast, multicast,
3329 * promiscuous mode, and all-multi behavior.
3330 **/
3331static void e1000e_set_rx_mode(struct net_device *netdev)
3332{
3333 struct e1000_adapter *adapter = netdev_priv(netdev);
3334 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003335 u32 rctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003336
3337 /* Check for Promiscuous and All Multicast modes */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003338 rctl = er32(RCTL);
3339
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003340 /* clear the affected bits */
3341 rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE);
3342
Auke Kokbc7f75f2007-09-17 12:30:59 -07003343 if (netdev->flags & IFF_PROMISC) {
3344 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Jeff Kirsher86d70e52011-03-25 16:01:01 +00003345 /* Do not hardware filter VLANs in promisc mode */
3346 e1000e_vlan_filter_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003347 } else {
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003348 int count;
Bruce Allan3d3a1672012-02-23 03:13:18 +00003349
Patrick McHardy746b9f02008-07-16 20:15:45 -07003350 if (netdev->flags & IFF_ALLMULTI) {
3351 rctl |= E1000_RCTL_MPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003352 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00003353 /* Write addresses to the MTA, if the attempt fails
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003354 * then we should just turn on promiscuous mode so
3355 * that we can at least receive multicast traffic
3356 */
3357 count = e1000e_write_mc_addr_list(netdev);
3358 if (count < 0)
3359 rctl |= E1000_RCTL_MPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003360 }
Jeff Kirsher86d70e52011-03-25 16:01:01 +00003361 e1000e_vlan_filter_enable(adapter);
Bruce Allane921eb12012-11-28 09:28:37 +00003362 /* Write addresses to available RAR registers, if there is not
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003363 * sufficient space to store all the addresses then enable
3364 * unicast promiscuous mode
3365 */
3366 count = e1000e_write_uc_addr_list(netdev);
3367 if (count < 0)
3368 rctl |= E1000_RCTL_UPE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003369 }
3370
3371 ew32(RCTL, rctl);
3372
Patrick McHardyf6469682013-04-19 02:04:27 +00003373 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
Jeff Kirsher86d70e52011-03-25 16:01:01 +00003374 e1000e_vlan_strip_enable(adapter);
3375 else
3376 e1000e_vlan_strip_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003377}
3378
Bruce Allan70495a52012-01-11 01:26:50 +00003379static void e1000e_setup_rss_hash(struct e1000_adapter *adapter)
3380{
3381 struct e1000_hw *hw = &adapter->hw;
3382 u32 mrqc, rxcsum;
3383 int i;
3384 static const u32 rsskey[10] = {
3385 0xda565a6d, 0xc20e5b25, 0x3d256741, 0xb08fa343, 0xcb2bcad0,
3386 0xb4307bae, 0xa32dcb77, 0x0cf23080, 0x3bb7426a, 0xfa01acbe
3387 };
3388
3389 /* Fill out hash function seed */
3390 for (i = 0; i < 10; i++)
3391 ew32(RSSRK(i), rsskey[i]);
3392
3393 /* Direct all traffic to queue 0 */
3394 for (i = 0; i < 32; i++)
3395 ew32(RETA(i), 0);
3396
Bruce Allane921eb12012-11-28 09:28:37 +00003397 /* Disable raw packet checksumming so that RSS hash is placed in
Bruce Allan70495a52012-01-11 01:26:50 +00003398 * descriptor on writeback.
3399 */
3400 rxcsum = er32(RXCSUM);
3401 rxcsum |= E1000_RXCSUM_PCSD;
3402
3403 ew32(RXCSUM, rxcsum);
3404
3405 mrqc = (E1000_MRQC_RSS_FIELD_IPV4 |
3406 E1000_MRQC_RSS_FIELD_IPV4_TCP |
3407 E1000_MRQC_RSS_FIELD_IPV6 |
3408 E1000_MRQC_RSS_FIELD_IPV6_TCP |
3409 E1000_MRQC_RSS_FIELD_IPV6_TCP_EX);
3410
3411 ew32(MRQC, mrqc);
3412}
3413
Auke Kokbc7f75f2007-09-17 12:30:59 -07003414/**
Bruce Allanb67e1912012-12-27 08:32:33 +00003415 * e1000e_get_base_timinca - get default SYSTIM time increment attributes
3416 * @adapter: board private structure
3417 * @timinca: pointer to returned time increment attributes
3418 *
3419 * Get attributes for incrementing the System Time Register SYSTIML/H at
3420 * the default base frequency, and set the cyclecounter shift value.
3421 **/
Bruce Alland89777b2013-01-19 01:09:58 +00003422s32 e1000e_get_base_timinca(struct e1000_adapter *adapter, u32 *timinca)
Bruce Allanb67e1912012-12-27 08:32:33 +00003423{
3424 struct e1000_hw *hw = &adapter->hw;
3425 u32 incvalue, incperiod, shift;
3426
3427 /* Make sure clock is enabled on I217 before checking the frequency */
3428 if ((hw->mac.type == e1000_pch_lpt) &&
3429 !(er32(TSYNCTXCTL) & E1000_TSYNCTXCTL_ENABLED) &&
3430 !(er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_ENABLED)) {
3431 u32 fextnvm7 = er32(FEXTNVM7);
3432
3433 if (!(fextnvm7 & (1 << 0))) {
3434 ew32(FEXTNVM7, fextnvm7 | (1 << 0));
3435 e1e_flush();
3436 }
3437 }
3438
3439 switch (hw->mac.type) {
3440 case e1000_pch2lan:
3441 case e1000_pch_lpt:
3442 /* On I217, the clock frequency is 25MHz or 96MHz as
3443 * indicated by the System Clock Frequency Indication
3444 */
3445 if ((hw->mac.type != e1000_pch_lpt) ||
3446 (er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_SYSCFI)) {
3447 /* Stable 96MHz frequency */
3448 incperiod = INCPERIOD_96MHz;
3449 incvalue = INCVALUE_96MHz;
3450 shift = INCVALUE_SHIFT_96MHz;
3451 adapter->cc.shift = shift + INCPERIOD_SHIFT_96MHz;
3452 break;
3453 }
3454 /* fall-through */
3455 case e1000_82574:
3456 case e1000_82583:
3457 /* Stable 25MHz frequency */
3458 incperiod = INCPERIOD_25MHz;
3459 incvalue = INCVALUE_25MHz;
3460 shift = INCVALUE_SHIFT_25MHz;
3461 adapter->cc.shift = shift;
3462 break;
3463 default:
3464 return -EINVAL;
3465 }
3466
3467 *timinca = ((incperiod << E1000_TIMINCA_INCPERIOD_SHIFT) |
3468 ((incvalue << shift) & E1000_TIMINCA_INCVALUE_MASK));
3469
3470 return 0;
3471}
3472
3473/**
3474 * e1000e_config_hwtstamp - configure the hwtstamp registers and enable/disable
3475 * @adapter: board private structure
3476 *
3477 * Outgoing time stamping can be enabled and disabled. Play nice and
3478 * disable it when requested, although it shouldn't cause any overhead
3479 * when no packet needs it. At most one packet in the queue may be
3480 * marked for time stamping, otherwise it would be impossible to tell
3481 * for sure to which packet the hardware time stamp belongs.
3482 *
3483 * Incoming time stamping has to be configured via the hardware filters.
3484 * Not all combinations are supported, in particular event type has to be
3485 * specified. Matching the kind of event packet is not supported, with the
3486 * exception of "all V2 events regardless of level 2 or 4".
3487 **/
Ben Hutchings62d7e3a2013-11-14 00:41:38 +00003488static int e1000e_config_hwtstamp(struct e1000_adapter *adapter,
3489 struct hwtstamp_config *config)
Bruce Allanb67e1912012-12-27 08:32:33 +00003490{
3491 struct e1000_hw *hw = &adapter->hw;
Bruce Allanb67e1912012-12-27 08:32:33 +00003492 u32 tsync_tx_ctl = E1000_TSYNCTXCTL_ENABLED;
3493 u32 tsync_rx_ctl = E1000_TSYNCRXCTL_ENABLED;
Bruce Alland89777b2013-01-19 01:09:58 +00003494 u32 rxmtrl = 0;
3495 u16 rxudp = 0;
3496 bool is_l4 = false;
3497 bool is_l2 = false;
Bruce Allanb67e1912012-12-27 08:32:33 +00003498 u32 regval;
3499 s32 ret_val;
3500
3501 if (!(adapter->flags & FLAG_HAS_HW_TIMESTAMP))
3502 return -EINVAL;
3503
3504 /* flags reserved for future extensions - must be zero */
3505 if (config->flags)
3506 return -EINVAL;
3507
3508 switch (config->tx_type) {
3509 case HWTSTAMP_TX_OFF:
3510 tsync_tx_ctl = 0;
3511 break;
3512 case HWTSTAMP_TX_ON:
3513 break;
3514 default:
3515 return -ERANGE;
3516 }
3517
3518 switch (config->rx_filter) {
3519 case HWTSTAMP_FILTER_NONE:
3520 tsync_rx_ctl = 0;
3521 break;
Bruce Alland89777b2013-01-19 01:09:58 +00003522 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
3523 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1;
3524 rxmtrl = E1000_RXMTRL_PTP_V1_SYNC_MESSAGE;
3525 is_l4 = true;
3526 break;
3527 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
3528 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1;
3529 rxmtrl = E1000_RXMTRL_PTP_V1_DELAY_REQ_MESSAGE;
3530 is_l4 = true;
3531 break;
3532 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
3533 /* Also time stamps V2 L2 Path Delay Request/Response */
3534 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_V2;
3535 rxmtrl = E1000_RXMTRL_PTP_V2_SYNC_MESSAGE;
3536 is_l2 = true;
3537 break;
3538 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
3539 /* Also time stamps V2 L2 Path Delay Request/Response. */
3540 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_V2;
3541 rxmtrl = E1000_RXMTRL_PTP_V2_DELAY_REQ_MESSAGE;
3542 is_l2 = true;
3543 break;
3544 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
3545 /* Hardware cannot filter just V2 L4 Sync messages;
3546 * fall-through to V2 (both L2 and L4) Sync.
3547 */
3548 case HWTSTAMP_FILTER_PTP_V2_SYNC:
3549 /* Also time stamps V2 Path Delay Request/Response. */
3550 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_L4_V2;
3551 rxmtrl = E1000_RXMTRL_PTP_V2_SYNC_MESSAGE;
3552 is_l2 = true;
3553 is_l4 = true;
3554 break;
3555 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
3556 /* Hardware cannot filter just V2 L4 Delay Request messages;
3557 * fall-through to V2 (both L2 and L4) Delay Request.
3558 */
3559 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
3560 /* Also time stamps V2 Path Delay Request/Response. */
3561 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_L4_V2;
3562 rxmtrl = E1000_RXMTRL_PTP_V2_DELAY_REQ_MESSAGE;
3563 is_l2 = true;
3564 is_l4 = true;
3565 break;
3566 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
3567 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
3568 /* Hardware cannot filter just V2 L4 or L2 Event messages;
3569 * fall-through to all V2 (both L2 and L4) Events.
3570 */
3571 case HWTSTAMP_FILTER_PTP_V2_EVENT:
3572 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_EVENT_V2;
3573 config->rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
3574 is_l2 = true;
3575 is_l4 = true;
3576 break;
3577 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
3578 /* For V1, the hardware can only filter Sync messages or
3579 * Delay Request messages but not both so fall-through to
3580 * time stamp all packets.
3581 */
Bruce Allanb67e1912012-12-27 08:32:33 +00003582 case HWTSTAMP_FILTER_ALL:
Bruce Alland89777b2013-01-19 01:09:58 +00003583 is_l2 = true;
3584 is_l4 = true;
Bruce Allanb67e1912012-12-27 08:32:33 +00003585 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_ALL;
3586 config->rx_filter = HWTSTAMP_FILTER_ALL;
3587 break;
3588 default:
3589 return -ERANGE;
3590 }
3591
Ben Hutchings62d7e3a2013-11-14 00:41:38 +00003592 adapter->hwtstamp_config = *config;
3593
Bruce Allanb67e1912012-12-27 08:32:33 +00003594 /* enable/disable Tx h/w time stamping */
3595 regval = er32(TSYNCTXCTL);
3596 regval &= ~E1000_TSYNCTXCTL_ENABLED;
3597 regval |= tsync_tx_ctl;
3598 ew32(TSYNCTXCTL, regval);
3599 if ((er32(TSYNCTXCTL) & E1000_TSYNCTXCTL_ENABLED) !=
3600 (regval & E1000_TSYNCTXCTL_ENABLED)) {
3601 e_err("Timesync Tx Control register not set as expected\n");
3602 return -EAGAIN;
3603 }
3604
3605 /* enable/disable Rx h/w time stamping */
3606 regval = er32(TSYNCRXCTL);
3607 regval &= ~(E1000_TSYNCRXCTL_ENABLED | E1000_TSYNCRXCTL_TYPE_MASK);
3608 regval |= tsync_rx_ctl;
3609 ew32(TSYNCRXCTL, regval);
3610 if ((er32(TSYNCRXCTL) & (E1000_TSYNCRXCTL_ENABLED |
3611 E1000_TSYNCRXCTL_TYPE_MASK)) !=
3612 (regval & (E1000_TSYNCRXCTL_ENABLED |
3613 E1000_TSYNCRXCTL_TYPE_MASK))) {
3614 e_err("Timesync Rx Control register not set as expected\n");
3615 return -EAGAIN;
3616 }
3617
Bruce Alland89777b2013-01-19 01:09:58 +00003618 /* L2: define ethertype filter for time stamped packets */
3619 if (is_l2)
3620 rxmtrl |= ETH_P_1588;
3621
3622 /* define which PTP packets get time stamped */
3623 ew32(RXMTRL, rxmtrl);
3624
3625 /* Filter by destination port */
3626 if (is_l4) {
3627 rxudp = PTP_EV_PORT;
3628 cpu_to_be16s(&rxudp);
3629 }
3630 ew32(RXUDP, rxudp);
3631
3632 e1e_flush();
3633
Bruce Allanb67e1912012-12-27 08:32:33 +00003634 /* Clear TSYNCRXCTL_VALID & TSYNCTXCTL_VALID bit */
Bruce Allan70806a72013-01-05 05:08:37 +00003635 er32(RXSTMPH);
3636 er32(TXSTMPH);
Bruce Allanb67e1912012-12-27 08:32:33 +00003637
3638 /* Get and set the System Time Register SYSTIM base frequency */
3639 ret_val = e1000e_get_base_timinca(adapter, &regval);
3640 if (ret_val)
3641 return ret_val;
3642 ew32(TIMINCA, regval);
3643
3644 /* reset the ns time counter */
3645 timecounter_init(&adapter->tc, &adapter->cc,
3646 ktime_to_ns(ktime_get_real()));
3647
3648 return 0;
3649}
3650
3651/**
Bruce Allanad680762008-03-28 09:15:03 -07003652 * e1000_configure - configure the hardware for Rx and Tx
Auke Kokbc7f75f2007-09-17 12:30:59 -07003653 * @adapter: private board structure
3654 **/
3655static void e1000_configure(struct e1000_adapter *adapter)
3656{
Bruce Allan55aa6982011-12-16 00:45:45 +00003657 struct e1000_ring *rx_ring = adapter->rx_ring;
3658
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003659 e1000e_set_rx_mode(adapter->netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003660
3661 e1000_restore_vlan(adapter);
Bruce Allancd791612010-05-10 14:59:51 +00003662 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003663
3664 e1000_configure_tx(adapter);
Bruce Allan70495a52012-01-11 01:26:50 +00003665
3666 if (adapter->netdev->features & NETIF_F_RXHASH)
3667 e1000e_setup_rss_hash(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003668 e1000_setup_rctl(adapter);
3669 e1000_configure_rx(adapter);
Bruce Allan55aa6982011-12-16 00:45:45 +00003670 adapter->alloc_rx_buf(rx_ring, e1000_desc_unused(rx_ring), GFP_KERNEL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003671}
3672
3673/**
3674 * e1000e_power_up_phy - restore link in case the phy was powered down
3675 * @adapter: address of board private structure
3676 *
3677 * The phy may be powered down to save power and turn off link when the
3678 * driver is unloaded and wake on lan is not enabled (among others)
3679 * *** this routine MUST be followed by a call to e1000e_reset ***
3680 **/
3681void e1000e_power_up_phy(struct e1000_adapter *adapter)
3682{
Bruce Allan17f208d2009-12-01 15:47:22 +00003683 if (adapter->hw.phy.ops.power_up)
3684 adapter->hw.phy.ops.power_up(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003685
3686 adapter->hw.mac.ops.setup_link(&adapter->hw);
3687}
3688
3689/**
3690 * e1000_power_down_phy - Power down the PHY
3691 *
Bruce Allan17f208d2009-12-01 15:47:22 +00003692 * Power down the PHY so no link is implied when interface is down.
3693 * The PHY cannot be powered down if management or WoL is active.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003694 */
3695static void e1000_power_down_phy(struct e1000_adapter *adapter)
3696{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003697 /* WoL is enabled */
Auke Kok23b66e22008-02-11 09:25:51 -08003698 if (adapter->wol)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003699 return;
3700
Bruce Allan17f208d2009-12-01 15:47:22 +00003701 if (adapter->hw.phy.ops.power_down)
3702 adapter->hw.phy.ops.power_down(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003703}
3704
3705/**
3706 * e1000e_reset - bring the hardware into a known good state
3707 *
3708 * This function boots the hardware and enables some settings that
3709 * require a configuration cycle of the hardware - those cannot be
3710 * set/changed during runtime. After reset the device needs to be
Bruce Allanad680762008-03-28 09:15:03 -07003711 * properly configured for Rx, Tx etc.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003712 */
3713void e1000e_reset(struct e1000_adapter *adapter)
3714{
3715 struct e1000_mac_info *mac = &adapter->hw.mac;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003716 struct e1000_fc_info *fc = &adapter->hw.fc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003717 struct e1000_hw *hw = &adapter->hw;
3718 u32 tx_space, min_tx_space, min_rx_space;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003719 u32 pba = adapter->pba;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003720 u16 hwm;
3721
Bruce Allanad680762008-03-28 09:15:03 -07003722 /* reset Packet Buffer Allocation to default */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003723 ew32(PBA, pba);
Auke Kokdf762462007-10-25 13:57:53 -07003724
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003725 if (adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allane921eb12012-11-28 09:28:37 +00003726 /* To maintain wire speed transmits, the Tx FIFO should be
Auke Kokbc7f75f2007-09-17 12:30:59 -07003727 * large enough to accommodate two full transmit packets,
3728 * rounded up to the next 1KB and expressed in KB. Likewise,
3729 * the Rx FIFO should be large enough to accommodate at least
3730 * one full receive packet and is similarly rounded up and
Bruce Allanad680762008-03-28 09:15:03 -07003731 * expressed in KB.
3732 */
Auke Kokdf762462007-10-25 13:57:53 -07003733 pba = er32(PBA);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003734 /* upper 16 bits has Tx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003735 tx_space = pba >> 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003736 /* lower 16 bits has Rx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003737 pba &= 0xffff;
Bruce Allane921eb12012-11-28 09:28:37 +00003738 /* the Tx fifo also stores 16 bytes of information about the Tx
Bruce Allanad680762008-03-28 09:15:03 -07003739 * but don't include ethernet FCS because hardware appends it
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003740 */
3741 min_tx_space = (adapter->max_frame_size +
Bruce Allane5fe2542013-02-20 04:06:27 +00003742 sizeof(struct e1000_tx_desc) - ETH_FCS_LEN) * 2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003743 min_tx_space = ALIGN(min_tx_space, 1024);
3744 min_tx_space >>= 10;
3745 /* software strips receive CRC, so leave room for it */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003746 min_rx_space = adapter->max_frame_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003747 min_rx_space = ALIGN(min_rx_space, 1024);
3748 min_rx_space >>= 10;
3749
Bruce Allane921eb12012-11-28 09:28:37 +00003750 /* If current Tx allocation is less than the min Tx FIFO size,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003751 * and the min Tx FIFO size is less than the current Rx FIFO
Bruce Allanad680762008-03-28 09:15:03 -07003752 * allocation, take space away from current Rx allocation
3753 */
Auke Kokdf762462007-10-25 13:57:53 -07003754 if ((tx_space < min_tx_space) &&
3755 ((min_tx_space - tx_space) < pba)) {
3756 pba -= min_tx_space - tx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003757
Bruce Allane921eb12012-11-28 09:28:37 +00003758 /* if short on Rx space, Rx wins and must trump Tx
Bruce Allan419e5512012-08-17 06:18:02 +00003759 * adjustment
Bruce Allanad680762008-03-28 09:15:03 -07003760 */
Bruce Allan79d4e902011-12-16 00:46:27 +00003761 if (pba < min_rx_space)
Auke Kokdf762462007-10-25 13:57:53 -07003762 pba = min_rx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003763 }
Auke Kokdf762462007-10-25 13:57:53 -07003764
3765 ew32(PBA, pba);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003766 }
3767
Bruce Allane921eb12012-11-28 09:28:37 +00003768 /* flow control settings
Bruce Allanad680762008-03-28 09:15:03 -07003769 *
Bruce Allan38eb3942009-11-19 12:34:20 +00003770 * The high water mark must be low enough to fit one full frame
Auke Kokbc7f75f2007-09-17 12:30:59 -07003771 * (or the size used for early receive) above it in the Rx FIFO.
3772 * Set it to the lower of:
3773 * - 90% of the Rx FIFO size, and
Bruce Allan38eb3942009-11-19 12:34:20 +00003774 * - the full Rx FIFO size minus one full frame
Bruce Allanad680762008-03-28 09:15:03 -07003775 */
Bruce Alland3738bb2010-06-16 13:27:28 +00003776 if (adapter->flags & FLAG_DISABLE_FC_PAUSE_TIME)
3777 fc->pause_time = 0xFFFF;
3778 else
3779 fc->pause_time = E1000_FC_PAUSE_TIME;
Bruce Allanb20caa82012-02-22 09:03:03 +00003780 fc->send_xon = true;
Bruce Alland3738bb2010-06-16 13:27:28 +00003781 fc->current_mode = fc->requested_mode;
3782
3783 switch (hw->mac.type) {
Bruce Allan79d4e902011-12-16 00:46:27 +00003784 case e1000_ich9lan:
3785 case e1000_ich10lan:
3786 if (adapter->netdev->mtu > ETH_DATA_LEN) {
3787 pba = 14;
3788 ew32(PBA, pba);
3789 fc->high_water = 0x2800;
3790 fc->low_water = fc->high_water - 8;
3791 break;
3792 }
3793 /* fall-through */
Bruce Alland3738bb2010-06-16 13:27:28 +00003794 default:
Bruce Allan79d4e902011-12-16 00:46:27 +00003795 hwm = min(((pba << 10) * 9 / 10),
3796 ((pba << 10) - adapter->max_frame_size));
Bruce Alland3738bb2010-06-16 13:27:28 +00003797
Bruce Allane80bd1d2013-05-01 01:19:46 +00003798 fc->high_water = hwm & E1000_FCRTH_RTH; /* 8-byte granularity */
Bruce Alland3738bb2010-06-16 13:27:28 +00003799 fc->low_water = fc->high_water - 8;
3800 break;
3801 case e1000_pchlan:
Bruce Allane921eb12012-11-28 09:28:37 +00003802 /* Workaround PCH LOM adapter hangs with certain network
Bruce Allan38eb3942009-11-19 12:34:20 +00003803 * loads. If hangs persist, try disabling Tx flow control.
3804 */
3805 if (adapter->netdev->mtu > ETH_DATA_LEN) {
3806 fc->high_water = 0x3500;
Bruce Allane80bd1d2013-05-01 01:19:46 +00003807 fc->low_water = 0x1500;
Bruce Allan38eb3942009-11-19 12:34:20 +00003808 } else {
3809 fc->high_water = 0x5000;
Bruce Allane80bd1d2013-05-01 01:19:46 +00003810 fc->low_water = 0x3000;
Bruce Allan38eb3942009-11-19 12:34:20 +00003811 }
Bruce Allana3055952010-05-10 15:02:12 +00003812 fc->refresh_time = 0x1000;
Bruce Alland3738bb2010-06-16 13:27:28 +00003813 break;
3814 case e1000_pch2lan:
Bruce Allan2fbe4522012-04-19 03:21:47 +00003815 case e1000_pch_lpt:
Bruce Alland3738bb2010-06-16 13:27:28 +00003816 fc->refresh_time = 0x0400;
Bruce Allan347b5202012-12-08 00:35:35 +00003817
3818 if (adapter->netdev->mtu <= ETH_DATA_LEN) {
3819 fc->high_water = 0x05C20;
3820 fc->low_water = 0x05048;
3821 fc->pause_time = 0x0650;
3822 break;
Bruce Allan828bac82010-09-29 21:39:37 +00003823 }
Bruce Allan347b5202012-12-08 00:35:35 +00003824
Bruce Allance345e02013-06-21 09:07:07 +00003825 pba = 14;
3826 ew32(PBA, pba);
Bruce Allan347b5202012-12-08 00:35:35 +00003827 fc->high_water = ((pba << 10) * 9 / 10) & E1000_FCRTH_RTH;
3828 fc->low_water = ((pba << 10) * 8 / 10) & E1000_FCRTL_RTL;
Bruce Alland3738bb2010-06-16 13:27:28 +00003829 break;
Bruce Allan38eb3942009-11-19 12:34:20 +00003830 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003831
Bruce Allane921eb12012-11-28 09:28:37 +00003832 /* Alignment of Tx data is on an arbitrary byte boundary with the
Bruce Alland821a4c2012-08-24 20:38:11 +00003833 * maximum size per Tx descriptor limited only to the transmit
3834 * allocation of the packet buffer minus 96 bytes with an upper
3835 * limit of 24KB due to receive synchronization limitations.
3836 */
3837 adapter->tx_fifo_limit = min_t(u32, ((er32(PBA) >> 16) << 10) - 96,
3838 24 << 10);
3839
Bruce Allane921eb12012-11-28 09:28:37 +00003840 /* Disable Adaptive Interrupt Moderation if 2 full packets cannot
Bruce Allan79d4e902011-12-16 00:46:27 +00003841 * fit in receive buffer.
Bruce Allan828bac82010-09-29 21:39:37 +00003842 */
3843 if (adapter->itr_setting & 0x3) {
Bruce Allan79d4e902011-12-16 00:46:27 +00003844 if ((adapter->max_frame_size * 2) > (pba << 10)) {
Bruce Allan828bac82010-09-29 21:39:37 +00003845 if (!(adapter->flags2 & FLAG2_DISABLE_AIM)) {
3846 dev_info(&adapter->pdev->dev,
Bruce Allan17e813e2013-02-20 04:06:01 +00003847 "Interrupt Throttle Rate off\n");
Bruce Allan828bac82010-09-29 21:39:37 +00003848 adapter->flags2 |= FLAG2_DISABLE_AIM;
Matthew Vick22a4cca2012-07-12 00:02:42 +00003849 e1000e_write_itr(adapter, 0);
Bruce Allan828bac82010-09-29 21:39:37 +00003850 }
3851 } else if (adapter->flags2 & FLAG2_DISABLE_AIM) {
3852 dev_info(&adapter->pdev->dev,
Bruce Allan17e813e2013-02-20 04:06:01 +00003853 "Interrupt Throttle Rate on\n");
Bruce Allan828bac82010-09-29 21:39:37 +00003854 adapter->flags2 &= ~FLAG2_DISABLE_AIM;
3855 adapter->itr = 20000;
Matthew Vick22a4cca2012-07-12 00:02:42 +00003856 e1000e_write_itr(adapter, adapter->itr);
Bruce Allan828bac82010-09-29 21:39:37 +00003857 }
3858 }
3859
Auke Kokbc7f75f2007-09-17 12:30:59 -07003860 /* Allow time for pending master requests to run */
3861 mac->ops.reset_hw(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003862
Bruce Allane921eb12012-11-28 09:28:37 +00003863 /* For parts with AMT enabled, let the firmware know
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003864 * that the network interface is in control
3865 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07003866 if (adapter->flags & FLAG_HAS_AMT)
Bruce Allan31dbe5b2011-01-06 14:29:52 +00003867 e1000e_get_hw_control(adapter);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003868
Auke Kokbc7f75f2007-09-17 12:30:59 -07003869 ew32(WUC, 0);
3870
3871 if (mac->ops.init_hw(hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003872 e_err("Hardware Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003873
3874 e1000_update_mng_vlan(adapter);
3875
3876 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
3877 ew32(VET, ETH_P_8021Q);
3878
3879 e1000e_reset_adaptive(hw);
Bruce Allan31dbe5b2011-01-06 14:29:52 +00003880
Bruce Allanb67e1912012-12-27 08:32:33 +00003881 /* initialize systim and reset the ns time counter */
Ben Hutchings62d7e3a2013-11-14 00:41:38 +00003882 e1000e_config_hwtstamp(adapter, &adapter->hwtstamp_config);
Bruce Allanb67e1912012-12-27 08:32:33 +00003883
Bruce Alland495bcb2013-03-20 07:23:11 +00003884 /* Set EEE advertisement as appropriate */
3885 if (adapter->flags2 & FLAG2_HAS_EEE) {
3886 s32 ret_val;
3887 u16 adv_addr;
3888
3889 switch (hw->phy.type) {
3890 case e1000_phy_82579:
3891 adv_addr = I82579_EEE_ADVERTISEMENT;
3892 break;
3893 case e1000_phy_i217:
3894 adv_addr = I217_EEE_ADVERTISEMENT;
3895 break;
3896 default:
3897 dev_err(&adapter->pdev->dev,
3898 "Invalid PHY type setting EEE advertisement\n");
3899 return;
3900 }
3901
3902 ret_val = hw->phy.ops.acquire(hw);
3903 if (ret_val) {
3904 dev_err(&adapter->pdev->dev,
3905 "EEE advertisement - unable to acquire PHY\n");
3906 return;
3907 }
3908
3909 e1000_write_emi_reg_locked(hw, adv_addr,
3910 hw->dev_spec.ich8lan.eee_disable ?
3911 0 : adapter->eee_advert);
3912
3913 hw->phy.ops.release(hw);
3914 }
3915
Bruce Allan31dbe5b2011-01-06 14:29:52 +00003916 if (!netif_running(adapter->netdev) &&
3917 !test_bit(__E1000_TESTING, &adapter->state)) {
3918 e1000_power_down_phy(adapter);
3919 return;
3920 }
3921
Auke Kokbc7f75f2007-09-17 12:30:59 -07003922 e1000_get_phy_info(hw);
3923
Bruce Allan918d7192009-06-02 11:28:20 +00003924 if ((adapter->flags & FLAG_HAS_SMART_POWER_DOWN) &&
3925 !(adapter->flags & FLAG_SMART_POWER_DOWN)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003926 u16 phy_data = 0;
Bruce Allane921eb12012-11-28 09:28:37 +00003927 /* speed up time to link by disabling smart power down, ignore
Auke Kokbc7f75f2007-09-17 12:30:59 -07003928 * the return value of this function because there is nothing
Bruce Allanad680762008-03-28 09:15:03 -07003929 * different we would do if it failed
3930 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003931 e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &phy_data);
3932 phy_data &= ~IGP02E1000_PM_SPD;
3933 e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, phy_data);
3934 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003935}
3936
3937int e1000e_up(struct e1000_adapter *adapter)
3938{
3939 struct e1000_hw *hw = &adapter->hw;
3940
3941 /* hardware has been reset, we need to reload some things */
3942 e1000_configure(adapter);
3943
3944 clear_bit(__E1000_DOWN, &adapter->state);
3945
Bruce Allan4662e822008-08-26 18:37:06 -07003946 if (adapter->msix_entries)
3947 e1000_configure_msix(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003948 e1000_irq_enable(adapter);
3949
Bruce Allan400484f2011-05-13 07:20:03 +00003950 netif_start_queue(adapter->netdev);
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003951
Auke Kokbc7f75f2007-09-17 12:30:59 -07003952 /* fire a link change interrupt to start the watchdog */
Bruce Allan52a9b232010-05-10 15:00:10 +00003953 if (adapter->msix_entries)
3954 ew32(ICS, E1000_ICS_LSC | E1000_ICR_OTHER);
3955 else
3956 ew32(ICS, E1000_ICS_LSC);
3957
Auke Kokbc7f75f2007-09-17 12:30:59 -07003958 return 0;
3959}
3960
Jesse Brandeburg713b3c92011-02-02 10:19:50 +00003961static void e1000e_flush_descriptors(struct e1000_adapter *adapter)
3962{
3963 struct e1000_hw *hw = &adapter->hw;
3964
3965 if (!(adapter->flags2 & FLAG2_DMA_BURST))
3966 return;
3967
3968 /* flush pending descriptor writebacks to memory */
3969 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
3970 ew32(RDTR, adapter->rx_int_delay | E1000_RDTR_FPD);
3971
3972 /* execute the writes immediately */
3973 e1e_flush();
Matthew Vickbf030852012-03-16 09:03:00 +00003974
Bruce Allane921eb12012-11-28 09:28:37 +00003975 /* due to rare timing issues, write to TIDV/RDTR again to ensure the
Matthew Vickbf030852012-03-16 09:03:00 +00003976 * write is successful
3977 */
3978 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
3979 ew32(RDTR, adapter->rx_int_delay | E1000_RDTR_FPD);
3980
3981 /* execute the writes immediately */
3982 e1e_flush();
Jesse Brandeburg713b3c92011-02-02 10:19:50 +00003983}
3984
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00003985static void e1000e_update_stats(struct e1000_adapter *adapter);
3986
Auke Kokbc7f75f2007-09-17 12:30:59 -07003987void e1000e_down(struct e1000_adapter *adapter)
3988{
3989 struct net_device *netdev = adapter->netdev;
3990 struct e1000_hw *hw = &adapter->hw;
3991 u32 tctl, rctl;
3992
Bruce Allane921eb12012-11-28 09:28:37 +00003993 /* signal that we're down so the interrupt handler does not
Bruce Allanad680762008-03-28 09:15:03 -07003994 * reschedule our watchdog timer
3995 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003996 set_bit(__E1000_DOWN, &adapter->state);
3997
3998 /* disable receives in the hardware */
3999 rctl = er32(RCTL);
David S. Miller823dcd22011-08-20 10:39:12 -07004000 if (!(adapter->flags2 & FLAG2_NO_DISABLE_RX))
4001 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004002 /* flush and sleep below */
4003
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00004004 netif_stop_queue(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004005
4006 /* disable transmits in the hardware */
4007 tctl = er32(TCTL);
4008 tctl &= ~E1000_TCTL_EN;
4009 ew32(TCTL, tctl);
David S. Miller823dcd22011-08-20 10:39:12 -07004010
Auke Kokbc7f75f2007-09-17 12:30:59 -07004011 /* flush both disables and wait for them to finish */
4012 e1e_flush();
Bruce Allan1bba4382011-03-19 00:27:20 +00004013 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004014
Auke Kokbc7f75f2007-09-17 12:30:59 -07004015 e1000_irq_disable(adapter);
4016
Bruce Allana3b87a42013-04-20 05:37:29 +00004017 napi_synchronize(&adapter->napi);
4018
Auke Kokbc7f75f2007-09-17 12:30:59 -07004019 del_timer_sync(&adapter->watchdog_timer);
4020 del_timer_sync(&adapter->phy_info_timer);
4021
Auke Kokbc7f75f2007-09-17 12:30:59 -07004022 netif_carrier_off(netdev);
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004023
4024 spin_lock(&adapter->stats64_lock);
4025 e1000e_update_stats(adapter);
4026 spin_unlock(&adapter->stats64_lock);
4027
Bruce Allan400484f2011-05-13 07:20:03 +00004028 e1000e_flush_descriptors(adapter);
Bruce Allan55aa6982011-12-16 00:45:45 +00004029 e1000_clean_tx_ring(adapter->tx_ring);
4030 e1000_clean_rx_ring(adapter->rx_ring);
Bruce Allan400484f2011-05-13 07:20:03 +00004031
Auke Kokbc7f75f2007-09-17 12:30:59 -07004032 adapter->link_speed = 0;
4033 adapter->link_duplex = 0;
4034
Bruce Allanda1e20462013-06-21 09:07:02 +00004035 /* Disable Si errata workaround on PCHx for jumbo frame flow */
4036 if ((hw->mac.type >= e1000_pch2lan) &&
4037 (adapter->netdev->mtu > ETH_DATA_LEN) &&
4038 e1000_lv_jumbo_workaround_ich8lan(hw, false))
4039 e_dbg("failed to disable jumbo frame workaround mode\n");
4040
Jeff Kirsher52cc3082008-06-24 17:01:29 -07004041 if (!pci_channel_offline(adapter->pdev))
4042 e1000e_reset(adapter);
Jesse Brandeburg713b3c92011-02-02 10:19:50 +00004043
Bruce Allane921eb12012-11-28 09:28:37 +00004044 /* TODO: for power management, we could drop the link and
Auke Kokbc7f75f2007-09-17 12:30:59 -07004045 * pci_disable_device here.
4046 */
4047}
4048
4049void e1000e_reinit_locked(struct e1000_adapter *adapter)
4050{
4051 might_sleep();
4052 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
Bruce Allan1bba4382011-03-19 00:27:20 +00004053 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004054 e1000e_down(adapter);
4055 e1000e_up(adapter);
4056 clear_bit(__E1000_RESETTING, &adapter->state);
4057}
4058
4059/**
Bruce Allanb67e1912012-12-27 08:32:33 +00004060 * e1000e_cyclecounter_read - read raw cycle counter (used by time counter)
4061 * @cc: cyclecounter structure
4062 **/
4063static cycle_t e1000e_cyclecounter_read(const struct cyclecounter *cc)
4064{
4065 struct e1000_adapter *adapter = container_of(cc, struct e1000_adapter,
4066 cc);
4067 struct e1000_hw *hw = &adapter->hw;
4068 cycle_t systim;
4069
4070 /* latch SYSTIMH on read of SYSTIML */
4071 systim = (cycle_t)er32(SYSTIML);
4072 systim |= (cycle_t)er32(SYSTIMH) << 32;
4073
4074 return systim;
4075}
4076
4077/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004078 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
4079 * @adapter: board private structure to initialize
4080 *
4081 * e1000_sw_init initializes the Adapter private data structure.
4082 * Fields are initialized based on PCI device information and
4083 * OS network device settings (MTU size).
4084 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05004085static int e1000_sw_init(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004086{
Auke Kokbc7f75f2007-09-17 12:30:59 -07004087 struct net_device *netdev = adapter->netdev;
4088
4089 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN;
4090 adapter->rx_ps_bsize0 = 128;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004091 adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
4092 adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN;
Bruce Allan55aa6982011-12-16 00:45:45 +00004093 adapter->tx_ring_count = E1000_DEFAULT_TXD;
4094 adapter->rx_ring_count = E1000_DEFAULT_RXD;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004095
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004096 spin_lock_init(&adapter->stats64_lock);
4097
Bruce Allan4662e822008-08-26 18:37:06 -07004098 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004099
Bruce Allan4662e822008-08-26 18:37:06 -07004100 if (e1000_alloc_queues(adapter))
4101 return -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004102
Bruce Allanb67e1912012-12-27 08:32:33 +00004103 /* Setup hardware time stamping cyclecounter */
4104 if (adapter->flags & FLAG_HAS_HW_TIMESTAMP) {
4105 adapter->cc.read = e1000e_cyclecounter_read;
4106 adapter->cc.mask = CLOCKSOURCE_MASK(64);
4107 adapter->cc.mult = 1;
4108 /* cc.shift set in e1000e_get_base_tininca() */
4109
4110 spin_lock_init(&adapter->systim_lock);
4111 INIT_WORK(&adapter->tx_hwtstamp_work, e1000e_tx_hwtstamp_work);
4112 }
4113
Auke Kokbc7f75f2007-09-17 12:30:59 -07004114 /* Explicitly disable IRQ since the NIC can be in any state. */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004115 e1000_irq_disable(adapter);
4116
Auke Kokbc7f75f2007-09-17 12:30:59 -07004117 set_bit(__E1000_DOWN, &adapter->state);
4118 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004119}
4120
4121/**
Bruce Allanf8d59f72008-08-08 18:36:11 -07004122 * e1000_intr_msi_test - Interrupt Handler
4123 * @irq: interrupt number
4124 * @data: pointer to a network interface device structure
4125 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00004126static irqreturn_t e1000_intr_msi_test(int __always_unused irq, void *data)
Bruce Allanf8d59f72008-08-08 18:36:11 -07004127{
4128 struct net_device *netdev = data;
4129 struct e1000_adapter *adapter = netdev_priv(netdev);
4130 struct e1000_hw *hw = &adapter->hw;
4131 u32 icr = er32(ICR);
4132
Bruce Allan3bb99fe2009-11-20 23:25:07 +00004133 e_dbg("icr is %08X\n", icr);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004134 if (icr & E1000_ICR_RXSEQ) {
4135 adapter->flags &= ~FLAG_MSI_TEST_FAILED;
Bruce Allane921eb12012-11-28 09:28:37 +00004136 /* Force memory writes to complete before acknowledging the
Bruce Allanbc763292012-08-17 06:18:07 +00004137 * interrupt is handled.
4138 */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004139 wmb();
4140 }
4141
4142 return IRQ_HANDLED;
4143}
4144
4145/**
4146 * e1000_test_msi_interrupt - Returns 0 for successful test
4147 * @adapter: board private struct
4148 *
4149 * code flow taken from tg3.c
4150 **/
4151static int e1000_test_msi_interrupt(struct e1000_adapter *adapter)
4152{
4153 struct net_device *netdev = adapter->netdev;
4154 struct e1000_hw *hw = &adapter->hw;
4155 int err;
4156
4157 /* poll_enable hasn't been called yet, so don't need disable */
4158 /* clear any pending events */
4159 er32(ICR);
4160
4161 /* free the real vector and request a test handler */
4162 e1000_free_irq(adapter);
Bruce Allan4662e822008-08-26 18:37:06 -07004163 e1000e_reset_interrupt_capability(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004164
4165 /* Assume that the test fails, if it succeeds then the test
Bruce Allane921eb12012-11-28 09:28:37 +00004166 * MSI irq handler will unset this flag
4167 */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004168 adapter->flags |= FLAG_MSI_TEST_FAILED;
4169
4170 err = pci_enable_msi(adapter->pdev);
4171 if (err)
4172 goto msi_test_failed;
4173
Joe Perchesa0607fd2009-11-18 23:29:17 -08004174 err = request_irq(adapter->pdev->irq, e1000_intr_msi_test, 0,
Bruce Allanf8d59f72008-08-08 18:36:11 -07004175 netdev->name, netdev);
4176 if (err) {
4177 pci_disable_msi(adapter->pdev);
4178 goto msi_test_failed;
4179 }
4180
Bruce Allane921eb12012-11-28 09:28:37 +00004181 /* Force memory writes to complete before enabling and firing an
Bruce Allanbc763292012-08-17 06:18:07 +00004182 * interrupt.
4183 */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004184 wmb();
4185
4186 e1000_irq_enable(adapter);
4187
4188 /* fire an unusual interrupt on the test handler */
4189 ew32(ICS, E1000_ICS_RXSEQ);
4190 e1e_flush();
Prasanna S Panchamukhi569a3af2012-04-19 17:01:00 +00004191 msleep(100);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004192
4193 e1000_irq_disable(adapter);
4194
Bruce Allanbc763292012-08-17 06:18:07 +00004195 rmb(); /* read flags after interrupt has been fired */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004196
4197 if (adapter->flags & FLAG_MSI_TEST_FAILED) {
Bruce Allan4662e822008-08-26 18:37:06 -07004198 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Jean Delvare068e8a32010-09-12 22:45:39 +00004199 e_info("MSI interrupt test failed, using legacy interrupt.\n");
Bruce Allan24b706b2012-01-31 06:37:22 +00004200 } else {
Jean Delvare068e8a32010-09-12 22:45:39 +00004201 e_dbg("MSI interrupt test succeeded!\n");
Bruce Allan24b706b2012-01-31 06:37:22 +00004202 }
Bruce Allanf8d59f72008-08-08 18:36:11 -07004203
4204 free_irq(adapter->pdev->irq, netdev);
4205 pci_disable_msi(adapter->pdev);
4206
Bruce Allanf8d59f72008-08-08 18:36:11 -07004207msi_test_failed:
Bruce Allan4662e822008-08-26 18:37:06 -07004208 e1000e_set_interrupt_capability(adapter);
Jean Delvare068e8a32010-09-12 22:45:39 +00004209 return e1000_request_irq(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004210}
4211
4212/**
4213 * e1000_test_msi - Returns 0 if MSI test succeeds or INTx mode is restored
4214 * @adapter: board private struct
4215 *
4216 * code flow taken from tg3.c, called with e1000 interrupts disabled.
4217 **/
4218static int e1000_test_msi(struct e1000_adapter *adapter)
4219{
4220 int err;
4221 u16 pci_cmd;
4222
4223 if (!(adapter->flags & FLAG_MSI_ENABLED))
4224 return 0;
4225
4226 /* disable SERR in case the MSI write causes a master abort */
4227 pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
Dean Nelson36f24072010-06-29 18:12:05 +00004228 if (pci_cmd & PCI_COMMAND_SERR)
4229 pci_write_config_word(adapter->pdev, PCI_COMMAND,
4230 pci_cmd & ~PCI_COMMAND_SERR);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004231
4232 err = e1000_test_msi_interrupt(adapter);
4233
Dean Nelson36f24072010-06-29 18:12:05 +00004234 /* re-enable SERR */
4235 if (pci_cmd & PCI_COMMAND_SERR) {
4236 pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
4237 pci_cmd |= PCI_COMMAND_SERR;
4238 pci_write_config_word(adapter->pdev, PCI_COMMAND, pci_cmd);
4239 }
Bruce Allanf8d59f72008-08-08 18:36:11 -07004240
Bruce Allanf8d59f72008-08-08 18:36:11 -07004241 return err;
4242}
4243
4244/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004245 * e1000_open - Called when a network interface is made active
4246 * @netdev: network interface device structure
4247 *
4248 * Returns 0 on success, negative value on failure
4249 *
4250 * The open entry point is called when a network interface is made
4251 * active by the system (IFF_UP). At this point all resources needed
4252 * for transmit and receive operations are allocated, the interrupt
4253 * handler is registered with the OS, the watchdog timer is started,
4254 * and the stack is notified that the interface is ready.
4255 **/
4256static int e1000_open(struct net_device *netdev)
4257{
4258 struct e1000_adapter *adapter = netdev_priv(netdev);
4259 struct e1000_hw *hw = &adapter->hw;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004260 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004261 int err;
4262
4263 /* disallow open during test */
4264 if (test_bit(__E1000_TESTING, &adapter->state))
4265 return -EBUSY;
4266
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004267 pm_runtime_get_sync(&pdev->dev);
4268
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00004269 netif_carrier_off(netdev);
4270
Auke Kokbc7f75f2007-09-17 12:30:59 -07004271 /* allocate transmit descriptors */
Bruce Allan55aa6982011-12-16 00:45:45 +00004272 err = e1000e_setup_tx_resources(adapter->tx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004273 if (err)
4274 goto err_setup_tx;
4275
4276 /* allocate receive descriptors */
Bruce Allan55aa6982011-12-16 00:45:45 +00004277 err = e1000e_setup_rx_resources(adapter->rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004278 if (err)
4279 goto err_setup_rx;
4280
Bruce Allane921eb12012-11-28 09:28:37 +00004281 /* If AMT is enabled, let the firmware know that the network
Bruce Allan11b08be2010-05-10 14:59:31 +00004282 * interface is now open and reset the part to a known state.
4283 */
4284 if (adapter->flags & FLAG_HAS_AMT) {
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004285 e1000e_get_hw_control(adapter);
Bruce Allan11b08be2010-05-10 14:59:31 +00004286 e1000e_reset(adapter);
4287 }
4288
Auke Kokbc7f75f2007-09-17 12:30:59 -07004289 e1000e_power_up_phy(adapter);
4290
4291 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Bruce Allane5fe2542013-02-20 04:06:27 +00004292 if ((adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004293 e1000_update_mng_vlan(adapter);
4294
Bruce Allan79d4e902011-12-16 00:46:27 +00004295 /* DMA latency requirement to workaround jumbo issue */
Bruce Allan3e35d992013-01-12 07:25:22 +00004296 pm_qos_add_request(&adapter->netdev->pm_qos_req, PM_QOS_CPU_DMA_LATENCY,
4297 PM_QOS_DEFAULT_VALUE);
Florian Micklerc128ec22010-08-02 14:27:00 +00004298
Bruce Allane921eb12012-11-28 09:28:37 +00004299 /* before we allocate an interrupt, we must be ready to handle it.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004300 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
4301 * as soon as we call pci_request_irq, so we have to setup our
Bruce Allanad680762008-03-28 09:15:03 -07004302 * clean_rx handler before we do so.
4303 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004304 e1000_configure(adapter);
4305
4306 err = e1000_request_irq(adapter);
4307 if (err)
4308 goto err_req_irq;
4309
Bruce Allane921eb12012-11-28 09:28:37 +00004310 /* Work around PCIe errata with MSI interrupts causing some chipsets to
Bruce Allanf8d59f72008-08-08 18:36:11 -07004311 * ignore e1000e MSI messages, which means we need to test our MSI
4312 * interrupt now
4313 */
Bruce Allan4662e822008-08-26 18:37:06 -07004314 if (adapter->int_mode != E1000E_INT_MODE_LEGACY) {
Bruce Allanf8d59f72008-08-08 18:36:11 -07004315 err = e1000_test_msi(adapter);
4316 if (err) {
4317 e_err("Interrupt allocation failed\n");
4318 goto err_req_irq;
4319 }
4320 }
4321
Auke Kokbc7f75f2007-09-17 12:30:59 -07004322 /* From here on the code is the same as e1000e_up() */
4323 clear_bit(__E1000_DOWN, &adapter->state);
4324
4325 napi_enable(&adapter->napi);
4326
4327 e1000_irq_enable(adapter);
4328
Jeff Kirsher09357b02011-11-18 14:25:00 +00004329 adapter->tx_hang_recheck = false;
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00004330 netif_start_queue(netdev);
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07004331
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004332 adapter->idle_check = true;
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00004333 hw->mac.get_link_status = true;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004334 pm_runtime_put(&pdev->dev);
4335
Auke Kokbc7f75f2007-09-17 12:30:59 -07004336 /* fire a link status change interrupt to start the watchdog */
Bruce Allan52a9b232010-05-10 15:00:10 +00004337 if (adapter->msix_entries)
4338 ew32(ICS, E1000_ICS_LSC | E1000_ICR_OTHER);
4339 else
4340 ew32(ICS, E1000_ICS_LSC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004341
4342 return 0;
4343
4344err_req_irq:
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004345 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004346 e1000_power_down_phy(adapter);
Bruce Allan55aa6982011-12-16 00:45:45 +00004347 e1000e_free_rx_resources(adapter->rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004348err_setup_rx:
Bruce Allan55aa6982011-12-16 00:45:45 +00004349 e1000e_free_tx_resources(adapter->tx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004350err_setup_tx:
4351 e1000e_reset(adapter);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004352 pm_runtime_put_sync(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004353
4354 return err;
4355}
4356
4357/**
4358 * e1000_close - Disables a network interface
4359 * @netdev: network interface device structure
4360 *
4361 * Returns 0, this is not allowed to fail
4362 *
4363 * The close entry point is called when an interface is de-activated
4364 * by the OS. The hardware is still under the drivers control, but
4365 * needs to be disabled. A global MAC reset is issued to stop the
4366 * hardware, and all transmit and receive resources are freed.
4367 **/
4368static int e1000_close(struct net_device *netdev)
4369{
4370 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004371 struct pci_dev *pdev = adapter->pdev;
Bruce Allanbb9e44d2012-03-21 00:39:12 +00004372 int count = E1000_CHECK_RESET_COUNT;
4373
4374 while (test_bit(__E1000_RESETTING, &adapter->state) && count--)
4375 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004376
4377 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004378
4379 pm_runtime_get_sync(&pdev->dev);
4380
4381 if (!test_bit(__E1000_DOWN, &adapter->state)) {
4382 e1000e_down(adapter);
4383 e1000_free_irq(adapter);
4384 }
Bruce Allana3b87a42013-04-20 05:37:29 +00004385
4386 napi_disable(&adapter->napi);
4387
Auke Kokbc7f75f2007-09-17 12:30:59 -07004388 e1000_power_down_phy(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004389
Bruce Allan55aa6982011-12-16 00:45:45 +00004390 e1000e_free_tx_resources(adapter->tx_ring);
4391 e1000e_free_rx_resources(adapter->rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004392
Bruce Allane921eb12012-11-28 09:28:37 +00004393 /* kill manageability vlan ID if supported, but not if a vlan with
Bruce Allanad680762008-03-28 09:15:03 -07004394 * the same ID is registered on the host OS (let 8021q kill it)
4395 */
Bruce Allane5fe2542013-02-20 04:06:27 +00004396 if (adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN)
Patrick McHardy80d5c362013-04-19 02:04:28 +00004397 e1000_vlan_rx_kill_vid(netdev, htons(ETH_P_8021Q),
4398 adapter->mng_vlan_id);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004399
Bruce Allane921eb12012-11-28 09:28:37 +00004400 /* If AMT is enabled, let the firmware know that the network
Bruce Allanad680762008-03-28 09:15:03 -07004401 * interface is now closed
4402 */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004403 if ((adapter->flags & FLAG_HAS_AMT) &&
4404 !test_bit(__E1000_TESTING, &adapter->state))
4405 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004406
Bruce Allan3e35d992013-01-12 07:25:22 +00004407 pm_qos_remove_request(&adapter->netdev->pm_qos_req);
Florian Micklerc128ec22010-08-02 14:27:00 +00004408
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004409 pm_runtime_put_sync(&pdev->dev);
4410
Auke Kokbc7f75f2007-09-17 12:30:59 -07004411 return 0;
4412}
Bruce Allanfc830b72013-02-20 04:06:11 +00004413
Auke Kokbc7f75f2007-09-17 12:30:59 -07004414/**
4415 * e1000_set_mac - Change the Ethernet Address of the NIC
4416 * @netdev: network interface device structure
4417 * @p: pointer to an address structure
4418 *
4419 * Returns 0 on success, negative on failure
4420 **/
4421static int e1000_set_mac(struct net_device *netdev, void *p)
4422{
4423 struct e1000_adapter *adapter = netdev_priv(netdev);
Bruce Allan69e1e012012-04-14 03:28:50 +00004424 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004425 struct sockaddr *addr = p;
4426
4427 if (!is_valid_ether_addr(addr->sa_data))
4428 return -EADDRNOTAVAIL;
4429
4430 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
4431 memcpy(adapter->hw.mac.addr, addr->sa_data, netdev->addr_len);
4432
Bruce Allan69e1e012012-04-14 03:28:50 +00004433 hw->mac.ops.rar_set(&adapter->hw, adapter->hw.mac.addr, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004434
4435 if (adapter->flags & FLAG_RESET_OVERWRITES_LAA) {
4436 /* activate the work around */
4437 e1000e_set_laa_state_82571(&adapter->hw, 1);
4438
Bruce Allane921eb12012-11-28 09:28:37 +00004439 /* Hold a copy of the LAA in RAR[14] This is done so that
Auke Kokbc7f75f2007-09-17 12:30:59 -07004440 * between the time RAR[0] gets clobbered and the time it
4441 * gets fixed (in e1000_watchdog), the actual LAA is in one
4442 * of the RARs and no incoming packets directed to this port
4443 * are dropped. Eventually the LAA will be in RAR[0] and
Bruce Allanad680762008-03-28 09:15:03 -07004444 * RAR[14]
4445 */
Bruce Allan69e1e012012-04-14 03:28:50 +00004446 hw->mac.ops.rar_set(&adapter->hw, adapter->hw.mac.addr,
4447 adapter->hw.mac.rar_entry_count - 1);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004448 }
4449
4450 return 0;
4451}
4452
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07004453/**
4454 * e1000e_update_phy_task - work thread to update phy
4455 * @work: pointer to our work struct
4456 *
4457 * this worker thread exists because we must acquire a
4458 * semaphore to read the phy, which we could msleep while
4459 * waiting for it, and we can't msleep in a timer.
4460 **/
4461static void e1000e_update_phy_task(struct work_struct *work)
4462{
4463 struct e1000_adapter *adapter = container_of(work,
Bruce Allan17e813e2013-02-20 04:06:01 +00004464 struct e1000_adapter,
4465 update_phy_task);
David Ertmana03206e2014-01-24 23:07:48 +00004466 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00004467
4468 if (test_bit(__E1000_DOWN, &adapter->state))
4469 return;
4470
David Ertmana03206e2014-01-24 23:07:48 +00004471 e1000_get_phy_info(hw);
4472
4473 /* Enable EEE on 82579 after link up */
4474 if (hw->phy.type == e1000_phy_82579)
4475 e1000_set_eee_pchlan(hw);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07004476}
4477
Bruce Allane921eb12012-11-28 09:28:37 +00004478/**
4479 * e1000_update_phy_info - timre call-back to update PHY info
4480 * @data: pointer to adapter cast into an unsigned long
4481 *
Bruce Allanad680762008-03-28 09:15:03 -07004482 * Need to wait a few seconds after link up to get diagnostic information from
4483 * the phy
Bruce Allane921eb12012-11-28 09:28:37 +00004484 **/
Auke Kokbc7f75f2007-09-17 12:30:59 -07004485static void e1000_update_phy_info(unsigned long data)
4486{
Bruce Allan53aa82d2013-02-20 04:06:06 +00004487 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00004488
4489 if (test_bit(__E1000_DOWN, &adapter->state))
4490 return;
4491
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07004492 schedule_work(&adapter->update_phy_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004493}
4494
4495/**
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004496 * e1000e_update_phy_stats - Update the PHY statistics counters
4497 * @adapter: board private structure
Bruce Allan2b6b1682011-05-13 07:20:09 +00004498 *
4499 * Read/clear the upper 16-bit PHY registers and read/accumulate lower
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004500 **/
4501static void e1000e_update_phy_stats(struct e1000_adapter *adapter)
4502{
4503 struct e1000_hw *hw = &adapter->hw;
4504 s32 ret_val;
4505 u16 phy_data;
4506
4507 ret_val = hw->phy.ops.acquire(hw);
4508 if (ret_val)
4509 return;
4510
Bruce Allane921eb12012-11-28 09:28:37 +00004511 /* A page set is expensive so check if already on desired page.
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004512 * If not, set to the page with the PHY status registers.
4513 */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004514 hw->phy.addr = 1;
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004515 ret_val = e1000e_read_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT,
4516 &phy_data);
4517 if (ret_val)
4518 goto release;
Bruce Allan2b6b1682011-05-13 07:20:09 +00004519 if (phy_data != (HV_STATS_PAGE << IGP_PAGE_SHIFT)) {
4520 ret_val = hw->phy.ops.set_page(hw,
4521 HV_STATS_PAGE << IGP_PAGE_SHIFT);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004522 if (ret_val)
4523 goto release;
4524 }
4525
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004526 /* Single Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004527 hw->phy.ops.read_reg_page(hw, HV_SCC_UPPER, &phy_data);
4528 ret_val = hw->phy.ops.read_reg_page(hw, HV_SCC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004529 if (!ret_val)
4530 adapter->stats.scc += phy_data;
4531
4532 /* Excessive Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004533 hw->phy.ops.read_reg_page(hw, HV_ECOL_UPPER, &phy_data);
4534 ret_val = hw->phy.ops.read_reg_page(hw, HV_ECOL_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004535 if (!ret_val)
4536 adapter->stats.ecol += phy_data;
4537
4538 /* Multiple Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004539 hw->phy.ops.read_reg_page(hw, HV_MCC_UPPER, &phy_data);
4540 ret_val = hw->phy.ops.read_reg_page(hw, HV_MCC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004541 if (!ret_val)
4542 adapter->stats.mcc += phy_data;
4543
4544 /* Late Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004545 hw->phy.ops.read_reg_page(hw, HV_LATECOL_UPPER, &phy_data);
4546 ret_val = hw->phy.ops.read_reg_page(hw, HV_LATECOL_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004547 if (!ret_val)
4548 adapter->stats.latecol += phy_data;
4549
4550 /* Collision Count - also used for adaptive IFS */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004551 hw->phy.ops.read_reg_page(hw, HV_COLC_UPPER, &phy_data);
4552 ret_val = hw->phy.ops.read_reg_page(hw, HV_COLC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004553 if (!ret_val)
4554 hw->mac.collision_delta = phy_data;
4555
4556 /* Defer Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004557 hw->phy.ops.read_reg_page(hw, HV_DC_UPPER, &phy_data);
4558 ret_val = hw->phy.ops.read_reg_page(hw, HV_DC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004559 if (!ret_val)
4560 adapter->stats.dc += phy_data;
4561
4562 /* Transmit with no CRS */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004563 hw->phy.ops.read_reg_page(hw, HV_TNCRS_UPPER, &phy_data);
4564 ret_val = hw->phy.ops.read_reg_page(hw, HV_TNCRS_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004565 if (!ret_val)
4566 adapter->stats.tncrs += phy_data;
4567
4568release:
4569 hw->phy.ops.release(hw);
4570}
4571
4572/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004573 * e1000e_update_stats - Update the board statistics counters
4574 * @adapter: board private structure
4575 **/
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004576static void e1000e_update_stats(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004577{
Ajit Khaparde7274c202009-10-07 02:44:26 +00004578 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004579 struct e1000_hw *hw = &adapter->hw;
4580 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004581
Bruce Allane921eb12012-11-28 09:28:37 +00004582 /* Prevent stats update while adapter is being reset, or if the pci
Auke Kokbc7f75f2007-09-17 12:30:59 -07004583 * connection is down.
4584 */
4585 if (adapter->link_speed == 0)
4586 return;
4587 if (pci_channel_offline(pdev))
4588 return;
4589
Auke Kokbc7f75f2007-09-17 12:30:59 -07004590 adapter->stats.crcerrs += er32(CRCERRS);
4591 adapter->stats.gprc += er32(GPRC);
Bruce Allan7c257692008-04-23 11:09:00 -07004592 adapter->stats.gorc += er32(GORCL);
Bruce Allane80bd1d2013-05-01 01:19:46 +00004593 er32(GORCH); /* Clear gorc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004594 adapter->stats.bprc += er32(BPRC);
4595 adapter->stats.mprc += er32(MPRC);
4596 adapter->stats.roc += er32(ROC);
4597
Auke Kokbc7f75f2007-09-17 12:30:59 -07004598 adapter->stats.mpc += er32(MPC);
Bruce Allana4f58f52009-06-02 11:29:18 +00004599
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004600 /* Half-duplex statistics */
4601 if (adapter->link_duplex == HALF_DUPLEX) {
4602 if (adapter->flags2 & FLAG2_HAS_PHY_STATS) {
4603 e1000e_update_phy_stats(adapter);
4604 } else {
4605 adapter->stats.scc += er32(SCC);
4606 adapter->stats.ecol += er32(ECOL);
4607 adapter->stats.mcc += er32(MCC);
4608 adapter->stats.latecol += er32(LATECOL);
4609 adapter->stats.dc += er32(DC);
Bruce Allana4f58f52009-06-02 11:29:18 +00004610
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004611 hw->mac.collision_delta = er32(COLC);
Bruce Allana4f58f52009-06-02 11:29:18 +00004612
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004613 if ((hw->mac.type != e1000_82574) &&
4614 (hw->mac.type != e1000_82583))
4615 adapter->stats.tncrs += er32(TNCRS);
4616 }
4617 adapter->stats.colc += hw->mac.collision_delta;
Bruce Allana4f58f52009-06-02 11:29:18 +00004618 }
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004619
Auke Kokbc7f75f2007-09-17 12:30:59 -07004620 adapter->stats.xonrxc += er32(XONRXC);
4621 adapter->stats.xontxc += er32(XONTXC);
4622 adapter->stats.xoffrxc += er32(XOFFRXC);
4623 adapter->stats.xofftxc += er32(XOFFTXC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004624 adapter->stats.gptc += er32(GPTC);
Bruce Allan7c257692008-04-23 11:09:00 -07004625 adapter->stats.gotc += er32(GOTCL);
Bruce Allane80bd1d2013-05-01 01:19:46 +00004626 er32(GOTCH); /* Clear gotc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004627 adapter->stats.rnbc += er32(RNBC);
4628 adapter->stats.ruc += er32(RUC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004629
4630 adapter->stats.mptc += er32(MPTC);
4631 adapter->stats.bptc += er32(BPTC);
4632
4633 /* used for adaptive IFS */
4634
4635 hw->mac.tx_packet_delta = er32(TPT);
4636 adapter->stats.tpt += hw->mac.tx_packet_delta;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004637
4638 adapter->stats.algnerrc += er32(ALGNERRC);
4639 adapter->stats.rxerrc += er32(RXERRC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004640 adapter->stats.cexterr += er32(CEXTERR);
4641 adapter->stats.tsctc += er32(TSCTC);
4642 adapter->stats.tsctfc += er32(TSCTFC);
4643
Auke Kokbc7f75f2007-09-17 12:30:59 -07004644 /* Fill out the OS statistics structure */
Ajit Khaparde7274c202009-10-07 02:44:26 +00004645 netdev->stats.multicast = adapter->stats.mprc;
4646 netdev->stats.collisions = adapter->stats.colc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004647
4648 /* Rx Errors */
4649
Bruce Allane921eb12012-11-28 09:28:37 +00004650 /* RLEC on some newer hardware can be incorrect so build
Bruce Allanad680762008-03-28 09:15:03 -07004651 * our own version based on RUC and ROC
4652 */
Ajit Khaparde7274c202009-10-07 02:44:26 +00004653 netdev->stats.rx_errors = adapter->stats.rxerrc +
Bruce Allanf0ff4392013-02-20 04:05:39 +00004654 adapter->stats.crcerrs + adapter->stats.algnerrc +
4655 adapter->stats.ruc + adapter->stats.roc + adapter->stats.cexterr;
Ajit Khaparde7274c202009-10-07 02:44:26 +00004656 netdev->stats.rx_length_errors = adapter->stats.ruc +
Bruce Allanf0ff4392013-02-20 04:05:39 +00004657 adapter->stats.roc;
Ajit Khaparde7274c202009-10-07 02:44:26 +00004658 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
4659 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
4660 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004661
4662 /* Tx Errors */
Bruce Allanf0ff4392013-02-20 04:05:39 +00004663 netdev->stats.tx_errors = adapter->stats.ecol + adapter->stats.latecol;
Ajit Khaparde7274c202009-10-07 02:44:26 +00004664 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
4665 netdev->stats.tx_window_errors = adapter->stats.latecol;
4666 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004667
4668 /* Tx Dropped needs to be maintained elsewhere */
4669
Auke Kokbc7f75f2007-09-17 12:30:59 -07004670 /* Management Stats */
4671 adapter->stats.mgptc += er32(MGTPTC);
4672 adapter->stats.mgprc += er32(MGTPRC);
4673 adapter->stats.mgpdc += er32(MGTPDC);
Bruce Allan94fb8482013-01-23 09:00:03 +00004674
4675 /* Correctable ECC Errors */
4676 if (hw->mac.type == e1000_pch_lpt) {
4677 u32 pbeccsts = er32(PBECCSTS);
4678 adapter->corr_errors +=
4679 pbeccsts & E1000_PBECCSTS_CORR_ERR_CNT_MASK;
4680 adapter->uncorr_errors +=
4681 (pbeccsts & E1000_PBECCSTS_UNCORR_ERR_CNT_MASK) >>
4682 E1000_PBECCSTS_UNCORR_ERR_CNT_SHIFT;
4683 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004684}
4685
Bruce Allan7c257692008-04-23 11:09:00 -07004686/**
4687 * e1000_phy_read_status - Update the PHY register status snapshot
4688 * @adapter: board private structure
4689 **/
4690static void e1000_phy_read_status(struct e1000_adapter *adapter)
4691{
4692 struct e1000_hw *hw = &adapter->hw;
4693 struct e1000_phy_regs *phy = &adapter->phy_regs;
Bruce Allan7c257692008-04-23 11:09:00 -07004694
Bruce Allan97390ab2013-06-29 07:42:25 +00004695 if (!pm_runtime_suspended((&adapter->pdev->dev)->parent) &&
4696 (er32(STATUS) & E1000_STATUS_LU) &&
Bruce Allan7c257692008-04-23 11:09:00 -07004697 (adapter->hw.phy.media_type == e1000_media_type_copper)) {
Bruce Allan90da0662011-01-06 07:02:53 +00004698 int ret_val;
4699
Bruce Allanc2ade1a2013-01-16 08:54:35 +00004700 ret_val = e1e_rphy(hw, MII_BMCR, &phy->bmcr);
4701 ret_val |= e1e_rphy(hw, MII_BMSR, &phy->bmsr);
4702 ret_val |= e1e_rphy(hw, MII_ADVERTISE, &phy->advertise);
4703 ret_val |= e1e_rphy(hw, MII_LPA, &phy->lpa);
4704 ret_val |= e1e_rphy(hw, MII_EXPANSION, &phy->expansion);
4705 ret_val |= e1e_rphy(hw, MII_CTRL1000, &phy->ctrl1000);
4706 ret_val |= e1e_rphy(hw, MII_STAT1000, &phy->stat1000);
4707 ret_val |= e1e_rphy(hw, MII_ESTATUS, &phy->estatus);
Bruce Allan7c257692008-04-23 11:09:00 -07004708 if (ret_val)
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004709 e_warn("Error reading PHY register\n");
Bruce Allan7c257692008-04-23 11:09:00 -07004710 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00004711 /* Do not read PHY registers if link is not up
Bruce Allan7c257692008-04-23 11:09:00 -07004712 * Set values to typical power-on defaults
4713 */
4714 phy->bmcr = (BMCR_SPEED1000 | BMCR_ANENABLE | BMCR_FULLDPLX);
4715 phy->bmsr = (BMSR_100FULL | BMSR_100HALF | BMSR_10FULL |
4716 BMSR_10HALF | BMSR_ESTATEN | BMSR_ANEGCAPABLE |
4717 BMSR_ERCAP);
4718 phy->advertise = (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP |
4719 ADVERTISE_ALL | ADVERTISE_CSMA);
4720 phy->lpa = 0;
4721 phy->expansion = EXPANSION_ENABLENPAGE;
4722 phy->ctrl1000 = ADVERTISE_1000FULL;
4723 phy->stat1000 = 0;
4724 phy->estatus = (ESTATUS_1000_TFULL | ESTATUS_1000_THALF);
4725 }
Bruce Allan7c257692008-04-23 11:09:00 -07004726}
4727
Auke Kokbc7f75f2007-09-17 12:30:59 -07004728static void e1000_print_link_info(struct e1000_adapter *adapter)
4729{
Auke Kokbc7f75f2007-09-17 12:30:59 -07004730 struct e1000_hw *hw = &adapter->hw;
4731 u32 ctrl = er32(CTRL);
4732
Bruce Allan8f12fe82008-11-21 16:54:43 -08004733 /* Link status message must follow this format for user tools */
Bruce Allan7dbc1672013-01-12 03:11:25 +00004734 pr_info("%s NIC Link is Up %d Mbps %s Duplex, Flow Control: %s\n",
4735 adapter->netdev->name, adapter->link_speed,
Jeff Kirsheref456f82011-11-03 11:40:28 +00004736 adapter->link_duplex == FULL_DUPLEX ? "Full" : "Half",
4737 (ctrl & E1000_CTRL_TFCE) && (ctrl & E1000_CTRL_RFCE) ? "Rx/Tx" :
4738 (ctrl & E1000_CTRL_RFCE) ? "Rx" :
4739 (ctrl & E1000_CTRL_TFCE) ? "Tx" : "None");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004740}
4741
Bruce Allan0c6bdb32010-06-17 18:58:43 +00004742static bool e1000e_has_link(struct e1000_adapter *adapter)
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004743{
4744 struct e1000_hw *hw = &adapter->hw;
Rusty Russell3db1cd52011-12-19 13:56:45 +00004745 bool link_active = false;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004746 s32 ret_val = 0;
4747
Bruce Allane921eb12012-11-28 09:28:37 +00004748 /* get_link_status is set on LSC (link status) interrupt or
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004749 * Rx sequence error interrupt. get_link_status will stay
4750 * false until the check_for_link establishes link
4751 * for copper adapters ONLY
4752 */
4753 switch (hw->phy.media_type) {
4754 case e1000_media_type_copper:
4755 if (hw->mac.get_link_status) {
4756 ret_val = hw->mac.ops.check_for_link(hw);
4757 link_active = !hw->mac.get_link_status;
4758 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00004759 link_active = true;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004760 }
4761 break;
4762 case e1000_media_type_fiber:
4763 ret_val = hw->mac.ops.check_for_link(hw);
4764 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
4765 break;
4766 case e1000_media_type_internal_serdes:
4767 ret_val = hw->mac.ops.check_for_link(hw);
4768 link_active = adapter->hw.mac.serdes_has_link;
4769 break;
4770 default:
4771 case e1000_media_type_unknown:
4772 break;
4773 }
4774
4775 if ((ret_val == E1000_ERR_PHY) && (hw->phy.type == e1000_phy_igp_3) &&
4776 (er32(CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
4777 /* See e1000_kmrn_lock_loss_workaround_ich8lan() */
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004778 e_info("Gigabit has been disabled, downgrading speed\n");
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004779 }
4780
4781 return link_active;
4782}
4783
4784static void e1000e_enable_receives(struct e1000_adapter *adapter)
4785{
4786 /* make sure the receive unit is started */
4787 if ((adapter->flags & FLAG_RX_NEEDS_RESTART) &&
Bruce Allan12d43f72012-12-05 06:26:14 +00004788 (adapter->flags & FLAG_RESTART_NOW)) {
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004789 struct e1000_hw *hw = &adapter->hw;
4790 u32 rctl = er32(RCTL);
4791 ew32(RCTL, rctl | E1000_RCTL_EN);
Bruce Allan12d43f72012-12-05 06:26:14 +00004792 adapter->flags &= ~FLAG_RESTART_NOW;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004793 }
4794}
4795
Carolyn Wybornyff10e132010-10-28 00:59:53 +00004796static void e1000e_check_82574_phy_workaround(struct e1000_adapter *adapter)
4797{
4798 struct e1000_hw *hw = &adapter->hw;
4799
Bruce Allane921eb12012-11-28 09:28:37 +00004800 /* With 82574 controllers, PHY needs to be checked periodically
Carolyn Wybornyff10e132010-10-28 00:59:53 +00004801 * for hung state and reset, if two calls return true
4802 */
4803 if (e1000_check_phy_82574(hw))
4804 adapter->phy_hang_count++;
4805 else
4806 adapter->phy_hang_count = 0;
4807
4808 if (adapter->phy_hang_count > 1) {
4809 adapter->phy_hang_count = 0;
4810 schedule_work(&adapter->reset_task);
4811 }
4812}
4813
Auke Kokbc7f75f2007-09-17 12:30:59 -07004814/**
4815 * e1000_watchdog - Timer Call-back
4816 * @data: pointer to adapter cast into an unsigned long
4817 **/
4818static void e1000_watchdog(unsigned long data)
4819{
Bruce Allan53aa82d2013-02-20 04:06:06 +00004820 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004821
4822 /* Do the rest outside of interrupt context */
4823 schedule_work(&adapter->watchdog_task);
4824
4825 /* TODO: make this use queue_delayed_work() */
4826}
4827
4828static void e1000_watchdog_task(struct work_struct *work)
4829{
4830 struct e1000_adapter *adapter = container_of(work,
Bruce Allan17e813e2013-02-20 04:06:01 +00004831 struct e1000_adapter,
4832 watchdog_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004833 struct net_device *netdev = adapter->netdev;
4834 struct e1000_mac_info *mac = &adapter->hw.mac;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08004835 struct e1000_phy_info *phy = &adapter->hw.phy;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004836 struct e1000_ring *tx_ring = adapter->tx_ring;
4837 struct e1000_hw *hw = &adapter->hw;
4838 u32 link, tctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004839
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00004840 if (test_bit(__E1000_DOWN, &adapter->state))
4841 return;
4842
David S. Millerb405e8d2010-02-04 22:31:41 -08004843 link = e1000e_has_link(adapter);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004844 if ((netif_carrier_ok(netdev)) && link) {
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004845 /* Cancel scheduled suspend requests. */
4846 pm_runtime_resume(netdev->dev.parent);
4847
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004848 e1000e_enable_receives(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004849 goto link_up;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004850 }
4851
4852 if ((e1000e_enable_tx_pkt_filtering(hw)) &&
4853 (adapter->mng_vlan_id != adapter->hw.mng_cookie.vlan_id))
4854 e1000_update_mng_vlan(adapter);
4855
Auke Kokbc7f75f2007-09-17 12:30:59 -07004856 if (link) {
4857 if (!netif_carrier_ok(netdev)) {
Rusty Russell3db1cd52011-12-19 13:56:45 +00004858 bool txb2b = true;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004859
4860 /* Cancel scheduled suspend requests. */
4861 pm_runtime_resume(netdev->dev.parent);
4862
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004863 /* update snapshot of PHY registers on LSC */
Bruce Allan7c257692008-04-23 11:09:00 -07004864 e1000_phy_read_status(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004865 mac->ops.get_link_up_info(&adapter->hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00004866 &adapter->link_speed,
4867 &adapter->link_duplex);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004868 e1000_print_link_info(adapter);
Koki Sanagie792cd92013-02-03 14:03:55 +00004869
4870 /* check if SmartSpeed worked */
4871 e1000e_check_downshift(hw);
4872 if (phy->speed_downgraded)
4873 netdev_warn(netdev,
4874 "Link Speed was downgraded by SmartSpeed\n");
4875
Bruce Allane921eb12012-11-28 09:28:37 +00004876 /* On supported PHYs, check for duplex mismatch only
Bruce Allanf4187b52008-08-26 18:36:50 -07004877 * if link has autonegotiated at 10/100 half
4878 */
4879 if ((hw->phy.type == e1000_phy_igp_3 ||
4880 hw->phy.type == e1000_phy_bm) &&
David Ertman138953b2013-08-30 05:45:25 +00004881 hw->mac.autoneg &&
Bruce Allanf4187b52008-08-26 18:36:50 -07004882 (adapter->link_speed == SPEED_10 ||
4883 adapter->link_speed == SPEED_100) &&
4884 (adapter->link_duplex == HALF_DUPLEX)) {
4885 u16 autoneg_exp;
4886
Bruce Allanc2ade1a2013-01-16 08:54:35 +00004887 e1e_rphy(hw, MII_EXPANSION, &autoneg_exp);
Bruce Allanf4187b52008-08-26 18:36:50 -07004888
Bruce Allanc2ade1a2013-01-16 08:54:35 +00004889 if (!(autoneg_exp & EXPANSION_NWAY))
Jeff Kirsheref456f82011-11-03 11:40:28 +00004890 e_info("Autonegotiated half duplex but link partner cannot autoneg. Try forcing full duplex if link gets many collisions.\n");
Bruce Allanf4187b52008-08-26 18:36:50 -07004891 }
4892
Emil Tantilovf49c57e2010-03-24 12:55:02 +00004893 /* adjust timeout factor according to speed/duplex */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004894 adapter->tx_timeout_factor = 1;
4895 switch (adapter->link_speed) {
4896 case SPEED_10:
Rusty Russell3db1cd52011-12-19 13:56:45 +00004897 txb2b = false;
Bruce Allan10f1b492008-08-08 18:36:01 -07004898 adapter->tx_timeout_factor = 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004899 break;
4900 case SPEED_100:
Rusty Russell3db1cd52011-12-19 13:56:45 +00004901 txb2b = false;
Bruce Allan4c86e0b2009-11-19 12:35:26 +00004902 adapter->tx_timeout_factor = 10;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004903 break;
4904 }
4905
Bruce Allane921eb12012-11-28 09:28:37 +00004906 /* workaround: re-program speed mode bit after
Bruce Allanad680762008-03-28 09:15:03 -07004907 * link-up event
4908 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004909 if ((adapter->flags & FLAG_TARC_SPEED_MODE_BIT) &&
4910 !txb2b) {
4911 u32 tarc0;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004912 tarc0 = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004913 tarc0 &= ~SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004914 ew32(TARC(0), tarc0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004915 }
4916
Bruce Allane921eb12012-11-28 09:28:37 +00004917 /* disable TSO for pcie and 10/100 speeds, to avoid
Bruce Allanad680762008-03-28 09:15:03 -07004918 * some hardware issues
4919 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004920 if (!(adapter->flags & FLAG_TSO_FORCE)) {
4921 switch (adapter->link_speed) {
4922 case SPEED_10:
4923 case SPEED_100:
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004924 e_info("10/100 speed: disabling TSO\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004925 netdev->features &= ~NETIF_F_TSO;
4926 netdev->features &= ~NETIF_F_TSO6;
4927 break;
4928 case SPEED_1000:
4929 netdev->features |= NETIF_F_TSO;
4930 netdev->features |= NETIF_F_TSO6;
4931 break;
4932 default:
4933 /* oops */
4934 break;
4935 }
4936 }
4937
Bruce Allane921eb12012-11-28 09:28:37 +00004938 /* enable transmits in the hardware, need to do this
Bruce Allanad680762008-03-28 09:15:03 -07004939 * after setting TARC(0)
4940 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004941 tctl = er32(TCTL);
4942 tctl |= E1000_TCTL_EN;
4943 ew32(TCTL, tctl);
4944
Bruce Allane921eb12012-11-28 09:28:37 +00004945 /* Perform any post-link-up configuration before
Bruce Allan75eb0fa2008-11-21 16:53:51 -08004946 * reporting link up.
4947 */
4948 if (phy->ops.cfg_on_link_up)
4949 phy->ops.cfg_on_link_up(hw);
4950
Auke Kokbc7f75f2007-09-17 12:30:59 -07004951 netif_carrier_on(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004952
4953 if (!test_bit(__E1000_DOWN, &adapter->state))
4954 mod_timer(&adapter->phy_info_timer,
4955 round_jiffies(jiffies + 2 * HZ));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004956 }
4957 } else {
4958 if (netif_carrier_ok(netdev)) {
4959 adapter->link_speed = 0;
4960 adapter->link_duplex = 0;
Bruce Allan8f12fe82008-11-21 16:54:43 -08004961 /* Link status message must follow this format */
Bruce Allan7dbc1672013-01-12 03:11:25 +00004962 pr_info("%s NIC Link is Down\n", adapter->netdev->name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004963 netif_carrier_off(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004964 if (!test_bit(__E1000_DOWN, &adapter->state))
4965 mod_timer(&adapter->phy_info_timer,
4966 round_jiffies(jiffies + 2 * HZ));
4967
Bruce Allan12d43f72012-12-05 06:26:14 +00004968 /* The link is lost so the controller stops DMA.
4969 * If there is queued Tx work that cannot be done
4970 * or if on an 8000ES2LAN which requires a Rx packet
4971 * buffer work-around on link down event, reset the
4972 * controller to flush the Tx/Rx packet buffers.
4973 * (Do the reset outside of interrupt context).
4974 */
4975 if ((adapter->flags & FLAG_RX_NEEDS_RESTART) ||
4976 (e1000_desc_unused(tx_ring) + 1 < tx_ring->count))
4977 adapter->flags |= FLAG_RESTART_NOW;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004978 else
4979 pm_schedule_suspend(netdev->dev.parent,
Bruce Allan17e813e2013-02-20 04:06:01 +00004980 LINK_TIMEOUT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004981 }
4982 }
4983
4984link_up:
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004985 spin_lock(&adapter->stats64_lock);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004986 e1000e_update_stats(adapter);
4987
4988 mac->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
4989 adapter->tpt_old = adapter->stats.tpt;
4990 mac->collision_delta = adapter->stats.colc - adapter->colc_old;
4991 adapter->colc_old = adapter->stats.colc;
4992
Bruce Allan7c257692008-04-23 11:09:00 -07004993 adapter->gorc = adapter->stats.gorc - adapter->gorc_old;
4994 adapter->gorc_old = adapter->stats.gorc;
4995 adapter->gotc = adapter->stats.gotc - adapter->gotc_old;
4996 adapter->gotc_old = adapter->stats.gotc;
Flavio Leitner2084b112011-04-05 04:27:43 +00004997 spin_unlock(&adapter->stats64_lock);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004998
Bruce Allan12d43f72012-12-05 06:26:14 +00004999 if (adapter->flags & FLAG_RESTART_NOW) {
Bruce Allan90da0662011-01-06 07:02:53 +00005000 schedule_work(&adapter->reset_task);
5001 /* return immediately since reset is imminent */
5002 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005003 }
5004
Bruce Allan12d43f72012-12-05 06:26:14 +00005005 e1000e_update_adaptive(&adapter->hw);
5006
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005007 /* Simple mode for Interrupt Throttle Rate (ITR) */
5008 if (adapter->itr_setting == 4) {
Bruce Allane921eb12012-11-28 09:28:37 +00005009 /* Symmetric Tx/Rx gets a reduced ITR=2000;
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005010 * Total asymmetrical Tx or Rx gets ITR=8000;
5011 * everyone else is between 2000-8000.
5012 */
5013 u32 goc = (adapter->gotc + adapter->gorc) / 10000;
5014 u32 dif = (adapter->gotc > adapter->gorc ?
Bruce Allan17e813e2013-02-20 04:06:01 +00005015 adapter->gotc - adapter->gorc :
5016 adapter->gorc - adapter->gotc) / 10000;
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005017 u32 itr = goc > 0 ? (dif * 6000 / goc + 2000) : 8000;
5018
Matthew Vick22a4cca2012-07-12 00:02:42 +00005019 e1000e_write_itr(adapter, itr);
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005020 }
5021
Bruce Allanad680762008-03-28 09:15:03 -07005022 /* Cause software interrupt to ensure Rx ring is cleaned */
Bruce Allan4662e822008-08-26 18:37:06 -07005023 if (adapter->msix_entries)
5024 ew32(ICS, adapter->rx_ring->ims_val);
5025 else
5026 ew32(ICS, E1000_ICS_RXDMT0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005027
Jesse Brandeburg713b3c92011-02-02 10:19:50 +00005028 /* flush pending descriptors to memory before detecting Tx hang */
5029 e1000e_flush_descriptors(adapter);
5030
Auke Kokbc7f75f2007-09-17 12:30:59 -07005031 /* Force detection of hung controller every watchdog period */
Rusty Russell3db1cd52011-12-19 13:56:45 +00005032 adapter->detect_tx_hung = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005033
Bruce Allane921eb12012-11-28 09:28:37 +00005034 /* With 82571 controllers, LAA may be overwritten due to controller
Bruce Allanad680762008-03-28 09:15:03 -07005035 * reset from the other port. Set the appropriate LAA in RAR[0]
5036 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005037 if (e1000e_get_laa_state_82571(hw))
Bruce Allan69e1e012012-04-14 03:28:50 +00005038 hw->mac.ops.rar_set(hw, adapter->hw.mac.addr, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005039
Carolyn Wybornyff10e132010-10-28 00:59:53 +00005040 if (adapter->flags2 & FLAG2_CHECK_PHY_HANG)
5041 e1000e_check_82574_phy_workaround(adapter);
5042
Bruce Allanb67e1912012-12-27 08:32:33 +00005043 /* Clear valid timestamp stuck in RXSTMPL/H due to a Rx error */
5044 if (adapter->hwtstamp_config.rx_filter != HWTSTAMP_FILTER_NONE) {
5045 if ((adapter->flags2 & FLAG2_CHECK_RX_HWTSTAMP) &&
5046 (er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_VALID)) {
5047 er32(RXSTMPH);
5048 adapter->rx_hwtstamp_cleared++;
5049 } else {
5050 adapter->flags2 |= FLAG2_CHECK_RX_HWTSTAMP;
5051 }
5052 }
5053
Auke Kokbc7f75f2007-09-17 12:30:59 -07005054 /* Reset the timer */
5055 if (!test_bit(__E1000_DOWN, &adapter->state))
5056 mod_timer(&adapter->watchdog_timer,
5057 round_jiffies(jiffies + 2 * HZ));
5058}
5059
5060#define E1000_TX_FLAGS_CSUM 0x00000001
5061#define E1000_TX_FLAGS_VLAN 0x00000002
5062#define E1000_TX_FLAGS_TSO 0x00000004
5063#define E1000_TX_FLAGS_IPV4 0x00000008
Ben Greear943146d2012-02-11 15:39:40 +00005064#define E1000_TX_FLAGS_NO_FCS 0x00000010
Bruce Allanb67e1912012-12-27 08:32:33 +00005065#define E1000_TX_FLAGS_HWTSTAMP 0x00000020
Auke Kokbc7f75f2007-09-17 12:30:59 -07005066#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
5067#define E1000_TX_FLAGS_VLAN_SHIFT 16
5068
Bruce Allan55aa6982011-12-16 00:45:45 +00005069static int e1000_tso(struct e1000_ring *tx_ring, struct sk_buff *skb)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005070{
Auke Kokbc7f75f2007-09-17 12:30:59 -07005071 struct e1000_context_desc *context_desc;
5072 struct e1000_buffer *buffer_info;
5073 unsigned int i;
5074 u32 cmd_length = 0;
Bruce Allan70443ae2012-08-17 06:18:13 +00005075 u16 ipcse = 0, mss;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005076 u8 ipcss, ipcso, tucss, tucso, hdr_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005077
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005078 if (!skb_is_gso(skb))
5079 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005080
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005081 if (skb_header_cloned(skb)) {
Bruce Allan90da0662011-01-06 07:02:53 +00005082 int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
5083
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005084 if (err)
5085 return err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005086 }
5087
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005088 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
5089 mss = skb_shinfo(skb)->gso_size;
5090 if (skb->protocol == htons(ETH_P_IP)) {
5091 struct iphdr *iph = ip_hdr(skb);
5092 iph->tot_len = 0;
5093 iph->check = 0;
5094 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
Bruce Allanf0ff4392013-02-20 04:05:39 +00005095 0, IPPROTO_TCP, 0);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005096 cmd_length = E1000_TXD_CMD_IP;
5097 ipcse = skb_transport_offset(skb) - 1;
Sridhar Samudrala8e1e8a42010-01-23 02:02:21 -08005098 } else if (skb_is_gso_v6(skb)) {
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005099 ipv6_hdr(skb)->payload_len = 0;
5100 tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
Bruce Allanf0ff4392013-02-20 04:05:39 +00005101 &ipv6_hdr(skb)->daddr,
5102 0, IPPROTO_TCP, 0);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005103 ipcse = 0;
5104 }
5105 ipcss = skb_network_offset(skb);
5106 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
5107 tucss = skb_transport_offset(skb);
5108 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005109
5110 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
Bruce Allanf0ff4392013-02-20 04:05:39 +00005111 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005112
5113 i = tx_ring->next_to_use;
5114 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
5115 buffer_info = &tx_ring->buffer_info[i];
5116
Bruce Allane80bd1d2013-05-01 01:19:46 +00005117 context_desc->lower_setup.ip_fields.ipcss = ipcss;
5118 context_desc->lower_setup.ip_fields.ipcso = ipcso;
5119 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005120 context_desc->upper_setup.tcp_fields.tucss = tucss;
5121 context_desc->upper_setup.tcp_fields.tucso = tucso;
Bruce Allan70443ae2012-08-17 06:18:13 +00005122 context_desc->upper_setup.tcp_fields.tucse = 0;
Bruce Allane80bd1d2013-05-01 01:19:46 +00005123 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005124 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
5125 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
5126
5127 buffer_info->time_stamp = jiffies;
5128 buffer_info->next_to_watch = i;
5129
5130 i++;
5131 if (i == tx_ring->count)
5132 i = 0;
5133 tx_ring->next_to_use = i;
5134
5135 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005136}
5137
Bruce Allan55aa6982011-12-16 00:45:45 +00005138static bool e1000_tx_csum(struct e1000_ring *tx_ring, struct sk_buff *skb)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005139{
Bruce Allan55aa6982011-12-16 00:45:45 +00005140 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005141 struct e1000_context_desc *context_desc;
5142 struct e1000_buffer *buffer_info;
5143 unsigned int i;
5144 u8 css;
Dave Grahamaf807c82008-10-09 14:28:58 -07005145 u32 cmd_len = E1000_TXD_CMD_DEXT;
Arthur Jones5f66f202009-03-19 01:13:08 +00005146 __be16 protocol;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005147
Dave Grahamaf807c82008-10-09 14:28:58 -07005148 if (skb->ip_summed != CHECKSUM_PARTIAL)
5149 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005150
Arthur Jones5f66f202009-03-19 01:13:08 +00005151 if (skb->protocol == cpu_to_be16(ETH_P_8021Q))
5152 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
5153 else
5154 protocol = skb->protocol;
5155
Arthur Jones3f518392009-03-20 15:56:35 -07005156 switch (protocol) {
Harvey Harrison09640e632009-02-01 00:45:17 -08005157 case cpu_to_be16(ETH_P_IP):
Dave Grahamaf807c82008-10-09 14:28:58 -07005158 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
5159 cmd_len |= E1000_TXD_CMD_TCP;
5160 break;
Harvey Harrison09640e632009-02-01 00:45:17 -08005161 case cpu_to_be16(ETH_P_IPV6):
Dave Grahamaf807c82008-10-09 14:28:58 -07005162 /* XXX not handling all IPV6 headers */
5163 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
5164 cmd_len |= E1000_TXD_CMD_TCP;
5165 break;
5166 default:
5167 if (unlikely(net_ratelimit()))
Arthur Jones5f66f202009-03-19 01:13:08 +00005168 e_warn("checksum_partial proto=%x!\n",
5169 be16_to_cpu(protocol));
Dave Grahamaf807c82008-10-09 14:28:58 -07005170 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005171 }
5172
Michał Mirosław0d0b1672010-12-14 15:24:08 +00005173 css = skb_checksum_start_offset(skb);
Dave Grahamaf807c82008-10-09 14:28:58 -07005174
5175 i = tx_ring->next_to_use;
5176 buffer_info = &tx_ring->buffer_info[i];
5177 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
5178
5179 context_desc->lower_setup.ip_config = 0;
5180 context_desc->upper_setup.tcp_fields.tucss = css;
Bruce Allanf0ff4392013-02-20 04:05:39 +00005181 context_desc->upper_setup.tcp_fields.tucso = css + skb->csum_offset;
Dave Grahamaf807c82008-10-09 14:28:58 -07005182 context_desc->upper_setup.tcp_fields.tucse = 0;
5183 context_desc->tcp_seg_setup.data = 0;
5184 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
5185
5186 buffer_info->time_stamp = jiffies;
5187 buffer_info->next_to_watch = i;
5188
5189 i++;
5190 if (i == tx_ring->count)
5191 i = 0;
5192 tx_ring->next_to_use = i;
5193
5194 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005195}
5196
Bruce Allan55aa6982011-12-16 00:45:45 +00005197static int e1000_tx_map(struct e1000_ring *tx_ring, struct sk_buff *skb,
5198 unsigned int first, unsigned int max_per_txd,
Bruce Alland821a4c2012-08-24 20:38:11 +00005199 unsigned int nr_frags)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005200{
Bruce Allan55aa6982011-12-16 00:45:45 +00005201 struct e1000_adapter *adapter = tx_ring->adapter;
Alexander Duyck03b13202009-12-02 16:45:31 +00005202 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005203 struct e1000_buffer *buffer_info;
Jesse Brandeburg8ddc9512009-03-02 16:02:53 -08005204 unsigned int len = skb_headlen(skb);
Alexander Duyck03b13202009-12-02 16:45:31 +00005205 unsigned int offset = 0, size, count = 0, i;
Tom Herbert9ed318d2010-05-05 14:02:27 +00005206 unsigned int f, bytecount, segs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005207
5208 i = tx_ring->next_to_use;
5209
5210 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005211 buffer_info = &tx_ring->buffer_info[i];
Auke Kokbc7f75f2007-09-17 12:30:59 -07005212 size = min(len, max_per_txd);
5213
Auke Kokbc7f75f2007-09-17 12:30:59 -07005214 buffer_info->length = size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005215 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005216 buffer_info->next_to_watch = i;
Nick Nunley0be3f552010-04-27 13:09:05 +00005217 buffer_info->dma = dma_map_single(&pdev->dev,
5218 skb->data + offset,
Bruce Allanaf667a22010-12-31 06:10:01 +00005219 size, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00005220 buffer_info->mapped_as_page = false;
Nick Nunley0be3f552010-04-27 13:09:05 +00005221 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00005222 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005223
5224 len -= size;
5225 offset += size;
Alexander Duyck03b13202009-12-02 16:45:31 +00005226 count++;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005227
5228 if (len) {
5229 i++;
5230 if (i == tx_ring->count)
5231 i = 0;
5232 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005233 }
5234
5235 for (f = 0; f < nr_frags; f++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00005236 const struct skb_frag_struct *frag;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005237
5238 frag = &skb_shinfo(skb)->frags[f];
Eric Dumazet9e903e02011-10-18 21:00:24 +00005239 len = skb_frag_size(frag);
Ian Campbell877749b2011-08-29 23:18:26 +00005240 offset = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005241
5242 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005243 i++;
5244 if (i == tx_ring->count)
5245 i = 0;
5246
Auke Kokbc7f75f2007-09-17 12:30:59 -07005247 buffer_info = &tx_ring->buffer_info[i];
5248 size = min(len, max_per_txd);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005249
5250 buffer_info->length = size;
5251 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005252 buffer_info->next_to_watch = i;
Ian Campbell877749b2011-08-29 23:18:26 +00005253 buffer_info->dma = skb_frag_dma_map(&pdev->dev, frag,
Bruce Allan17e813e2013-02-20 04:06:01 +00005254 offset, size,
5255 DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00005256 buffer_info->mapped_as_page = true;
Nick Nunley0be3f552010-04-27 13:09:05 +00005257 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00005258 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005259
5260 len -= size;
5261 offset += size;
5262 count++;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005263 }
5264 }
5265
Bruce Allanaf667a22010-12-31 06:10:01 +00005266 segs = skb_shinfo(skb)->gso_segs ? : 1;
Tom Herbert9ed318d2010-05-05 14:02:27 +00005267 /* multiply data chunks by size of headers */
5268 bytecount = ((segs - 1) * skb_headlen(skb)) + skb->len;
5269
Auke Kokbc7f75f2007-09-17 12:30:59 -07005270 tx_ring->buffer_info[i].skb = skb;
Tom Herbert9ed318d2010-05-05 14:02:27 +00005271 tx_ring->buffer_info[i].segs = segs;
5272 tx_ring->buffer_info[i].bytecount = bytecount;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005273 tx_ring->buffer_info[first].next_to_watch = i;
5274
5275 return count;
Alexander Duyck03b13202009-12-02 16:45:31 +00005276
5277dma_error:
Bruce Allanaf667a22010-12-31 06:10:01 +00005278 dev_err(&pdev->dev, "Tx DMA map failed\n");
Alexander Duyck03b13202009-12-02 16:45:31 +00005279 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00005280 if (count)
Alexander Duyck03b13202009-12-02 16:45:31 +00005281 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00005282
5283 while (count--) {
Bruce Allanaf667a22010-12-31 06:10:01 +00005284 if (i == 0)
Alexander Duyck03b13202009-12-02 16:45:31 +00005285 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00005286 i--;
Alexander Duyck03b13202009-12-02 16:45:31 +00005287 buffer_info = &tx_ring->buffer_info[i];
Bruce Allan55aa6982011-12-16 00:45:45 +00005288 e1000_put_txbuf(tx_ring, buffer_info);
Alexander Duyck03b13202009-12-02 16:45:31 +00005289 }
5290
5291 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005292}
5293
Bruce Allan55aa6982011-12-16 00:45:45 +00005294static void e1000_tx_queue(struct e1000_ring *tx_ring, int tx_flags, int count)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005295{
Bruce Allan55aa6982011-12-16 00:45:45 +00005296 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005297 struct e1000_tx_desc *tx_desc = NULL;
5298 struct e1000_buffer *buffer_info;
5299 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
5300 unsigned int i;
5301
5302 if (tx_flags & E1000_TX_FLAGS_TSO) {
5303 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
Bruce Allanf0ff4392013-02-20 04:05:39 +00005304 E1000_TXD_CMD_TSE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005305 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
5306
5307 if (tx_flags & E1000_TX_FLAGS_IPV4)
5308 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
5309 }
5310
5311 if (tx_flags & E1000_TX_FLAGS_CSUM) {
5312 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
5313 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
5314 }
5315
5316 if (tx_flags & E1000_TX_FLAGS_VLAN) {
5317 txd_lower |= E1000_TXD_CMD_VLE;
5318 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
5319 }
5320
Ben Greear943146d2012-02-11 15:39:40 +00005321 if (unlikely(tx_flags & E1000_TX_FLAGS_NO_FCS))
5322 txd_lower &= ~(E1000_TXD_CMD_IFCS);
5323
Bruce Allanb67e1912012-12-27 08:32:33 +00005324 if (unlikely(tx_flags & E1000_TX_FLAGS_HWTSTAMP)) {
5325 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
5326 txd_upper |= E1000_TXD_EXTCMD_TSTAMP;
5327 }
5328
Auke Kokbc7f75f2007-09-17 12:30:59 -07005329 i = tx_ring->next_to_use;
5330
Bruce Allan36b973d2010-11-24 07:42:43 +00005331 do {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005332 buffer_info = &tx_ring->buffer_info[i];
5333 tx_desc = E1000_TX_DESC(*tx_ring, i);
5334 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
Bruce Allanf0ff4392013-02-20 04:05:39 +00005335 tx_desc->lower.data = cpu_to_le32(txd_lower |
5336 buffer_info->length);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005337 tx_desc->upper.data = cpu_to_le32(txd_upper);
5338
5339 i++;
5340 if (i == tx_ring->count)
5341 i = 0;
Bruce Allan36b973d2010-11-24 07:42:43 +00005342 } while (--count > 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005343
5344 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
5345
Ben Greear943146d2012-02-11 15:39:40 +00005346 /* txd_cmd re-enables FCS, so we'll re-disable it here as desired. */
5347 if (unlikely(tx_flags & E1000_TX_FLAGS_NO_FCS))
5348 tx_desc->lower.data &= ~(cpu_to_le32(E1000_TXD_CMD_IFCS));
5349
Bruce Allane921eb12012-11-28 09:28:37 +00005350 /* Force memory writes to complete before letting h/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07005351 * know there are new descriptors to fetch. (Only
5352 * applicable for weak-ordered memory model archs,
Bruce Allanad680762008-03-28 09:15:03 -07005353 * such as IA-64).
5354 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005355 wmb();
5356
5357 tx_ring->next_to_use = i;
David S. Miller823dcd22011-08-20 10:39:12 -07005358
5359 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allan55aa6982011-12-16 00:45:45 +00005360 e1000e_update_tdt_wa(tx_ring, i);
David S. Miller823dcd22011-08-20 10:39:12 -07005361 else
Bruce Allanc5083cf2011-12-16 00:45:40 +00005362 writel(i, tx_ring->tail);
David S. Miller823dcd22011-08-20 10:39:12 -07005363
Bruce Allane921eb12012-11-28 09:28:37 +00005364 /* we need this if more than one processor can write to our tail
Bruce Allanad680762008-03-28 09:15:03 -07005365 * at a time, it synchronizes IO on IA64/Altix systems
5366 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005367 mmiowb();
5368}
5369
5370#define MINIMUM_DHCP_PACKET_SIZE 282
5371static int e1000_transfer_dhcp_info(struct e1000_adapter *adapter,
5372 struct sk_buff *skb)
5373{
Bruce Allane80bd1d2013-05-01 01:19:46 +00005374 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005375 u16 length, offset;
5376
Bruce Alland60923c2012-12-05 06:26:56 +00005377 if (vlan_tx_tag_present(skb) &&
5378 !((vlan_tx_tag_get(skb) == adapter->hw.mng_cookie.vlan_id) &&
5379 (adapter->hw.mng_cookie.status &
5380 E1000_MNG_DHCP_COOKIE_STATUS_VLAN)))
5381 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005382
5383 if (skb->len <= MINIMUM_DHCP_PACKET_SIZE)
5384 return 0;
5385
Bruce Allan53aa82d2013-02-20 04:06:06 +00005386 if (((struct ethhdr *)skb->data)->h_proto != htons(ETH_P_IP))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005387 return 0;
5388
5389 {
Bruce Allan362e20c2013-02-20 04:05:45 +00005390 const struct iphdr *ip = (struct iphdr *)((u8 *)skb->data + 14);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005391 struct udphdr *udp;
5392
5393 if (ip->protocol != IPPROTO_UDP)
5394 return 0;
5395
5396 udp = (struct udphdr *)((u8 *)ip + (ip->ihl << 2));
5397 if (ntohs(udp->dest) != 67)
5398 return 0;
5399
5400 offset = (u8 *)udp + 8 - skb->data;
5401 length = skb->len - offset;
5402 return e1000e_mng_write_dhcp_info(hw, (u8 *)udp + 8, length);
5403 }
5404
5405 return 0;
5406}
5407
Bruce Allan55aa6982011-12-16 00:45:45 +00005408static int __e1000_maybe_stop_tx(struct e1000_ring *tx_ring, int size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005409{
Bruce Allan55aa6982011-12-16 00:45:45 +00005410 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005411
Bruce Allan55aa6982011-12-16 00:45:45 +00005412 netif_stop_queue(adapter->netdev);
Bruce Allane921eb12012-11-28 09:28:37 +00005413 /* Herbert's original patch had:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005414 * smp_mb__after_netif_stop_queue();
Bruce Allanad680762008-03-28 09:15:03 -07005415 * but since that doesn't exist yet, just open code it.
5416 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005417 smp_mb();
5418
Bruce Allane921eb12012-11-28 09:28:37 +00005419 /* We need to check again in a case another CPU has just
Bruce Allanad680762008-03-28 09:15:03 -07005420 * made room available.
5421 */
Bruce Allan55aa6982011-12-16 00:45:45 +00005422 if (e1000_desc_unused(tx_ring) < size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005423 return -EBUSY;
5424
5425 /* A reprieve! */
Bruce Allan55aa6982011-12-16 00:45:45 +00005426 netif_start_queue(adapter->netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005427 ++adapter->restart_queue;
5428 return 0;
5429}
5430
Bruce Allan55aa6982011-12-16 00:45:45 +00005431static int e1000_maybe_stop_tx(struct e1000_ring *tx_ring, int size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005432{
Bruce Alland821a4c2012-08-24 20:38:11 +00005433 BUG_ON(size > tx_ring->count);
5434
Bruce Allan55aa6982011-12-16 00:45:45 +00005435 if (e1000_desc_unused(tx_ring) >= size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005436 return 0;
Bruce Allan55aa6982011-12-16 00:45:45 +00005437 return __e1000_maybe_stop_tx(tx_ring, size);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005438}
5439
Stephen Hemminger3b29a562009-08-31 19:50:55 +00005440static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
5441 struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005442{
5443 struct e1000_adapter *adapter = netdev_priv(netdev);
5444 struct e1000_ring *tx_ring = adapter->tx_ring;
5445 unsigned int first;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005446 unsigned int tx_flags = 0;
Eric Dumazete743d312010-04-14 15:59:40 -07005447 unsigned int len = skb_headlen(skb);
Auke Kok4e6c7092007-10-05 14:15:23 -07005448 unsigned int nr_frags;
5449 unsigned int mss;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005450 int count = 0;
5451 int tso;
5452 unsigned int f;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005453
5454 if (test_bit(__E1000_DOWN, &adapter->state)) {
5455 dev_kfree_skb_any(skb);
5456 return NETDEV_TX_OK;
5457 }
5458
5459 if (skb->len <= 0) {
5460 dev_kfree_skb_any(skb);
5461 return NETDEV_TX_OK;
5462 }
5463
Bruce Allane921eb12012-11-28 09:28:37 +00005464 /* The minimum packet size with TCTL.PSP set is 17 bytes so
Tushar Dave6e97c172012-09-14 02:21:37 +00005465 * pad skb in order to meet this minimum size requirement
5466 */
5467 if (unlikely(skb->len < 17)) {
5468 if (skb_pad(skb, 17 - skb->len))
5469 return NETDEV_TX_OK;
5470 skb->len = 17;
5471 skb_set_tail_pointer(skb, 17);
5472 }
5473
Auke Kokbc7f75f2007-09-17 12:30:59 -07005474 mss = skb_shinfo(skb)->gso_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005475 if (mss) {
5476 u8 hdr_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005477
Bruce Allane921eb12012-11-28 09:28:37 +00005478 /* TSO Workaround for 82571/2/3 Controllers -- if skb->data
Bruce Allanad680762008-03-28 09:15:03 -07005479 * points to just header, pull a few bytes of payload from
5480 * frags into skb->data
5481 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005482 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Bruce Allane921eb12012-11-28 09:28:37 +00005483 /* we do this workaround for ES2LAN, but it is un-necessary,
Bruce Allanad680762008-03-28 09:15:03 -07005484 * avoiding it could save a lot of cycles
5485 */
Auke Kok4e6c7092007-10-05 14:15:23 -07005486 if (skb->data_len && (hdr_len == len)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005487 unsigned int pull_size;
5488
Bruce Allana2a5b322012-01-31 06:37:17 +00005489 pull_size = min_t(unsigned int, 4, skb->data_len);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005490 if (!__pskb_pull_tail(skb, pull_size)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005491 e_err("__pskb_pull_tail failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005492 dev_kfree_skb_any(skb);
5493 return NETDEV_TX_OK;
5494 }
Eric Dumazete743d312010-04-14 15:59:40 -07005495 len = skb_headlen(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005496 }
5497 }
5498
5499 /* reserve a descriptor for the offload context */
5500 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
5501 count++;
5502 count++;
5503
Bruce Alland821a4c2012-08-24 20:38:11 +00005504 count += DIV_ROUND_UP(len, adapter->tx_fifo_limit);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005505
5506 nr_frags = skb_shinfo(skb)->nr_frags;
5507 for (f = 0; f < nr_frags; f++)
Bruce Alland821a4c2012-08-24 20:38:11 +00005508 count += DIV_ROUND_UP(skb_frag_size(&skb_shinfo(skb)->frags[f]),
5509 adapter->tx_fifo_limit);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005510
5511 if (adapter->hw.mac.tx_pkt_filtering)
5512 e1000_transfer_dhcp_info(adapter, skb);
5513
Bruce Allane921eb12012-11-28 09:28:37 +00005514 /* need: count + 2 desc gap to keep tail from touching
Bruce Allanad680762008-03-28 09:15:03 -07005515 * head, otherwise try next time
5516 */
Bruce Allan55aa6982011-12-16 00:45:45 +00005517 if (e1000_maybe_stop_tx(tx_ring, count + 2))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005518 return NETDEV_TX_BUSY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005519
Jesse Grosseab6d182010-10-20 13:56:03 +00005520 if (vlan_tx_tag_present(skb)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005521 tx_flags |= E1000_TX_FLAGS_VLAN;
5522 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
5523 }
5524
5525 first = tx_ring->next_to_use;
5526
Bruce Allan55aa6982011-12-16 00:45:45 +00005527 tso = e1000_tso(tx_ring, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005528 if (tso < 0) {
5529 dev_kfree_skb_any(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005530 return NETDEV_TX_OK;
5531 }
5532
5533 if (tso)
5534 tx_flags |= E1000_TX_FLAGS_TSO;
Bruce Allan55aa6982011-12-16 00:45:45 +00005535 else if (e1000_tx_csum(tx_ring, skb))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005536 tx_flags |= E1000_TX_FLAGS_CSUM;
5537
Bruce Allane921eb12012-11-28 09:28:37 +00005538 /* Old method was to assume IPv4 packet by default if TSO was enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005539 * 82571 hardware supports TSO capabilities for IPv6 as well...
Bruce Allanad680762008-03-28 09:15:03 -07005540 * no longer assume, we must.
5541 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005542 if (skb->protocol == htons(ETH_P_IP))
5543 tx_flags |= E1000_TX_FLAGS_IPV4;
5544
Ben Greear943146d2012-02-11 15:39:40 +00005545 if (unlikely(skb->no_fcs))
5546 tx_flags |= E1000_TX_FLAGS_NO_FCS;
5547
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005548 /* if count is 0 then mapping error has occurred */
Bruce Alland821a4c2012-08-24 20:38:11 +00005549 count = e1000_tx_map(tx_ring, skb, first, adapter->tx_fifo_limit,
5550 nr_frags);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005551 if (count) {
Bruce Allanb67e1912012-12-27 08:32:33 +00005552 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
5553 !adapter->tx_hwtstamp_skb)) {
5554 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
5555 tx_flags |= E1000_TX_FLAGS_HWTSTAMP;
5556 adapter->tx_hwtstamp_skb = skb_get(skb);
5557 schedule_work(&adapter->tx_hwtstamp_work);
5558 } else {
5559 skb_tx_timestamp(skb);
5560 }
Willem de Bruijn80be3122012-04-27 09:04:05 +00005561
Tom Herbert3f0cfa32011-11-28 16:33:16 +00005562 netdev_sent_queue(netdev, skb->len);
Bruce Allan55aa6982011-12-16 00:45:45 +00005563 e1000_tx_queue(tx_ring, tx_flags, count);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005564 /* Make sure there is space in the ring for the next send. */
Bruce Alland821a4c2012-08-24 20:38:11 +00005565 e1000_maybe_stop_tx(tx_ring,
5566 (MAX_SKB_FRAGS *
5567 DIV_ROUND_UP(PAGE_SIZE,
5568 adapter->tx_fifo_limit) + 2));
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005569 } else {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005570 dev_kfree_skb_any(skb);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005571 tx_ring->buffer_info[first].time_stamp = 0;
5572 tx_ring->next_to_use = first;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005573 }
5574
Auke Kokbc7f75f2007-09-17 12:30:59 -07005575 return NETDEV_TX_OK;
5576}
5577
5578/**
5579 * e1000_tx_timeout - Respond to a Tx Hang
5580 * @netdev: network interface device structure
5581 **/
5582static void e1000_tx_timeout(struct net_device *netdev)
5583{
5584 struct e1000_adapter *adapter = netdev_priv(netdev);
5585
5586 /* Do the reset outside of interrupt context */
5587 adapter->tx_timeout_count++;
5588 schedule_work(&adapter->reset_task);
5589}
5590
5591static void e1000_reset_task(struct work_struct *work)
5592{
5593 struct e1000_adapter *adapter;
5594 adapter = container_of(work, struct e1000_adapter, reset_task);
5595
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00005596 /* don't run the task if already down */
5597 if (test_bit(__E1000_DOWN, &adapter->state))
5598 return;
5599
Bruce Allan12d43f72012-12-05 06:26:14 +00005600 if (!(adapter->flags & FLAG_RESTART_NOW)) {
Carolyn Wybornyaffa9df2010-10-28 00:59:55 +00005601 e1000e_dump(adapter);
Bruce Allan12d43f72012-12-05 06:26:14 +00005602 e_err("Reset adapter unexpectedly\n");
Carolyn Wybornyaffa9df2010-10-28 00:59:55 +00005603 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005604 e1000e_reinit_locked(adapter);
5605}
5606
5607/**
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005608 * e1000_get_stats64 - Get System Network Statistics
Auke Kokbc7f75f2007-09-17 12:30:59 -07005609 * @netdev: network interface device structure
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005610 * @stats: rtnl_link_stats64 pointer
Auke Kokbc7f75f2007-09-17 12:30:59 -07005611 *
5612 * Returns the address of the device statistics structure.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005613 **/
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005614struct rtnl_link_stats64 *e1000e_get_stats64(struct net_device *netdev,
Bruce Allan66501f52013-02-20 04:05:55 +00005615 struct rtnl_link_stats64 *stats)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005616{
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005617 struct e1000_adapter *adapter = netdev_priv(netdev);
5618
5619 memset(stats, 0, sizeof(struct rtnl_link_stats64));
5620 spin_lock(&adapter->stats64_lock);
5621 e1000e_update_stats(adapter);
5622 /* Fill out the OS statistics structure */
5623 stats->rx_bytes = adapter->stats.gorc;
5624 stats->rx_packets = adapter->stats.gprc;
5625 stats->tx_bytes = adapter->stats.gotc;
5626 stats->tx_packets = adapter->stats.gptc;
5627 stats->multicast = adapter->stats.mprc;
5628 stats->collisions = adapter->stats.colc;
5629
5630 /* Rx Errors */
5631
Bruce Allane921eb12012-11-28 09:28:37 +00005632 /* RLEC on some newer hardware can be incorrect so build
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005633 * our own version based on RUC and ROC
5634 */
5635 stats->rx_errors = adapter->stats.rxerrc +
Bruce Allanf0ff4392013-02-20 04:05:39 +00005636 adapter->stats.crcerrs + adapter->stats.algnerrc +
5637 adapter->stats.ruc + adapter->stats.roc + adapter->stats.cexterr;
5638 stats->rx_length_errors = adapter->stats.ruc + adapter->stats.roc;
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005639 stats->rx_crc_errors = adapter->stats.crcerrs;
5640 stats->rx_frame_errors = adapter->stats.algnerrc;
5641 stats->rx_missed_errors = adapter->stats.mpc;
5642
5643 /* Tx Errors */
Bruce Allanf0ff4392013-02-20 04:05:39 +00005644 stats->tx_errors = adapter->stats.ecol + adapter->stats.latecol;
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005645 stats->tx_aborted_errors = adapter->stats.ecol;
5646 stats->tx_window_errors = adapter->stats.latecol;
5647 stats->tx_carrier_errors = adapter->stats.tncrs;
5648
5649 /* Tx Dropped needs to be maintained elsewhere */
5650
5651 spin_unlock(&adapter->stats64_lock);
5652 return stats;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005653}
5654
5655/**
5656 * e1000_change_mtu - Change the Maximum Transfer Unit
5657 * @netdev: network interface device structure
5658 * @new_mtu: new value for maximum frame size
5659 *
5660 * Returns 0 on success, negative on failure
5661 **/
5662static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
5663{
5664 struct e1000_adapter *adapter = netdev_priv(netdev);
5665 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5666
Bruce Allan2adc55c2009-06-02 11:28:58 +00005667 /* Jumbo frame support */
Bruce Allan2e1706f2012-06-30 20:02:42 +00005668 if ((max_frame > ETH_FRAME_LEN + ETH_FCS_LEN) &&
5669 !(adapter->flags & FLAG_HAS_JUMBO_FRAMES)) {
5670 e_err("Jumbo Frames not supported.\n");
5671 return -EINVAL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005672 }
5673
Bruce Allan2adc55c2009-06-02 11:28:58 +00005674 /* Supported frame sizes */
5675 if ((new_mtu < ETH_ZLEN + ETH_FCS_LEN + VLAN_HLEN) ||
5676 (max_frame > adapter->max_hw_frame_size)) {
5677 e_err("Unsupported MTU setting\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005678 return -EINVAL;
5679 }
5680
Bruce Allan2fbe4522012-04-19 03:21:47 +00005681 /* Jumbo frame workaround on 82579 and newer requires CRC be stripped */
5682 if ((adapter->hw.mac.type >= e1000_pch2lan) &&
Bruce Allana1ce6472010-09-22 17:16:40 +00005683 !(adapter->flags2 & FLAG2_CRC_STRIPPING) &&
5684 (new_mtu > ETH_DATA_LEN)) {
Bruce Allan2fbe4522012-04-19 03:21:47 +00005685 e_err("Jumbo Frames not supported on this device when CRC stripping is disabled.\n");
Bruce Allana1ce6472010-09-22 17:16:40 +00005686 return -EINVAL;
5687 }
5688
Auke Kokbc7f75f2007-09-17 12:30:59 -07005689 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
Bruce Allan1bba4382011-03-19 00:27:20 +00005690 usleep_range(1000, 2000);
Bruce Allan610c9922009-11-19 12:35:45 +00005691 /* e1000e_down -> e1000e_reset dependent on max_frame_size & mtu */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005692 adapter->max_frame_size = max_frame;
Bruce Allan610c9922009-11-19 12:35:45 +00005693 e_info("changing MTU from %d to %d\n", netdev->mtu, new_mtu);
5694 netdev->mtu = new_mtu;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005695 if (netif_running(netdev))
5696 e1000e_down(adapter);
5697
Bruce Allane921eb12012-11-28 09:28:37 +00005698 /* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kokbc7f75f2007-09-17 12:30:59 -07005699 * means we reserve 2 more, this pushes us to allocate from the next
5700 * larger slab size.
Bruce Allanad680762008-03-28 09:15:03 -07005701 * i.e. RXBUFFER_2048 --> size-4096 slab
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005702 * However with the new *_jumbo_rx* routines, jumbo receives will use
5703 * fragmented skbs
Bruce Allanad680762008-03-28 09:15:03 -07005704 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005705
Jesse Brandeburg99261462010-01-22 22:56:16 +00005706 if (max_frame <= 2048)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005707 adapter->rx_buffer_len = 2048;
5708 else
5709 adapter->rx_buffer_len = 4096;
5710
5711 /* adjust allocation if LPE protects us, and we aren't using SBP */
5712 if ((max_frame == ETH_FRAME_LEN + ETH_FCS_LEN) ||
Bruce Allan17e813e2013-02-20 04:06:01 +00005713 (max_frame == ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005714 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN
Bruce Allan17e813e2013-02-20 04:06:01 +00005715 + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005716
Auke Kokbc7f75f2007-09-17 12:30:59 -07005717 if (netif_running(netdev))
5718 e1000e_up(adapter);
5719 else
5720 e1000e_reset(adapter);
5721
5722 clear_bit(__E1000_RESETTING, &adapter->state);
5723
5724 return 0;
5725}
5726
5727static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
5728 int cmd)
5729{
5730 struct e1000_adapter *adapter = netdev_priv(netdev);
5731 struct mii_ioctl_data *data = if_mii(ifr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005732
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005733 if (adapter->hw.phy.media_type != e1000_media_type_copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005734 return -EOPNOTSUPP;
5735
5736 switch (cmd) {
5737 case SIOCGMIIPHY:
5738 data->phy_id = adapter->hw.phy.addr;
5739 break;
5740 case SIOCGMIIREG:
Bruce Allanb16a0022009-11-20 23:24:30 +00005741 e1000_phy_read_status(adapter);
5742
Bruce Allan7c257692008-04-23 11:09:00 -07005743 switch (data->reg_num & 0x1F) {
5744 case MII_BMCR:
5745 data->val_out = adapter->phy_regs.bmcr;
5746 break;
5747 case MII_BMSR:
5748 data->val_out = adapter->phy_regs.bmsr;
5749 break;
5750 case MII_PHYSID1:
5751 data->val_out = (adapter->hw.phy.id >> 16);
5752 break;
5753 case MII_PHYSID2:
5754 data->val_out = (adapter->hw.phy.id & 0xFFFF);
5755 break;
5756 case MII_ADVERTISE:
5757 data->val_out = adapter->phy_regs.advertise;
5758 break;
5759 case MII_LPA:
5760 data->val_out = adapter->phy_regs.lpa;
5761 break;
5762 case MII_EXPANSION:
5763 data->val_out = adapter->phy_regs.expansion;
5764 break;
5765 case MII_CTRL1000:
5766 data->val_out = adapter->phy_regs.ctrl1000;
5767 break;
5768 case MII_STAT1000:
5769 data->val_out = adapter->phy_regs.stat1000;
5770 break;
5771 case MII_ESTATUS:
5772 data->val_out = adapter->phy_regs.estatus;
5773 break;
5774 default:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005775 return -EIO;
5776 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005777 break;
5778 case SIOCSMIIREG:
5779 default:
5780 return -EOPNOTSUPP;
5781 }
5782 return 0;
5783}
5784
Bruce Allanb67e1912012-12-27 08:32:33 +00005785/**
5786 * e1000e_hwtstamp_ioctl - control hardware time stamping
5787 * @netdev: network interface device structure
5788 * @ifreq: interface request
5789 *
5790 * Outgoing time stamping can be enabled and disabled. Play nice and
5791 * disable it when requested, although it shouldn't cause any overhead
5792 * when no packet needs it. At most one packet in the queue may be
5793 * marked for time stamping, otherwise it would be impossible to tell
5794 * for sure to which packet the hardware time stamp belongs.
5795 *
5796 * Incoming time stamping has to be configured via the hardware filters.
5797 * Not all combinations are supported, in particular event type has to be
5798 * specified. Matching the kind of event packet is not supported, with the
5799 * exception of "all V2 events regardless of level 2 or 4".
5800 **/
Ben Hutchings4e8cff62013-11-18 23:07:16 +00005801static int e1000e_hwtstamp_set(struct net_device *netdev, struct ifreq *ifr)
Bruce Allanb67e1912012-12-27 08:32:33 +00005802{
5803 struct e1000_adapter *adapter = netdev_priv(netdev);
5804 struct hwtstamp_config config;
5805 int ret_val;
5806
5807 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
5808 return -EFAULT;
5809
Ben Hutchings62d7e3a2013-11-14 00:41:38 +00005810 ret_val = e1000e_config_hwtstamp(adapter, &config);
Bruce Allanb67e1912012-12-27 08:32:33 +00005811 if (ret_val)
5812 return ret_val;
5813
Bruce Alland89777b2013-01-19 01:09:58 +00005814 switch (config.rx_filter) {
5815 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
5816 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
5817 case HWTSTAMP_FILTER_PTP_V2_SYNC:
5818 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
5819 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
5820 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
5821 /* With V2 type filters which specify a Sync or Delay Request,
5822 * Path Delay Request/Response messages are also time stamped
5823 * by hardware so notify the caller the requested packets plus
5824 * some others are time stamped.
5825 */
5826 config.rx_filter = HWTSTAMP_FILTER_SOME;
5827 break;
5828 default:
5829 break;
5830 }
5831
Bruce Allanb67e1912012-12-27 08:32:33 +00005832 return copy_to_user(ifr->ifr_data, &config,
5833 sizeof(config)) ? -EFAULT : 0;
5834}
5835
Ben Hutchings4e8cff62013-11-18 23:07:16 +00005836static int e1000e_hwtstamp_get(struct net_device *netdev, struct ifreq *ifr)
5837{
5838 struct e1000_adapter *adapter = netdev_priv(netdev);
5839
5840 return copy_to_user(ifr->ifr_data, &adapter->hwtstamp_config,
5841 sizeof(adapter->hwtstamp_config)) ? -EFAULT : 0;
5842}
5843
Auke Kokbc7f75f2007-09-17 12:30:59 -07005844static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
5845{
5846 switch (cmd) {
5847 case SIOCGMIIPHY:
5848 case SIOCGMIIREG:
5849 case SIOCSMIIREG:
5850 return e1000_mii_ioctl(netdev, ifr, cmd);
Bruce Allanb67e1912012-12-27 08:32:33 +00005851 case SIOCSHWTSTAMP:
Ben Hutchings4e8cff62013-11-18 23:07:16 +00005852 return e1000e_hwtstamp_set(netdev, ifr);
5853 case SIOCGHWTSTAMP:
5854 return e1000e_hwtstamp_get(netdev, ifr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005855 default:
5856 return -EOPNOTSUPP;
5857 }
5858}
5859
Bruce Allana4f58f52009-06-02 11:29:18 +00005860static int e1000_init_phy_wakeup(struct e1000_adapter *adapter, u32 wufc)
5861{
5862 struct e1000_hw *hw = &adapter->hw;
5863 u32 i, mac_reg;
Bruce Allan2b6b1682011-05-13 07:20:09 +00005864 u16 phy_reg, wuc_enable;
Bruce Allan70806a72013-01-05 05:08:37 +00005865 int retval;
Bruce Allana4f58f52009-06-02 11:29:18 +00005866
5867 /* copy MAC RARs to PHY RARs */
Bruce Alland3738bb2010-06-16 13:27:28 +00005868 e1000_copy_rx_addrs_to_phy_ich8lan(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00005869
Bruce Allan2b6b1682011-05-13 07:20:09 +00005870 retval = hw->phy.ops.acquire(hw);
5871 if (retval) {
5872 e_err("Could not acquire PHY\n");
5873 return retval;
5874 }
5875
5876 /* Enable access to wakeup registers on and set page to BM_WUC_PAGE */
5877 retval = e1000_enable_phy_wakeup_reg_access_bm(hw, &wuc_enable);
5878 if (retval)
Bruce Allan75ce1532012-02-08 02:54:48 +00005879 goto release;
Bruce Allan2b6b1682011-05-13 07:20:09 +00005880
5881 /* copy MAC MTA to PHY MTA - only needed for pchlan */
Bruce Allana4f58f52009-06-02 11:29:18 +00005882 for (i = 0; i < adapter->hw.mac.mta_reg_count; i++) {
5883 mac_reg = E1000_READ_REG_ARRAY(hw, E1000_MTA, i);
Bruce Allan2b6b1682011-05-13 07:20:09 +00005884 hw->phy.ops.write_reg_page(hw, BM_MTA(i),
5885 (u16)(mac_reg & 0xFFFF));
5886 hw->phy.ops.write_reg_page(hw, BM_MTA(i) + 1,
5887 (u16)((mac_reg >> 16) & 0xFFFF));
Bruce Allana4f58f52009-06-02 11:29:18 +00005888 }
5889
5890 /* configure PHY Rx Control register */
Bruce Allan2b6b1682011-05-13 07:20:09 +00005891 hw->phy.ops.read_reg_page(&adapter->hw, BM_RCTL, &phy_reg);
Bruce Allana4f58f52009-06-02 11:29:18 +00005892 mac_reg = er32(RCTL);
5893 if (mac_reg & E1000_RCTL_UPE)
5894 phy_reg |= BM_RCTL_UPE;
5895 if (mac_reg & E1000_RCTL_MPE)
5896 phy_reg |= BM_RCTL_MPE;
5897 phy_reg &= ~(BM_RCTL_MO_MASK);
5898 if (mac_reg & E1000_RCTL_MO_3)
5899 phy_reg |= (((mac_reg & E1000_RCTL_MO_3) >> E1000_RCTL_MO_SHIFT)
Bruce Allan17e813e2013-02-20 04:06:01 +00005900 << BM_RCTL_MO_SHIFT);
Bruce Allana4f58f52009-06-02 11:29:18 +00005901 if (mac_reg & E1000_RCTL_BAM)
5902 phy_reg |= BM_RCTL_BAM;
5903 if (mac_reg & E1000_RCTL_PMCF)
5904 phy_reg |= BM_RCTL_PMCF;
5905 mac_reg = er32(CTRL);
5906 if (mac_reg & E1000_CTRL_RFCE)
5907 phy_reg |= BM_RCTL_RFCE;
Bruce Allan2b6b1682011-05-13 07:20:09 +00005908 hw->phy.ops.write_reg_page(&adapter->hw, BM_RCTL, phy_reg);
Bruce Allana4f58f52009-06-02 11:29:18 +00005909
5910 /* enable PHY wakeup in MAC register */
5911 ew32(WUFC, wufc);
5912 ew32(WUC, E1000_WUC_PHY_WAKE | E1000_WUC_PME_EN);
5913
5914 /* configure and enable PHY wakeup in PHY registers */
Bruce Allan2b6b1682011-05-13 07:20:09 +00005915 hw->phy.ops.write_reg_page(&adapter->hw, BM_WUFC, wufc);
5916 hw->phy.ops.write_reg_page(&adapter->hw, BM_WUC, E1000_WUC_PME_EN);
Bruce Allana4f58f52009-06-02 11:29:18 +00005917
5918 /* activate PHY wakeup */
Bruce Allan2b6b1682011-05-13 07:20:09 +00005919 wuc_enable |= BM_WUC_ENABLE_BIT | BM_WUC_HOST_WU_BIT;
5920 retval = e1000_disable_phy_wakeup_reg_access_bm(hw, &wuc_enable);
Bruce Allana4f58f52009-06-02 11:29:18 +00005921 if (retval)
5922 e_err("Could not set PHY Host Wakeup bit\n");
Bruce Allan75ce1532012-02-08 02:54:48 +00005923release:
Bruce Allan94d81862009-11-20 23:25:26 +00005924 hw->phy.ops.release(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00005925
5926 return retval;
5927}
5928
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00005929static int __e1000_shutdown(struct pci_dev *pdev, bool runtime)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005930{
5931 struct net_device *netdev = pci_get_drvdata(pdev);
5932 struct e1000_adapter *adapter = netdev_priv(netdev);
5933 struct e1000_hw *hw = &adapter->hw;
5934 u32 ctrl, ctrl_ext, rctl, status;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005935 /* Runtime suspend should only enable wakeup for link changes */
5936 u32 wufc = runtime ? E1000_WUFC_LNKC : adapter->wol;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005937 int retval = 0;
5938
5939 netif_device_detach(netdev);
5940
5941 if (netif_running(netdev)) {
Bruce Allanbb9e44d2012-03-21 00:39:12 +00005942 int count = E1000_CHECK_RESET_COUNT;
5943
5944 while (test_bit(__E1000_RESETTING, &adapter->state) && count--)
5945 usleep_range(10000, 20000);
5946
Auke Kokbc7f75f2007-09-17 12:30:59 -07005947 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
5948 e1000e_down(adapter);
5949 e1000_free_irq(adapter);
5950 }
Bruce Allan4662e822008-08-26 18:37:06 -07005951 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005952
Auke Kokbc7f75f2007-09-17 12:30:59 -07005953 status = er32(STATUS);
5954 if (status & E1000_STATUS_LU)
5955 wufc &= ~E1000_WUFC_LNKC;
5956
5957 if (wufc) {
5958 e1000_setup_rctl(adapter);
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00005959 e1000e_set_rx_mode(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005960
5961 /* turn on all-multi mode if wake on multicast is enabled */
5962 if (wufc & E1000_WUFC_MC) {
5963 rctl = er32(RCTL);
5964 rctl |= E1000_RCTL_MPE;
5965 ew32(RCTL, rctl);
5966 }
5967
5968 ctrl = er32(CTRL);
Bruce Allana4f58f52009-06-02 11:29:18 +00005969 ctrl |= E1000_CTRL_ADVD3WUC;
5970 if (!(adapter->flags2 & FLAG2_HAS_PHY_WAKEUP))
5971 ctrl |= E1000_CTRL_EN_PHY_PWR_MGMT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005972 ew32(CTRL, ctrl);
5973
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005974 if (adapter->hw.phy.media_type == e1000_media_type_fiber ||
5975 adapter->hw.phy.media_type ==
5976 e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005977 /* keep the laser running in D3 */
5978 ctrl_ext = er32(CTRL_EXT);
Bruce Allan93a23f42009-12-08 07:27:41 +00005979 ctrl_ext |= E1000_CTRL_EXT_SDP3_DATA;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005980 ew32(CTRL_EXT, ctrl_ext);
5981 }
5982
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005983 if (adapter->flags & FLAG_IS_ICH)
Bruce Allan99730e42011-05-13 07:19:48 +00005984 e1000_suspend_workarounds_ich8lan(&adapter->hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005985
Auke Kokbc7f75f2007-09-17 12:30:59 -07005986 /* Allow time for pending master requests to run */
5987 e1000e_disable_pcie_master(&adapter->hw);
5988
Bruce Allan82776a42009-08-14 14:35:33 +00005989 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
Bruce Allana4f58f52009-06-02 11:29:18 +00005990 /* enable wakeup by the PHY */
5991 retval = e1000_init_phy_wakeup(adapter, wufc);
5992 if (retval)
5993 return retval;
5994 } else {
5995 /* enable wakeup by the MAC */
5996 ew32(WUFC, wufc);
5997 ew32(WUC, E1000_WUC_PME_EN);
5998 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005999 } else {
6000 ew32(WUC, 0);
6001 ew32(WUFC, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006002 }
6003
Auke Kokbc7f75f2007-09-17 12:30:59 -07006004 if (adapter->hw.phy.type == e1000_phy_igp_3)
6005 e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw);
6006
Bruce Allane921eb12012-11-28 09:28:37 +00006007 /* Release control of h/w to f/w. If f/w is AMT enabled, this
Bruce Allanad680762008-03-28 09:15:03 -07006008 * would have already happened in close and is redundant.
6009 */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006010 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006011
Dean Nelson24b41c92013-06-13 03:55:44 +00006012 pci_clear_master(pdev);
6013
Bruce Allane921eb12012-11-28 09:28:37 +00006014 /* The pci-e switch on some quad port adapters will report a
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006015 * correctable error when the MAC transitions from D0 to D3. To
6016 * prevent this we need to mask off the correctable errors on the
6017 * downstream port of the pci-e switch.
Li Zhange8c254c2013-08-13 18:42:58 +00006018 *
6019 * We don't have the associated upstream bridge while assigning
6020 * the PCI device into guest. For example, the KVM on power is
6021 * one of the cases.
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006022 */
6023 if (adapter->flags & FLAG_IS_QUAD_PORT) {
6024 struct pci_dev *us_dev = pdev->bus->self;
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006025 u16 devctl;
6026
Li Zhange8c254c2013-08-13 18:42:58 +00006027 if (!us_dev)
6028 return 0;
6029
Jiang Liuf8c0fca2012-08-20 13:30:43 -06006030 pcie_capability_read_word(us_dev, PCI_EXP_DEVCTL, &devctl);
6031 pcie_capability_write_word(us_dev, PCI_EXP_DEVCTL,
6032 (devctl & ~PCI_EXP_DEVCTL_CERE));
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006033
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006034 pci_save_state(pdev);
6035 pci_prepare_to_sleep(pdev);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006036
Jiang Liuf8c0fca2012-08-20 13:30:43 -06006037 pcie_capability_write_word(us_dev, PCI_EXP_DEVCTL, devctl);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006038 }
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006039
6040 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006041}
6042
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006043/**
6044 * e1000e_disable_aspm - Disable ASPM states
6045 * @pdev: pointer to PCI device struct
6046 * @state: bit-mask of ASPM states to disable
6047 *
6048 * Some devices *must* have certain ASPM states disabled per hardware errata.
6049 **/
6050static void e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
Bruce Allan6f461f62010-04-27 03:33:04 +00006051{
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006052 struct pci_dev *parent = pdev->bus->self;
6053 u16 aspm_dis_mask = 0;
6054 u16 pdev_aspmc, parent_aspmc;
Bjorn Helgaasffe0b2ff2012-12-06 06:40:07 +00006055
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006056 switch (state) {
6057 case PCIE_LINK_STATE_L0S:
6058 case PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1:
6059 aspm_dis_mask |= PCI_EXP_LNKCTL_ASPM_L0S;
6060 /* fall-through - can't have L1 without L0s */
6061 case PCIE_LINK_STATE_L1:
6062 aspm_dis_mask |= PCI_EXP_LNKCTL_ASPM_L1;
6063 break;
6064 default:
6065 return;
6066 }
6067
6068 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &pdev_aspmc);
6069 pdev_aspmc &= PCI_EXP_LNKCTL_ASPMC;
6070
6071 if (parent) {
6072 pcie_capability_read_word(parent, PCI_EXP_LNKCTL,
6073 &parent_aspmc);
6074 parent_aspmc &= PCI_EXP_LNKCTL_ASPMC;
6075 }
6076
6077 /* Nothing to do if the ASPM states to be disabled already are */
6078 if (!(pdev_aspmc & aspm_dis_mask) &&
6079 (!parent || !(parent_aspmc & aspm_dis_mask)))
6080 return;
6081
6082 dev_info(&pdev->dev, "Disabling ASPM %s %s\n",
6083 (aspm_dis_mask & pdev_aspmc & PCI_EXP_LNKCTL_ASPM_L0S) ?
6084 "L0s" : "",
6085 (aspm_dis_mask & pdev_aspmc & PCI_EXP_LNKCTL_ASPM_L1) ?
6086 "L1" : "");
6087
6088#ifdef CONFIG_PCIEASPM
6089 pci_disable_link_state_locked(pdev, state);
6090
6091 /* Double-check ASPM control. If not disabled by the above, the
6092 * BIOS is preventing that from happening (or CONFIG_PCIEASPM is
6093 * not enabled); override by writing PCI config space directly.
6094 */
6095 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &pdev_aspmc);
6096 pdev_aspmc &= PCI_EXP_LNKCTL_ASPMC;
6097
6098 if (!(aspm_dis_mask & pdev_aspmc))
6099 return;
6100#endif
Bjorn Helgaasffe0b2ff2012-12-06 06:40:07 +00006101
Bruce Allane921eb12012-11-28 09:28:37 +00006102 /* Both device and parent should have the same ASPM setting.
Bruce Allan6f461f62010-04-27 03:33:04 +00006103 * Disable ASPM in downstream component first and then upstream.
Auke Kok1eae4eb2007-10-31 15:22:00 -07006104 */
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006105 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL, aspm_dis_mask);
Bruce Allan6f461f62010-04-27 03:33:04 +00006106
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006107 if (parent)
6108 pcie_capability_clear_word(parent, PCI_EXP_LNKCTL,
6109 aspm_dis_mask);
Auke Kok1eae4eb2007-10-31 15:22:00 -07006110}
6111
Rafael J. Wysockiaa338602011-02-11 00:06:54 +01006112#ifdef CONFIG_PM
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006113static bool e1000e_pm_ready(struct e1000_adapter *adapter)
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00006114{
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006115 return !!adapter->tx_ring->buffer_info;
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00006116}
6117
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006118static int __e1000_resume(struct pci_dev *pdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07006119{
6120 struct net_device *netdev = pci_get_drvdata(pdev);
6121 struct e1000_adapter *adapter = netdev_priv(netdev);
6122 struct e1000_hw *hw = &adapter->hw;
Bruce Allan78cd29d2011-03-24 03:09:03 +00006123 u16 aspm_disable_flag = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006124 u32 err;
6125
Bruce Allan78cd29d2011-03-24 03:09:03 +00006126 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L0S)
6127 aspm_disable_flag = PCIE_LINK_STATE_L0S;
6128 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
6129 aspm_disable_flag |= PCIE_LINK_STATE_L1;
6130 if (aspm_disable_flag)
6131 e1000e_disable_aspm(pdev, aspm_disable_flag);
6132
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006133 pci_set_master(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09006134
Bruce Allan4662e822008-08-26 18:37:06 -07006135 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006136 if (netif_running(netdev)) {
6137 err = e1000_request_irq(adapter);
6138 if (err)
6139 return err;
6140 }
6141
Bruce Allan2fbe4522012-04-19 03:21:47 +00006142 if (hw->mac.type >= e1000_pch2lan)
Bruce Allan99730e42011-05-13 07:19:48 +00006143 e1000_resume_workarounds_pchlan(&adapter->hw);
6144
Auke Kokbc7f75f2007-09-17 12:30:59 -07006145 e1000e_power_up_phy(adapter);
Bruce Allana4f58f52009-06-02 11:29:18 +00006146
6147 /* report the system wakeup cause from S3/S4 */
6148 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
6149 u16 phy_data;
6150
6151 e1e_rphy(&adapter->hw, BM_WUS, &phy_data);
6152 if (phy_data) {
6153 e_info("PHY Wakeup cause - %s\n",
Bruce Allan17e813e2013-02-20 04:06:01 +00006154 phy_data & E1000_WUS_EX ? "Unicast Packet" :
6155 phy_data & E1000_WUS_MC ? "Multicast Packet" :
6156 phy_data & E1000_WUS_BC ? "Broadcast Packet" :
6157 phy_data & E1000_WUS_MAG ? "Magic Packet" :
6158 phy_data & E1000_WUS_LNKC ?
6159 "Link Status Change" : "other");
Bruce Allana4f58f52009-06-02 11:29:18 +00006160 }
6161 e1e_wphy(&adapter->hw, BM_WUS, ~0);
6162 } else {
6163 u32 wus = er32(WUS);
6164 if (wus) {
6165 e_info("MAC Wakeup cause - %s\n",
Bruce Allan17e813e2013-02-20 04:06:01 +00006166 wus & E1000_WUS_EX ? "Unicast Packet" :
6167 wus & E1000_WUS_MC ? "Multicast Packet" :
6168 wus & E1000_WUS_BC ? "Broadcast Packet" :
6169 wus & E1000_WUS_MAG ? "Magic Packet" :
6170 wus & E1000_WUS_LNKC ? "Link Status Change" :
6171 "other");
Bruce Allana4f58f52009-06-02 11:29:18 +00006172 }
6173 ew32(WUS, ~0);
6174 }
6175
Auke Kokbc7f75f2007-09-17 12:30:59 -07006176 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006177
Bruce Allancd791612010-05-10 14:59:51 +00006178 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006179
6180 if (netif_running(netdev))
6181 e1000e_up(adapter);
6182
6183 netif_device_attach(netdev);
6184
Bruce Allane921eb12012-11-28 09:28:37 +00006185 /* If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07006186 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07006187 * under the control of the driver.
6188 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006189 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006190 e1000e_get_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006191
6192 return 0;
6193}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006194
Mika Westerberg38a529b2014-01-16 14:39:39 +02006195#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006196static int e1000_suspend(struct device *dev)
6197{
6198 struct pci_dev *pdev = to_pci_dev(dev);
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006199
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006200 return __e1000_shutdown(pdev, false);
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006201}
6202
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006203static int e1000_resume(struct device *dev)
6204{
6205 struct pci_dev *pdev = to_pci_dev(dev);
6206 struct net_device *netdev = pci_get_drvdata(pdev);
6207 struct e1000_adapter *adapter = netdev_priv(netdev);
6208
6209 if (e1000e_pm_ready(adapter))
6210 adapter->idle_check = true;
6211
6212 return __e1000_resume(pdev);
6213}
Mika Westerberg38a529b2014-01-16 14:39:39 +02006214#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006215
6216#ifdef CONFIG_PM_RUNTIME
6217static int e1000_runtime_suspend(struct device *dev)
6218{
6219 struct pci_dev *pdev = to_pci_dev(dev);
6220 struct net_device *netdev = pci_get_drvdata(pdev);
6221 struct e1000_adapter *adapter = netdev_priv(netdev);
6222
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006223 if (!e1000e_pm_ready(adapter))
6224 return 0;
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006225
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006226 return __e1000_shutdown(pdev, true);
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006227}
6228
6229static int e1000_idle(struct device *dev)
6230{
6231 struct pci_dev *pdev = to_pci_dev(dev);
6232 struct net_device *netdev = pci_get_drvdata(pdev);
6233 struct e1000_adapter *adapter = netdev_priv(netdev);
6234
6235 if (!e1000e_pm_ready(adapter))
6236 return 0;
6237
6238 if (adapter->idle_check) {
6239 adapter->idle_check = false;
6240 if (!e1000e_has_link(adapter))
6241 pm_schedule_suspend(dev, MSEC_PER_SEC);
6242 }
6243
6244 return -EBUSY;
6245}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006246
6247static int e1000_runtime_resume(struct device *dev)
6248{
6249 struct pci_dev *pdev = to_pci_dev(dev);
6250 struct net_device *netdev = pci_get_drvdata(pdev);
6251 struct e1000_adapter *adapter = netdev_priv(netdev);
6252
6253 if (!e1000e_pm_ready(adapter))
6254 return 0;
6255
6256 adapter->idle_check = !dev->power.runtime_auto;
6257 return __e1000_resume(pdev);
6258}
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006259#endif /* CONFIG_PM_RUNTIME */
Rafael J. Wysockiaa338602011-02-11 00:06:54 +01006260#endif /* CONFIG_PM */
Auke Kokbc7f75f2007-09-17 12:30:59 -07006261
6262static void e1000_shutdown(struct pci_dev *pdev)
6263{
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006264 __e1000_shutdown(pdev, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006265}
6266
6267#ifdef CONFIG_NET_POLL_CONTROLLER
Dongdong Deng147b2c82010-11-16 19:50:15 -08006268
Bruce Allan8bb62862013-01-16 08:46:49 +00006269static irqreturn_t e1000_intr_msix(int __always_unused irq, void *data)
Dongdong Deng147b2c82010-11-16 19:50:15 -08006270{
6271 struct net_device *netdev = data;
6272 struct e1000_adapter *adapter = netdev_priv(netdev);
Dongdong Deng147b2c82010-11-16 19:50:15 -08006273
6274 if (adapter->msix_entries) {
Bruce Allan90da0662011-01-06 07:02:53 +00006275 int vector, msix_irq;
6276
Dongdong Deng147b2c82010-11-16 19:50:15 -08006277 vector = 0;
6278 msix_irq = adapter->msix_entries[vector].vector;
6279 disable_irq(msix_irq);
6280 e1000_intr_msix_rx(msix_irq, netdev);
6281 enable_irq(msix_irq);
6282
6283 vector++;
6284 msix_irq = adapter->msix_entries[vector].vector;
6285 disable_irq(msix_irq);
6286 e1000_intr_msix_tx(msix_irq, netdev);
6287 enable_irq(msix_irq);
6288
6289 vector++;
6290 msix_irq = adapter->msix_entries[vector].vector;
6291 disable_irq(msix_irq);
6292 e1000_msix_other(msix_irq, netdev);
6293 enable_irq(msix_irq);
6294 }
6295
6296 return IRQ_HANDLED;
6297}
6298
Bruce Allane921eb12012-11-28 09:28:37 +00006299/**
6300 * e1000_netpoll
6301 * @netdev: network interface device structure
6302 *
Auke Kokbc7f75f2007-09-17 12:30:59 -07006303 * Polling 'interrupt' - used by things like netconsole to send skbs
6304 * without having to re-enable interrupts. It's not called while
6305 * the interrupt routine is executing.
6306 */
6307static void e1000_netpoll(struct net_device *netdev)
6308{
6309 struct e1000_adapter *adapter = netdev_priv(netdev);
6310
Dongdong Deng147b2c82010-11-16 19:50:15 -08006311 switch (adapter->int_mode) {
6312 case E1000E_INT_MODE_MSIX:
6313 e1000_intr_msix(adapter->pdev->irq, netdev);
6314 break;
6315 case E1000E_INT_MODE_MSI:
6316 disable_irq(adapter->pdev->irq);
6317 e1000_intr_msi(adapter->pdev->irq, netdev);
6318 enable_irq(adapter->pdev->irq);
6319 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +00006320 default: /* E1000E_INT_MODE_LEGACY */
Dongdong Deng147b2c82010-11-16 19:50:15 -08006321 disable_irq(adapter->pdev->irq);
6322 e1000_intr(adapter->pdev->irq, netdev);
6323 enable_irq(adapter->pdev->irq);
6324 break;
6325 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07006326}
6327#endif
6328
6329/**
6330 * e1000_io_error_detected - called when PCI error is detected
6331 * @pdev: Pointer to PCI device
6332 * @state: The current pci connection state
6333 *
6334 * This function is called after a PCI bus error affecting
6335 * this device has been detected.
6336 */
6337static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
6338 pci_channel_state_t state)
6339{
6340 struct net_device *netdev = pci_get_drvdata(pdev);
6341 struct e1000_adapter *adapter = netdev_priv(netdev);
6342
6343 netif_device_detach(netdev);
6344
Mike Masonc93b5a72009-06-30 12:45:53 +00006345 if (state == pci_channel_io_perm_failure)
6346 return PCI_ERS_RESULT_DISCONNECT;
6347
Auke Kokbc7f75f2007-09-17 12:30:59 -07006348 if (netif_running(netdev))
6349 e1000e_down(adapter);
6350 pci_disable_device(pdev);
6351
6352 /* Request a slot slot reset. */
6353 return PCI_ERS_RESULT_NEED_RESET;
6354}
6355
6356/**
6357 * e1000_io_slot_reset - called after the pci bus has been reset.
6358 * @pdev: Pointer to PCI device
6359 *
6360 * Restart the card from scratch, as if from a cold-boot. Implementation
6361 * resembles the first-half of the e1000_resume routine.
6362 */
6363static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
6364{
6365 struct net_device *netdev = pci_get_drvdata(pdev);
6366 struct e1000_adapter *adapter = netdev_priv(netdev);
6367 struct e1000_hw *hw = &adapter->hw;
Bruce Allan78cd29d2011-03-24 03:09:03 +00006368 u16 aspm_disable_flag = 0;
Taku Izumi6e4f6f62008-06-20 11:57:02 +09006369 int err;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006370 pci_ers_result_t result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006371
Bruce Allan78cd29d2011-03-24 03:09:03 +00006372 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L0S)
6373 aspm_disable_flag = PCIE_LINK_STATE_L0S;
Bruce Allan6f461f62010-04-27 03:33:04 +00006374 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
Bruce Allan78cd29d2011-03-24 03:09:03 +00006375 aspm_disable_flag |= PCIE_LINK_STATE_L1;
6376 if (aspm_disable_flag)
6377 e1000e_disable_aspm(pdev, aspm_disable_flag);
6378
Bruce Allanf0f422e2008-08-04 17:21:53 -07006379 err = pci_enable_device_mem(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09006380 if (err) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006381 dev_err(&pdev->dev,
6382 "Cannot re-enable PCI device after reset.\n");
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006383 result = PCI_ERS_RESULT_DISCONNECT;
6384 } else {
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006385 pdev->state_saved = true;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006386 pci_restore_state(pdev);
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006387 pci_set_master(pdev);
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006388
6389 pci_enable_wake(pdev, PCI_D3hot, 0);
6390 pci_enable_wake(pdev, PCI_D3cold, 0);
6391
6392 e1000e_reset(adapter);
6393 ew32(WUS, ~0);
6394 result = PCI_ERS_RESULT_RECOVERED;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006395 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07006396
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006397 pci_cleanup_aer_uncorrect_error_status(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006398
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006399 return result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006400}
6401
6402/**
6403 * e1000_io_resume - called when traffic can start flowing again.
6404 * @pdev: Pointer to PCI device
6405 *
6406 * This callback is called when the error recovery driver tells us that
6407 * its OK to resume normal operation. Implementation resembles the
6408 * second-half of the e1000_resume routine.
6409 */
6410static void e1000_io_resume(struct pci_dev *pdev)
6411{
6412 struct net_device *netdev = pci_get_drvdata(pdev);
6413 struct e1000_adapter *adapter = netdev_priv(netdev);
6414
Bruce Allancd791612010-05-10 14:59:51 +00006415 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006416
6417 if (netif_running(netdev)) {
6418 if (e1000e_up(adapter)) {
6419 dev_err(&pdev->dev,
6420 "can't bring device back up after reset\n");
6421 return;
6422 }
6423 }
6424
6425 netif_device_attach(netdev);
6426
Bruce Allane921eb12012-11-28 09:28:37 +00006427 /* If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07006428 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07006429 * under the control of the driver.
6430 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006431 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006432 e1000e_get_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006433}
6434
6435static void e1000_print_device_info(struct e1000_adapter *adapter)
6436{
6437 struct e1000_hw *hw = &adapter->hw;
6438 struct net_device *netdev = adapter->netdev;
Bruce Allan073287c2010-11-24 06:01:51 +00006439 u32 ret_val;
6440 u8 pba_str[E1000_PBANUM_LENGTH];
Auke Kokbc7f75f2007-09-17 12:30:59 -07006441
6442 /* print bus type/speed/width info */
Bruce Allana5cc7642011-03-19 00:31:23 +00006443 e_info("(PCI Express:2.5GT/s:%s) %pM\n",
Jeff Kirsher44defeb2008-08-04 17:20:41 -07006444 /* bus width */
6445 ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" :
Bruce Allanf0ff4392013-02-20 04:05:39 +00006446 "Width x1"),
Jeff Kirsher44defeb2008-08-04 17:20:41 -07006447 /* MAC address */
Johannes Berg7c510e42008-10-27 17:47:26 -07006448 netdev->dev_addr);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07006449 e_info("Intel(R) PRO/%s Network Connection\n",
6450 (hw->phy.type == e1000_phy_ife) ? "10/100" : "1000");
Bruce Allan073287c2010-11-24 06:01:51 +00006451 ret_val = e1000_read_pba_string_generic(hw, pba_str,
6452 E1000_PBANUM_LENGTH);
6453 if (ret_val)
Bruce Allanf2315bf2011-12-16 00:46:59 +00006454 strlcpy((char *)pba_str, "Unknown", sizeof(pba_str));
Bruce Allan073287c2010-11-24 06:01:51 +00006455 e_info("MAC: %d, PHY: %d, PBA No: %s\n",
6456 hw->mac.type, hw->phy.type, pba_str);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006457}
6458
Auke Kok10aa4c02008-08-04 17:21:20 -07006459static void e1000_eeprom_checks(struct e1000_adapter *adapter)
6460{
6461 struct e1000_hw *hw = &adapter->hw;
6462 int ret_val;
6463 u16 buf = 0;
6464
6465 if (hw->mac.type != e1000_82573)
6466 return;
6467
6468 ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &buf);
Bruce Allane885d762012-01-31 06:37:32 +00006469 le16_to_cpus(&buf);
6470 if (!ret_val && (!(buf & (1 << 0)))) {
Auke Kok10aa4c02008-08-04 17:21:20 -07006471 /* Deep Smart Power Down (DSPD) */
Frans Pop6c2a9ef2008-09-22 14:52:22 -07006472 dev_warn(&adapter->pdev->dev,
6473 "Warning: detected DSPD enabled in EEPROM\n");
Auke Kok10aa4c02008-08-04 17:21:20 -07006474 }
Auke Kok10aa4c02008-08-04 17:21:20 -07006475}
6476
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006477static int e1000_set_features(struct net_device *netdev,
Bruce Allan70495a52012-01-11 01:26:50 +00006478 netdev_features_t features)
Bruce Allandc221292011-08-19 03:23:48 +00006479{
6480 struct e1000_adapter *adapter = netdev_priv(netdev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006481 netdev_features_t changed = features ^ netdev->features;
Bruce Allandc221292011-08-19 03:23:48 +00006482
6483 if (changed & (NETIF_F_TSO | NETIF_F_TSO6))
6484 adapter->flags |= FLAG_TSO_FORCE;
6485
Patrick McHardyf6469682013-04-19 02:04:27 +00006486 if (!(changed & (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX |
Ben Greearcf955e62012-02-11 15:39:51 +00006487 NETIF_F_RXCSUM | NETIF_F_RXHASH | NETIF_F_RXFCS |
6488 NETIF_F_RXALL)))
Bruce Allandc221292011-08-19 03:23:48 +00006489 return 0;
6490
Ben Greear01840392012-02-11 15:39:25 +00006491 if (changed & NETIF_F_RXFCS) {
6492 if (features & NETIF_F_RXFCS) {
6493 adapter->flags2 &= ~FLAG2_CRC_STRIPPING;
6494 } else {
6495 /* We need to take it back to defaults, which might mean
6496 * stripping is still disabled at the adapter level.
6497 */
6498 if (adapter->flags2 & FLAG2_DFLT_CRC_STRIPPING)
6499 adapter->flags2 |= FLAG2_CRC_STRIPPING;
6500 else
6501 adapter->flags2 &= ~FLAG2_CRC_STRIPPING;
6502 }
6503 }
6504
Bruce Allan70495a52012-01-11 01:26:50 +00006505 netdev->features = features;
6506
Bruce Allandc221292011-08-19 03:23:48 +00006507 if (netif_running(netdev))
6508 e1000e_reinit_locked(adapter);
6509 else
6510 e1000e_reset(adapter);
6511
6512 return 0;
6513}
6514
Stephen Hemminger651c2462008-11-19 21:57:48 -08006515static const struct net_device_ops e1000e_netdev_ops = {
6516 .ndo_open = e1000_open,
6517 .ndo_stop = e1000_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08006518 .ndo_start_xmit = e1000_xmit_frame,
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00006519 .ndo_get_stats64 = e1000e_get_stats64,
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00006520 .ndo_set_rx_mode = e1000e_set_rx_mode,
Stephen Hemminger651c2462008-11-19 21:57:48 -08006521 .ndo_set_mac_address = e1000_set_mac,
6522 .ndo_change_mtu = e1000_change_mtu,
6523 .ndo_do_ioctl = e1000_ioctl,
6524 .ndo_tx_timeout = e1000_tx_timeout,
6525 .ndo_validate_addr = eth_validate_addr,
6526
Stephen Hemminger651c2462008-11-19 21:57:48 -08006527 .ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
6528 .ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
6529#ifdef CONFIG_NET_POLL_CONTROLLER
6530 .ndo_poll_controller = e1000_netpoll,
6531#endif
Bruce Allandc221292011-08-19 03:23:48 +00006532 .ndo_set_features = e1000_set_features,
Stephen Hemminger651c2462008-11-19 21:57:48 -08006533};
6534
Auke Kokbc7f75f2007-09-17 12:30:59 -07006535/**
6536 * e1000_probe - Device Initialization Routine
6537 * @pdev: PCI device information struct
6538 * @ent: entry in e1000_pci_tbl
6539 *
6540 * Returns 0 on success, negative on failure
6541 *
6542 * e1000_probe initializes an adapter identified by a pci_dev structure.
6543 * The OS initialization, configuring of the adapter private structure,
6544 * and a hardware reset occur.
6545 **/
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00006546static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Auke Kokbc7f75f2007-09-17 12:30:59 -07006547{
6548 struct net_device *netdev;
6549 struct e1000_adapter *adapter;
6550 struct e1000_hw *hw;
6551 const struct e1000_info *ei = e1000_info_tbl[ent->driver_data];
Becky Brucef47e81f2008-05-01 18:03:11 -05006552 resource_size_t mmio_start, mmio_len;
6553 resource_size_t flash_start, flash_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006554 static int cards_found;
Bruce Allan78cd29d2011-03-24 03:09:03 +00006555 u16 aspm_disable_flag = 0;
Bruce Allan17e813e2013-02-20 04:06:01 +00006556 int bars, i, err, pci_using_dac;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006557 u16 eeprom_data = 0;
6558 u16 eeprom_apme_mask = E1000_EEPROM_APME;
6559
Bruce Allan78cd29d2011-03-24 03:09:03 +00006560 if (ei->flags2 & FLAG2_DISABLE_ASPM_L0S)
6561 aspm_disable_flag = PCIE_LINK_STATE_L0S;
Bruce Allan6f461f62010-04-27 03:33:04 +00006562 if (ei->flags2 & FLAG2_DISABLE_ASPM_L1)
Bruce Allan78cd29d2011-03-24 03:09:03 +00006563 aspm_disable_flag |= PCIE_LINK_STATE_L1;
6564 if (aspm_disable_flag)
6565 e1000e_disable_aspm(pdev, aspm_disable_flag);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09006566
Bruce Allanf0f422e2008-08-04 17:21:53 -07006567 err = pci_enable_device_mem(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006568 if (err)
6569 return err;
6570
6571 pci_using_dac = 0;
Russell King718a39e2013-06-10 12:22:30 +01006572 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006573 if (!err) {
Russell King718a39e2013-06-10 12:22:30 +01006574 pci_using_dac = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006575 } else {
Russell King718a39e2013-06-10 12:22:30 +01006576 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006577 if (err) {
Russell King718a39e2013-06-10 12:22:30 +01006578 dev_err(&pdev->dev,
6579 "No usable DMA configuration, aborting\n");
6580 goto err_dma;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006581 }
6582 }
6583
Bruce Allan17e813e2013-02-20 04:06:01 +00006584 bars = pci_select_bars(pdev, IORESOURCE_MEM);
6585 err = pci_request_selected_regions_exclusive(pdev, bars,
6586 e1000e_driver_name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006587 if (err)
6588 goto err_pci_reg;
6589
Xiaotian Feng68eac462009-08-14 14:35:52 +00006590 /* AER (Advanced Error Reporting) hooks */
Frans Pop19d5afd2009-10-02 10:04:12 -07006591 pci_enable_pcie_error_reporting(pdev);
Xiaotian Feng68eac462009-08-14 14:35:52 +00006592
Auke Kokbc7f75f2007-09-17 12:30:59 -07006593 pci_set_master(pdev);
Bruce Allan438b3652008-11-21 16:51:33 -08006594 /* PCI config space info */
6595 err = pci_save_state(pdev);
6596 if (err)
6597 goto err_alloc_etherdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006598
6599 err = -ENOMEM;
6600 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
6601 if (!netdev)
6602 goto err_alloc_etherdev;
6603
Auke Kokbc7f75f2007-09-17 12:30:59 -07006604 SET_NETDEV_DEV(netdev, &pdev->dev);
6605
Tom Herbertf85e4df2010-05-05 14:03:32 +00006606 netdev->irq = pdev->irq;
6607
Auke Kokbc7f75f2007-09-17 12:30:59 -07006608 pci_set_drvdata(pdev, netdev);
6609 adapter = netdev_priv(netdev);
6610 hw = &adapter->hw;
6611 adapter->netdev = netdev;
6612 adapter->pdev = pdev;
6613 adapter->ei = ei;
6614 adapter->pba = ei->pba;
6615 adapter->flags = ei->flags;
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00006616 adapter->flags2 = ei->flags2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006617 adapter->hw.adapter = adapter;
6618 adapter->hw.mac.type = ei->mac;
Bruce Allan2adc55c2009-06-02 11:28:58 +00006619 adapter->max_hw_frame_size = ei->max_hw_frame_size;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00006620 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006621
6622 mmio_start = pci_resource_start(pdev, 0);
6623 mmio_len = pci_resource_len(pdev, 0);
6624
6625 err = -EIO;
6626 adapter->hw.hw_addr = ioremap(mmio_start, mmio_len);
6627 if (!adapter->hw.hw_addr)
6628 goto err_ioremap;
6629
6630 if ((adapter->flags & FLAG_HAS_FLASH) &&
6631 (pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
6632 flash_start = pci_resource_start(pdev, 1);
6633 flash_len = pci_resource_len(pdev, 1);
6634 adapter->hw.flash_address = ioremap(flash_start, flash_len);
6635 if (!adapter->hw.flash_address)
6636 goto err_flashmap;
6637 }
6638
Bruce Alland495bcb2013-03-20 07:23:11 +00006639 /* Set default EEE advertisement */
6640 if (adapter->flags2 & FLAG2_HAS_EEE)
6641 adapter->eee_advert = MDIO_EEE_100TX | MDIO_EEE_1000T;
6642
Auke Kokbc7f75f2007-09-17 12:30:59 -07006643 /* construct the net_device struct */
Bruce Allane80bd1d2013-05-01 01:19:46 +00006644 netdev->netdev_ops = &e1000e_netdev_ops;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006645 e1000e_set_ethtool_ops(netdev);
Bruce Allane80bd1d2013-05-01 01:19:46 +00006646 netdev->watchdog_timeo = 5 * HZ;
Bruce Allanc58c8a72012-03-20 03:48:19 +00006647 netif_napi_add(netdev, &adapter->napi, e1000e_poll, 64);
Bruce Allanf2315bf2011-12-16 00:46:59 +00006648 strlcpy(netdev->name, pci_name(pdev), sizeof(netdev->name));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006649
6650 netdev->mem_start = mmio_start;
6651 netdev->mem_end = mmio_start + mmio_len;
6652
6653 adapter->bd_number = cards_found++;
6654
Bruce Allan4662e822008-08-26 18:37:06 -07006655 e1000e_check_options(adapter);
6656
Auke Kokbc7f75f2007-09-17 12:30:59 -07006657 /* setup adapter struct */
6658 err = e1000_sw_init(adapter);
6659 if (err)
6660 goto err_sw_init;
6661
Auke Kokbc7f75f2007-09-17 12:30:59 -07006662 memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops));
6663 memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops));
6664 memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops));
6665
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07006666 err = ei->get_variants(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006667 if (err)
6668 goto err_hw_init;
6669
Bruce Allan4a770352008-10-01 17:18:35 -07006670 if ((adapter->flags & FLAG_IS_ICH) &&
6671 (adapter->flags & FLAG_READ_ONLY_NVM))
6672 e1000e_write_protect_nvm_ich8lan(&adapter->hw);
6673
Auke Kokbc7f75f2007-09-17 12:30:59 -07006674 hw->mac.ops.get_bus_info(&adapter->hw);
6675
Jeff Kirsher318a94d2008-03-28 09:15:16 -07006676 adapter->hw.phy.autoneg_wait_to_complete = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006677
6678 /* Copper options */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07006679 if (adapter->hw.phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006680 adapter->hw.phy.mdix = AUTO_ALL_MODES;
6681 adapter->hw.phy.disable_polarity_correction = 0;
6682 adapter->hw.phy.ms_type = e1000_ms_hw_default;
6683 }
6684
Bruce Allan470a5422012-05-26 06:08:48 +00006685 if (hw->phy.ops.check_reset_block && hw->phy.ops.check_reset_block(hw))
Bruce Allan185095f2012-06-07 02:23:37 +00006686 dev_info(&pdev->dev,
6687 "PHY reset is blocked due to SOL/IDER session.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07006688
Bruce Allandc221292011-08-19 03:23:48 +00006689 /* Set initial default active device features */
6690 netdev->features = (NETIF_F_SG |
Patrick McHardyf6469682013-04-19 02:04:27 +00006691 NETIF_F_HW_VLAN_CTAG_RX |
6692 NETIF_F_HW_VLAN_CTAG_TX |
Bruce Allandc221292011-08-19 03:23:48 +00006693 NETIF_F_TSO |
6694 NETIF_F_TSO6 |
Bruce Allan70495a52012-01-11 01:26:50 +00006695 NETIF_F_RXHASH |
Bruce Allandc221292011-08-19 03:23:48 +00006696 NETIF_F_RXCSUM |
6697 NETIF_F_HW_CSUM);
6698
6699 /* Set user-changeable features (subset of all device features) */
6700 netdev->hw_features = netdev->features;
Ben Greear01840392012-02-11 15:39:25 +00006701 netdev->hw_features |= NETIF_F_RXFCS;
Ben Greear943146d2012-02-11 15:39:40 +00006702 netdev->priv_flags |= IFF_SUPP_NOFCS;
Ben Greearcf955e62012-02-11 15:39:51 +00006703 netdev->hw_features |= NETIF_F_RXALL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006704
6705 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
Patrick McHardyf6469682013-04-19 02:04:27 +00006706 netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006707
Bruce Allandc221292011-08-19 03:23:48 +00006708 netdev->vlan_features |= (NETIF_F_SG |
6709 NETIF_F_TSO |
6710 NETIF_F_TSO6 |
6711 NETIF_F_HW_CSUM);
Jeff Kirshera5136e22008-06-05 04:07:28 -07006712
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00006713 netdev->priv_flags |= IFF_UNICAST_FLT;
6714
Yi Zou7b872a52010-09-22 17:57:58 +00006715 if (pci_using_dac) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006716 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00006717 netdev->vlan_features |= NETIF_F_HIGHDMA;
6718 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07006719
Auke Kokbc7f75f2007-09-17 12:30:59 -07006720 if (e1000e_enable_mng_pass_thru(&adapter->hw))
6721 adapter->flags |= FLAG_MNG_PT_ENABLED;
6722
Bruce Allane921eb12012-11-28 09:28:37 +00006723 /* before reading the NVM, reset the controller to
Bruce Allanad680762008-03-28 09:15:03 -07006724 * put the device in a known good starting state
6725 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07006726 adapter->hw.mac.ops.reset_hw(&adapter->hw);
6727
Bruce Allane921eb12012-11-28 09:28:37 +00006728 /* systems with ASPM and others may see the checksum fail on the first
Auke Kokbc7f75f2007-09-17 12:30:59 -07006729 * attempt. Let's give it a few tries
6730 */
6731 for (i = 0;; i++) {
6732 if (e1000_validate_nvm_checksum(&adapter->hw) >= 0)
6733 break;
6734 if (i == 2) {
Bruce Allan185095f2012-06-07 02:23:37 +00006735 dev_err(&pdev->dev, "The NVM Checksum Is Not Valid\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07006736 err = -EIO;
6737 goto err_eeprom;
6738 }
6739 }
6740
Auke Kok10aa4c02008-08-04 17:21:20 -07006741 e1000_eeprom_checks(adapter);
6742
Bruce Allan608f8a02010-01-13 02:04:58 +00006743 /* copy the MAC address */
Auke Kokbc7f75f2007-09-17 12:30:59 -07006744 if (e1000e_read_mac_addr(&adapter->hw))
Bruce Allan185095f2012-06-07 02:23:37 +00006745 dev_err(&pdev->dev,
6746 "NVM Read Error while reading MAC address\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07006747
6748 memcpy(netdev->dev_addr, adapter->hw.mac.addr, netdev->addr_len);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006749
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +00006750 if (!is_valid_ether_addr(netdev->dev_addr)) {
Bruce Allan185095f2012-06-07 02:23:37 +00006751 dev_err(&pdev->dev, "Invalid MAC Address: %pM\n",
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +00006752 netdev->dev_addr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006753 err = -EIO;
6754 goto err_eeprom;
6755 }
6756
6757 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00006758 adapter->watchdog_timer.function = e1000_watchdog;
Bruce Allan53aa82d2013-02-20 04:06:06 +00006759 adapter->watchdog_timer.data = (unsigned long)adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006760
6761 init_timer(&adapter->phy_info_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00006762 adapter->phy_info_timer.function = e1000_update_phy_info;
Bruce Allan53aa82d2013-02-20 04:06:06 +00006763 adapter->phy_info_timer.data = (unsigned long)adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006764
6765 INIT_WORK(&adapter->reset_task, e1000_reset_task);
6766 INIT_WORK(&adapter->watchdog_task, e1000_watchdog_task);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07006767 INIT_WORK(&adapter->downshift_task, e1000e_downshift_workaround);
6768 INIT_WORK(&adapter->update_phy_task, e1000e_update_phy_task);
Bruce Allan41cec6f2009-11-20 23:28:56 +00006769 INIT_WORK(&adapter->print_hang_task, e1000_print_hw_hang);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006770
Auke Kokbc7f75f2007-09-17 12:30:59 -07006771 /* Initialize link parameters. User can change them with ethtool */
6772 adapter->hw.mac.autoneg = 1;
Rusty Russell3db1cd52011-12-19 13:56:45 +00006773 adapter->fc_autoneg = true;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08006774 adapter->hw.fc.requested_mode = e1000_fc_default;
6775 adapter->hw.fc.current_mode = e1000_fc_default;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006776 adapter->hw.phy.autoneg_advertised = 0x2f;
6777
Bruce Allane921eb12012-11-28 09:28:37 +00006778 /* Initial Wake on LAN setting - If APM wake is enabled in
Auke Kokbc7f75f2007-09-17 12:30:59 -07006779 * the EEPROM, enable the ACPI Magic Packet filter
6780 */
6781 if (adapter->flags & FLAG_APME_IN_WUC) {
6782 /* APME bit in EEPROM is mapped to WUC.APME */
6783 eeprom_data = er32(WUC);
6784 eeprom_apme_mask = E1000_WUC_APME;
Bruce Allan4def99b2011-02-02 09:30:36 +00006785 if ((hw->mac.type > e1000_ich10lan) &&
6786 (eeprom_data & E1000_WUC_PHY_WAKE))
Bruce Allana4f58f52009-06-02 11:29:18 +00006787 adapter->flags2 |= FLAG2_HAS_PHY_WAKEUP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006788 } else if (adapter->flags & FLAG_APME_IN_CTRL3) {
6789 if (adapter->flags & FLAG_APME_CHECK_PORT_B &&
6790 (adapter->hw.bus.func == 1))
Bruce Allan3d3a1672012-02-23 03:13:18 +00006791 e1000_read_nvm(&adapter->hw, NVM_INIT_CONTROL3_PORT_B,
6792 1, &eeprom_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006793 else
Bruce Allan3d3a1672012-02-23 03:13:18 +00006794 e1000_read_nvm(&adapter->hw, NVM_INIT_CONTROL3_PORT_A,
6795 1, &eeprom_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006796 }
6797
6798 /* fetch WoL from EEPROM */
6799 if (eeprom_data & eeprom_apme_mask)
6800 adapter->eeprom_wol |= E1000_WUFC_MAG;
6801
Bruce Allane921eb12012-11-28 09:28:37 +00006802 /* now that we have the eeprom settings, apply the special cases
Auke Kokbc7f75f2007-09-17 12:30:59 -07006803 * where the eeprom may be wrong or the board simply won't support
6804 * wake on lan on a particular port
6805 */
6806 if (!(adapter->flags & FLAG_HAS_WOL))
6807 adapter->eeprom_wol = 0;
6808
6809 /* initialize the wol settings based on the eeprom settings */
6810 adapter->wol = adapter->eeprom_wol;
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006811
6812 /* make sure adapter isn't asleep if manageability is enabled */
6813 if (adapter->wol || (adapter->flags & FLAG_MNG_PT_ENABLED) ||
6814 (hw->mac.ops.check_mng_mode(hw)))
6815 device_wakeup_enable(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006816
Bruce Allan84527592008-11-21 17:00:22 -08006817 /* save off EEPROM version number */
6818 e1000_read_nvm(&adapter->hw, 5, 1, &adapter->eeprom_vers);
6819
Auke Kokbc7f75f2007-09-17 12:30:59 -07006820 /* reset the hardware with the new settings */
6821 e1000e_reset(adapter);
6822
Bruce Allane921eb12012-11-28 09:28:37 +00006823 /* If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07006824 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07006825 * under the control of the driver.
6826 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006827 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006828 e1000e_get_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006829
Bruce Allanf2315bf2011-12-16 00:46:59 +00006830 strlcpy(netdev->name, "eth%d", sizeof(netdev->name));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006831 err = register_netdev(netdev);
6832 if (err)
6833 goto err_register;
6834
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00006835 /* carrier off reporting is important to ethtool even BEFORE open */
6836 netif_carrier_off(netdev);
6837
Bruce Alland89777b2013-01-19 01:09:58 +00006838 /* init PTP hardware clock */
6839 e1000e_ptp_init(adapter);
6840
Auke Kokbc7f75f2007-09-17 12:30:59 -07006841 e1000_print_device_info(adapter);
6842
Alan Sternf3ec4f82010-06-08 15:23:51 -04006843 if (pci_dev_run_wake(pdev))
6844 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006845
Auke Kokbc7f75f2007-09-17 12:30:59 -07006846 return 0;
6847
6848err_register:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006849 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006850 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006851err_eeprom:
Bruce Allan470a5422012-05-26 06:08:48 +00006852 if (hw->phy.ops.check_reset_block && !hw->phy.ops.check_reset_block(hw))
Auke Kokbc7f75f2007-09-17 12:30:59 -07006853 e1000_phy_hw_reset(&adapter->hw);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006854err_hw_init:
Auke Kokbc7f75f2007-09-17 12:30:59 -07006855 kfree(adapter->tx_ring);
6856 kfree(adapter->rx_ring);
6857err_sw_init:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006858 if (adapter->hw.flash_address)
6859 iounmap(adapter->hw.flash_address);
Jeff Kirshere82f54b2008-11-14 06:45:07 +00006860 e1000e_reset_interrupt_capability(adapter);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006861err_flashmap:
Auke Kokbc7f75f2007-09-17 12:30:59 -07006862 iounmap(adapter->hw.hw_addr);
6863err_ioremap:
6864 free_netdev(netdev);
6865err_alloc_etherdev:
Bruce Allanf0f422e2008-08-04 17:21:53 -07006866 pci_release_selected_regions(pdev,
Bruce Allanf0ff4392013-02-20 04:05:39 +00006867 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006868err_pci_reg:
6869err_dma:
6870 pci_disable_device(pdev);
6871 return err;
6872}
6873
6874/**
6875 * e1000_remove - Device Removal Routine
6876 * @pdev: PCI device information struct
6877 *
6878 * e1000_remove is called by the PCI subsystem to alert the driver
6879 * that it should release a PCI device. The could be caused by a
6880 * Hot-Plug event, or because the driver is going to be removed from
6881 * memory.
6882 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05006883static void e1000_remove(struct pci_dev *pdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07006884{
6885 struct net_device *netdev = pci_get_drvdata(pdev);
6886 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006887 bool down = test_bit(__E1000_DOWN, &adapter->state);
6888
Bruce Alland89777b2013-01-19 01:09:58 +00006889 e1000e_ptp_remove(adapter);
6890
Bruce Allane921eb12012-11-28 09:28:37 +00006891 /* The timers may be rescheduled, so explicitly disable them
Tejun Heo23f333a2010-12-12 16:45:14 +01006892 * from being rescheduled.
Bruce Allanad680762008-03-28 09:15:03 -07006893 */
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006894 if (!down)
6895 set_bit(__E1000_DOWN, &adapter->state);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006896 del_timer_sync(&adapter->watchdog_timer);
6897 del_timer_sync(&adapter->phy_info_timer);
6898
Bruce Allan41cec6f2009-11-20 23:28:56 +00006899 cancel_work_sync(&adapter->reset_task);
6900 cancel_work_sync(&adapter->watchdog_task);
6901 cancel_work_sync(&adapter->downshift_task);
6902 cancel_work_sync(&adapter->update_phy_task);
6903 cancel_work_sync(&adapter->print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006904
Bruce Allanb67e1912012-12-27 08:32:33 +00006905 if (adapter->flags & FLAG_HAS_HW_TIMESTAMP) {
6906 cancel_work_sync(&adapter->tx_hwtstamp_work);
6907 if (adapter->tx_hwtstamp_skb) {
6908 dev_kfree_skb_any(adapter->tx_hwtstamp_skb);
6909 adapter->tx_hwtstamp_skb = NULL;
6910 }
6911 }
6912
Bruce Allan17f208d2009-12-01 15:47:22 +00006913 if (!(netdev->flags & IFF_UP))
6914 e1000_power_down_phy(adapter);
6915
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006916 /* Don't lie to e1000_close() down the road. */
6917 if (!down)
6918 clear_bit(__E1000_DOWN, &adapter->state);
Bruce Allan17f208d2009-12-01 15:47:22 +00006919 unregister_netdev(netdev);
6920
Alan Sternf3ec4f82010-06-08 15:23:51 -04006921 if (pci_dev_run_wake(pdev))
6922 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006923
Bruce Allane921eb12012-11-28 09:28:37 +00006924 /* Release control of h/w to f/w. If f/w is AMT enabled, this
Bruce Allanad680762008-03-28 09:15:03 -07006925 * would have already happened in close and is redundant.
6926 */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006927 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006928
Bruce Allan4662e822008-08-26 18:37:06 -07006929 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006930 kfree(adapter->tx_ring);
6931 kfree(adapter->rx_ring);
6932
6933 iounmap(adapter->hw.hw_addr);
6934 if (adapter->hw.flash_address)
6935 iounmap(adapter->hw.flash_address);
Bruce Allanf0f422e2008-08-04 17:21:53 -07006936 pci_release_selected_regions(pdev,
Bruce Allanf0ff4392013-02-20 04:05:39 +00006937 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006938
6939 free_netdev(netdev);
6940
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006941 /* AER disable */
Frans Pop19d5afd2009-10-02 10:04:12 -07006942 pci_disable_pcie_error_reporting(pdev);
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006943
Auke Kokbc7f75f2007-09-17 12:30:59 -07006944 pci_disable_device(pdev);
6945}
6946
6947/* PCI Error Recovery (ERS) */
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07006948static const struct pci_error_handlers e1000_err_handler = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006949 .error_detected = e1000_io_error_detected,
6950 .slot_reset = e1000_io_slot_reset,
6951 .resume = e1000_io_resume,
6952};
6953
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00006954static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006955 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_COPPER), board_82571 },
6956 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_FIBER), board_82571 },
6957 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER), board_82571 },
Bruce Allanc29c3ba2013-02-20 04:05:50 +00006958 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER_LP),
6959 board_82571 },
Auke Kokbc7f75f2007-09-17 12:30:59 -07006960 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_FIBER), board_82571 },
6961 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES), board_82571 },
Auke Kok040babf2007-10-31 15:22:05 -07006962 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_DUAL), board_82571 },
6963 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_QUAD), board_82571 },
6964 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571PT_QUAD_COPPER), board_82571 },
Bruce Allanad680762008-03-28 09:15:03 -07006965
Auke Kokbc7f75f2007-09-17 12:30:59 -07006966 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI), board_82572 },
6967 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_COPPER), board_82572 },
6968 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_FIBER), board_82572 },
6969 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_SERDES), board_82572 },
Bruce Allanad680762008-03-28 09:15:03 -07006970
Auke Kokbc7f75f2007-09-17 12:30:59 -07006971 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E), board_82573 },
6972 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E_IAMT), board_82573 },
6973 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573L), board_82573 },
Bruce Allanad680762008-03-28 09:15:03 -07006974
Bruce Allan4662e822008-08-26 18:37:06 -07006975 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574L), board_82574 },
Bruce Allanbef28b12009-03-24 23:28:02 -07006976 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574LA), board_82574 },
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00006977 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82583V), board_82583 },
Bruce Allan4662e822008-08-26 18:37:06 -07006978
Auke Kokbc7f75f2007-09-17 12:30:59 -07006979 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_DPT),
6980 board_80003es2lan },
6981 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_SPT),
6982 board_80003es2lan },
6983 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_DPT),
6984 board_80003es2lan },
6985 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_SPT),
6986 board_80003es2lan },
Bruce Allanad680762008-03-28 09:15:03 -07006987
Auke Kokbc7f75f2007-09-17 12:30:59 -07006988 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE), board_ich8lan },
6989 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_G), board_ich8lan },
6990 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_GT), board_ich8lan },
6991 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_AMT), board_ich8lan },
6992 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_C), board_ich8lan },
6993 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M), board_ich8lan },
6994 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M_AMT), board_ich8lan },
Bruce Allan9e135a22009-12-01 15:50:31 +00006995 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_82567V_3), board_ich8lan },
Bruce Allanad680762008-03-28 09:15:03 -07006996
Auke Kokbc7f75f2007-09-17 12:30:59 -07006997 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE), board_ich9lan },
6998 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_G), board_ich9lan },
6999 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_GT), board_ich9lan },
7000 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_AMT), board_ich9lan },
7001 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_C), board_ich9lan },
Bruce Allan2f15f9d2008-08-26 18:36:36 -07007002 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_BM), board_ich9lan },
Bruce Allan97ac8ca2008-04-29 09:16:05 -07007003 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M), board_ich9lan },
7004 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_AMT), board_ich9lan },
7005 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_V), board_ich9lan },
7006
7007 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LM), board_ich9lan },
7008 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LF), board_ich9lan },
7009 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_V), board_ich9lan },
Auke Kokbc7f75f2007-09-17 12:30:59 -07007010
Bruce Allanf4187b52008-08-26 18:36:50 -07007011 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LM), board_ich10lan },
7012 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LF), board_ich10lan },
Bruce Allan10df0b92010-05-10 15:02:52 +00007013 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_V), board_ich10lan },
Bruce Allanf4187b52008-08-26 18:36:50 -07007014
Bruce Allana4f58f52009-06-02 11:29:18 +00007015 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LM), board_pchlan },
7016 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LC), board_pchlan },
7017 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DM), board_pchlan },
7018 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DC), board_pchlan },
7019
Bruce Alland3738bb2010-06-16 13:27:28 +00007020 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH2_LV_LM), board_pch2lan },
7021 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH2_LV_V), board_pch2lan },
7022
Bruce Allan2fbe4522012-04-19 03:21:47 +00007023 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPT_I217_LM), board_pch_lpt },
7024 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPT_I217_V), board_pch_lpt },
Bruce Allan16e310a2012-10-09 01:11:26 +00007025 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPTLP_I218_LM), board_pch_lpt },
7026 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPTLP_I218_V), board_pch_lpt },
Bruce Allan91a3d822013-06-29 01:15:16 +00007027 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_LM2), board_pch_lpt },
7028 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_V2), board_pch_lpt },
7029 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_LM3), board_pch_lpt },
7030 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_V3), board_pch_lpt },
Bruce Allan2fbe4522012-04-19 03:21:47 +00007031
Bruce Allanf36bb6c2012-01-31 06:38:04 +00007032 { 0, 0, 0, 0, 0, 0, 0 } /* terminate list */
Auke Kokbc7f75f2007-09-17 12:30:59 -07007033};
7034MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
7035
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00007036static const struct dev_pm_ops e1000_pm_ops = {
Rafael J. Wysockia0340162010-03-17 23:12:24 -07007037 SET_SYSTEM_SLEEP_PM_OPS(e1000_suspend, e1000_resume)
Bruce Allan17e813e2013-02-20 04:06:01 +00007038 SET_RUNTIME_PM_OPS(e1000_runtime_suspend, e1000_runtime_resume,
7039 e1000_idle)
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00007040};
7041
Auke Kokbc7f75f2007-09-17 12:30:59 -07007042/* PCI Device API Driver */
7043static struct pci_driver e1000_driver = {
7044 .name = e1000e_driver_name,
7045 .id_table = e1000_pci_tbl,
7046 .probe = e1000_probe,
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05007047 .remove = e1000_remove,
Bruce Allanf36bb6c2012-01-31 06:38:04 +00007048 .driver = {
7049 .pm = &e1000_pm_ops,
7050 },
Auke Kokbc7f75f2007-09-17 12:30:59 -07007051 .shutdown = e1000_shutdown,
7052 .err_handler = &e1000_err_handler
7053};
7054
7055/**
7056 * e1000_init_module - Driver Registration Routine
7057 *
7058 * e1000_init_module is the first routine called when the driver is
7059 * loaded. All it does is register with the PCI subsystem.
7060 **/
7061static int __init e1000_init_module(void)
7062{
7063 int ret;
Bruce Allan8544b9f2010-03-24 12:55:30 +00007064 pr_info("Intel(R) PRO/1000 Network Driver - %s\n",
7065 e1000e_driver_version);
Bruce Allanbf670442013-01-01 16:00:01 +00007066 pr_info("Copyright(c) 1999 - 2013 Intel Corporation.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07007067 ret = pci_register_driver(&e1000_driver);
Bruce Allan53ec5492009-11-20 23:27:40 +00007068
Auke Kokbc7f75f2007-09-17 12:30:59 -07007069 return ret;
7070}
7071module_init(e1000_init_module);
7072
7073/**
7074 * e1000_exit_module - Driver Exit Cleanup Routine
7075 *
7076 * e1000_exit_module is called just before the driver is removed
7077 * from memory.
7078 **/
7079static void __exit e1000_exit_module(void)
7080{
7081 pci_unregister_driver(&e1000_driver);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007082}
7083module_exit(e1000_exit_module);
7084
Auke Kokbc7f75f2007-09-17 12:30:59 -07007085MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
7086MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
7087MODULE_LICENSE("GPL");
7088MODULE_VERSION(DRV_VERSION);
7089
Bruce Allan06c24b92012-02-23 03:13:13 +00007090/* netdev.c */