blob: 650e569194a74b4d94df9bdd4399cafb66678ae7 [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
Bruce Allan78cd29d2011-03-24 03:09:03 +000067static void e1000e_disable_aspm(struct pci_dev *pdev, u16 state);
68
Auke Kokbc7f75f2007-09-17 12:30:59 -070069static const struct e1000_info *e1000_info_tbl[] = {
70 [board_82571] = &e1000_82571_info,
71 [board_82572] = &e1000_82572_info,
72 [board_82573] = &e1000_82573_info,
Bruce Allan4662e822008-08-26 18:37:06 -070073 [board_82574] = &e1000_82574_info,
Alexander Duyck8c81c9c2009-03-19 01:12:27 +000074 [board_82583] = &e1000_82583_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070075 [board_80003es2lan] = &e1000_es2_info,
76 [board_ich8lan] = &e1000_ich8_info,
77 [board_ich9lan] = &e1000_ich9_info,
Bruce Allanf4187b52008-08-26 18:36:50 -070078 [board_ich10lan] = &e1000_ich10_info,
Bruce Allana4f58f52009-06-02 11:29:18 +000079 [board_pchlan] = &e1000_pch_info,
Bruce Alland3738bb2010-06-16 13:27:28 +000080 [board_pch2lan] = &e1000_pch2_info,
Bruce Allan2fbe4522012-04-19 03:21:47 +000081 [board_pch_lpt] = &e1000_pch_lpt_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070082};
83
Taku Izumi84f4ee92010-04-27 14:39:08 +000084struct e1000_reg_info {
85 u32 ofs;
86 char *name;
87};
88
Taku Izumi84f4ee92010-04-27 14:39:08 +000089static const struct e1000_reg_info e1000_reg_info_tbl[] = {
Taku Izumi84f4ee92010-04-27 14:39:08 +000090 /* General Registers */
91 {E1000_CTRL, "CTRL"},
92 {E1000_STATUS, "STATUS"},
93 {E1000_CTRL_EXT, "CTRL_EXT"},
94
95 /* Interrupt Registers */
96 {E1000_ICR, "ICR"},
97
Bruce Allanaf667a22010-12-31 06:10:01 +000098 /* Rx Registers */
Taku Izumi84f4ee92010-04-27 14:39:08 +000099 {E1000_RCTL, "RCTL"},
Bruce Allan1e360522012-03-20 03:48:13 +0000100 {E1000_RDLEN(0), "RDLEN"},
101 {E1000_RDH(0), "RDH"},
102 {E1000_RDT(0), "RDT"},
Taku Izumi84f4ee92010-04-27 14:39:08 +0000103 {E1000_RDTR, "RDTR"},
104 {E1000_RXDCTL(0), "RXDCTL"},
105 {E1000_ERT, "ERT"},
Bruce Allan1e360522012-03-20 03:48:13 +0000106 {E1000_RDBAL(0), "RDBAL"},
107 {E1000_RDBAH(0), "RDBAH"},
Taku Izumi84f4ee92010-04-27 14:39:08 +0000108 {E1000_RDFH, "RDFH"},
109 {E1000_RDFT, "RDFT"},
110 {E1000_RDFHS, "RDFHS"},
111 {E1000_RDFTS, "RDFTS"},
112 {E1000_RDFPC, "RDFPC"},
113
Bruce Allanaf667a22010-12-31 06:10:01 +0000114 /* Tx Registers */
Taku Izumi84f4ee92010-04-27 14:39:08 +0000115 {E1000_TCTL, "TCTL"},
Bruce Allan1e360522012-03-20 03:48:13 +0000116 {E1000_TDBAL(0), "TDBAL"},
117 {E1000_TDBAH(0), "TDBAH"},
118 {E1000_TDLEN(0), "TDLEN"},
119 {E1000_TDH(0), "TDH"},
120 {E1000_TDT(0), "TDT"},
Taku Izumi84f4ee92010-04-27 14:39:08 +0000121 {E1000_TIDV, "TIDV"},
122 {E1000_TXDCTL(0), "TXDCTL"},
123 {E1000_TADV, "TADV"},
124 {E1000_TARC(0), "TARC"},
125 {E1000_TDFH, "TDFH"},
126 {E1000_TDFT, "TDFT"},
127 {E1000_TDFHS, "TDFHS"},
128 {E1000_TDFTS, "TDFTS"},
129 {E1000_TDFPC, "TDFPC"},
130
131 /* List Terminator */
Bruce Allanf36bb6c2012-01-31 06:38:04 +0000132 {0, NULL}
Taku Izumi84f4ee92010-04-27 14:39:08 +0000133};
134
Bruce Allane921eb12012-11-28 09:28:37 +0000135/**
Taku Izumi84f4ee92010-04-27 14:39:08 +0000136 * e1000_regdump - register printout routine
Bruce Allane921eb12012-11-28 09:28:37 +0000137 * @hw: pointer to the HW structure
138 * @reginfo: pointer to the register info table
139 **/
Taku Izumi84f4ee92010-04-27 14:39:08 +0000140static void e1000_regdump(struct e1000_hw *hw, struct e1000_reg_info *reginfo)
141{
142 int n = 0;
143 char rname[16];
144 u32 regs[8];
145
146 switch (reginfo->ofs) {
147 case E1000_RXDCTL(0):
148 for (n = 0; n < 2; n++)
149 regs[n] = __er32(hw, E1000_RXDCTL(n));
150 break;
151 case E1000_TXDCTL(0):
152 for (n = 0; n < 2; n++)
153 regs[n] = __er32(hw, E1000_TXDCTL(n));
154 break;
155 case E1000_TARC(0):
156 for (n = 0; n < 2; n++)
157 regs[n] = __er32(hw, E1000_TARC(n));
158 break;
159 default:
Jeff Kirsheref456f82011-11-03 11:40:28 +0000160 pr_info("%-15s %08x\n",
161 reginfo->name, __er32(hw, reginfo->ofs));
Taku Izumi84f4ee92010-04-27 14:39:08 +0000162 return;
163 }
164
165 snprintf(rname, 16, "%s%s", reginfo->name, "[0-1]");
Jeff Kirsheref456f82011-11-03 11:40:28 +0000166 pr_info("%-15s %08x %08x\n", rname, regs[0], regs[1]);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000167}
168
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000169static void e1000e_dump_ps_pages(struct e1000_adapter *adapter,
170 struct e1000_buffer *bi)
171{
172 int i;
173 struct e1000_ps_page *ps_page;
174
175 for (i = 0; i < adapter->rx_ps_pages; i++) {
176 ps_page = &bi->ps_pages[i];
177
178 if (ps_page->page) {
179 pr_info("packet dump for ps_page %d:\n", i);
180 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS,
181 16, 1, page_address(ps_page->page),
182 PAGE_SIZE, true);
183 }
184 }
185}
186
Bruce Allane921eb12012-11-28 09:28:37 +0000187/**
Bruce Allanaf667a22010-12-31 06:10:01 +0000188 * e1000e_dump - Print registers, Tx-ring and Rx-ring
Bruce Allane921eb12012-11-28 09:28:37 +0000189 * @adapter: board private structure
190 **/
Taku Izumi84f4ee92010-04-27 14:39:08 +0000191static void e1000e_dump(struct e1000_adapter *adapter)
192{
193 struct net_device *netdev = adapter->netdev;
194 struct e1000_hw *hw = &adapter->hw;
195 struct e1000_reg_info *reginfo;
196 struct e1000_ring *tx_ring = adapter->tx_ring;
197 struct e1000_tx_desc *tx_desc;
Bruce Allanaf667a22010-12-31 06:10:01 +0000198 struct my_u0 {
Bruce Allane885d762012-01-31 06:37:32 +0000199 __le64 a;
200 __le64 b;
Bruce Allanaf667a22010-12-31 06:10:01 +0000201 } *u0;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000202 struct e1000_buffer *buffer_info;
203 struct e1000_ring *rx_ring = adapter->rx_ring;
204 union e1000_rx_desc_packet_split *rx_desc_ps;
Bruce Allan5f450212011-07-22 06:21:46 +0000205 union e1000_rx_desc_extended *rx_desc;
Bruce Allanaf667a22010-12-31 06:10:01 +0000206 struct my_u1 {
Bruce Allane885d762012-01-31 06:37:32 +0000207 __le64 a;
208 __le64 b;
209 __le64 c;
210 __le64 d;
Bruce Allanaf667a22010-12-31 06:10:01 +0000211 } *u1;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000212 u32 staterr;
213 int i = 0;
214
215 if (!netif_msg_hw(adapter))
216 return;
217
218 /* Print netdevice Info */
219 if (netdev) {
220 dev_info(&adapter->pdev->dev, "Net device Info\n");
Jeff Kirsheref456f82011-11-03 11:40:28 +0000221 pr_info("Device Name state trans_start last_rx\n");
Bruce Allane5fe2542013-02-20 04:06:27 +0000222 pr_info("%-15s %016lX %016lX %016lX\n", netdev->name,
223 netdev->state, netdev->trans_start, netdev->last_rx);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000224 }
225
226 /* Print Registers */
227 dev_info(&adapter->pdev->dev, "Register Dump\n");
Jeff Kirsheref456f82011-11-03 11:40:28 +0000228 pr_info(" Register Name Value\n");
Taku Izumi84f4ee92010-04-27 14:39:08 +0000229 for (reginfo = (struct e1000_reg_info *)e1000_reg_info_tbl;
230 reginfo->name; reginfo++) {
231 e1000_regdump(hw, reginfo);
232 }
233
Bruce Allanaf667a22010-12-31 06:10:01 +0000234 /* Print Tx Ring Summary */
Taku Izumi84f4ee92010-04-27 14:39:08 +0000235 if (!netdev || !netif_running(netdev))
Bruce Allanfe1e9802012-01-31 06:37:54 +0000236 return;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000237
Bruce Allanaf667a22010-12-31 06:10:01 +0000238 dev_info(&adapter->pdev->dev, "Tx Ring Summary\n");
Jeff Kirsheref456f82011-11-03 11:40:28 +0000239 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumi84f4ee92010-04-27 14:39:08 +0000240 buffer_info = &tx_ring->buffer_info[tx_ring->next_to_clean];
Jeff Kirsheref456f82011-11-03 11:40:28 +0000241 pr_info(" %5d %5X %5X %016llX %04X %3X %016llX\n",
242 0, tx_ring->next_to_use, tx_ring->next_to_clean,
243 (unsigned long long)buffer_info->dma,
244 buffer_info->length,
245 buffer_info->next_to_watch,
246 (unsigned long long)buffer_info->time_stamp);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000247
Bruce Allanaf667a22010-12-31 06:10:01 +0000248 /* Print Tx Ring */
Taku Izumi84f4ee92010-04-27 14:39:08 +0000249 if (!netif_msg_tx_done(adapter))
250 goto rx_ring_summary;
251
Bruce Allanaf667a22010-12-31 06:10:01 +0000252 dev_info(&adapter->pdev->dev, "Tx Ring Dump\n");
Taku Izumi84f4ee92010-04-27 14:39:08 +0000253
254 /* Transmit Descriptor Formats - DEXT[29] is 0 (Legacy) or 1 (Extended)
255 *
256 * Legacy Transmit Descriptor
257 * +--------------------------------------------------------------+
258 * 0 | Buffer Address [63:0] (Reserved on Write Back) |
259 * +--------------------------------------------------------------+
260 * 8 | Special | CSS | Status | CMD | CSO | Length |
261 * +--------------------------------------------------------------+
262 * 63 48 47 36 35 32 31 24 23 16 15 0
263 *
264 * Extended Context Descriptor (DTYP=0x0) for TSO or checksum offload
265 * 63 48 47 40 39 32 31 16 15 8 7 0
266 * +----------------------------------------------------------------+
267 * 0 | TUCSE | TUCS0 | TUCSS | IPCSE | IPCS0 | IPCSS |
268 * +----------------------------------------------------------------+
269 * 8 | MSS | HDRLEN | RSV | STA | TUCMD | DTYP | PAYLEN |
270 * +----------------------------------------------------------------+
271 * 63 48 47 40 39 36 35 32 31 24 23 20 19 0
272 *
273 * Extended Data Descriptor (DTYP=0x1)
274 * +----------------------------------------------------------------+
275 * 0 | Buffer Address [63:0] |
276 * +----------------------------------------------------------------+
277 * 8 | VLAN tag | POPTS | Rsvd | Status | Command | DTYP | DTALEN |
278 * +----------------------------------------------------------------+
279 * 63 48 47 40 39 36 35 32 31 24 23 20 19 0
280 */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000281 pr_info("Tl[desc] [address 63:0 ] [SpeCssSCmCsLen] [bi->dma ] leng ntw timestamp bi->skb <-- Legacy format\n");
282 pr_info("Tc[desc] [Ce CoCsIpceCoS] [MssHlRSCm0Plen] [bi->dma ] leng ntw timestamp bi->skb <-- Ext Context format\n");
283 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 +0000284 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Jeff Kirsheref456f82011-11-03 11:40:28 +0000285 const char *next_desc;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000286 tx_desc = E1000_TX_DESC(*tx_ring, i);
287 buffer_info = &tx_ring->buffer_info[i];
288 u0 = (struct my_u0 *)tx_desc;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000289 if (i == tx_ring->next_to_use && i == tx_ring->next_to_clean)
Jeff Kirsheref456f82011-11-03 11:40:28 +0000290 next_desc = " NTC/U";
Taku Izumi84f4ee92010-04-27 14:39:08 +0000291 else if (i == tx_ring->next_to_use)
Jeff Kirsheref456f82011-11-03 11:40:28 +0000292 next_desc = " NTU";
Taku Izumi84f4ee92010-04-27 14:39:08 +0000293 else if (i == tx_ring->next_to_clean)
Jeff Kirsheref456f82011-11-03 11:40:28 +0000294 next_desc = " NTC";
Taku Izumi84f4ee92010-04-27 14:39:08 +0000295 else
Jeff Kirsheref456f82011-11-03 11:40:28 +0000296 next_desc = "";
297 pr_info("T%c[0x%03X] %016llX %016llX %016llX %04X %3X %016llX %p%s\n",
298 (!(le64_to_cpu(u0->b) & (1 << 29)) ? 'l' :
299 ((le64_to_cpu(u0->b) & (1 << 20)) ? 'd' : 'c')),
300 i,
301 (unsigned long long)le64_to_cpu(u0->a),
302 (unsigned long long)le64_to_cpu(u0->b),
303 (unsigned long long)buffer_info->dma,
304 buffer_info->length, buffer_info->next_to_watch,
305 (unsigned long long)buffer_info->time_stamp,
306 buffer_info->skb, next_desc);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000307
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000308 if (netif_msg_pktdata(adapter) && buffer_info->skb)
Taku Izumi84f4ee92010-04-27 14:39:08 +0000309 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS,
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000310 16, 1, buffer_info->skb->data,
311 buffer_info->skb->len, true);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000312 }
313
Bruce Allanaf667a22010-12-31 06:10:01 +0000314 /* Print Rx Ring Summary */
Taku Izumi84f4ee92010-04-27 14:39:08 +0000315rx_ring_summary:
Bruce Allanaf667a22010-12-31 06:10:01 +0000316 dev_info(&adapter->pdev->dev, "Rx Ring Summary\n");
Jeff Kirsheref456f82011-11-03 11:40:28 +0000317 pr_info("Queue [NTU] [NTC]\n");
318 pr_info(" %5d %5X %5X\n",
319 0, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000320
Bruce Allanaf667a22010-12-31 06:10:01 +0000321 /* Print Rx Ring */
Taku Izumi84f4ee92010-04-27 14:39:08 +0000322 if (!netif_msg_rx_status(adapter))
Bruce Allanfe1e9802012-01-31 06:37:54 +0000323 return;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000324
Bruce Allanaf667a22010-12-31 06:10:01 +0000325 dev_info(&adapter->pdev->dev, "Rx Ring Dump\n");
Taku Izumi84f4ee92010-04-27 14:39:08 +0000326 switch (adapter->rx_ps_pages) {
327 case 1:
328 case 2:
329 case 3:
330 /* [Extended] Packet Split Receive Descriptor Format
331 *
332 * +-----------------------------------------------------+
333 * 0 | Buffer Address 0 [63:0] |
334 * +-----------------------------------------------------+
335 * 8 | Buffer Address 1 [63:0] |
336 * +-----------------------------------------------------+
337 * 16 | Buffer Address 2 [63:0] |
338 * +-----------------------------------------------------+
339 * 24 | Buffer Address 3 [63:0] |
340 * +-----------------------------------------------------+
341 */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000342 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 +0000343 /* [Extended] Receive Descriptor (Write-Back) Format
344 *
345 * 63 48 47 32 31 13 12 8 7 4 3 0
346 * +------------------------------------------------------+
347 * 0 | Packet | IP | Rsvd | MRQ | Rsvd | MRQ RSS |
348 * | Checksum | Ident | | Queue | | Type |
349 * +------------------------------------------------------+
350 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
351 * +------------------------------------------------------+
352 * 63 48 47 32 31 20 19 0
353 */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000354 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 +0000355 for (i = 0; i < rx_ring->count; i++) {
Jeff Kirsheref456f82011-11-03 11:40:28 +0000356 const char *next_desc;
Taku Izumi84f4ee92010-04-27 14:39:08 +0000357 buffer_info = &rx_ring->buffer_info[i];
358 rx_desc_ps = E1000_RX_DESC_PS(*rx_ring, i);
359 u1 = (struct my_u1 *)rx_desc_ps;
360 staterr =
Bruce Allanaf667a22010-12-31 06:10:01 +0000361 le32_to_cpu(rx_desc_ps->wb.middle.status_error);
Jeff Kirsheref456f82011-11-03 11:40:28 +0000362
363 if (i == rx_ring->next_to_use)
364 next_desc = " NTU";
365 else if (i == rx_ring->next_to_clean)
366 next_desc = " NTC";
367 else
368 next_desc = "";
369
Taku Izumi84f4ee92010-04-27 14:39:08 +0000370 if (staterr & E1000_RXD_STAT_DD) {
371 /* Descriptor Done */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000372 pr_info("%s[0x%03X] %016llX %016llX %016llX %016llX ---------------- %p%s\n",
373 "RWB", i,
374 (unsigned long long)le64_to_cpu(u1->a),
375 (unsigned long long)le64_to_cpu(u1->b),
376 (unsigned long long)le64_to_cpu(u1->c),
377 (unsigned long long)le64_to_cpu(u1->d),
378 buffer_info->skb, next_desc);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000379 } else {
Jeff Kirsheref456f82011-11-03 11:40:28 +0000380 pr_info("%s[0x%03X] %016llX %016llX %016llX %016llX %016llX %p%s\n",
381 "R ", i,
382 (unsigned long long)le64_to_cpu(u1->a),
383 (unsigned long long)le64_to_cpu(u1->b),
384 (unsigned long long)le64_to_cpu(u1->c),
385 (unsigned long long)le64_to_cpu(u1->d),
386 (unsigned long long)buffer_info->dma,
387 buffer_info->skb, next_desc);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000388
389 if (netif_msg_pktdata(adapter))
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000390 e1000e_dump_ps_pages(adapter,
391 buffer_info);
Taku Izumi84f4ee92010-04-27 14:39:08 +0000392 }
Taku Izumi84f4ee92010-04-27 14:39:08 +0000393 }
394 break;
395 default:
396 case 0:
Bruce Allan5f450212011-07-22 06:21:46 +0000397 /* Extended Receive Descriptor (Read) Format
Taku Izumi84f4ee92010-04-27 14:39:08 +0000398 *
Bruce Allan5f450212011-07-22 06:21:46 +0000399 * +-----------------------------------------------------+
400 * 0 | Buffer Address [63:0] |
401 * +-----------------------------------------------------+
402 * 8 | Reserved |
403 * +-----------------------------------------------------+
Taku Izumi84f4ee92010-04-27 14:39:08 +0000404 */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000405 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 +0000406 /* Extended Receive Descriptor (Write-Back) Format
407 *
408 * 63 48 47 32 31 24 23 4 3 0
409 * +------------------------------------------------------+
410 * | RSS Hash | | | |
411 * 0 +-------------------+ Rsvd | Reserved | MRQ RSS |
412 * | Packet | IP | | | Type |
413 * | Checksum | Ident | | | |
414 * +------------------------------------------------------+
415 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
416 * +------------------------------------------------------+
417 * 63 48 47 32 31 20 19 0
418 */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000419 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 +0000420
421 for (i = 0; i < rx_ring->count; i++) {
Jeff Kirsheref456f82011-11-03 11:40:28 +0000422 const char *next_desc;
423
Taku Izumi84f4ee92010-04-27 14:39:08 +0000424 buffer_info = &rx_ring->buffer_info[i];
Bruce Allan5f450212011-07-22 06:21:46 +0000425 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
426 u1 = (struct my_u1 *)rx_desc;
427 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Jeff Kirsheref456f82011-11-03 11:40:28 +0000428
429 if (i == rx_ring->next_to_use)
430 next_desc = " NTU";
431 else if (i == rx_ring->next_to_clean)
432 next_desc = " NTC";
433 else
434 next_desc = "";
435
Bruce Allan5f450212011-07-22 06:21:46 +0000436 if (staterr & E1000_RXD_STAT_DD) {
437 /* Descriptor Done */
Jeff Kirsheref456f82011-11-03 11:40:28 +0000438 pr_info("%s[0x%03X] %016llX %016llX ---------------- %p%s\n",
439 "RWB", i,
440 (unsigned long long)le64_to_cpu(u1->a),
441 (unsigned long long)le64_to_cpu(u1->b),
442 buffer_info->skb, next_desc);
Bruce Allan5f450212011-07-22 06:21:46 +0000443 } else {
Jeff Kirsheref456f82011-11-03 11:40:28 +0000444 pr_info("%s[0x%03X] %016llX %016llX %016llX %p%s\n",
445 "R ", i,
446 (unsigned long long)le64_to_cpu(u1->a),
447 (unsigned long long)le64_to_cpu(u1->b),
448 (unsigned long long)buffer_info->dma,
449 buffer_info->skb, next_desc);
Bruce Allan5f450212011-07-22 06:21:46 +0000450
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000451 if (netif_msg_pktdata(adapter) &&
452 buffer_info->skb)
Bruce Allan5f450212011-07-22 06:21:46 +0000453 print_hex_dump(KERN_INFO, "",
454 DUMP_PREFIX_ADDRESS, 16,
455 1,
Emil Tantilovf0c5dad2012-08-01 08:12:21 +0000456 buffer_info->skb->data,
Bruce Allan5f450212011-07-22 06:21:46 +0000457 adapter->rx_buffer_len,
458 true);
459 }
Taku Izumi84f4ee92010-04-27 14:39:08 +0000460 }
461 }
Taku Izumi84f4ee92010-04-27 14:39:08 +0000462}
463
Auke Kokbc7f75f2007-09-17 12:30:59 -0700464/**
465 * e1000_desc_unused - calculate if we have unused descriptors
466 **/
467static int e1000_desc_unused(struct e1000_ring *ring)
468{
469 if (ring->next_to_clean > ring->next_to_use)
470 return ring->next_to_clean - ring->next_to_use - 1;
471
472 return ring->count + ring->next_to_clean - ring->next_to_use - 1;
473}
474
475/**
Bruce Allanb67e1912012-12-27 08:32:33 +0000476 * e1000e_systim_to_hwtstamp - convert system time value to hw time stamp
477 * @adapter: board private structure
478 * @hwtstamps: time stamp structure to update
479 * @systim: unsigned 64bit system time value.
480 *
481 * Convert the system time value stored in the RX/TXSTMP registers into a
482 * hwtstamp which can be used by the upper level time stamping functions.
483 *
484 * The 'systim_lock' spinlock is used to protect the consistency of the
485 * system time value. This is needed because reading the 64 bit time
486 * value involves reading two 32 bit registers. The first read latches the
487 * value.
488 **/
489static void e1000e_systim_to_hwtstamp(struct e1000_adapter *adapter,
490 struct skb_shared_hwtstamps *hwtstamps,
491 u64 systim)
492{
493 u64 ns;
494 unsigned long flags;
495
496 spin_lock_irqsave(&adapter->systim_lock, flags);
497 ns = timecounter_cyc2time(&adapter->tc, systim);
498 spin_unlock_irqrestore(&adapter->systim_lock, flags);
499
500 memset(hwtstamps, 0, sizeof(*hwtstamps));
501 hwtstamps->hwtstamp = ns_to_ktime(ns);
502}
503
504/**
505 * e1000e_rx_hwtstamp - utility function which checks for Rx time stamp
506 * @adapter: board private structure
507 * @status: descriptor extended error and status field
508 * @skb: particular skb to include time stamp
509 *
510 * If the time stamp is valid, convert it into the timecounter ns value
511 * and store that result into the shhwtstamps structure which is passed
512 * up the network stack.
513 **/
514static void e1000e_rx_hwtstamp(struct e1000_adapter *adapter, u32 status,
515 struct sk_buff *skb)
516{
517 struct e1000_hw *hw = &adapter->hw;
518 u64 rxstmp;
519
520 if (!(adapter->flags & FLAG_HAS_HW_TIMESTAMP) ||
521 !(status & E1000_RXDEXT_STATERR_TST) ||
522 !(er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_VALID))
523 return;
524
525 /* The Rx time stamp registers contain the time stamp. No other
526 * received packet will be time stamped until the Rx time stamp
527 * registers are read. Because only one packet can be time stamped
528 * at a time, the register values must belong to this packet and
529 * therefore none of the other additional attributes need to be
530 * compared.
531 */
532 rxstmp = (u64)er32(RXSTMPL);
533 rxstmp |= (u64)er32(RXSTMPH) << 32;
534 e1000e_systim_to_hwtstamp(adapter, skb_hwtstamps(skb), rxstmp);
535
536 adapter->flags2 &= ~FLAG2_CHECK_RX_HWTSTAMP;
537}
538
539/**
Bruce Allanad680762008-03-28 09:15:03 -0700540 * e1000_receive_skb - helper function to handle Rx indications
Auke Kokbc7f75f2007-09-17 12:30:59 -0700541 * @adapter: board private structure
Bruce Allanb67e1912012-12-27 08:32:33 +0000542 * @staterr: descriptor extended error and status field as written by hardware
Auke Kokbc7f75f2007-09-17 12:30:59 -0700543 * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
544 * @skb: pointer to sk_buff to be indicated to stack
545 **/
546static void e1000_receive_skb(struct e1000_adapter *adapter,
Bruce Allanaf667a22010-12-31 06:10:01 +0000547 struct net_device *netdev, struct sk_buff *skb,
Bruce Allanb67e1912012-12-27 08:32:33 +0000548 u32 staterr, __le16 vlan)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700549{
Jeff Kirsher86d70e52011-03-25 16:01:01 +0000550 u16 tag = le16_to_cpu(vlan);
Bruce Allanb67e1912012-12-27 08:32:33 +0000551
552 e1000e_rx_hwtstamp(adapter, staterr, skb);
553
Auke Kokbc7f75f2007-09-17 12:30:59 -0700554 skb->protocol = eth_type_trans(skb, netdev);
555
Bruce Allanb67e1912012-12-27 08:32:33 +0000556 if (staterr & E1000_RXD_STAT_VP)
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000557 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), tag);
Jeff Kirsher86d70e52011-03-25 16:01:01 +0000558
559 napi_gro_receive(&adapter->napi, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700560}
561
562/**
Bruce Allanaf667a22010-12-31 06:10:01 +0000563 * e1000_rx_checksum - Receive Checksum Offload
Bruce Allanafd12932012-01-05 00:34:05 +0000564 * @adapter: board private structure
565 * @status_err: receive descriptor status and error fields
566 * @csum: receive descriptor csum field
567 * @sk_buff: socket buffer with received data
Auke Kokbc7f75f2007-09-17 12:30:59 -0700568 **/
569static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
Bruce Allan2e1706f2012-06-30 20:02:42 +0000570 struct sk_buff *skb)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700571{
572 u16 status = (u16)status_err;
573 u8 errors = (u8)(status_err >> 24);
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700574
575 skb_checksum_none_assert(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700576
Bruce Allanafd12932012-01-05 00:34:05 +0000577 /* Rx checksum disabled */
578 if (!(adapter->netdev->features & NETIF_F_RXCSUM))
579 return;
580
Auke Kokbc7f75f2007-09-17 12:30:59 -0700581 /* Ignore Checksum bit is set */
582 if (status & E1000_RXD_STAT_IXSM)
583 return;
Bruce Allanafd12932012-01-05 00:34:05 +0000584
Bruce Allan2e1706f2012-06-30 20:02:42 +0000585 /* TCP/UDP checksum error bit or IP checksum error bit is set */
586 if (errors & (E1000_RXD_ERR_TCPE | E1000_RXD_ERR_IPE)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700587 /* let the stack verify checksum errors */
588 adapter->hw_csum_err++;
589 return;
590 }
591
592 /* TCP/UDP Checksum has not been calculated */
593 if (!(status & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)))
594 return;
595
596 /* It must be a TCP or UDP packet with a valid checksum */
Bruce Allan2e1706f2012-06-30 20:02:42 +0000597 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700598 adapter->hw_csum_good++;
599}
600
Bruce Allan55aa6982011-12-16 00:45:45 +0000601static void e1000e_update_rdt_wa(struct e1000_ring *rx_ring, unsigned int i)
David S. Miller823dcd22011-08-20 10:39:12 -0700602{
Bruce Allan55aa6982011-12-16 00:45:45 +0000603 struct e1000_adapter *adapter = rx_ring->adapter;
David S. Miller823dcd22011-08-20 10:39:12 -0700604 struct e1000_hw *hw = &adapter->hw;
Bruce Allanbdc125f2012-03-20 03:47:52 +0000605 s32 ret_val = __ew32_prepare(hw);
David S. Miller823dcd22011-08-20 10:39:12 -0700606
Bruce Allanbdc125f2012-03-20 03:47:52 +0000607 writel(i, rx_ring->tail);
608
609 if (unlikely(!ret_val && (i != readl(rx_ring->tail)))) {
David S. Miller823dcd22011-08-20 10:39:12 -0700610 u32 rctl = er32(RCTL);
611 ew32(RCTL, rctl & ~E1000_RCTL_EN);
612 e_err("ME firmware caused invalid RDT - resetting\n");
613 schedule_work(&adapter->reset_task);
614 }
615}
616
Bruce Allan55aa6982011-12-16 00:45:45 +0000617static void e1000e_update_tdt_wa(struct e1000_ring *tx_ring, unsigned int i)
David S. Miller823dcd22011-08-20 10:39:12 -0700618{
Bruce Allan55aa6982011-12-16 00:45:45 +0000619 struct e1000_adapter *adapter = tx_ring->adapter;
David S. Miller823dcd22011-08-20 10:39:12 -0700620 struct e1000_hw *hw = &adapter->hw;
Bruce Allanbdc125f2012-03-20 03:47:52 +0000621 s32 ret_val = __ew32_prepare(hw);
David S. Miller823dcd22011-08-20 10:39:12 -0700622
Bruce Allanbdc125f2012-03-20 03:47:52 +0000623 writel(i, tx_ring->tail);
624
625 if (unlikely(!ret_val && (i != readl(tx_ring->tail)))) {
David S. Miller823dcd22011-08-20 10:39:12 -0700626 u32 tctl = er32(TCTL);
627 ew32(TCTL, tctl & ~E1000_TCTL_EN);
628 e_err("ME firmware caused invalid TDT - resetting\n");
629 schedule_work(&adapter->reset_task);
630 }
631}
632
633/**
Bruce Allan5f450212011-07-22 06:21:46 +0000634 * e1000_alloc_rx_buffers - Replace used receive buffers
Bruce Allan55aa6982011-12-16 00:45:45 +0000635 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -0700636 **/
Bruce Allan55aa6982011-12-16 00:45:45 +0000637static void e1000_alloc_rx_buffers(struct e1000_ring *rx_ring,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000638 int cleaned_count, gfp_t gfp)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700639{
Bruce Allan55aa6982011-12-16 00:45:45 +0000640 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700641 struct net_device *netdev = adapter->netdev;
642 struct pci_dev *pdev = adapter->pdev;
Bruce Allan5f450212011-07-22 06:21:46 +0000643 union e1000_rx_desc_extended *rx_desc;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700644 struct e1000_buffer *buffer_info;
645 struct sk_buff *skb;
646 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000647 unsigned int bufsz = adapter->rx_buffer_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700648
649 i = rx_ring->next_to_use;
650 buffer_info = &rx_ring->buffer_info[i];
651
652 while (cleaned_count--) {
653 skb = buffer_info->skb;
654 if (skb) {
655 skb_trim(skb, 0);
656 goto map_skb;
657 }
658
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000659 skb = __netdev_alloc_skb_ip_align(netdev, bufsz, gfp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700660 if (!skb) {
661 /* Better luck next round */
662 adapter->alloc_rx_buff_failed++;
663 break;
664 }
665
Auke Kokbc7f75f2007-09-17 12:30:59 -0700666 buffer_info->skb = skb;
667map_skb:
Nick Nunley0be3f552010-04-27 13:09:05 +0000668 buffer_info->dma = dma_map_single(&pdev->dev, skb->data,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700669 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +0000670 DMA_FROM_DEVICE);
671 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Bruce Allanaf667a22010-12-31 06:10:01 +0000672 dev_err(&pdev->dev, "Rx DMA map failed\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700673 adapter->rx_dma_failed++;
674 break;
675 }
676
Bruce Allan5f450212011-07-22 06:21:46 +0000677 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
678 rx_desc->read.buffer_addr = cpu_to_le64(buffer_info->dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700679
Tom Herbert50849d72010-05-05 14:02:49 +0000680 if (unlikely(!(i & (E1000_RX_BUFFER_WRITE - 1)))) {
Bruce Allane921eb12012-11-28 09:28:37 +0000681 /* Force memory writes to complete before letting h/w
Tom Herbert50849d72010-05-05 14:02:49 +0000682 * know there are new descriptors to fetch. (Only
683 * applicable for weak-ordered memory model archs,
684 * such as IA-64).
685 */
686 wmb();
David S. Miller823dcd22011-08-20 10:39:12 -0700687 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allan55aa6982011-12-16 00:45:45 +0000688 e1000e_update_rdt_wa(rx_ring, i);
David S. Miller823dcd22011-08-20 10:39:12 -0700689 else
Bruce Allanc5083cf2011-12-16 00:45:40 +0000690 writel(i, rx_ring->tail);
Tom Herbert50849d72010-05-05 14:02:49 +0000691 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700692 i++;
693 if (i == rx_ring->count)
694 i = 0;
695 buffer_info = &rx_ring->buffer_info[i];
696 }
697
Tom Herbert50849d72010-05-05 14:02:49 +0000698 rx_ring->next_to_use = i;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700699}
700
701/**
702 * e1000_alloc_rx_buffers_ps - Replace used receive buffers; packet split
Bruce Allan55aa6982011-12-16 00:45:45 +0000703 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -0700704 **/
Bruce Allan55aa6982011-12-16 00:45:45 +0000705static void e1000_alloc_rx_buffers_ps(struct e1000_ring *rx_ring,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000706 int cleaned_count, gfp_t gfp)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700707{
Bruce Allan55aa6982011-12-16 00:45:45 +0000708 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700709 struct net_device *netdev = adapter->netdev;
710 struct pci_dev *pdev = adapter->pdev;
711 union e1000_rx_desc_packet_split *rx_desc;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700712 struct e1000_buffer *buffer_info;
713 struct e1000_ps_page *ps_page;
714 struct sk_buff *skb;
715 unsigned int i, j;
716
717 i = rx_ring->next_to_use;
718 buffer_info = &rx_ring->buffer_info[i];
719
720 while (cleaned_count--) {
721 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
722
723 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -0700724 ps_page = &buffer_info->ps_pages[j];
725 if (j >= adapter->rx_ps_pages) {
726 /* all unused desc entries get hw null ptr */
Bruce Allanaf667a22010-12-31 06:10:01 +0000727 rx_desc->read.buffer_addr[j + 1] =
728 ~cpu_to_le64(0);
Auke Kok47f44e42007-10-25 13:57:44 -0700729 continue;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700730 }
Auke Kok47f44e42007-10-25 13:57:44 -0700731 if (!ps_page->page) {
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000732 ps_page->page = alloc_page(gfp);
Auke Kok47f44e42007-10-25 13:57:44 -0700733 if (!ps_page->page) {
734 adapter->alloc_rx_buff_failed++;
735 goto no_buffers;
736 }
Nick Nunley0be3f552010-04-27 13:09:05 +0000737 ps_page->dma = dma_map_page(&pdev->dev,
738 ps_page->page,
739 0, PAGE_SIZE,
740 DMA_FROM_DEVICE);
741 if (dma_mapping_error(&pdev->dev,
742 ps_page->dma)) {
Auke Kok47f44e42007-10-25 13:57:44 -0700743 dev_err(&adapter->pdev->dev,
Bruce Allanaf667a22010-12-31 06:10:01 +0000744 "Rx DMA page map failed\n");
Auke Kok47f44e42007-10-25 13:57:44 -0700745 adapter->rx_dma_failed++;
746 goto no_buffers;
747 }
748 }
Bruce Allane921eb12012-11-28 09:28:37 +0000749 /* Refresh the desc even if buffer_addrs
Auke Kok47f44e42007-10-25 13:57:44 -0700750 * didn't change because each write-back
751 * erases this info.
752 */
Bruce Allanaf667a22010-12-31 06:10:01 +0000753 rx_desc->read.buffer_addr[j + 1] =
754 cpu_to_le64(ps_page->dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700755 }
756
Bruce Allane5fe2542013-02-20 04:06:27 +0000757 skb = __netdev_alloc_skb_ip_align(netdev, adapter->rx_ps_bsize0,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000758 gfp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700759
760 if (!skb) {
761 adapter->alloc_rx_buff_failed++;
762 break;
763 }
764
Auke Kokbc7f75f2007-09-17 12:30:59 -0700765 buffer_info->skb = skb;
Nick Nunley0be3f552010-04-27 13:09:05 +0000766 buffer_info->dma = dma_map_single(&pdev->dev, skb->data,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700767 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +0000768 DMA_FROM_DEVICE);
769 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Bruce Allanaf667a22010-12-31 06:10:01 +0000770 dev_err(&pdev->dev, "Rx DMA map failed\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700771 adapter->rx_dma_failed++;
772 /* cleanup skb */
773 dev_kfree_skb_any(skb);
774 buffer_info->skb = NULL;
775 break;
776 }
777
778 rx_desc->read.buffer_addr[0] = cpu_to_le64(buffer_info->dma);
779
Tom Herbert50849d72010-05-05 14:02:49 +0000780 if (unlikely(!(i & (E1000_RX_BUFFER_WRITE - 1)))) {
Bruce Allane921eb12012-11-28 09:28:37 +0000781 /* Force memory writes to complete before letting h/w
Tom Herbert50849d72010-05-05 14:02:49 +0000782 * know there are new descriptors to fetch. (Only
783 * applicable for weak-ordered memory model archs,
784 * such as IA-64).
785 */
786 wmb();
David S. Miller823dcd22011-08-20 10:39:12 -0700787 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allan55aa6982011-12-16 00:45:45 +0000788 e1000e_update_rdt_wa(rx_ring, i << 1);
David S. Miller823dcd22011-08-20 10:39:12 -0700789 else
Bruce Allanc5083cf2011-12-16 00:45:40 +0000790 writel(i << 1, rx_ring->tail);
Tom Herbert50849d72010-05-05 14:02:49 +0000791 }
792
Auke Kokbc7f75f2007-09-17 12:30:59 -0700793 i++;
794 if (i == rx_ring->count)
795 i = 0;
796 buffer_info = &rx_ring->buffer_info[i];
797 }
798
799no_buffers:
Tom Herbert50849d72010-05-05 14:02:49 +0000800 rx_ring->next_to_use = i;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700801}
802
803/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700804 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
Bruce Allan55aa6982011-12-16 00:45:45 +0000805 * @rx_ring: Rx descriptor ring
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700806 * @cleaned_count: number of buffers to allocate this pass
807 **/
808
Bruce Allan55aa6982011-12-16 00:45:45 +0000809static void e1000_alloc_jumbo_rx_buffers(struct e1000_ring *rx_ring,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000810 int cleaned_count, gfp_t gfp)
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700811{
Bruce Allan55aa6982011-12-16 00:45:45 +0000812 struct e1000_adapter *adapter = rx_ring->adapter;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700813 struct net_device *netdev = adapter->netdev;
814 struct pci_dev *pdev = adapter->pdev;
Bruce Allan5f450212011-07-22 06:21:46 +0000815 union e1000_rx_desc_extended *rx_desc;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700816 struct e1000_buffer *buffer_info;
817 struct sk_buff *skb;
818 unsigned int i;
Bruce Allan2a2293b2012-12-05 06:26:35 +0000819 unsigned int bufsz = 256 - 16; /* for skb_reserve */
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700820
821 i = rx_ring->next_to_use;
822 buffer_info = &rx_ring->buffer_info[i];
823
824 while (cleaned_count--) {
825 skb = buffer_info->skb;
826 if (skb) {
827 skb_trim(skb, 0);
828 goto check_page;
829 }
830
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000831 skb = __netdev_alloc_skb_ip_align(netdev, bufsz, gfp);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700832 if (unlikely(!skb)) {
833 /* Better luck next round */
834 adapter->alloc_rx_buff_failed++;
835 break;
836 }
837
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700838 buffer_info->skb = skb;
839check_page:
840 /* allocate a new page if necessary */
841 if (!buffer_info->page) {
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000842 buffer_info->page = alloc_page(gfp);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700843 if (unlikely(!buffer_info->page)) {
844 adapter->alloc_rx_buff_failed++;
845 break;
846 }
847 }
848
Christoph Paasch37287fae2013-03-20 08:59:46 +0000849 if (!buffer_info->dma) {
Nick Nunley0be3f552010-04-27 13:09:05 +0000850 buffer_info->dma = dma_map_page(&pdev->dev,
Bruce Allanf0ff4392013-02-20 04:05:39 +0000851 buffer_info->page, 0,
852 PAGE_SIZE,
Nick Nunley0be3f552010-04-27 13:09:05 +0000853 DMA_FROM_DEVICE);
Christoph Paasch37287fae2013-03-20 08:59:46 +0000854 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
855 adapter->alloc_rx_buff_failed++;
856 break;
857 }
858 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700859
Bruce Allan5f450212011-07-22 06:21:46 +0000860 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
861 rx_desc->read.buffer_addr = cpu_to_le64(buffer_info->dma);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700862
863 if (unlikely(++i == rx_ring->count))
864 i = 0;
865 buffer_info = &rx_ring->buffer_info[i];
866 }
867
868 if (likely(rx_ring->next_to_use != i)) {
869 rx_ring->next_to_use = i;
870 if (unlikely(i-- == 0))
871 i = (rx_ring->count - 1);
872
873 /* Force memory writes to complete before letting h/w
874 * know there are new descriptors to fetch. (Only
875 * applicable for weak-ordered memory model archs,
Bruce Allane921eb12012-11-28 09:28:37 +0000876 * such as IA-64).
877 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700878 wmb();
David S. Miller823dcd22011-08-20 10:39:12 -0700879 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allan55aa6982011-12-16 00:45:45 +0000880 e1000e_update_rdt_wa(rx_ring, i);
David S. Miller823dcd22011-08-20 10:39:12 -0700881 else
Bruce Allanc5083cf2011-12-16 00:45:40 +0000882 writel(i, rx_ring->tail);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700883 }
884}
885
Bruce Allan70495a52012-01-11 01:26:50 +0000886static inline void e1000_rx_hash(struct net_device *netdev, __le32 rss,
887 struct sk_buff *skb)
888{
889 if (netdev->features & NETIF_F_RXHASH)
890 skb->rxhash = le32_to_cpu(rss);
891}
892
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700893/**
Bruce Allan55aa6982011-12-16 00:45:45 +0000894 * e1000_clean_rx_irq - Send received data up the network stack
895 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -0700896 *
897 * the return value indicates whether actual cleaning was done, there
898 * is no guarantee that everything was cleaned
899 **/
Bruce Allan55aa6982011-12-16 00:45:45 +0000900static bool e1000_clean_rx_irq(struct e1000_ring *rx_ring, int *work_done,
901 int work_to_do)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700902{
Bruce Allan55aa6982011-12-16 00:45:45 +0000903 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700904 struct net_device *netdev = adapter->netdev;
905 struct pci_dev *pdev = adapter->pdev;
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000906 struct e1000_hw *hw = &adapter->hw;
Bruce Allan5f450212011-07-22 06:21:46 +0000907 union e1000_rx_desc_extended *rx_desc, *next_rxd;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700908 struct e1000_buffer *buffer_info, *next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +0000909 u32 length, staterr;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700910 unsigned int i;
911 int cleaned_count = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +0000912 bool cleaned = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700913 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
914
915 i = rx_ring->next_to_clean;
Bruce Allan5f450212011-07-22 06:21:46 +0000916 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
917 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700918 buffer_info = &rx_ring->buffer_info[i];
919
Bruce Allan5f450212011-07-22 06:21:46 +0000920 while (staterr & E1000_RXD_STAT_DD) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700921 struct sk_buff *skb;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700922
923 if (*work_done >= work_to_do)
924 break;
925 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +0000926 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700927
Auke Kokbc7f75f2007-09-17 12:30:59 -0700928 skb = buffer_info->skb;
929 buffer_info->skb = NULL;
930
931 prefetch(skb->data - NET_IP_ALIGN);
932
933 i++;
934 if (i == rx_ring->count)
935 i = 0;
Bruce Allan5f450212011-07-22 06:21:46 +0000936 next_rxd = E1000_RX_DESC_EXT(*rx_ring, i);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700937 prefetch(next_rxd);
938
939 next_buffer = &rx_ring->buffer_info[i];
940
Rusty Russell3db1cd52011-12-19 13:56:45 +0000941 cleaned = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700942 cleaned_count++;
Bruce Allane5fe2542013-02-20 04:06:27 +0000943 dma_unmap_single(&pdev->dev, buffer_info->dma,
944 adapter->rx_buffer_len, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700945 buffer_info->dma = 0;
946
Bruce Allan5f450212011-07-22 06:21:46 +0000947 length = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700948
Bruce Allane921eb12012-11-28 09:28:37 +0000949 /* !EOP means multiple descriptors were used to store a single
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000950 * packet, if that's the case we need to toss it. In fact, we
951 * need to toss every packet with the EOP bit clear and the
952 * next frame that _does_ have the EOP bit set, as it is by
953 * definition only a frame fragment
954 */
Bruce Allan5f450212011-07-22 06:21:46 +0000955 if (unlikely(!(staterr & E1000_RXD_STAT_EOP)))
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000956 adapter->flags2 |= FLAG2_IS_DISCARDING;
957
958 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700959 /* All receives must fit into a single buffer */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000960 e_dbg("Receive packet consumed multiple buffers\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700961 /* recycle */
962 buffer_info->skb = skb;
Bruce Allan5f450212011-07-22 06:21:46 +0000963 if (staterr & E1000_RXD_STAT_EOP)
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000964 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700965 goto next_desc;
966 }
967
Ben Greearcf955e62012-02-11 15:39:51 +0000968 if (unlikely((staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) &&
969 !(netdev->features & NETIF_F_RXALL))) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700970 /* recycle */
971 buffer_info->skb = skb;
972 goto next_desc;
973 }
974
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000975 /* adjust length to remove Ethernet CRC */
Ben Greear01840392012-02-11 15:39:25 +0000976 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING)) {
977 /* If configured to store CRC, don't subtract FCS,
978 * but keep the FCS bytes out of the total_rx_bytes
979 * counter
980 */
981 if (netdev->features & NETIF_F_RXFCS)
982 total_rx_bytes -= 4;
983 else
984 length -= 4;
985 }
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000986
Auke Kokbc7f75f2007-09-17 12:30:59 -0700987 total_rx_bytes += length;
988 total_rx_packets++;
989
Bruce Allane921eb12012-11-28 09:28:37 +0000990 /* code added for copybreak, this should improve
Auke Kokbc7f75f2007-09-17 12:30:59 -0700991 * performance for small packets with large amounts
Bruce Allanad680762008-03-28 09:15:03 -0700992 * of reassembly being done in the stack
993 */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700994 if (length < copybreak) {
995 struct sk_buff *new_skb =
Eric Dumazet89d71a62009-10-13 05:34:20 +0000996 netdev_alloc_skb_ip_align(netdev, length);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700997 if (new_skb) {
Bruce Allan808ff672008-08-08 18:35:56 -0700998 skb_copy_to_linear_data_offset(new_skb,
999 -NET_IP_ALIGN,
1000 (skb->data -
1001 NET_IP_ALIGN),
1002 (length +
1003 NET_IP_ALIGN));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001004 /* save the skb in buffer_info as good */
1005 buffer_info->skb = skb;
1006 skb = new_skb;
1007 }
1008 /* else just continue with the old one */
1009 }
1010 /* end copybreak code */
1011 skb_put(skb, length);
1012
1013 /* Receive Checksum Offload */
Bruce Allan2e1706f2012-06-30 20:02:42 +00001014 e1000_rx_checksum(adapter, staterr, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001015
Bruce Allan70495a52012-01-11 01:26:50 +00001016 e1000_rx_hash(netdev, rx_desc->wb.lower.hi_dword.rss, skb);
1017
Bruce Allan5f450212011-07-22 06:21:46 +00001018 e1000_receive_skb(adapter, netdev, skb, staterr,
1019 rx_desc->wb.upper.vlan);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001020
1021next_desc:
Bruce Allan5f450212011-07-22 06:21:46 +00001022 rx_desc->wb.upper.status_error &= cpu_to_le32(~0xFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001023
1024 /* return some buffers to hardware, one at a time is too slow */
1025 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
Bruce Allan55aa6982011-12-16 00:45:45 +00001026 adapter->alloc_rx_buf(rx_ring, cleaned_count,
Jeff Kirsherc2fed992011-07-12 16:10:12 +00001027 GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001028 cleaned_count = 0;
1029 }
1030
1031 /* use prefetched values */
1032 rx_desc = next_rxd;
1033 buffer_info = next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +00001034
1035 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001036 }
1037 rx_ring->next_to_clean = i;
1038
1039 cleaned_count = e1000_desc_unused(rx_ring);
1040 if (cleaned_count)
Bruce Allan55aa6982011-12-16 00:45:45 +00001041 adapter->alloc_rx_buf(rx_ring, cleaned_count, GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001042
Auke Kokbc7f75f2007-09-17 12:30:59 -07001043 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -07001044 adapter->total_rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001045 return cleaned;
1046}
1047
Bruce Allan55aa6982011-12-16 00:45:45 +00001048static void e1000_put_txbuf(struct e1000_ring *tx_ring,
1049 struct e1000_buffer *buffer_info)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001050{
Bruce Allan55aa6982011-12-16 00:45:45 +00001051 struct e1000_adapter *adapter = tx_ring->adapter;
1052
Alexander Duyck03b13202009-12-02 16:45:31 +00001053 if (buffer_info->dma) {
1054 if (buffer_info->mapped_as_page)
Nick Nunley0be3f552010-04-27 13:09:05 +00001055 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
1056 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00001057 else
Nick Nunley0be3f552010-04-27 13:09:05 +00001058 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
1059 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00001060 buffer_info->dma = 0;
1061 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001062 if (buffer_info->skb) {
1063 dev_kfree_skb_any(buffer_info->skb);
1064 buffer_info->skb = NULL;
1065 }
Alexander Duyck1b7719c2009-03-19 01:12:50 +00001066 buffer_info->time_stamp = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001067}
1068
Bruce Allan41cec6f2009-11-20 23:28:56 +00001069static void e1000_print_hw_hang(struct work_struct *work)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001070{
Bruce Allan41cec6f2009-11-20 23:28:56 +00001071 struct e1000_adapter *adapter = container_of(work,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001072 struct e1000_adapter,
1073 print_hang_task);
Jeff Kirsher09357b02011-11-18 14:25:00 +00001074 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001075 struct e1000_ring *tx_ring = adapter->tx_ring;
1076 unsigned int i = tx_ring->next_to_clean;
1077 unsigned int eop = tx_ring->buffer_info[i].next_to_watch;
1078 struct e1000_tx_desc *eop_desc = E1000_TX_DESC(*tx_ring, eop);
Bruce Allan41cec6f2009-11-20 23:28:56 +00001079 struct e1000_hw *hw = &adapter->hw;
1080 u16 phy_status, phy_1000t_status, phy_ext_status;
1081 u16 pci_status;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001082
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00001083 if (test_bit(__E1000_DOWN, &adapter->state))
1084 return;
1085
Bruce Allane5fe2542013-02-20 04:06:27 +00001086 if (!adapter->tx_hang_recheck && (adapter->flags2 & FLAG2_DMA_BURST)) {
Bruce Allane921eb12012-11-28 09:28:37 +00001087 /* May be block on write-back, flush and detect again
Jeff Kirsher09357b02011-11-18 14:25:00 +00001088 * flush pending descriptor writebacks to memory
1089 */
1090 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
1091 /* execute the writes immediately */
1092 e1e_flush();
Bruce Allane921eb12012-11-28 09:28:37 +00001093 /* Due to rare timing issues, write to TIDV again to ensure
Matthew Vickbf030852012-03-16 09:03:00 +00001094 * the write is successful
1095 */
1096 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
1097 /* execute the writes immediately */
1098 e1e_flush();
Jeff Kirsher09357b02011-11-18 14:25:00 +00001099 adapter->tx_hang_recheck = true;
1100 return;
1101 }
1102 /* Real hang detected */
1103 adapter->tx_hang_recheck = false;
1104 netif_stop_queue(netdev);
1105
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001106 e1e_rphy(hw, MII_BMSR, &phy_status);
1107 e1e_rphy(hw, MII_STAT1000, &phy_1000t_status);
1108 e1e_rphy(hw, MII_ESTATUS, &phy_ext_status);
Bruce Allan41cec6f2009-11-20 23:28:56 +00001109
1110 pci_read_config_word(adapter->pdev, PCI_STATUS, &pci_status);
1111
1112 /* detected Hardware unit hang */
1113 e_err("Detected Hardware Unit Hang:\n"
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001114 " TDH <%x>\n"
1115 " TDT <%x>\n"
1116 " next_to_use <%x>\n"
1117 " next_to_clean <%x>\n"
1118 "buffer_info[next_to_clean]:\n"
1119 " time_stamp <%lx>\n"
1120 " next_to_watch <%x>\n"
1121 " jiffies <%lx>\n"
Bruce Allan41cec6f2009-11-20 23:28:56 +00001122 " next_to_watch.status <%x>\n"
1123 "MAC Status <%x>\n"
1124 "PHY Status <%x>\n"
1125 "PHY 1000BASE-T Status <%x>\n"
1126 "PHY Extended Status <%x>\n"
1127 "PCI Status <%x>\n",
Bruce Allane5fe2542013-02-20 04:06:27 +00001128 readl(tx_ring->head), readl(tx_ring->tail), tx_ring->next_to_use,
1129 tx_ring->next_to_clean, tx_ring->buffer_info[eop].time_stamp,
1130 eop, jiffies, eop_desc->upper.fields.status, er32(STATUS),
1131 phy_status, phy_1000t_status, phy_ext_status, pci_status);
Bruce Allan7c0427e2012-03-20 03:48:08 +00001132
1133 /* Suggest workaround for known h/w issue */
1134 if ((hw->mac.type == e1000_pchlan) && (er32(CTRL) & E1000_CTRL_TFCE))
1135 e_err("Try turning off Tx pause (flow control) via ethtool\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001136}
1137
1138/**
Bruce Allanb67e1912012-12-27 08:32:33 +00001139 * e1000e_tx_hwtstamp_work - check for Tx time stamp
1140 * @work: pointer to work struct
1141 *
1142 * This work function polls the TSYNCTXCTL valid bit to determine when a
1143 * timestamp has been taken for the current stored skb. The timestamp must
1144 * be for this skb because only one such packet is allowed in the queue.
1145 */
1146static void e1000e_tx_hwtstamp_work(struct work_struct *work)
1147{
1148 struct e1000_adapter *adapter = container_of(work, struct e1000_adapter,
1149 tx_hwtstamp_work);
1150 struct e1000_hw *hw = &adapter->hw;
1151
1152 if (!adapter->tx_hwtstamp_skb)
1153 return;
1154
1155 if (er32(TSYNCTXCTL) & E1000_TSYNCTXCTL_VALID) {
1156 struct skb_shared_hwtstamps shhwtstamps;
1157 u64 txstmp;
1158
1159 txstmp = er32(TXSTMPL);
1160 txstmp |= (u64)er32(TXSTMPH) << 32;
1161
1162 e1000e_systim_to_hwtstamp(adapter, &shhwtstamps, txstmp);
1163
1164 skb_tstamp_tx(adapter->tx_hwtstamp_skb, &shhwtstamps);
1165 dev_kfree_skb_any(adapter->tx_hwtstamp_skb);
1166 adapter->tx_hwtstamp_skb = NULL;
1167 } else {
1168 /* reschedule to check later */
1169 schedule_work(&adapter->tx_hwtstamp_work);
1170 }
1171}
1172
1173/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001174 * e1000_clean_tx_irq - Reclaim resources after transmit completes
Bruce Allan55aa6982011-12-16 00:45:45 +00001175 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07001176 *
1177 * the return value indicates whether actual cleaning was done, there
1178 * is no guarantee that everything was cleaned
1179 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001180static bool e1000_clean_tx_irq(struct e1000_ring *tx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001181{
Bruce Allan55aa6982011-12-16 00:45:45 +00001182 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001183 struct net_device *netdev = adapter->netdev;
1184 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001185 struct e1000_tx_desc *tx_desc, *eop_desc;
1186 struct e1000_buffer *buffer_info;
1187 unsigned int i, eop;
1188 unsigned int count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001189 unsigned int total_tx_bytes = 0, total_tx_packets = 0;
Tom Herbert3f0cfa32011-11-28 16:33:16 +00001190 unsigned int bytes_compl = 0, pkts_compl = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001191
1192 i = tx_ring->next_to_clean;
1193 eop = tx_ring->buffer_info[i].next_to_watch;
1194 eop_desc = E1000_TX_DESC(*tx_ring, eop);
1195
Alexander Duyck12d04a32009-03-25 22:05:03 +00001196 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
1197 (count < tx_ring->count)) {
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001198 bool cleaned = false;
Bruce Allane80bd1d2013-05-01 01:19:46 +00001199 rmb(); /* read buffer_info after eop_desc */
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001200 for (; !cleaned; count++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001201 tx_desc = E1000_TX_DESC(*tx_ring, i);
1202 buffer_info = &tx_ring->buffer_info[i];
1203 cleaned = (i == eop);
1204
1205 if (cleaned) {
Tom Herbert9ed318d2010-05-05 14:02:27 +00001206 total_tx_packets += buffer_info->segs;
1207 total_tx_bytes += buffer_info->bytecount;
Tom Herbert3f0cfa32011-11-28 16:33:16 +00001208 if (buffer_info->skb) {
1209 bytes_compl += buffer_info->skb->len;
1210 pkts_compl++;
1211 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001212 }
1213
Bruce Allan55aa6982011-12-16 00:45:45 +00001214 e1000_put_txbuf(tx_ring, buffer_info);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001215 tx_desc->upper.data = 0;
1216
1217 i++;
1218 if (i == tx_ring->count)
1219 i = 0;
1220 }
1221
Terry Loftindac87612010-04-09 10:29:49 +00001222 if (i == tx_ring->next_to_use)
1223 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001224 eop = tx_ring->buffer_info[i].next_to_watch;
1225 eop_desc = E1000_TX_DESC(*tx_ring, eop);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001226 }
1227
1228 tx_ring->next_to_clean = i;
1229
Tom Herbert3f0cfa32011-11-28 16:33:16 +00001230 netdev_completed_queue(netdev, pkts_compl, bytes_compl);
1231
Auke Kokbc7f75f2007-09-17 12:30:59 -07001232#define TX_WAKE_THRESHOLD 32
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001233 if (count && netif_carrier_ok(netdev) &&
1234 e1000_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001235 /* Make sure that anybody stopping the queue after this
1236 * sees the new next_to_clean.
1237 */
1238 smp_mb();
1239
1240 if (netif_queue_stopped(netdev) &&
1241 !(test_bit(__E1000_DOWN, &adapter->state))) {
1242 netif_wake_queue(netdev);
1243 ++adapter->restart_queue;
1244 }
1245 }
1246
1247 if (adapter->detect_tx_hung) {
Bruce Allane921eb12012-11-28 09:28:37 +00001248 /* Detect a transmit hang in hardware, this serializes the
Bruce Allan41cec6f2009-11-20 23:28:56 +00001249 * check with the clearing of time_stamp and movement of i
1250 */
Rusty Russell3db1cd52011-12-19 13:56:45 +00001251 adapter->detect_tx_hung = false;
Alexander Duyck12d04a32009-03-25 22:05:03 +00001252 if (tx_ring->buffer_info[i].time_stamp &&
1253 time_after(jiffies, tx_ring->buffer_info[i].time_stamp
Joe Perches8e95a202009-12-03 07:58:21 +00001254 + (adapter->tx_timeout_factor * HZ)) &&
Jeff Kirsher09357b02011-11-18 14:25:00 +00001255 !(er32(STATUS) & E1000_STATUS_TXOFF))
Bruce Allan41cec6f2009-11-20 23:28:56 +00001256 schedule_work(&adapter->print_hang_task);
Jeff Kirsher09357b02011-11-18 14:25:00 +00001257 else
1258 adapter->tx_hang_recheck = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001259 }
1260 adapter->total_tx_bytes += total_tx_bytes;
1261 adapter->total_tx_packets += total_tx_packets;
Eric Dumazet807540b2010-09-23 05:40:09 +00001262 return count < tx_ring->count;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001263}
1264
1265/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001266 * e1000_clean_rx_irq_ps - Send received data up the network stack; packet split
Bruce Allan55aa6982011-12-16 00:45:45 +00001267 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07001268 *
1269 * the return value indicates whether actual cleaning was done, there
1270 * is no guarantee that everything was cleaned
1271 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001272static bool e1000_clean_rx_irq_ps(struct e1000_ring *rx_ring, int *work_done,
1273 int work_to_do)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001274{
Bruce Allan55aa6982011-12-16 00:45:45 +00001275 struct e1000_adapter *adapter = rx_ring->adapter;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001276 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001277 union e1000_rx_desc_packet_split *rx_desc, *next_rxd;
1278 struct net_device *netdev = adapter->netdev;
1279 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001280 struct e1000_buffer *buffer_info, *next_buffer;
1281 struct e1000_ps_page *ps_page;
1282 struct sk_buff *skb;
1283 unsigned int i, j;
1284 u32 length, staterr;
1285 int cleaned_count = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001286 bool cleaned = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001287 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
1288
1289 i = rx_ring->next_to_clean;
1290 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
1291 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1292 buffer_info = &rx_ring->buffer_info[i];
1293
1294 while (staterr & E1000_RXD_STAT_DD) {
1295 if (*work_done >= work_to_do)
1296 break;
1297 (*work_done)++;
1298 skb = buffer_info->skb;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00001299 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001300
1301 /* in the packet split case this is header only */
1302 prefetch(skb->data - NET_IP_ALIGN);
1303
1304 i++;
1305 if (i == rx_ring->count)
1306 i = 0;
1307 next_rxd = E1000_RX_DESC_PS(*rx_ring, i);
1308 prefetch(next_rxd);
1309
1310 next_buffer = &rx_ring->buffer_info[i];
1311
Rusty Russell3db1cd52011-12-19 13:56:45 +00001312 cleaned = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001313 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001314 dma_unmap_single(&pdev->dev, buffer_info->dma,
Bruce Allanaf667a22010-12-31 06:10:01 +00001315 adapter->rx_ps_bsize0, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001316 buffer_info->dma = 0;
1317
Bruce Allanaf667a22010-12-31 06:10:01 +00001318 /* see !EOP comment in other Rx routine */
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001319 if (!(staterr & E1000_RXD_STAT_EOP))
1320 adapter->flags2 |= FLAG2_IS_DISCARDING;
1321
1322 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Jeff Kirsheref456f82011-11-03 11:40:28 +00001323 e_dbg("Packet Split buffers didn't pick up the full packet\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001324 dev_kfree_skb_irq(skb);
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001325 if (staterr & E1000_RXD_STAT_EOP)
1326 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001327 goto next_desc;
1328 }
1329
Ben Greearcf955e62012-02-11 15:39:51 +00001330 if (unlikely((staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) &&
1331 !(netdev->features & NETIF_F_RXALL))) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001332 dev_kfree_skb_irq(skb);
1333 goto next_desc;
1334 }
1335
1336 length = le16_to_cpu(rx_desc->wb.middle.length0);
1337
1338 if (!length) {
Jeff Kirsheref456f82011-11-03 11:40:28 +00001339 e_dbg("Last part of the packet spanning multiple descriptors\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001340 dev_kfree_skb_irq(skb);
1341 goto next_desc;
1342 }
1343
1344 /* Good Receive */
1345 skb_put(skb, length);
1346
1347 {
Bruce Allane921eb12012-11-28 09:28:37 +00001348 /* this looks ugly, but it seems compiler issues make
Bruce Allan0e15df42012-01-31 06:37:11 +00001349 * it more efficient than reusing j
1350 */
1351 int l1 = le16_to_cpu(rx_desc->wb.upper.length[0]);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001352
Bruce Allane921eb12012-11-28 09:28:37 +00001353 /* page alloc/put takes too long and effects small
Bruce Allan0e15df42012-01-31 06:37:11 +00001354 * packet throughput, so unsplit small packets and
1355 * save the alloc/put only valid in softirq (napi)
1356 * context to call kmap_*
Bruce Allanad680762008-03-28 09:15:03 -07001357 */
Bruce Allan0e15df42012-01-31 06:37:11 +00001358 if (l1 && (l1 <= copybreak) &&
1359 ((length + l1) <= adapter->rx_ps_bsize0)) {
1360 u8 *vaddr;
Auke Kok140a7482007-10-25 13:57:58 -07001361
Bruce Allan0e15df42012-01-31 06:37:11 +00001362 ps_page = &buffer_info->ps_pages[0];
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001363
Bruce Allane921eb12012-11-28 09:28:37 +00001364 /* there is no documentation about how to call
Bruce Allan0e15df42012-01-31 06:37:11 +00001365 * kmap_atomic, so we can't hold the mapping
1366 * very long
1367 */
1368 dma_sync_single_for_cpu(&pdev->dev,
1369 ps_page->dma,
1370 PAGE_SIZE,
1371 DMA_FROM_DEVICE);
Linus Torvalds9f393832012-03-21 09:40:26 -07001372 vaddr = kmap_atomic(ps_page->page);
Bruce Allan0e15df42012-01-31 06:37:11 +00001373 memcpy(skb_tail_pointer(skb), vaddr, l1);
Linus Torvalds9f393832012-03-21 09:40:26 -07001374 kunmap_atomic(vaddr);
Bruce Allan0e15df42012-01-31 06:37:11 +00001375 dma_sync_single_for_device(&pdev->dev,
1376 ps_page->dma,
1377 PAGE_SIZE,
1378 DMA_FROM_DEVICE);
1379
1380 /* remove the CRC */
Ben Greear01840392012-02-11 15:39:25 +00001381 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING)) {
1382 if (!(netdev->features & NETIF_F_RXFCS))
1383 l1 -= 4;
1384 }
Bruce Allan0e15df42012-01-31 06:37:11 +00001385
1386 skb_put(skb, l1);
1387 goto copydone;
Bruce Allane80bd1d2013-05-01 01:19:46 +00001388 } /* if */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001389 }
1390
1391 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
1392 length = le16_to_cpu(rx_desc->wb.upper.length[j]);
1393 if (!length)
1394 break;
1395
Auke Kok47f44e42007-10-25 13:57:44 -07001396 ps_page = &buffer_info->ps_pages[j];
Nick Nunley0be3f552010-04-27 13:09:05 +00001397 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1398 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001399 ps_page->dma = 0;
1400 skb_fill_page_desc(skb, j, ps_page->page, 0, length);
1401 ps_page->page = NULL;
1402 skb->len += length;
1403 skb->data_len += length;
Eric Dumazet98a045d2011-10-13 08:03:36 +00001404 skb->truesize += PAGE_SIZE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001405 }
1406
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001407 /* strip the ethernet crc, problem is we're using pages now so
1408 * this whole operation can get a little cpu intensive
1409 */
Ben Greear01840392012-02-11 15:39:25 +00001410 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING)) {
1411 if (!(netdev->features & NETIF_F_RXFCS))
1412 pskb_trim(skb, skb->len - 4);
1413 }
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001414
Auke Kokbc7f75f2007-09-17 12:30:59 -07001415copydone:
1416 total_rx_bytes += skb->len;
1417 total_rx_packets++;
1418
Bruce Allan2e1706f2012-06-30 20:02:42 +00001419 e1000_rx_checksum(adapter, staterr, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001420
Bruce Allan70495a52012-01-11 01:26:50 +00001421 e1000_rx_hash(netdev, rx_desc->wb.lower.hi_dword.rss, skb);
1422
Auke Kokbc7f75f2007-09-17 12:30:59 -07001423 if (rx_desc->wb.upper.header_status &
Bruce Allan17e813e2013-02-20 04:06:01 +00001424 cpu_to_le16(E1000_RXDPS_HDRSTAT_HDRSP))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001425 adapter->rx_hdr_split++;
1426
Bruce Allanb67e1912012-12-27 08:32:33 +00001427 e1000_receive_skb(adapter, netdev, skb, staterr,
1428 rx_desc->wb.middle.vlan);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001429
1430next_desc:
1431 rx_desc->wb.middle.status_error &= cpu_to_le32(~0xFF);
1432 buffer_info->skb = NULL;
1433
1434 /* return some buffers to hardware, one at a time is too slow */
1435 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
Bruce Allan55aa6982011-12-16 00:45:45 +00001436 adapter->alloc_rx_buf(rx_ring, cleaned_count,
Jeff Kirsherc2fed992011-07-12 16:10:12 +00001437 GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001438 cleaned_count = 0;
1439 }
1440
1441 /* use prefetched values */
1442 rx_desc = next_rxd;
1443 buffer_info = next_buffer;
1444
1445 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1446 }
1447 rx_ring->next_to_clean = i;
1448
1449 cleaned_count = e1000_desc_unused(rx_ring);
1450 if (cleaned_count)
Bruce Allan55aa6982011-12-16 00:45:45 +00001451 adapter->alloc_rx_buf(rx_ring, cleaned_count, GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001452
Auke Kokbc7f75f2007-09-17 12:30:59 -07001453 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -07001454 adapter->total_rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001455 return cleaned;
1456}
1457
1458/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001459 * e1000_consume_page - helper function
1460 **/
1461static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
Bruce Allan66501f52013-02-20 04:05:55 +00001462 u16 length)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001463{
1464 bi->page = NULL;
1465 skb->len += length;
1466 skb->data_len += length;
Eric Dumazet98a045d2011-10-13 08:03:36 +00001467 skb->truesize += PAGE_SIZE;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001468}
1469
1470/**
1471 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
1472 * @adapter: board private structure
1473 *
1474 * the return value indicates whether actual cleaning was done, there
1475 * is no guarantee that everything was cleaned
1476 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001477static bool e1000_clean_jumbo_rx_irq(struct e1000_ring *rx_ring, int *work_done,
1478 int work_to_do)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001479{
Bruce Allan55aa6982011-12-16 00:45:45 +00001480 struct e1000_adapter *adapter = rx_ring->adapter;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001481 struct net_device *netdev = adapter->netdev;
1482 struct pci_dev *pdev = adapter->pdev;
Bruce Allan5f450212011-07-22 06:21:46 +00001483 union e1000_rx_desc_extended *rx_desc, *next_rxd;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001484 struct e1000_buffer *buffer_info, *next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +00001485 u32 length, staterr;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001486 unsigned int i;
1487 int cleaned_count = 0;
1488 bool cleaned = false;
Bruce Allan362e20c2013-02-20 04:05:45 +00001489 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Bruce Allan17e813e2013-02-20 04:06:01 +00001490 struct skb_shared_info *shinfo;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001491
1492 i = rx_ring->next_to_clean;
Bruce Allan5f450212011-07-22 06:21:46 +00001493 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
1494 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001495 buffer_info = &rx_ring->buffer_info[i];
1496
Bruce Allan5f450212011-07-22 06:21:46 +00001497 while (staterr & E1000_RXD_STAT_DD) {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001498 struct sk_buff *skb;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001499
1500 if (*work_done >= work_to_do)
1501 break;
1502 (*work_done)++;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +00001503 rmb(); /* read descriptor and rx_buffer_info after status DD */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001504
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001505 skb = buffer_info->skb;
1506 buffer_info->skb = NULL;
1507
1508 ++i;
1509 if (i == rx_ring->count)
1510 i = 0;
Bruce Allan5f450212011-07-22 06:21:46 +00001511 next_rxd = E1000_RX_DESC_EXT(*rx_ring, i);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001512 prefetch(next_rxd);
1513
1514 next_buffer = &rx_ring->buffer_info[i];
1515
1516 cleaned = true;
1517 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001518 dma_unmap_page(&pdev->dev, buffer_info->dma, PAGE_SIZE,
1519 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001520 buffer_info->dma = 0;
1521
Bruce Allan5f450212011-07-22 06:21:46 +00001522 length = le16_to_cpu(rx_desc->wb.upper.length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001523
1524 /* errors is only valid for DD + EOP descriptors */
Bruce Allan5f450212011-07-22 06:21:46 +00001525 if (unlikely((staterr & E1000_RXD_STAT_EOP) &&
Ben Greearcf955e62012-02-11 15:39:51 +00001526 ((staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) &&
1527 !(netdev->features & NETIF_F_RXALL)))) {
Bruce Allan5f450212011-07-22 06:21:46 +00001528 /* recycle both page and skb */
1529 buffer_info->skb = skb;
1530 /* an error means any chain goes out the window too */
1531 if (rx_ring->rx_skb_top)
1532 dev_kfree_skb_irq(rx_ring->rx_skb_top);
1533 rx_ring->rx_skb_top = NULL;
1534 goto next_desc;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001535 }
Bruce Allanf0f1a172010-12-11 05:53:32 +00001536#define rxtop (rx_ring->rx_skb_top)
Bruce Allan5f450212011-07-22 06:21:46 +00001537 if (!(staterr & E1000_RXD_STAT_EOP)) {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001538 /* this descriptor is only the beginning (or middle) */
1539 if (!rxtop) {
1540 /* this is the beginning of a chain */
1541 rxtop = skb;
1542 skb_fill_page_desc(rxtop, 0, buffer_info->page,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001543 0, length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001544 } else {
1545 /* this is the middle of a chain */
Bruce Allan17e813e2013-02-20 04:06:01 +00001546 shinfo = skb_shinfo(rxtop);
1547 skb_fill_page_desc(rxtop, shinfo->nr_frags,
1548 buffer_info->page, 0,
1549 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001550 /* re-use the skb, only consumed the page */
1551 buffer_info->skb = skb;
1552 }
1553 e1000_consume_page(buffer_info, rxtop, length);
1554 goto next_desc;
1555 } else {
1556 if (rxtop) {
1557 /* end of the chain */
Bruce Allan17e813e2013-02-20 04:06:01 +00001558 shinfo = skb_shinfo(rxtop);
1559 skb_fill_page_desc(rxtop, shinfo->nr_frags,
1560 buffer_info->page, 0,
1561 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001562 /* re-use the current skb, we only consumed the
Bruce Allane921eb12012-11-28 09:28:37 +00001563 * page
1564 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001565 buffer_info->skb = skb;
1566 skb = rxtop;
1567 rxtop = NULL;
1568 e1000_consume_page(buffer_info, skb, length);
1569 } else {
1570 /* no chain, got EOP, this buf is the packet
Bruce Allane921eb12012-11-28 09:28:37 +00001571 * copybreak to save the put_page/alloc_page
1572 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001573 if (length <= copybreak &&
1574 skb_tailroom(skb) >= length) {
1575 u8 *vaddr;
Cong Wang46790262011-11-25 23:14:23 +08001576 vaddr = kmap_atomic(buffer_info->page);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001577 memcpy(skb_tail_pointer(skb), vaddr,
1578 length);
Cong Wang46790262011-11-25 23:14:23 +08001579 kunmap_atomic(vaddr);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001580 /* re-use the page, so don't erase
Bruce Allane921eb12012-11-28 09:28:37 +00001581 * buffer_info->page
1582 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001583 skb_put(skb, length);
1584 } else {
1585 skb_fill_page_desc(skb, 0,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001586 buffer_info->page, 0,
1587 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001588 e1000_consume_page(buffer_info, skb,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001589 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001590 }
1591 }
1592 }
1593
Bruce Allan2e1706f2012-06-30 20:02:42 +00001594 /* Receive Checksum Offload */
1595 e1000_rx_checksum(adapter, staterr, skb);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001596
Bruce Allan70495a52012-01-11 01:26:50 +00001597 e1000_rx_hash(netdev, rx_desc->wb.lower.hi_dword.rss, skb);
1598
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001599 /* probably a little skewed due to removing CRC */
1600 total_rx_bytes += skb->len;
1601 total_rx_packets++;
1602
1603 /* eth type trans needs skb->data to point to something */
1604 if (!pskb_may_pull(skb, ETH_HLEN)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001605 e_err("pskb_may_pull failed.\n");
Bruce Allanef5ab892011-02-10 08:17:21 +00001606 dev_kfree_skb_irq(skb);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001607 goto next_desc;
1608 }
1609
Bruce Allan5f450212011-07-22 06:21:46 +00001610 e1000_receive_skb(adapter, netdev, skb, staterr,
1611 rx_desc->wb.upper.vlan);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001612
1613next_desc:
Bruce Allan5f450212011-07-22 06:21:46 +00001614 rx_desc->wb.upper.status_error &= cpu_to_le32(~0xFF);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001615
1616 /* return some buffers to hardware, one at a time is too slow */
1617 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
Bruce Allan55aa6982011-12-16 00:45:45 +00001618 adapter->alloc_rx_buf(rx_ring, cleaned_count,
Jeff Kirsherc2fed992011-07-12 16:10:12 +00001619 GFP_ATOMIC);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001620 cleaned_count = 0;
1621 }
1622
1623 /* use prefetched values */
1624 rx_desc = next_rxd;
1625 buffer_info = next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +00001626
1627 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001628 }
1629 rx_ring->next_to_clean = i;
1630
1631 cleaned_count = e1000_desc_unused(rx_ring);
1632 if (cleaned_count)
Bruce Allan55aa6982011-12-16 00:45:45 +00001633 adapter->alloc_rx_buf(rx_ring, cleaned_count, GFP_ATOMIC);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001634
1635 adapter->total_rx_bytes += total_rx_bytes;
1636 adapter->total_rx_packets += total_rx_packets;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001637 return cleaned;
1638}
1639
1640/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001641 * e1000_clean_rx_ring - Free Rx Buffers per Queue
Bruce Allan55aa6982011-12-16 00:45:45 +00001642 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07001643 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001644static void e1000_clean_rx_ring(struct e1000_ring *rx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001645{
Bruce Allan55aa6982011-12-16 00:45:45 +00001646 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001647 struct e1000_buffer *buffer_info;
1648 struct e1000_ps_page *ps_page;
1649 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001650 unsigned int i, j;
1651
1652 /* Free all the Rx ring sk_buffs */
1653 for (i = 0; i < rx_ring->count; i++) {
1654 buffer_info = &rx_ring->buffer_info[i];
1655 if (buffer_info->dma) {
1656 if (adapter->clean_rx == e1000_clean_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001657 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001658 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +00001659 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001660 else if (adapter->clean_rx == e1000_clean_jumbo_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001661 dma_unmap_page(&pdev->dev, buffer_info->dma,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001662 PAGE_SIZE, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001663 else if (adapter->clean_rx == e1000_clean_rx_irq_ps)
Nick Nunley0be3f552010-04-27 13:09:05 +00001664 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001665 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +00001666 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001667 buffer_info->dma = 0;
1668 }
1669
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001670 if (buffer_info->page) {
1671 put_page(buffer_info->page);
1672 buffer_info->page = NULL;
1673 }
1674
Auke Kokbc7f75f2007-09-17 12:30:59 -07001675 if (buffer_info->skb) {
1676 dev_kfree_skb(buffer_info->skb);
1677 buffer_info->skb = NULL;
1678 }
1679
1680 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -07001681 ps_page = &buffer_info->ps_pages[j];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001682 if (!ps_page->page)
1683 break;
Nick Nunley0be3f552010-04-27 13:09:05 +00001684 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1685 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001686 ps_page->dma = 0;
1687 put_page(ps_page->page);
1688 ps_page->page = NULL;
1689 }
1690 }
1691
1692 /* there also may be some cached data from a chained receive */
1693 if (rx_ring->rx_skb_top) {
1694 dev_kfree_skb(rx_ring->rx_skb_top);
1695 rx_ring->rx_skb_top = NULL;
1696 }
1697
Auke Kokbc7f75f2007-09-17 12:30:59 -07001698 /* Zero out the descriptor ring */
1699 memset(rx_ring->desc, 0, rx_ring->size);
1700
1701 rx_ring->next_to_clean = 0;
1702 rx_ring->next_to_use = 0;
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001703 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001704
Bruce Allanc5083cf2011-12-16 00:45:40 +00001705 writel(0, rx_ring->head);
Bruce Allanbdc125f2012-03-20 03:47:52 +00001706 if (rx_ring->adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
1707 e1000e_update_rdt_wa(rx_ring, 0);
1708 else
1709 writel(0, rx_ring->tail);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001710}
1711
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001712static void e1000e_downshift_workaround(struct work_struct *work)
1713{
1714 struct e1000_adapter *adapter = container_of(work,
Bruce Allan17e813e2013-02-20 04:06:01 +00001715 struct e1000_adapter,
1716 downshift_task);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001717
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00001718 if (test_bit(__E1000_DOWN, &adapter->state))
1719 return;
1720
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001721 e1000e_gig_downshift_workaround_ich8lan(&adapter->hw);
1722}
1723
Auke Kokbc7f75f2007-09-17 12:30:59 -07001724/**
1725 * e1000_intr_msi - Interrupt Handler
1726 * @irq: interrupt number
1727 * @data: pointer to a network interface device structure
1728 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00001729static irqreturn_t e1000_intr_msi(int __always_unused irq, void *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001730{
1731 struct net_device *netdev = data;
1732 struct e1000_adapter *adapter = netdev_priv(netdev);
1733 struct e1000_hw *hw = &adapter->hw;
1734 u32 icr = er32(ICR);
1735
Bruce Allane921eb12012-11-28 09:28:37 +00001736 /* read ICR disables interrupts using IAM */
dave graham573cca82009-02-10 12:52:05 +00001737 if (icr & E1000_ICR_LSC) {
Bruce Allanf92518d2012-02-01 11:16:42 +00001738 hw->mac.get_link_status = true;
Bruce Allane921eb12012-11-28 09:28:37 +00001739 /* ICH8 workaround-- Call gig speed drop workaround on cable
Bruce Allanad680762008-03-28 09:15:03 -07001740 * disconnect (LSC) before accessing any PHY registers
1741 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001742 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1743 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001744 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001745
Bruce Allane921eb12012-11-28 09:28:37 +00001746 /* 80003ES2LAN workaround-- For packet buffer work-around on
Auke Kokbc7f75f2007-09-17 12:30:59 -07001747 * link down event; disable receives here in the ISR and reset
Bruce Allanad680762008-03-28 09:15:03 -07001748 * adapter in watchdog
1749 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001750 if (netif_carrier_ok(netdev) &&
1751 adapter->flags & FLAG_RX_NEEDS_RESTART) {
1752 /* disable receives */
1753 u32 rctl = er32(RCTL);
1754 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Bruce Allan12d43f72012-12-05 06:26:14 +00001755 adapter->flags |= FLAG_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001756 }
1757 /* guard against interrupt when we're going down */
1758 if (!test_bit(__E1000_DOWN, &adapter->state))
1759 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1760 }
1761
Bruce Allan94fb8482013-01-23 09:00:03 +00001762 /* Reset on uncorrectable ECC error */
1763 if ((icr & E1000_ICR_ECCER) && (hw->mac.type == e1000_pch_lpt)) {
1764 u32 pbeccsts = er32(PBECCSTS);
1765
1766 adapter->corr_errors +=
1767 pbeccsts & E1000_PBECCSTS_CORR_ERR_CNT_MASK;
1768 adapter->uncorr_errors +=
1769 (pbeccsts & E1000_PBECCSTS_UNCORR_ERR_CNT_MASK) >>
1770 E1000_PBECCSTS_UNCORR_ERR_CNT_SHIFT;
1771
1772 /* Do the reset outside of interrupt context */
1773 schedule_work(&adapter->reset_task);
1774
1775 /* return immediately since reset is imminent */
1776 return IRQ_HANDLED;
1777 }
1778
Ben Hutchings288379f2009-01-19 16:43:59 -08001779 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001780 adapter->total_tx_bytes = 0;
1781 adapter->total_tx_packets = 0;
1782 adapter->total_rx_bytes = 0;
1783 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001784 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001785 }
1786
1787 return IRQ_HANDLED;
1788}
1789
1790/**
1791 * e1000_intr - Interrupt Handler
1792 * @irq: interrupt number
1793 * @data: pointer to a network interface device structure
1794 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00001795static irqreturn_t e1000_intr(int __always_unused irq, void *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001796{
1797 struct net_device *netdev = data;
1798 struct e1000_adapter *adapter = netdev_priv(netdev);
1799 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001800 u32 rctl, icr = er32(ICR);
Bruce Allan4662e822008-08-26 18:37:06 -07001801
Bruce Allana68ea772009-11-20 23:23:16 +00001802 if (!icr || test_bit(__E1000_DOWN, &adapter->state))
Bruce Allane80bd1d2013-05-01 01:19:46 +00001803 return IRQ_NONE; /* Not our interrupt */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001804
Bruce Allane921eb12012-11-28 09:28:37 +00001805 /* IMS will not auto-mask if INT_ASSERTED is not set, and if it is
Bruce Allanad680762008-03-28 09:15:03 -07001806 * not set, then the adapter didn't send an interrupt
1807 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001808 if (!(icr & E1000_ICR_INT_ASSERTED))
1809 return IRQ_NONE;
1810
Bruce Allane921eb12012-11-28 09:28:37 +00001811 /* Interrupt Auto-Mask...upon reading ICR,
Bruce Allanad680762008-03-28 09:15:03 -07001812 * interrupts are masked. No need for the
1813 * IMC write
1814 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001815
dave graham573cca82009-02-10 12:52:05 +00001816 if (icr & E1000_ICR_LSC) {
Bruce Allanf92518d2012-02-01 11:16:42 +00001817 hw->mac.get_link_status = true;
Bruce Allane921eb12012-11-28 09:28:37 +00001818 /* ICH8 workaround-- Call gig speed drop workaround on cable
Bruce Allanad680762008-03-28 09:15:03 -07001819 * disconnect (LSC) before accessing any PHY registers
1820 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001821 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1822 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001823 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001824
Bruce Allane921eb12012-11-28 09:28:37 +00001825 /* 80003ES2LAN workaround--
Auke Kokbc7f75f2007-09-17 12:30:59 -07001826 * For packet buffer work-around on link down event;
1827 * disable receives here in the ISR and
1828 * reset adapter in watchdog
1829 */
1830 if (netif_carrier_ok(netdev) &&
1831 (adapter->flags & FLAG_RX_NEEDS_RESTART)) {
1832 /* disable receives */
1833 rctl = er32(RCTL);
1834 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Bruce Allan12d43f72012-12-05 06:26:14 +00001835 adapter->flags |= FLAG_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001836 }
1837 /* guard against interrupt when we're going down */
1838 if (!test_bit(__E1000_DOWN, &adapter->state))
1839 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1840 }
1841
Bruce Allan94fb8482013-01-23 09:00:03 +00001842 /* Reset on uncorrectable ECC error */
1843 if ((icr & E1000_ICR_ECCER) && (hw->mac.type == e1000_pch_lpt)) {
1844 u32 pbeccsts = er32(PBECCSTS);
1845
1846 adapter->corr_errors +=
1847 pbeccsts & E1000_PBECCSTS_CORR_ERR_CNT_MASK;
1848 adapter->uncorr_errors +=
1849 (pbeccsts & E1000_PBECCSTS_UNCORR_ERR_CNT_MASK) >>
1850 E1000_PBECCSTS_UNCORR_ERR_CNT_SHIFT;
1851
1852 /* Do the reset outside of interrupt context */
1853 schedule_work(&adapter->reset_task);
1854
1855 /* return immediately since reset is imminent */
1856 return IRQ_HANDLED;
1857 }
1858
Ben Hutchings288379f2009-01-19 16:43:59 -08001859 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001860 adapter->total_tx_bytes = 0;
1861 adapter->total_tx_packets = 0;
1862 adapter->total_rx_bytes = 0;
1863 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001864 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001865 }
1866
1867 return IRQ_HANDLED;
1868}
1869
Bruce Allan8bb62862013-01-16 08:46:49 +00001870static irqreturn_t e1000_msix_other(int __always_unused irq, void *data)
Bruce Allan4662e822008-08-26 18:37:06 -07001871{
1872 struct net_device *netdev = data;
1873 struct e1000_adapter *adapter = netdev_priv(netdev);
1874 struct e1000_hw *hw = &adapter->hw;
1875 u32 icr = er32(ICR);
1876
1877 if (!(icr & E1000_ICR_INT_ASSERTED)) {
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001878 if (!test_bit(__E1000_DOWN, &adapter->state))
1879 ew32(IMS, E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001880 return IRQ_NONE;
1881 }
1882
1883 if (icr & adapter->eiac_mask)
1884 ew32(ICS, (icr & adapter->eiac_mask));
1885
1886 if (icr & E1000_ICR_OTHER) {
1887 if (!(icr & E1000_ICR_LSC))
1888 goto no_link_interrupt;
Bruce Allanf92518d2012-02-01 11:16:42 +00001889 hw->mac.get_link_status = true;
Bruce Allan4662e822008-08-26 18:37:06 -07001890 /* guard against interrupt when we're going down */
1891 if (!test_bit(__E1000_DOWN, &adapter->state))
1892 mod_timer(&adapter->watchdog_timer, jiffies + 1);
1893 }
1894
1895no_link_interrupt:
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00001896 if (!test_bit(__E1000_DOWN, &adapter->state))
1897 ew32(IMS, E1000_IMS_LSC | E1000_IMS_OTHER);
Bruce Allan4662e822008-08-26 18:37:06 -07001898
1899 return IRQ_HANDLED;
1900}
1901
Bruce Allan8bb62862013-01-16 08:46:49 +00001902static irqreturn_t e1000_intr_msix_tx(int __always_unused irq, void *data)
Bruce Allan4662e822008-08-26 18:37:06 -07001903{
1904 struct net_device *netdev = data;
1905 struct e1000_adapter *adapter = netdev_priv(netdev);
1906 struct e1000_hw *hw = &adapter->hw;
1907 struct e1000_ring *tx_ring = adapter->tx_ring;
1908
Bruce Allan4662e822008-08-26 18:37:06 -07001909 adapter->total_tx_bytes = 0;
1910 adapter->total_tx_packets = 0;
1911
Bruce Allan55aa6982011-12-16 00:45:45 +00001912 if (!e1000_clean_tx_irq(tx_ring))
Bruce Allan4662e822008-08-26 18:37:06 -07001913 /* Ring was not completely cleaned, so fire another interrupt */
1914 ew32(ICS, tx_ring->ims_val);
1915
1916 return IRQ_HANDLED;
1917}
1918
Bruce Allan8bb62862013-01-16 08:46:49 +00001919static irqreturn_t e1000_intr_msix_rx(int __always_unused irq, void *data)
Bruce Allan4662e822008-08-26 18:37:06 -07001920{
1921 struct net_device *netdev = data;
1922 struct e1000_adapter *adapter = netdev_priv(netdev);
Bruce Allan55aa6982011-12-16 00:45:45 +00001923 struct e1000_ring *rx_ring = adapter->rx_ring;
Bruce Allan4662e822008-08-26 18:37:06 -07001924
1925 /* Write the ITR value calculated at the end of the
1926 * previous interrupt.
1927 */
Bruce Allan55aa6982011-12-16 00:45:45 +00001928 if (rx_ring->set_itr) {
1929 writel(1000000000 / (rx_ring->itr_val * 256),
1930 rx_ring->itr_register);
1931 rx_ring->set_itr = 0;
Bruce Allan4662e822008-08-26 18:37:06 -07001932 }
1933
Ben Hutchings288379f2009-01-19 16:43:59 -08001934 if (napi_schedule_prep(&adapter->napi)) {
Bruce Allan4662e822008-08-26 18:37:06 -07001935 adapter->total_rx_bytes = 0;
1936 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001937 __napi_schedule(&adapter->napi);
Bruce Allan4662e822008-08-26 18:37:06 -07001938 }
1939 return IRQ_HANDLED;
1940}
1941
1942/**
1943 * e1000_configure_msix - Configure MSI-X hardware
1944 *
1945 * e1000_configure_msix sets up the hardware to properly
1946 * generate MSI-X interrupts.
1947 **/
1948static void e1000_configure_msix(struct e1000_adapter *adapter)
1949{
1950 struct e1000_hw *hw = &adapter->hw;
1951 struct e1000_ring *rx_ring = adapter->rx_ring;
1952 struct e1000_ring *tx_ring = adapter->tx_ring;
1953 int vector = 0;
1954 u32 ctrl_ext, ivar = 0;
1955
1956 adapter->eiac_mask = 0;
1957
1958 /* Workaround issue with spurious interrupts on 82574 in MSI-X mode */
1959 if (hw->mac.type == e1000_82574) {
1960 u32 rfctl = er32(RFCTL);
1961 rfctl |= E1000_RFCTL_ACK_DIS;
1962 ew32(RFCTL, rfctl);
1963 }
1964
Bruce Allan4662e822008-08-26 18:37:06 -07001965 /* Configure Rx vector */
1966 rx_ring->ims_val = E1000_IMS_RXQ0;
1967 adapter->eiac_mask |= rx_ring->ims_val;
1968 if (rx_ring->itr_val)
1969 writel(1000000000 / (rx_ring->itr_val * 256),
Bruce Allanc5083cf2011-12-16 00:45:40 +00001970 rx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07001971 else
Bruce Allanc5083cf2011-12-16 00:45:40 +00001972 writel(1, rx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07001973 ivar = E1000_IVAR_INT_ALLOC_VALID | vector;
1974
1975 /* Configure Tx vector */
1976 tx_ring->ims_val = E1000_IMS_TXQ0;
1977 vector++;
1978 if (tx_ring->itr_val)
1979 writel(1000000000 / (tx_ring->itr_val * 256),
Bruce Allanc5083cf2011-12-16 00:45:40 +00001980 tx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07001981 else
Bruce Allanc5083cf2011-12-16 00:45:40 +00001982 writel(1, tx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07001983 adapter->eiac_mask |= tx_ring->ims_val;
1984 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 8);
1985
1986 /* set vector for Other Causes, e.g. link changes */
1987 vector++;
1988 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 16);
1989 if (rx_ring->itr_val)
1990 writel(1000000000 / (rx_ring->itr_val * 256),
1991 hw->hw_addr + E1000_EITR_82574(vector));
1992 else
1993 writel(1, hw->hw_addr + E1000_EITR_82574(vector));
1994
1995 /* Cause Tx interrupts on every write back */
1996 ivar |= (1 << 31);
1997
1998 ew32(IVAR, ivar);
1999
2000 /* enable MSI-X PBA support */
2001 ctrl_ext = er32(CTRL_EXT);
2002 ctrl_ext |= E1000_CTRL_EXT_PBA_CLR;
2003
2004 /* Auto-Mask Other interrupts upon ICR read */
Bruce Allan4662e822008-08-26 18:37:06 -07002005 ew32(IAM, ~E1000_EIAC_MASK_82574 | E1000_IMS_OTHER);
2006 ctrl_ext |= E1000_CTRL_EXT_EIAME;
2007 ew32(CTRL_EXT, ctrl_ext);
2008 e1e_flush();
2009}
2010
2011void e1000e_reset_interrupt_capability(struct e1000_adapter *adapter)
2012{
2013 if (adapter->msix_entries) {
2014 pci_disable_msix(adapter->pdev);
2015 kfree(adapter->msix_entries);
2016 adapter->msix_entries = NULL;
2017 } else if (adapter->flags & FLAG_MSI_ENABLED) {
2018 pci_disable_msi(adapter->pdev);
2019 adapter->flags &= ~FLAG_MSI_ENABLED;
2020 }
Bruce Allan4662e822008-08-26 18:37:06 -07002021}
2022
2023/**
2024 * e1000e_set_interrupt_capability - set MSI or MSI-X if supported
2025 *
2026 * Attempt to configure interrupts using the best available
2027 * capabilities of the hardware and kernel.
2028 **/
2029void e1000e_set_interrupt_capability(struct e1000_adapter *adapter)
2030{
2031 int err;
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002032 int i;
Bruce Allan4662e822008-08-26 18:37:06 -07002033
2034 switch (adapter->int_mode) {
2035 case E1000E_INT_MODE_MSIX:
2036 if (adapter->flags & FLAG_HAS_MSIX) {
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002037 adapter->num_vectors = 3; /* RxQ0, TxQ0 and other */
2038 adapter->msix_entries = kcalloc(adapter->num_vectors,
Bruce Allan17e813e2013-02-20 04:06:01 +00002039 sizeof(struct
2040 msix_entry),
2041 GFP_KERNEL);
Bruce Allan4662e822008-08-26 18:37:06 -07002042 if (adapter->msix_entries) {
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
2046 err = pci_enable_msix(adapter->pdev,
2047 adapter->msix_entries,
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002048 adapter->num_vectors);
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002049 if (err == 0)
Bruce Allan4662e822008-08-26 18:37:06 -07002050 return;
2051 }
2052 /* MSI-X failed, so fall through and try MSI */
Jeff Kirsheref456f82011-11-03 11:40:28 +00002053 e_err("Failed to initialize MSI-X interrupts. Falling back to MSI interrupts.\n");
Bruce Allan4662e822008-08-26 18:37:06 -07002054 e1000e_reset_interrupt_capability(adapter);
2055 }
2056 adapter->int_mode = E1000E_INT_MODE_MSI;
2057 /* Fall through */
2058 case E1000E_INT_MODE_MSI:
2059 if (!pci_enable_msi(adapter->pdev)) {
2060 adapter->flags |= FLAG_MSI_ENABLED;
2061 } else {
2062 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Jeff Kirsheref456f82011-11-03 11:40:28 +00002063 e_err("Failed to initialize MSI interrupts. Falling back to legacy interrupts.\n");
Bruce Allan4662e822008-08-26 18:37:06 -07002064 }
2065 /* Fall through */
2066 case E1000E_INT_MODE_LEGACY:
2067 /* Don't do anything; this is the system default */
2068 break;
2069 }
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002070
2071 /* store the number of vectors being used */
2072 adapter->num_vectors = 1;
Bruce Allan4662e822008-08-26 18:37:06 -07002073}
2074
2075/**
2076 * e1000_request_msix - Initialize MSI-X interrupts
2077 *
2078 * e1000_request_msix allocates MSI-X vectors and requests interrupts from the
2079 * kernel.
2080 **/
2081static int e1000_request_msix(struct e1000_adapter *adapter)
2082{
2083 struct net_device *netdev = adapter->netdev;
2084 int err = 0, vector = 0;
2085
2086 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Bruce Allan79f5e842011-01-19 04:20:59 +00002087 snprintf(adapter->rx_ring->name,
2088 sizeof(adapter->rx_ring->name) - 1,
2089 "%s-rx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07002090 else
2091 memcpy(adapter->rx_ring->name, netdev->name, IFNAMSIZ);
2092 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08002093 e1000_intr_msix_rx, 0, adapter->rx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07002094 netdev);
2095 if (err)
Bruce Allan5015e532012-02-08 02:55:56 +00002096 return err;
Bruce Allanc5083cf2011-12-16 00:45:40 +00002097 adapter->rx_ring->itr_register = adapter->hw.hw_addr +
2098 E1000_EITR_82574(vector);
Bruce Allan4662e822008-08-26 18:37:06 -07002099 adapter->rx_ring->itr_val = adapter->itr;
2100 vector++;
2101
2102 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Bruce Allan79f5e842011-01-19 04:20:59 +00002103 snprintf(adapter->tx_ring->name,
2104 sizeof(adapter->tx_ring->name) - 1,
2105 "%s-tx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07002106 else
2107 memcpy(adapter->tx_ring->name, netdev->name, IFNAMSIZ);
2108 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08002109 e1000_intr_msix_tx, 0, adapter->tx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07002110 netdev);
2111 if (err)
Bruce Allan5015e532012-02-08 02:55:56 +00002112 return err;
Bruce Allanc5083cf2011-12-16 00:45:40 +00002113 adapter->tx_ring->itr_register = adapter->hw.hw_addr +
2114 E1000_EITR_82574(vector);
Bruce Allan4662e822008-08-26 18:37:06 -07002115 adapter->tx_ring->itr_val = adapter->itr;
2116 vector++;
2117
2118 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08002119 e1000_msix_other, 0, netdev->name, netdev);
Bruce Allan4662e822008-08-26 18:37:06 -07002120 if (err)
Bruce Allan5015e532012-02-08 02:55:56 +00002121 return err;
Bruce Allan4662e822008-08-26 18:37:06 -07002122
2123 e1000_configure_msix(adapter);
Bruce Allan5015e532012-02-08 02:55:56 +00002124
Bruce Allan4662e822008-08-26 18:37:06 -07002125 return 0;
Bruce Allan4662e822008-08-26 18:37:06 -07002126}
2127
Bruce Allanf8d59f72008-08-08 18:36:11 -07002128/**
2129 * e1000_request_irq - initialize interrupts
2130 *
2131 * Attempts to configure interrupts using the best available
2132 * capabilities of the hardware and kernel.
2133 **/
Auke Kokbc7f75f2007-09-17 12:30:59 -07002134static int e1000_request_irq(struct e1000_adapter *adapter)
2135{
2136 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002137 int err;
2138
Bruce Allan4662e822008-08-26 18:37:06 -07002139 if (adapter->msix_entries) {
2140 err = e1000_request_msix(adapter);
2141 if (!err)
2142 return err;
2143 /* fall back to MSI */
2144 e1000e_reset_interrupt_capability(adapter);
2145 adapter->int_mode = E1000E_INT_MODE_MSI;
2146 e1000e_set_interrupt_capability(adapter);
2147 }
2148 if (adapter->flags & FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002149 err = request_irq(adapter->pdev->irq, e1000_intr_msi, 0,
Bruce Allan4662e822008-08-26 18:37:06 -07002150 netdev->name, netdev);
2151 if (!err)
2152 return err;
2153
2154 /* fall back to legacy interrupt */
2155 e1000e_reset_interrupt_capability(adapter);
2156 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002157 }
2158
Joe Perchesa0607fd2009-11-18 23:29:17 -08002159 err = request_irq(adapter->pdev->irq, e1000_intr, IRQF_SHARED,
Bruce Allan4662e822008-08-26 18:37:06 -07002160 netdev->name, netdev);
2161 if (err)
Bruce Allanf8d59f72008-08-08 18:36:11 -07002162 e_err("Unable to allocate interrupt, Error: %d\n", err);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002163
2164 return err;
2165}
2166
2167static void e1000_free_irq(struct e1000_adapter *adapter)
2168{
2169 struct net_device *netdev = adapter->netdev;
2170
Bruce Allan4662e822008-08-26 18:37:06 -07002171 if (adapter->msix_entries) {
2172 int vector = 0;
2173
2174 free_irq(adapter->msix_entries[vector].vector, netdev);
2175 vector++;
2176
2177 free_irq(adapter->msix_entries[vector].vector, netdev);
2178 vector++;
2179
2180 /* Other Causes interrupt vector */
2181 free_irq(adapter->msix_entries[vector].vector, netdev);
2182 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002183 }
Bruce Allan4662e822008-08-26 18:37:06 -07002184
2185 free_irq(adapter->pdev->irq, netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002186}
2187
2188/**
2189 * e1000_irq_disable - Mask off interrupt generation on the NIC
2190 **/
2191static void e1000_irq_disable(struct e1000_adapter *adapter)
2192{
2193 struct e1000_hw *hw = &adapter->hw;
2194
Auke Kokbc7f75f2007-09-17 12:30:59 -07002195 ew32(IMC, ~0);
Bruce Allan4662e822008-08-26 18:37:06 -07002196 if (adapter->msix_entries)
2197 ew32(EIAC_82574, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002198 e1e_flush();
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002199
2200 if (adapter->msix_entries) {
2201 int i;
2202 for (i = 0; i < adapter->num_vectors; i++)
2203 synchronize_irq(adapter->msix_entries[i].vector);
2204 } else {
2205 synchronize_irq(adapter->pdev->irq);
2206 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002207}
2208
2209/**
2210 * e1000_irq_enable - Enable default interrupt generation settings
2211 **/
2212static void e1000_irq_enable(struct e1000_adapter *adapter)
2213{
2214 struct e1000_hw *hw = &adapter->hw;
2215
Bruce Allan4662e822008-08-26 18:37:06 -07002216 if (adapter->msix_entries) {
2217 ew32(EIAC_82574, adapter->eiac_mask & E1000_EIAC_MASK_82574);
2218 ew32(IMS, adapter->eiac_mask | E1000_IMS_OTHER | E1000_IMS_LSC);
Bruce Allan94fb8482013-01-23 09:00:03 +00002219 } else if (hw->mac.type == e1000_pch_lpt) {
2220 ew32(IMS, IMS_ENABLE_MASK | E1000_IMS_ECCER);
Bruce Allan4662e822008-08-26 18:37:06 -07002221 } else {
2222 ew32(IMS, IMS_ENABLE_MASK);
2223 }
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002224 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -07002225}
2226
2227/**
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002228 * e1000e_get_hw_control - get control of the h/w from f/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07002229 * @adapter: address of board private structure
2230 *
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002231 * e1000e_get_hw_control sets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002232 * For ASF and Pass Through versions of f/w this means that
2233 * the driver is loaded. For AMT version (only with 82573)
2234 * of the f/w this means that the network i/f is open.
2235 **/
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002236void e1000e_get_hw_control(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002237{
2238 struct e1000_hw *hw = &adapter->hw;
2239 u32 ctrl_ext;
2240 u32 swsm;
2241
2242 /* Let firmware know the driver has taken over */
2243 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
2244 swsm = er32(SWSM);
2245 ew32(SWSM, swsm | E1000_SWSM_DRV_LOAD);
2246 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
2247 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07002248 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002249 }
2250}
2251
2252/**
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002253 * e1000e_release_hw_control - release control of the h/w to f/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07002254 * @adapter: address of board private structure
2255 *
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002256 * e1000e_release_hw_control resets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002257 * For ASF and Pass Through versions of f/w this means that the
2258 * driver is no longer loaded. For AMT version (only with 82573) i
2259 * of the f/w this means that the network i/f is closed.
2260 *
2261 **/
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002262void e1000e_release_hw_control(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002263{
2264 struct e1000_hw *hw = &adapter->hw;
2265 u32 ctrl_ext;
2266 u32 swsm;
2267
2268 /* Let firmware taken over control of h/w */
2269 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
2270 swsm = er32(SWSM);
2271 ew32(SWSM, swsm & ~E1000_SWSM_DRV_LOAD);
2272 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
2273 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07002274 ew32(CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002275 }
2276}
2277
Auke Kokbc7f75f2007-09-17 12:30:59 -07002278/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002279 * e1000_alloc_ring_dma - allocate memory for a ring structure
Auke Kokbc7f75f2007-09-17 12:30:59 -07002280 **/
2281static int e1000_alloc_ring_dma(struct e1000_adapter *adapter,
2282 struct e1000_ring *ring)
2283{
2284 struct pci_dev *pdev = adapter->pdev;
2285
2286 ring->desc = dma_alloc_coherent(&pdev->dev, ring->size, &ring->dma,
2287 GFP_KERNEL);
2288 if (!ring->desc)
2289 return -ENOMEM;
2290
2291 return 0;
2292}
2293
2294/**
2295 * e1000e_setup_tx_resources - allocate Tx resources (Descriptors)
Bruce Allan55aa6982011-12-16 00:45:45 +00002296 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002297 *
2298 * Return 0 on success, negative on failure
2299 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002300int e1000e_setup_tx_resources(struct e1000_ring *tx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002301{
Bruce Allan55aa6982011-12-16 00:45:45 +00002302 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002303 int err = -ENOMEM, size;
2304
2305 size = sizeof(struct e1000_buffer) * tx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00002306 tx_ring->buffer_info = vzalloc(size);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002307 if (!tx_ring->buffer_info)
2308 goto err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002309
2310 /* round up to nearest 4K */
2311 tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc);
2312 tx_ring->size = ALIGN(tx_ring->size, 4096);
2313
2314 err = e1000_alloc_ring_dma(adapter, tx_ring);
2315 if (err)
2316 goto err;
2317
2318 tx_ring->next_to_use = 0;
2319 tx_ring->next_to_clean = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002320
2321 return 0;
2322err:
2323 vfree(tx_ring->buffer_info);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07002324 e_err("Unable to allocate memory for the transmit descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002325 return err;
2326}
2327
2328/**
2329 * e1000e_setup_rx_resources - allocate Rx resources (Descriptors)
Bruce Allan55aa6982011-12-16 00:45:45 +00002330 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002331 *
2332 * Returns 0 on success, negative on failure
2333 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002334int e1000e_setup_rx_resources(struct e1000_ring *rx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002335{
Bruce Allan55aa6982011-12-16 00:45:45 +00002336 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kok47f44e42007-10-25 13:57:44 -07002337 struct e1000_buffer *buffer_info;
2338 int i, size, desc_len, err = -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002339
2340 size = sizeof(struct e1000_buffer) * rx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00002341 rx_ring->buffer_info = vzalloc(size);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002342 if (!rx_ring->buffer_info)
2343 goto err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002344
Auke Kok47f44e42007-10-25 13:57:44 -07002345 for (i = 0; i < rx_ring->count; i++) {
2346 buffer_info = &rx_ring->buffer_info[i];
2347 buffer_info->ps_pages = kcalloc(PS_PAGE_BUFFERS,
2348 sizeof(struct e1000_ps_page),
2349 GFP_KERNEL);
2350 if (!buffer_info->ps_pages)
2351 goto err_pages;
2352 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002353
2354 desc_len = sizeof(union e1000_rx_desc_packet_split);
2355
2356 /* Round up to nearest 4K */
2357 rx_ring->size = rx_ring->count * desc_len;
2358 rx_ring->size = ALIGN(rx_ring->size, 4096);
2359
2360 err = e1000_alloc_ring_dma(adapter, rx_ring);
2361 if (err)
Auke Kok47f44e42007-10-25 13:57:44 -07002362 goto err_pages;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002363
2364 rx_ring->next_to_clean = 0;
2365 rx_ring->next_to_use = 0;
2366 rx_ring->rx_skb_top = NULL;
2367
2368 return 0;
Auke Kok47f44e42007-10-25 13:57:44 -07002369
2370err_pages:
2371 for (i = 0; i < rx_ring->count; i++) {
2372 buffer_info = &rx_ring->buffer_info[i];
2373 kfree(buffer_info->ps_pages);
2374 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002375err:
2376 vfree(rx_ring->buffer_info);
Bruce Allane9262442010-11-24 06:02:06 +00002377 e_err("Unable to allocate memory for the receive descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002378 return err;
2379}
2380
2381/**
2382 * e1000_clean_tx_ring - Free Tx Buffers
Bruce Allan55aa6982011-12-16 00:45:45 +00002383 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002384 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002385static void e1000_clean_tx_ring(struct e1000_ring *tx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002386{
Bruce Allan55aa6982011-12-16 00:45:45 +00002387 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002388 struct e1000_buffer *buffer_info;
2389 unsigned long size;
2390 unsigned int i;
2391
2392 for (i = 0; i < tx_ring->count; i++) {
2393 buffer_info = &tx_ring->buffer_info[i];
Bruce Allan55aa6982011-12-16 00:45:45 +00002394 e1000_put_txbuf(tx_ring, buffer_info);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002395 }
2396
Tom Herbert3f0cfa32011-11-28 16:33:16 +00002397 netdev_reset_queue(adapter->netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002398 size = sizeof(struct e1000_buffer) * tx_ring->count;
2399 memset(tx_ring->buffer_info, 0, size);
2400
2401 memset(tx_ring->desc, 0, tx_ring->size);
2402
2403 tx_ring->next_to_use = 0;
2404 tx_ring->next_to_clean = 0;
2405
Bruce Allanc5083cf2011-12-16 00:45:40 +00002406 writel(0, tx_ring->head);
Bruce Allanbdc125f2012-03-20 03:47:52 +00002407 if (tx_ring->adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
2408 e1000e_update_tdt_wa(tx_ring, 0);
2409 else
2410 writel(0, tx_ring->tail);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002411}
2412
2413/**
2414 * e1000e_free_tx_resources - Free Tx Resources per Queue
Bruce Allan55aa6982011-12-16 00:45:45 +00002415 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002416 *
2417 * Free all transmit software resources
2418 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002419void e1000e_free_tx_resources(struct e1000_ring *tx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002420{
Bruce Allan55aa6982011-12-16 00:45:45 +00002421 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002422 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002423
Bruce Allan55aa6982011-12-16 00:45:45 +00002424 e1000_clean_tx_ring(tx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002425
2426 vfree(tx_ring->buffer_info);
2427 tx_ring->buffer_info = NULL;
2428
2429 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
2430 tx_ring->dma);
2431 tx_ring->desc = NULL;
2432}
2433
2434/**
2435 * e1000e_free_rx_resources - Free Rx Resources
Bruce Allan55aa6982011-12-16 00:45:45 +00002436 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002437 *
2438 * Free all receive software resources
2439 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002440void e1000e_free_rx_resources(struct e1000_ring *rx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002441{
Bruce Allan55aa6982011-12-16 00:45:45 +00002442 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002443 struct pci_dev *pdev = adapter->pdev;
Auke Kok47f44e42007-10-25 13:57:44 -07002444 int i;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002445
Bruce Allan55aa6982011-12-16 00:45:45 +00002446 e1000_clean_rx_ring(rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002447
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002448 for (i = 0; i < rx_ring->count; i++)
Auke Kok47f44e42007-10-25 13:57:44 -07002449 kfree(rx_ring->buffer_info[i].ps_pages);
Auke Kok47f44e42007-10-25 13:57:44 -07002450
Auke Kokbc7f75f2007-09-17 12:30:59 -07002451 vfree(rx_ring->buffer_info);
2452 rx_ring->buffer_info = NULL;
2453
Auke Kokbc7f75f2007-09-17 12:30:59 -07002454 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
2455 rx_ring->dma);
2456 rx_ring->desc = NULL;
2457}
2458
2459/**
2460 * e1000_update_itr - update the dynamic ITR value based on statistics
Auke Kok489815c2008-02-21 15:11:07 -08002461 * @adapter: pointer to adapter
2462 * @itr_setting: current adapter->itr
2463 * @packets: the number of packets during this measurement interval
2464 * @bytes: the number of bytes during this measurement interval
2465 *
Auke Kokbc7f75f2007-09-17 12:30:59 -07002466 * Stores a new ITR value based on packets and byte
2467 * counts during the last interrupt. The advantage of per interrupt
2468 * computation is faster updates and more accurate ITR for the current
2469 * traffic pattern. Constants in this function were computed
2470 * based on theoretical maximum wire speed and thresholds were set based
2471 * on testing data as well as attempting to minimize response time
Bruce Allan4662e822008-08-26 18:37:06 -07002472 * while increasing bulk throughput. This functionality is controlled
2473 * by the InterruptThrottleRate module parameter.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002474 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00002475static unsigned int e1000_update_itr(u16 itr_setting, int packets, int bytes)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002476{
2477 unsigned int retval = itr_setting;
2478
2479 if (packets == 0)
Bruce Allan5015e532012-02-08 02:55:56 +00002480 return itr_setting;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002481
2482 switch (itr_setting) {
2483 case lowest_latency:
2484 /* handle TSO and jumbo frames */
Bruce Allan362e20c2013-02-20 04:05:45 +00002485 if (bytes / packets > 8000)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002486 retval = bulk_latency;
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002487 else if ((packets < 5) && (bytes > 512))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002488 retval = low_latency;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002489 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +00002490 case low_latency: /* 50 usec aka 20000 ints/s */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002491 if (bytes > 10000) {
2492 /* this if handles the TSO accounting */
Bruce Allan362e20c2013-02-20 04:05:45 +00002493 if (bytes / packets > 8000)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002494 retval = bulk_latency;
Bruce Allan362e20c2013-02-20 04:05:45 +00002495 else if ((packets < 10) || ((bytes / packets) > 1200))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002496 retval = bulk_latency;
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002497 else if ((packets > 35))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002498 retval = lowest_latency;
Bruce Allan362e20c2013-02-20 04:05:45 +00002499 } else if (bytes / packets > 2000) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002500 retval = bulk_latency;
2501 } else if (packets <= 2 && bytes < 512) {
2502 retval = lowest_latency;
2503 }
2504 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +00002505 case bulk_latency: /* 250 usec aka 4000 ints/s */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002506 if (bytes > 25000) {
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002507 if (packets > 35)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002508 retval = low_latency;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002509 } else if (bytes < 6000) {
2510 retval = low_latency;
2511 }
2512 break;
2513 }
2514
Auke Kokbc7f75f2007-09-17 12:30:59 -07002515 return retval;
2516}
2517
2518static void e1000_set_itr(struct e1000_adapter *adapter)
2519{
Auke Kokbc7f75f2007-09-17 12:30:59 -07002520 u16 current_itr;
2521 u32 new_itr = adapter->itr;
2522
2523 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2524 if (adapter->link_speed != SPEED_1000) {
2525 current_itr = 0;
2526 new_itr = 4000;
2527 goto set_itr_now;
2528 }
2529
Bruce Allan828bac82010-09-29 21:39:37 +00002530 if (adapter->flags2 & FLAG2_DISABLE_AIM) {
2531 new_itr = 0;
2532 goto set_itr_now;
2533 }
2534
Bruce Allan8bb62862013-01-16 08:46:49 +00002535 adapter->tx_itr = e1000_update_itr(adapter->tx_itr,
2536 adapter->total_tx_packets,
2537 adapter->total_tx_bytes);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002538 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2539 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2540 adapter->tx_itr = low_latency;
2541
Bruce Allan8bb62862013-01-16 08:46:49 +00002542 adapter->rx_itr = e1000_update_itr(adapter->rx_itr,
2543 adapter->total_rx_packets,
2544 adapter->total_rx_bytes);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002545 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2546 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2547 adapter->rx_itr = low_latency;
2548
2549 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2550
Auke Kokbc7f75f2007-09-17 12:30:59 -07002551 /* counts and packets in update_itr are dependent on these numbers */
Bruce Allan33550ce2013-02-20 04:06:16 +00002552 switch (current_itr) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002553 case lowest_latency:
2554 new_itr = 70000;
2555 break;
2556 case low_latency:
Bruce Allane80bd1d2013-05-01 01:19:46 +00002557 new_itr = 20000; /* aka hwitr = ~200 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002558 break;
2559 case bulk_latency:
2560 new_itr = 4000;
2561 break;
2562 default:
2563 break;
2564 }
2565
2566set_itr_now:
2567 if (new_itr != adapter->itr) {
Bruce Allane921eb12012-11-28 09:28:37 +00002568 /* this attempts to bias the interrupt rate towards Bulk
Auke Kokbc7f75f2007-09-17 12:30:59 -07002569 * by adding intermediate steps when interrupt rate is
Bruce Allanad680762008-03-28 09:15:03 -07002570 * increasing
2571 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002572 new_itr = new_itr > adapter->itr ?
Bruce Allanf0ff4392013-02-20 04:05:39 +00002573 min(adapter->itr + (new_itr >> 2), new_itr) : new_itr;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002574 adapter->itr = new_itr;
Bruce Allan4662e822008-08-26 18:37:06 -07002575 adapter->rx_ring->itr_val = new_itr;
2576 if (adapter->msix_entries)
2577 adapter->rx_ring->set_itr = 1;
2578 else
Bruce Allane3d14b02012-12-05 06:26:51 +00002579 e1000e_write_itr(adapter, new_itr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002580 }
2581}
2582
2583/**
Matthew Vick22a4cca2012-07-12 00:02:42 +00002584 * e1000e_write_itr - write the ITR value to the appropriate registers
2585 * @adapter: address of board private structure
2586 * @itr: new ITR value to program
2587 *
2588 * e1000e_write_itr determines if the adapter is in MSI-X mode
2589 * and, if so, writes the EITR registers with the ITR value.
2590 * Otherwise, it writes the ITR value into the ITR register.
2591 **/
2592void e1000e_write_itr(struct e1000_adapter *adapter, u32 itr)
2593{
2594 struct e1000_hw *hw = &adapter->hw;
2595 u32 new_itr = itr ? 1000000000 / (itr * 256) : 0;
2596
2597 if (adapter->msix_entries) {
2598 int vector;
2599
2600 for (vector = 0; vector < adapter->num_vectors; vector++)
2601 writel(new_itr, hw->hw_addr + E1000_EITR_82574(vector));
2602 } else {
2603 ew32(ITR, new_itr);
2604 }
2605}
2606
2607/**
Bruce Allan4662e822008-08-26 18:37:06 -07002608 * e1000_alloc_queues - Allocate memory for all rings
2609 * @adapter: board private structure to initialize
2610 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05002611static int e1000_alloc_queues(struct e1000_adapter *adapter)
Bruce Allan4662e822008-08-26 18:37:06 -07002612{
Bruce Allan55aa6982011-12-16 00:45:45 +00002613 int size = sizeof(struct e1000_ring);
2614
2615 adapter->tx_ring = kzalloc(size, GFP_KERNEL);
Bruce Allan4662e822008-08-26 18:37:06 -07002616 if (!adapter->tx_ring)
2617 goto err;
Bruce Allan55aa6982011-12-16 00:45:45 +00002618 adapter->tx_ring->count = adapter->tx_ring_count;
2619 adapter->tx_ring->adapter = adapter;
Bruce Allan4662e822008-08-26 18:37:06 -07002620
Bruce Allan55aa6982011-12-16 00:45:45 +00002621 adapter->rx_ring = kzalloc(size, GFP_KERNEL);
Bruce Allan4662e822008-08-26 18:37:06 -07002622 if (!adapter->rx_ring)
2623 goto err;
Bruce Allan55aa6982011-12-16 00:45:45 +00002624 adapter->rx_ring->count = adapter->rx_ring_count;
2625 adapter->rx_ring->adapter = adapter;
Bruce Allan4662e822008-08-26 18:37:06 -07002626
2627 return 0;
2628err:
2629 e_err("Unable to allocate memory for queues\n");
2630 kfree(adapter->rx_ring);
2631 kfree(adapter->tx_ring);
2632 return -ENOMEM;
2633}
2634
2635/**
Bruce Allanc58c8a72012-03-20 03:48:19 +00002636 * e1000e_poll - NAPI Rx polling callback
Bruce Allanad680762008-03-28 09:15:03 -07002637 * @napi: struct associated with this polling callback
Bruce Allanc58c8a72012-03-20 03:48:19 +00002638 * @weight: number of packets driver is allowed to process this poll
Auke Kokbc7f75f2007-09-17 12:30:59 -07002639 **/
Bruce Allanc58c8a72012-03-20 03:48:19 +00002640static int e1000e_poll(struct napi_struct *napi, int weight)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002641{
Bruce Allanc58c8a72012-03-20 03:48:19 +00002642 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter,
2643 napi);
Bruce Allan4662e822008-08-26 18:37:06 -07002644 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002645 struct net_device *poll_dev = adapter->netdev;
Andy Gospodarek679e8a02009-06-18 11:57:37 +00002646 int tx_cleaned = 1, work_done = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002647
Wang Chen4cf16532008-11-12 23:38:14 -08002648 adapter = netdev_priv(poll_dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002649
Bruce Allanc58c8a72012-03-20 03:48:19 +00002650 if (!adapter->msix_entries ||
2651 (adapter->rx_ring->ims_val & adapter->tx_ring->ims_val))
2652 tx_cleaned = e1000_clean_tx_irq(adapter->tx_ring);
Bruce Allan4662e822008-08-26 18:37:06 -07002653
Bruce Allanc58c8a72012-03-20 03:48:19 +00002654 adapter->clean_rx(adapter->rx_ring, &work_done, weight);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002655
Alexander Duyck12d04a32009-03-25 22:05:03 +00002656 if (!tx_cleaned)
Bruce Allanc58c8a72012-03-20 03:48:19 +00002657 work_done = weight;
David S. Millerd2c7ddd2008-01-15 22:43:24 -08002658
Bruce Allanc58c8a72012-03-20 03:48:19 +00002659 /* If weight not fully consumed, exit the polling mode */
2660 if (work_done < weight) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002661 if (adapter->itr_setting & 3)
2662 e1000_set_itr(adapter);
Ben Hutchings288379f2009-01-19 16:43:59 -08002663 napi_complete(napi);
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00002664 if (!test_bit(__E1000_DOWN, &adapter->state)) {
2665 if (adapter->msix_entries)
2666 ew32(IMS, adapter->rx_ring->ims_val);
2667 else
2668 e1000_irq_enable(adapter);
2669 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002670 }
2671
2672 return work_done;
2673}
2674
Patrick McHardy80d5c362013-04-19 02:04:28 +00002675static int e1000_vlan_rx_add_vid(struct net_device *netdev,
Bruce Allan603cdca2013-05-01 03:48:11 +00002676 __always_unused __be16 proto, u16 vid)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002677{
2678 struct e1000_adapter *adapter = netdev_priv(netdev);
2679 struct e1000_hw *hw = &adapter->hw;
2680 u32 vfta, index;
2681
2682 /* don't update vlan cookie if already programmed */
2683 if ((adapter->hw.mng_cookie.status &
2684 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2685 (vid == adapter->mng_vlan_id))
Jiri Pirko8e586132011-12-08 19:52:37 -05002686 return 0;
Bruce Allancaaddaf2009-12-01 15:46:43 +00002687
Auke Kokbc7f75f2007-09-17 12:30:59 -07002688 /* add VID to filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002689 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2690 index = (vid >> 5) & 0x7F;
2691 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2692 vfta |= (1 << (vid & 0x1F));
2693 hw->mac.ops.write_vfta(hw, index, vfta);
2694 }
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002695
2696 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002697
2698 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002699}
2700
Patrick McHardy80d5c362013-04-19 02:04:28 +00002701static int e1000_vlan_rx_kill_vid(struct net_device *netdev,
Bruce Allan603cdca2013-05-01 03:48:11 +00002702 __always_unused __be16 proto, u16 vid)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002703{
2704 struct e1000_adapter *adapter = netdev_priv(netdev);
2705 struct e1000_hw *hw = &adapter->hw;
2706 u32 vfta, index;
2707
Auke Kokbc7f75f2007-09-17 12:30:59 -07002708 if ((adapter->hw.mng_cookie.status &
2709 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2710 (vid == adapter->mng_vlan_id)) {
2711 /* release control to f/w */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002712 e1000e_release_hw_control(adapter);
Jiri Pirko8e586132011-12-08 19:52:37 -05002713 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002714 }
2715
2716 /* remove VID from filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002717 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2718 index = (vid >> 5) & 0x7F;
2719 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
2720 vfta &= ~(1 << (vid & 0x1F));
2721 hw->mac.ops.write_vfta(hw, index, vfta);
2722 }
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002723
2724 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002725
2726 return 0;
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002727}
2728
2729/**
2730 * e1000e_vlan_filter_disable - helper to disable hw VLAN filtering
2731 * @adapter: board private structure to initialize
2732 **/
2733static void e1000e_vlan_filter_disable(struct e1000_adapter *adapter)
2734{
2735 struct net_device *netdev = adapter->netdev;
2736 struct e1000_hw *hw = &adapter->hw;
2737 u32 rctl;
2738
2739 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2740 /* disable VLAN receive filtering */
2741 rctl = er32(RCTL);
2742 rctl &= ~(E1000_RCTL_VFE | E1000_RCTL_CFIEN);
2743 ew32(RCTL, rctl);
2744
2745 if (adapter->mng_vlan_id != (u16)E1000_MNG_VLAN_NONE) {
Patrick McHardy80d5c362013-04-19 02:04:28 +00002746 e1000_vlan_rx_kill_vid(netdev, htons(ETH_P_8021Q),
2747 adapter->mng_vlan_id);
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002748 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2749 }
2750 }
2751}
2752
2753/**
2754 * e1000e_vlan_filter_enable - helper to enable HW VLAN filtering
2755 * @adapter: board private structure to initialize
2756 **/
2757static void e1000e_vlan_filter_enable(struct e1000_adapter *adapter)
2758{
2759 struct e1000_hw *hw = &adapter->hw;
2760 u32 rctl;
2761
2762 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2763 /* enable VLAN receive filtering */
2764 rctl = er32(RCTL);
2765 rctl |= E1000_RCTL_VFE;
2766 rctl &= ~E1000_RCTL_CFIEN;
2767 ew32(RCTL, rctl);
2768 }
2769}
2770
2771/**
2772 * e1000e_vlan_strip_enable - helper to disable HW VLAN stripping
2773 * @adapter: board private structure to initialize
2774 **/
2775static void e1000e_vlan_strip_disable(struct e1000_adapter *adapter)
2776{
2777 struct e1000_hw *hw = &adapter->hw;
2778 u32 ctrl;
2779
2780 /* disable VLAN tag insert/strip */
2781 ctrl = er32(CTRL);
2782 ctrl &= ~E1000_CTRL_VME;
2783 ew32(CTRL, ctrl);
2784}
2785
2786/**
2787 * e1000e_vlan_strip_enable - helper to enable HW VLAN stripping
2788 * @adapter: board private structure to initialize
2789 **/
2790static void e1000e_vlan_strip_enable(struct e1000_adapter *adapter)
2791{
2792 struct e1000_hw *hw = &adapter->hw;
2793 u32 ctrl;
2794
2795 /* enable VLAN tag insert/strip */
2796 ctrl = er32(CTRL);
2797 ctrl |= E1000_CTRL_VME;
2798 ew32(CTRL, ctrl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002799}
2800
2801static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
2802{
2803 struct net_device *netdev = adapter->netdev;
2804 u16 vid = adapter->hw.mng_cookie.vlan_id;
2805 u16 old_vid = adapter->mng_vlan_id;
2806
Bruce Allane5fe2542013-02-20 04:06:27 +00002807 if (adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
Patrick McHardy80d5c362013-04-19 02:04:28 +00002808 e1000_vlan_rx_add_vid(netdev, htons(ETH_P_8021Q), vid);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002809 adapter->mng_vlan_id = vid;
2810 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002811
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002812 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) && (vid != old_vid))
Patrick McHardy80d5c362013-04-19 02:04:28 +00002813 e1000_vlan_rx_kill_vid(netdev, htons(ETH_P_8021Q), old_vid);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002814}
2815
2816static void e1000_restore_vlan(struct e1000_adapter *adapter)
2817{
2818 u16 vid;
2819
Patrick McHardy80d5c362013-04-19 02:04:28 +00002820 e1000_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002821
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002822 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
Patrick McHardy80d5c362013-04-19 02:04:28 +00002823 e1000_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), vid);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002824}
2825
Bruce Allancd791612010-05-10 14:59:51 +00002826static void e1000_init_manageability_pt(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002827{
2828 struct e1000_hw *hw = &adapter->hw;
Bruce Allancd791612010-05-10 14:59:51 +00002829 u32 manc, manc2h, mdef, i, j;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002830
2831 if (!(adapter->flags & FLAG_MNG_PT_ENABLED))
2832 return;
2833
2834 manc = er32(MANC);
2835
Bruce Allane921eb12012-11-28 09:28:37 +00002836 /* enable receiving management packets to the host. this will probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07002837 * generate destination unreachable messages from the host OS, but
Bruce Allanad680762008-03-28 09:15:03 -07002838 * the packets will be handled on SMBUS
2839 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002840 manc |= E1000_MANC_EN_MNG2HOST;
2841 manc2h = er32(MANC2H);
Bruce Allancd791612010-05-10 14:59:51 +00002842
2843 switch (hw->mac.type) {
2844 default:
2845 manc2h |= (E1000_MANC2H_PORT_623 | E1000_MANC2H_PORT_664);
2846 break;
2847 case e1000_82574:
2848 case e1000_82583:
Bruce Allane921eb12012-11-28 09:28:37 +00002849 /* Check if IPMI pass-through decision filter already exists;
Bruce Allancd791612010-05-10 14:59:51 +00002850 * if so, enable it.
2851 */
2852 for (i = 0, j = 0; i < 8; i++) {
2853 mdef = er32(MDEF(i));
2854
2855 /* Ignore filters with anything other than IPMI ports */
Dan Carpenter3b21b502010-06-02 13:43:15 +00002856 if (mdef & ~(E1000_MDEF_PORT_623 | E1000_MDEF_PORT_664))
Bruce Allancd791612010-05-10 14:59:51 +00002857 continue;
2858
2859 /* Enable this decision filter in MANC2H */
2860 if (mdef)
2861 manc2h |= (1 << i);
2862
2863 j |= mdef;
2864 }
2865
2866 if (j == (E1000_MDEF_PORT_623 | E1000_MDEF_PORT_664))
2867 break;
2868
2869 /* Create new decision filter in an empty filter */
2870 for (i = 0, j = 0; i < 8; i++)
2871 if (er32(MDEF(i)) == 0) {
2872 ew32(MDEF(i), (E1000_MDEF_PORT_623 |
2873 E1000_MDEF_PORT_664));
2874 manc2h |= (1 << 1);
2875 j++;
2876 break;
2877 }
2878
2879 if (!j)
2880 e_warn("Unable to create IPMI pass-through filter\n");
2881 break;
2882 }
2883
Auke Kokbc7f75f2007-09-17 12:30:59 -07002884 ew32(MANC2H, manc2h);
2885 ew32(MANC, manc);
2886}
2887
2888/**
Bruce Allanaf667a22010-12-31 06:10:01 +00002889 * e1000_configure_tx - Configure Transmit Unit after Reset
Auke Kokbc7f75f2007-09-17 12:30:59 -07002890 * @adapter: board private structure
2891 *
2892 * Configure the Tx unit of the MAC after a reset.
2893 **/
2894static void e1000_configure_tx(struct e1000_adapter *adapter)
2895{
2896 struct e1000_hw *hw = &adapter->hw;
2897 struct e1000_ring *tx_ring = adapter->tx_ring;
2898 u64 tdba;
Bruce Allanc550b122011-12-16 00:46:17 +00002899 u32 tdlen, tarc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002900
2901 /* Setup the HW Tx Head and Tail descriptor pointers */
2902 tdba = tx_ring->dma;
2903 tdlen = tx_ring->count * sizeof(struct e1000_tx_desc);
Bruce Allan1e360522012-03-20 03:48:13 +00002904 ew32(TDBAL(0), (tdba & DMA_BIT_MASK(32)));
2905 ew32(TDBAH(0), (tdba >> 32));
2906 ew32(TDLEN(0), tdlen);
2907 ew32(TDH(0), 0);
2908 ew32(TDT(0), 0);
2909 tx_ring->head = adapter->hw.hw_addr + E1000_TDH(0);
2910 tx_ring->tail = adapter->hw.hw_addr + E1000_TDT(0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002911
Auke Kokbc7f75f2007-09-17 12:30:59 -07002912 /* Set the Tx Interrupt Delay register */
2913 ew32(TIDV, adapter->tx_int_delay);
Bruce Allanad680762008-03-28 09:15:03 -07002914 /* Tx irq moderation */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002915 ew32(TADV, adapter->tx_abs_int_delay);
2916
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002917 if (adapter->flags2 & FLAG2_DMA_BURST) {
2918 u32 txdctl = er32(TXDCTL(0));
2919 txdctl &= ~(E1000_TXDCTL_PTHRESH | E1000_TXDCTL_HTHRESH |
2920 E1000_TXDCTL_WTHRESH);
Bruce Allane921eb12012-11-28 09:28:37 +00002921 /* set up some performance related parameters to encourage the
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002922 * hardware to use the bus more efficiently in bursts, depends
2923 * on the tx_int_delay to be enabled,
Hiroaki SHIMODA8edc0e62012-10-10 15:34:20 +00002924 * wthresh = 1 ==> burst write is disabled to avoid Tx stalls
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002925 * hthresh = 1 ==> prefetch when one or more available
2926 * pthresh = 0x1f ==> prefetch if internal cache 31 or less
2927 * BEWARE: this seems to work but should be considered first if
Bruce Allanaf667a22010-12-31 06:10:01 +00002928 * there are Tx hangs or other Tx related bugs
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002929 */
2930 txdctl |= E1000_TXDCTL_DMA_BURST_ENABLE;
2931 ew32(TXDCTL(0), txdctl);
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002932 }
Bruce Allan56032be2011-12-16 00:46:01 +00002933 /* erratum work around: set txdctl the same for both queues */
2934 ew32(TXDCTL(1), er32(TXDCTL(0)));
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002935
Auke Kokbc7f75f2007-09-17 12:30:59 -07002936 if (adapter->flags & FLAG_TARC_SPEED_MODE_BIT) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002937 tarc = er32(TARC(0));
Bruce Allane921eb12012-11-28 09:28:37 +00002938 /* set the speed mode bit, we'll clear it if we're not at
Bruce Allanad680762008-03-28 09:15:03 -07002939 * gigabit link later
2940 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002941#define SPEED_MODE_BIT (1 << 21)
2942 tarc |= SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002943 ew32(TARC(0), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002944 }
2945
2946 /* errata: program both queues to unweighted RR */
2947 if (adapter->flags & FLAG_TARC_SET_BIT_ZERO) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002948 tarc = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002949 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002950 ew32(TARC(0), tarc);
2951 tarc = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002952 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002953 ew32(TARC(1), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002954 }
2955
Auke Kokbc7f75f2007-09-17 12:30:59 -07002956 /* Setup Transmit Descriptor Settings for eop descriptor */
2957 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
2958
2959 /* only set IDE if we are delaying interrupts using the timers */
2960 if (adapter->tx_int_delay)
2961 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
2962
2963 /* enable Report Status bit */
2964 adapter->txd_cmd |= E1000_TXD_CMD_RS;
2965
Bruce Allan57cde762012-02-22 09:02:58 +00002966 hw->mac.ops.config_collision_dist(hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002967}
2968
2969/**
2970 * e1000_setup_rctl - configure the receive control registers
2971 * @adapter: Board private structure
2972 **/
2973#define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
2974 (((S) & (PAGE_SIZE - 1)) ? 1 : 0))
2975static void e1000_setup_rctl(struct e1000_adapter *adapter)
2976{
2977 struct e1000_hw *hw = &adapter->hw;
2978 u32 rctl, rfctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002979 u32 pages = 0;
2980
Bruce Allan2fbe4522012-04-19 03:21:47 +00002981 /* Workaround Si errata on PCHx - configure jumbo frame flow */
Bruce Allanda1e2042013-06-21 09:07:02 +00002982 if ((hw->mac.type >= e1000_pch2lan) &&
2983 (adapter->netdev->mtu > ETH_DATA_LEN) &&
2984 e1000_lv_jumbo_workaround_ich8lan(hw, true))
2985 e_dbg("failed to enable jumbo frame workaround mode\n");
Bruce Allana1ce6472010-09-22 17:16:40 +00002986
Auke Kokbc7f75f2007-09-17 12:30:59 -07002987 /* Program MC offset vector base */
2988 rctl = er32(RCTL);
2989 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
2990 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
Bruce Allanf0ff4392013-02-20 04:05:39 +00002991 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
2992 (adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002993
2994 /* Do not Store bad packets */
2995 rctl &= ~E1000_RCTL_SBP;
2996
2997 /* Enable Long Packet receive */
2998 if (adapter->netdev->mtu <= ETH_DATA_LEN)
2999 rctl &= ~E1000_RCTL_LPE;
3000 else
3001 rctl |= E1000_RCTL_LPE;
3002
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00003003 /* Some systems expect that the CRC is included in SMBUS traffic. The
3004 * hardware strips the CRC before sending to both SMBUS (BMC) and to
3005 * host memory when this is enabled
3006 */
3007 if (adapter->flags2 & FLAG2_CRC_STRIPPING)
3008 rctl |= E1000_RCTL_SECRC;
Auke Kok5918bd82008-02-12 15:20:24 -08003009
Bruce Allana4f58f52009-06-02 11:29:18 +00003010 /* Workaround Si errata on 82577 PHY - configure IPG for jumbos */
3011 if ((hw->phy.type == e1000_phy_82577) && (rctl & E1000_RCTL_LPE)) {
3012 u16 phy_data;
3013
3014 e1e_rphy(hw, PHY_REG(770, 26), &phy_data);
3015 phy_data &= 0xfff8;
3016 phy_data |= (1 << 2);
3017 e1e_wphy(hw, PHY_REG(770, 26), phy_data);
3018
3019 e1e_rphy(hw, 22, &phy_data);
3020 phy_data &= 0x0fff;
3021 phy_data |= (1 << 14);
3022 e1e_wphy(hw, 0x10, 0x2823);
3023 e1e_wphy(hw, 0x11, 0x0003);
3024 e1e_wphy(hw, 22, phy_data);
3025 }
3026
Auke Kokbc7f75f2007-09-17 12:30:59 -07003027 /* Setup buffer sizes */
3028 rctl &= ~E1000_RCTL_SZ_4096;
3029 rctl |= E1000_RCTL_BSEX;
3030 switch (adapter->rx_buffer_len) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003031 case 2048:
3032 default:
3033 rctl |= E1000_RCTL_SZ_2048;
3034 rctl &= ~E1000_RCTL_BSEX;
3035 break;
3036 case 4096:
3037 rctl |= E1000_RCTL_SZ_4096;
3038 break;
3039 case 8192:
3040 rctl |= E1000_RCTL_SZ_8192;
3041 break;
3042 case 16384:
3043 rctl |= E1000_RCTL_SZ_16384;
3044 break;
3045 }
3046
Bruce Allan5f450212011-07-22 06:21:46 +00003047 /* Enable Extended Status in all Receive Descriptors */
3048 rfctl = er32(RFCTL);
3049 rfctl |= E1000_RFCTL_EXTEN;
Matthew Vickf6bd5572012-04-25 08:01:05 +00003050 ew32(RFCTL, rfctl);
Bruce Allan5f450212011-07-22 06:21:46 +00003051
Bruce Allane921eb12012-11-28 09:28:37 +00003052 /* 82571 and greater support packet-split where the protocol
Auke Kokbc7f75f2007-09-17 12:30:59 -07003053 * header is placed in skb->data and the packet data is
3054 * placed in pages hanging off of skb_shinfo(skb)->nr_frags.
3055 * In the case of a non-split, skb->data is linearly filled,
3056 * followed by the page buffers. Therefore, skb->data is
3057 * sized to hold the largest protocol header.
3058 *
3059 * allocations using alloc_page take too long for regular MTU
3060 * so only enable packet split for jumbo frames
3061 *
3062 * Using pages when the page size is greater than 16k wastes
3063 * a lot of memory, since we allocate 3 pages at all times
3064 * per packet.
3065 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003066 pages = PAGE_USE_COUNT(adapter->netdev->mtu);
Bruce Allan79d4e902011-12-16 00:46:27 +00003067 if ((pages <= 3) && (PAGE_SIZE <= 16384) && (rctl & E1000_RCTL_LPE))
Auke Kokbc7f75f2007-09-17 12:30:59 -07003068 adapter->rx_ps_pages = pages;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003069 else
3070 adapter->rx_ps_pages = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003071
3072 if (adapter->rx_ps_pages) {
Bruce Allan90da0662011-01-06 07:02:53 +00003073 u32 psrctl = 0;
3074
Auke Kok140a7482007-10-25 13:57:58 -07003075 /* Enable Packet split descriptors */
3076 rctl |= E1000_RCTL_DTYP_PS;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003077
Bruce Allane5fe2542013-02-20 04:06:27 +00003078 psrctl |= adapter->rx_ps_bsize0 >> E1000_PSRCTL_BSIZE0_SHIFT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003079
3080 switch (adapter->rx_ps_pages) {
3081 case 3:
Bruce Allane5fe2542013-02-20 04:06:27 +00003082 psrctl |= PAGE_SIZE << E1000_PSRCTL_BSIZE3_SHIFT;
3083 /* fall-through */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003084 case 2:
Bruce Allane5fe2542013-02-20 04:06:27 +00003085 psrctl |= PAGE_SIZE << E1000_PSRCTL_BSIZE2_SHIFT;
3086 /* fall-through */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003087 case 1:
Bruce Allane5fe2542013-02-20 04:06:27 +00003088 psrctl |= PAGE_SIZE >> E1000_PSRCTL_BSIZE1_SHIFT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003089 break;
3090 }
3091
3092 ew32(PSRCTL, psrctl);
3093 }
3094
Ben Greearcf955e62012-02-11 15:39:51 +00003095 /* This is useful for sniffing bad packets. */
3096 if (adapter->netdev->features & NETIF_F_RXALL) {
3097 /* UPE and MPE will be handled by normal PROMISC logic
Bruce Allane921eb12012-11-28 09:28:37 +00003098 * in e1000e_set_rx_mode
3099 */
Bruce Allane80bd1d2013-05-01 01:19:46 +00003100 rctl |= (E1000_RCTL_SBP | /* Receive bad packets */
3101 E1000_RCTL_BAM | /* RX All Bcast Pkts */
3102 E1000_RCTL_PMCF); /* RX All MAC Ctrl Pkts */
Ben Greearcf955e62012-02-11 15:39:51 +00003103
Bruce Allane80bd1d2013-05-01 01:19:46 +00003104 rctl &= ~(E1000_RCTL_VFE | /* Disable VLAN filter */
3105 E1000_RCTL_DPF | /* Allow filtered pause */
3106 E1000_RCTL_CFIEN); /* Dis VLAN CFIEN Filter */
Ben Greearcf955e62012-02-11 15:39:51 +00003107 /* Do not mess with E1000_CTRL_VME, it affects transmit as well,
3108 * and that breaks VLANs.
3109 */
3110 }
3111
Auke Kokbc7f75f2007-09-17 12:30:59 -07003112 ew32(RCTL, rctl);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003113 /* just started the receive unit, no need to restart */
Bruce Allan12d43f72012-12-05 06:26:14 +00003114 adapter->flags &= ~FLAG_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003115}
3116
3117/**
3118 * e1000_configure_rx - Configure Receive Unit after Reset
3119 * @adapter: board private structure
3120 *
3121 * Configure the Rx unit of the MAC after a reset.
3122 **/
3123static void e1000_configure_rx(struct e1000_adapter *adapter)
3124{
3125 struct e1000_hw *hw = &adapter->hw;
3126 struct e1000_ring *rx_ring = adapter->rx_ring;
3127 u64 rdba;
3128 u32 rdlen, rctl, rxcsum, ctrl_ext;
3129
3130 if (adapter->rx_ps_pages) {
3131 /* this is a 32 byte descriptor */
3132 rdlen = rx_ring->count *
Bruce Allanaf667a22010-12-31 06:10:01 +00003133 sizeof(union e1000_rx_desc_packet_split);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003134 adapter->clean_rx = e1000_clean_rx_irq_ps;
3135 adapter->alloc_rx_buf = e1000_alloc_rx_buffers_ps;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003136 } else if (adapter->netdev->mtu > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allan5f450212011-07-22 06:21:46 +00003137 rdlen = rx_ring->count * sizeof(union e1000_rx_desc_extended);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003138 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
3139 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003140 } else {
Bruce Allan5f450212011-07-22 06:21:46 +00003141 rdlen = rx_ring->count * sizeof(union e1000_rx_desc_extended);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003142 adapter->clean_rx = e1000_clean_rx_irq;
3143 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
3144 }
3145
3146 /* disable receives while setting up the descriptors */
3147 rctl = er32(RCTL);
David S. Miller823dcd22011-08-20 10:39:12 -07003148 if (!(adapter->flags2 & FLAG2_NO_DISABLE_RX))
3149 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003150 e1e_flush();
Bruce Allan1bba4382011-03-19 00:27:20 +00003151 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003152
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003153 if (adapter->flags2 & FLAG2_DMA_BURST) {
Bruce Allane921eb12012-11-28 09:28:37 +00003154 /* set the writeback threshold (only takes effect if the RDTR
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003155 * is set). set GRAN=1 and write back up to 0x4 worth, and
Bruce Allanaf667a22010-12-31 06:10:01 +00003156 * enable prefetching of 0x20 Rx descriptors
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003157 * granularity = 01
3158 * wthresh = 04,
3159 * hthresh = 04,
3160 * pthresh = 0x20
3161 */
3162 ew32(RXDCTL(0), E1000_RXDCTL_DMA_BURST_ENABLE);
3163 ew32(RXDCTL(1), E1000_RXDCTL_DMA_BURST_ENABLE);
3164
Bruce Allane921eb12012-11-28 09:28:37 +00003165 /* override the delay timers for enabling bursting, only if
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003166 * the value was not set by the user via module options
3167 */
3168 if (adapter->rx_int_delay == DEFAULT_RDTR)
3169 adapter->rx_int_delay = BURST_RDTR;
3170 if (adapter->rx_abs_int_delay == DEFAULT_RADV)
3171 adapter->rx_abs_int_delay = BURST_RADV;
3172 }
3173
Auke Kokbc7f75f2007-09-17 12:30:59 -07003174 /* set the Receive Delay Timer Register */
3175 ew32(RDTR, adapter->rx_int_delay);
3176
3177 /* irq moderation */
3178 ew32(RADV, adapter->rx_abs_int_delay);
Bruce Allan828bac82010-09-29 21:39:37 +00003179 if ((adapter->itr_setting != 0) && (adapter->itr != 0))
Matthew Vick22a4cca2012-07-12 00:02:42 +00003180 e1000e_write_itr(adapter, adapter->itr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003181
3182 ctrl_ext = er32(CTRL_EXT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003183 /* Auto-Mask interrupts upon ICR access */
3184 ctrl_ext |= E1000_CTRL_EXT_IAME;
3185 ew32(IAM, 0xffffffff);
3186 ew32(CTRL_EXT, ctrl_ext);
3187 e1e_flush();
3188
Bruce Allane921eb12012-11-28 09:28:37 +00003189 /* Setup the HW Rx Head and Tail Descriptor Pointers and
Bruce Allanad680762008-03-28 09:15:03 -07003190 * the Base and Length of the Rx Descriptor Ring
3191 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003192 rdba = rx_ring->dma;
Bruce Allan1e360522012-03-20 03:48:13 +00003193 ew32(RDBAL(0), (rdba & DMA_BIT_MASK(32)));
3194 ew32(RDBAH(0), (rdba >> 32));
3195 ew32(RDLEN(0), rdlen);
3196 ew32(RDH(0), 0);
3197 ew32(RDT(0), 0);
3198 rx_ring->head = adapter->hw.hw_addr + E1000_RDH(0);
3199 rx_ring->tail = adapter->hw.hw_addr + E1000_RDT(0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003200
3201 /* Enable Receive Checksum Offload for TCP and UDP */
3202 rxcsum = er32(RXCSUM);
Bruce Allan2e1706f2012-06-30 20:02:42 +00003203 if (adapter->netdev->features & NETIF_F_RXCSUM)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003204 rxcsum |= E1000_RXCSUM_TUOFL;
Bruce Allan2e1706f2012-06-30 20:02:42 +00003205 else
Auke Kokbc7f75f2007-09-17 12:30:59 -07003206 rxcsum &= ~E1000_RXCSUM_TUOFL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003207 ew32(RXCSUM, rxcsum);
3208
Bruce Allan3e35d992013-01-12 07:25:22 +00003209 /* With jumbo frames, excessive C-state transition latencies result
3210 * in dropped transactions.
3211 */
3212 if (adapter->netdev->mtu > ETH_DATA_LEN) {
3213 u32 lat =
3214 ((er32(PBA) & E1000_PBA_RXA_MASK) * 1024 -
3215 adapter->max_frame_size) * 8 / 1000;
3216
3217 if (adapter->flags & FLAG_IS_ICH) {
Bruce Allan53ec5492009-11-20 23:27:40 +00003218 u32 rxdctl = er32(RXDCTL(0));
3219 ew32(RXDCTL(0), rxdctl | 0x3);
Bruce Allan53ec5492009-11-20 23:27:40 +00003220 }
Bruce Allan3e35d992013-01-12 07:25:22 +00003221
3222 pm_qos_update_request(&adapter->netdev->pm_qos_req, lat);
3223 } else {
3224 pm_qos_update_request(&adapter->netdev->pm_qos_req,
3225 PM_QOS_DEFAULT_VALUE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003226 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003227
3228 /* Enable Receives */
3229 ew32(RCTL, rctl);
3230}
3231
3232/**
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003233 * e1000e_write_mc_addr_list - write multicast addresses to MTA
Auke Kokbc7f75f2007-09-17 12:30:59 -07003234 * @netdev: network interface device structure
3235 *
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003236 * Writes multicast address list to the MTA hash table.
3237 * Returns: -ENOMEM on failure
3238 * 0 on no addresses written
3239 * X on writing X addresses to MTA
3240 */
3241static int e1000e_write_mc_addr_list(struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003242{
3243 struct e1000_adapter *adapter = netdev_priv(netdev);
3244 struct e1000_hw *hw = &adapter->hw;
Jiri Pirko22bedad32010-04-01 21:22:57 +00003245 struct netdev_hw_addr *ha;
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003246 u8 *mta_list;
3247 int i;
3248
3249 if (netdev_mc_empty(netdev)) {
3250 /* nothing to program, so clear mc list */
3251 hw->mac.ops.update_mc_addr_list(hw, NULL, 0);
3252 return 0;
3253 }
3254
3255 mta_list = kzalloc(netdev_mc_count(netdev) * ETH_ALEN, GFP_ATOMIC);
3256 if (!mta_list)
3257 return -ENOMEM;
3258
3259 /* update_mc_addr_list expects a packed array of only addresses. */
3260 i = 0;
3261 netdev_for_each_mc_addr(ha, netdev)
Bruce Allanf0ff4392013-02-20 04:05:39 +00003262 memcpy(mta_list + (i++ * ETH_ALEN), ha->addr, ETH_ALEN);
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003263
3264 hw->mac.ops.update_mc_addr_list(hw, mta_list, i);
3265 kfree(mta_list);
3266
3267 return netdev_mc_count(netdev);
3268}
3269
3270/**
3271 * e1000e_write_uc_addr_list - write unicast addresses to RAR table
3272 * @netdev: network interface device structure
3273 *
3274 * Writes unicast address list to the RAR table.
3275 * Returns: -ENOMEM on failure/insufficient address space
3276 * 0 on no addresses written
3277 * X on writing X addresses to the RAR table
3278 **/
3279static int e1000e_write_uc_addr_list(struct net_device *netdev)
3280{
3281 struct e1000_adapter *adapter = netdev_priv(netdev);
3282 struct e1000_hw *hw = &adapter->hw;
3283 unsigned int rar_entries = hw->mac.rar_entry_count;
3284 int count = 0;
3285
3286 /* save a rar entry for our hardware address */
3287 rar_entries--;
3288
3289 /* save a rar entry for the LAA workaround */
3290 if (adapter->flags & FLAG_RESET_OVERWRITES_LAA)
3291 rar_entries--;
3292
3293 /* return ENOMEM indicating insufficient memory for addresses */
3294 if (netdev_uc_count(netdev) > rar_entries)
3295 return -ENOMEM;
3296
3297 if (!netdev_uc_empty(netdev) && rar_entries) {
3298 struct netdev_hw_addr *ha;
3299
Bruce Allane921eb12012-11-28 09:28:37 +00003300 /* write the addresses in reverse order to avoid write
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003301 * combining
3302 */
3303 netdev_for_each_uc_addr(ha, netdev) {
3304 if (!rar_entries)
3305 break;
Bruce Allan69e1e012012-04-14 03:28:50 +00003306 hw->mac.ops.rar_set(hw, ha->addr, rar_entries--);
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003307 count++;
3308 }
3309 }
3310
3311 /* zero out the remaining RAR entries not used above */
3312 for (; rar_entries > 0; rar_entries--) {
3313 ew32(RAH(rar_entries), 0);
3314 ew32(RAL(rar_entries), 0);
3315 }
3316 e1e_flush();
3317
3318 return count;
3319}
3320
3321/**
3322 * e1000e_set_rx_mode - secondary unicast, Multicast and Promiscuous mode set
3323 * @netdev: network interface device structure
3324 *
3325 * The ndo_set_rx_mode entry point is called whenever the unicast or multicast
3326 * address list or the network interface flags are updated. This routine is
3327 * responsible for configuring the hardware for proper unicast, multicast,
3328 * promiscuous mode, and all-multi behavior.
3329 **/
3330static void e1000e_set_rx_mode(struct net_device *netdev)
3331{
3332 struct e1000_adapter *adapter = netdev_priv(netdev);
3333 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003334 u32 rctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003335
3336 /* Check for Promiscuous and All Multicast modes */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003337 rctl = er32(RCTL);
3338
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003339 /* clear the affected bits */
3340 rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE);
3341
Auke Kokbc7f75f2007-09-17 12:30:59 -07003342 if (netdev->flags & IFF_PROMISC) {
3343 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Jeff Kirsher86d70e52011-03-25 16:01:01 +00003344 /* Do not hardware filter VLANs in promisc mode */
3345 e1000e_vlan_filter_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003346 } else {
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003347 int count;
Bruce Allan3d3a1672012-02-23 03:13:18 +00003348
Patrick McHardy746b9f02008-07-16 20:15:45 -07003349 if (netdev->flags & IFF_ALLMULTI) {
3350 rctl |= E1000_RCTL_MPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003351 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00003352 /* Write addresses to the MTA, if the attempt fails
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003353 * then we should just turn on promiscuous mode so
3354 * that we can at least receive multicast traffic
3355 */
3356 count = e1000e_write_mc_addr_list(netdev);
3357 if (count < 0)
3358 rctl |= E1000_RCTL_MPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003359 }
Jeff Kirsher86d70e52011-03-25 16:01:01 +00003360 e1000e_vlan_filter_enable(adapter);
Bruce Allane921eb12012-11-28 09:28:37 +00003361 /* Write addresses to available RAR registers, if there is not
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003362 * sufficient space to store all the addresses then enable
3363 * unicast promiscuous mode
3364 */
3365 count = e1000e_write_uc_addr_list(netdev);
3366 if (count < 0)
3367 rctl |= E1000_RCTL_UPE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003368 }
3369
3370 ew32(RCTL, rctl);
3371
Patrick McHardyf6469682013-04-19 02:04:27 +00003372 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
Jeff Kirsher86d70e52011-03-25 16:01:01 +00003373 e1000e_vlan_strip_enable(adapter);
3374 else
3375 e1000e_vlan_strip_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003376}
3377
Bruce Allan70495a52012-01-11 01:26:50 +00003378static void e1000e_setup_rss_hash(struct e1000_adapter *adapter)
3379{
3380 struct e1000_hw *hw = &adapter->hw;
3381 u32 mrqc, rxcsum;
3382 int i;
3383 static const u32 rsskey[10] = {
3384 0xda565a6d, 0xc20e5b25, 0x3d256741, 0xb08fa343, 0xcb2bcad0,
3385 0xb4307bae, 0xa32dcb77, 0x0cf23080, 0x3bb7426a, 0xfa01acbe
3386 };
3387
3388 /* Fill out hash function seed */
3389 for (i = 0; i < 10; i++)
3390 ew32(RSSRK(i), rsskey[i]);
3391
3392 /* Direct all traffic to queue 0 */
3393 for (i = 0; i < 32; i++)
3394 ew32(RETA(i), 0);
3395
Bruce Allane921eb12012-11-28 09:28:37 +00003396 /* Disable raw packet checksumming so that RSS hash is placed in
Bruce Allan70495a52012-01-11 01:26:50 +00003397 * descriptor on writeback.
3398 */
3399 rxcsum = er32(RXCSUM);
3400 rxcsum |= E1000_RXCSUM_PCSD;
3401
3402 ew32(RXCSUM, rxcsum);
3403
3404 mrqc = (E1000_MRQC_RSS_FIELD_IPV4 |
3405 E1000_MRQC_RSS_FIELD_IPV4_TCP |
3406 E1000_MRQC_RSS_FIELD_IPV6 |
3407 E1000_MRQC_RSS_FIELD_IPV6_TCP |
3408 E1000_MRQC_RSS_FIELD_IPV6_TCP_EX);
3409
3410 ew32(MRQC, mrqc);
3411}
3412
Auke Kokbc7f75f2007-09-17 12:30:59 -07003413/**
Bruce Allanb67e1912012-12-27 08:32:33 +00003414 * e1000e_get_base_timinca - get default SYSTIM time increment attributes
3415 * @adapter: board private structure
3416 * @timinca: pointer to returned time increment attributes
3417 *
3418 * Get attributes for incrementing the System Time Register SYSTIML/H at
3419 * the default base frequency, and set the cyclecounter shift value.
3420 **/
Bruce Alland89777b2013-01-19 01:09:58 +00003421s32 e1000e_get_base_timinca(struct e1000_adapter *adapter, u32 *timinca)
Bruce Allanb67e1912012-12-27 08:32:33 +00003422{
3423 struct e1000_hw *hw = &adapter->hw;
3424 u32 incvalue, incperiod, shift;
3425
3426 /* Make sure clock is enabled on I217 before checking the frequency */
3427 if ((hw->mac.type == e1000_pch_lpt) &&
3428 !(er32(TSYNCTXCTL) & E1000_TSYNCTXCTL_ENABLED) &&
3429 !(er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_ENABLED)) {
3430 u32 fextnvm7 = er32(FEXTNVM7);
3431
3432 if (!(fextnvm7 & (1 << 0))) {
3433 ew32(FEXTNVM7, fextnvm7 | (1 << 0));
3434 e1e_flush();
3435 }
3436 }
3437
3438 switch (hw->mac.type) {
3439 case e1000_pch2lan:
3440 case e1000_pch_lpt:
3441 /* On I217, the clock frequency is 25MHz or 96MHz as
3442 * indicated by the System Clock Frequency Indication
3443 */
3444 if ((hw->mac.type != e1000_pch_lpt) ||
3445 (er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_SYSCFI)) {
3446 /* Stable 96MHz frequency */
3447 incperiod = INCPERIOD_96MHz;
3448 incvalue = INCVALUE_96MHz;
3449 shift = INCVALUE_SHIFT_96MHz;
3450 adapter->cc.shift = shift + INCPERIOD_SHIFT_96MHz;
3451 break;
3452 }
3453 /* fall-through */
3454 case e1000_82574:
3455 case e1000_82583:
3456 /* Stable 25MHz frequency */
3457 incperiod = INCPERIOD_25MHz;
3458 incvalue = INCVALUE_25MHz;
3459 shift = INCVALUE_SHIFT_25MHz;
3460 adapter->cc.shift = shift;
3461 break;
3462 default:
3463 return -EINVAL;
3464 }
3465
3466 *timinca = ((incperiod << E1000_TIMINCA_INCPERIOD_SHIFT) |
3467 ((incvalue << shift) & E1000_TIMINCA_INCVALUE_MASK));
3468
3469 return 0;
3470}
3471
3472/**
3473 * e1000e_config_hwtstamp - configure the hwtstamp registers and enable/disable
3474 * @adapter: board private structure
3475 *
3476 * Outgoing time stamping can be enabled and disabled. Play nice and
3477 * disable it when requested, although it shouldn't cause any overhead
3478 * when no packet needs it. At most one packet in the queue may be
3479 * marked for time stamping, otherwise it would be impossible to tell
3480 * for sure to which packet the hardware time stamp belongs.
3481 *
3482 * Incoming time stamping has to be configured via the hardware filters.
3483 * Not all combinations are supported, in particular event type has to be
3484 * specified. Matching the kind of event packet is not supported, with the
3485 * exception of "all V2 events regardless of level 2 or 4".
3486 **/
3487static int e1000e_config_hwtstamp(struct e1000_adapter *adapter)
3488{
3489 struct e1000_hw *hw = &adapter->hw;
3490 struct hwtstamp_config *config = &adapter->hwtstamp_config;
3491 u32 tsync_tx_ctl = E1000_TSYNCTXCTL_ENABLED;
3492 u32 tsync_rx_ctl = E1000_TSYNCRXCTL_ENABLED;
Bruce Alland89777b2013-01-19 01:09:58 +00003493 u32 rxmtrl = 0;
3494 u16 rxudp = 0;
3495 bool is_l4 = false;
3496 bool is_l2 = false;
Bruce Allanb67e1912012-12-27 08:32:33 +00003497 u32 regval;
3498 s32 ret_val;
3499
3500 if (!(adapter->flags & FLAG_HAS_HW_TIMESTAMP))
3501 return -EINVAL;
3502
3503 /* flags reserved for future extensions - must be zero */
3504 if (config->flags)
3505 return -EINVAL;
3506
3507 switch (config->tx_type) {
3508 case HWTSTAMP_TX_OFF:
3509 tsync_tx_ctl = 0;
3510 break;
3511 case HWTSTAMP_TX_ON:
3512 break;
3513 default:
3514 return -ERANGE;
3515 }
3516
3517 switch (config->rx_filter) {
3518 case HWTSTAMP_FILTER_NONE:
3519 tsync_rx_ctl = 0;
3520 break;
Bruce Alland89777b2013-01-19 01:09:58 +00003521 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
3522 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1;
3523 rxmtrl = E1000_RXMTRL_PTP_V1_SYNC_MESSAGE;
3524 is_l4 = true;
3525 break;
3526 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
3527 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1;
3528 rxmtrl = E1000_RXMTRL_PTP_V1_DELAY_REQ_MESSAGE;
3529 is_l4 = true;
3530 break;
3531 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
3532 /* Also time stamps V2 L2 Path Delay Request/Response */
3533 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_V2;
3534 rxmtrl = E1000_RXMTRL_PTP_V2_SYNC_MESSAGE;
3535 is_l2 = true;
3536 break;
3537 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
3538 /* Also time stamps V2 L2 Path Delay Request/Response. */
3539 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_V2;
3540 rxmtrl = E1000_RXMTRL_PTP_V2_DELAY_REQ_MESSAGE;
3541 is_l2 = true;
3542 break;
3543 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
3544 /* Hardware cannot filter just V2 L4 Sync messages;
3545 * fall-through to V2 (both L2 and L4) Sync.
3546 */
3547 case HWTSTAMP_FILTER_PTP_V2_SYNC:
3548 /* Also time stamps V2 Path Delay Request/Response. */
3549 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_L4_V2;
3550 rxmtrl = E1000_RXMTRL_PTP_V2_SYNC_MESSAGE;
3551 is_l2 = true;
3552 is_l4 = true;
3553 break;
3554 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
3555 /* Hardware cannot filter just V2 L4 Delay Request messages;
3556 * fall-through to V2 (both L2 and L4) Delay Request.
3557 */
3558 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
3559 /* Also time stamps V2 Path Delay Request/Response. */
3560 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_L4_V2;
3561 rxmtrl = E1000_RXMTRL_PTP_V2_DELAY_REQ_MESSAGE;
3562 is_l2 = true;
3563 is_l4 = true;
3564 break;
3565 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
3566 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
3567 /* Hardware cannot filter just V2 L4 or L2 Event messages;
3568 * fall-through to all V2 (both L2 and L4) Events.
3569 */
3570 case HWTSTAMP_FILTER_PTP_V2_EVENT:
3571 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_EVENT_V2;
3572 config->rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
3573 is_l2 = true;
3574 is_l4 = true;
3575 break;
3576 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
3577 /* For V1, the hardware can only filter Sync messages or
3578 * Delay Request messages but not both so fall-through to
3579 * time stamp all packets.
3580 */
Bruce Allanb67e1912012-12-27 08:32:33 +00003581 case HWTSTAMP_FILTER_ALL:
Bruce Alland89777b2013-01-19 01:09:58 +00003582 is_l2 = true;
3583 is_l4 = true;
Bruce Allanb67e1912012-12-27 08:32:33 +00003584 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_ALL;
3585 config->rx_filter = HWTSTAMP_FILTER_ALL;
3586 break;
3587 default:
3588 return -ERANGE;
3589 }
3590
3591 /* enable/disable Tx h/w time stamping */
3592 regval = er32(TSYNCTXCTL);
3593 regval &= ~E1000_TSYNCTXCTL_ENABLED;
3594 regval |= tsync_tx_ctl;
3595 ew32(TSYNCTXCTL, regval);
3596 if ((er32(TSYNCTXCTL) & E1000_TSYNCTXCTL_ENABLED) !=
3597 (regval & E1000_TSYNCTXCTL_ENABLED)) {
3598 e_err("Timesync Tx Control register not set as expected\n");
3599 return -EAGAIN;
3600 }
3601
3602 /* enable/disable Rx h/w time stamping */
3603 regval = er32(TSYNCRXCTL);
3604 regval &= ~(E1000_TSYNCRXCTL_ENABLED | E1000_TSYNCRXCTL_TYPE_MASK);
3605 regval |= tsync_rx_ctl;
3606 ew32(TSYNCRXCTL, regval);
3607 if ((er32(TSYNCRXCTL) & (E1000_TSYNCRXCTL_ENABLED |
3608 E1000_TSYNCRXCTL_TYPE_MASK)) !=
3609 (regval & (E1000_TSYNCRXCTL_ENABLED |
3610 E1000_TSYNCRXCTL_TYPE_MASK))) {
3611 e_err("Timesync Rx Control register not set as expected\n");
3612 return -EAGAIN;
3613 }
3614
Bruce Alland89777b2013-01-19 01:09:58 +00003615 /* L2: define ethertype filter for time stamped packets */
3616 if (is_l2)
3617 rxmtrl |= ETH_P_1588;
3618
3619 /* define which PTP packets get time stamped */
3620 ew32(RXMTRL, rxmtrl);
3621
3622 /* Filter by destination port */
3623 if (is_l4) {
3624 rxudp = PTP_EV_PORT;
3625 cpu_to_be16s(&rxudp);
3626 }
3627 ew32(RXUDP, rxudp);
3628
3629 e1e_flush();
3630
Bruce Allanb67e1912012-12-27 08:32:33 +00003631 /* Clear TSYNCRXCTL_VALID & TSYNCTXCTL_VALID bit */
Bruce Allan70806a72013-01-05 05:08:37 +00003632 er32(RXSTMPH);
3633 er32(TXSTMPH);
Bruce Allanb67e1912012-12-27 08:32:33 +00003634
3635 /* Get and set the System Time Register SYSTIM base frequency */
3636 ret_val = e1000e_get_base_timinca(adapter, &regval);
3637 if (ret_val)
3638 return ret_val;
3639 ew32(TIMINCA, regval);
3640
3641 /* reset the ns time counter */
3642 timecounter_init(&adapter->tc, &adapter->cc,
3643 ktime_to_ns(ktime_get_real()));
3644
3645 return 0;
3646}
3647
3648/**
Bruce Allanad680762008-03-28 09:15:03 -07003649 * e1000_configure - configure the hardware for Rx and Tx
Auke Kokbc7f75f2007-09-17 12:30:59 -07003650 * @adapter: private board structure
3651 **/
3652static void e1000_configure(struct e1000_adapter *adapter)
3653{
Bruce Allan55aa6982011-12-16 00:45:45 +00003654 struct e1000_ring *rx_ring = adapter->rx_ring;
3655
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003656 e1000e_set_rx_mode(adapter->netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003657
3658 e1000_restore_vlan(adapter);
Bruce Allancd791612010-05-10 14:59:51 +00003659 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003660
3661 e1000_configure_tx(adapter);
Bruce Allan70495a52012-01-11 01:26:50 +00003662
3663 if (adapter->netdev->features & NETIF_F_RXHASH)
3664 e1000e_setup_rss_hash(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003665 e1000_setup_rctl(adapter);
3666 e1000_configure_rx(adapter);
Bruce Allan55aa6982011-12-16 00:45:45 +00003667 adapter->alloc_rx_buf(rx_ring, e1000_desc_unused(rx_ring), GFP_KERNEL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003668}
3669
3670/**
3671 * e1000e_power_up_phy - restore link in case the phy was powered down
3672 * @adapter: address of board private structure
3673 *
3674 * The phy may be powered down to save power and turn off link when the
3675 * driver is unloaded and wake on lan is not enabled (among others)
3676 * *** this routine MUST be followed by a call to e1000e_reset ***
3677 **/
3678void e1000e_power_up_phy(struct e1000_adapter *adapter)
3679{
Bruce Allan17f208d2009-12-01 15:47:22 +00003680 if (adapter->hw.phy.ops.power_up)
3681 adapter->hw.phy.ops.power_up(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003682
3683 adapter->hw.mac.ops.setup_link(&adapter->hw);
3684}
3685
3686/**
3687 * e1000_power_down_phy - Power down the PHY
3688 *
Bruce Allan17f208d2009-12-01 15:47:22 +00003689 * Power down the PHY so no link is implied when interface is down.
3690 * The PHY cannot be powered down if management or WoL is active.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003691 */
3692static void e1000_power_down_phy(struct e1000_adapter *adapter)
3693{
Auke Kokbc7f75f2007-09-17 12:30:59 -07003694 /* WoL is enabled */
Auke Kok23b66e22008-02-11 09:25:51 -08003695 if (adapter->wol)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003696 return;
3697
Bruce Allan17f208d2009-12-01 15:47:22 +00003698 if (adapter->hw.phy.ops.power_down)
3699 adapter->hw.phy.ops.power_down(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003700}
3701
3702/**
3703 * e1000e_reset - bring the hardware into a known good state
3704 *
3705 * This function boots the hardware and enables some settings that
3706 * require a configuration cycle of the hardware - those cannot be
3707 * set/changed during runtime. After reset the device needs to be
Bruce Allanad680762008-03-28 09:15:03 -07003708 * properly configured for Rx, Tx etc.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003709 */
3710void e1000e_reset(struct e1000_adapter *adapter)
3711{
3712 struct e1000_mac_info *mac = &adapter->hw.mac;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003713 struct e1000_fc_info *fc = &adapter->hw.fc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003714 struct e1000_hw *hw = &adapter->hw;
3715 u32 tx_space, min_tx_space, min_rx_space;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003716 u32 pba = adapter->pba;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003717 u16 hwm;
3718
Bruce Allanad680762008-03-28 09:15:03 -07003719 /* reset Packet Buffer Allocation to default */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003720 ew32(PBA, pba);
Auke Kokdf762462007-10-25 13:57:53 -07003721
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003722 if (adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allane921eb12012-11-28 09:28:37 +00003723 /* To maintain wire speed transmits, the Tx FIFO should be
Auke Kokbc7f75f2007-09-17 12:30:59 -07003724 * large enough to accommodate two full transmit packets,
3725 * rounded up to the next 1KB and expressed in KB. Likewise,
3726 * the Rx FIFO should be large enough to accommodate at least
3727 * one full receive packet and is similarly rounded up and
Bruce Allanad680762008-03-28 09:15:03 -07003728 * expressed in KB.
3729 */
Auke Kokdf762462007-10-25 13:57:53 -07003730 pba = er32(PBA);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003731 /* upper 16 bits has Tx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003732 tx_space = pba >> 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003733 /* lower 16 bits has Rx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003734 pba &= 0xffff;
Bruce Allane921eb12012-11-28 09:28:37 +00003735 /* the Tx fifo also stores 16 bytes of information about the Tx
Bruce Allanad680762008-03-28 09:15:03 -07003736 * but don't include ethernet FCS because hardware appends it
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003737 */
3738 min_tx_space = (adapter->max_frame_size +
Bruce Allane5fe2542013-02-20 04:06:27 +00003739 sizeof(struct e1000_tx_desc) - ETH_FCS_LEN) * 2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003740 min_tx_space = ALIGN(min_tx_space, 1024);
3741 min_tx_space >>= 10;
3742 /* software strips receive CRC, so leave room for it */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003743 min_rx_space = adapter->max_frame_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003744 min_rx_space = ALIGN(min_rx_space, 1024);
3745 min_rx_space >>= 10;
3746
Bruce Allane921eb12012-11-28 09:28:37 +00003747 /* If current Tx allocation is less than the min Tx FIFO size,
Auke Kokbc7f75f2007-09-17 12:30:59 -07003748 * and the min Tx FIFO size is less than the current Rx FIFO
Bruce Allanad680762008-03-28 09:15:03 -07003749 * allocation, take space away from current Rx allocation
3750 */
Auke Kokdf762462007-10-25 13:57:53 -07003751 if ((tx_space < min_tx_space) &&
3752 ((min_tx_space - tx_space) < pba)) {
3753 pba -= min_tx_space - tx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003754
Bruce Allane921eb12012-11-28 09:28:37 +00003755 /* if short on Rx space, Rx wins and must trump Tx
Bruce Allan419e5512012-08-17 06:18:02 +00003756 * adjustment
Bruce Allanad680762008-03-28 09:15:03 -07003757 */
Bruce Allan79d4e902011-12-16 00:46:27 +00003758 if (pba < min_rx_space)
Auke Kokdf762462007-10-25 13:57:53 -07003759 pba = min_rx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003760 }
Auke Kokdf762462007-10-25 13:57:53 -07003761
3762 ew32(PBA, pba);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003763 }
3764
Bruce Allane921eb12012-11-28 09:28:37 +00003765 /* flow control settings
Bruce Allanad680762008-03-28 09:15:03 -07003766 *
Bruce Allan38eb3942009-11-19 12:34:20 +00003767 * The high water mark must be low enough to fit one full frame
Auke Kokbc7f75f2007-09-17 12:30:59 -07003768 * (or the size used for early receive) above it in the Rx FIFO.
3769 * Set it to the lower of:
3770 * - 90% of the Rx FIFO size, and
Bruce Allan38eb3942009-11-19 12:34:20 +00003771 * - the full Rx FIFO size minus one full frame
Bruce Allanad680762008-03-28 09:15:03 -07003772 */
Bruce Alland3738bb2010-06-16 13:27:28 +00003773 if (adapter->flags & FLAG_DISABLE_FC_PAUSE_TIME)
3774 fc->pause_time = 0xFFFF;
3775 else
3776 fc->pause_time = E1000_FC_PAUSE_TIME;
Bruce Allanb20caa82012-02-22 09:03:03 +00003777 fc->send_xon = true;
Bruce Alland3738bb2010-06-16 13:27:28 +00003778 fc->current_mode = fc->requested_mode;
3779
3780 switch (hw->mac.type) {
Bruce Allan79d4e902011-12-16 00:46:27 +00003781 case e1000_ich9lan:
3782 case e1000_ich10lan:
3783 if (adapter->netdev->mtu > ETH_DATA_LEN) {
3784 pba = 14;
3785 ew32(PBA, pba);
3786 fc->high_water = 0x2800;
3787 fc->low_water = fc->high_water - 8;
3788 break;
3789 }
3790 /* fall-through */
Bruce Alland3738bb2010-06-16 13:27:28 +00003791 default:
Bruce Allan79d4e902011-12-16 00:46:27 +00003792 hwm = min(((pba << 10) * 9 / 10),
3793 ((pba << 10) - adapter->max_frame_size));
Bruce Alland3738bb2010-06-16 13:27:28 +00003794
Bruce Allane80bd1d2013-05-01 01:19:46 +00003795 fc->high_water = hwm & E1000_FCRTH_RTH; /* 8-byte granularity */
Bruce Alland3738bb2010-06-16 13:27:28 +00003796 fc->low_water = fc->high_water - 8;
3797 break;
3798 case e1000_pchlan:
Bruce Allane921eb12012-11-28 09:28:37 +00003799 /* Workaround PCH LOM adapter hangs with certain network
Bruce Allan38eb3942009-11-19 12:34:20 +00003800 * loads. If hangs persist, try disabling Tx flow control.
3801 */
3802 if (adapter->netdev->mtu > ETH_DATA_LEN) {
3803 fc->high_water = 0x3500;
Bruce Allane80bd1d2013-05-01 01:19:46 +00003804 fc->low_water = 0x1500;
Bruce Allan38eb3942009-11-19 12:34:20 +00003805 } else {
3806 fc->high_water = 0x5000;
Bruce Allane80bd1d2013-05-01 01:19:46 +00003807 fc->low_water = 0x3000;
Bruce Allan38eb3942009-11-19 12:34:20 +00003808 }
Bruce Allana3055952010-05-10 15:02:12 +00003809 fc->refresh_time = 0x1000;
Bruce Alland3738bb2010-06-16 13:27:28 +00003810 break;
3811 case e1000_pch2lan:
Bruce Allan2fbe4522012-04-19 03:21:47 +00003812 case e1000_pch_lpt:
Bruce Alland3738bb2010-06-16 13:27:28 +00003813 fc->refresh_time = 0x0400;
Bruce Allan347b5202012-12-08 00:35:35 +00003814
3815 if (adapter->netdev->mtu <= ETH_DATA_LEN) {
3816 fc->high_water = 0x05C20;
3817 fc->low_water = 0x05048;
3818 fc->pause_time = 0x0650;
3819 break;
Bruce Allan828bac82010-09-29 21:39:37 +00003820 }
Bruce Allan347b5202012-12-08 00:35:35 +00003821
Bruce Allance345e02013-06-21 09:07:07 +00003822 pba = 14;
3823 ew32(PBA, pba);
Bruce Allan347b5202012-12-08 00:35:35 +00003824 fc->high_water = ((pba << 10) * 9 / 10) & E1000_FCRTH_RTH;
3825 fc->low_water = ((pba << 10) * 8 / 10) & E1000_FCRTL_RTL;
Bruce Alland3738bb2010-06-16 13:27:28 +00003826 break;
Bruce Allan38eb3942009-11-19 12:34:20 +00003827 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003828
Bruce Allane921eb12012-11-28 09:28:37 +00003829 /* Alignment of Tx data is on an arbitrary byte boundary with the
Bruce Alland821a4c2012-08-24 20:38:11 +00003830 * maximum size per Tx descriptor limited only to the transmit
3831 * allocation of the packet buffer minus 96 bytes with an upper
3832 * limit of 24KB due to receive synchronization limitations.
3833 */
3834 adapter->tx_fifo_limit = min_t(u32, ((er32(PBA) >> 16) << 10) - 96,
3835 24 << 10);
3836
Bruce Allane921eb12012-11-28 09:28:37 +00003837 /* Disable Adaptive Interrupt Moderation if 2 full packets cannot
Bruce Allan79d4e902011-12-16 00:46:27 +00003838 * fit in receive buffer.
Bruce Allan828bac82010-09-29 21:39:37 +00003839 */
3840 if (adapter->itr_setting & 0x3) {
Bruce Allan79d4e902011-12-16 00:46:27 +00003841 if ((adapter->max_frame_size * 2) > (pba << 10)) {
Bruce Allan828bac82010-09-29 21:39:37 +00003842 if (!(adapter->flags2 & FLAG2_DISABLE_AIM)) {
3843 dev_info(&adapter->pdev->dev,
Bruce Allan17e813e2013-02-20 04:06:01 +00003844 "Interrupt Throttle Rate off\n");
Bruce Allan828bac82010-09-29 21:39:37 +00003845 adapter->flags2 |= FLAG2_DISABLE_AIM;
Matthew Vick22a4cca2012-07-12 00:02:42 +00003846 e1000e_write_itr(adapter, 0);
Bruce Allan828bac82010-09-29 21:39:37 +00003847 }
3848 } else if (adapter->flags2 & FLAG2_DISABLE_AIM) {
3849 dev_info(&adapter->pdev->dev,
Bruce Allan17e813e2013-02-20 04:06:01 +00003850 "Interrupt Throttle Rate on\n");
Bruce Allan828bac82010-09-29 21:39:37 +00003851 adapter->flags2 &= ~FLAG2_DISABLE_AIM;
3852 adapter->itr = 20000;
Matthew Vick22a4cca2012-07-12 00:02:42 +00003853 e1000e_write_itr(adapter, adapter->itr);
Bruce Allan828bac82010-09-29 21:39:37 +00003854 }
3855 }
3856
Auke Kokbc7f75f2007-09-17 12:30:59 -07003857 /* Allow time for pending master requests to run */
3858 mac->ops.reset_hw(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003859
Bruce Allane921eb12012-11-28 09:28:37 +00003860 /* For parts with AMT enabled, let the firmware know
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003861 * that the network interface is in control
3862 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07003863 if (adapter->flags & FLAG_HAS_AMT)
Bruce Allan31dbe5b2011-01-06 14:29:52 +00003864 e1000e_get_hw_control(adapter);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003865
Auke Kokbc7f75f2007-09-17 12:30:59 -07003866 ew32(WUC, 0);
3867
3868 if (mac->ops.init_hw(hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07003869 e_err("Hardware Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07003870
3871 e1000_update_mng_vlan(adapter);
3872
3873 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
3874 ew32(VET, ETH_P_8021Q);
3875
3876 e1000e_reset_adaptive(hw);
Bruce Allan31dbe5b2011-01-06 14:29:52 +00003877
Bruce Allanb67e1912012-12-27 08:32:33 +00003878 /* initialize systim and reset the ns time counter */
3879 e1000e_config_hwtstamp(adapter);
3880
Bruce Alland495bcb2013-03-20 07:23:11 +00003881 /* Set EEE advertisement as appropriate */
3882 if (adapter->flags2 & FLAG2_HAS_EEE) {
3883 s32 ret_val;
3884 u16 adv_addr;
3885
3886 switch (hw->phy.type) {
3887 case e1000_phy_82579:
3888 adv_addr = I82579_EEE_ADVERTISEMENT;
3889 break;
3890 case e1000_phy_i217:
3891 adv_addr = I217_EEE_ADVERTISEMENT;
3892 break;
3893 default:
3894 dev_err(&adapter->pdev->dev,
3895 "Invalid PHY type setting EEE advertisement\n");
3896 return;
3897 }
3898
3899 ret_val = hw->phy.ops.acquire(hw);
3900 if (ret_val) {
3901 dev_err(&adapter->pdev->dev,
3902 "EEE advertisement - unable to acquire PHY\n");
3903 return;
3904 }
3905
3906 e1000_write_emi_reg_locked(hw, adv_addr,
3907 hw->dev_spec.ich8lan.eee_disable ?
3908 0 : adapter->eee_advert);
3909
3910 hw->phy.ops.release(hw);
3911 }
3912
Bruce Allan31dbe5b2011-01-06 14:29:52 +00003913 if (!netif_running(adapter->netdev) &&
3914 !test_bit(__E1000_TESTING, &adapter->state)) {
3915 e1000_power_down_phy(adapter);
3916 return;
3917 }
3918
Auke Kokbc7f75f2007-09-17 12:30:59 -07003919 e1000_get_phy_info(hw);
3920
Bruce Allan918d7192009-06-02 11:28:20 +00003921 if ((adapter->flags & FLAG_HAS_SMART_POWER_DOWN) &&
3922 !(adapter->flags & FLAG_SMART_POWER_DOWN)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003923 u16 phy_data = 0;
Bruce Allane921eb12012-11-28 09:28:37 +00003924 /* speed up time to link by disabling smart power down, ignore
Auke Kokbc7f75f2007-09-17 12:30:59 -07003925 * the return value of this function because there is nothing
Bruce Allanad680762008-03-28 09:15:03 -07003926 * different we would do if it failed
3927 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003928 e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &phy_data);
3929 phy_data &= ~IGP02E1000_PM_SPD;
3930 e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, phy_data);
3931 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003932}
3933
3934int e1000e_up(struct e1000_adapter *adapter)
3935{
3936 struct e1000_hw *hw = &adapter->hw;
3937
3938 /* hardware has been reset, we need to reload some things */
3939 e1000_configure(adapter);
3940
3941 clear_bit(__E1000_DOWN, &adapter->state);
3942
Bruce Allan4662e822008-08-26 18:37:06 -07003943 if (adapter->msix_entries)
3944 e1000_configure_msix(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003945 e1000_irq_enable(adapter);
3946
Bruce Allan400484f2011-05-13 07:20:03 +00003947 netif_start_queue(adapter->netdev);
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00003948
Auke Kokbc7f75f2007-09-17 12:30:59 -07003949 /* fire a link change interrupt to start the watchdog */
Bruce Allan52a9b232010-05-10 15:00:10 +00003950 if (adapter->msix_entries)
3951 ew32(ICS, E1000_ICS_LSC | E1000_ICR_OTHER);
3952 else
3953 ew32(ICS, E1000_ICS_LSC);
3954
Auke Kokbc7f75f2007-09-17 12:30:59 -07003955 return 0;
3956}
3957
Jesse Brandeburg713b3c92011-02-02 10:19:50 +00003958static void e1000e_flush_descriptors(struct e1000_adapter *adapter)
3959{
3960 struct e1000_hw *hw = &adapter->hw;
3961
3962 if (!(adapter->flags2 & FLAG2_DMA_BURST))
3963 return;
3964
3965 /* flush pending descriptor writebacks to memory */
3966 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
3967 ew32(RDTR, adapter->rx_int_delay | E1000_RDTR_FPD);
3968
3969 /* execute the writes immediately */
3970 e1e_flush();
Matthew Vickbf030852012-03-16 09:03:00 +00003971
Bruce Allane921eb12012-11-28 09:28:37 +00003972 /* due to rare timing issues, write to TIDV/RDTR again to ensure the
Matthew Vickbf030852012-03-16 09:03:00 +00003973 * write is successful
3974 */
3975 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
3976 ew32(RDTR, adapter->rx_int_delay | E1000_RDTR_FPD);
3977
3978 /* execute the writes immediately */
3979 e1e_flush();
Jesse Brandeburg713b3c92011-02-02 10:19:50 +00003980}
3981
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00003982static void e1000e_update_stats(struct e1000_adapter *adapter);
3983
Auke Kokbc7f75f2007-09-17 12:30:59 -07003984void e1000e_down(struct e1000_adapter *adapter)
3985{
3986 struct net_device *netdev = adapter->netdev;
3987 struct e1000_hw *hw = &adapter->hw;
3988 u32 tctl, rctl;
3989
Bruce Allane921eb12012-11-28 09:28:37 +00003990 /* signal that we're down so the interrupt handler does not
Bruce Allanad680762008-03-28 09:15:03 -07003991 * reschedule our watchdog timer
3992 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003993 set_bit(__E1000_DOWN, &adapter->state);
3994
3995 /* disable receives in the hardware */
3996 rctl = er32(RCTL);
David S. Miller823dcd22011-08-20 10:39:12 -07003997 if (!(adapter->flags2 & FLAG2_NO_DISABLE_RX))
3998 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003999 /* flush and sleep below */
4000
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00004001 netif_stop_queue(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004002
4003 /* disable transmits in the hardware */
4004 tctl = er32(TCTL);
4005 tctl &= ~E1000_TCTL_EN;
4006 ew32(TCTL, tctl);
David S. Miller823dcd22011-08-20 10:39:12 -07004007
Auke Kokbc7f75f2007-09-17 12:30:59 -07004008 /* flush both disables and wait for them to finish */
4009 e1e_flush();
Bruce Allan1bba4382011-03-19 00:27:20 +00004010 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004011
Auke Kokbc7f75f2007-09-17 12:30:59 -07004012 e1000_irq_disable(adapter);
4013
Bruce Allana3b87a42013-04-20 05:37:29 +00004014 napi_synchronize(&adapter->napi);
4015
Auke Kokbc7f75f2007-09-17 12:30:59 -07004016 del_timer_sync(&adapter->watchdog_timer);
4017 del_timer_sync(&adapter->phy_info_timer);
4018
Auke Kokbc7f75f2007-09-17 12:30:59 -07004019 netif_carrier_off(netdev);
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004020
4021 spin_lock(&adapter->stats64_lock);
4022 e1000e_update_stats(adapter);
4023 spin_unlock(&adapter->stats64_lock);
4024
Bruce Allan400484f2011-05-13 07:20:03 +00004025 e1000e_flush_descriptors(adapter);
Bruce Allan55aa6982011-12-16 00:45:45 +00004026 e1000_clean_tx_ring(adapter->tx_ring);
4027 e1000_clean_rx_ring(adapter->rx_ring);
Bruce Allan400484f2011-05-13 07:20:03 +00004028
Auke Kokbc7f75f2007-09-17 12:30:59 -07004029 adapter->link_speed = 0;
4030 adapter->link_duplex = 0;
4031
Bruce Allanda1e2042013-06-21 09:07:02 +00004032 /* Disable Si errata workaround on PCHx for jumbo frame flow */
4033 if ((hw->mac.type >= e1000_pch2lan) &&
4034 (adapter->netdev->mtu > ETH_DATA_LEN) &&
4035 e1000_lv_jumbo_workaround_ich8lan(hw, false))
4036 e_dbg("failed to disable jumbo frame workaround mode\n");
4037
Jeff Kirsher52cc3082008-06-24 17:01:29 -07004038 if (!pci_channel_offline(adapter->pdev))
4039 e1000e_reset(adapter);
Jesse Brandeburg713b3c92011-02-02 10:19:50 +00004040
Bruce Allane921eb12012-11-28 09:28:37 +00004041 /* TODO: for power management, we could drop the link and
Auke Kokbc7f75f2007-09-17 12:30:59 -07004042 * pci_disable_device here.
4043 */
4044}
4045
4046void e1000e_reinit_locked(struct e1000_adapter *adapter)
4047{
4048 might_sleep();
4049 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
Bruce Allan1bba4382011-03-19 00:27:20 +00004050 usleep_range(1000, 2000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004051 e1000e_down(adapter);
4052 e1000e_up(adapter);
4053 clear_bit(__E1000_RESETTING, &adapter->state);
4054}
4055
4056/**
Bruce Allanb67e1912012-12-27 08:32:33 +00004057 * e1000e_cyclecounter_read - read raw cycle counter (used by time counter)
4058 * @cc: cyclecounter structure
4059 **/
4060static cycle_t e1000e_cyclecounter_read(const struct cyclecounter *cc)
4061{
4062 struct e1000_adapter *adapter = container_of(cc, struct e1000_adapter,
4063 cc);
4064 struct e1000_hw *hw = &adapter->hw;
4065 cycle_t systim;
4066
4067 /* latch SYSTIMH on read of SYSTIML */
4068 systim = (cycle_t)er32(SYSTIML);
4069 systim |= (cycle_t)er32(SYSTIMH) << 32;
4070
4071 return systim;
4072}
4073
4074/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004075 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
4076 * @adapter: board private structure to initialize
4077 *
4078 * e1000_sw_init initializes the Adapter private data structure.
4079 * Fields are initialized based on PCI device information and
4080 * OS network device settings (MTU size).
4081 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05004082static int e1000_sw_init(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004083{
Auke Kokbc7f75f2007-09-17 12:30:59 -07004084 struct net_device *netdev = adapter->netdev;
4085
4086 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN;
4087 adapter->rx_ps_bsize0 = 128;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004088 adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
4089 adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN;
Bruce Allan55aa6982011-12-16 00:45:45 +00004090 adapter->tx_ring_count = E1000_DEFAULT_TXD;
4091 adapter->rx_ring_count = E1000_DEFAULT_RXD;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004092
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004093 spin_lock_init(&adapter->stats64_lock);
4094
Bruce Allan4662e822008-08-26 18:37:06 -07004095 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004096
Bruce Allan4662e822008-08-26 18:37:06 -07004097 if (e1000_alloc_queues(adapter))
4098 return -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004099
Bruce Allanb67e1912012-12-27 08:32:33 +00004100 /* Setup hardware time stamping cyclecounter */
4101 if (adapter->flags & FLAG_HAS_HW_TIMESTAMP) {
4102 adapter->cc.read = e1000e_cyclecounter_read;
4103 adapter->cc.mask = CLOCKSOURCE_MASK(64);
4104 adapter->cc.mult = 1;
4105 /* cc.shift set in e1000e_get_base_tininca() */
4106
4107 spin_lock_init(&adapter->systim_lock);
4108 INIT_WORK(&adapter->tx_hwtstamp_work, e1000e_tx_hwtstamp_work);
4109 }
4110
Auke Kokbc7f75f2007-09-17 12:30:59 -07004111 /* Explicitly disable IRQ since the NIC can be in any state. */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004112 e1000_irq_disable(adapter);
4113
Auke Kokbc7f75f2007-09-17 12:30:59 -07004114 set_bit(__E1000_DOWN, &adapter->state);
4115 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004116}
4117
4118/**
Bruce Allanf8d59f72008-08-08 18:36:11 -07004119 * e1000_intr_msi_test - Interrupt Handler
4120 * @irq: interrupt number
4121 * @data: pointer to a network interface device structure
4122 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00004123static irqreturn_t e1000_intr_msi_test(int __always_unused irq, void *data)
Bruce Allanf8d59f72008-08-08 18:36:11 -07004124{
4125 struct net_device *netdev = data;
4126 struct e1000_adapter *adapter = netdev_priv(netdev);
4127 struct e1000_hw *hw = &adapter->hw;
4128 u32 icr = er32(ICR);
4129
Bruce Allan3bb99fe2009-11-20 23:25:07 +00004130 e_dbg("icr is %08X\n", icr);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004131 if (icr & E1000_ICR_RXSEQ) {
4132 adapter->flags &= ~FLAG_MSI_TEST_FAILED;
Bruce Allane921eb12012-11-28 09:28:37 +00004133 /* Force memory writes to complete before acknowledging the
Bruce Allanbc763292012-08-17 06:18:07 +00004134 * interrupt is handled.
4135 */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004136 wmb();
4137 }
4138
4139 return IRQ_HANDLED;
4140}
4141
4142/**
4143 * e1000_test_msi_interrupt - Returns 0 for successful test
4144 * @adapter: board private struct
4145 *
4146 * code flow taken from tg3.c
4147 **/
4148static int e1000_test_msi_interrupt(struct e1000_adapter *adapter)
4149{
4150 struct net_device *netdev = adapter->netdev;
4151 struct e1000_hw *hw = &adapter->hw;
4152 int err;
4153
4154 /* poll_enable hasn't been called yet, so don't need disable */
4155 /* clear any pending events */
4156 er32(ICR);
4157
4158 /* free the real vector and request a test handler */
4159 e1000_free_irq(adapter);
Bruce Allan4662e822008-08-26 18:37:06 -07004160 e1000e_reset_interrupt_capability(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004161
4162 /* Assume that the test fails, if it succeeds then the test
Bruce Allane921eb12012-11-28 09:28:37 +00004163 * MSI irq handler will unset this flag
4164 */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004165 adapter->flags |= FLAG_MSI_TEST_FAILED;
4166
4167 err = pci_enable_msi(adapter->pdev);
4168 if (err)
4169 goto msi_test_failed;
4170
Joe Perchesa0607fd2009-11-18 23:29:17 -08004171 err = request_irq(adapter->pdev->irq, e1000_intr_msi_test, 0,
Bruce Allanf8d59f72008-08-08 18:36:11 -07004172 netdev->name, netdev);
4173 if (err) {
4174 pci_disable_msi(adapter->pdev);
4175 goto msi_test_failed;
4176 }
4177
Bruce Allane921eb12012-11-28 09:28:37 +00004178 /* Force memory writes to complete before enabling and firing an
Bruce Allanbc763292012-08-17 06:18:07 +00004179 * interrupt.
4180 */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004181 wmb();
4182
4183 e1000_irq_enable(adapter);
4184
4185 /* fire an unusual interrupt on the test handler */
4186 ew32(ICS, E1000_ICS_RXSEQ);
4187 e1e_flush();
Prasanna S Panchamukhi569a3af2012-04-19 17:01:00 +00004188 msleep(100);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004189
4190 e1000_irq_disable(adapter);
4191
Bruce Allanbc763292012-08-17 06:18:07 +00004192 rmb(); /* read flags after interrupt has been fired */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004193
4194 if (adapter->flags & FLAG_MSI_TEST_FAILED) {
Bruce Allan4662e822008-08-26 18:37:06 -07004195 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Jean Delvare068e8a32010-09-12 22:45:39 +00004196 e_info("MSI interrupt test failed, using legacy interrupt.\n");
Bruce Allan24b706b2012-01-31 06:37:22 +00004197 } else {
Jean Delvare068e8a32010-09-12 22:45:39 +00004198 e_dbg("MSI interrupt test succeeded!\n");
Bruce Allan24b706b2012-01-31 06:37:22 +00004199 }
Bruce Allanf8d59f72008-08-08 18:36:11 -07004200
4201 free_irq(adapter->pdev->irq, netdev);
4202 pci_disable_msi(adapter->pdev);
4203
Bruce Allanf8d59f72008-08-08 18:36:11 -07004204msi_test_failed:
Bruce Allan4662e822008-08-26 18:37:06 -07004205 e1000e_set_interrupt_capability(adapter);
Jean Delvare068e8a32010-09-12 22:45:39 +00004206 return e1000_request_irq(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004207}
4208
4209/**
4210 * e1000_test_msi - Returns 0 if MSI test succeeds or INTx mode is restored
4211 * @adapter: board private struct
4212 *
4213 * code flow taken from tg3.c, called with e1000 interrupts disabled.
4214 **/
4215static int e1000_test_msi(struct e1000_adapter *adapter)
4216{
4217 int err;
4218 u16 pci_cmd;
4219
4220 if (!(adapter->flags & FLAG_MSI_ENABLED))
4221 return 0;
4222
4223 /* disable SERR in case the MSI write causes a master abort */
4224 pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
Dean Nelson36f24072010-06-29 18:12:05 +00004225 if (pci_cmd & PCI_COMMAND_SERR)
4226 pci_write_config_word(adapter->pdev, PCI_COMMAND,
4227 pci_cmd & ~PCI_COMMAND_SERR);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004228
4229 err = e1000_test_msi_interrupt(adapter);
4230
Dean Nelson36f24072010-06-29 18:12:05 +00004231 /* re-enable SERR */
4232 if (pci_cmd & PCI_COMMAND_SERR) {
4233 pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
4234 pci_cmd |= PCI_COMMAND_SERR;
4235 pci_write_config_word(adapter->pdev, PCI_COMMAND, pci_cmd);
4236 }
Bruce Allanf8d59f72008-08-08 18:36:11 -07004237
Bruce Allanf8d59f72008-08-08 18:36:11 -07004238 return err;
4239}
4240
4241/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004242 * e1000_open - Called when a network interface is made active
4243 * @netdev: network interface device structure
4244 *
4245 * Returns 0 on success, negative value on failure
4246 *
4247 * The open entry point is called when a network interface is made
4248 * active by the system (IFF_UP). At this point all resources needed
4249 * for transmit and receive operations are allocated, the interrupt
4250 * handler is registered with the OS, the watchdog timer is started,
4251 * and the stack is notified that the interface is ready.
4252 **/
4253static int e1000_open(struct net_device *netdev)
4254{
4255 struct e1000_adapter *adapter = netdev_priv(netdev);
4256 struct e1000_hw *hw = &adapter->hw;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004257 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004258 int err;
4259
4260 /* disallow open during test */
4261 if (test_bit(__E1000_TESTING, &adapter->state))
4262 return -EBUSY;
4263
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004264 pm_runtime_get_sync(&pdev->dev);
4265
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00004266 netif_carrier_off(netdev);
4267
Auke Kokbc7f75f2007-09-17 12:30:59 -07004268 /* allocate transmit descriptors */
Bruce Allan55aa6982011-12-16 00:45:45 +00004269 err = e1000e_setup_tx_resources(adapter->tx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004270 if (err)
4271 goto err_setup_tx;
4272
4273 /* allocate receive descriptors */
Bruce Allan55aa6982011-12-16 00:45:45 +00004274 err = e1000e_setup_rx_resources(adapter->rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004275 if (err)
4276 goto err_setup_rx;
4277
Bruce Allane921eb12012-11-28 09:28:37 +00004278 /* If AMT is enabled, let the firmware know that the network
Bruce Allan11b08be2010-05-10 14:59:31 +00004279 * interface is now open and reset the part to a known state.
4280 */
4281 if (adapter->flags & FLAG_HAS_AMT) {
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004282 e1000e_get_hw_control(adapter);
Bruce Allan11b08be2010-05-10 14:59:31 +00004283 e1000e_reset(adapter);
4284 }
4285
Auke Kokbc7f75f2007-09-17 12:30:59 -07004286 e1000e_power_up_phy(adapter);
4287
4288 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Bruce Allane5fe2542013-02-20 04:06:27 +00004289 if ((adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004290 e1000_update_mng_vlan(adapter);
4291
Bruce Allan79d4e902011-12-16 00:46:27 +00004292 /* DMA latency requirement to workaround jumbo issue */
Bruce Allan3e35d992013-01-12 07:25:22 +00004293 pm_qos_add_request(&adapter->netdev->pm_qos_req, PM_QOS_CPU_DMA_LATENCY,
4294 PM_QOS_DEFAULT_VALUE);
Florian Micklerc128ec22010-08-02 14:27:00 +00004295
Bruce Allane921eb12012-11-28 09:28:37 +00004296 /* before we allocate an interrupt, we must be ready to handle it.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004297 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
4298 * as soon as we call pci_request_irq, so we have to setup our
Bruce Allanad680762008-03-28 09:15:03 -07004299 * clean_rx handler before we do so.
4300 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004301 e1000_configure(adapter);
4302
4303 err = e1000_request_irq(adapter);
4304 if (err)
4305 goto err_req_irq;
4306
Bruce Allane921eb12012-11-28 09:28:37 +00004307 /* Work around PCIe errata with MSI interrupts causing some chipsets to
Bruce Allanf8d59f72008-08-08 18:36:11 -07004308 * ignore e1000e MSI messages, which means we need to test our MSI
4309 * interrupt now
4310 */
Bruce Allan4662e822008-08-26 18:37:06 -07004311 if (adapter->int_mode != E1000E_INT_MODE_LEGACY) {
Bruce Allanf8d59f72008-08-08 18:36:11 -07004312 err = e1000_test_msi(adapter);
4313 if (err) {
4314 e_err("Interrupt allocation failed\n");
4315 goto err_req_irq;
4316 }
4317 }
4318
Auke Kokbc7f75f2007-09-17 12:30:59 -07004319 /* From here on the code is the same as e1000e_up() */
4320 clear_bit(__E1000_DOWN, &adapter->state);
4321
4322 napi_enable(&adapter->napi);
4323
4324 e1000_irq_enable(adapter);
4325
Jeff Kirsher09357b02011-11-18 14:25:00 +00004326 adapter->tx_hang_recheck = false;
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00004327 netif_start_queue(netdev);
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07004328
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004329 adapter->idle_check = true;
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00004330 hw->mac.get_link_status = true;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004331 pm_runtime_put(&pdev->dev);
4332
Auke Kokbc7f75f2007-09-17 12:30:59 -07004333 /* fire a link status change interrupt to start the watchdog */
Bruce Allan52a9b232010-05-10 15:00:10 +00004334 if (adapter->msix_entries)
4335 ew32(ICS, E1000_ICS_LSC | E1000_ICR_OTHER);
4336 else
4337 ew32(ICS, E1000_ICS_LSC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004338
4339 return 0;
4340
4341err_req_irq:
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004342 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004343 e1000_power_down_phy(adapter);
Bruce Allan55aa6982011-12-16 00:45:45 +00004344 e1000e_free_rx_resources(adapter->rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004345err_setup_rx:
Bruce Allan55aa6982011-12-16 00:45:45 +00004346 e1000e_free_tx_resources(adapter->tx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004347err_setup_tx:
4348 e1000e_reset(adapter);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004349 pm_runtime_put_sync(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004350
4351 return err;
4352}
4353
4354/**
4355 * e1000_close - Disables a network interface
4356 * @netdev: network interface device structure
4357 *
4358 * Returns 0, this is not allowed to fail
4359 *
4360 * The close entry point is called when an interface is de-activated
4361 * by the OS. The hardware is still under the drivers control, but
4362 * needs to be disabled. A global MAC reset is issued to stop the
4363 * hardware, and all transmit and receive resources are freed.
4364 **/
4365static int e1000_close(struct net_device *netdev)
4366{
4367 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004368 struct pci_dev *pdev = adapter->pdev;
Bruce Allanbb9e44d2012-03-21 00:39:12 +00004369 int count = E1000_CHECK_RESET_COUNT;
4370
4371 while (test_bit(__E1000_RESETTING, &adapter->state) && count--)
4372 usleep_range(10000, 20000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004373
4374 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004375
4376 pm_runtime_get_sync(&pdev->dev);
4377
4378 if (!test_bit(__E1000_DOWN, &adapter->state)) {
4379 e1000e_down(adapter);
4380 e1000_free_irq(adapter);
4381 }
Bruce Allana3b87a42013-04-20 05:37:29 +00004382
4383 napi_disable(&adapter->napi);
4384
Auke Kokbc7f75f2007-09-17 12:30:59 -07004385 e1000_power_down_phy(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004386
Bruce Allan55aa6982011-12-16 00:45:45 +00004387 e1000e_free_tx_resources(adapter->tx_ring);
4388 e1000e_free_rx_resources(adapter->rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004389
Bruce Allane921eb12012-11-28 09:28:37 +00004390 /* kill manageability vlan ID if supported, but not if a vlan with
Bruce Allanad680762008-03-28 09:15:03 -07004391 * the same ID is registered on the host OS (let 8021q kill it)
4392 */
Bruce Allane5fe2542013-02-20 04:06:27 +00004393 if (adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN)
Patrick McHardy80d5c362013-04-19 02:04:28 +00004394 e1000_vlan_rx_kill_vid(netdev, htons(ETH_P_8021Q),
4395 adapter->mng_vlan_id);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004396
Bruce Allane921eb12012-11-28 09:28:37 +00004397 /* If AMT is enabled, let the firmware know that the network
Bruce Allanad680762008-03-28 09:15:03 -07004398 * interface is now closed
4399 */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004400 if ((adapter->flags & FLAG_HAS_AMT) &&
4401 !test_bit(__E1000_TESTING, &adapter->state))
4402 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004403
Bruce Allan3e35d992013-01-12 07:25:22 +00004404 pm_qos_remove_request(&adapter->netdev->pm_qos_req);
Florian Micklerc128ec22010-08-02 14:27:00 +00004405
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004406 pm_runtime_put_sync(&pdev->dev);
4407
Auke Kokbc7f75f2007-09-17 12:30:59 -07004408 return 0;
4409}
Bruce Allanfc830b72013-02-20 04:06:11 +00004410
Auke Kokbc7f75f2007-09-17 12:30:59 -07004411/**
4412 * e1000_set_mac - Change the Ethernet Address of the NIC
4413 * @netdev: network interface device structure
4414 * @p: pointer to an address structure
4415 *
4416 * Returns 0 on success, negative on failure
4417 **/
4418static int e1000_set_mac(struct net_device *netdev, void *p)
4419{
4420 struct e1000_adapter *adapter = netdev_priv(netdev);
Bruce Allan69e1e012012-04-14 03:28:50 +00004421 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004422 struct sockaddr *addr = p;
4423
4424 if (!is_valid_ether_addr(addr->sa_data))
4425 return -EADDRNOTAVAIL;
4426
4427 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
4428 memcpy(adapter->hw.mac.addr, addr->sa_data, netdev->addr_len);
4429
Bruce Allan69e1e012012-04-14 03:28:50 +00004430 hw->mac.ops.rar_set(&adapter->hw, adapter->hw.mac.addr, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004431
4432 if (adapter->flags & FLAG_RESET_OVERWRITES_LAA) {
4433 /* activate the work around */
4434 e1000e_set_laa_state_82571(&adapter->hw, 1);
4435
Bruce Allane921eb12012-11-28 09:28:37 +00004436 /* Hold a copy of the LAA in RAR[14] This is done so that
Auke Kokbc7f75f2007-09-17 12:30:59 -07004437 * between the time RAR[0] gets clobbered and the time it
4438 * gets fixed (in e1000_watchdog), the actual LAA is in one
4439 * of the RARs and no incoming packets directed to this port
4440 * are dropped. Eventually the LAA will be in RAR[0] and
Bruce Allanad680762008-03-28 09:15:03 -07004441 * RAR[14]
4442 */
Bruce Allan69e1e012012-04-14 03:28:50 +00004443 hw->mac.ops.rar_set(&adapter->hw, adapter->hw.mac.addr,
4444 adapter->hw.mac.rar_entry_count - 1);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004445 }
4446
4447 return 0;
4448}
4449
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07004450/**
4451 * e1000e_update_phy_task - work thread to update phy
4452 * @work: pointer to our work struct
4453 *
4454 * this worker thread exists because we must acquire a
4455 * semaphore to read the phy, which we could msleep while
4456 * waiting for it, and we can't msleep in a timer.
4457 **/
4458static void e1000e_update_phy_task(struct work_struct *work)
4459{
4460 struct e1000_adapter *adapter = container_of(work,
Bruce Allan17e813e2013-02-20 04:06:01 +00004461 struct e1000_adapter,
4462 update_phy_task);
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00004463
4464 if (test_bit(__E1000_DOWN, &adapter->state))
4465 return;
4466
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07004467 e1000_get_phy_info(&adapter->hw);
4468}
4469
Bruce Allane921eb12012-11-28 09:28:37 +00004470/**
4471 * e1000_update_phy_info - timre call-back to update PHY info
4472 * @data: pointer to adapter cast into an unsigned long
4473 *
Bruce Allanad680762008-03-28 09:15:03 -07004474 * Need to wait a few seconds after link up to get diagnostic information from
4475 * the phy
Bruce Allane921eb12012-11-28 09:28:37 +00004476 **/
Auke Kokbc7f75f2007-09-17 12:30:59 -07004477static void e1000_update_phy_info(unsigned long data)
4478{
Bruce Allan53aa82d2013-02-20 04:06:06 +00004479 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00004480
4481 if (test_bit(__E1000_DOWN, &adapter->state))
4482 return;
4483
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07004484 schedule_work(&adapter->update_phy_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004485}
4486
4487/**
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004488 * e1000e_update_phy_stats - Update the PHY statistics counters
4489 * @adapter: board private structure
Bruce Allan2b6b1682011-05-13 07:20:09 +00004490 *
4491 * Read/clear the upper 16-bit PHY registers and read/accumulate lower
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004492 **/
4493static void e1000e_update_phy_stats(struct e1000_adapter *adapter)
4494{
4495 struct e1000_hw *hw = &adapter->hw;
4496 s32 ret_val;
4497 u16 phy_data;
4498
4499 ret_val = hw->phy.ops.acquire(hw);
4500 if (ret_val)
4501 return;
4502
Bruce Allane921eb12012-11-28 09:28:37 +00004503 /* A page set is expensive so check if already on desired page.
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004504 * If not, set to the page with the PHY status registers.
4505 */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004506 hw->phy.addr = 1;
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004507 ret_val = e1000e_read_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT,
4508 &phy_data);
4509 if (ret_val)
4510 goto release;
Bruce Allan2b6b1682011-05-13 07:20:09 +00004511 if (phy_data != (HV_STATS_PAGE << IGP_PAGE_SHIFT)) {
4512 ret_val = hw->phy.ops.set_page(hw,
4513 HV_STATS_PAGE << IGP_PAGE_SHIFT);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004514 if (ret_val)
4515 goto release;
4516 }
4517
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004518 /* Single Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004519 hw->phy.ops.read_reg_page(hw, HV_SCC_UPPER, &phy_data);
4520 ret_val = hw->phy.ops.read_reg_page(hw, HV_SCC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004521 if (!ret_val)
4522 adapter->stats.scc += phy_data;
4523
4524 /* Excessive Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004525 hw->phy.ops.read_reg_page(hw, HV_ECOL_UPPER, &phy_data);
4526 ret_val = hw->phy.ops.read_reg_page(hw, HV_ECOL_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004527 if (!ret_val)
4528 adapter->stats.ecol += phy_data;
4529
4530 /* Multiple Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004531 hw->phy.ops.read_reg_page(hw, HV_MCC_UPPER, &phy_data);
4532 ret_val = hw->phy.ops.read_reg_page(hw, HV_MCC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004533 if (!ret_val)
4534 adapter->stats.mcc += phy_data;
4535
4536 /* Late Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004537 hw->phy.ops.read_reg_page(hw, HV_LATECOL_UPPER, &phy_data);
4538 ret_val = hw->phy.ops.read_reg_page(hw, HV_LATECOL_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004539 if (!ret_val)
4540 adapter->stats.latecol += phy_data;
4541
4542 /* Collision Count - also used for adaptive IFS */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004543 hw->phy.ops.read_reg_page(hw, HV_COLC_UPPER, &phy_data);
4544 ret_val = hw->phy.ops.read_reg_page(hw, HV_COLC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004545 if (!ret_val)
4546 hw->mac.collision_delta = phy_data;
4547
4548 /* Defer Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004549 hw->phy.ops.read_reg_page(hw, HV_DC_UPPER, &phy_data);
4550 ret_val = hw->phy.ops.read_reg_page(hw, HV_DC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004551 if (!ret_val)
4552 adapter->stats.dc += phy_data;
4553
4554 /* Transmit with no CRS */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004555 hw->phy.ops.read_reg_page(hw, HV_TNCRS_UPPER, &phy_data);
4556 ret_val = hw->phy.ops.read_reg_page(hw, HV_TNCRS_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004557 if (!ret_val)
4558 adapter->stats.tncrs += phy_data;
4559
4560release:
4561 hw->phy.ops.release(hw);
4562}
4563
4564/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004565 * e1000e_update_stats - Update the board statistics counters
4566 * @adapter: board private structure
4567 **/
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004568static void e1000e_update_stats(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004569{
Ajit Khaparde7274c202009-10-07 02:44:26 +00004570 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004571 struct e1000_hw *hw = &adapter->hw;
4572 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004573
Bruce Allane921eb12012-11-28 09:28:37 +00004574 /* Prevent stats update while adapter is being reset, or if the pci
Auke Kokbc7f75f2007-09-17 12:30:59 -07004575 * connection is down.
4576 */
4577 if (adapter->link_speed == 0)
4578 return;
4579 if (pci_channel_offline(pdev))
4580 return;
4581
Auke Kokbc7f75f2007-09-17 12:30:59 -07004582 adapter->stats.crcerrs += er32(CRCERRS);
4583 adapter->stats.gprc += er32(GPRC);
Bruce Allan7c257692008-04-23 11:09:00 -07004584 adapter->stats.gorc += er32(GORCL);
Bruce Allane80bd1d2013-05-01 01:19:46 +00004585 er32(GORCH); /* Clear gorc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004586 adapter->stats.bprc += er32(BPRC);
4587 adapter->stats.mprc += er32(MPRC);
4588 adapter->stats.roc += er32(ROC);
4589
Auke Kokbc7f75f2007-09-17 12:30:59 -07004590 adapter->stats.mpc += er32(MPC);
Bruce Allana4f58f52009-06-02 11:29:18 +00004591
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004592 /* Half-duplex statistics */
4593 if (adapter->link_duplex == HALF_DUPLEX) {
4594 if (adapter->flags2 & FLAG2_HAS_PHY_STATS) {
4595 e1000e_update_phy_stats(adapter);
4596 } else {
4597 adapter->stats.scc += er32(SCC);
4598 adapter->stats.ecol += er32(ECOL);
4599 adapter->stats.mcc += er32(MCC);
4600 adapter->stats.latecol += er32(LATECOL);
4601 adapter->stats.dc += er32(DC);
Bruce Allana4f58f52009-06-02 11:29:18 +00004602
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004603 hw->mac.collision_delta = er32(COLC);
Bruce Allana4f58f52009-06-02 11:29:18 +00004604
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004605 if ((hw->mac.type != e1000_82574) &&
4606 (hw->mac.type != e1000_82583))
4607 adapter->stats.tncrs += er32(TNCRS);
4608 }
4609 adapter->stats.colc += hw->mac.collision_delta;
Bruce Allana4f58f52009-06-02 11:29:18 +00004610 }
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004611
Auke Kokbc7f75f2007-09-17 12:30:59 -07004612 adapter->stats.xonrxc += er32(XONRXC);
4613 adapter->stats.xontxc += er32(XONTXC);
4614 adapter->stats.xoffrxc += er32(XOFFRXC);
4615 adapter->stats.xofftxc += er32(XOFFTXC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004616 adapter->stats.gptc += er32(GPTC);
Bruce Allan7c257692008-04-23 11:09:00 -07004617 adapter->stats.gotc += er32(GOTCL);
Bruce Allane80bd1d2013-05-01 01:19:46 +00004618 er32(GOTCH); /* Clear gotc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004619 adapter->stats.rnbc += er32(RNBC);
4620 adapter->stats.ruc += er32(RUC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004621
4622 adapter->stats.mptc += er32(MPTC);
4623 adapter->stats.bptc += er32(BPTC);
4624
4625 /* used for adaptive IFS */
4626
4627 hw->mac.tx_packet_delta = er32(TPT);
4628 adapter->stats.tpt += hw->mac.tx_packet_delta;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004629
4630 adapter->stats.algnerrc += er32(ALGNERRC);
4631 adapter->stats.rxerrc += er32(RXERRC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004632 adapter->stats.cexterr += er32(CEXTERR);
4633 adapter->stats.tsctc += er32(TSCTC);
4634 adapter->stats.tsctfc += er32(TSCTFC);
4635
Auke Kokbc7f75f2007-09-17 12:30:59 -07004636 /* Fill out the OS statistics structure */
Ajit Khaparde7274c202009-10-07 02:44:26 +00004637 netdev->stats.multicast = adapter->stats.mprc;
4638 netdev->stats.collisions = adapter->stats.colc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004639
4640 /* Rx Errors */
4641
Bruce Allane921eb12012-11-28 09:28:37 +00004642 /* RLEC on some newer hardware can be incorrect so build
Bruce Allanad680762008-03-28 09:15:03 -07004643 * our own version based on RUC and ROC
4644 */
Ajit Khaparde7274c202009-10-07 02:44:26 +00004645 netdev->stats.rx_errors = adapter->stats.rxerrc +
Bruce Allanf0ff4392013-02-20 04:05:39 +00004646 adapter->stats.crcerrs + adapter->stats.algnerrc +
4647 adapter->stats.ruc + adapter->stats.roc + adapter->stats.cexterr;
Ajit Khaparde7274c202009-10-07 02:44:26 +00004648 netdev->stats.rx_length_errors = adapter->stats.ruc +
Bruce Allanf0ff4392013-02-20 04:05:39 +00004649 adapter->stats.roc;
Ajit Khaparde7274c202009-10-07 02:44:26 +00004650 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
4651 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
4652 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004653
4654 /* Tx Errors */
Bruce Allanf0ff4392013-02-20 04:05:39 +00004655 netdev->stats.tx_errors = adapter->stats.ecol + adapter->stats.latecol;
Ajit Khaparde7274c202009-10-07 02:44:26 +00004656 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
4657 netdev->stats.tx_window_errors = adapter->stats.latecol;
4658 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004659
4660 /* Tx Dropped needs to be maintained elsewhere */
4661
Auke Kokbc7f75f2007-09-17 12:30:59 -07004662 /* Management Stats */
4663 adapter->stats.mgptc += er32(MGTPTC);
4664 adapter->stats.mgprc += er32(MGTPRC);
4665 adapter->stats.mgpdc += er32(MGTPDC);
Bruce Allan94fb8482013-01-23 09:00:03 +00004666
4667 /* Correctable ECC Errors */
4668 if (hw->mac.type == e1000_pch_lpt) {
4669 u32 pbeccsts = er32(PBECCSTS);
4670 adapter->corr_errors +=
4671 pbeccsts & E1000_PBECCSTS_CORR_ERR_CNT_MASK;
4672 adapter->uncorr_errors +=
4673 (pbeccsts & E1000_PBECCSTS_UNCORR_ERR_CNT_MASK) >>
4674 E1000_PBECCSTS_UNCORR_ERR_CNT_SHIFT;
4675 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004676}
4677
Bruce Allan7c257692008-04-23 11:09:00 -07004678/**
4679 * e1000_phy_read_status - Update the PHY register status snapshot
4680 * @adapter: board private structure
4681 **/
4682static void e1000_phy_read_status(struct e1000_adapter *adapter)
4683{
4684 struct e1000_hw *hw = &adapter->hw;
4685 struct e1000_phy_regs *phy = &adapter->phy_regs;
Bruce Allan7c257692008-04-23 11:09:00 -07004686
4687 if ((er32(STATUS) & E1000_STATUS_LU) &&
4688 (adapter->hw.phy.media_type == e1000_media_type_copper)) {
Bruce Allan90da0662011-01-06 07:02:53 +00004689 int ret_val;
4690
Konstantin Khlebnikove60b22c2013-03-05 09:43:09 +00004691 pm_runtime_get_sync(&adapter->pdev->dev);
Bruce Allanc2ade1a2013-01-16 08:54:35 +00004692 ret_val = e1e_rphy(hw, MII_BMCR, &phy->bmcr);
4693 ret_val |= e1e_rphy(hw, MII_BMSR, &phy->bmsr);
4694 ret_val |= e1e_rphy(hw, MII_ADVERTISE, &phy->advertise);
4695 ret_val |= e1e_rphy(hw, MII_LPA, &phy->lpa);
4696 ret_val |= e1e_rphy(hw, MII_EXPANSION, &phy->expansion);
4697 ret_val |= e1e_rphy(hw, MII_CTRL1000, &phy->ctrl1000);
4698 ret_val |= e1e_rphy(hw, MII_STAT1000, &phy->stat1000);
4699 ret_val |= e1e_rphy(hw, MII_ESTATUS, &phy->estatus);
Bruce Allan7c257692008-04-23 11:09:00 -07004700 if (ret_val)
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004701 e_warn("Error reading PHY register\n");
Konstantin Khlebnikove60b22c2013-03-05 09:43:09 +00004702 pm_runtime_put_sync(&adapter->pdev->dev);
Bruce Allan7c257692008-04-23 11:09:00 -07004703 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00004704 /* Do not read PHY registers if link is not up
Bruce Allan7c257692008-04-23 11:09:00 -07004705 * Set values to typical power-on defaults
4706 */
4707 phy->bmcr = (BMCR_SPEED1000 | BMCR_ANENABLE | BMCR_FULLDPLX);
4708 phy->bmsr = (BMSR_100FULL | BMSR_100HALF | BMSR_10FULL |
4709 BMSR_10HALF | BMSR_ESTATEN | BMSR_ANEGCAPABLE |
4710 BMSR_ERCAP);
4711 phy->advertise = (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP |
4712 ADVERTISE_ALL | ADVERTISE_CSMA);
4713 phy->lpa = 0;
4714 phy->expansion = EXPANSION_ENABLENPAGE;
4715 phy->ctrl1000 = ADVERTISE_1000FULL;
4716 phy->stat1000 = 0;
4717 phy->estatus = (ESTATUS_1000_TFULL | ESTATUS_1000_THALF);
4718 }
Bruce Allan7c257692008-04-23 11:09:00 -07004719}
4720
Auke Kokbc7f75f2007-09-17 12:30:59 -07004721static void e1000_print_link_info(struct e1000_adapter *adapter)
4722{
Auke Kokbc7f75f2007-09-17 12:30:59 -07004723 struct e1000_hw *hw = &adapter->hw;
4724 u32 ctrl = er32(CTRL);
4725
Bruce Allan8f12fe82008-11-21 16:54:43 -08004726 /* Link status message must follow this format for user tools */
Bruce Allan7dbc1672013-01-12 03:11:25 +00004727 pr_info("%s NIC Link is Up %d Mbps %s Duplex, Flow Control: %s\n",
4728 adapter->netdev->name, adapter->link_speed,
Jeff Kirsheref456f82011-11-03 11:40:28 +00004729 adapter->link_duplex == FULL_DUPLEX ? "Full" : "Half",
4730 (ctrl & E1000_CTRL_TFCE) && (ctrl & E1000_CTRL_RFCE) ? "Rx/Tx" :
4731 (ctrl & E1000_CTRL_RFCE) ? "Rx" :
4732 (ctrl & E1000_CTRL_TFCE) ? "Tx" : "None");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004733}
4734
Bruce Allan0c6bdb32010-06-17 18:58:43 +00004735static bool e1000e_has_link(struct e1000_adapter *adapter)
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004736{
4737 struct e1000_hw *hw = &adapter->hw;
Rusty Russell3db1cd52011-12-19 13:56:45 +00004738 bool link_active = false;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004739 s32 ret_val = 0;
4740
Bruce Allane921eb12012-11-28 09:28:37 +00004741 /* get_link_status is set on LSC (link status) interrupt or
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004742 * Rx sequence error interrupt. get_link_status will stay
4743 * false until the check_for_link establishes link
4744 * for copper adapters ONLY
4745 */
4746 switch (hw->phy.media_type) {
4747 case e1000_media_type_copper:
4748 if (hw->mac.get_link_status) {
4749 ret_val = hw->mac.ops.check_for_link(hw);
4750 link_active = !hw->mac.get_link_status;
4751 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00004752 link_active = true;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004753 }
4754 break;
4755 case e1000_media_type_fiber:
4756 ret_val = hw->mac.ops.check_for_link(hw);
4757 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
4758 break;
4759 case e1000_media_type_internal_serdes:
4760 ret_val = hw->mac.ops.check_for_link(hw);
4761 link_active = adapter->hw.mac.serdes_has_link;
4762 break;
4763 default:
4764 case e1000_media_type_unknown:
4765 break;
4766 }
4767
4768 if ((ret_val == E1000_ERR_PHY) && (hw->phy.type == e1000_phy_igp_3) &&
4769 (er32(CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
4770 /* See e1000_kmrn_lock_loss_workaround_ich8lan() */
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004771 e_info("Gigabit has been disabled, downgrading speed\n");
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004772 }
4773
4774 return link_active;
4775}
4776
4777static void e1000e_enable_receives(struct e1000_adapter *adapter)
4778{
4779 /* make sure the receive unit is started */
4780 if ((adapter->flags & FLAG_RX_NEEDS_RESTART) &&
Bruce Allan12d43f72012-12-05 06:26:14 +00004781 (adapter->flags & FLAG_RESTART_NOW)) {
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004782 struct e1000_hw *hw = &adapter->hw;
4783 u32 rctl = er32(RCTL);
4784 ew32(RCTL, rctl | E1000_RCTL_EN);
Bruce Allan12d43f72012-12-05 06:26:14 +00004785 adapter->flags &= ~FLAG_RESTART_NOW;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004786 }
4787}
4788
Carolyn Wybornyff10e132010-10-28 00:59:53 +00004789static void e1000e_check_82574_phy_workaround(struct e1000_adapter *adapter)
4790{
4791 struct e1000_hw *hw = &adapter->hw;
4792
Bruce Allane921eb12012-11-28 09:28:37 +00004793 /* With 82574 controllers, PHY needs to be checked periodically
Carolyn Wybornyff10e132010-10-28 00:59:53 +00004794 * for hung state and reset, if two calls return true
4795 */
4796 if (e1000_check_phy_82574(hw))
4797 adapter->phy_hang_count++;
4798 else
4799 adapter->phy_hang_count = 0;
4800
4801 if (adapter->phy_hang_count > 1) {
4802 adapter->phy_hang_count = 0;
4803 schedule_work(&adapter->reset_task);
4804 }
4805}
4806
Auke Kokbc7f75f2007-09-17 12:30:59 -07004807/**
4808 * e1000_watchdog - Timer Call-back
4809 * @data: pointer to adapter cast into an unsigned long
4810 **/
4811static void e1000_watchdog(unsigned long data)
4812{
Bruce Allan53aa82d2013-02-20 04:06:06 +00004813 struct e1000_adapter *adapter = (struct e1000_adapter *)data;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004814
4815 /* Do the rest outside of interrupt context */
4816 schedule_work(&adapter->watchdog_task);
4817
4818 /* TODO: make this use queue_delayed_work() */
4819}
4820
4821static void e1000_watchdog_task(struct work_struct *work)
4822{
4823 struct e1000_adapter *adapter = container_of(work,
Bruce Allan17e813e2013-02-20 04:06:01 +00004824 struct e1000_adapter,
4825 watchdog_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004826 struct net_device *netdev = adapter->netdev;
4827 struct e1000_mac_info *mac = &adapter->hw.mac;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08004828 struct e1000_phy_info *phy = &adapter->hw.phy;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004829 struct e1000_ring *tx_ring = adapter->tx_ring;
4830 struct e1000_hw *hw = &adapter->hw;
4831 u32 link, tctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004832
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00004833 if (test_bit(__E1000_DOWN, &adapter->state))
4834 return;
4835
David S. Millerb405e8d2010-02-04 22:31:41 -08004836 link = e1000e_has_link(adapter);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004837 if ((netif_carrier_ok(netdev)) && link) {
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004838 /* Cancel scheduled suspend requests. */
4839 pm_runtime_resume(netdev->dev.parent);
4840
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004841 e1000e_enable_receives(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004842 goto link_up;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004843 }
4844
4845 if ((e1000e_enable_tx_pkt_filtering(hw)) &&
4846 (adapter->mng_vlan_id != adapter->hw.mng_cookie.vlan_id))
4847 e1000_update_mng_vlan(adapter);
4848
Auke Kokbc7f75f2007-09-17 12:30:59 -07004849 if (link) {
4850 if (!netif_carrier_ok(netdev)) {
Rusty Russell3db1cd52011-12-19 13:56:45 +00004851 bool txb2b = true;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004852
4853 /* Cancel scheduled suspend requests. */
4854 pm_runtime_resume(netdev->dev.parent);
4855
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004856 /* update snapshot of PHY registers on LSC */
Bruce Allan7c257692008-04-23 11:09:00 -07004857 e1000_phy_read_status(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004858 mac->ops.get_link_up_info(&adapter->hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00004859 &adapter->link_speed,
4860 &adapter->link_duplex);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004861 e1000_print_link_info(adapter);
Koki Sanagie792cd92013-02-03 14:03:55 +00004862
4863 /* check if SmartSpeed worked */
4864 e1000e_check_downshift(hw);
4865 if (phy->speed_downgraded)
4866 netdev_warn(netdev,
4867 "Link Speed was downgraded by SmartSpeed\n");
4868
Bruce Allane921eb12012-11-28 09:28:37 +00004869 /* On supported PHYs, check for duplex mismatch only
Bruce Allanf4187b52008-08-26 18:36:50 -07004870 * if link has autonegotiated at 10/100 half
4871 */
4872 if ((hw->phy.type == e1000_phy_igp_3 ||
4873 hw->phy.type == e1000_phy_bm) &&
4874 (hw->mac.autoneg == true) &&
4875 (adapter->link_speed == SPEED_10 ||
4876 adapter->link_speed == SPEED_100) &&
4877 (adapter->link_duplex == HALF_DUPLEX)) {
4878 u16 autoneg_exp;
4879
Bruce Allanc2ade1a2013-01-16 08:54:35 +00004880 e1e_rphy(hw, MII_EXPANSION, &autoneg_exp);
Bruce Allanf4187b52008-08-26 18:36:50 -07004881
Bruce Allanc2ade1a2013-01-16 08:54:35 +00004882 if (!(autoneg_exp & EXPANSION_NWAY))
Jeff Kirsheref456f82011-11-03 11:40:28 +00004883 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 -07004884 }
4885
Emil Tantilovf49c57e2010-03-24 12:55:02 +00004886 /* adjust timeout factor according to speed/duplex */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004887 adapter->tx_timeout_factor = 1;
4888 switch (adapter->link_speed) {
4889 case SPEED_10:
Rusty Russell3db1cd52011-12-19 13:56:45 +00004890 txb2b = false;
Bruce Allan10f1b492008-08-08 18:36:01 -07004891 adapter->tx_timeout_factor = 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004892 break;
4893 case SPEED_100:
Rusty Russell3db1cd52011-12-19 13:56:45 +00004894 txb2b = false;
Bruce Allan4c86e0b2009-11-19 12:35:26 +00004895 adapter->tx_timeout_factor = 10;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004896 break;
4897 }
4898
Bruce Allane921eb12012-11-28 09:28:37 +00004899 /* workaround: re-program speed mode bit after
Bruce Allanad680762008-03-28 09:15:03 -07004900 * link-up event
4901 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004902 if ((adapter->flags & FLAG_TARC_SPEED_MODE_BIT) &&
4903 !txb2b) {
4904 u32 tarc0;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004905 tarc0 = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004906 tarc0 &= ~SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07004907 ew32(TARC(0), tarc0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004908 }
4909
Bruce Allane921eb12012-11-28 09:28:37 +00004910 /* disable TSO for pcie and 10/100 speeds, to avoid
Bruce Allanad680762008-03-28 09:15:03 -07004911 * some hardware issues
4912 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004913 if (!(adapter->flags & FLAG_TSO_FORCE)) {
4914 switch (adapter->link_speed) {
4915 case SPEED_10:
4916 case SPEED_100:
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004917 e_info("10/100 speed: disabling TSO\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004918 netdev->features &= ~NETIF_F_TSO;
4919 netdev->features &= ~NETIF_F_TSO6;
4920 break;
4921 case SPEED_1000:
4922 netdev->features |= NETIF_F_TSO;
4923 netdev->features |= NETIF_F_TSO6;
4924 break;
4925 default:
4926 /* oops */
4927 break;
4928 }
4929 }
4930
Bruce Allane921eb12012-11-28 09:28:37 +00004931 /* enable transmits in the hardware, need to do this
Bruce Allanad680762008-03-28 09:15:03 -07004932 * after setting TARC(0)
4933 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004934 tctl = er32(TCTL);
4935 tctl |= E1000_TCTL_EN;
4936 ew32(TCTL, tctl);
4937
Bruce Allane921eb12012-11-28 09:28:37 +00004938 /* Perform any post-link-up configuration before
Bruce Allan75eb0fa2008-11-21 16:53:51 -08004939 * reporting link up.
4940 */
4941 if (phy->ops.cfg_on_link_up)
4942 phy->ops.cfg_on_link_up(hw);
4943
Auke Kokbc7f75f2007-09-17 12:30:59 -07004944 netif_carrier_on(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004945
4946 if (!test_bit(__E1000_DOWN, &adapter->state))
4947 mod_timer(&adapter->phy_info_timer,
4948 round_jiffies(jiffies + 2 * HZ));
Auke Kokbc7f75f2007-09-17 12:30:59 -07004949 }
4950 } else {
4951 if (netif_carrier_ok(netdev)) {
4952 adapter->link_speed = 0;
4953 adapter->link_duplex = 0;
Bruce Allan8f12fe82008-11-21 16:54:43 -08004954 /* Link status message must follow this format */
Bruce Allan7dbc1672013-01-12 03:11:25 +00004955 pr_info("%s NIC Link is Down\n", adapter->netdev->name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004956 netif_carrier_off(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004957 if (!test_bit(__E1000_DOWN, &adapter->state))
4958 mod_timer(&adapter->phy_info_timer,
4959 round_jiffies(jiffies + 2 * HZ));
4960
Bruce Allan12d43f72012-12-05 06:26:14 +00004961 /* The link is lost so the controller stops DMA.
4962 * If there is queued Tx work that cannot be done
4963 * or if on an 8000ES2LAN which requires a Rx packet
4964 * buffer work-around on link down event, reset the
4965 * controller to flush the Tx/Rx packet buffers.
4966 * (Do the reset outside of interrupt context).
4967 */
4968 if ((adapter->flags & FLAG_RX_NEEDS_RESTART) ||
4969 (e1000_desc_unused(tx_ring) + 1 < tx_ring->count))
4970 adapter->flags |= FLAG_RESTART_NOW;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004971 else
4972 pm_schedule_suspend(netdev->dev.parent,
Bruce Allan17e813e2013-02-20 04:06:01 +00004973 LINK_TIMEOUT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004974 }
4975 }
4976
4977link_up:
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004978 spin_lock(&adapter->stats64_lock);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004979 e1000e_update_stats(adapter);
4980
4981 mac->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
4982 adapter->tpt_old = adapter->stats.tpt;
4983 mac->collision_delta = adapter->stats.colc - adapter->colc_old;
4984 adapter->colc_old = adapter->stats.colc;
4985
Bruce Allan7c257692008-04-23 11:09:00 -07004986 adapter->gorc = adapter->stats.gorc - adapter->gorc_old;
4987 adapter->gorc_old = adapter->stats.gorc;
4988 adapter->gotc = adapter->stats.gotc - adapter->gotc_old;
4989 adapter->gotc_old = adapter->stats.gotc;
Flavio Leitner2084b112011-04-05 04:27:43 +00004990 spin_unlock(&adapter->stats64_lock);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004991
Bruce Allan12d43f72012-12-05 06:26:14 +00004992 if (adapter->flags & FLAG_RESTART_NOW) {
Bruce Allan90da0662011-01-06 07:02:53 +00004993 schedule_work(&adapter->reset_task);
4994 /* return immediately since reset is imminent */
4995 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004996 }
4997
Bruce Allan12d43f72012-12-05 06:26:14 +00004998 e1000e_update_adaptive(&adapter->hw);
4999
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005000 /* Simple mode for Interrupt Throttle Rate (ITR) */
5001 if (adapter->itr_setting == 4) {
Bruce Allane921eb12012-11-28 09:28:37 +00005002 /* Symmetric Tx/Rx gets a reduced ITR=2000;
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005003 * Total asymmetrical Tx or Rx gets ITR=8000;
5004 * everyone else is between 2000-8000.
5005 */
5006 u32 goc = (adapter->gotc + adapter->gorc) / 10000;
5007 u32 dif = (adapter->gotc > adapter->gorc ?
Bruce Allan17e813e2013-02-20 04:06:01 +00005008 adapter->gotc - adapter->gorc :
5009 adapter->gorc - adapter->gotc) / 10000;
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005010 u32 itr = goc > 0 ? (dif * 6000 / goc + 2000) : 8000;
5011
Matthew Vick22a4cca2012-07-12 00:02:42 +00005012 e1000e_write_itr(adapter, itr);
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005013 }
5014
Bruce Allanad680762008-03-28 09:15:03 -07005015 /* Cause software interrupt to ensure Rx ring is cleaned */
Bruce Allan4662e822008-08-26 18:37:06 -07005016 if (adapter->msix_entries)
5017 ew32(ICS, adapter->rx_ring->ims_val);
5018 else
5019 ew32(ICS, E1000_ICS_RXDMT0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005020
Jesse Brandeburg713b3c92011-02-02 10:19:50 +00005021 /* flush pending descriptors to memory before detecting Tx hang */
5022 e1000e_flush_descriptors(adapter);
5023
Auke Kokbc7f75f2007-09-17 12:30:59 -07005024 /* Force detection of hung controller every watchdog period */
Rusty Russell3db1cd52011-12-19 13:56:45 +00005025 adapter->detect_tx_hung = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005026
Bruce Allane921eb12012-11-28 09:28:37 +00005027 /* With 82571 controllers, LAA may be overwritten due to controller
Bruce Allanad680762008-03-28 09:15:03 -07005028 * reset from the other port. Set the appropriate LAA in RAR[0]
5029 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005030 if (e1000e_get_laa_state_82571(hw))
Bruce Allan69e1e012012-04-14 03:28:50 +00005031 hw->mac.ops.rar_set(hw, adapter->hw.mac.addr, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005032
Carolyn Wybornyff10e132010-10-28 00:59:53 +00005033 if (adapter->flags2 & FLAG2_CHECK_PHY_HANG)
5034 e1000e_check_82574_phy_workaround(adapter);
5035
Bruce Allanb67e1912012-12-27 08:32:33 +00005036 /* Clear valid timestamp stuck in RXSTMPL/H due to a Rx error */
5037 if (adapter->hwtstamp_config.rx_filter != HWTSTAMP_FILTER_NONE) {
5038 if ((adapter->flags2 & FLAG2_CHECK_RX_HWTSTAMP) &&
5039 (er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_VALID)) {
5040 er32(RXSTMPH);
5041 adapter->rx_hwtstamp_cleared++;
5042 } else {
5043 adapter->flags2 |= FLAG2_CHECK_RX_HWTSTAMP;
5044 }
5045 }
5046
Auke Kokbc7f75f2007-09-17 12:30:59 -07005047 /* Reset the timer */
5048 if (!test_bit(__E1000_DOWN, &adapter->state))
5049 mod_timer(&adapter->watchdog_timer,
5050 round_jiffies(jiffies + 2 * HZ));
5051}
5052
5053#define E1000_TX_FLAGS_CSUM 0x00000001
5054#define E1000_TX_FLAGS_VLAN 0x00000002
5055#define E1000_TX_FLAGS_TSO 0x00000004
5056#define E1000_TX_FLAGS_IPV4 0x00000008
Ben Greear943146d2012-02-11 15:39:40 +00005057#define E1000_TX_FLAGS_NO_FCS 0x00000010
Bruce Allanb67e1912012-12-27 08:32:33 +00005058#define E1000_TX_FLAGS_HWTSTAMP 0x00000020
Auke Kokbc7f75f2007-09-17 12:30:59 -07005059#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
5060#define E1000_TX_FLAGS_VLAN_SHIFT 16
5061
Bruce Allan55aa6982011-12-16 00:45:45 +00005062static int e1000_tso(struct e1000_ring *tx_ring, struct sk_buff *skb)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005063{
Auke Kokbc7f75f2007-09-17 12:30:59 -07005064 struct e1000_context_desc *context_desc;
5065 struct e1000_buffer *buffer_info;
5066 unsigned int i;
5067 u32 cmd_length = 0;
Bruce Allan70443ae2012-08-17 06:18:13 +00005068 u16 ipcse = 0, mss;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005069 u8 ipcss, ipcso, tucss, tucso, hdr_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005070
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005071 if (!skb_is_gso(skb))
5072 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005073
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005074 if (skb_header_cloned(skb)) {
Bruce Allan90da0662011-01-06 07:02:53 +00005075 int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
5076
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005077 if (err)
5078 return err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005079 }
5080
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005081 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
5082 mss = skb_shinfo(skb)->gso_size;
5083 if (skb->protocol == htons(ETH_P_IP)) {
5084 struct iphdr *iph = ip_hdr(skb);
5085 iph->tot_len = 0;
5086 iph->check = 0;
5087 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
Bruce Allanf0ff4392013-02-20 04:05:39 +00005088 0, IPPROTO_TCP, 0);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005089 cmd_length = E1000_TXD_CMD_IP;
5090 ipcse = skb_transport_offset(skb) - 1;
Sridhar Samudrala8e1e8a42010-01-23 02:02:21 -08005091 } else if (skb_is_gso_v6(skb)) {
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005092 ipv6_hdr(skb)->payload_len = 0;
5093 tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
Bruce Allanf0ff4392013-02-20 04:05:39 +00005094 &ipv6_hdr(skb)->daddr,
5095 0, IPPROTO_TCP, 0);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005096 ipcse = 0;
5097 }
5098 ipcss = skb_network_offset(skb);
5099 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
5100 tucss = skb_transport_offset(skb);
5101 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005102
5103 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
Bruce Allanf0ff4392013-02-20 04:05:39 +00005104 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005105
5106 i = tx_ring->next_to_use;
5107 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
5108 buffer_info = &tx_ring->buffer_info[i];
5109
Bruce Allane80bd1d2013-05-01 01:19:46 +00005110 context_desc->lower_setup.ip_fields.ipcss = ipcss;
5111 context_desc->lower_setup.ip_fields.ipcso = ipcso;
5112 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005113 context_desc->upper_setup.tcp_fields.tucss = tucss;
5114 context_desc->upper_setup.tcp_fields.tucso = tucso;
Bruce Allan70443ae2012-08-17 06:18:13 +00005115 context_desc->upper_setup.tcp_fields.tucse = 0;
Bruce Allane80bd1d2013-05-01 01:19:46 +00005116 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005117 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
5118 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
5119
5120 buffer_info->time_stamp = jiffies;
5121 buffer_info->next_to_watch = i;
5122
5123 i++;
5124 if (i == tx_ring->count)
5125 i = 0;
5126 tx_ring->next_to_use = i;
5127
5128 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005129}
5130
Bruce Allan55aa6982011-12-16 00:45:45 +00005131static bool e1000_tx_csum(struct e1000_ring *tx_ring, struct sk_buff *skb)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005132{
Bruce Allan55aa6982011-12-16 00:45:45 +00005133 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005134 struct e1000_context_desc *context_desc;
5135 struct e1000_buffer *buffer_info;
5136 unsigned int i;
5137 u8 css;
Dave Grahamaf807c82008-10-09 14:28:58 -07005138 u32 cmd_len = E1000_TXD_CMD_DEXT;
Arthur Jones5f66f202009-03-19 01:13:08 +00005139 __be16 protocol;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005140
Dave Grahamaf807c82008-10-09 14:28:58 -07005141 if (skb->ip_summed != CHECKSUM_PARTIAL)
5142 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005143
Arthur Jones5f66f202009-03-19 01:13:08 +00005144 if (skb->protocol == cpu_to_be16(ETH_P_8021Q))
5145 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
5146 else
5147 protocol = skb->protocol;
5148
Arthur Jones3f518392009-03-20 15:56:35 -07005149 switch (protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08005150 case cpu_to_be16(ETH_P_IP):
Dave Grahamaf807c82008-10-09 14:28:58 -07005151 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
5152 cmd_len |= E1000_TXD_CMD_TCP;
5153 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08005154 case cpu_to_be16(ETH_P_IPV6):
Dave Grahamaf807c82008-10-09 14:28:58 -07005155 /* XXX not handling all IPV6 headers */
5156 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
5157 cmd_len |= E1000_TXD_CMD_TCP;
5158 break;
5159 default:
5160 if (unlikely(net_ratelimit()))
Arthur Jones5f66f202009-03-19 01:13:08 +00005161 e_warn("checksum_partial proto=%x!\n",
5162 be16_to_cpu(protocol));
Dave Grahamaf807c82008-10-09 14:28:58 -07005163 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005164 }
5165
Michał Mirosław0d0b1672010-12-14 15:24:08 +00005166 css = skb_checksum_start_offset(skb);
Dave Grahamaf807c82008-10-09 14:28:58 -07005167
5168 i = tx_ring->next_to_use;
5169 buffer_info = &tx_ring->buffer_info[i];
5170 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
5171
5172 context_desc->lower_setup.ip_config = 0;
5173 context_desc->upper_setup.tcp_fields.tucss = css;
Bruce Allanf0ff4392013-02-20 04:05:39 +00005174 context_desc->upper_setup.tcp_fields.tucso = css + skb->csum_offset;
Dave Grahamaf807c82008-10-09 14:28:58 -07005175 context_desc->upper_setup.tcp_fields.tucse = 0;
5176 context_desc->tcp_seg_setup.data = 0;
5177 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
5178
5179 buffer_info->time_stamp = jiffies;
5180 buffer_info->next_to_watch = i;
5181
5182 i++;
5183 if (i == tx_ring->count)
5184 i = 0;
5185 tx_ring->next_to_use = i;
5186
5187 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005188}
5189
Bruce Allan55aa6982011-12-16 00:45:45 +00005190static int e1000_tx_map(struct e1000_ring *tx_ring, struct sk_buff *skb,
5191 unsigned int first, unsigned int max_per_txd,
Bruce Alland821a4c2012-08-24 20:38:11 +00005192 unsigned int nr_frags)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005193{
Bruce Allan55aa6982011-12-16 00:45:45 +00005194 struct e1000_adapter *adapter = tx_ring->adapter;
Alexander Duyck03b13202009-12-02 16:45:31 +00005195 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005196 struct e1000_buffer *buffer_info;
Jesse Brandeburg8ddc9512009-03-02 16:02:53 -08005197 unsigned int len = skb_headlen(skb);
Alexander Duyck03b13202009-12-02 16:45:31 +00005198 unsigned int offset = 0, size, count = 0, i;
Tom Herbert9ed318d2010-05-05 14:02:27 +00005199 unsigned int f, bytecount, segs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005200
5201 i = tx_ring->next_to_use;
5202
5203 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005204 buffer_info = &tx_ring->buffer_info[i];
Auke Kokbc7f75f2007-09-17 12:30:59 -07005205 size = min(len, max_per_txd);
5206
Auke Kokbc7f75f2007-09-17 12:30:59 -07005207 buffer_info->length = size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005208 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005209 buffer_info->next_to_watch = i;
Nick Nunley0be3f552010-04-27 13:09:05 +00005210 buffer_info->dma = dma_map_single(&pdev->dev,
5211 skb->data + offset,
Bruce Allanaf667a22010-12-31 06:10:01 +00005212 size, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00005213 buffer_info->mapped_as_page = false;
Nick Nunley0be3f552010-04-27 13:09:05 +00005214 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00005215 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005216
5217 len -= size;
5218 offset += size;
Alexander Duyck03b13202009-12-02 16:45:31 +00005219 count++;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005220
5221 if (len) {
5222 i++;
5223 if (i == tx_ring->count)
5224 i = 0;
5225 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005226 }
5227
5228 for (f = 0; f < nr_frags; f++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00005229 const struct skb_frag_struct *frag;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005230
5231 frag = &skb_shinfo(skb)->frags[f];
Eric Dumazet9e903e02011-10-18 21:00:24 +00005232 len = skb_frag_size(frag);
Ian Campbell877749b2011-08-29 23:18:26 +00005233 offset = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005234
5235 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005236 i++;
5237 if (i == tx_ring->count)
5238 i = 0;
5239
Auke Kokbc7f75f2007-09-17 12:30:59 -07005240 buffer_info = &tx_ring->buffer_info[i];
5241 size = min(len, max_per_txd);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005242
5243 buffer_info->length = size;
5244 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005245 buffer_info->next_to_watch = i;
Ian Campbell877749b2011-08-29 23:18:26 +00005246 buffer_info->dma = skb_frag_dma_map(&pdev->dev, frag,
Bruce Allan17e813e2013-02-20 04:06:01 +00005247 offset, size,
5248 DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00005249 buffer_info->mapped_as_page = true;
Nick Nunley0be3f552010-04-27 13:09:05 +00005250 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00005251 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005252
5253 len -= size;
5254 offset += size;
5255 count++;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005256 }
5257 }
5258
Bruce Allanaf667a22010-12-31 06:10:01 +00005259 segs = skb_shinfo(skb)->gso_segs ? : 1;
Tom Herbert9ed318d2010-05-05 14:02:27 +00005260 /* multiply data chunks by size of headers */
5261 bytecount = ((segs - 1) * skb_headlen(skb)) + skb->len;
5262
Auke Kokbc7f75f2007-09-17 12:30:59 -07005263 tx_ring->buffer_info[i].skb = skb;
Tom Herbert9ed318d2010-05-05 14:02:27 +00005264 tx_ring->buffer_info[i].segs = segs;
5265 tx_ring->buffer_info[i].bytecount = bytecount;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005266 tx_ring->buffer_info[first].next_to_watch = i;
5267
5268 return count;
Alexander Duyck03b13202009-12-02 16:45:31 +00005269
5270dma_error:
Bruce Allanaf667a22010-12-31 06:10:01 +00005271 dev_err(&pdev->dev, "Tx DMA map failed\n");
Alexander Duyck03b13202009-12-02 16:45:31 +00005272 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00005273 if (count)
Alexander Duyck03b13202009-12-02 16:45:31 +00005274 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00005275
5276 while (count--) {
Bruce Allanaf667a22010-12-31 06:10:01 +00005277 if (i == 0)
Alexander Duyck03b13202009-12-02 16:45:31 +00005278 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00005279 i--;
Alexander Duyck03b13202009-12-02 16:45:31 +00005280 buffer_info = &tx_ring->buffer_info[i];
Bruce Allan55aa6982011-12-16 00:45:45 +00005281 e1000_put_txbuf(tx_ring, buffer_info);
Alexander Duyck03b13202009-12-02 16:45:31 +00005282 }
5283
5284 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005285}
5286
Bruce Allan55aa6982011-12-16 00:45:45 +00005287static void e1000_tx_queue(struct e1000_ring *tx_ring, int tx_flags, int count)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005288{
Bruce Allan55aa6982011-12-16 00:45:45 +00005289 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005290 struct e1000_tx_desc *tx_desc = NULL;
5291 struct e1000_buffer *buffer_info;
5292 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
5293 unsigned int i;
5294
5295 if (tx_flags & E1000_TX_FLAGS_TSO) {
5296 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
Bruce Allanf0ff4392013-02-20 04:05:39 +00005297 E1000_TXD_CMD_TSE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005298 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
5299
5300 if (tx_flags & E1000_TX_FLAGS_IPV4)
5301 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
5302 }
5303
5304 if (tx_flags & E1000_TX_FLAGS_CSUM) {
5305 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
5306 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
5307 }
5308
5309 if (tx_flags & E1000_TX_FLAGS_VLAN) {
5310 txd_lower |= E1000_TXD_CMD_VLE;
5311 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
5312 }
5313
Ben Greear943146d2012-02-11 15:39:40 +00005314 if (unlikely(tx_flags & E1000_TX_FLAGS_NO_FCS))
5315 txd_lower &= ~(E1000_TXD_CMD_IFCS);
5316
Bruce Allanb67e1912012-12-27 08:32:33 +00005317 if (unlikely(tx_flags & E1000_TX_FLAGS_HWTSTAMP)) {
5318 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
5319 txd_upper |= E1000_TXD_EXTCMD_TSTAMP;
5320 }
5321
Auke Kokbc7f75f2007-09-17 12:30:59 -07005322 i = tx_ring->next_to_use;
5323
Bruce Allan36b973d2010-11-24 07:42:43 +00005324 do {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005325 buffer_info = &tx_ring->buffer_info[i];
5326 tx_desc = E1000_TX_DESC(*tx_ring, i);
5327 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
Bruce Allanf0ff4392013-02-20 04:05:39 +00005328 tx_desc->lower.data = cpu_to_le32(txd_lower |
5329 buffer_info->length);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005330 tx_desc->upper.data = cpu_to_le32(txd_upper);
5331
5332 i++;
5333 if (i == tx_ring->count)
5334 i = 0;
Bruce Allan36b973d2010-11-24 07:42:43 +00005335 } while (--count > 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005336
5337 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
5338
Ben Greear943146d2012-02-11 15:39:40 +00005339 /* txd_cmd re-enables FCS, so we'll re-disable it here as desired. */
5340 if (unlikely(tx_flags & E1000_TX_FLAGS_NO_FCS))
5341 tx_desc->lower.data &= ~(cpu_to_le32(E1000_TXD_CMD_IFCS));
5342
Bruce Allane921eb12012-11-28 09:28:37 +00005343 /* Force memory writes to complete before letting h/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07005344 * know there are new descriptors to fetch. (Only
5345 * applicable for weak-ordered memory model archs,
Bruce Allanad680762008-03-28 09:15:03 -07005346 * such as IA-64).
5347 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005348 wmb();
5349
5350 tx_ring->next_to_use = i;
David S. Miller823dcd22011-08-20 10:39:12 -07005351
5352 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allan55aa6982011-12-16 00:45:45 +00005353 e1000e_update_tdt_wa(tx_ring, i);
David S. Miller823dcd22011-08-20 10:39:12 -07005354 else
Bruce Allanc5083cf2011-12-16 00:45:40 +00005355 writel(i, tx_ring->tail);
David S. Miller823dcd22011-08-20 10:39:12 -07005356
Bruce Allane921eb12012-11-28 09:28:37 +00005357 /* we need this if more than one processor can write to our tail
Bruce Allanad680762008-03-28 09:15:03 -07005358 * at a time, it synchronizes IO on IA64/Altix systems
5359 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005360 mmiowb();
5361}
5362
5363#define MINIMUM_DHCP_PACKET_SIZE 282
5364static int e1000_transfer_dhcp_info(struct e1000_adapter *adapter,
5365 struct sk_buff *skb)
5366{
Bruce Allane80bd1d2013-05-01 01:19:46 +00005367 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005368 u16 length, offset;
5369
Bruce Alland60923c2012-12-05 06:26:56 +00005370 if (vlan_tx_tag_present(skb) &&
5371 !((vlan_tx_tag_get(skb) == adapter->hw.mng_cookie.vlan_id) &&
5372 (adapter->hw.mng_cookie.status &
5373 E1000_MNG_DHCP_COOKIE_STATUS_VLAN)))
5374 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005375
5376 if (skb->len <= MINIMUM_DHCP_PACKET_SIZE)
5377 return 0;
5378
Bruce Allan53aa82d2013-02-20 04:06:06 +00005379 if (((struct ethhdr *)skb->data)->h_proto != htons(ETH_P_IP))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005380 return 0;
5381
5382 {
Bruce Allan362e20c2013-02-20 04:05:45 +00005383 const struct iphdr *ip = (struct iphdr *)((u8 *)skb->data + 14);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005384 struct udphdr *udp;
5385
5386 if (ip->protocol != IPPROTO_UDP)
5387 return 0;
5388
5389 udp = (struct udphdr *)((u8 *)ip + (ip->ihl << 2));
5390 if (ntohs(udp->dest) != 67)
5391 return 0;
5392
5393 offset = (u8 *)udp + 8 - skb->data;
5394 length = skb->len - offset;
5395 return e1000e_mng_write_dhcp_info(hw, (u8 *)udp + 8, length);
5396 }
5397
5398 return 0;
5399}
5400
Bruce Allan55aa6982011-12-16 00:45:45 +00005401static int __e1000_maybe_stop_tx(struct e1000_ring *tx_ring, int size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005402{
Bruce Allan55aa6982011-12-16 00:45:45 +00005403 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005404
Bruce Allan55aa6982011-12-16 00:45:45 +00005405 netif_stop_queue(adapter->netdev);
Bruce Allane921eb12012-11-28 09:28:37 +00005406 /* Herbert's original patch had:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005407 * smp_mb__after_netif_stop_queue();
Bruce Allanad680762008-03-28 09:15:03 -07005408 * but since that doesn't exist yet, just open code it.
5409 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005410 smp_mb();
5411
Bruce Allane921eb12012-11-28 09:28:37 +00005412 /* We need to check again in a case another CPU has just
Bruce Allanad680762008-03-28 09:15:03 -07005413 * made room available.
5414 */
Bruce Allan55aa6982011-12-16 00:45:45 +00005415 if (e1000_desc_unused(tx_ring) < size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005416 return -EBUSY;
5417
5418 /* A reprieve! */
Bruce Allan55aa6982011-12-16 00:45:45 +00005419 netif_start_queue(adapter->netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005420 ++adapter->restart_queue;
5421 return 0;
5422}
5423
Bruce Allan55aa6982011-12-16 00:45:45 +00005424static int e1000_maybe_stop_tx(struct e1000_ring *tx_ring, int size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005425{
Bruce Alland821a4c2012-08-24 20:38:11 +00005426 BUG_ON(size > tx_ring->count);
5427
Bruce Allan55aa6982011-12-16 00:45:45 +00005428 if (e1000_desc_unused(tx_ring) >= size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005429 return 0;
Bruce Allan55aa6982011-12-16 00:45:45 +00005430 return __e1000_maybe_stop_tx(tx_ring, size);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005431}
5432
Stephen Hemminger3b29a562009-08-31 19:50:55 +00005433static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
5434 struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005435{
5436 struct e1000_adapter *adapter = netdev_priv(netdev);
5437 struct e1000_ring *tx_ring = adapter->tx_ring;
5438 unsigned int first;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005439 unsigned int tx_flags = 0;
Eric Dumazete743d312010-04-14 15:59:40 -07005440 unsigned int len = skb_headlen(skb);
Auke Kok4e6c7092007-10-05 14:15:23 -07005441 unsigned int nr_frags;
5442 unsigned int mss;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005443 int count = 0;
5444 int tso;
5445 unsigned int f;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005446
5447 if (test_bit(__E1000_DOWN, &adapter->state)) {
5448 dev_kfree_skb_any(skb);
5449 return NETDEV_TX_OK;
5450 }
5451
5452 if (skb->len <= 0) {
5453 dev_kfree_skb_any(skb);
5454 return NETDEV_TX_OK;
5455 }
5456
Bruce Allane921eb12012-11-28 09:28:37 +00005457 /* The minimum packet size with TCTL.PSP set is 17 bytes so
Tushar Dave6e97c172012-09-14 02:21:37 +00005458 * pad skb in order to meet this minimum size requirement
5459 */
5460 if (unlikely(skb->len < 17)) {
5461 if (skb_pad(skb, 17 - skb->len))
5462 return NETDEV_TX_OK;
5463 skb->len = 17;
5464 skb_set_tail_pointer(skb, 17);
5465 }
5466
Auke Kokbc7f75f2007-09-17 12:30:59 -07005467 mss = skb_shinfo(skb)->gso_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005468 if (mss) {
5469 u8 hdr_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005470
Bruce Allane921eb12012-11-28 09:28:37 +00005471 /* TSO Workaround for 82571/2/3 Controllers -- if skb->data
Bruce Allanad680762008-03-28 09:15:03 -07005472 * points to just header, pull a few bytes of payload from
5473 * frags into skb->data
5474 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005475 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Bruce Allane921eb12012-11-28 09:28:37 +00005476 /* we do this workaround for ES2LAN, but it is un-necessary,
Bruce Allanad680762008-03-28 09:15:03 -07005477 * avoiding it could save a lot of cycles
5478 */
Auke Kok4e6c7092007-10-05 14:15:23 -07005479 if (skb->data_len && (hdr_len == len)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005480 unsigned int pull_size;
5481
Bruce Allana2a5b322012-01-31 06:37:17 +00005482 pull_size = min_t(unsigned int, 4, skb->data_len);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005483 if (!__pskb_pull_tail(skb, pull_size)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005484 e_err("__pskb_pull_tail failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005485 dev_kfree_skb_any(skb);
5486 return NETDEV_TX_OK;
5487 }
Eric Dumazete743d312010-04-14 15:59:40 -07005488 len = skb_headlen(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005489 }
5490 }
5491
5492 /* reserve a descriptor for the offload context */
5493 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
5494 count++;
5495 count++;
5496
Bruce Alland821a4c2012-08-24 20:38:11 +00005497 count += DIV_ROUND_UP(len, adapter->tx_fifo_limit);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005498
5499 nr_frags = skb_shinfo(skb)->nr_frags;
5500 for (f = 0; f < nr_frags; f++)
Bruce Alland821a4c2012-08-24 20:38:11 +00005501 count += DIV_ROUND_UP(skb_frag_size(&skb_shinfo(skb)->frags[f]),
5502 adapter->tx_fifo_limit);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005503
5504 if (adapter->hw.mac.tx_pkt_filtering)
5505 e1000_transfer_dhcp_info(adapter, skb);
5506
Bruce Allane921eb12012-11-28 09:28:37 +00005507 /* need: count + 2 desc gap to keep tail from touching
Bruce Allanad680762008-03-28 09:15:03 -07005508 * head, otherwise try next time
5509 */
Bruce Allan55aa6982011-12-16 00:45:45 +00005510 if (e1000_maybe_stop_tx(tx_ring, count + 2))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005511 return NETDEV_TX_BUSY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005512
Jesse Grosseab6d182010-10-20 13:56:03 +00005513 if (vlan_tx_tag_present(skb)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005514 tx_flags |= E1000_TX_FLAGS_VLAN;
5515 tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
5516 }
5517
5518 first = tx_ring->next_to_use;
5519
Bruce Allan55aa6982011-12-16 00:45:45 +00005520 tso = e1000_tso(tx_ring, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005521 if (tso < 0) {
5522 dev_kfree_skb_any(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005523 return NETDEV_TX_OK;
5524 }
5525
5526 if (tso)
5527 tx_flags |= E1000_TX_FLAGS_TSO;
Bruce Allan55aa6982011-12-16 00:45:45 +00005528 else if (e1000_tx_csum(tx_ring, skb))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005529 tx_flags |= E1000_TX_FLAGS_CSUM;
5530
Bruce Allane921eb12012-11-28 09:28:37 +00005531 /* Old method was to assume IPv4 packet by default if TSO was enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005532 * 82571 hardware supports TSO capabilities for IPv6 as well...
Bruce Allanad680762008-03-28 09:15:03 -07005533 * no longer assume, we must.
5534 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005535 if (skb->protocol == htons(ETH_P_IP))
5536 tx_flags |= E1000_TX_FLAGS_IPV4;
5537
Ben Greear943146d2012-02-11 15:39:40 +00005538 if (unlikely(skb->no_fcs))
5539 tx_flags |= E1000_TX_FLAGS_NO_FCS;
5540
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005541 /* if count is 0 then mapping error has occurred */
Bruce Alland821a4c2012-08-24 20:38:11 +00005542 count = e1000_tx_map(tx_ring, skb, first, adapter->tx_fifo_limit,
5543 nr_frags);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005544 if (count) {
Bruce Allanb67e1912012-12-27 08:32:33 +00005545 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
5546 !adapter->tx_hwtstamp_skb)) {
5547 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
5548 tx_flags |= E1000_TX_FLAGS_HWTSTAMP;
5549 adapter->tx_hwtstamp_skb = skb_get(skb);
5550 schedule_work(&adapter->tx_hwtstamp_work);
5551 } else {
5552 skb_tx_timestamp(skb);
5553 }
Willem de Bruijn80be3122012-04-27 09:04:05 +00005554
Tom Herbert3f0cfa32011-11-28 16:33:16 +00005555 netdev_sent_queue(netdev, skb->len);
Bruce Allan55aa6982011-12-16 00:45:45 +00005556 e1000_tx_queue(tx_ring, tx_flags, count);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005557 /* Make sure there is space in the ring for the next send. */
Bruce Alland821a4c2012-08-24 20:38:11 +00005558 e1000_maybe_stop_tx(tx_ring,
5559 (MAX_SKB_FRAGS *
5560 DIV_ROUND_UP(PAGE_SIZE,
5561 adapter->tx_fifo_limit) + 2));
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005562 } else {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005563 dev_kfree_skb_any(skb);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005564 tx_ring->buffer_info[first].time_stamp = 0;
5565 tx_ring->next_to_use = first;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005566 }
5567
Auke Kokbc7f75f2007-09-17 12:30:59 -07005568 return NETDEV_TX_OK;
5569}
5570
5571/**
5572 * e1000_tx_timeout - Respond to a Tx Hang
5573 * @netdev: network interface device structure
5574 **/
5575static void e1000_tx_timeout(struct net_device *netdev)
5576{
5577 struct e1000_adapter *adapter = netdev_priv(netdev);
5578
5579 /* Do the reset outside of interrupt context */
5580 adapter->tx_timeout_count++;
5581 schedule_work(&adapter->reset_task);
5582}
5583
5584static void e1000_reset_task(struct work_struct *work)
5585{
5586 struct e1000_adapter *adapter;
5587 adapter = container_of(work, struct e1000_adapter, reset_task);
5588
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00005589 /* don't run the task if already down */
5590 if (test_bit(__E1000_DOWN, &adapter->state))
5591 return;
5592
Bruce Allan12d43f72012-12-05 06:26:14 +00005593 if (!(adapter->flags & FLAG_RESTART_NOW)) {
Carolyn Wybornyaffa9df2010-10-28 00:59:55 +00005594 e1000e_dump(adapter);
Bruce Allan12d43f72012-12-05 06:26:14 +00005595 e_err("Reset adapter unexpectedly\n");
Carolyn Wybornyaffa9df2010-10-28 00:59:55 +00005596 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005597 e1000e_reinit_locked(adapter);
5598}
5599
5600/**
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005601 * e1000_get_stats64 - Get System Network Statistics
Auke Kokbc7f75f2007-09-17 12:30:59 -07005602 * @netdev: network interface device structure
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005603 * @stats: rtnl_link_stats64 pointer
Auke Kokbc7f75f2007-09-17 12:30:59 -07005604 *
5605 * Returns the address of the device statistics structure.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005606 **/
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005607struct rtnl_link_stats64 *e1000e_get_stats64(struct net_device *netdev,
Bruce Allan66501f52013-02-20 04:05:55 +00005608 struct rtnl_link_stats64 *stats)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005609{
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005610 struct e1000_adapter *adapter = netdev_priv(netdev);
5611
5612 memset(stats, 0, sizeof(struct rtnl_link_stats64));
5613 spin_lock(&adapter->stats64_lock);
5614 e1000e_update_stats(adapter);
5615 /* Fill out the OS statistics structure */
5616 stats->rx_bytes = adapter->stats.gorc;
5617 stats->rx_packets = adapter->stats.gprc;
5618 stats->tx_bytes = adapter->stats.gotc;
5619 stats->tx_packets = adapter->stats.gptc;
5620 stats->multicast = adapter->stats.mprc;
5621 stats->collisions = adapter->stats.colc;
5622
5623 /* Rx Errors */
5624
Bruce Allane921eb12012-11-28 09:28:37 +00005625 /* RLEC on some newer hardware can be incorrect so build
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005626 * our own version based on RUC and ROC
5627 */
5628 stats->rx_errors = adapter->stats.rxerrc +
Bruce Allanf0ff4392013-02-20 04:05:39 +00005629 adapter->stats.crcerrs + adapter->stats.algnerrc +
5630 adapter->stats.ruc + adapter->stats.roc + adapter->stats.cexterr;
5631 stats->rx_length_errors = adapter->stats.ruc + adapter->stats.roc;
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005632 stats->rx_crc_errors = adapter->stats.crcerrs;
5633 stats->rx_frame_errors = adapter->stats.algnerrc;
5634 stats->rx_missed_errors = adapter->stats.mpc;
5635
5636 /* Tx Errors */
Bruce Allanf0ff4392013-02-20 04:05:39 +00005637 stats->tx_errors = adapter->stats.ecol + adapter->stats.latecol;
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005638 stats->tx_aborted_errors = adapter->stats.ecol;
5639 stats->tx_window_errors = adapter->stats.latecol;
5640 stats->tx_carrier_errors = adapter->stats.tncrs;
5641
5642 /* Tx Dropped needs to be maintained elsewhere */
5643
5644 spin_unlock(&adapter->stats64_lock);
5645 return stats;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005646}
5647
5648/**
5649 * e1000_change_mtu - Change the Maximum Transfer Unit
5650 * @netdev: network interface device structure
5651 * @new_mtu: new value for maximum frame size
5652 *
5653 * Returns 0 on success, negative on failure
5654 **/
5655static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
5656{
5657 struct e1000_adapter *adapter = netdev_priv(netdev);
5658 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5659
Bruce Allan2adc55c2009-06-02 11:28:58 +00005660 /* Jumbo frame support */
Bruce Allan2e1706f2012-06-30 20:02:42 +00005661 if ((max_frame > ETH_FRAME_LEN + ETH_FCS_LEN) &&
5662 !(adapter->flags & FLAG_HAS_JUMBO_FRAMES)) {
5663 e_err("Jumbo Frames not supported.\n");
5664 return -EINVAL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005665 }
5666
Bruce Allan2adc55c2009-06-02 11:28:58 +00005667 /* Supported frame sizes */
5668 if ((new_mtu < ETH_ZLEN + ETH_FCS_LEN + VLAN_HLEN) ||
5669 (max_frame > adapter->max_hw_frame_size)) {
5670 e_err("Unsupported MTU setting\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005671 return -EINVAL;
5672 }
5673
Bruce Allan2fbe4522012-04-19 03:21:47 +00005674 /* Jumbo frame workaround on 82579 and newer requires CRC be stripped */
5675 if ((adapter->hw.mac.type >= e1000_pch2lan) &&
Bruce Allana1ce6472010-09-22 17:16:40 +00005676 !(adapter->flags2 & FLAG2_CRC_STRIPPING) &&
5677 (new_mtu > ETH_DATA_LEN)) {
Bruce Allan2fbe4522012-04-19 03:21:47 +00005678 e_err("Jumbo Frames not supported on this device when CRC stripping is disabled.\n");
Bruce Allana1ce6472010-09-22 17:16:40 +00005679 return -EINVAL;
5680 }
5681
Auke Kokbc7f75f2007-09-17 12:30:59 -07005682 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
Bruce Allan1bba4382011-03-19 00:27:20 +00005683 usleep_range(1000, 2000);
Bruce Allan610c9922009-11-19 12:35:45 +00005684 /* e1000e_down -> e1000e_reset dependent on max_frame_size & mtu */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005685 adapter->max_frame_size = max_frame;
Bruce Allan610c9922009-11-19 12:35:45 +00005686 e_info("changing MTU from %d to %d\n", netdev->mtu, new_mtu);
5687 netdev->mtu = new_mtu;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005688 if (netif_running(netdev))
5689 e1000e_down(adapter);
5690
Bruce Allane921eb12012-11-28 09:28:37 +00005691 /* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kokbc7f75f2007-09-17 12:30:59 -07005692 * means we reserve 2 more, this pushes us to allocate from the next
5693 * larger slab size.
Bruce Allanad680762008-03-28 09:15:03 -07005694 * i.e. RXBUFFER_2048 --> size-4096 slab
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005695 * However with the new *_jumbo_rx* routines, jumbo receives will use
5696 * fragmented skbs
Bruce Allanad680762008-03-28 09:15:03 -07005697 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005698
Jesse Brandeburg99261462010-01-22 22:56:16 +00005699 if (max_frame <= 2048)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005700 adapter->rx_buffer_len = 2048;
5701 else
5702 adapter->rx_buffer_len = 4096;
5703
5704 /* adjust allocation if LPE protects us, and we aren't using SBP */
5705 if ((max_frame == ETH_FRAME_LEN + ETH_FCS_LEN) ||
Bruce Allan17e813e2013-02-20 04:06:01 +00005706 (max_frame == ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005707 adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN
Bruce Allan17e813e2013-02-20 04:06:01 +00005708 + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005709
Auke Kokbc7f75f2007-09-17 12:30:59 -07005710 if (netif_running(netdev))
5711 e1000e_up(adapter);
5712 else
5713 e1000e_reset(adapter);
5714
5715 clear_bit(__E1000_RESETTING, &adapter->state);
5716
5717 return 0;
5718}
5719
5720static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
5721 int cmd)
5722{
5723 struct e1000_adapter *adapter = netdev_priv(netdev);
5724 struct mii_ioctl_data *data = if_mii(ifr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005725
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005726 if (adapter->hw.phy.media_type != e1000_media_type_copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005727 return -EOPNOTSUPP;
5728
5729 switch (cmd) {
5730 case SIOCGMIIPHY:
5731 data->phy_id = adapter->hw.phy.addr;
5732 break;
5733 case SIOCGMIIREG:
Bruce Allanb16a0022009-11-20 23:24:30 +00005734 e1000_phy_read_status(adapter);
5735
Bruce Allan7c257692008-04-23 11:09:00 -07005736 switch (data->reg_num & 0x1F) {
5737 case MII_BMCR:
5738 data->val_out = adapter->phy_regs.bmcr;
5739 break;
5740 case MII_BMSR:
5741 data->val_out = adapter->phy_regs.bmsr;
5742 break;
5743 case MII_PHYSID1:
5744 data->val_out = (adapter->hw.phy.id >> 16);
5745 break;
5746 case MII_PHYSID2:
5747 data->val_out = (adapter->hw.phy.id & 0xFFFF);
5748 break;
5749 case MII_ADVERTISE:
5750 data->val_out = adapter->phy_regs.advertise;
5751 break;
5752 case MII_LPA:
5753 data->val_out = adapter->phy_regs.lpa;
5754 break;
5755 case MII_EXPANSION:
5756 data->val_out = adapter->phy_regs.expansion;
5757 break;
5758 case MII_CTRL1000:
5759 data->val_out = adapter->phy_regs.ctrl1000;
5760 break;
5761 case MII_STAT1000:
5762 data->val_out = adapter->phy_regs.stat1000;
5763 break;
5764 case MII_ESTATUS:
5765 data->val_out = adapter->phy_regs.estatus;
5766 break;
5767 default:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005768 return -EIO;
5769 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005770 break;
5771 case SIOCSMIIREG:
5772 default:
5773 return -EOPNOTSUPP;
5774 }
5775 return 0;
5776}
5777
Bruce Allanb67e1912012-12-27 08:32:33 +00005778/**
5779 * e1000e_hwtstamp_ioctl - control hardware time stamping
5780 * @netdev: network interface device structure
5781 * @ifreq: interface request
5782 *
5783 * Outgoing time stamping can be enabled and disabled. Play nice and
5784 * disable it when requested, although it shouldn't cause any overhead
5785 * when no packet needs it. At most one packet in the queue may be
5786 * marked for time stamping, otherwise it would be impossible to tell
5787 * for sure to which packet the hardware time stamp belongs.
5788 *
5789 * Incoming time stamping has to be configured via the hardware filters.
5790 * Not all combinations are supported, in particular event type has to be
5791 * specified. Matching the kind of event packet is not supported, with the
5792 * exception of "all V2 events regardless of level 2 or 4".
5793 **/
5794static int e1000e_hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr)
5795{
5796 struct e1000_adapter *adapter = netdev_priv(netdev);
5797 struct hwtstamp_config config;
5798 int ret_val;
5799
5800 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
5801 return -EFAULT;
5802
5803 adapter->hwtstamp_config = config;
5804
5805 ret_val = e1000e_config_hwtstamp(adapter);
5806 if (ret_val)
5807 return ret_val;
5808
5809 config = adapter->hwtstamp_config;
5810
Bruce Alland89777b2013-01-19 01:09:58 +00005811 switch (config.rx_filter) {
5812 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
5813 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
5814 case HWTSTAMP_FILTER_PTP_V2_SYNC:
5815 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
5816 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
5817 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
5818 /* With V2 type filters which specify a Sync or Delay Request,
5819 * Path Delay Request/Response messages are also time stamped
5820 * by hardware so notify the caller the requested packets plus
5821 * some others are time stamped.
5822 */
5823 config.rx_filter = HWTSTAMP_FILTER_SOME;
5824 break;
5825 default:
5826 break;
5827 }
5828
Bruce Allanb67e1912012-12-27 08:32:33 +00005829 return copy_to_user(ifr->ifr_data, &config,
5830 sizeof(config)) ? -EFAULT : 0;
5831}
5832
Auke Kokbc7f75f2007-09-17 12:30:59 -07005833static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
5834{
5835 switch (cmd) {
5836 case SIOCGMIIPHY:
5837 case SIOCGMIIREG:
5838 case SIOCSMIIREG:
5839 return e1000_mii_ioctl(netdev, ifr, cmd);
Bruce Allanb67e1912012-12-27 08:32:33 +00005840 case SIOCSHWTSTAMP:
5841 return e1000e_hwtstamp_ioctl(netdev, ifr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005842 default:
5843 return -EOPNOTSUPP;
5844 }
5845}
5846
Bruce Allana4f58f52009-06-02 11:29:18 +00005847static int e1000_init_phy_wakeup(struct e1000_adapter *adapter, u32 wufc)
5848{
5849 struct e1000_hw *hw = &adapter->hw;
5850 u32 i, mac_reg;
Bruce Allan2b6b1682011-05-13 07:20:09 +00005851 u16 phy_reg, wuc_enable;
Bruce Allan70806a72013-01-05 05:08:37 +00005852 int retval;
Bruce Allana4f58f52009-06-02 11:29:18 +00005853
5854 /* copy MAC RARs to PHY RARs */
Bruce Alland3738bb2010-06-16 13:27:28 +00005855 e1000_copy_rx_addrs_to_phy_ich8lan(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00005856
Bruce Allan2b6b1682011-05-13 07:20:09 +00005857 retval = hw->phy.ops.acquire(hw);
5858 if (retval) {
5859 e_err("Could not acquire PHY\n");
5860 return retval;
5861 }
5862
5863 /* Enable access to wakeup registers on and set page to BM_WUC_PAGE */
5864 retval = e1000_enable_phy_wakeup_reg_access_bm(hw, &wuc_enable);
5865 if (retval)
Bruce Allan75ce1532012-02-08 02:54:48 +00005866 goto release;
Bruce Allan2b6b1682011-05-13 07:20:09 +00005867
5868 /* copy MAC MTA to PHY MTA - only needed for pchlan */
Bruce Allana4f58f52009-06-02 11:29:18 +00005869 for (i = 0; i < adapter->hw.mac.mta_reg_count; i++) {
5870 mac_reg = E1000_READ_REG_ARRAY(hw, E1000_MTA, i);
Bruce Allan2b6b1682011-05-13 07:20:09 +00005871 hw->phy.ops.write_reg_page(hw, BM_MTA(i),
5872 (u16)(mac_reg & 0xFFFF));
5873 hw->phy.ops.write_reg_page(hw, BM_MTA(i) + 1,
5874 (u16)((mac_reg >> 16) & 0xFFFF));
Bruce Allana4f58f52009-06-02 11:29:18 +00005875 }
5876
5877 /* configure PHY Rx Control register */
Bruce Allan2b6b1682011-05-13 07:20:09 +00005878 hw->phy.ops.read_reg_page(&adapter->hw, BM_RCTL, &phy_reg);
Bruce Allana4f58f52009-06-02 11:29:18 +00005879 mac_reg = er32(RCTL);
5880 if (mac_reg & E1000_RCTL_UPE)
5881 phy_reg |= BM_RCTL_UPE;
5882 if (mac_reg & E1000_RCTL_MPE)
5883 phy_reg |= BM_RCTL_MPE;
5884 phy_reg &= ~(BM_RCTL_MO_MASK);
5885 if (mac_reg & E1000_RCTL_MO_3)
5886 phy_reg |= (((mac_reg & E1000_RCTL_MO_3) >> E1000_RCTL_MO_SHIFT)
Bruce Allan17e813e2013-02-20 04:06:01 +00005887 << BM_RCTL_MO_SHIFT);
Bruce Allana4f58f52009-06-02 11:29:18 +00005888 if (mac_reg & E1000_RCTL_BAM)
5889 phy_reg |= BM_RCTL_BAM;
5890 if (mac_reg & E1000_RCTL_PMCF)
5891 phy_reg |= BM_RCTL_PMCF;
5892 mac_reg = er32(CTRL);
5893 if (mac_reg & E1000_CTRL_RFCE)
5894 phy_reg |= BM_RCTL_RFCE;
Bruce Allan2b6b1682011-05-13 07:20:09 +00005895 hw->phy.ops.write_reg_page(&adapter->hw, BM_RCTL, phy_reg);
Bruce Allana4f58f52009-06-02 11:29:18 +00005896
5897 /* enable PHY wakeup in MAC register */
5898 ew32(WUFC, wufc);
5899 ew32(WUC, E1000_WUC_PHY_WAKE | E1000_WUC_PME_EN);
5900
5901 /* configure and enable PHY wakeup in PHY registers */
Bruce Allan2b6b1682011-05-13 07:20:09 +00005902 hw->phy.ops.write_reg_page(&adapter->hw, BM_WUFC, wufc);
5903 hw->phy.ops.write_reg_page(&adapter->hw, BM_WUC, E1000_WUC_PME_EN);
Bruce Allana4f58f52009-06-02 11:29:18 +00005904
5905 /* activate PHY wakeup */
Bruce Allan2b6b1682011-05-13 07:20:09 +00005906 wuc_enable |= BM_WUC_ENABLE_BIT | BM_WUC_HOST_WU_BIT;
5907 retval = e1000_disable_phy_wakeup_reg_access_bm(hw, &wuc_enable);
Bruce Allana4f58f52009-06-02 11:29:18 +00005908 if (retval)
5909 e_err("Could not set PHY Host Wakeup bit\n");
Bruce Allan75ce1532012-02-08 02:54:48 +00005910release:
Bruce Allan94d81862009-11-20 23:25:26 +00005911 hw->phy.ops.release(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00005912
5913 return retval;
5914}
5915
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00005916static int __e1000_shutdown(struct pci_dev *pdev, bool runtime)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005917{
5918 struct net_device *netdev = pci_get_drvdata(pdev);
5919 struct e1000_adapter *adapter = netdev_priv(netdev);
5920 struct e1000_hw *hw = &adapter->hw;
5921 u32 ctrl, ctrl_ext, rctl, status;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005922 /* Runtime suspend should only enable wakeup for link changes */
5923 u32 wufc = runtime ? E1000_WUFC_LNKC : adapter->wol;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005924 int retval = 0;
5925
5926 netif_device_detach(netdev);
5927
5928 if (netif_running(netdev)) {
Bruce Allanbb9e44d2012-03-21 00:39:12 +00005929 int count = E1000_CHECK_RESET_COUNT;
5930
5931 while (test_bit(__E1000_RESETTING, &adapter->state) && count--)
5932 usleep_range(10000, 20000);
5933
Auke Kokbc7f75f2007-09-17 12:30:59 -07005934 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
5935 e1000e_down(adapter);
5936 e1000_free_irq(adapter);
5937 }
Bruce Allan4662e822008-08-26 18:37:06 -07005938 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005939
Auke Kokbc7f75f2007-09-17 12:30:59 -07005940 status = er32(STATUS);
5941 if (status & E1000_STATUS_LU)
5942 wufc &= ~E1000_WUFC_LNKC;
5943
5944 if (wufc) {
5945 e1000_setup_rctl(adapter);
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00005946 e1000e_set_rx_mode(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005947
5948 /* turn on all-multi mode if wake on multicast is enabled */
5949 if (wufc & E1000_WUFC_MC) {
5950 rctl = er32(RCTL);
5951 rctl |= E1000_RCTL_MPE;
5952 ew32(RCTL, rctl);
5953 }
5954
5955 ctrl = er32(CTRL);
Bruce Allana4f58f52009-06-02 11:29:18 +00005956 ctrl |= E1000_CTRL_ADVD3WUC;
5957 if (!(adapter->flags2 & FLAG2_HAS_PHY_WAKEUP))
5958 ctrl |= E1000_CTRL_EN_PHY_PWR_MGMT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005959 ew32(CTRL, ctrl);
5960
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005961 if (adapter->hw.phy.media_type == e1000_media_type_fiber ||
5962 adapter->hw.phy.media_type ==
5963 e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005964 /* keep the laser running in D3 */
5965 ctrl_ext = er32(CTRL_EXT);
Bruce Allan93a23f42009-12-08 07:27:41 +00005966 ctrl_ext |= E1000_CTRL_EXT_SDP3_DATA;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005967 ew32(CTRL_EXT, ctrl_ext);
5968 }
5969
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005970 if (adapter->flags & FLAG_IS_ICH)
Bruce Allan99730e42011-05-13 07:19:48 +00005971 e1000_suspend_workarounds_ich8lan(&adapter->hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07005972
Auke Kokbc7f75f2007-09-17 12:30:59 -07005973 /* Allow time for pending master requests to run */
5974 e1000e_disable_pcie_master(&adapter->hw);
5975
Bruce Allan82776a42009-08-14 14:35:33 +00005976 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
Bruce Allana4f58f52009-06-02 11:29:18 +00005977 /* enable wakeup by the PHY */
5978 retval = e1000_init_phy_wakeup(adapter, wufc);
5979 if (retval)
5980 return retval;
5981 } else {
5982 /* enable wakeup by the MAC */
5983 ew32(WUFC, wufc);
5984 ew32(WUC, E1000_WUC_PME_EN);
5985 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005986 } else {
5987 ew32(WUC, 0);
5988 ew32(WUFC, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005989 }
5990
Auke Kokbc7f75f2007-09-17 12:30:59 -07005991 if (adapter->hw.phy.type == e1000_phy_igp_3)
5992 e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw);
5993
Bruce Allane921eb12012-11-28 09:28:37 +00005994 /* Release control of h/w to f/w. If f/w is AMT enabled, this
Bruce Allanad680762008-03-28 09:15:03 -07005995 * would have already happened in close and is redundant.
5996 */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00005997 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005998
Dean Nelson24b41c92013-06-13 03:55:44 +00005999 pci_clear_master(pdev);
6000
Bruce Allane921eb12012-11-28 09:28:37 +00006001 /* The pci-e switch on some quad port adapters will report a
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006002 * correctable error when the MAC transitions from D0 to D3. To
6003 * prevent this we need to mask off the correctable errors on the
6004 * downstream port of the pci-e switch.
6005 */
6006 if (adapter->flags & FLAG_IS_QUAD_PORT) {
6007 struct pci_dev *us_dev = pdev->bus->self;
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006008 u16 devctl;
6009
Jiang Liuf8c0fca2012-08-20 13:30:43 -06006010 pcie_capability_read_word(us_dev, PCI_EXP_DEVCTL, &devctl);
6011 pcie_capability_write_word(us_dev, PCI_EXP_DEVCTL,
6012 (devctl & ~PCI_EXP_DEVCTL_CERE));
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006013
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006014 pci_save_state(pdev);
6015 pci_prepare_to_sleep(pdev);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006016
Jiang Liuf8c0fca2012-08-20 13:30:43 -06006017 pcie_capability_write_word(us_dev, PCI_EXP_DEVCTL, devctl);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006018 }
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006019
6020 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006021}
6022
Bruce Allan6f461f62010-04-27 03:33:04 +00006023#ifdef CONFIG_PCIEASPM
6024static void __e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
6025{
Yinghai Lu9f728f52011-05-12 17:11:47 -07006026 pci_disable_link_state_locked(pdev, state);
Bruce Allan6f461f62010-04-27 03:33:04 +00006027}
6028#else
6029static void __e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
Auke Kok1eae4eb2007-10-31 15:22:00 -07006030{
Bjorn Helgaasffe0b2ff2012-12-06 06:40:07 +00006031 u16 aspm_ctl = 0;
6032
6033 if (state & PCIE_LINK_STATE_L0S)
6034 aspm_ctl |= PCI_EXP_LNKCTL_ASPM_L0S;
6035 if (state & PCIE_LINK_STATE_L1)
6036 aspm_ctl |= PCI_EXP_LNKCTL_ASPM_L1;
6037
Bruce Allane921eb12012-11-28 09:28:37 +00006038 /* Both device and parent should have the same ASPM setting.
Bruce Allan6f461f62010-04-27 03:33:04 +00006039 * Disable ASPM in downstream component first and then upstream.
Auke Kok1eae4eb2007-10-31 15:22:00 -07006040 */
Bjorn Helgaasffe0b2ff2012-12-06 06:40:07 +00006041 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL, aspm_ctl);
Bruce Allan6f461f62010-04-27 03:33:04 +00006042
Jiang Liuf8c0fca2012-08-20 13:30:43 -06006043 if (pdev->bus->self)
6044 pcie_capability_clear_word(pdev->bus->self, PCI_EXP_LNKCTL,
Bjorn Helgaasffe0b2ff2012-12-06 06:40:07 +00006045 aspm_ctl);
Bruce Allan6f461f62010-04-27 03:33:04 +00006046}
6047#endif
Bruce Allan78cd29d2011-03-24 03:09:03 +00006048static void e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
Bruce Allan6f461f62010-04-27 03:33:04 +00006049{
6050 dev_info(&pdev->dev, "Disabling ASPM %s %s\n",
6051 (state & PCIE_LINK_STATE_L0S) ? "L0s" : "",
6052 (state & PCIE_LINK_STATE_L1) ? "L1" : "");
6053
6054 __e1000e_disable_aspm(pdev, state);
Auke Kok1eae4eb2007-10-31 15:22:00 -07006055}
6056
Rafael J. Wysockiaa338602011-02-11 00:06:54 +01006057#ifdef CONFIG_PM
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006058static bool e1000e_pm_ready(struct e1000_adapter *adapter)
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00006059{
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006060 return !!adapter->tx_ring->buffer_info;
Rafael J. Wysocki4f9de722009-04-15 17:43:43 +00006061}
6062
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006063static int __e1000_resume(struct pci_dev *pdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07006064{
6065 struct net_device *netdev = pci_get_drvdata(pdev);
6066 struct e1000_adapter *adapter = netdev_priv(netdev);
6067 struct e1000_hw *hw = &adapter->hw;
Bruce Allan78cd29d2011-03-24 03:09:03 +00006068 u16 aspm_disable_flag = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006069 u32 err;
6070
Bruce Allan78cd29d2011-03-24 03:09:03 +00006071 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L0S)
6072 aspm_disable_flag = PCIE_LINK_STATE_L0S;
6073 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
6074 aspm_disable_flag |= PCIE_LINK_STATE_L1;
6075 if (aspm_disable_flag)
6076 e1000e_disable_aspm(pdev, aspm_disable_flag);
6077
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006078 pci_set_master(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09006079
Bruce Allan4662e822008-08-26 18:37:06 -07006080 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006081 if (netif_running(netdev)) {
6082 err = e1000_request_irq(adapter);
6083 if (err)
6084 return err;
6085 }
6086
Bruce Allan2fbe4522012-04-19 03:21:47 +00006087 if (hw->mac.type >= e1000_pch2lan)
Bruce Allan99730e42011-05-13 07:19:48 +00006088 e1000_resume_workarounds_pchlan(&adapter->hw);
6089
Auke Kokbc7f75f2007-09-17 12:30:59 -07006090 e1000e_power_up_phy(adapter);
Bruce Allana4f58f52009-06-02 11:29:18 +00006091
6092 /* report the system wakeup cause from S3/S4 */
6093 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
6094 u16 phy_data;
6095
6096 e1e_rphy(&adapter->hw, BM_WUS, &phy_data);
6097 if (phy_data) {
6098 e_info("PHY Wakeup cause - %s\n",
Bruce Allan17e813e2013-02-20 04:06:01 +00006099 phy_data & E1000_WUS_EX ? "Unicast Packet" :
6100 phy_data & E1000_WUS_MC ? "Multicast Packet" :
6101 phy_data & E1000_WUS_BC ? "Broadcast Packet" :
6102 phy_data & E1000_WUS_MAG ? "Magic Packet" :
6103 phy_data & E1000_WUS_LNKC ?
6104 "Link Status Change" : "other");
Bruce Allana4f58f52009-06-02 11:29:18 +00006105 }
6106 e1e_wphy(&adapter->hw, BM_WUS, ~0);
6107 } else {
6108 u32 wus = er32(WUS);
6109 if (wus) {
6110 e_info("MAC Wakeup cause - %s\n",
Bruce Allan17e813e2013-02-20 04:06:01 +00006111 wus & E1000_WUS_EX ? "Unicast Packet" :
6112 wus & E1000_WUS_MC ? "Multicast Packet" :
6113 wus & E1000_WUS_BC ? "Broadcast Packet" :
6114 wus & E1000_WUS_MAG ? "Magic Packet" :
6115 wus & E1000_WUS_LNKC ? "Link Status Change" :
6116 "other");
Bruce Allana4f58f52009-06-02 11:29:18 +00006117 }
6118 ew32(WUS, ~0);
6119 }
6120
Auke Kokbc7f75f2007-09-17 12:30:59 -07006121 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006122
Bruce Allancd791612010-05-10 14:59:51 +00006123 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006124
6125 if (netif_running(netdev))
6126 e1000e_up(adapter);
6127
6128 netif_device_attach(netdev);
6129
Bruce Allane921eb12012-11-28 09:28:37 +00006130 /* If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07006131 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07006132 * under the control of the driver.
6133 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006134 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006135 e1000e_get_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006136
6137 return 0;
6138}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006139
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006140#ifdef CONFIG_PM_SLEEP
6141static int e1000_suspend(struct device *dev)
6142{
6143 struct pci_dev *pdev = to_pci_dev(dev);
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006144
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006145 return __e1000_shutdown(pdev, false);
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006146}
6147
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006148static int e1000_resume(struct device *dev)
6149{
6150 struct pci_dev *pdev = to_pci_dev(dev);
6151 struct net_device *netdev = pci_get_drvdata(pdev);
6152 struct e1000_adapter *adapter = netdev_priv(netdev);
6153
6154 if (e1000e_pm_ready(adapter))
6155 adapter->idle_check = true;
6156
6157 return __e1000_resume(pdev);
6158}
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006159#endif /* CONFIG_PM_SLEEP */
6160
6161#ifdef CONFIG_PM_RUNTIME
6162static int e1000_runtime_suspend(struct device *dev)
6163{
6164 struct pci_dev *pdev = to_pci_dev(dev);
6165 struct net_device *netdev = pci_get_drvdata(pdev);
6166 struct e1000_adapter *adapter = netdev_priv(netdev);
6167
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006168 if (!e1000e_pm_ready(adapter))
6169 return 0;
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006170
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006171 return __e1000_shutdown(pdev, true);
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006172}
6173
6174static int e1000_idle(struct device *dev)
6175{
6176 struct pci_dev *pdev = to_pci_dev(dev);
6177 struct net_device *netdev = pci_get_drvdata(pdev);
6178 struct e1000_adapter *adapter = netdev_priv(netdev);
6179
6180 if (!e1000e_pm_ready(adapter))
6181 return 0;
6182
6183 if (adapter->idle_check) {
6184 adapter->idle_check = false;
6185 if (!e1000e_has_link(adapter))
6186 pm_schedule_suspend(dev, MSEC_PER_SEC);
6187 }
6188
6189 return -EBUSY;
6190}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006191
6192static int e1000_runtime_resume(struct device *dev)
6193{
6194 struct pci_dev *pdev = to_pci_dev(dev);
6195 struct net_device *netdev = pci_get_drvdata(pdev);
6196 struct e1000_adapter *adapter = netdev_priv(netdev);
6197
6198 if (!e1000e_pm_ready(adapter))
6199 return 0;
6200
6201 adapter->idle_check = !dev->power.runtime_auto;
6202 return __e1000_resume(pdev);
6203}
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006204#endif /* CONFIG_PM_RUNTIME */
Rafael J. Wysockiaa338602011-02-11 00:06:54 +01006205#endif /* CONFIG_PM */
Auke Kokbc7f75f2007-09-17 12:30:59 -07006206
6207static void e1000_shutdown(struct pci_dev *pdev)
6208{
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006209 __e1000_shutdown(pdev, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006210}
6211
6212#ifdef CONFIG_NET_POLL_CONTROLLER
Dongdong Deng147b2c82010-11-16 19:50:15 -08006213
Bruce Allan8bb62862013-01-16 08:46:49 +00006214static irqreturn_t e1000_intr_msix(int __always_unused irq, void *data)
Dongdong Deng147b2c82010-11-16 19:50:15 -08006215{
6216 struct net_device *netdev = data;
6217 struct e1000_adapter *adapter = netdev_priv(netdev);
Dongdong Deng147b2c82010-11-16 19:50:15 -08006218
6219 if (adapter->msix_entries) {
Bruce Allan90da0662011-01-06 07:02:53 +00006220 int vector, msix_irq;
6221
Dongdong Deng147b2c82010-11-16 19:50:15 -08006222 vector = 0;
6223 msix_irq = adapter->msix_entries[vector].vector;
6224 disable_irq(msix_irq);
6225 e1000_intr_msix_rx(msix_irq, netdev);
6226 enable_irq(msix_irq);
6227
6228 vector++;
6229 msix_irq = adapter->msix_entries[vector].vector;
6230 disable_irq(msix_irq);
6231 e1000_intr_msix_tx(msix_irq, netdev);
6232 enable_irq(msix_irq);
6233
6234 vector++;
6235 msix_irq = adapter->msix_entries[vector].vector;
6236 disable_irq(msix_irq);
6237 e1000_msix_other(msix_irq, netdev);
6238 enable_irq(msix_irq);
6239 }
6240
6241 return IRQ_HANDLED;
6242}
6243
Bruce Allane921eb12012-11-28 09:28:37 +00006244/**
6245 * e1000_netpoll
6246 * @netdev: network interface device structure
6247 *
Auke Kokbc7f75f2007-09-17 12:30:59 -07006248 * Polling 'interrupt' - used by things like netconsole to send skbs
6249 * without having to re-enable interrupts. It's not called while
6250 * the interrupt routine is executing.
6251 */
6252static void e1000_netpoll(struct net_device *netdev)
6253{
6254 struct e1000_adapter *adapter = netdev_priv(netdev);
6255
Dongdong Deng147b2c82010-11-16 19:50:15 -08006256 switch (adapter->int_mode) {
6257 case E1000E_INT_MODE_MSIX:
6258 e1000_intr_msix(adapter->pdev->irq, netdev);
6259 break;
6260 case E1000E_INT_MODE_MSI:
6261 disable_irq(adapter->pdev->irq);
6262 e1000_intr_msi(adapter->pdev->irq, netdev);
6263 enable_irq(adapter->pdev->irq);
6264 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +00006265 default: /* E1000E_INT_MODE_LEGACY */
Dongdong Deng147b2c82010-11-16 19:50:15 -08006266 disable_irq(adapter->pdev->irq);
6267 e1000_intr(adapter->pdev->irq, netdev);
6268 enable_irq(adapter->pdev->irq);
6269 break;
6270 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07006271}
6272#endif
6273
6274/**
6275 * e1000_io_error_detected - called when PCI error is detected
6276 * @pdev: Pointer to PCI device
6277 * @state: The current pci connection state
6278 *
6279 * This function is called after a PCI bus error affecting
6280 * this device has been detected.
6281 */
6282static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
6283 pci_channel_state_t state)
6284{
6285 struct net_device *netdev = pci_get_drvdata(pdev);
6286 struct e1000_adapter *adapter = netdev_priv(netdev);
6287
6288 netif_device_detach(netdev);
6289
Mike Masonc93b5a72009-06-30 12:45:53 +00006290 if (state == pci_channel_io_perm_failure)
6291 return PCI_ERS_RESULT_DISCONNECT;
6292
Auke Kokbc7f75f2007-09-17 12:30:59 -07006293 if (netif_running(netdev))
6294 e1000e_down(adapter);
6295 pci_disable_device(pdev);
6296
6297 /* Request a slot slot reset. */
6298 return PCI_ERS_RESULT_NEED_RESET;
6299}
6300
6301/**
6302 * e1000_io_slot_reset - called after the pci bus has been reset.
6303 * @pdev: Pointer to PCI device
6304 *
6305 * Restart the card from scratch, as if from a cold-boot. Implementation
6306 * resembles the first-half of the e1000_resume routine.
6307 */
6308static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
6309{
6310 struct net_device *netdev = pci_get_drvdata(pdev);
6311 struct e1000_adapter *adapter = netdev_priv(netdev);
6312 struct e1000_hw *hw = &adapter->hw;
Bruce Allan78cd29d2011-03-24 03:09:03 +00006313 u16 aspm_disable_flag = 0;
Taku Izumi6e4f6f62008-06-20 11:57:02 +09006314 int err;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006315 pci_ers_result_t result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006316
Bruce Allan78cd29d2011-03-24 03:09:03 +00006317 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L0S)
6318 aspm_disable_flag = PCIE_LINK_STATE_L0S;
Bruce Allan6f461f62010-04-27 03:33:04 +00006319 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
Bruce Allan78cd29d2011-03-24 03:09:03 +00006320 aspm_disable_flag |= PCIE_LINK_STATE_L1;
6321 if (aspm_disable_flag)
6322 e1000e_disable_aspm(pdev, aspm_disable_flag);
6323
Bruce Allanf0f422e2008-08-04 17:21:53 -07006324 err = pci_enable_device_mem(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09006325 if (err) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006326 dev_err(&pdev->dev,
6327 "Cannot re-enable PCI device after reset.\n");
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006328 result = PCI_ERS_RESULT_DISCONNECT;
6329 } else {
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006330 pdev->state_saved = true;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006331 pci_restore_state(pdev);
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006332 pci_set_master(pdev);
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006333
6334 pci_enable_wake(pdev, PCI_D3hot, 0);
6335 pci_enable_wake(pdev, PCI_D3cold, 0);
6336
6337 e1000e_reset(adapter);
6338 ew32(WUS, ~0);
6339 result = PCI_ERS_RESULT_RECOVERED;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006340 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07006341
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006342 pci_cleanup_aer_uncorrect_error_status(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006343
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006344 return result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006345}
6346
6347/**
6348 * e1000_io_resume - called when traffic can start flowing again.
6349 * @pdev: Pointer to PCI device
6350 *
6351 * This callback is called when the error recovery driver tells us that
6352 * its OK to resume normal operation. Implementation resembles the
6353 * second-half of the e1000_resume routine.
6354 */
6355static void e1000_io_resume(struct pci_dev *pdev)
6356{
6357 struct net_device *netdev = pci_get_drvdata(pdev);
6358 struct e1000_adapter *adapter = netdev_priv(netdev);
6359
Bruce Allancd791612010-05-10 14:59:51 +00006360 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006361
6362 if (netif_running(netdev)) {
6363 if (e1000e_up(adapter)) {
6364 dev_err(&pdev->dev,
6365 "can't bring device back up after reset\n");
6366 return;
6367 }
6368 }
6369
6370 netif_device_attach(netdev);
6371
Bruce Allane921eb12012-11-28 09:28:37 +00006372 /* If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07006373 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07006374 * under the control of the driver.
6375 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006376 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006377 e1000e_get_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006378}
6379
6380static void e1000_print_device_info(struct e1000_adapter *adapter)
6381{
6382 struct e1000_hw *hw = &adapter->hw;
6383 struct net_device *netdev = adapter->netdev;
Bruce Allan073287c2010-11-24 06:01:51 +00006384 u32 ret_val;
6385 u8 pba_str[E1000_PBANUM_LENGTH];
Auke Kokbc7f75f2007-09-17 12:30:59 -07006386
6387 /* print bus type/speed/width info */
Bruce Allana5cc7642011-03-19 00:31:23 +00006388 e_info("(PCI Express:2.5GT/s:%s) %pM\n",
Jeff Kirsher44defeb2008-08-04 17:20:41 -07006389 /* bus width */
6390 ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" :
Bruce Allanf0ff4392013-02-20 04:05:39 +00006391 "Width x1"),
Jeff Kirsher44defeb2008-08-04 17:20:41 -07006392 /* MAC address */
Johannes Berg7c510e42008-10-27 17:47:26 -07006393 netdev->dev_addr);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07006394 e_info("Intel(R) PRO/%s Network Connection\n",
6395 (hw->phy.type == e1000_phy_ife) ? "10/100" : "1000");
Bruce Allan073287c2010-11-24 06:01:51 +00006396 ret_val = e1000_read_pba_string_generic(hw, pba_str,
6397 E1000_PBANUM_LENGTH);
6398 if (ret_val)
Bruce Allanf2315bf2011-12-16 00:46:59 +00006399 strlcpy((char *)pba_str, "Unknown", sizeof(pba_str));
Bruce Allan073287c2010-11-24 06:01:51 +00006400 e_info("MAC: %d, PHY: %d, PBA No: %s\n",
6401 hw->mac.type, hw->phy.type, pba_str);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006402}
6403
Auke Kok10aa4c02008-08-04 17:21:20 -07006404static void e1000_eeprom_checks(struct e1000_adapter *adapter)
6405{
6406 struct e1000_hw *hw = &adapter->hw;
6407 int ret_val;
6408 u16 buf = 0;
6409
6410 if (hw->mac.type != e1000_82573)
6411 return;
6412
6413 ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &buf);
Bruce Allane885d762012-01-31 06:37:32 +00006414 le16_to_cpus(&buf);
6415 if (!ret_val && (!(buf & (1 << 0)))) {
Auke Kok10aa4c02008-08-04 17:21:20 -07006416 /* Deep Smart Power Down (DSPD) */
Frans Pop6c2a9ef2008-09-22 14:52:22 -07006417 dev_warn(&adapter->pdev->dev,
6418 "Warning: detected DSPD enabled in EEPROM\n");
Auke Kok10aa4c02008-08-04 17:21:20 -07006419 }
Auke Kok10aa4c02008-08-04 17:21:20 -07006420}
6421
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006422static int e1000_set_features(struct net_device *netdev,
Bruce Allan70495a52012-01-11 01:26:50 +00006423 netdev_features_t features)
Bruce Allandc221292011-08-19 03:23:48 +00006424{
6425 struct e1000_adapter *adapter = netdev_priv(netdev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006426 netdev_features_t changed = features ^ netdev->features;
Bruce Allandc221292011-08-19 03:23:48 +00006427
6428 if (changed & (NETIF_F_TSO | NETIF_F_TSO6))
6429 adapter->flags |= FLAG_TSO_FORCE;
6430
Patrick McHardyf6469682013-04-19 02:04:27 +00006431 if (!(changed & (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX |
Ben Greearcf955e62012-02-11 15:39:51 +00006432 NETIF_F_RXCSUM | NETIF_F_RXHASH | NETIF_F_RXFCS |
6433 NETIF_F_RXALL)))
Bruce Allandc221292011-08-19 03:23:48 +00006434 return 0;
6435
Ben Greear01840392012-02-11 15:39:25 +00006436 if (changed & NETIF_F_RXFCS) {
6437 if (features & NETIF_F_RXFCS) {
6438 adapter->flags2 &= ~FLAG2_CRC_STRIPPING;
6439 } else {
6440 /* We need to take it back to defaults, which might mean
6441 * stripping is still disabled at the adapter level.
6442 */
6443 if (adapter->flags2 & FLAG2_DFLT_CRC_STRIPPING)
6444 adapter->flags2 |= FLAG2_CRC_STRIPPING;
6445 else
6446 adapter->flags2 &= ~FLAG2_CRC_STRIPPING;
6447 }
6448 }
6449
Bruce Allan70495a52012-01-11 01:26:50 +00006450 netdev->features = features;
6451
Bruce Allandc221292011-08-19 03:23:48 +00006452 if (netif_running(netdev))
6453 e1000e_reinit_locked(adapter);
6454 else
6455 e1000e_reset(adapter);
6456
6457 return 0;
6458}
6459
Stephen Hemminger651c2462008-11-19 21:57:48 -08006460static const struct net_device_ops e1000e_netdev_ops = {
6461 .ndo_open = e1000_open,
6462 .ndo_stop = e1000_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08006463 .ndo_start_xmit = e1000_xmit_frame,
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00006464 .ndo_get_stats64 = e1000e_get_stats64,
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00006465 .ndo_set_rx_mode = e1000e_set_rx_mode,
Stephen Hemminger651c2462008-11-19 21:57:48 -08006466 .ndo_set_mac_address = e1000_set_mac,
6467 .ndo_change_mtu = e1000_change_mtu,
6468 .ndo_do_ioctl = e1000_ioctl,
6469 .ndo_tx_timeout = e1000_tx_timeout,
6470 .ndo_validate_addr = eth_validate_addr,
6471
Stephen Hemminger651c2462008-11-19 21:57:48 -08006472 .ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
6473 .ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
6474#ifdef CONFIG_NET_POLL_CONTROLLER
6475 .ndo_poll_controller = e1000_netpoll,
6476#endif
Bruce Allandc221292011-08-19 03:23:48 +00006477 .ndo_set_features = e1000_set_features,
Stephen Hemminger651c2462008-11-19 21:57:48 -08006478};
6479
Auke Kokbc7f75f2007-09-17 12:30:59 -07006480/**
6481 * e1000_probe - Device Initialization Routine
6482 * @pdev: PCI device information struct
6483 * @ent: entry in e1000_pci_tbl
6484 *
6485 * Returns 0 on success, negative on failure
6486 *
6487 * e1000_probe initializes an adapter identified by a pci_dev structure.
6488 * The OS initialization, configuring of the adapter private structure,
6489 * and a hardware reset occur.
6490 **/
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00006491static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Auke Kokbc7f75f2007-09-17 12:30:59 -07006492{
6493 struct net_device *netdev;
6494 struct e1000_adapter *adapter;
6495 struct e1000_hw *hw;
6496 const struct e1000_info *ei = e1000_info_tbl[ent->driver_data];
Becky Brucef47e81f2008-05-01 18:03:11 -05006497 resource_size_t mmio_start, mmio_len;
6498 resource_size_t flash_start, flash_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006499 static int cards_found;
Bruce Allan78cd29d2011-03-24 03:09:03 +00006500 u16 aspm_disable_flag = 0;
Bruce Allan17e813e2013-02-20 04:06:01 +00006501 int bars, i, err, pci_using_dac;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006502 u16 eeprom_data = 0;
6503 u16 eeprom_apme_mask = E1000_EEPROM_APME;
6504
Bruce Allan78cd29d2011-03-24 03:09:03 +00006505 if (ei->flags2 & FLAG2_DISABLE_ASPM_L0S)
6506 aspm_disable_flag = PCIE_LINK_STATE_L0S;
Bruce Allan6f461f62010-04-27 03:33:04 +00006507 if (ei->flags2 & FLAG2_DISABLE_ASPM_L1)
Bruce Allan78cd29d2011-03-24 03:09:03 +00006508 aspm_disable_flag |= PCIE_LINK_STATE_L1;
6509 if (aspm_disable_flag)
6510 e1000e_disable_aspm(pdev, aspm_disable_flag);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09006511
Bruce Allanf0f422e2008-08-04 17:21:53 -07006512 err = pci_enable_device_mem(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006513 if (err)
6514 return err;
6515
6516 pci_using_dac = 0;
Nick Nunley0be3f552010-04-27 13:09:05 +00006517 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006518 if (!err) {
Nick Nunley0be3f552010-04-27 13:09:05 +00006519 err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006520 if (!err)
6521 pci_using_dac = 1;
6522 } else {
Nick Nunley0be3f552010-04-27 13:09:05 +00006523 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006524 if (err) {
Nick Nunley0be3f552010-04-27 13:09:05 +00006525 err = dma_set_coherent_mask(&pdev->dev,
6526 DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006527 if (err) {
Bruce Allanf0ff4392013-02-20 04:05:39 +00006528 dev_err(&pdev->dev,
6529 "No usable DMA configuration, aborting\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07006530 goto err_dma;
6531 }
6532 }
6533 }
6534
Bruce Allan17e813e2013-02-20 04:06:01 +00006535 bars = pci_select_bars(pdev, IORESOURCE_MEM);
6536 err = pci_request_selected_regions_exclusive(pdev, bars,
6537 e1000e_driver_name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006538 if (err)
6539 goto err_pci_reg;
6540
Xiaotian Feng68eac462009-08-14 14:35:52 +00006541 /* AER (Advanced Error Reporting) hooks */
Frans Pop19d5afd2009-10-02 10:04:12 -07006542 pci_enable_pcie_error_reporting(pdev);
Xiaotian Feng68eac462009-08-14 14:35:52 +00006543
Auke Kokbc7f75f2007-09-17 12:30:59 -07006544 pci_set_master(pdev);
Bruce Allan438b3652008-11-21 16:51:33 -08006545 /* PCI config space info */
6546 err = pci_save_state(pdev);
6547 if (err)
6548 goto err_alloc_etherdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006549
6550 err = -ENOMEM;
6551 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
6552 if (!netdev)
6553 goto err_alloc_etherdev;
6554
Auke Kokbc7f75f2007-09-17 12:30:59 -07006555 SET_NETDEV_DEV(netdev, &pdev->dev);
6556
Tom Herbertf85e4df2010-05-05 14:03:32 +00006557 netdev->irq = pdev->irq;
6558
Auke Kokbc7f75f2007-09-17 12:30:59 -07006559 pci_set_drvdata(pdev, netdev);
6560 adapter = netdev_priv(netdev);
6561 hw = &adapter->hw;
6562 adapter->netdev = netdev;
6563 adapter->pdev = pdev;
6564 adapter->ei = ei;
6565 adapter->pba = ei->pba;
6566 adapter->flags = ei->flags;
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00006567 adapter->flags2 = ei->flags2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006568 adapter->hw.adapter = adapter;
6569 adapter->hw.mac.type = ei->mac;
Bruce Allan2adc55c2009-06-02 11:28:58 +00006570 adapter->max_hw_frame_size = ei->max_hw_frame_size;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00006571 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006572
6573 mmio_start = pci_resource_start(pdev, 0);
6574 mmio_len = pci_resource_len(pdev, 0);
6575
6576 err = -EIO;
6577 adapter->hw.hw_addr = ioremap(mmio_start, mmio_len);
6578 if (!adapter->hw.hw_addr)
6579 goto err_ioremap;
6580
6581 if ((adapter->flags & FLAG_HAS_FLASH) &&
6582 (pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
6583 flash_start = pci_resource_start(pdev, 1);
6584 flash_len = pci_resource_len(pdev, 1);
6585 adapter->hw.flash_address = ioremap(flash_start, flash_len);
6586 if (!adapter->hw.flash_address)
6587 goto err_flashmap;
6588 }
6589
Bruce Alland495bcb2013-03-20 07:23:11 +00006590 /* Set default EEE advertisement */
6591 if (adapter->flags2 & FLAG2_HAS_EEE)
6592 adapter->eee_advert = MDIO_EEE_100TX | MDIO_EEE_1000T;
6593
Auke Kokbc7f75f2007-09-17 12:30:59 -07006594 /* construct the net_device struct */
Bruce Allane80bd1d2013-05-01 01:19:46 +00006595 netdev->netdev_ops = &e1000e_netdev_ops;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006596 e1000e_set_ethtool_ops(netdev);
Bruce Allane80bd1d2013-05-01 01:19:46 +00006597 netdev->watchdog_timeo = 5 * HZ;
Bruce Allanc58c8a72012-03-20 03:48:19 +00006598 netif_napi_add(netdev, &adapter->napi, e1000e_poll, 64);
Bruce Allanf2315bf2011-12-16 00:46:59 +00006599 strlcpy(netdev->name, pci_name(pdev), sizeof(netdev->name));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006600
6601 netdev->mem_start = mmio_start;
6602 netdev->mem_end = mmio_start + mmio_len;
6603
6604 adapter->bd_number = cards_found++;
6605
Bruce Allan4662e822008-08-26 18:37:06 -07006606 e1000e_check_options(adapter);
6607
Auke Kokbc7f75f2007-09-17 12:30:59 -07006608 /* setup adapter struct */
6609 err = e1000_sw_init(adapter);
6610 if (err)
6611 goto err_sw_init;
6612
Auke Kokbc7f75f2007-09-17 12:30:59 -07006613 memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops));
6614 memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops));
6615 memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops));
6616
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07006617 err = ei->get_variants(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006618 if (err)
6619 goto err_hw_init;
6620
Bruce Allan4a770352008-10-01 17:18:35 -07006621 if ((adapter->flags & FLAG_IS_ICH) &&
6622 (adapter->flags & FLAG_READ_ONLY_NVM))
6623 e1000e_write_protect_nvm_ich8lan(&adapter->hw);
6624
Auke Kokbc7f75f2007-09-17 12:30:59 -07006625 hw->mac.ops.get_bus_info(&adapter->hw);
6626
Jeff Kirsher318a94d2008-03-28 09:15:16 -07006627 adapter->hw.phy.autoneg_wait_to_complete = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006628
6629 /* Copper options */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07006630 if (adapter->hw.phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006631 adapter->hw.phy.mdix = AUTO_ALL_MODES;
6632 adapter->hw.phy.disable_polarity_correction = 0;
6633 adapter->hw.phy.ms_type = e1000_ms_hw_default;
6634 }
6635
Bruce Allan470a5422012-05-26 06:08:48 +00006636 if (hw->phy.ops.check_reset_block && hw->phy.ops.check_reset_block(hw))
Bruce Allan185095f2012-06-07 02:23:37 +00006637 dev_info(&pdev->dev,
6638 "PHY reset is blocked due to SOL/IDER session.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07006639
Bruce Allandc221292011-08-19 03:23:48 +00006640 /* Set initial default active device features */
6641 netdev->features = (NETIF_F_SG |
Patrick McHardyf6469682013-04-19 02:04:27 +00006642 NETIF_F_HW_VLAN_CTAG_RX |
6643 NETIF_F_HW_VLAN_CTAG_TX |
Bruce Allandc221292011-08-19 03:23:48 +00006644 NETIF_F_TSO |
6645 NETIF_F_TSO6 |
Bruce Allan70495a52012-01-11 01:26:50 +00006646 NETIF_F_RXHASH |
Bruce Allandc221292011-08-19 03:23:48 +00006647 NETIF_F_RXCSUM |
6648 NETIF_F_HW_CSUM);
6649
6650 /* Set user-changeable features (subset of all device features) */
6651 netdev->hw_features = netdev->features;
Ben Greear01840392012-02-11 15:39:25 +00006652 netdev->hw_features |= NETIF_F_RXFCS;
Ben Greear943146d2012-02-11 15:39:40 +00006653 netdev->priv_flags |= IFF_SUPP_NOFCS;
Ben Greearcf955e62012-02-11 15:39:51 +00006654 netdev->hw_features |= NETIF_F_RXALL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006655
6656 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
Patrick McHardyf6469682013-04-19 02:04:27 +00006657 netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006658
Bruce Allandc221292011-08-19 03:23:48 +00006659 netdev->vlan_features |= (NETIF_F_SG |
6660 NETIF_F_TSO |
6661 NETIF_F_TSO6 |
6662 NETIF_F_HW_CSUM);
Jeff Kirshera5136e22008-06-05 04:07:28 -07006663
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00006664 netdev->priv_flags |= IFF_UNICAST_FLT;
6665
Yi Zou7b872a52010-09-22 17:57:58 +00006666 if (pci_using_dac) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006667 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00006668 netdev->vlan_features |= NETIF_F_HIGHDMA;
6669 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07006670
Auke Kokbc7f75f2007-09-17 12:30:59 -07006671 if (e1000e_enable_mng_pass_thru(&adapter->hw))
6672 adapter->flags |= FLAG_MNG_PT_ENABLED;
6673
Bruce Allane921eb12012-11-28 09:28:37 +00006674 /* before reading the NVM, reset the controller to
Bruce Allanad680762008-03-28 09:15:03 -07006675 * put the device in a known good starting state
6676 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07006677 adapter->hw.mac.ops.reset_hw(&adapter->hw);
6678
Bruce Allane921eb12012-11-28 09:28:37 +00006679 /* systems with ASPM and others may see the checksum fail on the first
Auke Kokbc7f75f2007-09-17 12:30:59 -07006680 * attempt. Let's give it a few tries
6681 */
6682 for (i = 0;; i++) {
6683 if (e1000_validate_nvm_checksum(&adapter->hw) >= 0)
6684 break;
6685 if (i == 2) {
Bruce Allan185095f2012-06-07 02:23:37 +00006686 dev_err(&pdev->dev, "The NVM Checksum Is Not Valid\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07006687 err = -EIO;
6688 goto err_eeprom;
6689 }
6690 }
6691
Auke Kok10aa4c02008-08-04 17:21:20 -07006692 e1000_eeprom_checks(adapter);
6693
Bruce Allan608f8a02010-01-13 02:04:58 +00006694 /* copy the MAC address */
Auke Kokbc7f75f2007-09-17 12:30:59 -07006695 if (e1000e_read_mac_addr(&adapter->hw))
Bruce Allan185095f2012-06-07 02:23:37 +00006696 dev_err(&pdev->dev,
6697 "NVM Read Error while reading MAC address\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07006698
6699 memcpy(netdev->dev_addr, adapter->hw.mac.addr, netdev->addr_len);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006700
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +00006701 if (!is_valid_ether_addr(netdev->dev_addr)) {
Bruce Allan185095f2012-06-07 02:23:37 +00006702 dev_err(&pdev->dev, "Invalid MAC Address: %pM\n",
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +00006703 netdev->dev_addr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006704 err = -EIO;
6705 goto err_eeprom;
6706 }
6707
6708 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00006709 adapter->watchdog_timer.function = e1000_watchdog;
Bruce Allan53aa82d2013-02-20 04:06:06 +00006710 adapter->watchdog_timer.data = (unsigned long)adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006711
6712 init_timer(&adapter->phy_info_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00006713 adapter->phy_info_timer.function = e1000_update_phy_info;
Bruce Allan53aa82d2013-02-20 04:06:06 +00006714 adapter->phy_info_timer.data = (unsigned long)adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006715
6716 INIT_WORK(&adapter->reset_task, e1000_reset_task);
6717 INIT_WORK(&adapter->watchdog_task, e1000_watchdog_task);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07006718 INIT_WORK(&adapter->downshift_task, e1000e_downshift_workaround);
6719 INIT_WORK(&adapter->update_phy_task, e1000e_update_phy_task);
Bruce Allan41cec6f2009-11-20 23:28:56 +00006720 INIT_WORK(&adapter->print_hang_task, e1000_print_hw_hang);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006721
Auke Kokbc7f75f2007-09-17 12:30:59 -07006722 /* Initialize link parameters. User can change them with ethtool */
6723 adapter->hw.mac.autoneg = 1;
Rusty Russell3db1cd52011-12-19 13:56:45 +00006724 adapter->fc_autoneg = true;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08006725 adapter->hw.fc.requested_mode = e1000_fc_default;
6726 adapter->hw.fc.current_mode = e1000_fc_default;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006727 adapter->hw.phy.autoneg_advertised = 0x2f;
6728
Bruce Allane921eb12012-11-28 09:28:37 +00006729 /* Initial Wake on LAN setting - If APM wake is enabled in
Auke Kokbc7f75f2007-09-17 12:30:59 -07006730 * the EEPROM, enable the ACPI Magic Packet filter
6731 */
6732 if (adapter->flags & FLAG_APME_IN_WUC) {
6733 /* APME bit in EEPROM is mapped to WUC.APME */
6734 eeprom_data = er32(WUC);
6735 eeprom_apme_mask = E1000_WUC_APME;
Bruce Allan4def99b2011-02-02 09:30:36 +00006736 if ((hw->mac.type > e1000_ich10lan) &&
6737 (eeprom_data & E1000_WUC_PHY_WAKE))
Bruce Allana4f58f52009-06-02 11:29:18 +00006738 adapter->flags2 |= FLAG2_HAS_PHY_WAKEUP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006739 } else if (adapter->flags & FLAG_APME_IN_CTRL3) {
6740 if (adapter->flags & FLAG_APME_CHECK_PORT_B &&
6741 (adapter->hw.bus.func == 1))
Bruce Allan3d3a1672012-02-23 03:13:18 +00006742 e1000_read_nvm(&adapter->hw, NVM_INIT_CONTROL3_PORT_B,
6743 1, &eeprom_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006744 else
Bruce Allan3d3a1672012-02-23 03:13:18 +00006745 e1000_read_nvm(&adapter->hw, NVM_INIT_CONTROL3_PORT_A,
6746 1, &eeprom_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006747 }
6748
6749 /* fetch WoL from EEPROM */
6750 if (eeprom_data & eeprom_apme_mask)
6751 adapter->eeprom_wol |= E1000_WUFC_MAG;
6752
Bruce Allane921eb12012-11-28 09:28:37 +00006753 /* now that we have the eeprom settings, apply the special cases
Auke Kokbc7f75f2007-09-17 12:30:59 -07006754 * where the eeprom may be wrong or the board simply won't support
6755 * wake on lan on a particular port
6756 */
6757 if (!(adapter->flags & FLAG_HAS_WOL))
6758 adapter->eeprom_wol = 0;
6759
6760 /* initialize the wol settings based on the eeprom settings */
6761 adapter->wol = adapter->eeprom_wol;
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006762
6763 /* make sure adapter isn't asleep if manageability is enabled */
6764 if (adapter->wol || (adapter->flags & FLAG_MNG_PT_ENABLED) ||
6765 (hw->mac.ops.check_mng_mode(hw)))
6766 device_wakeup_enable(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006767
Bruce Allan84527592008-11-21 17:00:22 -08006768 /* save off EEPROM version number */
6769 e1000_read_nvm(&adapter->hw, 5, 1, &adapter->eeprom_vers);
6770
Auke Kokbc7f75f2007-09-17 12:30:59 -07006771 /* reset the hardware with the new settings */
6772 e1000e_reset(adapter);
6773
Bruce Allane921eb12012-11-28 09:28:37 +00006774 /* If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07006775 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07006776 * under the control of the driver.
6777 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006778 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006779 e1000e_get_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006780
Bruce Allanf2315bf2011-12-16 00:46:59 +00006781 strlcpy(netdev->name, "eth%d", sizeof(netdev->name));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006782 err = register_netdev(netdev);
6783 if (err)
6784 goto err_register;
6785
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00006786 /* carrier off reporting is important to ethtool even BEFORE open */
6787 netif_carrier_off(netdev);
6788
Bruce Alland89777b2013-01-19 01:09:58 +00006789 /* init PTP hardware clock */
6790 e1000e_ptp_init(adapter);
6791
Auke Kokbc7f75f2007-09-17 12:30:59 -07006792 e1000_print_device_info(adapter);
6793
Alan Sternf3ec4f82010-06-08 15:23:51 -04006794 if (pci_dev_run_wake(pdev))
6795 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006796
Auke Kokbc7f75f2007-09-17 12:30:59 -07006797 return 0;
6798
6799err_register:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006800 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006801 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006802err_eeprom:
Bruce Allan470a5422012-05-26 06:08:48 +00006803 if (hw->phy.ops.check_reset_block && !hw->phy.ops.check_reset_block(hw))
Auke Kokbc7f75f2007-09-17 12:30:59 -07006804 e1000_phy_hw_reset(&adapter->hw);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006805err_hw_init:
Auke Kokbc7f75f2007-09-17 12:30:59 -07006806 kfree(adapter->tx_ring);
6807 kfree(adapter->rx_ring);
6808err_sw_init:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006809 if (adapter->hw.flash_address)
6810 iounmap(adapter->hw.flash_address);
Jeff Kirshere82f54b2008-11-14 06:45:07 +00006811 e1000e_reset_interrupt_capability(adapter);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006812err_flashmap:
Auke Kokbc7f75f2007-09-17 12:30:59 -07006813 iounmap(adapter->hw.hw_addr);
6814err_ioremap:
6815 free_netdev(netdev);
6816err_alloc_etherdev:
Bruce Allanf0f422e2008-08-04 17:21:53 -07006817 pci_release_selected_regions(pdev,
Bruce Allanf0ff4392013-02-20 04:05:39 +00006818 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006819err_pci_reg:
6820err_dma:
6821 pci_disable_device(pdev);
6822 return err;
6823}
6824
6825/**
6826 * e1000_remove - Device Removal Routine
6827 * @pdev: PCI device information struct
6828 *
6829 * e1000_remove is called by the PCI subsystem to alert the driver
6830 * that it should release a PCI device. The could be caused by a
6831 * Hot-Plug event, or because the driver is going to be removed from
6832 * memory.
6833 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05006834static void e1000_remove(struct pci_dev *pdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07006835{
6836 struct net_device *netdev = pci_get_drvdata(pdev);
6837 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006838 bool down = test_bit(__E1000_DOWN, &adapter->state);
6839
Bruce Alland89777b2013-01-19 01:09:58 +00006840 e1000e_ptp_remove(adapter);
6841
Bruce Allane921eb12012-11-28 09:28:37 +00006842 /* The timers may be rescheduled, so explicitly disable them
Tejun Heo23f333a2010-12-12 16:45:14 +01006843 * from being rescheduled.
Bruce Allanad680762008-03-28 09:15:03 -07006844 */
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006845 if (!down)
6846 set_bit(__E1000_DOWN, &adapter->state);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006847 del_timer_sync(&adapter->watchdog_timer);
6848 del_timer_sync(&adapter->phy_info_timer);
6849
Bruce Allan41cec6f2009-11-20 23:28:56 +00006850 cancel_work_sync(&adapter->reset_task);
6851 cancel_work_sync(&adapter->watchdog_task);
6852 cancel_work_sync(&adapter->downshift_task);
6853 cancel_work_sync(&adapter->update_phy_task);
6854 cancel_work_sync(&adapter->print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006855
Bruce Allanb67e1912012-12-27 08:32:33 +00006856 if (adapter->flags & FLAG_HAS_HW_TIMESTAMP) {
6857 cancel_work_sync(&adapter->tx_hwtstamp_work);
6858 if (adapter->tx_hwtstamp_skb) {
6859 dev_kfree_skb_any(adapter->tx_hwtstamp_skb);
6860 adapter->tx_hwtstamp_skb = NULL;
6861 }
6862 }
6863
Bruce Allan17f208d2009-12-01 15:47:22 +00006864 if (!(netdev->flags & IFF_UP))
6865 e1000_power_down_phy(adapter);
6866
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006867 /* Don't lie to e1000_close() down the road. */
6868 if (!down)
6869 clear_bit(__E1000_DOWN, &adapter->state);
Bruce Allan17f208d2009-12-01 15:47:22 +00006870 unregister_netdev(netdev);
6871
Alan Sternf3ec4f82010-06-08 15:23:51 -04006872 if (pci_dev_run_wake(pdev))
6873 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006874
Bruce Allane921eb12012-11-28 09:28:37 +00006875 /* Release control of h/w to f/w. If f/w is AMT enabled, this
Bruce Allanad680762008-03-28 09:15:03 -07006876 * would have already happened in close and is redundant.
6877 */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006878 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006879
Bruce Allan4662e822008-08-26 18:37:06 -07006880 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006881 kfree(adapter->tx_ring);
6882 kfree(adapter->rx_ring);
6883
6884 iounmap(adapter->hw.hw_addr);
6885 if (adapter->hw.flash_address)
6886 iounmap(adapter->hw.flash_address);
Bruce Allanf0f422e2008-08-04 17:21:53 -07006887 pci_release_selected_regions(pdev,
Bruce Allanf0ff4392013-02-20 04:05:39 +00006888 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kokbc7f75f2007-09-17 12:30:59 -07006889
6890 free_netdev(netdev);
6891
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006892 /* AER disable */
Frans Pop19d5afd2009-10-02 10:04:12 -07006893 pci_disable_pcie_error_reporting(pdev);
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00006894
Auke Kokbc7f75f2007-09-17 12:30:59 -07006895 pci_disable_device(pdev);
6896}
6897
6898/* PCI Error Recovery (ERS) */
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07006899static const struct pci_error_handlers e1000_err_handler = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006900 .error_detected = e1000_io_error_detected,
6901 .slot_reset = e1000_io_slot_reset,
6902 .resume = e1000_io_resume,
6903};
6904
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00006905static DEFINE_PCI_DEVICE_TABLE(e1000_pci_tbl) = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006906 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_COPPER), board_82571 },
6907 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_FIBER), board_82571 },
6908 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER), board_82571 },
Bruce Allanc29c3ba2013-02-20 04:05:50 +00006909 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER_LP),
6910 board_82571 },
Auke Kokbc7f75f2007-09-17 12:30:59 -07006911 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_FIBER), board_82571 },
6912 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES), board_82571 },
Auke Kok040babf2007-10-31 15:22:05 -07006913 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_DUAL), board_82571 },
6914 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_QUAD), board_82571 },
6915 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571PT_QUAD_COPPER), board_82571 },
Bruce Allanad680762008-03-28 09:15:03 -07006916
Auke Kokbc7f75f2007-09-17 12:30:59 -07006917 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI), board_82572 },
6918 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_COPPER), board_82572 },
6919 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_FIBER), board_82572 },
6920 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_SERDES), board_82572 },
Bruce Allanad680762008-03-28 09:15:03 -07006921
Auke Kokbc7f75f2007-09-17 12:30:59 -07006922 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E), board_82573 },
6923 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E_IAMT), board_82573 },
6924 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573L), board_82573 },
Bruce Allanad680762008-03-28 09:15:03 -07006925
Bruce Allan4662e822008-08-26 18:37:06 -07006926 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574L), board_82574 },
Bruce Allanbef28b12009-03-24 23:28:02 -07006927 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574LA), board_82574 },
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00006928 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82583V), board_82583 },
Bruce Allan4662e822008-08-26 18:37:06 -07006929
Auke Kokbc7f75f2007-09-17 12:30:59 -07006930 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_DPT),
6931 board_80003es2lan },
6932 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_SPT),
6933 board_80003es2lan },
6934 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_DPT),
6935 board_80003es2lan },
6936 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_SPT),
6937 board_80003es2lan },
Bruce Allanad680762008-03-28 09:15:03 -07006938
Auke Kokbc7f75f2007-09-17 12:30:59 -07006939 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE), board_ich8lan },
6940 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_G), board_ich8lan },
6941 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_GT), board_ich8lan },
6942 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_AMT), board_ich8lan },
6943 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_C), board_ich8lan },
6944 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M), board_ich8lan },
6945 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M_AMT), board_ich8lan },
Bruce Allan9e135a22009-12-01 15:50:31 +00006946 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_82567V_3), board_ich8lan },
Bruce Allanad680762008-03-28 09:15:03 -07006947
Auke Kokbc7f75f2007-09-17 12:30:59 -07006948 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE), board_ich9lan },
6949 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_G), board_ich9lan },
6950 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_GT), board_ich9lan },
6951 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_AMT), board_ich9lan },
6952 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_C), board_ich9lan },
Bruce Allan2f15f9d2008-08-26 18:36:36 -07006953 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_BM), board_ich9lan },
Bruce Allan97ac8ca2008-04-29 09:16:05 -07006954 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M), board_ich9lan },
6955 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_AMT), board_ich9lan },
6956 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_V), board_ich9lan },
6957
6958 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LM), board_ich9lan },
6959 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LF), board_ich9lan },
6960 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_V), board_ich9lan },
Auke Kokbc7f75f2007-09-17 12:30:59 -07006961
Bruce Allanf4187b52008-08-26 18:36:50 -07006962 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LM), board_ich10lan },
6963 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LF), board_ich10lan },
Bruce Allan10df0b92010-05-10 15:02:52 +00006964 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_V), board_ich10lan },
Bruce Allanf4187b52008-08-26 18:36:50 -07006965
Bruce Allana4f58f52009-06-02 11:29:18 +00006966 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LM), board_pchlan },
6967 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LC), board_pchlan },
6968 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DM), board_pchlan },
6969 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DC), board_pchlan },
6970
Bruce Alland3738bb2010-06-16 13:27:28 +00006971 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH2_LV_LM), board_pch2lan },
6972 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH2_LV_V), board_pch2lan },
6973
Bruce Allan2fbe4522012-04-19 03:21:47 +00006974 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPT_I217_LM), board_pch_lpt },
6975 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPT_I217_V), board_pch_lpt },
Bruce Allan16e310a2012-10-09 01:11:26 +00006976 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPTLP_I218_LM), board_pch_lpt },
6977 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPTLP_I218_V), board_pch_lpt },
Bruce Allan91a3d822013-06-29 01:15:16 +00006978 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_LM2), board_pch_lpt },
6979 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_V2), board_pch_lpt },
6980 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_LM3), board_pch_lpt },
6981 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_V3), board_pch_lpt },
Bruce Allan2fbe4522012-04-19 03:21:47 +00006982
Bruce Allanf36bb6c2012-01-31 06:38:04 +00006983 { 0, 0, 0, 0, 0, 0, 0 } /* terminate list */
Auke Kokbc7f75f2007-09-17 12:30:59 -07006984};
6985MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
6986
Rafael J. Wysockiaa338602011-02-11 00:06:54 +01006987#ifdef CONFIG_PM
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006988static const struct dev_pm_ops e1000_pm_ops = {
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006989 SET_SYSTEM_SLEEP_PM_OPS(e1000_suspend, e1000_resume)
Bruce Allan17e813e2013-02-20 04:06:01 +00006990 SET_RUNTIME_PM_OPS(e1000_runtime_suspend, e1000_runtime_resume,
6991 e1000_idle)
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006992};
David S. Millere50208a2010-03-16 23:36:24 -07006993#endif
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006994
Auke Kokbc7f75f2007-09-17 12:30:59 -07006995/* PCI Device API Driver */
6996static struct pci_driver e1000_driver = {
6997 .name = e1000e_driver_name,
6998 .id_table = e1000_pci_tbl,
6999 .probe = e1000_probe,
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05007000 .remove = e1000_remove,
Rafael J. Wysockiaa338602011-02-11 00:06:54 +01007001#ifdef CONFIG_PM
Bruce Allanf36bb6c2012-01-31 06:38:04 +00007002 .driver = {
7003 .pm = &e1000_pm_ops,
7004 },
Auke Kokbc7f75f2007-09-17 12:30:59 -07007005#endif
7006 .shutdown = e1000_shutdown,
7007 .err_handler = &e1000_err_handler
7008};
7009
7010/**
7011 * e1000_init_module - Driver Registration Routine
7012 *
7013 * e1000_init_module is the first routine called when the driver is
7014 * loaded. All it does is register with the PCI subsystem.
7015 **/
7016static int __init e1000_init_module(void)
7017{
7018 int ret;
Bruce Allan8544b9f2010-03-24 12:55:30 +00007019 pr_info("Intel(R) PRO/1000 Network Driver - %s\n",
7020 e1000e_driver_version);
Bruce Allanbf670442013-01-01 16:00:01 +00007021 pr_info("Copyright(c) 1999 - 2013 Intel Corporation.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07007022 ret = pci_register_driver(&e1000_driver);
Bruce Allan53ec5492009-11-20 23:27:40 +00007023
Auke Kokbc7f75f2007-09-17 12:30:59 -07007024 return ret;
7025}
7026module_init(e1000_init_module);
7027
7028/**
7029 * e1000_exit_module - Driver Exit Cleanup Routine
7030 *
7031 * e1000_exit_module is called just before the driver is removed
7032 * from memory.
7033 **/
7034static void __exit e1000_exit_module(void)
7035{
7036 pci_unregister_driver(&e1000_driver);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007037}
7038module_exit(e1000_exit_module);
7039
Auke Kokbc7f75f2007-09-17 12:30:59 -07007040MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
7041MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
7042MODULE_LICENSE("GPL");
7043MODULE_VERSION(DRV_VERSION);
7044
Bruce Allan06c24b92012-02-23 03:13:13 +00007045/* netdev.c */