blob: 757a54c39eefd8be04a2907a37e2efd85a59a269 [file] [log] [blame]
Jeff Kirsherae06c702018-03-22 10:08:48 -07001// SPDX-License-Identifier: GPL-2.0
Jeff Kirsher51dce242018-04-26 08:08:09 -07002/* Copyright(c) 1999 - 2018 Intel Corporation. */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003
Bruce Allan8544b9f2010-03-24 12:55:30 +00004#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
5
Auke Kokbc7f75f2007-09-17 12:30:59 -07006#include <linux/module.h>
7#include <linux/types.h>
8#include <linux/init.h>
9#include <linux/pci.h>
10#include <linux/vmalloc.h>
11#include <linux/pagemap.h>
12#include <linux/delay.h>
13#include <linux/netdevice.h>
Bruce Allan9fb7a5f2011-07-29 05:52:51 +000014#include <linux/interrupt.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070015#include <linux/tcp.h>
16#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070018#include <net/checksum.h>
19#include <net/ip6_checksum.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070020#include <linux/ethtool.h>
21#include <linux/if_vlan.h>
22#include <linux/cpu.h>
23#include <linux/smp.h>
Linus Torvalds7e0bb712011-10-25 15:18:39 +020024#include <linux/pm_qos.h>
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +000025#include <linux/pm_runtime.h>
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +000026#include <linux/aer.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040027#include <linux/prefetch.h>
Chen Yuccf8b942020-12-01 09:21:50 +080028#include <linux/suspend.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070029
30#include "e1000.h"
31
Auke Kokbc7f75f2007-09-17 12:30:59 -070032char e1000e_driver_name[] = "e1000e";
Auke Kokbc7f75f2007-09-17 12:30:59 -070033
stephen hemmingerb3f4d592012-03-13 06:04:20 +000034#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
35static int debug = -1;
36module_param(debug, int, 0);
37MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
38
Auke Kokbc7f75f2007-09-17 12:30:59 -070039static const struct e1000_info *e1000_info_tbl[] = {
40 [board_82571] = &e1000_82571_info,
41 [board_82572] = &e1000_82572_info,
42 [board_82573] = &e1000_82573_info,
Bruce Allan4662e822008-08-26 18:37:06 -070043 [board_82574] = &e1000_82574_info,
Alexander Duyck8c81c9c2009-03-19 01:12:27 +000044 [board_82583] = &e1000_82583_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070045 [board_80003es2lan] = &e1000_es2_info,
46 [board_ich8lan] = &e1000_ich8_info,
47 [board_ich9lan] = &e1000_ich9_info,
Bruce Allanf4187b52008-08-26 18:36:50 -070048 [board_ich10lan] = &e1000_ich10_info,
Bruce Allana4f58f52009-06-02 11:29:18 +000049 [board_pchlan] = &e1000_pch_info,
Bruce Alland3738bb2010-06-16 13:27:28 +000050 [board_pch2lan] = &e1000_pch2_info,
Bruce Allan2fbe4522012-04-19 03:21:47 +000051 [board_pch_lpt] = &e1000_pch_lpt_info,
David Ertman79849eb2015-02-10 09:10:43 +000052 [board_pch_spt] = &e1000_pch_spt_info,
Sasha Neftin3a3173b2017-04-06 10:26:32 +030053 [board_pch_cnp] = &e1000_pch_cnp_info,
Auke Kokbc7f75f2007-09-17 12:30:59 -070054};
55
Taku Izumi84f4ee92010-04-27 14:39:08 +000056struct e1000_reg_info {
57 u32 ofs;
58 char *name;
59};
60
Taku Izumi84f4ee92010-04-27 14:39:08 +000061static const struct e1000_reg_info e1000_reg_info_tbl[] = {
Taku Izumi84f4ee92010-04-27 14:39:08 +000062 /* General Registers */
63 {E1000_CTRL, "CTRL"},
64 {E1000_STATUS, "STATUS"},
65 {E1000_CTRL_EXT, "CTRL_EXT"},
66
67 /* Interrupt Registers */
68 {E1000_ICR, "ICR"},
69
Bruce Allanaf667a22010-12-31 06:10:01 +000070 /* Rx Registers */
Taku Izumi84f4ee92010-04-27 14:39:08 +000071 {E1000_RCTL, "RCTL"},
Bruce Allan1e360522012-03-20 03:48:13 +000072 {E1000_RDLEN(0), "RDLEN"},
73 {E1000_RDH(0), "RDH"},
74 {E1000_RDT(0), "RDT"},
Taku Izumi84f4ee92010-04-27 14:39:08 +000075 {E1000_RDTR, "RDTR"},
76 {E1000_RXDCTL(0), "RXDCTL"},
77 {E1000_ERT, "ERT"},
Bruce Allan1e360522012-03-20 03:48:13 +000078 {E1000_RDBAL(0), "RDBAL"},
79 {E1000_RDBAH(0), "RDBAH"},
Taku Izumi84f4ee92010-04-27 14:39:08 +000080 {E1000_RDFH, "RDFH"},
81 {E1000_RDFT, "RDFT"},
82 {E1000_RDFHS, "RDFHS"},
83 {E1000_RDFTS, "RDFTS"},
84 {E1000_RDFPC, "RDFPC"},
85
Bruce Allanaf667a22010-12-31 06:10:01 +000086 /* Tx Registers */
Taku Izumi84f4ee92010-04-27 14:39:08 +000087 {E1000_TCTL, "TCTL"},
Bruce Allan1e360522012-03-20 03:48:13 +000088 {E1000_TDBAL(0), "TDBAL"},
89 {E1000_TDBAH(0), "TDBAH"},
90 {E1000_TDLEN(0), "TDLEN"},
91 {E1000_TDH(0), "TDH"},
92 {E1000_TDT(0), "TDT"},
Taku Izumi84f4ee92010-04-27 14:39:08 +000093 {E1000_TIDV, "TIDV"},
94 {E1000_TXDCTL(0), "TXDCTL"},
95 {E1000_TADV, "TADV"},
96 {E1000_TARC(0), "TARC"},
97 {E1000_TDFH, "TDFH"},
98 {E1000_TDFT, "TDFT"},
99 {E1000_TDFHS, "TDFHS"},
100 {E1000_TDFTS, "TDFTS"},
101 {E1000_TDFPC, "TDFPC"},
102
103 /* List Terminator */
Bruce Allanf36bb6c2012-01-31 06:38:04 +0000104 {0, NULL}
Taku Izumi84f4ee92010-04-27 14:39:08 +0000105};
106
Bruce Allane921eb12012-11-28 09:28:37 +0000107/**
Andi Kleenc6f31482014-05-20 08:22:45 +0000108 * __ew32_prepare - prepare to write to MAC CSR register on certain parts
109 * @hw: pointer to the HW structure
110 *
111 * When updating the MAC CSR registers, the Manageability Engine (ME) could
112 * be accessing the registers at the same time. Normally, this is handled in
113 * h/w by an arbiter but on some parts there is a bug that acknowledges Host
114 * accesses later than it should which could result in the register to have
115 * an incorrect value. Workaround this by checking the FWSM register which
116 * has bit 24 set while ME is accessing MAC CSR registers, wait if it is set
117 * and try again a number of times.
118 **/
Punit Agrawald601afc2020-05-15 13:31:27 +0900119static void __ew32_prepare(struct e1000_hw *hw)
Andi Kleenc6f31482014-05-20 08:22:45 +0000120{
121 s32 i = E1000_ICH_FWSM_PCIM2PCI_COUNT;
122
123 while ((er32(FWSM) & E1000_ICH_FWSM_PCIM2PCI) && --i)
124 udelay(50);
Andi Kleenc6f31482014-05-20 08:22:45 +0000125}
126
127void __ew32(struct e1000_hw *hw, unsigned long reg, u32 val)
128{
129 if (hw->adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
130 __ew32_prepare(hw);
131
132 writel(val, hw->hw_addr + reg);
133}
134
135/**
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");
Tobias Klauser4a7c9722017-01-18 17:45:01 +0100221 pr_info("Device Name state trans_start\n");
222 pr_info("%-15s %016lX %016lX\n", netdev->name,
223 netdev->state, dev_trans_start(netdev));
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",
Jacob Keller18dd2392016-04-13 16:08:32 -0700298 (!(le64_to_cpu(u0->b) & BIT(29)) ? 'l' :
299 ((le64_to_cpu(u0->b) & BIT(20)) ? 'd' : 'c')),
Jeff Kirsheref456f82011-11-03 11:40:28 +0000300 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
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -0700466 * @ring: pointer to ring struct to perform calculation on
Auke Kokbc7f75f2007-09-17 12:30:59 -0700467 **/
468static int e1000_desc_unused(struct e1000_ring *ring)
469{
470 if (ring->next_to_clean > ring->next_to_use)
471 return ring->next_to_clean - ring->next_to_use - 1;
472
473 return ring->count + ring->next_to_clean - ring->next_to_use - 1;
474}
475
476/**
Bruce Allanb67e1912012-12-27 08:32:33 +0000477 * e1000e_systim_to_hwtstamp - convert system time value to hw time stamp
478 * @adapter: board private structure
479 * @hwtstamps: time stamp structure to update
480 * @systim: unsigned 64bit system time value.
481 *
482 * Convert the system time value stored in the RX/TXSTMP registers into a
483 * hwtstamp which can be used by the upper level time stamping functions.
484 *
485 * The 'systim_lock' spinlock is used to protect the consistency of the
486 * system time value. This is needed because reading the 64 bit time
487 * value involves reading two 32 bit registers. The first read latches the
488 * value.
489 **/
490static void e1000e_systim_to_hwtstamp(struct e1000_adapter *adapter,
491 struct skb_shared_hwtstamps *hwtstamps,
492 u64 systim)
493{
494 u64 ns;
495 unsigned long flags;
496
497 spin_lock_irqsave(&adapter->systim_lock, flags);
498 ns = timecounter_cyc2time(&adapter->tc, systim);
499 spin_unlock_irqrestore(&adapter->systim_lock, flags);
500
501 memset(hwtstamps, 0, sizeof(*hwtstamps));
502 hwtstamps->hwtstamp = ns_to_ktime(ns);
503}
504
505/**
506 * e1000e_rx_hwtstamp - utility function which checks for Rx time stamp
507 * @adapter: board private structure
508 * @status: descriptor extended error and status field
509 * @skb: particular skb to include time stamp
510 *
511 * If the time stamp is valid, convert it into the timecounter ns value
512 * and store that result into the shhwtstamps structure which is passed
513 * up the network stack.
514 **/
515static void e1000e_rx_hwtstamp(struct e1000_adapter *adapter, u32 status,
516 struct sk_buff *skb)
517{
518 struct e1000_hw *hw = &adapter->hw;
519 u64 rxstmp;
520
521 if (!(adapter->flags & FLAG_HAS_HW_TIMESTAMP) ||
522 !(status & E1000_RXDEXT_STATERR_TST) ||
523 !(er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_VALID))
524 return;
525
526 /* The Rx time stamp registers contain the time stamp. No other
527 * received packet will be time stamped until the Rx time stamp
528 * registers are read. Because only one packet can be time stamped
529 * at a time, the register values must belong to this packet and
530 * therefore none of the other additional attributes need to be
531 * compared.
532 */
533 rxstmp = (u64)er32(RXSTMPL);
534 rxstmp |= (u64)er32(RXSTMPH) << 32;
535 e1000e_systim_to_hwtstamp(adapter, skb_hwtstamps(skb), rxstmp);
536
537 adapter->flags2 &= ~FLAG2_CHECK_RX_HWTSTAMP;
538}
539
540/**
Bruce Allanad680762008-03-28 09:15:03 -0700541 * e1000_receive_skb - helper function to handle Rx indications
Auke Kokbc7f75f2007-09-17 12:30:59 -0700542 * @adapter: board private structure
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -0700543 * @netdev: pointer to netdev struct
Bruce Allanb67e1912012-12-27 08:32:33 +0000544 * @staterr: descriptor extended error and status field as written by hardware
Auke Kokbc7f75f2007-09-17 12:30:59 -0700545 * @vlan: descriptor vlan field as written by hardware (no le/be conversion)
546 * @skb: pointer to sk_buff to be indicated to stack
547 **/
548static void e1000_receive_skb(struct e1000_adapter *adapter,
Bruce Allanaf667a22010-12-31 06:10:01 +0000549 struct net_device *netdev, struct sk_buff *skb,
Bruce Allanb67e1912012-12-27 08:32:33 +0000550 u32 staterr, __le16 vlan)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700551{
Jeff Kirsher86d70e52011-03-25 16:01:01 +0000552 u16 tag = le16_to_cpu(vlan);
Bruce Allanb67e1912012-12-27 08:32:33 +0000553
554 e1000e_rx_hwtstamp(adapter, staterr, skb);
555
Auke Kokbc7f75f2007-09-17 12:30:59 -0700556 skb->protocol = eth_type_trans(skb, netdev);
557
Bruce Allanb67e1912012-12-27 08:32:33 +0000558 if (staterr & E1000_RXD_STAT_VP)
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000559 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), tag);
Jeff Kirsher86d70e52011-03-25 16:01:01 +0000560
561 napi_gro_receive(&adapter->napi, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700562}
563
564/**
Bruce Allanaf667a22010-12-31 06:10:01 +0000565 * e1000_rx_checksum - Receive Checksum Offload
Bruce Allanafd12932012-01-05 00:34:05 +0000566 * @adapter: board private structure
567 * @status_err: receive descriptor status and error fields
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -0700568 * @skb: socket buffer with received data
Auke Kokbc7f75f2007-09-17 12:30:59 -0700569 **/
570static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
Bruce Allan2e1706f2012-06-30 20:02:42 +0000571 struct sk_buff *skb)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700572{
573 u16 status = (u16)status_err;
574 u8 errors = (u8)(status_err >> 24);
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700575
576 skb_checksum_none_assert(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700577
Bruce Allanafd12932012-01-05 00:34:05 +0000578 /* Rx checksum disabled */
579 if (!(adapter->netdev->features & NETIF_F_RXCSUM))
580 return;
581
Auke Kokbc7f75f2007-09-17 12:30:59 -0700582 /* Ignore Checksum bit is set */
583 if (status & E1000_RXD_STAT_IXSM)
584 return;
Bruce Allanafd12932012-01-05 00:34:05 +0000585
Bruce Allan2e1706f2012-06-30 20:02:42 +0000586 /* TCP/UDP checksum error bit or IP checksum error bit is set */
587 if (errors & (E1000_RXD_ERR_TCPE | E1000_RXD_ERR_IPE)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700588 /* let the stack verify checksum errors */
589 adapter->hw_csum_err++;
590 return;
591 }
592
593 /* TCP/UDP Checksum has not been calculated */
594 if (!(status & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)))
595 return;
596
597 /* It must be a TCP or UDP packet with a valid checksum */
Bruce Allan2e1706f2012-06-30 20:02:42 +0000598 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700599 adapter->hw_csum_good++;
600}
601
Bruce Allan55aa6982011-12-16 00:45:45 +0000602static void e1000e_update_rdt_wa(struct e1000_ring *rx_ring, unsigned int i)
David S. Miller823dcd22011-08-20 10:39:12 -0700603{
Bruce Allan55aa6982011-12-16 00:45:45 +0000604 struct e1000_adapter *adapter = rx_ring->adapter;
David S. Miller823dcd22011-08-20 10:39:12 -0700605 struct e1000_hw *hw = &adapter->hw;
606
Punit Agrawald601afc2020-05-15 13:31:27 +0900607 __ew32_prepare(hw);
Bruce Allanbdc125f2012-03-20 03:47:52 +0000608 writel(i, rx_ring->tail);
609
Punit Agrawald601afc2020-05-15 13:31:27 +0900610 if (unlikely(i != readl(rx_ring->tail))) {
David S. Miller823dcd22011-08-20 10:39:12 -0700611 u32 rctl = er32(RCTL);
David Ertman6cf08d12014-04-05 06:07:00 +0000612
David S. Miller823dcd22011-08-20 10:39:12 -0700613 ew32(RCTL, rctl & ~E1000_RCTL_EN);
614 e_err("ME firmware caused invalid RDT - resetting\n");
615 schedule_work(&adapter->reset_task);
616 }
617}
618
Bruce Allan55aa6982011-12-16 00:45:45 +0000619static void e1000e_update_tdt_wa(struct e1000_ring *tx_ring, unsigned int i)
David S. Miller823dcd22011-08-20 10:39:12 -0700620{
Bruce Allan55aa6982011-12-16 00:45:45 +0000621 struct e1000_adapter *adapter = tx_ring->adapter;
David S. Miller823dcd22011-08-20 10:39:12 -0700622 struct e1000_hw *hw = &adapter->hw;
623
Punit Agrawald601afc2020-05-15 13:31:27 +0900624 __ew32_prepare(hw);
Bruce Allanbdc125f2012-03-20 03:47:52 +0000625 writel(i, tx_ring->tail);
626
Punit Agrawald601afc2020-05-15 13:31:27 +0900627 if (unlikely(i != readl(tx_ring->tail))) {
David S. Miller823dcd22011-08-20 10:39:12 -0700628 u32 tctl = er32(TCTL);
David Ertman6cf08d12014-04-05 06:07:00 +0000629
David S. Miller823dcd22011-08-20 10:39:12 -0700630 ew32(TCTL, tctl & ~E1000_TCTL_EN);
631 e_err("ME firmware caused invalid TDT - resetting\n");
632 schedule_work(&adapter->reset_task);
633 }
634}
635
636/**
Bruce Allan5f450212011-07-22 06:21:46 +0000637 * e1000_alloc_rx_buffers - Replace used receive buffers
Bruce Allan55aa6982011-12-16 00:45:45 +0000638 * @rx_ring: Rx descriptor ring
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -0700639 * @cleaned_count: number to reallocate
640 * @gfp: flags for allocation
Auke Kokbc7f75f2007-09-17 12:30:59 -0700641 **/
Bruce Allan55aa6982011-12-16 00:45:45 +0000642static void e1000_alloc_rx_buffers(struct e1000_ring *rx_ring,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000643 int cleaned_count, gfp_t gfp)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700644{
Bruce Allan55aa6982011-12-16 00:45:45 +0000645 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700646 struct net_device *netdev = adapter->netdev;
647 struct pci_dev *pdev = adapter->pdev;
Bruce Allan5f450212011-07-22 06:21:46 +0000648 union e1000_rx_desc_extended *rx_desc;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700649 struct e1000_buffer *buffer_info;
650 struct sk_buff *skb;
651 unsigned int i;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000652 unsigned int bufsz = adapter->rx_buffer_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700653
654 i = rx_ring->next_to_use;
655 buffer_info = &rx_ring->buffer_info[i];
656
657 while (cleaned_count--) {
658 skb = buffer_info->skb;
659 if (skb) {
660 skb_trim(skb, 0);
661 goto map_skb;
662 }
663
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000664 skb = __netdev_alloc_skb_ip_align(netdev, bufsz, gfp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700665 if (!skb) {
666 /* Better luck next round */
667 adapter->alloc_rx_buff_failed++;
668 break;
669 }
670
Auke Kokbc7f75f2007-09-17 12:30:59 -0700671 buffer_info->skb = skb;
672map_skb:
Nick Nunley0be3f552010-04-27 13:09:05 +0000673 buffer_info->dma = dma_map_single(&pdev->dev, skb->data,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700674 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +0000675 DMA_FROM_DEVICE);
676 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Bruce Allanaf667a22010-12-31 06:10:01 +0000677 dev_err(&pdev->dev, "Rx DMA map failed\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700678 adapter->rx_dma_failed++;
679 break;
680 }
681
Bruce Allan5f450212011-07-22 06:21:46 +0000682 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
683 rx_desc->read.buffer_addr = cpu_to_le64(buffer_info->dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700684
Tom Herbert50849d72010-05-05 14:02:49 +0000685 if (unlikely(!(i & (E1000_RX_BUFFER_WRITE - 1)))) {
Bruce Allane921eb12012-11-28 09:28:37 +0000686 /* Force memory writes to complete before letting h/w
Tom Herbert50849d72010-05-05 14:02:49 +0000687 * know there are new descriptors to fetch. (Only
688 * applicable for weak-ordered memory model archs,
689 * such as IA-64).
690 */
691 wmb();
David S. Miller823dcd22011-08-20 10:39:12 -0700692 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allan55aa6982011-12-16 00:45:45 +0000693 e1000e_update_rdt_wa(rx_ring, i);
David S. Miller823dcd22011-08-20 10:39:12 -0700694 else
Bruce Allanc5083cf2011-12-16 00:45:40 +0000695 writel(i, rx_ring->tail);
Tom Herbert50849d72010-05-05 14:02:49 +0000696 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700697 i++;
698 if (i == rx_ring->count)
699 i = 0;
700 buffer_info = &rx_ring->buffer_info[i];
701 }
702
Tom Herbert50849d72010-05-05 14:02:49 +0000703 rx_ring->next_to_use = i;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700704}
705
706/**
707 * e1000_alloc_rx_buffers_ps - Replace used receive buffers; packet split
Bruce Allan55aa6982011-12-16 00:45:45 +0000708 * @rx_ring: Rx descriptor ring
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -0700709 * @cleaned_count: number to reallocate
710 * @gfp: flags for allocation
Auke Kokbc7f75f2007-09-17 12:30:59 -0700711 **/
Bruce Allan55aa6982011-12-16 00:45:45 +0000712static void e1000_alloc_rx_buffers_ps(struct e1000_ring *rx_ring,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000713 int cleaned_count, gfp_t gfp)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700714{
Bruce Allan55aa6982011-12-16 00:45:45 +0000715 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700716 struct net_device *netdev = adapter->netdev;
717 struct pci_dev *pdev = adapter->pdev;
718 union e1000_rx_desc_packet_split *rx_desc;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700719 struct e1000_buffer *buffer_info;
720 struct e1000_ps_page *ps_page;
721 struct sk_buff *skb;
722 unsigned int i, j;
723
724 i = rx_ring->next_to_use;
725 buffer_info = &rx_ring->buffer_info[i];
726
727 while (cleaned_count--) {
728 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
729
730 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -0700731 ps_page = &buffer_info->ps_pages[j];
732 if (j >= adapter->rx_ps_pages) {
733 /* all unused desc entries get hw null ptr */
Bruce Allanaf667a22010-12-31 06:10:01 +0000734 rx_desc->read.buffer_addr[j + 1] =
735 ~cpu_to_le64(0);
Auke Kok47f44e42007-10-25 13:57:44 -0700736 continue;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700737 }
Auke Kok47f44e42007-10-25 13:57:44 -0700738 if (!ps_page->page) {
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000739 ps_page->page = alloc_page(gfp);
Auke Kok47f44e42007-10-25 13:57:44 -0700740 if (!ps_page->page) {
741 adapter->alloc_rx_buff_failed++;
742 goto no_buffers;
743 }
Nick Nunley0be3f552010-04-27 13:09:05 +0000744 ps_page->dma = dma_map_page(&pdev->dev,
745 ps_page->page,
746 0, PAGE_SIZE,
747 DMA_FROM_DEVICE);
748 if (dma_mapping_error(&pdev->dev,
749 ps_page->dma)) {
Auke Kok47f44e42007-10-25 13:57:44 -0700750 dev_err(&adapter->pdev->dev,
Bruce Allanaf667a22010-12-31 06:10:01 +0000751 "Rx DMA page map failed\n");
Auke Kok47f44e42007-10-25 13:57:44 -0700752 adapter->rx_dma_failed++;
753 goto no_buffers;
754 }
755 }
Bruce Allane921eb12012-11-28 09:28:37 +0000756 /* Refresh the desc even if buffer_addrs
Auke Kok47f44e42007-10-25 13:57:44 -0700757 * didn't change because each write-back
758 * erases this info.
759 */
Bruce Allanaf667a22010-12-31 06:10:01 +0000760 rx_desc->read.buffer_addr[j + 1] =
761 cpu_to_le64(ps_page->dma);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700762 }
763
Bruce Allane5fe2542013-02-20 04:06:27 +0000764 skb = __netdev_alloc_skb_ip_align(netdev, adapter->rx_ps_bsize0,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000765 gfp);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700766
767 if (!skb) {
768 adapter->alloc_rx_buff_failed++;
769 break;
770 }
771
Auke Kokbc7f75f2007-09-17 12:30:59 -0700772 buffer_info->skb = skb;
Nick Nunley0be3f552010-04-27 13:09:05 +0000773 buffer_info->dma = dma_map_single(&pdev->dev, skb->data,
Auke Kokbc7f75f2007-09-17 12:30:59 -0700774 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +0000775 DMA_FROM_DEVICE);
776 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
Bruce Allanaf667a22010-12-31 06:10:01 +0000777 dev_err(&pdev->dev, "Rx DMA map failed\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700778 adapter->rx_dma_failed++;
779 /* cleanup skb */
780 dev_kfree_skb_any(skb);
781 buffer_info->skb = NULL;
782 break;
783 }
784
785 rx_desc->read.buffer_addr[0] = cpu_to_le64(buffer_info->dma);
786
Tom Herbert50849d72010-05-05 14:02:49 +0000787 if (unlikely(!(i & (E1000_RX_BUFFER_WRITE - 1)))) {
Bruce Allane921eb12012-11-28 09:28:37 +0000788 /* Force memory writes to complete before letting h/w
Tom Herbert50849d72010-05-05 14:02:49 +0000789 * know there are new descriptors to fetch. (Only
790 * applicable for weak-ordered memory model archs,
791 * such as IA-64).
792 */
793 wmb();
David S. Miller823dcd22011-08-20 10:39:12 -0700794 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allan55aa6982011-12-16 00:45:45 +0000795 e1000e_update_rdt_wa(rx_ring, i << 1);
David S. Miller823dcd22011-08-20 10:39:12 -0700796 else
Bruce Allanc5083cf2011-12-16 00:45:40 +0000797 writel(i << 1, rx_ring->tail);
Tom Herbert50849d72010-05-05 14:02:49 +0000798 }
799
Auke Kokbc7f75f2007-09-17 12:30:59 -0700800 i++;
801 if (i == rx_ring->count)
802 i = 0;
803 buffer_info = &rx_ring->buffer_info[i];
804 }
805
806no_buffers:
Tom Herbert50849d72010-05-05 14:02:49 +0000807 rx_ring->next_to_use = i;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700808}
809
810/**
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700811 * e1000_alloc_jumbo_rx_buffers - Replace used jumbo receive buffers
Bruce Allan55aa6982011-12-16 00:45:45 +0000812 * @rx_ring: Rx descriptor ring
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700813 * @cleaned_count: number of buffers to allocate this pass
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -0700814 * @gfp: flags for allocation
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700815 **/
816
Bruce Allan55aa6982011-12-16 00:45:45 +0000817static void e1000_alloc_jumbo_rx_buffers(struct e1000_ring *rx_ring,
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000818 int cleaned_count, gfp_t gfp)
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700819{
Bruce Allan55aa6982011-12-16 00:45:45 +0000820 struct e1000_adapter *adapter = rx_ring->adapter;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700821 struct net_device *netdev = adapter->netdev;
822 struct pci_dev *pdev = adapter->pdev;
Bruce Allan5f450212011-07-22 06:21:46 +0000823 union e1000_rx_desc_extended *rx_desc;
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700824 struct e1000_buffer *buffer_info;
825 struct sk_buff *skb;
826 unsigned int i;
Bruce Allan2a2293b2012-12-05 06:26:35 +0000827 unsigned int bufsz = 256 - 16; /* for skb_reserve */
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700828
829 i = rx_ring->next_to_use;
830 buffer_info = &rx_ring->buffer_info[i];
831
832 while (cleaned_count--) {
833 skb = buffer_info->skb;
834 if (skb) {
835 skb_trim(skb, 0);
836 goto check_page;
837 }
838
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000839 skb = __netdev_alloc_skb_ip_align(netdev, bufsz, gfp);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700840 if (unlikely(!skb)) {
841 /* Better luck next round */
842 adapter->alloc_rx_buff_failed++;
843 break;
844 }
845
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700846 buffer_info->skb = skb;
847check_page:
848 /* allocate a new page if necessary */
849 if (!buffer_info->page) {
Jeff Kirsherc2fed992011-07-12 16:10:12 +0000850 buffer_info->page = alloc_page(gfp);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700851 if (unlikely(!buffer_info->page)) {
852 adapter->alloc_rx_buff_failed++;
853 break;
854 }
855 }
856
Christoph Paasch37287fae2013-03-20 08:59:46 +0000857 if (!buffer_info->dma) {
Nick Nunley0be3f552010-04-27 13:09:05 +0000858 buffer_info->dma = dma_map_page(&pdev->dev,
Bruce Allanf0ff4392013-02-20 04:05:39 +0000859 buffer_info->page, 0,
860 PAGE_SIZE,
Nick Nunley0be3f552010-04-27 13:09:05 +0000861 DMA_FROM_DEVICE);
Christoph Paasch37287fae2013-03-20 08:59:46 +0000862 if (dma_mapping_error(&pdev->dev, buffer_info->dma)) {
863 adapter->alloc_rx_buff_failed++;
864 break;
865 }
866 }
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700867
Bruce Allan5f450212011-07-22 06:21:46 +0000868 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
869 rx_desc->read.buffer_addr = cpu_to_le64(buffer_info->dma);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700870
871 if (unlikely(++i == rx_ring->count))
872 i = 0;
873 buffer_info = &rx_ring->buffer_info[i];
874 }
875
876 if (likely(rx_ring->next_to_use != i)) {
877 rx_ring->next_to_use = i;
878 if (unlikely(i-- == 0))
879 i = (rx_ring->count - 1);
880
881 /* Force memory writes to complete before letting h/w
882 * know there are new descriptors to fetch. (Only
883 * applicable for weak-ordered memory model archs,
Bruce Allane921eb12012-11-28 09:28:37 +0000884 * such as IA-64).
885 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700886 wmb();
David S. Miller823dcd22011-08-20 10:39:12 -0700887 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
Bruce Allan55aa6982011-12-16 00:45:45 +0000888 e1000e_update_rdt_wa(rx_ring, i);
David S. Miller823dcd22011-08-20 10:39:12 -0700889 else
Bruce Allanc5083cf2011-12-16 00:45:40 +0000890 writel(i, rx_ring->tail);
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700891 }
892}
893
Bruce Allan70495a52012-01-11 01:26:50 +0000894static inline void e1000_rx_hash(struct net_device *netdev, __le32 rss,
895 struct sk_buff *skb)
896{
897 if (netdev->features & NETIF_F_RXHASH)
Tom Herberte25909b2013-12-18 16:46:48 +0000898 skb_set_hash(skb, le32_to_cpu(rss), PKT_HASH_TYPE_L3);
Bruce Allan70495a52012-01-11 01:26:50 +0000899}
900
Bruce Allan97ac8ca2008-04-29 09:16:05 -0700901/**
Bruce Allan55aa6982011-12-16 00:45:45 +0000902 * e1000_clean_rx_irq - Send received data up the network stack
903 * @rx_ring: Rx descriptor ring
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -0700904 * @work_done: output parameter for indicating completed work
905 * @work_to_do: how many packets we can clean
Auke Kokbc7f75f2007-09-17 12:30:59 -0700906 *
907 * the return value indicates whether actual cleaning was done, there
908 * is no guarantee that everything was cleaned
909 **/
Bruce Allan55aa6982011-12-16 00:45:45 +0000910static bool e1000_clean_rx_irq(struct e1000_ring *rx_ring, int *work_done,
911 int work_to_do)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700912{
Bruce Allan55aa6982011-12-16 00:45:45 +0000913 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700914 struct net_device *netdev = adapter->netdev;
915 struct pci_dev *pdev = adapter->pdev;
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000916 struct e1000_hw *hw = &adapter->hw;
Bruce Allan5f450212011-07-22 06:21:46 +0000917 union e1000_rx_desc_extended *rx_desc, *next_rxd;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700918 struct e1000_buffer *buffer_info, *next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +0000919 u32 length, staterr;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700920 unsigned int i;
921 int cleaned_count = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +0000922 bool cleaned = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700923 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
924
925 i = rx_ring->next_to_clean;
Bruce Allan5f450212011-07-22 06:21:46 +0000926 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
927 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700928 buffer_info = &rx_ring->buffer_info[i];
929
Bruce Allan5f450212011-07-22 06:21:46 +0000930 while (staterr & E1000_RXD_STAT_DD) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700931 struct sk_buff *skb;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700932
933 if (*work_done >= work_to_do)
934 break;
935 (*work_done)++;
Alexander Duyck837a1db2015-04-07 16:55:27 -0700936 dma_rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kokbc7f75f2007-09-17 12:30:59 -0700937
Auke Kokbc7f75f2007-09-17 12:30:59 -0700938 skb = buffer_info->skb;
939 buffer_info->skb = NULL;
940
941 prefetch(skb->data - NET_IP_ALIGN);
942
943 i++;
944 if (i == rx_ring->count)
945 i = 0;
Bruce Allan5f450212011-07-22 06:21:46 +0000946 next_rxd = E1000_RX_DESC_EXT(*rx_ring, i);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700947 prefetch(next_rxd);
948
949 next_buffer = &rx_ring->buffer_info[i];
950
Rusty Russell3db1cd52011-12-19 13:56:45 +0000951 cleaned = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700952 cleaned_count++;
Bruce Allane5fe2542013-02-20 04:06:27 +0000953 dma_unmap_single(&pdev->dev, buffer_info->dma,
954 adapter->rx_buffer_len, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700955 buffer_info->dma = 0;
956
Bruce Allan5f450212011-07-22 06:21:46 +0000957 length = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700958
Bruce Allane921eb12012-11-28 09:28:37 +0000959 /* !EOP means multiple descriptors were used to store a single
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000960 * packet, if that's the case we need to toss it. In fact, we
961 * need to toss every packet with the EOP bit clear and the
962 * next frame that _does_ have the EOP bit set, as it is by
963 * definition only a frame fragment
964 */
Bruce Allan5f450212011-07-22 06:21:46 +0000965 if (unlikely(!(staterr & E1000_RXD_STAT_EOP)))
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000966 adapter->flags2 |= FLAG2_IS_DISCARDING;
967
968 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700969 /* All receives must fit into a single buffer */
Bruce Allan3bb99fe2009-11-20 23:25:07 +0000970 e_dbg("Receive packet consumed multiple buffers\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700971 /* recycle */
972 buffer_info->skb = skb;
Bruce Allan5f450212011-07-22 06:21:46 +0000973 if (staterr & E1000_RXD_STAT_EOP)
Jesse Brandeburgb94b5022010-01-19 14:15:59 +0000974 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700975 goto next_desc;
976 }
977
Ben Greearcf955e62012-02-11 15:39:51 +0000978 if (unlikely((staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) &&
979 !(netdev->features & NETIF_F_RXALL))) {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700980 /* recycle */
981 buffer_info->skb = skb;
982 goto next_desc;
983 }
984
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000985 /* adjust length to remove Ethernet CRC */
Ben Greear01840392012-02-11 15:39:25 +0000986 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING)) {
987 /* If configured to store CRC, don't subtract FCS,
988 * but keep the FCS bytes out of the total_rx_bytes
989 * counter
990 */
991 if (netdev->features & NETIF_F_RXFCS)
992 total_rx_bytes -= 4;
993 else
994 length -= 4;
995 }
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000996
Auke Kokbc7f75f2007-09-17 12:30:59 -0700997 total_rx_bytes += length;
998 total_rx_packets++;
999
Bruce Allane921eb12012-11-28 09:28:37 +00001000 /* code added for copybreak, this should improve
Auke Kokbc7f75f2007-09-17 12:30:59 -07001001 * performance for small packets with large amounts
Bruce Allanad680762008-03-28 09:15:03 -07001002 * of reassembly being done in the stack
1003 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001004 if (length < copybreak) {
1005 struct sk_buff *new_skb =
Alexander Duyck67fd8932014-12-09 19:40:56 -08001006 napi_alloc_skb(&adapter->napi, length);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001007 if (new_skb) {
Bruce Allan808ff672008-08-08 18:35:56 -07001008 skb_copy_to_linear_data_offset(new_skb,
1009 -NET_IP_ALIGN,
1010 (skb->data -
1011 NET_IP_ALIGN),
1012 (length +
1013 NET_IP_ALIGN));
Auke Kokbc7f75f2007-09-17 12:30:59 -07001014 /* save the skb in buffer_info as good */
1015 buffer_info->skb = skb;
1016 skb = new_skb;
1017 }
1018 /* else just continue with the old one */
1019 }
1020 /* end copybreak code */
1021 skb_put(skb, length);
1022
1023 /* Receive Checksum Offload */
Bruce Allan2e1706f2012-06-30 20:02:42 +00001024 e1000_rx_checksum(adapter, staterr, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001025
Bruce Allan70495a52012-01-11 01:26:50 +00001026 e1000_rx_hash(netdev, rx_desc->wb.lower.hi_dword.rss, skb);
1027
Bruce Allan5f450212011-07-22 06:21:46 +00001028 e1000_receive_skb(adapter, netdev, skb, staterr,
1029 rx_desc->wb.upper.vlan);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001030
1031next_desc:
Bruce Allan5f450212011-07-22 06:21:46 +00001032 rx_desc->wb.upper.status_error &= cpu_to_le32(~0xFF);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001033
1034 /* return some buffers to hardware, one at a time is too slow */
1035 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
Bruce Allan55aa6982011-12-16 00:45:45 +00001036 adapter->alloc_rx_buf(rx_ring, cleaned_count,
Jeff Kirsherc2fed992011-07-12 16:10:12 +00001037 GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001038 cleaned_count = 0;
1039 }
1040
1041 /* use prefetched values */
1042 rx_desc = next_rxd;
1043 buffer_info = next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +00001044
1045 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001046 }
1047 rx_ring->next_to_clean = i;
1048
1049 cleaned_count = e1000_desc_unused(rx_ring);
1050 if (cleaned_count)
Bruce Allan55aa6982011-12-16 00:45:45 +00001051 adapter->alloc_rx_buf(rx_ring, cleaned_count, GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001052
Auke Kokbc7f75f2007-09-17 12:30:59 -07001053 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -07001054 adapter->total_rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001055 return cleaned;
1056}
1057
Bruce Allan55aa6982011-12-16 00:45:45 +00001058static void e1000_put_txbuf(struct e1000_ring *tx_ring,
Florian Fainelli377b6272017-08-25 18:14:24 -07001059 struct e1000_buffer *buffer_info,
1060 bool drop)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001061{
Bruce Allan55aa6982011-12-16 00:45:45 +00001062 struct e1000_adapter *adapter = tx_ring->adapter;
1063
Alexander Duyck03b13202009-12-02 16:45:31 +00001064 if (buffer_info->dma) {
1065 if (buffer_info->mapped_as_page)
Nick Nunley0be3f552010-04-27 13:09:05 +00001066 dma_unmap_page(&adapter->pdev->dev, buffer_info->dma,
1067 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00001068 else
Nick Nunley0be3f552010-04-27 13:09:05 +00001069 dma_unmap_single(&adapter->pdev->dev, buffer_info->dma,
1070 buffer_info->length, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00001071 buffer_info->dma = 0;
1072 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001073 if (buffer_info->skb) {
Florian Fainelli377b6272017-08-25 18:14:24 -07001074 if (drop)
1075 dev_kfree_skb_any(buffer_info->skb);
1076 else
1077 dev_consume_skb_any(buffer_info->skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001078 buffer_info->skb = NULL;
1079 }
Alexander Duyck1b7719c2009-03-19 01:12:50 +00001080 buffer_info->time_stamp = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001081}
1082
Bruce Allan41cec6f2009-11-20 23:28:56 +00001083static void e1000_print_hw_hang(struct work_struct *work)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001084{
Bruce Allan41cec6f2009-11-20 23:28:56 +00001085 struct e1000_adapter *adapter = container_of(work,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001086 struct e1000_adapter,
1087 print_hang_task);
Jeff Kirsher09357b02011-11-18 14:25:00 +00001088 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001089 struct e1000_ring *tx_ring = adapter->tx_ring;
1090 unsigned int i = tx_ring->next_to_clean;
1091 unsigned int eop = tx_ring->buffer_info[i].next_to_watch;
1092 struct e1000_tx_desc *eop_desc = E1000_TX_DESC(*tx_ring, eop);
Bruce Allan41cec6f2009-11-20 23:28:56 +00001093 struct e1000_hw *hw = &adapter->hw;
1094 u16 phy_status, phy_1000t_status, phy_ext_status;
1095 u16 pci_status;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001096
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00001097 if (test_bit(__E1000_DOWN, &adapter->state))
1098 return;
1099
Bruce Allane5fe2542013-02-20 04:06:27 +00001100 if (!adapter->tx_hang_recheck && (adapter->flags2 & FLAG2_DMA_BURST)) {
Bruce Allane921eb12012-11-28 09:28:37 +00001101 /* May be block on write-back, flush and detect again
Jeff Kirsher09357b02011-11-18 14:25:00 +00001102 * flush pending descriptor writebacks to memory
1103 */
1104 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
1105 /* execute the writes immediately */
1106 e1e_flush();
Bruce Allane921eb12012-11-28 09:28:37 +00001107 /* Due to rare timing issues, write to TIDV again to ensure
Matthew Vickbf030852012-03-16 09:03:00 +00001108 * the write is successful
1109 */
1110 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
1111 /* execute the writes immediately */
1112 e1e_flush();
Jeff Kirsher09357b02011-11-18 14:25:00 +00001113 adapter->tx_hang_recheck = true;
1114 return;
1115 }
Jeff Kirsher09357b02011-11-18 14:25:00 +00001116 adapter->tx_hang_recheck = false;
David Ertmand9554e92014-01-08 01:07:55 +00001117
1118 if (er32(TDH(0)) == er32(TDT(0))) {
1119 e_dbg("false hang detected, ignoring\n");
1120 return;
1121 }
1122
1123 /* Real hang detected */
Jeff Kirsher09357b02011-11-18 14:25:00 +00001124 netif_stop_queue(netdev);
1125
Bruce Allanc2ade1a2013-01-16 08:54:35 +00001126 e1e_rphy(hw, MII_BMSR, &phy_status);
1127 e1e_rphy(hw, MII_STAT1000, &phy_1000t_status);
1128 e1e_rphy(hw, MII_ESTATUS, &phy_ext_status);
Bruce Allan41cec6f2009-11-20 23:28:56 +00001129
1130 pci_read_config_word(adapter->pdev, PCI_STATUS, &pci_status);
1131
1132 /* detected Hardware unit hang */
1133 e_err("Detected Hardware Unit Hang:\n"
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001134 " TDH <%x>\n"
1135 " TDT <%x>\n"
1136 " next_to_use <%x>\n"
1137 " next_to_clean <%x>\n"
1138 "buffer_info[next_to_clean]:\n"
1139 " time_stamp <%lx>\n"
1140 " next_to_watch <%x>\n"
1141 " jiffies <%lx>\n"
Bruce Allan41cec6f2009-11-20 23:28:56 +00001142 " next_to_watch.status <%x>\n"
1143 "MAC Status <%x>\n"
1144 "PHY Status <%x>\n"
1145 "PHY 1000BASE-T Status <%x>\n"
1146 "PHY Extended Status <%x>\n"
1147 "PCI Status <%x>\n",
Bruce Allane5fe2542013-02-20 04:06:27 +00001148 readl(tx_ring->head), readl(tx_ring->tail), tx_ring->next_to_use,
1149 tx_ring->next_to_clean, tx_ring->buffer_info[eop].time_stamp,
1150 eop, jiffies, eop_desc->upper.fields.status, er32(STATUS),
1151 phy_status, phy_1000t_status, phy_ext_status, pci_status);
Bruce Allan7c0427e2012-03-20 03:48:08 +00001152
David Ertmand9554e92014-01-08 01:07:55 +00001153 e1000e_dump(adapter);
1154
Bruce Allan7c0427e2012-03-20 03:48:08 +00001155 /* Suggest workaround for known h/w issue */
1156 if ((hw->mac.type == e1000_pchlan) && (er32(CTRL) & E1000_CTRL_TFCE))
1157 e_err("Try turning off Tx pause (flow control) via ethtool\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001158}
1159
1160/**
Bruce Allanb67e1912012-12-27 08:32:33 +00001161 * e1000e_tx_hwtstamp_work - check for Tx time stamp
1162 * @work: pointer to work struct
1163 *
1164 * This work function polls the TSYNCTXCTL valid bit to determine when a
1165 * timestamp has been taken for the current stored skb. The timestamp must
1166 * be for this skb because only one such packet is allowed in the queue.
1167 */
1168static void e1000e_tx_hwtstamp_work(struct work_struct *work)
1169{
1170 struct e1000_adapter *adapter = container_of(work, struct e1000_adapter,
1171 tx_hwtstamp_work);
1172 struct e1000_hw *hw = &adapter->hw;
1173
Bruce Allanb67e1912012-12-27 08:32:33 +00001174 if (er32(TSYNCTXCTL) & E1000_TSYNCTXCTL_VALID) {
Jacob Keller50128632017-05-03 10:28:50 -07001175 struct sk_buff *skb = adapter->tx_hwtstamp_skb;
Bruce Allanb67e1912012-12-27 08:32:33 +00001176 struct skb_shared_hwtstamps shhwtstamps;
1177 u64 txstmp;
1178
1179 txstmp = er32(TXSTMPL);
1180 txstmp |= (u64)er32(TXSTMPH) << 32;
1181
1182 e1000e_systim_to_hwtstamp(adapter, &shhwtstamps, txstmp);
1183
Jacob Keller50128632017-05-03 10:28:50 -07001184 /* Clear the global tx_hwtstamp_skb pointer and force writes
1185 * prior to notifying the stack of a Tx timestamp.
1186 */
Bruce Allanb67e1912012-12-27 08:32:33 +00001187 adapter->tx_hwtstamp_skb = NULL;
Jacob Keller50128632017-05-03 10:28:50 -07001188 wmb(); /* force write prior to skb_tstamp_tx */
1189
1190 skb_tstamp_tx(skb, &shhwtstamps);
Florian Fainelli377b6272017-08-25 18:14:24 -07001191 dev_consume_skb_any(skb);
Jakub Kicinski59c871c2014-03-15 14:55:00 +00001192 } else if (time_after(jiffies, adapter->tx_hwtstamp_start
1193 + adapter->tx_timeout_factor * HZ)) {
1194 dev_kfree_skb_any(adapter->tx_hwtstamp_skb);
1195 adapter->tx_hwtstamp_skb = NULL;
1196 adapter->tx_hwtstamp_timeouts++;
Jakub Kicinskic5ffe7e2014-04-02 10:33:22 +00001197 e_warn("clearing Tx timestamp hang\n");
Bruce Allanb67e1912012-12-27 08:32:33 +00001198 } else {
1199 /* reschedule to check later */
1200 schedule_work(&adapter->tx_hwtstamp_work);
1201 }
1202}
1203
1204/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001205 * e1000_clean_tx_irq - Reclaim resources after transmit completes
Bruce Allan55aa6982011-12-16 00:45:45 +00001206 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07001207 *
1208 * the return value indicates whether actual cleaning was done, there
1209 * is no guarantee that everything was cleaned
1210 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001211static bool e1000_clean_tx_irq(struct e1000_ring *tx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001212{
Bruce Allan55aa6982011-12-16 00:45:45 +00001213 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001214 struct net_device *netdev = adapter->netdev;
1215 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001216 struct e1000_tx_desc *tx_desc, *eop_desc;
1217 struct e1000_buffer *buffer_info;
1218 unsigned int i, eop;
1219 unsigned int count = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001220 unsigned int total_tx_bytes = 0, total_tx_packets = 0;
Tom Herbert3f0cfa32011-11-28 16:33:16 +00001221 unsigned int bytes_compl = 0, pkts_compl = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001222
1223 i = tx_ring->next_to_clean;
1224 eop = tx_ring->buffer_info[i].next_to_watch;
1225 eop_desc = E1000_TX_DESC(*tx_ring, eop);
1226
Alexander Duyck12d04a32009-03-25 22:05:03 +00001227 while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) &&
1228 (count < tx_ring->count)) {
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001229 bool cleaned = false;
David Ertman6cf08d12014-04-05 06:07:00 +00001230
Alexander Duyck837a1db2015-04-07 16:55:27 -07001231 dma_rmb(); /* read buffer_info after eop_desc */
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001232 for (; !cleaned; count++) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001233 tx_desc = E1000_TX_DESC(*tx_ring, i);
1234 buffer_info = &tx_ring->buffer_info[i];
1235 cleaned = (i == eop);
1236
1237 if (cleaned) {
Tom Herbert9ed318d2010-05-05 14:02:27 +00001238 total_tx_packets += buffer_info->segs;
1239 total_tx_bytes += buffer_info->bytecount;
Tom Herbert3f0cfa32011-11-28 16:33:16 +00001240 if (buffer_info->skb) {
1241 bytes_compl += buffer_info->skb->len;
1242 pkts_compl++;
1243 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07001244 }
1245
Florian Fainelli377b6272017-08-25 18:14:24 -07001246 e1000_put_txbuf(tx_ring, buffer_info, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001247 tx_desc->upper.data = 0;
1248
1249 i++;
1250 if (i == tx_ring->count)
1251 i = 0;
1252 }
1253
Terry Loftindac87612010-04-09 10:29:49 +00001254 if (i == tx_ring->next_to_use)
1255 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001256 eop = tx_ring->buffer_info[i].next_to_watch;
1257 eop_desc = E1000_TX_DESC(*tx_ring, eop);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001258 }
1259
1260 tx_ring->next_to_clean = i;
1261
Tom Herbert3f0cfa32011-11-28 16:33:16 +00001262 netdev_completed_queue(netdev, pkts_compl, bytes_compl);
1263
Auke Kokbc7f75f2007-09-17 12:30:59 -07001264#define TX_WAKE_THRESHOLD 32
Jesse Brandeburga86043c2009-04-16 16:59:28 +00001265 if (count && netif_carrier_ok(netdev) &&
1266 e1000_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001267 /* Make sure that anybody stopping the queue after this
1268 * sees the new next_to_clean.
1269 */
1270 smp_mb();
1271
1272 if (netif_queue_stopped(netdev) &&
1273 !(test_bit(__E1000_DOWN, &adapter->state))) {
1274 netif_wake_queue(netdev);
1275 ++adapter->restart_queue;
1276 }
1277 }
1278
1279 if (adapter->detect_tx_hung) {
Bruce Allane921eb12012-11-28 09:28:37 +00001280 /* Detect a transmit hang in hardware, this serializes the
Bruce Allan41cec6f2009-11-20 23:28:56 +00001281 * check with the clearing of time_stamp and movement of i
1282 */
Rusty Russell3db1cd52011-12-19 13:56:45 +00001283 adapter->detect_tx_hung = false;
Alexander Duyck12d04a32009-03-25 22:05:03 +00001284 if (tx_ring->buffer_info[i].time_stamp &&
1285 time_after(jiffies, tx_ring->buffer_info[i].time_stamp
Joe Perches8e95a202009-12-03 07:58:21 +00001286 + (adapter->tx_timeout_factor * HZ)) &&
Jeff Kirsher09357b02011-11-18 14:25:00 +00001287 !(er32(STATUS) & E1000_STATUS_TXOFF))
Bruce Allan41cec6f2009-11-20 23:28:56 +00001288 schedule_work(&adapter->print_hang_task);
Jeff Kirsher09357b02011-11-18 14:25:00 +00001289 else
1290 adapter->tx_hang_recheck = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001291 }
1292 adapter->total_tx_bytes += total_tx_bytes;
1293 adapter->total_tx_packets += total_tx_packets;
Eric Dumazet807540b2010-09-23 05:40:09 +00001294 return count < tx_ring->count;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001295}
1296
1297/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001298 * e1000_clean_rx_irq_ps - Send received data up the network stack; packet split
Bruce Allan55aa6982011-12-16 00:45:45 +00001299 * @rx_ring: Rx descriptor ring
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07001300 * @work_done: output parameter for indicating completed work
1301 * @work_to_do: how many packets we can clean
Auke Kokbc7f75f2007-09-17 12:30:59 -07001302 *
1303 * the return value indicates whether actual cleaning was done, there
1304 * is no guarantee that everything was cleaned
1305 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001306static bool e1000_clean_rx_irq_ps(struct e1000_ring *rx_ring, int *work_done,
1307 int work_to_do)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001308{
Bruce Allan55aa6982011-12-16 00:45:45 +00001309 struct e1000_adapter *adapter = rx_ring->adapter;
Bruce Allan3bb99fe2009-11-20 23:25:07 +00001310 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001311 union e1000_rx_desc_packet_split *rx_desc, *next_rxd;
1312 struct net_device *netdev = adapter->netdev;
1313 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001314 struct e1000_buffer *buffer_info, *next_buffer;
1315 struct e1000_ps_page *ps_page;
1316 struct sk_buff *skb;
1317 unsigned int i, j;
1318 u32 length, staterr;
1319 int cleaned_count = 0;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001320 bool cleaned = false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001321 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
1322
1323 i = rx_ring->next_to_clean;
1324 rx_desc = E1000_RX_DESC_PS(*rx_ring, i);
1325 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1326 buffer_info = &rx_ring->buffer_info[i];
1327
1328 while (staterr & E1000_RXD_STAT_DD) {
1329 if (*work_done >= work_to_do)
1330 break;
1331 (*work_done)++;
1332 skb = buffer_info->skb;
Alexander Duyck837a1db2015-04-07 16:55:27 -07001333 dma_rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001334
1335 /* in the packet split case this is header only */
1336 prefetch(skb->data - NET_IP_ALIGN);
1337
1338 i++;
1339 if (i == rx_ring->count)
1340 i = 0;
1341 next_rxd = E1000_RX_DESC_PS(*rx_ring, i);
1342 prefetch(next_rxd);
1343
1344 next_buffer = &rx_ring->buffer_info[i];
1345
Rusty Russell3db1cd52011-12-19 13:56:45 +00001346 cleaned = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001347 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001348 dma_unmap_single(&pdev->dev, buffer_info->dma,
Bruce Allanaf667a22010-12-31 06:10:01 +00001349 adapter->rx_ps_bsize0, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001350 buffer_info->dma = 0;
1351
Bruce Allanaf667a22010-12-31 06:10:01 +00001352 /* see !EOP comment in other Rx routine */
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001353 if (!(staterr & E1000_RXD_STAT_EOP))
1354 adapter->flags2 |= FLAG2_IS_DISCARDING;
1355
1356 if (adapter->flags2 & FLAG2_IS_DISCARDING) {
Jeff Kirsheref456f82011-11-03 11:40:28 +00001357 e_dbg("Packet Split buffers didn't pick up the full packet\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001358 dev_kfree_skb_irq(skb);
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001359 if (staterr & E1000_RXD_STAT_EOP)
1360 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001361 goto next_desc;
1362 }
1363
Ben Greearcf955e62012-02-11 15:39:51 +00001364 if (unlikely((staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) &&
1365 !(netdev->features & NETIF_F_RXALL))) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001366 dev_kfree_skb_irq(skb);
1367 goto next_desc;
1368 }
1369
1370 length = le16_to_cpu(rx_desc->wb.middle.length0);
1371
1372 if (!length) {
Jeff Kirsheref456f82011-11-03 11:40:28 +00001373 e_dbg("Last part of the packet spanning multiple descriptors\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07001374 dev_kfree_skb_irq(skb);
1375 goto next_desc;
1376 }
1377
1378 /* Good Receive */
1379 skb_put(skb, length);
1380
1381 {
Bruce Allane921eb12012-11-28 09:28:37 +00001382 /* this looks ugly, but it seems compiler issues make
Bruce Allan0e15df42012-01-31 06:37:11 +00001383 * it more efficient than reusing j
1384 */
1385 int l1 = le16_to_cpu(rx_desc->wb.upper.length[0]);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001386
Bruce Allane921eb12012-11-28 09:28:37 +00001387 /* page alloc/put takes too long and effects small
Bruce Allan0e15df42012-01-31 06:37:11 +00001388 * packet throughput, so unsplit small packets and
1389 * save the alloc/put only valid in softirq (napi)
1390 * context to call kmap_*
Bruce Allanad680762008-03-28 09:15:03 -07001391 */
Bruce Allan0e15df42012-01-31 06:37:11 +00001392 if (l1 && (l1 <= copybreak) &&
1393 ((length + l1) <= adapter->rx_ps_bsize0)) {
1394 u8 *vaddr;
Auke Kok140a7482007-10-25 13:57:58 -07001395
Bruce Allan0e15df42012-01-31 06:37:11 +00001396 ps_page = &buffer_info->ps_pages[0];
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001397
Bruce Allane921eb12012-11-28 09:28:37 +00001398 /* there is no documentation about how to call
Bruce Allan0e15df42012-01-31 06:37:11 +00001399 * kmap_atomic, so we can't hold the mapping
1400 * very long
1401 */
1402 dma_sync_single_for_cpu(&pdev->dev,
1403 ps_page->dma,
1404 PAGE_SIZE,
1405 DMA_FROM_DEVICE);
Linus Torvalds9f393832012-03-21 09:40:26 -07001406 vaddr = kmap_atomic(ps_page->page);
Bruce Allan0e15df42012-01-31 06:37:11 +00001407 memcpy(skb_tail_pointer(skb), vaddr, l1);
Linus Torvalds9f393832012-03-21 09:40:26 -07001408 kunmap_atomic(vaddr);
Bruce Allan0e15df42012-01-31 06:37:11 +00001409 dma_sync_single_for_device(&pdev->dev,
1410 ps_page->dma,
1411 PAGE_SIZE,
1412 DMA_FROM_DEVICE);
1413
1414 /* remove the CRC */
Ben Greear01840392012-02-11 15:39:25 +00001415 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING)) {
1416 if (!(netdev->features & NETIF_F_RXFCS))
1417 l1 -= 4;
1418 }
Bruce Allan0e15df42012-01-31 06:37:11 +00001419
1420 skb_put(skb, l1);
1421 goto copydone;
Bruce Allane80bd1d2013-05-01 01:19:46 +00001422 } /* if */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001423 }
1424
1425 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
1426 length = le16_to_cpu(rx_desc->wb.upper.length[j]);
1427 if (!length)
1428 break;
1429
Auke Kok47f44e42007-10-25 13:57:44 -07001430 ps_page = &buffer_info->ps_pages[j];
Nick Nunley0be3f552010-04-27 13:09:05 +00001431 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1432 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001433 ps_page->dma = 0;
1434 skb_fill_page_desc(skb, j, ps_page->page, 0, length);
1435 ps_page->page = NULL;
1436 skb->len += length;
1437 skb->data_len += length;
Eric Dumazet98a045d2011-10-13 08:03:36 +00001438 skb->truesize += PAGE_SIZE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001439 }
1440
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001441 /* strip the ethernet crc, problem is we're using pages now so
1442 * this whole operation can get a little cpu intensive
1443 */
Ben Greear01840392012-02-11 15:39:25 +00001444 if (!(adapter->flags2 & FLAG2_CRC_STRIPPING)) {
1445 if (!(netdev->features & NETIF_F_RXFCS))
1446 pskb_trim(skb, skb->len - 4);
1447 }
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00001448
Auke Kokbc7f75f2007-09-17 12:30:59 -07001449copydone:
1450 total_rx_bytes += skb->len;
1451 total_rx_packets++;
1452
Bruce Allan2e1706f2012-06-30 20:02:42 +00001453 e1000_rx_checksum(adapter, staterr, skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001454
Bruce Allan70495a52012-01-11 01:26:50 +00001455 e1000_rx_hash(netdev, rx_desc->wb.lower.hi_dword.rss, skb);
1456
Auke Kokbc7f75f2007-09-17 12:30:59 -07001457 if (rx_desc->wb.upper.header_status &
Bruce Allan17e813e2013-02-20 04:06:01 +00001458 cpu_to_le16(E1000_RXDPS_HDRSTAT_HDRSP))
Auke Kokbc7f75f2007-09-17 12:30:59 -07001459 adapter->rx_hdr_split++;
1460
Bruce Allanb67e1912012-12-27 08:32:33 +00001461 e1000_receive_skb(adapter, netdev, skb, staterr,
1462 rx_desc->wb.middle.vlan);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001463
1464next_desc:
1465 rx_desc->wb.middle.status_error &= cpu_to_le32(~0xFF);
1466 buffer_info->skb = NULL;
1467
1468 /* return some buffers to hardware, one at a time is too slow */
1469 if (cleaned_count >= E1000_RX_BUFFER_WRITE) {
Bruce Allan55aa6982011-12-16 00:45:45 +00001470 adapter->alloc_rx_buf(rx_ring, cleaned_count,
Jeff Kirsherc2fed992011-07-12 16:10:12 +00001471 GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001472 cleaned_count = 0;
1473 }
1474
1475 /* use prefetched values */
1476 rx_desc = next_rxd;
1477 buffer_info = next_buffer;
1478
1479 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1480 }
1481 rx_ring->next_to_clean = i;
1482
1483 cleaned_count = e1000_desc_unused(rx_ring);
1484 if (cleaned_count)
Bruce Allan55aa6982011-12-16 00:45:45 +00001485 adapter->alloc_rx_buf(rx_ring, cleaned_count, GFP_ATOMIC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001486
Auke Kokbc7f75f2007-09-17 12:30:59 -07001487 adapter->total_rx_bytes += total_rx_bytes;
Bruce Allan7c257692008-04-23 11:09:00 -07001488 adapter->total_rx_packets += total_rx_packets;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001489 return cleaned;
1490}
1491
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001492static void e1000_consume_page(struct e1000_buffer *bi, struct sk_buff *skb,
Bruce Allan66501f52013-02-20 04:05:55 +00001493 u16 length)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001494{
1495 bi->page = NULL;
1496 skb->len += length;
1497 skb->data_len += length;
Eric Dumazet98a045d2011-10-13 08:03:36 +00001498 skb->truesize += PAGE_SIZE;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001499}
1500
1501/**
1502 * e1000_clean_jumbo_rx_irq - Send received data up the network stack; legacy
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07001503 * @rx_ring: Rx descriptor ring
1504 * @work_done: output parameter for indicating completed work
1505 * @work_to_do: how many packets we can clean
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001506 *
1507 * the return value indicates whether actual cleaning was done, there
1508 * is no guarantee that everything was cleaned
1509 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001510static bool e1000_clean_jumbo_rx_irq(struct e1000_ring *rx_ring, int *work_done,
1511 int work_to_do)
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001512{
Bruce Allan55aa6982011-12-16 00:45:45 +00001513 struct e1000_adapter *adapter = rx_ring->adapter;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001514 struct net_device *netdev = adapter->netdev;
1515 struct pci_dev *pdev = adapter->pdev;
Bruce Allan5f450212011-07-22 06:21:46 +00001516 union e1000_rx_desc_extended *rx_desc, *next_rxd;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001517 struct e1000_buffer *buffer_info, *next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +00001518 u32 length, staterr;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001519 unsigned int i;
1520 int cleaned_count = 0;
1521 bool cleaned = false;
Bruce Allan362e20c2013-02-20 04:05:45 +00001522 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Bruce Allan17e813e2013-02-20 04:06:01 +00001523 struct skb_shared_info *shinfo;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001524
1525 i = rx_ring->next_to_clean;
Bruce Allan5f450212011-07-22 06:21:46 +00001526 rx_desc = E1000_RX_DESC_EXT(*rx_ring, i);
1527 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001528 buffer_info = &rx_ring->buffer_info[i];
1529
Bruce Allan5f450212011-07-22 06:21:46 +00001530 while (staterr & E1000_RXD_STAT_DD) {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001531 struct sk_buff *skb;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001532
1533 if (*work_done >= work_to_do)
1534 break;
1535 (*work_done)++;
Alexander Duyck837a1db2015-04-07 16:55:27 -07001536 dma_rmb(); /* read descriptor and rx_buffer_info after status DD */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001537
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001538 skb = buffer_info->skb;
1539 buffer_info->skb = NULL;
1540
1541 ++i;
1542 if (i == rx_ring->count)
1543 i = 0;
Bruce Allan5f450212011-07-22 06:21:46 +00001544 next_rxd = E1000_RX_DESC_EXT(*rx_ring, i);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001545 prefetch(next_rxd);
1546
1547 next_buffer = &rx_ring->buffer_info[i];
1548
1549 cleaned = true;
1550 cleaned_count++;
Nick Nunley0be3f552010-04-27 13:09:05 +00001551 dma_unmap_page(&pdev->dev, buffer_info->dma, PAGE_SIZE,
1552 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001553 buffer_info->dma = 0;
1554
Bruce Allan5f450212011-07-22 06:21:46 +00001555 length = le16_to_cpu(rx_desc->wb.upper.length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001556
1557 /* errors is only valid for DD + EOP descriptors */
Bruce Allan5f450212011-07-22 06:21:46 +00001558 if (unlikely((staterr & E1000_RXD_STAT_EOP) &&
Ben Greearcf955e62012-02-11 15:39:51 +00001559 ((staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) &&
1560 !(netdev->features & NETIF_F_RXALL)))) {
Bruce Allan5f450212011-07-22 06:21:46 +00001561 /* recycle both page and skb */
1562 buffer_info->skb = skb;
1563 /* an error means any chain goes out the window too */
1564 if (rx_ring->rx_skb_top)
1565 dev_kfree_skb_irq(rx_ring->rx_skb_top);
1566 rx_ring->rx_skb_top = NULL;
1567 goto next_desc;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001568 }
Bruce Allanf0f1a172010-12-11 05:53:32 +00001569#define rxtop (rx_ring->rx_skb_top)
Bruce Allan5f450212011-07-22 06:21:46 +00001570 if (!(staterr & E1000_RXD_STAT_EOP)) {
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001571 /* this descriptor is only the beginning (or middle) */
1572 if (!rxtop) {
1573 /* this is the beginning of a chain */
1574 rxtop = skb;
1575 skb_fill_page_desc(rxtop, 0, buffer_info->page,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001576 0, length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001577 } else {
1578 /* this is the middle of a chain */
Bruce Allan17e813e2013-02-20 04:06:01 +00001579 shinfo = skb_shinfo(rxtop);
1580 skb_fill_page_desc(rxtop, shinfo->nr_frags,
1581 buffer_info->page, 0,
1582 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001583 /* re-use the skb, only consumed the page */
1584 buffer_info->skb = skb;
1585 }
1586 e1000_consume_page(buffer_info, rxtop, length);
1587 goto next_desc;
1588 } else {
1589 if (rxtop) {
1590 /* end of the chain */
Bruce Allan17e813e2013-02-20 04:06:01 +00001591 shinfo = skb_shinfo(rxtop);
1592 skb_fill_page_desc(rxtop, shinfo->nr_frags,
1593 buffer_info->page, 0,
1594 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001595 /* re-use the current skb, we only consumed the
Bruce Allane921eb12012-11-28 09:28:37 +00001596 * page
1597 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001598 buffer_info->skb = skb;
1599 skb = rxtop;
1600 rxtop = NULL;
1601 e1000_consume_page(buffer_info, skb, length);
1602 } else {
1603 /* no chain, got EOP, this buf is the packet
Bruce Allane921eb12012-11-28 09:28:37 +00001604 * copybreak to save the put_page/alloc_page
1605 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001606 if (length <= copybreak &&
1607 skb_tailroom(skb) >= length) {
1608 u8 *vaddr;
Cong Wang46790262011-11-25 23:14:23 +08001609 vaddr = kmap_atomic(buffer_info->page);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001610 memcpy(skb_tail_pointer(skb), vaddr,
1611 length);
Cong Wang46790262011-11-25 23:14:23 +08001612 kunmap_atomic(vaddr);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001613 /* re-use the page, so don't erase
Bruce Allane921eb12012-11-28 09:28:37 +00001614 * buffer_info->page
1615 */
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001616 skb_put(skb, length);
1617 } else {
1618 skb_fill_page_desc(skb, 0,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001619 buffer_info->page, 0,
1620 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001621 e1000_consume_page(buffer_info, skb,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001622 length);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001623 }
1624 }
1625 }
1626
Bruce Allan2e1706f2012-06-30 20:02:42 +00001627 /* Receive Checksum Offload */
1628 e1000_rx_checksum(adapter, staterr, skb);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001629
Bruce Allan70495a52012-01-11 01:26:50 +00001630 e1000_rx_hash(netdev, rx_desc->wb.lower.hi_dword.rss, skb);
1631
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001632 /* probably a little skewed due to removing CRC */
1633 total_rx_bytes += skb->len;
1634 total_rx_packets++;
1635
1636 /* eth type trans needs skb->data to point to something */
1637 if (!pskb_may_pull(skb, ETH_HLEN)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07001638 e_err("pskb_may_pull failed.\n");
Bruce Allanef5ab892011-02-10 08:17:21 +00001639 dev_kfree_skb_irq(skb);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001640 goto next_desc;
1641 }
1642
Bruce Allan5f450212011-07-22 06:21:46 +00001643 e1000_receive_skb(adapter, netdev, skb, staterr,
1644 rx_desc->wb.upper.vlan);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001645
1646next_desc:
Bruce Allan5f450212011-07-22 06:21:46 +00001647 rx_desc->wb.upper.status_error &= cpu_to_le32(~0xFF);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001648
1649 /* return some buffers to hardware, one at a time is too slow */
1650 if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
Bruce Allan55aa6982011-12-16 00:45:45 +00001651 adapter->alloc_rx_buf(rx_ring, cleaned_count,
Jeff Kirsherc2fed992011-07-12 16:10:12 +00001652 GFP_ATOMIC);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001653 cleaned_count = 0;
1654 }
1655
1656 /* use prefetched values */
1657 rx_desc = next_rxd;
1658 buffer_info = next_buffer;
Bruce Allan5f450212011-07-22 06:21:46 +00001659
1660 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001661 }
1662 rx_ring->next_to_clean = i;
1663
1664 cleaned_count = e1000_desc_unused(rx_ring);
1665 if (cleaned_count)
Bruce Allan55aa6982011-12-16 00:45:45 +00001666 adapter->alloc_rx_buf(rx_ring, cleaned_count, GFP_ATOMIC);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001667
1668 adapter->total_rx_bytes += total_rx_bytes;
1669 adapter->total_rx_packets += total_rx_packets;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001670 return cleaned;
1671}
1672
1673/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07001674 * e1000_clean_rx_ring - Free Rx Buffers per Queue
Bruce Allan55aa6982011-12-16 00:45:45 +00001675 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07001676 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00001677static void e1000_clean_rx_ring(struct e1000_ring *rx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001678{
Bruce Allan55aa6982011-12-16 00:45:45 +00001679 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001680 struct e1000_buffer *buffer_info;
1681 struct e1000_ps_page *ps_page;
1682 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001683 unsigned int i, j;
1684
1685 /* Free all the Rx ring sk_buffs */
1686 for (i = 0; i < rx_ring->count; i++) {
1687 buffer_info = &rx_ring->buffer_info[i];
1688 if (buffer_info->dma) {
1689 if (adapter->clean_rx == e1000_clean_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001690 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001691 adapter->rx_buffer_len,
Nick Nunley0be3f552010-04-27 13:09:05 +00001692 DMA_FROM_DEVICE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001693 else if (adapter->clean_rx == e1000_clean_jumbo_rx_irq)
Nick Nunley0be3f552010-04-27 13:09:05 +00001694 dma_unmap_page(&pdev->dev, buffer_info->dma,
Bruce Allanf0ff4392013-02-20 04:05:39 +00001695 PAGE_SIZE, DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001696 else if (adapter->clean_rx == e1000_clean_rx_irq_ps)
Nick Nunley0be3f552010-04-27 13:09:05 +00001697 dma_unmap_single(&pdev->dev, buffer_info->dma,
Auke Kokbc7f75f2007-09-17 12:30:59 -07001698 adapter->rx_ps_bsize0,
Nick Nunley0be3f552010-04-27 13:09:05 +00001699 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001700 buffer_info->dma = 0;
1701 }
1702
Bruce Allan97ac8ca2008-04-29 09:16:05 -07001703 if (buffer_info->page) {
1704 put_page(buffer_info->page);
1705 buffer_info->page = NULL;
1706 }
1707
Auke Kokbc7f75f2007-09-17 12:30:59 -07001708 if (buffer_info->skb) {
1709 dev_kfree_skb(buffer_info->skb);
1710 buffer_info->skb = NULL;
1711 }
1712
1713 for (j = 0; j < PS_PAGE_BUFFERS; j++) {
Auke Kok47f44e42007-10-25 13:57:44 -07001714 ps_page = &buffer_info->ps_pages[j];
Auke Kokbc7f75f2007-09-17 12:30:59 -07001715 if (!ps_page->page)
1716 break;
Nick Nunley0be3f552010-04-27 13:09:05 +00001717 dma_unmap_page(&pdev->dev, ps_page->dma, PAGE_SIZE,
1718 DMA_FROM_DEVICE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001719 ps_page->dma = 0;
1720 put_page(ps_page->page);
1721 ps_page->page = NULL;
1722 }
1723 }
1724
1725 /* there also may be some cached data from a chained receive */
1726 if (rx_ring->rx_skb_top) {
1727 dev_kfree_skb(rx_ring->rx_skb_top);
1728 rx_ring->rx_skb_top = NULL;
1729 }
1730
Auke Kokbc7f75f2007-09-17 12:30:59 -07001731 /* Zero out the descriptor ring */
1732 memset(rx_ring->desc, 0, rx_ring->size);
1733
1734 rx_ring->next_to_clean = 0;
1735 rx_ring->next_to_use = 0;
Jesse Brandeburgb94b5022010-01-19 14:15:59 +00001736 adapter->flags2 &= ~FLAG2_IS_DISCARDING;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001737}
1738
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001739static void e1000e_downshift_workaround(struct work_struct *work)
1740{
1741 struct e1000_adapter *adapter = container_of(work,
Bruce Allan17e813e2013-02-20 04:06:01 +00001742 struct e1000_adapter,
1743 downshift_task);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001744
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00001745 if (test_bit(__E1000_DOWN, &adapter->state))
1746 return;
1747
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001748 e1000e_gig_downshift_workaround_ich8lan(&adapter->hw);
1749}
1750
Auke Kokbc7f75f2007-09-17 12:30:59 -07001751/**
1752 * e1000_intr_msi - Interrupt Handler
1753 * @irq: interrupt number
1754 * @data: pointer to a network interface device structure
1755 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00001756static irqreturn_t e1000_intr_msi(int __always_unused irq, void *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001757{
1758 struct net_device *netdev = data;
1759 struct e1000_adapter *adapter = netdev_priv(netdev);
1760 struct e1000_hw *hw = &adapter->hw;
1761 u32 icr = er32(ICR);
1762
Bruce Allane921eb12012-11-28 09:28:37 +00001763 /* read ICR disables interrupts using IAM */
dave graham573cca82009-02-10 12:52:05 +00001764 if (icr & E1000_ICR_LSC) {
Bruce Allanf92518d2012-02-01 11:16:42 +00001765 hw->mac.get_link_status = true;
Bruce Allane921eb12012-11-28 09:28:37 +00001766 /* ICH8 workaround-- Call gig speed drop workaround on cable
Bruce Allanad680762008-03-28 09:15:03 -07001767 * disconnect (LSC) before accessing any PHY registers
1768 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001769 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1770 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001771 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001772
Bruce Allane921eb12012-11-28 09:28:37 +00001773 /* 80003ES2LAN workaround-- For packet buffer work-around on
Auke Kokbc7f75f2007-09-17 12:30:59 -07001774 * link down event; disable receives here in the ISR and reset
Bruce Allanad680762008-03-28 09:15:03 -07001775 * adapter in watchdog
1776 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001777 if (netif_carrier_ok(netdev) &&
1778 adapter->flags & FLAG_RX_NEEDS_RESTART) {
1779 /* disable receives */
1780 u32 rctl = er32(RCTL);
David Ertman6cf08d12014-04-05 06:07:00 +00001781
Auke Kokbc7f75f2007-09-17 12:30:59 -07001782 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Bruce Allan12d43f72012-12-05 06:26:14 +00001783 adapter->flags |= FLAG_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001784 }
1785 /* guard against interrupt when we're going down */
1786 if (!test_bit(__E1000_DOWN, &adapter->state))
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08001787 mod_timer(&adapter->watchdog_timer, jiffies + 1);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001788 }
1789
Bruce Allan94fb8482013-01-23 09:00:03 +00001790 /* Reset on uncorrectable ECC error */
Sasha Neftinc8744f42017-04-06 10:26:47 +03001791 if ((icr & E1000_ICR_ECCER) && (hw->mac.type >= e1000_pch_lpt)) {
Bruce Allan94fb8482013-01-23 09:00:03 +00001792 u32 pbeccsts = er32(PBECCSTS);
1793
1794 adapter->corr_errors +=
1795 pbeccsts & E1000_PBECCSTS_CORR_ERR_CNT_MASK;
1796 adapter->uncorr_errors +=
1797 (pbeccsts & E1000_PBECCSTS_UNCORR_ERR_CNT_MASK) >>
1798 E1000_PBECCSTS_UNCORR_ERR_CNT_SHIFT;
1799
1800 /* Do the reset outside of interrupt context */
1801 schedule_work(&adapter->reset_task);
1802
1803 /* return immediately since reset is imminent */
1804 return IRQ_HANDLED;
1805 }
1806
Ben Hutchings288379f2009-01-19 16:43:59 -08001807 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001808 adapter->total_tx_bytes = 0;
1809 adapter->total_tx_packets = 0;
1810 adapter->total_rx_bytes = 0;
1811 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001812 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001813 }
1814
1815 return IRQ_HANDLED;
1816}
1817
1818/**
1819 * e1000_intr - Interrupt Handler
1820 * @irq: interrupt number
1821 * @data: pointer to a network interface device structure
1822 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00001823static irqreturn_t e1000_intr(int __always_unused irq, void *data)
Auke Kokbc7f75f2007-09-17 12:30:59 -07001824{
1825 struct net_device *netdev = data;
1826 struct e1000_adapter *adapter = netdev_priv(netdev);
1827 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001828 u32 rctl, icr = er32(ICR);
Bruce Allan4662e822008-08-26 18:37:06 -07001829
Bruce Allana68ea772009-11-20 23:23:16 +00001830 if (!icr || test_bit(__E1000_DOWN, &adapter->state))
Bruce Allane80bd1d2013-05-01 01:19:46 +00001831 return IRQ_NONE; /* Not our interrupt */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001832
Bruce Allane921eb12012-11-28 09:28:37 +00001833 /* IMS will not auto-mask if INT_ASSERTED is not set, and if it is
Bruce Allanad680762008-03-28 09:15:03 -07001834 * not set, then the adapter didn't send an interrupt
1835 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001836 if (!(icr & E1000_ICR_INT_ASSERTED))
1837 return IRQ_NONE;
1838
Bruce Allane921eb12012-11-28 09:28:37 +00001839 /* Interrupt Auto-Mask...upon reading ICR,
Bruce Allanad680762008-03-28 09:15:03 -07001840 * interrupts are masked. No need for the
1841 * IMC write
1842 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001843
dave graham573cca82009-02-10 12:52:05 +00001844 if (icr & E1000_ICR_LSC) {
Bruce Allanf92518d2012-02-01 11:16:42 +00001845 hw->mac.get_link_status = true;
Bruce Allane921eb12012-11-28 09:28:37 +00001846 /* ICH8 workaround-- Call gig speed drop workaround on cable
Bruce Allanad680762008-03-28 09:15:03 -07001847 * disconnect (LSC) before accessing any PHY registers
1848 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07001849 if ((adapter->flags & FLAG_LSC_GIG_SPEED_DROP) &&
1850 (!(er32(STATUS) & E1000_STATUS_LU)))
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07001851 schedule_work(&adapter->downshift_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001852
Bruce Allane921eb12012-11-28 09:28:37 +00001853 /* 80003ES2LAN workaround--
Auke Kokbc7f75f2007-09-17 12:30:59 -07001854 * For packet buffer work-around on link down event;
1855 * disable receives here in the ISR and
1856 * reset adapter in watchdog
1857 */
1858 if (netif_carrier_ok(netdev) &&
1859 (adapter->flags & FLAG_RX_NEEDS_RESTART)) {
1860 /* disable receives */
1861 rctl = er32(RCTL);
1862 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Bruce Allan12d43f72012-12-05 06:26:14 +00001863 adapter->flags |= FLAG_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07001864 }
1865 /* guard against interrupt when we're going down */
1866 if (!test_bit(__E1000_DOWN, &adapter->state))
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08001867 mod_timer(&adapter->watchdog_timer, jiffies + 1);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001868 }
1869
Bruce Allan94fb8482013-01-23 09:00:03 +00001870 /* Reset on uncorrectable ECC error */
Sasha Neftinc8744f42017-04-06 10:26:47 +03001871 if ((icr & E1000_ICR_ECCER) && (hw->mac.type >= e1000_pch_lpt)) {
Bruce Allan94fb8482013-01-23 09:00:03 +00001872 u32 pbeccsts = er32(PBECCSTS);
1873
1874 adapter->corr_errors +=
1875 pbeccsts & E1000_PBECCSTS_CORR_ERR_CNT_MASK;
1876 adapter->uncorr_errors +=
1877 (pbeccsts & E1000_PBECCSTS_UNCORR_ERR_CNT_MASK) >>
1878 E1000_PBECCSTS_UNCORR_ERR_CNT_SHIFT;
1879
1880 /* Do the reset outside of interrupt context */
1881 schedule_work(&adapter->reset_task);
1882
1883 /* return immediately since reset is imminent */
1884 return IRQ_HANDLED;
1885 }
1886
Ben Hutchings288379f2009-01-19 16:43:59 -08001887 if (napi_schedule_prep(&adapter->napi)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07001888 adapter->total_tx_bytes = 0;
1889 adapter->total_tx_packets = 0;
1890 adapter->total_rx_bytes = 0;
1891 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001892 __napi_schedule(&adapter->napi);
Auke Kokbc7f75f2007-09-17 12:30:59 -07001893 }
1894
1895 return IRQ_HANDLED;
1896}
1897
Bruce Allan8bb62862013-01-16 08:46:49 +00001898static irqreturn_t e1000_msix_other(int __always_unused irq, void *data)
Bruce Allan4662e822008-08-26 18:37:06 -07001899{
1900 struct net_device *netdev = data;
1901 struct e1000_adapter *adapter = netdev_priv(netdev);
1902 struct e1000_hw *hw = &adapter->hw;
Benjamin Poirier116f4a62018-02-08 15:47:14 +09001903 u32 icr = er32(ICR);
Benjamin Poirier745d0bd2018-01-31 16:26:27 +09001904
Benjamin Poirier361a9542018-02-08 15:47:13 +09001905 if (icr & adapter->eiac_mask)
1906 ew32(ICS, (icr & adapter->eiac_mask));
1907
Benjamin Poirier4aea7a5c2017-07-21 11:36:27 -07001908 if (icr & E1000_ICR_LSC) {
Benjamin Poirier4aea7a5c2017-07-21 11:36:27 -07001909 hw->mac.get_link_status = true;
1910 /* guard against interrupt when we're going down */
1911 if (!test_bit(__E1000_DOWN, &adapter->state))
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08001912 mod_timer(&adapter->watchdog_timer, jiffies + 1);
Benjamin Poirier4aea7a5c2017-07-21 11:36:27 -07001913 }
1914
Benjamin Poirier1f0ea192018-02-08 15:47:12 +09001915 if (!test_bit(__E1000_DOWN, &adapter->state))
Benjamin Poirier116f4a62018-02-08 15:47:14 +09001916 ew32(IMS, E1000_IMS_OTHER | IMS_OTHER_MASK);
Bruce Allan4662e822008-08-26 18:37:06 -07001917
Bruce Allan4662e822008-08-26 18:37:06 -07001918 return IRQ_HANDLED;
1919}
1920
Bruce Allan8bb62862013-01-16 08:46:49 +00001921static irqreturn_t e1000_intr_msix_tx(int __always_unused irq, void *data)
Bruce Allan4662e822008-08-26 18:37:06 -07001922{
1923 struct net_device *netdev = data;
1924 struct e1000_adapter *adapter = netdev_priv(netdev);
1925 struct e1000_hw *hw = &adapter->hw;
1926 struct e1000_ring *tx_ring = adapter->tx_ring;
1927
Bruce Allan4662e822008-08-26 18:37:06 -07001928 adapter->total_tx_bytes = 0;
1929 adapter->total_tx_packets = 0;
1930
Bruce Allan55aa6982011-12-16 00:45:45 +00001931 if (!e1000_clean_tx_irq(tx_ring))
Bruce Allan4662e822008-08-26 18:37:06 -07001932 /* Ring was not completely cleaned, so fire another interrupt */
1933 ew32(ICS, tx_ring->ims_val);
1934
Benjamin Poirier0a8047a2015-11-09 15:50:21 -08001935 if (!test_bit(__E1000_DOWN, &adapter->state))
1936 ew32(IMS, adapter->tx_ring->ims_val);
1937
Bruce Allan4662e822008-08-26 18:37:06 -07001938 return IRQ_HANDLED;
1939}
1940
Bruce Allan8bb62862013-01-16 08:46:49 +00001941static irqreturn_t e1000_intr_msix_rx(int __always_unused irq, void *data)
Bruce Allan4662e822008-08-26 18:37:06 -07001942{
1943 struct net_device *netdev = data;
1944 struct e1000_adapter *adapter = netdev_priv(netdev);
Bruce Allan55aa6982011-12-16 00:45:45 +00001945 struct e1000_ring *rx_ring = adapter->rx_ring;
Bruce Allan4662e822008-08-26 18:37:06 -07001946
1947 /* Write the ITR value calculated at the end of the
1948 * previous interrupt.
1949 */
Bruce Allan55aa6982011-12-16 00:45:45 +00001950 if (rx_ring->set_itr) {
Dmitry Fleytmanb77ac462015-10-13 12:48:18 +03001951 u32 itr = rx_ring->itr_val ?
1952 1000000000 / (rx_ring->itr_val * 256) : 0;
1953
1954 writel(itr, rx_ring->itr_register);
Bruce Allan55aa6982011-12-16 00:45:45 +00001955 rx_ring->set_itr = 0;
Bruce Allan4662e822008-08-26 18:37:06 -07001956 }
1957
Ben Hutchings288379f2009-01-19 16:43:59 -08001958 if (napi_schedule_prep(&adapter->napi)) {
Bruce Allan4662e822008-08-26 18:37:06 -07001959 adapter->total_rx_bytes = 0;
1960 adapter->total_rx_packets = 0;
Ben Hutchings288379f2009-01-19 16:43:59 -08001961 __napi_schedule(&adapter->napi);
Bruce Allan4662e822008-08-26 18:37:06 -07001962 }
1963 return IRQ_HANDLED;
1964}
1965
1966/**
1967 * e1000_configure_msix - Configure MSI-X hardware
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07001968 * @adapter: board private structure
Bruce Allan4662e822008-08-26 18:37:06 -07001969 *
1970 * e1000_configure_msix sets up the hardware to properly
1971 * generate MSI-X interrupts.
1972 **/
1973static void e1000_configure_msix(struct e1000_adapter *adapter)
1974{
1975 struct e1000_hw *hw = &adapter->hw;
1976 struct e1000_ring *rx_ring = adapter->rx_ring;
1977 struct e1000_ring *tx_ring = adapter->tx_ring;
1978 int vector = 0;
1979 u32 ctrl_ext, ivar = 0;
1980
1981 adapter->eiac_mask = 0;
1982
1983 /* Workaround issue with spurious interrupts on 82574 in MSI-X mode */
1984 if (hw->mac.type == e1000_82574) {
1985 u32 rfctl = er32(RFCTL);
David Ertman6cf08d12014-04-05 06:07:00 +00001986
Bruce Allan4662e822008-08-26 18:37:06 -07001987 rfctl |= E1000_RFCTL_ACK_DIS;
1988 ew32(RFCTL, rfctl);
1989 }
1990
Bruce Allan4662e822008-08-26 18:37:06 -07001991 /* Configure Rx vector */
1992 rx_ring->ims_val = E1000_IMS_RXQ0;
1993 adapter->eiac_mask |= rx_ring->ims_val;
1994 if (rx_ring->itr_val)
1995 writel(1000000000 / (rx_ring->itr_val * 256),
Bruce Allanc5083cf2011-12-16 00:45:40 +00001996 rx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07001997 else
Bruce Allanc5083cf2011-12-16 00:45:40 +00001998 writel(1, rx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07001999 ivar = E1000_IVAR_INT_ALLOC_VALID | vector;
2000
2001 /* Configure Tx vector */
2002 tx_ring->ims_val = E1000_IMS_TXQ0;
2003 vector++;
2004 if (tx_ring->itr_val)
2005 writel(1000000000 / (tx_ring->itr_val * 256),
Bruce Allanc5083cf2011-12-16 00:45:40 +00002006 tx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07002007 else
Bruce Allanc5083cf2011-12-16 00:45:40 +00002008 writel(1, tx_ring->itr_register);
Bruce Allan4662e822008-08-26 18:37:06 -07002009 adapter->eiac_mask |= tx_ring->ims_val;
2010 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 8);
2011
2012 /* set vector for Other Causes, e.g. link changes */
2013 vector++;
2014 ivar |= ((E1000_IVAR_INT_ALLOC_VALID | vector) << 16);
2015 if (rx_ring->itr_val)
2016 writel(1000000000 / (rx_ring->itr_val * 256),
2017 hw->hw_addr + E1000_EITR_82574(vector));
2018 else
2019 writel(1, hw->hw_addr + E1000_EITR_82574(vector));
2020
2021 /* Cause Tx interrupts on every write back */
Jacob Keller18dd2392016-04-13 16:08:32 -07002022 ivar |= BIT(31);
Bruce Allan4662e822008-08-26 18:37:06 -07002023
2024 ew32(IVAR, ivar);
2025
2026 /* enable MSI-X PBA support */
Benjamin Poirier0a8047a2015-11-09 15:50:21 -08002027 ctrl_ext = er32(CTRL_EXT) & ~E1000_CTRL_EXT_IAME;
2028 ctrl_ext |= E1000_CTRL_EXT_PBA_CLR | E1000_CTRL_EXT_EIAME;
Bruce Allan4662e822008-08-26 18:37:06 -07002029 ew32(CTRL_EXT, ctrl_ext);
2030 e1e_flush();
2031}
2032
2033void e1000e_reset_interrupt_capability(struct e1000_adapter *adapter)
2034{
2035 if (adapter->msix_entries) {
2036 pci_disable_msix(adapter->pdev);
2037 kfree(adapter->msix_entries);
2038 adapter->msix_entries = NULL;
2039 } else if (adapter->flags & FLAG_MSI_ENABLED) {
2040 pci_disable_msi(adapter->pdev);
2041 adapter->flags &= ~FLAG_MSI_ENABLED;
2042 }
Bruce Allan4662e822008-08-26 18:37:06 -07002043}
2044
2045/**
2046 * e1000e_set_interrupt_capability - set MSI or MSI-X if supported
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07002047 * @adapter: board private structure
Bruce Allan4662e822008-08-26 18:37:06 -07002048 *
2049 * Attempt to configure interrupts using the best available
2050 * capabilities of the hardware and kernel.
2051 **/
2052void e1000e_set_interrupt_capability(struct e1000_adapter *adapter)
2053{
2054 int err;
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002055 int i;
Bruce Allan4662e822008-08-26 18:37:06 -07002056
2057 switch (adapter->int_mode) {
2058 case E1000E_INT_MODE_MSIX:
2059 if (adapter->flags & FLAG_HAS_MSIX) {
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002060 adapter->num_vectors = 3; /* RxQ0, TxQ0 and other */
2061 adapter->msix_entries = kcalloc(adapter->num_vectors,
Bruce Allan17e813e2013-02-20 04:06:01 +00002062 sizeof(struct
2063 msix_entry),
2064 GFP_KERNEL);
Bruce Allan4662e822008-08-26 18:37:06 -07002065 if (adapter->msix_entries) {
Alexander Gordeev0cc7c952014-02-18 11:11:41 +01002066 struct e1000_adapter *a = adapter;
2067
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002068 for (i = 0; i < adapter->num_vectors; i++)
Bruce Allan4662e822008-08-26 18:37:06 -07002069 adapter->msix_entries[i].entry = i;
2070
Alexander Gordeev0cc7c952014-02-18 11:11:41 +01002071 err = pci_enable_msix_range(a->pdev,
2072 a->msix_entries,
2073 a->num_vectors,
2074 a->num_vectors);
2075 if (err > 0)
Bruce Allan4662e822008-08-26 18:37:06 -07002076 return;
2077 }
2078 /* MSI-X failed, so fall through and try MSI */
Jeff Kirsheref456f82011-11-03 11:40:28 +00002079 e_err("Failed to initialize MSI-X interrupts. Falling back to MSI interrupts.\n");
Bruce Allan4662e822008-08-26 18:37:06 -07002080 e1000e_reset_interrupt_capability(adapter);
2081 }
2082 adapter->int_mode = E1000E_INT_MODE_MSI;
Jeff Kirsher5463fce62020-06-03 20:07:26 -07002083 fallthrough;
Bruce Allan4662e822008-08-26 18:37:06 -07002084 case E1000E_INT_MODE_MSI:
2085 if (!pci_enable_msi(adapter->pdev)) {
2086 adapter->flags |= FLAG_MSI_ENABLED;
2087 } else {
2088 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Jeff Kirsheref456f82011-11-03 11:40:28 +00002089 e_err("Failed to initialize MSI interrupts. Falling back to legacy interrupts.\n");
Bruce Allan4662e822008-08-26 18:37:06 -07002090 }
Jeff Kirsher5463fce62020-06-03 20:07:26 -07002091 fallthrough;
Bruce Allan4662e822008-08-26 18:37:06 -07002092 case E1000E_INT_MODE_LEGACY:
2093 /* Don't do anything; this is the system default */
2094 break;
2095 }
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002096
2097 /* store the number of vectors being used */
2098 adapter->num_vectors = 1;
Bruce Allan4662e822008-08-26 18:37:06 -07002099}
2100
2101/**
2102 * e1000_request_msix - Initialize MSI-X interrupts
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07002103 * @adapter: board private structure
Bruce Allan4662e822008-08-26 18:37:06 -07002104 *
2105 * e1000_request_msix allocates MSI-X vectors and requests interrupts from the
2106 * kernel.
2107 **/
2108static int e1000_request_msix(struct e1000_adapter *adapter)
2109{
2110 struct net_device *netdev = adapter->netdev;
2111 int err = 0, vector = 0;
2112
2113 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Bruce Allan79f5e842011-01-19 04:20:59 +00002114 snprintf(adapter->rx_ring->name,
2115 sizeof(adapter->rx_ring->name) - 1,
Florian Fainelli135e7242019-02-21 20:09:28 -08002116 "%.14s-rx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07002117 else
2118 memcpy(adapter->rx_ring->name, netdev->name, IFNAMSIZ);
2119 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08002120 e1000_intr_msix_rx, 0, adapter->rx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07002121 netdev);
2122 if (err)
Bruce Allan5015e532012-02-08 02:55:56 +00002123 return err;
Bruce Allanc5083cf2011-12-16 00:45:40 +00002124 adapter->rx_ring->itr_register = adapter->hw.hw_addr +
2125 E1000_EITR_82574(vector);
Bruce Allan4662e822008-08-26 18:37:06 -07002126 adapter->rx_ring->itr_val = adapter->itr;
2127 vector++;
2128
2129 if (strlen(netdev->name) < (IFNAMSIZ - 5))
Bruce Allan79f5e842011-01-19 04:20:59 +00002130 snprintf(adapter->tx_ring->name,
2131 sizeof(adapter->tx_ring->name) - 1,
Florian Fainelli135e7242019-02-21 20:09:28 -08002132 "%.14s-tx-0", netdev->name);
Bruce Allan4662e822008-08-26 18:37:06 -07002133 else
2134 memcpy(adapter->tx_ring->name, netdev->name, IFNAMSIZ);
2135 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08002136 e1000_intr_msix_tx, 0, adapter->tx_ring->name,
Bruce Allan4662e822008-08-26 18:37:06 -07002137 netdev);
2138 if (err)
Bruce Allan5015e532012-02-08 02:55:56 +00002139 return err;
Bruce Allanc5083cf2011-12-16 00:45:40 +00002140 adapter->tx_ring->itr_register = adapter->hw.hw_addr +
2141 E1000_EITR_82574(vector);
Bruce Allan4662e822008-08-26 18:37:06 -07002142 adapter->tx_ring->itr_val = adapter->itr;
2143 vector++;
2144
2145 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchesa0607fd2009-11-18 23:29:17 -08002146 e1000_msix_other, 0, netdev->name, netdev);
Bruce Allan4662e822008-08-26 18:37:06 -07002147 if (err)
Bruce Allan5015e532012-02-08 02:55:56 +00002148 return err;
Bruce Allan4662e822008-08-26 18:37:06 -07002149
2150 e1000_configure_msix(adapter);
Bruce Allan5015e532012-02-08 02:55:56 +00002151
Bruce Allan4662e822008-08-26 18:37:06 -07002152 return 0;
Bruce Allan4662e822008-08-26 18:37:06 -07002153}
2154
Bruce Allanf8d59f72008-08-08 18:36:11 -07002155/**
2156 * e1000_request_irq - initialize interrupts
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07002157 * @adapter: board private structure
Bruce Allanf8d59f72008-08-08 18:36:11 -07002158 *
2159 * Attempts to configure interrupts using the best available
2160 * capabilities of the hardware and kernel.
2161 **/
Auke Kokbc7f75f2007-09-17 12:30:59 -07002162static int e1000_request_irq(struct e1000_adapter *adapter)
2163{
2164 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002165 int err;
2166
Bruce Allan4662e822008-08-26 18:37:06 -07002167 if (adapter->msix_entries) {
2168 err = e1000_request_msix(adapter);
2169 if (!err)
2170 return err;
2171 /* fall back to MSI */
2172 e1000e_reset_interrupt_capability(adapter);
2173 adapter->int_mode = E1000E_INT_MODE_MSI;
2174 e1000e_set_interrupt_capability(adapter);
2175 }
2176 if (adapter->flags & FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002177 err = request_irq(adapter->pdev->irq, e1000_intr_msi, 0,
Bruce Allan4662e822008-08-26 18:37:06 -07002178 netdev->name, netdev);
2179 if (!err)
2180 return err;
2181
2182 /* fall back to legacy interrupt */
2183 e1000e_reset_interrupt_capability(adapter);
2184 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002185 }
2186
Joe Perchesa0607fd2009-11-18 23:29:17 -08002187 err = request_irq(adapter->pdev->irq, e1000_intr, IRQF_SHARED,
Bruce Allan4662e822008-08-26 18:37:06 -07002188 netdev->name, netdev);
2189 if (err)
Bruce Allanf8d59f72008-08-08 18:36:11 -07002190 e_err("Unable to allocate interrupt, Error: %d\n", err);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002191
2192 return err;
2193}
2194
2195static void e1000_free_irq(struct e1000_adapter *adapter)
2196{
2197 struct net_device *netdev = adapter->netdev;
2198
Bruce Allan4662e822008-08-26 18:37:06 -07002199 if (adapter->msix_entries) {
2200 int vector = 0;
2201
2202 free_irq(adapter->msix_entries[vector].vector, netdev);
2203 vector++;
2204
2205 free_irq(adapter->msix_entries[vector].vector, netdev);
2206 vector++;
2207
2208 /* Other Causes interrupt vector */
2209 free_irq(adapter->msix_entries[vector].vector, netdev);
2210 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002211 }
Bruce Allan4662e822008-08-26 18:37:06 -07002212
2213 free_irq(adapter->pdev->irq, netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002214}
2215
2216/**
2217 * e1000_irq_disable - Mask off interrupt generation on the NIC
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07002218 * @adapter: board private structure
Auke Kokbc7f75f2007-09-17 12:30:59 -07002219 **/
2220static void e1000_irq_disable(struct e1000_adapter *adapter)
2221{
2222 struct e1000_hw *hw = &adapter->hw;
2223
Auke Kokbc7f75f2007-09-17 12:30:59 -07002224 ew32(IMC, ~0);
Bruce Allan4662e822008-08-26 18:37:06 -07002225 if (adapter->msix_entries)
2226 ew32(EIAC_82574, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002227 e1e_flush();
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002228
2229 if (adapter->msix_entries) {
2230 int i;
David Ertman6cf08d12014-04-05 06:07:00 +00002231
Jeff Kirsher8e86acd2010-08-02 14:27:23 +00002232 for (i = 0; i < adapter->num_vectors; i++)
2233 synchronize_irq(adapter->msix_entries[i].vector);
2234 } else {
2235 synchronize_irq(adapter->pdev->irq);
2236 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002237}
2238
2239/**
2240 * e1000_irq_enable - Enable default interrupt generation settings
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07002241 * @adapter: board private structure
Auke Kokbc7f75f2007-09-17 12:30:59 -07002242 **/
2243static void e1000_irq_enable(struct e1000_adapter *adapter)
2244{
2245 struct e1000_hw *hw = &adapter->hw;
2246
Bruce Allan4662e822008-08-26 18:37:06 -07002247 if (adapter->msix_entries) {
2248 ew32(EIAC_82574, adapter->eiac_mask & E1000_EIAC_MASK_82574);
Benjamin Poirier116f4a62018-02-08 15:47:14 +09002249 ew32(IMS, adapter->eiac_mask | E1000_IMS_OTHER |
2250 IMS_OTHER_MASK);
Sasha Neftinc8744f42017-04-06 10:26:47 +03002251 } else if (hw->mac.type >= e1000_pch_lpt) {
Bruce Allan94fb8482013-01-23 09:00:03 +00002252 ew32(IMS, IMS_ENABLE_MASK | E1000_IMS_ECCER);
Bruce Allan4662e822008-08-26 18:37:06 -07002253 } else {
2254 ew32(IMS, IMS_ENABLE_MASK);
2255 }
Jesse Brandeburg74ef9c32008-03-21 11:06:52 -07002256 e1e_flush();
Auke Kokbc7f75f2007-09-17 12:30:59 -07002257}
2258
2259/**
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002260 * e1000e_get_hw_control - get control of the h/w from f/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07002261 * @adapter: address of board private structure
2262 *
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002263 * e1000e_get_hw_control sets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002264 * For ASF and Pass Through versions of f/w this means that
2265 * the driver is loaded. For AMT version (only with 82573)
2266 * of the f/w this means that the network i/f is open.
2267 **/
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002268void e1000e_get_hw_control(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002269{
2270 struct e1000_hw *hw = &adapter->hw;
2271 u32 ctrl_ext;
2272 u32 swsm;
2273
2274 /* Let firmware know the driver has taken over */
2275 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
2276 swsm = er32(SWSM);
2277 ew32(SWSM, swsm | E1000_SWSM_DRV_LOAD);
2278 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
2279 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07002280 ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002281 }
2282}
2283
2284/**
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002285 * e1000e_release_hw_control - release control of the h/w to f/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07002286 * @adapter: address of board private structure
2287 *
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002288 * e1000e_release_hw_control resets {CTRL_EXT|SWSM}:DRV_LOAD bit.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002289 * For ASF and Pass Through versions of f/w this means that the
2290 * driver is no longer loaded. For AMT version (only with 82573) i
2291 * of the f/w this means that the network i/f is closed.
2292 *
2293 **/
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002294void e1000e_release_hw_control(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002295{
2296 struct e1000_hw *hw = &adapter->hw;
2297 u32 ctrl_ext;
2298 u32 swsm;
2299
2300 /* Let firmware taken over control of h/w */
2301 if (adapter->flags & FLAG_HAS_SWSM_ON_LOAD) {
2302 swsm = er32(SWSM);
2303 ew32(SWSM, swsm & ~E1000_SWSM_DRV_LOAD);
2304 } else if (adapter->flags & FLAG_HAS_CTRLEXT_ON_LOAD) {
2305 ctrl_ext = er32(CTRL_EXT);
Bruce Allanad680762008-03-28 09:15:03 -07002306 ew32(CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002307 }
2308}
2309
Auke Kokbc7f75f2007-09-17 12:30:59 -07002310/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002311 * e1000_alloc_ring_dma - allocate memory for a ring structure
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07002312 * @adapter: board private structure
2313 * @ring: ring struct for which to allocate dma
Auke Kokbc7f75f2007-09-17 12:30:59 -07002314 **/
2315static int e1000_alloc_ring_dma(struct e1000_adapter *adapter,
2316 struct e1000_ring *ring)
2317{
2318 struct pci_dev *pdev = adapter->pdev;
2319
Luis Chamberlain750afb02019-01-04 09:23:09 +01002320 ring->desc = dma_alloc_coherent(&pdev->dev, ring->size, &ring->dma,
2321 GFP_KERNEL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002322 if (!ring->desc)
2323 return -ENOMEM;
2324
2325 return 0;
2326}
2327
2328/**
2329 * e1000e_setup_tx_resources - allocate Tx resources (Descriptors)
Bruce Allan55aa6982011-12-16 00:45:45 +00002330 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002331 *
2332 * Return 0 on success, negative on failure
2333 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002334int e1000e_setup_tx_resources(struct e1000_ring *tx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002335{
Bruce Allan55aa6982011-12-16 00:45:45 +00002336 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002337 int err = -ENOMEM, size;
2338
2339 size = sizeof(struct e1000_buffer) * tx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00002340 tx_ring->buffer_info = vzalloc(size);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002341 if (!tx_ring->buffer_info)
2342 goto err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002343
2344 /* round up to nearest 4K */
2345 tx_ring->size = tx_ring->count * sizeof(struct e1000_tx_desc);
2346 tx_ring->size = ALIGN(tx_ring->size, 4096);
2347
2348 err = e1000_alloc_ring_dma(adapter, tx_ring);
2349 if (err)
2350 goto err;
2351
2352 tx_ring->next_to_use = 0;
2353 tx_ring->next_to_clean = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002354
2355 return 0;
2356err:
2357 vfree(tx_ring->buffer_info);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07002358 e_err("Unable to allocate memory for the transmit descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002359 return err;
2360}
2361
2362/**
2363 * e1000e_setup_rx_resources - allocate Rx resources (Descriptors)
Bruce Allan55aa6982011-12-16 00:45:45 +00002364 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002365 *
2366 * Returns 0 on success, negative on failure
2367 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002368int e1000e_setup_rx_resources(struct e1000_ring *rx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002369{
Bruce Allan55aa6982011-12-16 00:45:45 +00002370 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kok47f44e42007-10-25 13:57:44 -07002371 struct e1000_buffer *buffer_info;
2372 int i, size, desc_len, err = -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002373
2374 size = sizeof(struct e1000_buffer) * rx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00002375 rx_ring->buffer_info = vzalloc(size);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002376 if (!rx_ring->buffer_info)
2377 goto err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002378
Auke Kok47f44e42007-10-25 13:57:44 -07002379 for (i = 0; i < rx_ring->count; i++) {
2380 buffer_info = &rx_ring->buffer_info[i];
2381 buffer_info->ps_pages = kcalloc(PS_PAGE_BUFFERS,
2382 sizeof(struct e1000_ps_page),
2383 GFP_KERNEL);
2384 if (!buffer_info->ps_pages)
2385 goto err_pages;
2386 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002387
2388 desc_len = sizeof(union e1000_rx_desc_packet_split);
2389
2390 /* Round up to nearest 4K */
2391 rx_ring->size = rx_ring->count * desc_len;
2392 rx_ring->size = ALIGN(rx_ring->size, 4096);
2393
2394 err = e1000_alloc_ring_dma(adapter, rx_ring);
2395 if (err)
Auke Kok47f44e42007-10-25 13:57:44 -07002396 goto err_pages;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002397
2398 rx_ring->next_to_clean = 0;
2399 rx_ring->next_to_use = 0;
2400 rx_ring->rx_skb_top = NULL;
2401
2402 return 0;
Auke Kok47f44e42007-10-25 13:57:44 -07002403
2404err_pages:
2405 for (i = 0; i < rx_ring->count; i++) {
2406 buffer_info = &rx_ring->buffer_info[i];
2407 kfree(buffer_info->ps_pages);
2408 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002409err:
2410 vfree(rx_ring->buffer_info);
Bruce Allane9262442010-11-24 06:02:06 +00002411 e_err("Unable to allocate memory for the receive descriptor ring\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07002412 return err;
2413}
2414
2415/**
2416 * e1000_clean_tx_ring - Free Tx Buffers
Bruce Allan55aa6982011-12-16 00:45:45 +00002417 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002418 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002419static void e1000_clean_tx_ring(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 e1000_buffer *buffer_info;
2423 unsigned long size;
2424 unsigned int i;
2425
2426 for (i = 0; i < tx_ring->count; i++) {
2427 buffer_info = &tx_ring->buffer_info[i];
Florian Fainelli377b6272017-08-25 18:14:24 -07002428 e1000_put_txbuf(tx_ring, buffer_info, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002429 }
2430
Tom Herbert3f0cfa32011-11-28 16:33:16 +00002431 netdev_reset_queue(adapter->netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002432 size = sizeof(struct e1000_buffer) * tx_ring->count;
2433 memset(tx_ring->buffer_info, 0, size);
2434
2435 memset(tx_ring->desc, 0, tx_ring->size);
2436
2437 tx_ring->next_to_use = 0;
2438 tx_ring->next_to_clean = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002439}
2440
2441/**
2442 * e1000e_free_tx_resources - Free Tx Resources per Queue
Bruce Allan55aa6982011-12-16 00:45:45 +00002443 * @tx_ring: Tx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002444 *
2445 * Free all transmit software resources
2446 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002447void e1000e_free_tx_resources(struct e1000_ring *tx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002448{
Bruce Allan55aa6982011-12-16 00:45:45 +00002449 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002450 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002451
Bruce Allan55aa6982011-12-16 00:45:45 +00002452 e1000_clean_tx_ring(tx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002453
2454 vfree(tx_ring->buffer_info);
2455 tx_ring->buffer_info = NULL;
2456
2457 dma_free_coherent(&pdev->dev, tx_ring->size, tx_ring->desc,
2458 tx_ring->dma);
2459 tx_ring->desc = NULL;
2460}
2461
2462/**
2463 * e1000e_free_rx_resources - Free Rx Resources
Bruce Allan55aa6982011-12-16 00:45:45 +00002464 * @rx_ring: Rx descriptor ring
Auke Kokbc7f75f2007-09-17 12:30:59 -07002465 *
2466 * Free all receive software resources
2467 **/
Bruce Allan55aa6982011-12-16 00:45:45 +00002468void e1000e_free_rx_resources(struct e1000_ring *rx_ring)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002469{
Bruce Allan55aa6982011-12-16 00:45:45 +00002470 struct e1000_adapter *adapter = rx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002471 struct pci_dev *pdev = adapter->pdev;
Auke Kok47f44e42007-10-25 13:57:44 -07002472 int i;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002473
Bruce Allan55aa6982011-12-16 00:45:45 +00002474 e1000_clean_rx_ring(rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002475
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002476 for (i = 0; i < rx_ring->count; i++)
Auke Kok47f44e42007-10-25 13:57:44 -07002477 kfree(rx_ring->buffer_info[i].ps_pages);
Auke Kok47f44e42007-10-25 13:57:44 -07002478
Auke Kokbc7f75f2007-09-17 12:30:59 -07002479 vfree(rx_ring->buffer_info);
2480 rx_ring->buffer_info = NULL;
2481
Auke Kokbc7f75f2007-09-17 12:30:59 -07002482 dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc,
2483 rx_ring->dma);
2484 rx_ring->desc = NULL;
2485}
2486
2487/**
2488 * e1000_update_itr - update the dynamic ITR value based on statistics
Auke Kok489815c2008-02-21 15:11:07 -08002489 * @itr_setting: current adapter->itr
2490 * @packets: the number of packets during this measurement interval
2491 * @bytes: the number of bytes during this measurement interval
2492 *
Auke Kokbc7f75f2007-09-17 12:30:59 -07002493 * Stores a new ITR value based on packets and byte
2494 * counts during the last interrupt. The advantage of per interrupt
2495 * computation is faster updates and more accurate ITR for the current
2496 * traffic pattern. Constants in this function were computed
2497 * based on theoretical maximum wire speed and thresholds were set based
2498 * on testing data as well as attempting to minimize response time
Bruce Allan4662e822008-08-26 18:37:06 -07002499 * while increasing bulk throughput. This functionality is controlled
2500 * by the InterruptThrottleRate module parameter.
Auke Kokbc7f75f2007-09-17 12:30:59 -07002501 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00002502static unsigned int e1000_update_itr(u16 itr_setting, int packets, int bytes)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002503{
2504 unsigned int retval = itr_setting;
2505
2506 if (packets == 0)
Bruce Allan5015e532012-02-08 02:55:56 +00002507 return itr_setting;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002508
2509 switch (itr_setting) {
2510 case lowest_latency:
2511 /* handle TSO and jumbo frames */
Bruce Allan362e20c2013-02-20 04:05:45 +00002512 if (bytes / packets > 8000)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002513 retval = bulk_latency;
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002514 else if ((packets < 5) && (bytes > 512))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002515 retval = low_latency;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002516 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +00002517 case low_latency: /* 50 usec aka 20000 ints/s */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002518 if (bytes > 10000) {
2519 /* this if handles the TSO accounting */
Bruce Allan362e20c2013-02-20 04:05:45 +00002520 if (bytes / packets > 8000)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002521 retval = bulk_latency;
Bruce Allan362e20c2013-02-20 04:05:45 +00002522 else if ((packets < 10) || ((bytes / packets) > 1200))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002523 retval = bulk_latency;
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002524 else if ((packets > 35))
Auke Kokbc7f75f2007-09-17 12:30:59 -07002525 retval = lowest_latency;
Bruce Allan362e20c2013-02-20 04:05:45 +00002526 } else if (bytes / packets > 2000) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002527 retval = bulk_latency;
2528 } else if (packets <= 2 && bytes < 512) {
2529 retval = lowest_latency;
2530 }
2531 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +00002532 case bulk_latency: /* 250 usec aka 4000 ints/s */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002533 if (bytes > 25000) {
Bruce Allanb1cdfea2010-12-11 05:53:47 +00002534 if (packets > 35)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002535 retval = low_latency;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002536 } else if (bytes < 6000) {
2537 retval = low_latency;
2538 }
2539 break;
2540 }
2541
Auke Kokbc7f75f2007-09-17 12:30:59 -07002542 return retval;
2543}
2544
2545static void e1000_set_itr(struct e1000_adapter *adapter)
2546{
Auke Kokbc7f75f2007-09-17 12:30:59 -07002547 u16 current_itr;
2548 u32 new_itr = adapter->itr;
2549
2550 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
2551 if (adapter->link_speed != SPEED_1000) {
2552 current_itr = 0;
2553 new_itr = 4000;
2554 goto set_itr_now;
2555 }
2556
Bruce Allan828bac82010-09-29 21:39:37 +00002557 if (adapter->flags2 & FLAG2_DISABLE_AIM) {
2558 new_itr = 0;
2559 goto set_itr_now;
2560 }
2561
Bruce Allan8bb62862013-01-16 08:46:49 +00002562 adapter->tx_itr = e1000_update_itr(adapter->tx_itr,
2563 adapter->total_tx_packets,
2564 adapter->total_tx_bytes);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002565 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2566 if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
2567 adapter->tx_itr = low_latency;
2568
Bruce Allan8bb62862013-01-16 08:46:49 +00002569 adapter->rx_itr = e1000_update_itr(adapter->rx_itr,
2570 adapter->total_rx_packets,
2571 adapter->total_rx_bytes);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002572 /* conservative mode (itr 3) eliminates the lowest_latency setting */
2573 if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
2574 adapter->rx_itr = low_latency;
2575
2576 current_itr = max(adapter->rx_itr, adapter->tx_itr);
2577
Auke Kokbc7f75f2007-09-17 12:30:59 -07002578 /* counts and packets in update_itr are dependent on these numbers */
Bruce Allan33550ce2013-02-20 04:06:16 +00002579 switch (current_itr) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002580 case lowest_latency:
2581 new_itr = 70000;
2582 break;
2583 case low_latency:
Bruce Allane80bd1d2013-05-01 01:19:46 +00002584 new_itr = 20000; /* aka hwitr = ~200 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002585 break;
2586 case bulk_latency:
2587 new_itr = 4000;
2588 break;
2589 default:
2590 break;
2591 }
2592
2593set_itr_now:
2594 if (new_itr != adapter->itr) {
Bruce Allane921eb12012-11-28 09:28:37 +00002595 /* this attempts to bias the interrupt rate towards Bulk
Auke Kokbc7f75f2007-09-17 12:30:59 -07002596 * by adding intermediate steps when interrupt rate is
Bruce Allanad680762008-03-28 09:15:03 -07002597 * increasing
2598 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002599 new_itr = new_itr > adapter->itr ?
Bruce Allanf0ff4392013-02-20 04:05:39 +00002600 min(adapter->itr + (new_itr >> 2), new_itr) : new_itr;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002601 adapter->itr = new_itr;
Bruce Allan4662e822008-08-26 18:37:06 -07002602 adapter->rx_ring->itr_val = new_itr;
2603 if (adapter->msix_entries)
2604 adapter->rx_ring->set_itr = 1;
2605 else
Bruce Allane3d14b02012-12-05 06:26:51 +00002606 e1000e_write_itr(adapter, new_itr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002607 }
2608}
2609
2610/**
Matthew Vick22a4cca2012-07-12 00:02:42 +00002611 * e1000e_write_itr - write the ITR value to the appropriate registers
2612 * @adapter: address of board private structure
2613 * @itr: new ITR value to program
2614 *
2615 * e1000e_write_itr determines if the adapter is in MSI-X mode
2616 * and, if so, writes the EITR registers with the ITR value.
2617 * Otherwise, it writes the ITR value into the ITR register.
2618 **/
2619void e1000e_write_itr(struct e1000_adapter *adapter, u32 itr)
2620{
2621 struct e1000_hw *hw = &adapter->hw;
2622 u32 new_itr = itr ? 1000000000 / (itr * 256) : 0;
2623
2624 if (adapter->msix_entries) {
2625 int vector;
2626
2627 for (vector = 0; vector < adapter->num_vectors; vector++)
2628 writel(new_itr, hw->hw_addr + E1000_EITR_82574(vector));
2629 } else {
2630 ew32(ITR, new_itr);
2631 }
2632}
2633
2634/**
Bruce Allan4662e822008-08-26 18:37:06 -07002635 * e1000_alloc_queues - Allocate memory for all rings
2636 * @adapter: board private structure to initialize
2637 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05002638static int e1000_alloc_queues(struct e1000_adapter *adapter)
Bruce Allan4662e822008-08-26 18:37:06 -07002639{
Bruce Allan55aa6982011-12-16 00:45:45 +00002640 int size = sizeof(struct e1000_ring);
2641
2642 adapter->tx_ring = kzalloc(size, GFP_KERNEL);
Bruce Allan4662e822008-08-26 18:37:06 -07002643 if (!adapter->tx_ring)
2644 goto err;
Bruce Allan55aa6982011-12-16 00:45:45 +00002645 adapter->tx_ring->count = adapter->tx_ring_count;
2646 adapter->tx_ring->adapter = adapter;
Bruce Allan4662e822008-08-26 18:37:06 -07002647
Bruce Allan55aa6982011-12-16 00:45:45 +00002648 adapter->rx_ring = kzalloc(size, GFP_KERNEL);
Bruce Allan4662e822008-08-26 18:37:06 -07002649 if (!adapter->rx_ring)
2650 goto err;
Bruce Allan55aa6982011-12-16 00:45:45 +00002651 adapter->rx_ring->count = adapter->rx_ring_count;
2652 adapter->rx_ring->adapter = adapter;
Bruce Allan4662e822008-08-26 18:37:06 -07002653
2654 return 0;
2655err:
2656 e_err("Unable to allocate memory for queues\n");
2657 kfree(adapter->rx_ring);
2658 kfree(adapter->tx_ring);
2659 return -ENOMEM;
2660}
2661
2662/**
Bruce Allanc58c8a72012-03-20 03:48:19 +00002663 * e1000e_poll - NAPI Rx polling callback
Bruce Allanad680762008-03-28 09:15:03 -07002664 * @napi: struct associated with this polling callback
Jesse Brandeburg0bcd9522018-11-08 14:55:32 -08002665 * @budget: number of packets driver is allowed to process this poll
Auke Kokbc7f75f2007-09-17 12:30:59 -07002666 **/
Jesse Brandeburg0bcd9522018-11-08 14:55:32 -08002667static int e1000e_poll(struct napi_struct *napi, int budget)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002668{
Bruce Allanc58c8a72012-03-20 03:48:19 +00002669 struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter,
2670 napi);
Bruce Allan4662e822008-08-26 18:37:06 -07002671 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002672 struct net_device *poll_dev = adapter->netdev;
Andy Gospodarek679e8a02009-06-18 11:57:37 +00002673 int tx_cleaned = 1, work_done = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002674
Wang Chen4cf16532008-11-12 23:38:14 -08002675 adapter = netdev_priv(poll_dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002676
Bruce Allanc58c8a72012-03-20 03:48:19 +00002677 if (!adapter->msix_entries ||
2678 (adapter->rx_ring->ims_val & adapter->tx_ring->ims_val))
2679 tx_cleaned = e1000_clean_tx_irq(adapter->tx_ring);
Bruce Allan4662e822008-08-26 18:37:06 -07002680
Jesse Brandeburg0bcd9522018-11-08 14:55:32 -08002681 adapter->clean_rx(adapter->rx_ring, &work_done, budget);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002682
Jesse Brandeburg0bcd9522018-11-08 14:55:32 -08002683 if (!tx_cleaned || work_done == budget)
2684 return budget;
David S. Millerd2c7ddd2008-01-15 22:43:24 -08002685
Jesse Brandeburg0bcd9522018-11-08 14:55:32 -08002686 /* Exit the polling mode, but don't re-enable interrupts if stack might
2687 * poll us due to busy-polling
2688 */
2689 if (likely(napi_complete_done(napi, work_done))) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07002690 if (adapter->itr_setting & 3)
2691 e1000_set_itr(adapter);
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00002692 if (!test_bit(__E1000_DOWN, &adapter->state)) {
2693 if (adapter->msix_entries)
Benjamin Poirier1f0ea192018-02-08 15:47:12 +09002694 ew32(IMS, adapter->rx_ring->ims_val);
Jesse Brandeburga3c69fe2009-03-25 22:05:41 +00002695 else
2696 e1000_irq_enable(adapter);
2697 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002698 }
2699
2700 return work_done;
2701}
2702
Patrick McHardy80d5c362013-04-19 02:04:28 +00002703static int e1000_vlan_rx_add_vid(struct net_device *netdev,
Bruce Allan603cdca2013-05-01 03:48:11 +00002704 __always_unused __be16 proto, u16 vid)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002705{
2706 struct e1000_adapter *adapter = netdev_priv(netdev);
2707 struct e1000_hw *hw = &adapter->hw;
2708 u32 vfta, index;
2709
2710 /* don't update vlan cookie if already programmed */
2711 if ((adapter->hw.mng_cookie.status &
2712 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2713 (vid == adapter->mng_vlan_id))
Jiri Pirko8e586132011-12-08 19:52:37 -05002714 return 0;
Bruce Allancaaddaf2009-12-01 15:46:43 +00002715
Auke Kokbc7f75f2007-09-17 12:30:59 -07002716 /* add VID to 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);
Jacob Keller18dd2392016-04-13 16:08:32 -07002720 vfta |= BIT((vid & 0x1F));
Bruce Allancaaddaf2009-12-01 15:46:43 +00002721 hw->mac.ops.write_vfta(hw, index, vfta);
2722 }
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002723
2724 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002725
2726 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002727}
2728
Patrick McHardy80d5c362013-04-19 02:04:28 +00002729static int e1000_vlan_rx_kill_vid(struct net_device *netdev,
Bruce Allan603cdca2013-05-01 03:48:11 +00002730 __always_unused __be16 proto, u16 vid)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002731{
2732 struct e1000_adapter *adapter = netdev_priv(netdev);
2733 struct e1000_hw *hw = &adapter->hw;
2734 u32 vfta, index;
2735
Auke Kokbc7f75f2007-09-17 12:30:59 -07002736 if ((adapter->hw.mng_cookie.status &
2737 E1000_MNG_DHCP_COOKIE_STATUS_VLAN) &&
2738 (vid == adapter->mng_vlan_id)) {
2739 /* release control to f/w */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00002740 e1000e_release_hw_control(adapter);
Jiri Pirko8e586132011-12-08 19:52:37 -05002741 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002742 }
2743
2744 /* remove VID from filter table */
Bruce Allancaaddaf2009-12-01 15:46:43 +00002745 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2746 index = (vid >> 5) & 0x7F;
2747 vfta = E1000_READ_REG_ARRAY(hw, E1000_VFTA, index);
Jacob Keller18dd2392016-04-13 16:08:32 -07002748 vfta &= ~BIT((vid & 0x1F));
Bruce Allancaaddaf2009-12-01 15:46:43 +00002749 hw->mac.ops.write_vfta(hw, index, vfta);
2750 }
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002751
2752 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002753
2754 return 0;
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002755}
2756
2757/**
2758 * e1000e_vlan_filter_disable - helper to disable hw VLAN filtering
2759 * @adapter: board private structure to initialize
2760 **/
2761static void e1000e_vlan_filter_disable(struct e1000_adapter *adapter)
2762{
2763 struct net_device *netdev = adapter->netdev;
2764 struct e1000_hw *hw = &adapter->hw;
2765 u32 rctl;
2766
2767 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2768 /* disable VLAN receive filtering */
2769 rctl = er32(RCTL);
2770 rctl &= ~(E1000_RCTL_VFE | E1000_RCTL_CFIEN);
2771 ew32(RCTL, rctl);
2772
2773 if (adapter->mng_vlan_id != (u16)E1000_MNG_VLAN_NONE) {
Patrick McHardy80d5c362013-04-19 02:04:28 +00002774 e1000_vlan_rx_kill_vid(netdev, htons(ETH_P_8021Q),
2775 adapter->mng_vlan_id);
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002776 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
2777 }
2778 }
2779}
2780
2781/**
2782 * e1000e_vlan_filter_enable - helper to enable HW VLAN filtering
2783 * @adapter: board private structure to initialize
2784 **/
2785static void e1000e_vlan_filter_enable(struct e1000_adapter *adapter)
2786{
2787 struct e1000_hw *hw = &adapter->hw;
2788 u32 rctl;
2789
2790 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER) {
2791 /* enable VLAN receive filtering */
2792 rctl = er32(RCTL);
2793 rctl |= E1000_RCTL_VFE;
2794 rctl &= ~E1000_RCTL_CFIEN;
2795 ew32(RCTL, rctl);
2796 }
2797}
2798
2799/**
Jarod Wilson889ad452016-06-28 20:41:31 -07002800 * e1000e_vlan_strip_disable - helper to disable HW VLAN stripping
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002801 * @adapter: board private structure to initialize
2802 **/
2803static void e1000e_vlan_strip_disable(struct e1000_adapter *adapter)
2804{
2805 struct e1000_hw *hw = &adapter->hw;
2806 u32 ctrl;
2807
2808 /* disable VLAN tag insert/strip */
2809 ctrl = er32(CTRL);
2810 ctrl &= ~E1000_CTRL_VME;
2811 ew32(CTRL, ctrl);
2812}
2813
2814/**
2815 * e1000e_vlan_strip_enable - helper to enable HW VLAN stripping
2816 * @adapter: board private structure to initialize
2817 **/
2818static void e1000e_vlan_strip_enable(struct e1000_adapter *adapter)
2819{
2820 struct e1000_hw *hw = &adapter->hw;
2821 u32 ctrl;
2822
2823 /* enable VLAN tag insert/strip */
2824 ctrl = er32(CTRL);
2825 ctrl |= E1000_CTRL_VME;
2826 ew32(CTRL, ctrl);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002827}
2828
2829static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
2830{
2831 struct net_device *netdev = adapter->netdev;
2832 u16 vid = adapter->hw.mng_cookie.vlan_id;
2833 u16 old_vid = adapter->mng_vlan_id;
2834
Bruce Allane5fe2542013-02-20 04:06:27 +00002835 if (adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
Patrick McHardy80d5c362013-04-19 02:04:28 +00002836 e1000_vlan_rx_add_vid(netdev, htons(ETH_P_8021Q), vid);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002837 adapter->mng_vlan_id = vid;
2838 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07002839
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002840 if ((old_vid != (u16)E1000_MNG_VLAN_NONE) && (vid != old_vid))
Patrick McHardy80d5c362013-04-19 02:04:28 +00002841 e1000_vlan_rx_kill_vid(netdev, htons(ETH_P_8021Q), old_vid);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002842}
2843
2844static void e1000_restore_vlan(struct e1000_adapter *adapter)
2845{
2846 u16 vid;
2847
Patrick McHardy80d5c362013-04-19 02:04:28 +00002848 e1000_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002849
Jeff Kirsher86d70e52011-03-25 16:01:01 +00002850 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
Patrick McHardy80d5c362013-04-19 02:04:28 +00002851 e1000_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), vid);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002852}
2853
Bruce Allancd791612010-05-10 14:59:51 +00002854static void e1000_init_manageability_pt(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002855{
2856 struct e1000_hw *hw = &adapter->hw;
Bruce Allancd791612010-05-10 14:59:51 +00002857 u32 manc, manc2h, mdef, i, j;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002858
2859 if (!(adapter->flags & FLAG_MNG_PT_ENABLED))
2860 return;
2861
2862 manc = er32(MANC);
2863
Bruce Allane921eb12012-11-28 09:28:37 +00002864 /* enable receiving management packets to the host. this will probably
Auke Kokbc7f75f2007-09-17 12:30:59 -07002865 * generate destination unreachable messages from the host OS, but
Bruce Allanad680762008-03-28 09:15:03 -07002866 * the packets will be handled on SMBUS
2867 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002868 manc |= E1000_MANC_EN_MNG2HOST;
2869 manc2h = er32(MANC2H);
Bruce Allancd791612010-05-10 14:59:51 +00002870
2871 switch (hw->mac.type) {
2872 default:
2873 manc2h |= (E1000_MANC2H_PORT_623 | E1000_MANC2H_PORT_664);
2874 break;
2875 case e1000_82574:
2876 case e1000_82583:
Bruce Allane921eb12012-11-28 09:28:37 +00002877 /* Check if IPMI pass-through decision filter already exists;
Bruce Allancd791612010-05-10 14:59:51 +00002878 * if so, enable it.
2879 */
2880 for (i = 0, j = 0; i < 8; i++) {
2881 mdef = er32(MDEF(i));
2882
2883 /* Ignore filters with anything other than IPMI ports */
Dan Carpenter3b21b502010-06-02 13:43:15 +00002884 if (mdef & ~(E1000_MDEF_PORT_623 | E1000_MDEF_PORT_664))
Bruce Allancd791612010-05-10 14:59:51 +00002885 continue;
2886
2887 /* Enable this decision filter in MANC2H */
2888 if (mdef)
Jacob Keller18dd2392016-04-13 16:08:32 -07002889 manc2h |= BIT(i);
Bruce Allancd791612010-05-10 14:59:51 +00002890
2891 j |= mdef;
2892 }
2893
2894 if (j == (E1000_MDEF_PORT_623 | E1000_MDEF_PORT_664))
2895 break;
2896
2897 /* Create new decision filter in an empty filter */
2898 for (i = 0, j = 0; i < 8; i++)
2899 if (er32(MDEF(i)) == 0) {
2900 ew32(MDEF(i), (E1000_MDEF_PORT_623 |
2901 E1000_MDEF_PORT_664));
Jacob Keller18dd2392016-04-13 16:08:32 -07002902 manc2h |= BIT(1);
Bruce Allancd791612010-05-10 14:59:51 +00002903 j++;
2904 break;
2905 }
2906
2907 if (!j)
2908 e_warn("Unable to create IPMI pass-through filter\n");
2909 break;
2910 }
2911
Auke Kokbc7f75f2007-09-17 12:30:59 -07002912 ew32(MANC2H, manc2h);
2913 ew32(MANC, manc);
2914}
2915
2916/**
Bruce Allanaf667a22010-12-31 06:10:01 +00002917 * e1000_configure_tx - Configure Transmit Unit after Reset
Auke Kokbc7f75f2007-09-17 12:30:59 -07002918 * @adapter: board private structure
2919 *
2920 * Configure the Tx unit of the MAC after a reset.
2921 **/
2922static void e1000_configure_tx(struct e1000_adapter *adapter)
2923{
2924 struct e1000_hw *hw = &adapter->hw;
2925 struct e1000_ring *tx_ring = adapter->tx_ring;
2926 u64 tdba;
David Ertmane7e834a2014-01-13 23:19:27 +00002927 u32 tdlen, tctl, tarc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07002928
2929 /* Setup the HW Tx Head and Tail descriptor pointers */
2930 tdba = tx_ring->dma;
2931 tdlen = tx_ring->count * sizeof(struct e1000_tx_desc);
Bruce Allan1e360522012-03-20 03:48:13 +00002932 ew32(TDBAL(0), (tdba & DMA_BIT_MASK(32)));
2933 ew32(TDBAH(0), (tdba >> 32));
2934 ew32(TDLEN(0), tdlen);
2935 ew32(TDH(0), 0);
2936 ew32(TDT(0), 0);
2937 tx_ring->head = adapter->hw.hw_addr + E1000_TDH(0);
2938 tx_ring->tail = adapter->hw.hw_addr + E1000_TDT(0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002939
Jia-Ju Bai0845d452015-08-05 18:16:10 +08002940 writel(0, tx_ring->head);
2941 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
2942 e1000e_update_tdt_wa(tx_ring, 0);
2943 else
2944 writel(0, tx_ring->tail);
2945
Auke Kokbc7f75f2007-09-17 12:30:59 -07002946 /* Set the Tx Interrupt Delay register */
2947 ew32(TIDV, adapter->tx_int_delay);
Bruce Allanad680762008-03-28 09:15:03 -07002948 /* Tx irq moderation */
Auke Kokbc7f75f2007-09-17 12:30:59 -07002949 ew32(TADV, adapter->tx_abs_int_delay);
2950
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002951 if (adapter->flags2 & FLAG2_DMA_BURST) {
2952 u32 txdctl = er32(TXDCTL(0));
David Ertman6cf08d12014-04-05 06:07:00 +00002953
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002954 txdctl &= ~(E1000_TXDCTL_PTHRESH | E1000_TXDCTL_HTHRESH |
2955 E1000_TXDCTL_WTHRESH);
Bruce Allane921eb12012-11-28 09:28:37 +00002956 /* set up some performance related parameters to encourage the
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002957 * hardware to use the bus more efficiently in bursts, depends
2958 * on the tx_int_delay to be enabled,
Hiroaki SHIMODA8edc0e62012-10-10 15:34:20 +00002959 * wthresh = 1 ==> burst write is disabled to avoid Tx stalls
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002960 * hthresh = 1 ==> prefetch when one or more available
2961 * pthresh = 0x1f ==> prefetch if internal cache 31 or less
2962 * BEWARE: this seems to work but should be considered first if
Bruce Allanaf667a22010-12-31 06:10:01 +00002963 * there are Tx hangs or other Tx related bugs
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002964 */
2965 txdctl |= E1000_TXDCTL_DMA_BURST_ENABLE;
2966 ew32(TXDCTL(0), txdctl);
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002967 }
Bruce Allan56032be2011-12-16 00:46:01 +00002968 /* erratum work around: set txdctl the same for both queues */
2969 ew32(TXDCTL(1), er32(TXDCTL(0)));
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00002970
David Ertmane7e834a2014-01-13 23:19:27 +00002971 /* Program the Transmit Control Register */
2972 tctl = er32(TCTL);
2973 tctl &= ~E1000_TCTL_CT;
2974 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
2975 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
2976
Auke Kokbc7f75f2007-09-17 12:30:59 -07002977 if (adapter->flags & FLAG_TARC_SPEED_MODE_BIT) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002978 tarc = er32(TARC(0));
Bruce Allane921eb12012-11-28 09:28:37 +00002979 /* set the speed mode bit, we'll clear it if we're not at
Bruce Allanad680762008-03-28 09:15:03 -07002980 * gigabit link later
2981 */
Jacob Keller18dd2392016-04-13 16:08:32 -07002982#define SPEED_MODE_BIT BIT(21)
Auke Kokbc7f75f2007-09-17 12:30:59 -07002983 tarc |= SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002984 ew32(TARC(0), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002985 }
2986
2987 /* errata: program both queues to unweighted RR */
2988 if (adapter->flags & FLAG_TARC_SET_BIT_ZERO) {
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002989 tarc = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002990 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002991 ew32(TARC(0), tarc);
2992 tarc = er32(TARC(1));
Auke Kokbc7f75f2007-09-17 12:30:59 -07002993 tarc |= 1;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07002994 ew32(TARC(1), tarc);
Auke Kokbc7f75f2007-09-17 12:30:59 -07002995 }
2996
Auke Kokbc7f75f2007-09-17 12:30:59 -07002997 /* Setup Transmit Descriptor Settings for eop descriptor */
2998 adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
2999
3000 /* only set IDE if we are delaying interrupts using the timers */
3001 if (adapter->tx_int_delay)
3002 adapter->txd_cmd |= E1000_TXD_CMD_IDE;
3003
3004 /* enable Report Status bit */
3005 adapter->txd_cmd |= E1000_TXD_CMD_RS;
3006
David Ertmane7e834a2014-01-13 23:19:27 +00003007 ew32(TCTL, tctl);
3008
Bruce Allan57cde762012-02-22 09:02:58 +00003009 hw->mac.ops.config_collision_dist(hw);
David Ertman79849eb2015-02-10 09:10:43 +00003010
Sasha Neftinb10effb2017-08-06 16:49:18 +03003011 /* SPT and KBL Si errata workaround to avoid data corruption */
3012 if (hw->mac.type == e1000_pch_spt) {
David Ertman79849eb2015-02-10 09:10:43 +00003013 u32 reg_val;
3014
3015 reg_val = er32(IOSFPC);
3016 reg_val |= E1000_RCTL_RDMTS_HEX;
3017 ew32(IOSFPC, reg_val);
3018
3019 reg_val = er32(TARC(0));
Sasha Neftinc0f4b162017-11-06 08:31:59 +02003020 /* SPT and KBL Si errata workaround to avoid Tx hang.
3021 * Dropping the number of outstanding requests from
3022 * 3 to 2 in order to avoid a buffer overrun.
3023 */
3024 reg_val &= ~E1000_TARC0_CB_MULTIQ_3_REQ;
3025 reg_val |= E1000_TARC0_CB_MULTIQ_2_REQ;
David Ertman79849eb2015-02-10 09:10:43 +00003026 ew32(TARC(0), reg_val);
3027 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003028}
3029
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07003030#define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
3031 (((S) & (PAGE_SIZE - 1)) ? 1 : 0))
3032
Auke Kokbc7f75f2007-09-17 12:30:59 -07003033/**
3034 * e1000_setup_rctl - configure the receive control registers
3035 * @adapter: Board private structure
3036 **/
Auke Kokbc7f75f2007-09-17 12:30:59 -07003037static void e1000_setup_rctl(struct e1000_adapter *adapter)
3038{
3039 struct e1000_hw *hw = &adapter->hw;
3040 u32 rctl, rfctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003041 u32 pages = 0;
3042
David Ertmanb20a7742014-03-25 04:27:55 +00003043 /* Workaround Si errata on PCHx - configure jumbo frame flow.
3044 * If jumbo frames not set, program related MAC/PHY registers
3045 * to h/w defaults
3046 */
3047 if (hw->mac.type >= e1000_pch2lan) {
3048 s32 ret_val;
3049
3050 if (adapter->netdev->mtu > ETH_DATA_LEN)
3051 ret_val = e1000_lv_jumbo_workaround_ich8lan(hw, true);
3052 else
3053 ret_val = e1000_lv_jumbo_workaround_ich8lan(hw, false);
3054
3055 if (ret_val)
3056 e_dbg("failed to enable|disable jumbo frame workaround mode\n");
3057 }
Bruce Allana1ce6472010-09-22 17:16:40 +00003058
Auke Kokbc7f75f2007-09-17 12:30:59 -07003059 /* Program MC offset vector base */
3060 rctl = er32(RCTL);
3061 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
3062 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
Bruce Allanf0ff4392013-02-20 04:05:39 +00003063 E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
3064 (adapter->hw.mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003065
3066 /* Do not Store bad packets */
3067 rctl &= ~E1000_RCTL_SBP;
3068
3069 /* Enable Long Packet receive */
3070 if (adapter->netdev->mtu <= ETH_DATA_LEN)
3071 rctl &= ~E1000_RCTL_LPE;
3072 else
3073 rctl |= E1000_RCTL_LPE;
3074
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00003075 /* Some systems expect that the CRC is included in SMBUS traffic. The
3076 * hardware strips the CRC before sending to both SMBUS (BMC) and to
3077 * host memory when this is enabled
3078 */
3079 if (adapter->flags2 & FLAG2_CRC_STRIPPING)
3080 rctl |= E1000_RCTL_SECRC;
Auke Kok5918bd82008-02-12 15:20:24 -08003081
Bruce Allana4f58f52009-06-02 11:29:18 +00003082 /* Workaround Si errata on 82577 PHY - configure IPG for jumbos */
3083 if ((hw->phy.type == e1000_phy_82577) && (rctl & E1000_RCTL_LPE)) {
3084 u16 phy_data;
3085
3086 e1e_rphy(hw, PHY_REG(770, 26), &phy_data);
3087 phy_data &= 0xfff8;
Jacob Keller18dd2392016-04-13 16:08:32 -07003088 phy_data |= BIT(2);
Bruce Allana4f58f52009-06-02 11:29:18 +00003089 e1e_wphy(hw, PHY_REG(770, 26), phy_data);
3090
3091 e1e_rphy(hw, 22, &phy_data);
3092 phy_data &= 0x0fff;
Jacob Keller18dd2392016-04-13 16:08:32 -07003093 phy_data |= BIT(14);
Bruce Allana4f58f52009-06-02 11:29:18 +00003094 e1e_wphy(hw, 0x10, 0x2823);
3095 e1e_wphy(hw, 0x11, 0x0003);
3096 e1e_wphy(hw, 22, phy_data);
3097 }
3098
Auke Kokbc7f75f2007-09-17 12:30:59 -07003099 /* Setup buffer sizes */
3100 rctl &= ~E1000_RCTL_SZ_4096;
3101 rctl |= E1000_RCTL_BSEX;
3102 switch (adapter->rx_buffer_len) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07003103 case 2048:
3104 default:
3105 rctl |= E1000_RCTL_SZ_2048;
3106 rctl &= ~E1000_RCTL_BSEX;
3107 break;
3108 case 4096:
3109 rctl |= E1000_RCTL_SZ_4096;
3110 break;
3111 case 8192:
3112 rctl |= E1000_RCTL_SZ_8192;
3113 break;
3114 case 16384:
3115 rctl |= E1000_RCTL_SZ_16384;
3116 break;
3117 }
3118
Bruce Allan5f450212011-07-22 06:21:46 +00003119 /* Enable Extended Status in all Receive Descriptors */
3120 rfctl = er32(RFCTL);
3121 rfctl |= E1000_RFCTL_EXTEN;
Matthew Vickf6bd5572012-04-25 08:01:05 +00003122 ew32(RFCTL, rfctl);
Bruce Allan5f450212011-07-22 06:21:46 +00003123
Bruce Allane921eb12012-11-28 09:28:37 +00003124 /* 82571 and greater support packet-split where the protocol
Auke Kokbc7f75f2007-09-17 12:30:59 -07003125 * header is placed in skb->data and the packet data is
3126 * placed in pages hanging off of skb_shinfo(skb)->nr_frags.
3127 * In the case of a non-split, skb->data is linearly filled,
3128 * followed by the page buffers. Therefore, skb->data is
3129 * sized to hold the largest protocol header.
3130 *
3131 * allocations using alloc_page take too long for regular MTU
3132 * so only enable packet split for jumbo frames
3133 *
3134 * Using pages when the page size is greater than 16k wastes
3135 * a lot of memory, since we allocate 3 pages at all times
3136 * per packet.
3137 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003138 pages = PAGE_USE_COUNT(adapter->netdev->mtu);
Bruce Allan79d4e902011-12-16 00:46:27 +00003139 if ((pages <= 3) && (PAGE_SIZE <= 16384) && (rctl & E1000_RCTL_LPE))
Auke Kokbc7f75f2007-09-17 12:30:59 -07003140 adapter->rx_ps_pages = pages;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003141 else
3142 adapter->rx_ps_pages = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003143
3144 if (adapter->rx_ps_pages) {
Bruce Allan90da0662011-01-06 07:02:53 +00003145 u32 psrctl = 0;
3146
Auke Kok140a7482007-10-25 13:57:58 -07003147 /* Enable Packet split descriptors */
3148 rctl |= E1000_RCTL_DTYP_PS;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003149
Bruce Allane5fe2542013-02-20 04:06:27 +00003150 psrctl |= adapter->rx_ps_bsize0 >> E1000_PSRCTL_BSIZE0_SHIFT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003151
3152 switch (adapter->rx_ps_pages) {
3153 case 3:
Bruce Allane5fe2542013-02-20 04:06:27 +00003154 psrctl |= PAGE_SIZE << E1000_PSRCTL_BSIZE3_SHIFT;
Jeff Kirsher5463fce62020-06-03 20:07:26 -07003155 fallthrough;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003156 case 2:
Bruce Allane5fe2542013-02-20 04:06:27 +00003157 psrctl |= PAGE_SIZE << E1000_PSRCTL_BSIZE2_SHIFT;
Jeff Kirsher5463fce62020-06-03 20:07:26 -07003158 fallthrough;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003159 case 1:
Bruce Allane5fe2542013-02-20 04:06:27 +00003160 psrctl |= PAGE_SIZE >> E1000_PSRCTL_BSIZE1_SHIFT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003161 break;
3162 }
3163
3164 ew32(PSRCTL, psrctl);
3165 }
3166
Ben Greearcf955e62012-02-11 15:39:51 +00003167 /* This is useful for sniffing bad packets. */
3168 if (adapter->netdev->features & NETIF_F_RXALL) {
3169 /* UPE and MPE will be handled by normal PROMISC logic
Bruce Allane921eb12012-11-28 09:28:37 +00003170 * in e1000e_set_rx_mode
3171 */
Bruce Allane80bd1d2013-05-01 01:19:46 +00003172 rctl |= (E1000_RCTL_SBP | /* Receive bad packets */
3173 E1000_RCTL_BAM | /* RX All Bcast Pkts */
3174 E1000_RCTL_PMCF); /* RX All MAC Ctrl Pkts */
Ben Greearcf955e62012-02-11 15:39:51 +00003175
Bruce Allane80bd1d2013-05-01 01:19:46 +00003176 rctl &= ~(E1000_RCTL_VFE | /* Disable VLAN filter */
3177 E1000_RCTL_DPF | /* Allow filtered pause */
3178 E1000_RCTL_CFIEN); /* Dis VLAN CFIEN Filter */
Ben Greearcf955e62012-02-11 15:39:51 +00003179 /* Do not mess with E1000_CTRL_VME, it affects transmit as well,
3180 * and that breaks VLANs.
3181 */
3182 }
3183
Auke Kokbc7f75f2007-09-17 12:30:59 -07003184 ew32(RCTL, rctl);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003185 /* just started the receive unit, no need to restart */
Bruce Allan12d43f72012-12-05 06:26:14 +00003186 adapter->flags &= ~FLAG_RESTART_NOW;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003187}
3188
3189/**
3190 * e1000_configure_rx - Configure Receive Unit after Reset
3191 * @adapter: board private structure
3192 *
3193 * Configure the Rx unit of the MAC after a reset.
3194 **/
3195static void e1000_configure_rx(struct e1000_adapter *adapter)
3196{
3197 struct e1000_hw *hw = &adapter->hw;
3198 struct e1000_ring *rx_ring = adapter->rx_ring;
3199 u64 rdba;
3200 u32 rdlen, rctl, rxcsum, ctrl_ext;
3201
3202 if (adapter->rx_ps_pages) {
3203 /* this is a 32 byte descriptor */
3204 rdlen = rx_ring->count *
Bruce Allanaf667a22010-12-31 06:10:01 +00003205 sizeof(union e1000_rx_desc_packet_split);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003206 adapter->clean_rx = e1000_clean_rx_irq_ps;
3207 adapter->alloc_rx_buf = e1000_alloc_rx_buffers_ps;
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003208 } else if (adapter->netdev->mtu > ETH_FRAME_LEN + ETH_FCS_LEN) {
Bruce Allan5f450212011-07-22 06:21:46 +00003209 rdlen = rx_ring->count * sizeof(union e1000_rx_desc_extended);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003210 adapter->clean_rx = e1000_clean_jumbo_rx_irq;
3211 adapter->alloc_rx_buf = e1000_alloc_jumbo_rx_buffers;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003212 } else {
Bruce Allan5f450212011-07-22 06:21:46 +00003213 rdlen = rx_ring->count * sizeof(union e1000_rx_desc_extended);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003214 adapter->clean_rx = e1000_clean_rx_irq;
3215 adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
3216 }
3217
3218 /* disable receives while setting up the descriptors */
3219 rctl = er32(RCTL);
David S. Miller823dcd22011-08-20 10:39:12 -07003220 if (!(adapter->flags2 & FLAG2_NO_DISABLE_RX))
3221 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003222 e1e_flush();
Arjan van de Venab6973a2019-06-14 17:29:35 -07003223 usleep_range(10000, 11000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003224
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003225 if (adapter->flags2 & FLAG2_DMA_BURST) {
Bruce Allane921eb12012-11-28 09:28:37 +00003226 /* set the writeback threshold (only takes effect if the RDTR
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003227 * is set). set GRAN=1 and write back up to 0x4 worth, and
Bruce Allanaf667a22010-12-31 06:10:01 +00003228 * enable prefetching of 0x20 Rx descriptors
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003229 * granularity = 01
3230 * wthresh = 04,
3231 * hthresh = 04,
3232 * pthresh = 0x20
3233 */
3234 ew32(RXDCTL(0), E1000_RXDCTL_DMA_BURST_ENABLE);
3235 ew32(RXDCTL(1), E1000_RXDCTL_DMA_BURST_ENABLE);
Jesse Brandeburg3a3b7582010-09-29 21:38:49 +00003236 }
3237
Auke Kokbc7f75f2007-09-17 12:30:59 -07003238 /* set the Receive Delay Timer Register */
3239 ew32(RDTR, adapter->rx_int_delay);
3240
3241 /* irq moderation */
3242 ew32(RADV, adapter->rx_abs_int_delay);
Bruce Allan828bac82010-09-29 21:39:37 +00003243 if ((adapter->itr_setting != 0) && (adapter->itr != 0))
Matthew Vick22a4cca2012-07-12 00:02:42 +00003244 e1000e_write_itr(adapter, adapter->itr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003245
3246 ctrl_ext = er32(CTRL_EXT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003247 /* Auto-Mask interrupts upon ICR access */
3248 ctrl_ext |= E1000_CTRL_EXT_IAME;
3249 ew32(IAM, 0xffffffff);
3250 ew32(CTRL_EXT, ctrl_ext);
3251 e1e_flush();
3252
Bruce Allane921eb12012-11-28 09:28:37 +00003253 /* Setup the HW Rx Head and Tail Descriptor Pointers and
Bruce Allanad680762008-03-28 09:15:03 -07003254 * the Base and Length of the Rx Descriptor Ring
3255 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003256 rdba = rx_ring->dma;
Bruce Allan1e360522012-03-20 03:48:13 +00003257 ew32(RDBAL(0), (rdba & DMA_BIT_MASK(32)));
3258 ew32(RDBAH(0), (rdba >> 32));
3259 ew32(RDLEN(0), rdlen);
3260 ew32(RDH(0), 0);
3261 ew32(RDT(0), 0);
3262 rx_ring->head = adapter->hw.hw_addr + E1000_RDH(0);
3263 rx_ring->tail = adapter->hw.hw_addr + E1000_RDT(0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003264
Jia-Ju Bai0845d452015-08-05 18:16:10 +08003265 writel(0, rx_ring->head);
3266 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
3267 e1000e_update_rdt_wa(rx_ring, 0);
3268 else
3269 writel(0, rx_ring->tail);
3270
Auke Kokbc7f75f2007-09-17 12:30:59 -07003271 /* Enable Receive Checksum Offload for TCP and UDP */
3272 rxcsum = er32(RXCSUM);
Bruce Allan2e1706f2012-06-30 20:02:42 +00003273 if (adapter->netdev->features & NETIF_F_RXCSUM)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003274 rxcsum |= E1000_RXCSUM_TUOFL;
Bruce Allan2e1706f2012-06-30 20:02:42 +00003275 else
Auke Kokbc7f75f2007-09-17 12:30:59 -07003276 rxcsum &= ~E1000_RXCSUM_TUOFL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003277 ew32(RXCSUM, rxcsum);
3278
Bruce Allan3e35d992013-01-12 07:25:22 +00003279 /* With jumbo frames, excessive C-state transition latencies result
3280 * in dropped transactions.
3281 */
3282 if (adapter->netdev->mtu > ETH_DATA_LEN) {
3283 u32 lat =
3284 ((er32(PBA) & E1000_PBA_RXA_MASK) * 1024 -
3285 adapter->max_frame_size) * 8 / 1000;
3286
3287 if (adapter->flags & FLAG_IS_ICH) {
Bruce Allan53ec5492009-11-20 23:27:40 +00003288 u32 rxdctl = er32(RXDCTL(0));
David Ertman6cf08d12014-04-05 06:07:00 +00003289
Matt Turnerb701cac2017-11-07 14:13:30 -08003290 ew32(RXDCTL(0), rxdctl | 0x3 | BIT(8));
Bruce Allan53ec5492009-11-20 23:27:40 +00003291 }
Bruce Allan3e35d992013-01-12 07:25:22 +00003292
Matt Turner8299b002017-11-14 15:51:33 -08003293 dev_info(&adapter->pdev->dev,
3294 "Some CPU C-states have been disabled in order to enable jumbo frames\n");
Rafael J. Wysocki81e95ad2020-02-12 00:24:36 +01003295 cpu_latency_qos_update_request(&adapter->pm_qos_req, lat);
Bruce Allan3e35d992013-01-12 07:25:22 +00003296 } else {
Rafael J. Wysocki81e95ad2020-02-12 00:24:36 +01003297 cpu_latency_qos_update_request(&adapter->pm_qos_req,
3298 PM_QOS_DEFAULT_VALUE);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07003299 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07003300
3301 /* Enable Receives */
3302 ew32(RCTL, rctl);
3303}
3304
3305/**
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003306 * e1000e_write_mc_addr_list - write multicast addresses to MTA
Auke Kokbc7f75f2007-09-17 12:30:59 -07003307 * @netdev: network interface device structure
3308 *
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003309 * Writes multicast address list to the MTA hash table.
3310 * Returns: -ENOMEM on failure
3311 * 0 on no addresses written
3312 * X on writing X addresses to MTA
3313 */
3314static int e1000e_write_mc_addr_list(struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07003315{
3316 struct e1000_adapter *adapter = netdev_priv(netdev);
3317 struct e1000_hw *hw = &adapter->hw;
Jiri Pirko22bedad32010-04-01 21:22:57 +00003318 struct netdev_hw_addr *ha;
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003319 u8 *mta_list;
3320 int i;
3321
3322 if (netdev_mc_empty(netdev)) {
3323 /* nothing to program, so clear mc list */
3324 hw->mac.ops.update_mc_addr_list(hw, NULL, 0);
3325 return 0;
3326 }
3327
Kees Cook6396bb22018-06-12 14:03:40 -07003328 mta_list = kcalloc(netdev_mc_count(netdev), ETH_ALEN, GFP_ATOMIC);
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003329 if (!mta_list)
3330 return -ENOMEM;
3331
3332 /* update_mc_addr_list expects a packed array of only addresses. */
3333 i = 0;
3334 netdev_for_each_mc_addr(ha, netdev)
Bruce Allanf0ff4392013-02-20 04:05:39 +00003335 memcpy(mta_list + (i++ * ETH_ALEN), ha->addr, ETH_ALEN);
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003336
3337 hw->mac.ops.update_mc_addr_list(hw, mta_list, i);
3338 kfree(mta_list);
3339
3340 return netdev_mc_count(netdev);
3341}
3342
3343/**
3344 * e1000e_write_uc_addr_list - write unicast addresses to RAR table
3345 * @netdev: network interface device structure
3346 *
3347 * Writes unicast address list to the RAR table.
3348 * Returns: -ENOMEM on failure/insufficient address space
3349 * 0 on no addresses written
3350 * X on writing X addresses to the RAR table
3351 **/
3352static int e1000e_write_uc_addr_list(struct net_device *netdev)
3353{
3354 struct e1000_adapter *adapter = netdev_priv(netdev);
3355 struct e1000_hw *hw = &adapter->hw;
David Ertmanb3e5bf12014-05-06 03:50:17 +00003356 unsigned int rar_entries;
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003357 int count = 0;
3358
David Ertmanb3e5bf12014-05-06 03:50:17 +00003359 rar_entries = hw->mac.ops.rar_get_count(hw);
3360
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003361 /* save a rar entry for our hardware address */
3362 rar_entries--;
3363
3364 /* save a rar entry for the LAA workaround */
3365 if (adapter->flags & FLAG_RESET_OVERWRITES_LAA)
3366 rar_entries--;
3367
3368 /* return ENOMEM indicating insufficient memory for addresses */
3369 if (netdev_uc_count(netdev) > rar_entries)
3370 return -ENOMEM;
3371
3372 if (!netdev_uc_empty(netdev) && rar_entries) {
3373 struct netdev_hw_addr *ha;
3374
Bruce Allane921eb12012-11-28 09:28:37 +00003375 /* write the addresses in reverse order to avoid write
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003376 * combining
3377 */
3378 netdev_for_each_uc_addr(ha, netdev) {
Brian Walsh847042a2016-04-12 23:22:30 -04003379 int ret_val;
David Ertmanb3e5bf12014-05-06 03:50:17 +00003380
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003381 if (!rar_entries)
3382 break;
Brian Walsh847042a2016-04-12 23:22:30 -04003383 ret_val = hw->mac.ops.rar_set(hw, ha->addr, rar_entries--);
3384 if (ret_val < 0)
David Ertmanb3e5bf12014-05-06 03:50:17 +00003385 return -ENOMEM;
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003386 count++;
3387 }
3388 }
3389
3390 /* zero out the remaining RAR entries not used above */
3391 for (; rar_entries > 0; rar_entries--) {
3392 ew32(RAH(rar_entries), 0);
3393 ew32(RAL(rar_entries), 0);
3394 }
3395 e1e_flush();
3396
3397 return count;
3398}
3399
3400/**
3401 * e1000e_set_rx_mode - secondary unicast, Multicast and Promiscuous mode set
3402 * @netdev: network interface device structure
3403 *
3404 * The ndo_set_rx_mode entry point is called whenever the unicast or multicast
3405 * address list or the network interface flags are updated. This routine is
3406 * responsible for configuring the hardware for proper unicast, multicast,
3407 * promiscuous mode, and all-multi behavior.
3408 **/
3409static void e1000e_set_rx_mode(struct net_device *netdev)
3410{
3411 struct e1000_adapter *adapter = netdev_priv(netdev);
3412 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003413 u32 rctl;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003414
David Ertman63eb48f2014-02-14 07:16:46 +00003415 if (pm_runtime_suspended(netdev->dev.parent))
3416 return;
3417
Auke Kokbc7f75f2007-09-17 12:30:59 -07003418 /* Check for Promiscuous and All Multicast modes */
Auke Kokbc7f75f2007-09-17 12:30:59 -07003419 rctl = er32(RCTL);
3420
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003421 /* clear the affected bits */
3422 rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE);
3423
Auke Kokbc7f75f2007-09-17 12:30:59 -07003424 if (netdev->flags & IFF_PROMISC) {
3425 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Jeff Kirsher86d70e52011-03-25 16:01:01 +00003426 /* Do not hardware filter VLANs in promisc mode */
3427 e1000e_vlan_filter_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003428 } else {
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003429 int count;
Bruce Allan3d3a1672012-02-23 03:13:18 +00003430
Patrick McHardy746b9f02008-07-16 20:15:45 -07003431 if (netdev->flags & IFF_ALLMULTI) {
3432 rctl |= E1000_RCTL_MPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003433 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00003434 /* Write addresses to the MTA, if the attempt fails
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003435 * then we should just turn on promiscuous mode so
3436 * that we can at least receive multicast traffic
3437 */
3438 count = e1000e_write_mc_addr_list(netdev);
3439 if (count < 0)
3440 rctl |= E1000_RCTL_MPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003441 }
Jeff Kirsher86d70e52011-03-25 16:01:01 +00003442 e1000e_vlan_filter_enable(adapter);
Bruce Allane921eb12012-11-28 09:28:37 +00003443 /* Write addresses to available RAR registers, if there is not
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003444 * sufficient space to store all the addresses then enable
3445 * unicast promiscuous mode
3446 */
3447 count = e1000e_write_uc_addr_list(netdev);
3448 if (count < 0)
3449 rctl |= E1000_RCTL_UPE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003450 }
3451
3452 ew32(RCTL, rctl);
3453
Jarod Wilson83808642016-06-09 19:50:13 -04003454 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
Jeff Kirsher86d70e52011-03-25 16:01:01 +00003455 e1000e_vlan_strip_enable(adapter);
3456 else
3457 e1000e_vlan_strip_disable(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003458}
3459
Bruce Allan70495a52012-01-11 01:26:50 +00003460static void e1000e_setup_rss_hash(struct e1000_adapter *adapter)
3461{
3462 struct e1000_hw *hw = &adapter->hw;
3463 u32 mrqc, rxcsum;
Eric Dumazet5c8d19d2014-11-16 06:23:11 -08003464 u32 rss_key[10];
Bruce Allan70495a52012-01-11 01:26:50 +00003465 int i;
Bruce Allan70495a52012-01-11 01:26:50 +00003466
Eric Dumazet5c8d19d2014-11-16 06:23:11 -08003467 netdev_rss_key_fill(rss_key, sizeof(rss_key));
Bruce Allan70495a52012-01-11 01:26:50 +00003468 for (i = 0; i < 10; i++)
Eric Dumazet5c8d19d2014-11-16 06:23:11 -08003469 ew32(RSSRK(i), rss_key[i]);
Bruce Allan70495a52012-01-11 01:26:50 +00003470
3471 /* Direct all traffic to queue 0 */
3472 for (i = 0; i < 32; i++)
3473 ew32(RETA(i), 0);
3474
Bruce Allane921eb12012-11-28 09:28:37 +00003475 /* Disable raw packet checksumming so that RSS hash is placed in
Bruce Allan70495a52012-01-11 01:26:50 +00003476 * descriptor on writeback.
3477 */
3478 rxcsum = er32(RXCSUM);
3479 rxcsum |= E1000_RXCSUM_PCSD;
3480
3481 ew32(RXCSUM, rxcsum);
3482
3483 mrqc = (E1000_MRQC_RSS_FIELD_IPV4 |
3484 E1000_MRQC_RSS_FIELD_IPV4_TCP |
3485 E1000_MRQC_RSS_FIELD_IPV6 |
3486 E1000_MRQC_RSS_FIELD_IPV6_TCP |
3487 E1000_MRQC_RSS_FIELD_IPV6_TCP_EX);
3488
3489 ew32(MRQC, mrqc);
3490}
3491
Auke Kokbc7f75f2007-09-17 12:30:59 -07003492/**
Bruce Allanb67e1912012-12-27 08:32:33 +00003493 * e1000e_get_base_timinca - get default SYSTIM time increment attributes
3494 * @adapter: board private structure
3495 * @timinca: pointer to returned time increment attributes
3496 *
3497 * Get attributes for incrementing the System Time Register SYSTIML/H at
3498 * the default base frequency, and set the cyclecounter shift value.
3499 **/
Bruce Alland89777b2013-01-19 01:09:58 +00003500s32 e1000e_get_base_timinca(struct e1000_adapter *adapter, u32 *timinca)
Bruce Allanb67e1912012-12-27 08:32:33 +00003501{
3502 struct e1000_hw *hw = &adapter->hw;
3503 u32 incvalue, incperiod, shift;
3504
David Ertman79849eb2015-02-10 09:10:43 +00003505 /* Make sure clock is enabled on I217/I218/I219 before checking
3506 * the frequency
3507 */
Sasha Neftinc8744f42017-04-06 10:26:47 +03003508 if ((hw->mac.type >= e1000_pch_lpt) &&
Bruce Allanb67e1912012-12-27 08:32:33 +00003509 !(er32(TSYNCTXCTL) & E1000_TSYNCTXCTL_ENABLED) &&
3510 !(er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_ENABLED)) {
3511 u32 fextnvm7 = er32(FEXTNVM7);
3512
Jacob Keller18dd2392016-04-13 16:08:32 -07003513 if (!(fextnvm7 & BIT(0))) {
3514 ew32(FEXTNVM7, fextnvm7 | BIT(0));
Bruce Allanb67e1912012-12-27 08:32:33 +00003515 e1e_flush();
3516 }
3517 }
3518
3519 switch (hw->mac.type) {
3520 case e1000_pch2lan:
Bernd Faust5313eec2017-02-16 19:42:07 +01003521 /* Stable 96MHz frequency */
Sasha Neftin68fe1d52017-04-06 10:27:03 +03003522 incperiod = INCPERIOD_96MHZ;
3523 incvalue = INCVALUE_96MHZ;
3524 shift = INCVALUE_SHIFT_96MHZ;
3525 adapter->cc.shift = shift + INCPERIOD_SHIFT_96MHZ;
Bernd Faust5313eec2017-02-16 19:42:07 +01003526 break;
Bruce Allanb67e1912012-12-27 08:32:33 +00003527 case e1000_pch_lpt:
Yanir Lubetkin83129b32015-06-02 17:05:45 +03003528 if (er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_SYSCFI) {
Bruce Allanb67e1912012-12-27 08:32:33 +00003529 /* Stable 96MHz frequency */
Sasha Neftin68fe1d52017-04-06 10:27:03 +03003530 incperiod = INCPERIOD_96MHZ;
3531 incvalue = INCVALUE_96MHZ;
3532 shift = INCVALUE_SHIFT_96MHZ;
3533 adapter->cc.shift = shift + INCPERIOD_SHIFT_96MHZ;
Yanir Lubetkin83129b32015-06-02 17:05:45 +03003534 } else {
3535 /* Stable 25MHz frequency */
Sasha Neftin68fe1d52017-04-06 10:27:03 +03003536 incperiod = INCPERIOD_25MHZ;
3537 incvalue = INCVALUE_25MHZ;
3538 shift = INCVALUE_SHIFT_25MHZ;
Yanir Lubetkin83129b32015-06-02 17:05:45 +03003539 adapter->cc.shift = shift;
3540 }
3541 break;
3542 case e1000_pch_spt:
Benjamin Poirierfff200c2018-05-10 16:28:35 +09003543 /* Stable 24MHz frequency */
3544 incperiod = INCPERIOD_24MHZ;
3545 incvalue = INCVALUE_24MHZ;
3546 shift = INCVALUE_SHIFT_24MHZ;
3547 adapter->cc.shift = shift;
3548 break;
Sasha Neftin68fe1d52017-04-06 10:27:03 +03003549 case e1000_pch_cnp:
Sasha Neftinfb776f52019-10-16 11:08:38 +03003550 case e1000_pch_tgp:
Sasha Neftin59e46682020-01-19 13:57:13 +02003551 case e1000_pch_adp:
Sasha Neftincc23f4f2020-08-13 11:34:06 +03003552 case e1000_pch_mtp:
Sasha Neftin68fe1d52017-04-06 10:27:03 +03003553 if (er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_SYSCFI) {
3554 /* Stable 24MHz frequency */
3555 incperiod = INCPERIOD_24MHZ;
3556 incvalue = INCVALUE_24MHZ;
3557 shift = INCVALUE_SHIFT_24MHZ;
3558 adapter->cc.shift = shift;
3559 } else {
3560 /* Stable 38400KHz frequency */
3561 incperiod = INCPERIOD_38400KHZ;
3562 incvalue = INCVALUE_38400KHZ;
3563 shift = INCVALUE_SHIFT_38400KHZ;
3564 adapter->cc.shift = shift;
3565 }
3566 break;
Bruce Allanb67e1912012-12-27 08:32:33 +00003567 case e1000_82574:
3568 case e1000_82583:
3569 /* Stable 25MHz frequency */
Sasha Neftin68fe1d52017-04-06 10:27:03 +03003570 incperiod = INCPERIOD_25MHZ;
3571 incvalue = INCVALUE_25MHZ;
3572 shift = INCVALUE_SHIFT_25MHZ;
Bruce Allanb67e1912012-12-27 08:32:33 +00003573 adapter->cc.shift = shift;
3574 break;
3575 default:
3576 return -EINVAL;
3577 }
3578
3579 *timinca = ((incperiod << E1000_TIMINCA_INCPERIOD_SHIFT) |
3580 ((incvalue << shift) & E1000_TIMINCA_INCVALUE_MASK));
3581
3582 return 0;
3583}
3584
3585/**
3586 * e1000e_config_hwtstamp - configure the hwtstamp registers and enable/disable
3587 * @adapter: board private structure
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07003588 * @config: timestamp configuration
Bruce Allanb67e1912012-12-27 08:32:33 +00003589 *
3590 * Outgoing time stamping can be enabled and disabled. Play nice and
3591 * disable it when requested, although it shouldn't cause any overhead
3592 * when no packet needs it. At most one packet in the queue may be
3593 * marked for time stamping, otherwise it would be impossible to tell
3594 * for sure to which packet the hardware time stamp belongs.
3595 *
3596 * Incoming time stamping has to be configured via the hardware filters.
3597 * Not all combinations are supported, in particular event type has to be
3598 * specified. Matching the kind of event packet is not supported, with the
3599 * exception of "all V2 events regardless of level 2 or 4".
3600 **/
Ben Hutchings62d7e3a2013-11-14 00:41:38 +00003601static int e1000e_config_hwtstamp(struct e1000_adapter *adapter,
3602 struct hwtstamp_config *config)
Bruce Allanb67e1912012-12-27 08:32:33 +00003603{
3604 struct e1000_hw *hw = &adapter->hw;
Bruce Allanb67e1912012-12-27 08:32:33 +00003605 u32 tsync_tx_ctl = E1000_TSYNCTXCTL_ENABLED;
3606 u32 tsync_rx_ctl = E1000_TSYNCRXCTL_ENABLED;
Bruce Alland89777b2013-01-19 01:09:58 +00003607 u32 rxmtrl = 0;
3608 u16 rxudp = 0;
3609 bool is_l4 = false;
3610 bool is_l2 = false;
Bruce Allanb67e1912012-12-27 08:32:33 +00003611 u32 regval;
Bruce Allanb67e1912012-12-27 08:32:33 +00003612
3613 if (!(adapter->flags & FLAG_HAS_HW_TIMESTAMP))
3614 return -EINVAL;
3615
3616 /* flags reserved for future extensions - must be zero */
3617 if (config->flags)
3618 return -EINVAL;
3619
3620 switch (config->tx_type) {
3621 case HWTSTAMP_TX_OFF:
3622 tsync_tx_ctl = 0;
3623 break;
3624 case HWTSTAMP_TX_ON:
3625 break;
3626 default:
3627 return -ERANGE;
3628 }
3629
3630 switch (config->rx_filter) {
3631 case HWTSTAMP_FILTER_NONE:
3632 tsync_rx_ctl = 0;
3633 break;
Bruce Alland89777b2013-01-19 01:09:58 +00003634 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
3635 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1;
3636 rxmtrl = E1000_RXMTRL_PTP_V1_SYNC_MESSAGE;
3637 is_l4 = true;
3638 break;
3639 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
3640 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1;
3641 rxmtrl = E1000_RXMTRL_PTP_V1_DELAY_REQ_MESSAGE;
3642 is_l4 = true;
3643 break;
3644 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
3645 /* Also time stamps V2 L2 Path Delay Request/Response */
3646 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_V2;
3647 rxmtrl = E1000_RXMTRL_PTP_V2_SYNC_MESSAGE;
3648 is_l2 = true;
3649 break;
3650 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
3651 /* Also time stamps V2 L2 Path Delay Request/Response. */
3652 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_V2;
3653 rxmtrl = E1000_RXMTRL_PTP_V2_DELAY_REQ_MESSAGE;
3654 is_l2 = true;
3655 break;
3656 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
Jeff Kirsher5463fce62020-06-03 20:07:26 -07003657 /* Hardware cannot filter just V2 L4 Sync messages */
3658 fallthrough;
Bruce Alland89777b2013-01-19 01:09:58 +00003659 case HWTSTAMP_FILTER_PTP_V2_SYNC:
3660 /* Also time stamps V2 Path Delay Request/Response. */
3661 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_L4_V2;
3662 rxmtrl = E1000_RXMTRL_PTP_V2_SYNC_MESSAGE;
3663 is_l2 = true;
3664 is_l4 = true;
3665 break;
3666 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
Jeff Kirsher5463fce62020-06-03 20:07:26 -07003667 /* Hardware cannot filter just V2 L4 Delay Request messages */
3668 fallthrough;
Bruce Alland89777b2013-01-19 01:09:58 +00003669 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
3670 /* Also time stamps V2 Path Delay Request/Response. */
3671 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_L4_V2;
3672 rxmtrl = E1000_RXMTRL_PTP_V2_DELAY_REQ_MESSAGE;
3673 is_l2 = true;
3674 is_l4 = true;
3675 break;
3676 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
3677 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
Jeff Kirsher5463fce62020-06-03 20:07:26 -07003678 /* Hardware cannot filter just V2 L4 or L2 Event messages */
3679 fallthrough;
Bruce Alland89777b2013-01-19 01:09:58 +00003680 case HWTSTAMP_FILTER_PTP_V2_EVENT:
3681 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_EVENT_V2;
3682 config->rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
3683 is_l2 = true;
3684 is_l4 = true;
3685 break;
3686 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
3687 /* For V1, the hardware can only filter Sync messages or
3688 * Delay Request messages but not both so fall-through to
3689 * time stamp all packets.
3690 */
Jeff Kirsher5463fce62020-06-03 20:07:26 -07003691 fallthrough;
Miroslav Lichvare3412572017-05-19 17:52:36 +02003692 case HWTSTAMP_FILTER_NTP_ALL:
Bruce Allanb67e1912012-12-27 08:32:33 +00003693 case HWTSTAMP_FILTER_ALL:
Bruce Alland89777b2013-01-19 01:09:58 +00003694 is_l2 = true;
3695 is_l4 = true;
Bruce Allanb67e1912012-12-27 08:32:33 +00003696 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_ALL;
3697 config->rx_filter = HWTSTAMP_FILTER_ALL;
3698 break;
3699 default:
3700 return -ERANGE;
3701 }
3702
Ben Hutchings62d7e3a2013-11-14 00:41:38 +00003703 adapter->hwtstamp_config = *config;
3704
Bruce Allanb67e1912012-12-27 08:32:33 +00003705 /* enable/disable Tx h/w time stamping */
3706 regval = er32(TSYNCTXCTL);
3707 regval &= ~E1000_TSYNCTXCTL_ENABLED;
3708 regval |= tsync_tx_ctl;
3709 ew32(TSYNCTXCTL, regval);
3710 if ((er32(TSYNCTXCTL) & E1000_TSYNCTXCTL_ENABLED) !=
3711 (regval & E1000_TSYNCTXCTL_ENABLED)) {
3712 e_err("Timesync Tx Control register not set as expected\n");
3713 return -EAGAIN;
3714 }
3715
3716 /* enable/disable Rx h/w time stamping */
3717 regval = er32(TSYNCRXCTL);
3718 regval &= ~(E1000_TSYNCRXCTL_ENABLED | E1000_TSYNCRXCTL_TYPE_MASK);
3719 regval |= tsync_rx_ctl;
3720 ew32(TSYNCRXCTL, regval);
3721 if ((er32(TSYNCRXCTL) & (E1000_TSYNCRXCTL_ENABLED |
3722 E1000_TSYNCRXCTL_TYPE_MASK)) !=
3723 (regval & (E1000_TSYNCRXCTL_ENABLED |
3724 E1000_TSYNCRXCTL_TYPE_MASK))) {
3725 e_err("Timesync Rx Control register not set as expected\n");
3726 return -EAGAIN;
3727 }
3728
Bruce Alland89777b2013-01-19 01:09:58 +00003729 /* L2: define ethertype filter for time stamped packets */
3730 if (is_l2)
3731 rxmtrl |= ETH_P_1588;
3732
3733 /* define which PTP packets get time stamped */
3734 ew32(RXMTRL, rxmtrl);
3735
3736 /* Filter by destination port */
3737 if (is_l4) {
3738 rxudp = PTP_EV_PORT;
3739 cpu_to_be16s(&rxudp);
3740 }
3741 ew32(RXUDP, rxudp);
3742
3743 e1e_flush();
3744
Bruce Allanb67e1912012-12-27 08:32:33 +00003745 /* Clear TSYNCRXCTL_VALID & TSYNCTXCTL_VALID bit */
Bruce Allan70806a72013-01-05 05:08:37 +00003746 er32(RXSTMPH);
3747 er32(TXSTMPH);
Bruce Allanb67e1912012-12-27 08:32:33 +00003748
Bruce Allanb67e1912012-12-27 08:32:33 +00003749 return 0;
3750}
3751
3752/**
Bruce Allanad680762008-03-28 09:15:03 -07003753 * e1000_configure - configure the hardware for Rx and Tx
Auke Kokbc7f75f2007-09-17 12:30:59 -07003754 * @adapter: private board structure
3755 **/
3756static void e1000_configure(struct e1000_adapter *adapter)
3757{
Bruce Allan55aa6982011-12-16 00:45:45 +00003758 struct e1000_ring *rx_ring = adapter->rx_ring;
3759
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00003760 e1000e_set_rx_mode(adapter->netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003761
3762 e1000_restore_vlan(adapter);
Bruce Allancd791612010-05-10 14:59:51 +00003763 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003764
3765 e1000_configure_tx(adapter);
Bruce Allan70495a52012-01-11 01:26:50 +00003766
3767 if (adapter->netdev->features & NETIF_F_RXHASH)
3768 e1000e_setup_rss_hash(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003769 e1000_setup_rctl(adapter);
3770 e1000_configure_rx(adapter);
Bruce Allan55aa6982011-12-16 00:45:45 +00003771 adapter->alloc_rx_buf(rx_ring, e1000_desc_unused(rx_ring), GFP_KERNEL);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003772}
3773
3774/**
3775 * e1000e_power_up_phy - restore link in case the phy was powered down
3776 * @adapter: address of board private structure
3777 *
3778 * The phy may be powered down to save power and turn off link when the
3779 * driver is unloaded and wake on lan is not enabled (among others)
3780 * *** this routine MUST be followed by a call to e1000e_reset ***
3781 **/
3782void e1000e_power_up_phy(struct e1000_adapter *adapter)
3783{
Bruce Allan17f208d2009-12-01 15:47:22 +00003784 if (adapter->hw.phy.ops.power_up)
3785 adapter->hw.phy.ops.power_up(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003786
3787 adapter->hw.mac.ops.setup_link(&adapter->hw);
3788}
3789
3790/**
3791 * e1000_power_down_phy - Power down the PHY
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07003792 * @adapter: board private structure
Auke Kokbc7f75f2007-09-17 12:30:59 -07003793 *
Bruce Allan17f208d2009-12-01 15:47:22 +00003794 * Power down the PHY so no link is implied when interface is down.
3795 * The PHY cannot be powered down if management or WoL is active.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003796 */
3797static void e1000_power_down_phy(struct e1000_adapter *adapter)
3798{
Bruce Allan17f208d2009-12-01 15:47:22 +00003799 if (adapter->hw.phy.ops.power_down)
3800 adapter->hw.phy.ops.power_down(&adapter->hw);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003801}
3802
3803/**
Yanir Lubetkinad851fb2015-04-14 02:20:21 +03003804 * e1000_flush_tx_ring - remove all descriptors from the tx_ring
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07003805 * @adapter: board private structure
Yanir Lubetkinad851fb2015-04-14 02:20:21 +03003806 *
3807 * We want to clear all pending descriptors from the TX ring.
3808 * zeroing happens when the HW reads the regs. We assign the ring itself as
3809 * the data of the next descriptor. We don't care about the data we are about
3810 * to reset the HW.
3811 */
3812static void e1000_flush_tx_ring(struct e1000_adapter *adapter)
3813{
3814 struct e1000_hw *hw = &adapter->hw;
3815 struct e1000_ring *tx_ring = adapter->tx_ring;
3816 struct e1000_tx_desc *tx_desc = NULL;
3817 u32 tdt, tctl, txd_lower = E1000_TXD_CMD_IFCS;
3818 u16 size = 512;
3819
3820 tctl = er32(TCTL);
3821 ew32(TCTL, tctl | E1000_TCTL_EN);
3822 tdt = er32(TDT(0));
3823 BUG_ON(tdt != tx_ring->next_to_use);
3824 tx_desc = E1000_TX_DESC(*tx_ring, tx_ring->next_to_use);
Ben Dooks (Codethink)99fe61b2019-12-18 09:53:08 +00003825 tx_desc->buffer_addr = cpu_to_le64(tx_ring->dma);
Yanir Lubetkinad851fb2015-04-14 02:20:21 +03003826
3827 tx_desc->lower.data = cpu_to_le32(txd_lower | size);
3828 tx_desc->upper.data = 0;
3829 /* flush descriptors to memory before notifying the HW */
3830 wmb();
3831 tx_ring->next_to_use++;
3832 if (tx_ring->next_to_use == tx_ring->count)
3833 tx_ring->next_to_use = 0;
3834 ew32(TDT(0), tx_ring->next_to_use);
Yanir Lubetkinad851fb2015-04-14 02:20:21 +03003835 usleep_range(200, 250);
3836}
3837
3838/**
3839 * e1000_flush_rx_ring - remove all descriptors from the rx_ring
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07003840 * @adapter: board private structure
Yanir Lubetkinad851fb2015-04-14 02:20:21 +03003841 *
3842 * Mark all descriptors in the RX ring as consumed and disable the rx ring
3843 */
3844static void e1000_flush_rx_ring(struct e1000_adapter *adapter)
3845{
3846 u32 rctl, rxdctl;
3847 struct e1000_hw *hw = &adapter->hw;
3848
3849 rctl = er32(RCTL);
3850 ew32(RCTL, rctl & ~E1000_RCTL_EN);
3851 e1e_flush();
3852 usleep_range(100, 150);
3853
3854 rxdctl = er32(RXDCTL(0));
3855 /* zero the lower 14 bits (prefetch and host thresholds) */
3856 rxdctl &= 0xffffc000;
3857
3858 /* update thresholds: prefetch threshold to 31, host threshold to 1
3859 * and make sure the granularity is "descriptors" and not "cache lines"
3860 */
Jacob Keller18dd2392016-04-13 16:08:32 -07003861 rxdctl |= (0x1F | BIT(8) | E1000_RXDCTL_THRESH_UNIT_DESC);
Yanir Lubetkinad851fb2015-04-14 02:20:21 +03003862
3863 ew32(RXDCTL(0), rxdctl);
3864 /* momentarily enable the RX ring for the changes to take effect */
3865 ew32(RCTL, rctl | E1000_RCTL_EN);
3866 e1e_flush();
3867 usleep_range(100, 150);
3868 ew32(RCTL, rctl & ~E1000_RCTL_EN);
3869}
3870
3871/**
3872 * e1000_flush_desc_rings - remove all descriptors from the descriptor rings
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07003873 * @adapter: board private structure
Yanir Lubetkinad851fb2015-04-14 02:20:21 +03003874 *
3875 * In i219, the descriptor rings must be emptied before resetting the HW
3876 * or before changing the device state to D3 during runtime (runtime PM).
3877 *
3878 * Failure to do this will cause the HW to enter a unit hang state which can
3879 * only be released by PCI reset on the device
3880 *
3881 */
3882
3883static void e1000_flush_desc_rings(struct e1000_adapter *adapter)
3884{
Yanir Lubetkinff9174292015-06-02 17:05:38 +03003885 u16 hang_state;
Yanir Lubetkinad851fb2015-04-14 02:20:21 +03003886 u32 fext_nvm11, tdlen;
3887 struct e1000_hw *hw = &adapter->hw;
3888
3889 /* First, disable MULR fix in FEXTNVM11 */
3890 fext_nvm11 = er32(FEXTNVM11);
3891 fext_nvm11 |= E1000_FEXTNVM11_DISABLE_MULR_FIX;
3892 ew32(FEXTNVM11, fext_nvm11);
3893 /* do nothing if we're not in faulty state, or if the queue is empty */
3894 tdlen = er32(TDLEN(0));
Yanir Lubetkinff9174292015-06-02 17:05:38 +03003895 pci_read_config_word(adapter->pdev, PCICFG_DESC_RING_STATUS,
3896 &hang_state);
3897 if (!(hang_state & FLUSH_DESC_REQUIRED) || !tdlen)
Yanir Lubetkinad851fb2015-04-14 02:20:21 +03003898 return;
3899 e1000_flush_tx_ring(adapter);
3900 /* recheck, maybe the fault is caused by the rx ring */
Yanir Lubetkinff9174292015-06-02 17:05:38 +03003901 pci_read_config_word(adapter->pdev, PCICFG_DESC_RING_STATUS,
3902 &hang_state);
3903 if (hang_state & FLUSH_DESC_REQUIRED)
Yanir Lubetkinad851fb2015-04-14 02:20:21 +03003904 e1000_flush_rx_ring(adapter);
3905}
3906
3907/**
Jacob Kelleraa524b62016-04-20 11:36:42 -07003908 * e1000e_systim_reset - reset the timesync registers after a hardware reset
3909 * @adapter: board private structure
3910 *
3911 * When the MAC is reset, all hardware bits for timesync will be reset to the
3912 * default values. This function will restore the settings last in place.
3913 * Since the clock SYSTIME registers are reset, we will simply restore the
3914 * cyclecounter to the kernel real clock time.
3915 **/
3916static void e1000e_systim_reset(struct e1000_adapter *adapter)
3917{
3918 struct ptp_clock_info *info = &adapter->ptp_clock_info;
3919 struct e1000_hw *hw = &adapter->hw;
3920 unsigned long flags;
3921 u32 timinca;
3922 s32 ret_val;
3923
3924 if (!(adapter->flags & FLAG_HAS_HW_TIMESTAMP))
3925 return;
3926
3927 if (info->adjfreq) {
3928 /* restore the previous ptp frequency delta */
3929 ret_val = info->adjfreq(info, adapter->ptp_delta);
3930 } else {
3931 /* set the default base frequency if no adjustment possible */
3932 ret_val = e1000e_get_base_timinca(adapter, &timinca);
3933 if (!ret_val)
3934 ew32(TIMINCA, timinca);
3935 }
3936
3937 if (ret_val) {
3938 dev_warn(&adapter->pdev->dev,
3939 "Failed to restore TIMINCA clock rate delta: %d\n",
3940 ret_val);
3941 return;
3942 }
3943
3944 /* reset the systim ns time counter */
3945 spin_lock_irqsave(&adapter->systim_lock, flags);
3946 timecounter_init(&adapter->tc, &adapter->cc,
3947 ktime_to_ns(ktime_get_real()));
3948 spin_unlock_irqrestore(&adapter->systim_lock, flags);
3949
3950 /* restore the previous hwtstamp configuration settings */
3951 e1000e_config_hwtstamp(adapter, &adapter->hwtstamp_config);
3952}
3953
3954/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07003955 * e1000e_reset - bring the hardware into a known good state
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07003956 * @adapter: board private structure
Auke Kokbc7f75f2007-09-17 12:30:59 -07003957 *
3958 * This function boots the hardware and enables some settings that
3959 * require a configuration cycle of the hardware - those cannot be
3960 * set/changed during runtime. After reset the device needs to be
Bruce Allanad680762008-03-28 09:15:03 -07003961 * properly configured for Rx, Tx etc.
Auke Kokbc7f75f2007-09-17 12:30:59 -07003962 */
3963void e1000e_reset(struct e1000_adapter *adapter)
3964{
3965 struct e1000_mac_info *mac = &adapter->hw.mac;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003966 struct e1000_fc_info *fc = &adapter->hw.fc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003967 struct e1000_hw *hw = &adapter->hw;
3968 u32 tx_space, min_tx_space, min_rx_space;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003969 u32 pba = adapter->pba;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003970 u16 hwm;
3971
Bruce Allanad680762008-03-28 09:15:03 -07003972 /* reset Packet Buffer Allocation to default */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003973 ew32(PBA, pba);
Auke Kokdf762462007-10-25 13:57:53 -07003974
Alexander Duyck8084b862015-05-02 00:52:00 -07003975 if (adapter->max_frame_size > (VLAN_ETH_FRAME_LEN + ETH_FCS_LEN)) {
Bruce Allane921eb12012-11-28 09:28:37 +00003976 /* To maintain wire speed transmits, the Tx FIFO should be
Auke Kokbc7f75f2007-09-17 12:30:59 -07003977 * large enough to accommodate two full transmit packets,
3978 * rounded up to the next 1KB and expressed in KB. Likewise,
3979 * the Rx FIFO should be large enough to accommodate at least
3980 * one full receive packet and is similarly rounded up and
Bruce Allanad680762008-03-28 09:15:03 -07003981 * expressed in KB.
3982 */
Auke Kokdf762462007-10-25 13:57:53 -07003983 pba = er32(PBA);
Auke Kokbc7f75f2007-09-17 12:30:59 -07003984 /* upper 16 bits has Tx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003985 tx_space = pba >> 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003986 /* lower 16 bits has Rx packet buffer allocation size in KB */
Auke Kokdf762462007-10-25 13:57:53 -07003987 pba &= 0xffff;
Bruce Allane921eb12012-11-28 09:28:37 +00003988 /* the Tx fifo also stores 16 bytes of information about the Tx
Bruce Allanad680762008-03-28 09:15:03 -07003989 * but don't include ethernet FCS because hardware appends it
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003990 */
3991 min_tx_space = (adapter->max_frame_size +
Bruce Allane5fe2542013-02-20 04:06:27 +00003992 sizeof(struct e1000_tx_desc) - ETH_FCS_LEN) * 2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003993 min_tx_space = ALIGN(min_tx_space, 1024);
3994 min_tx_space >>= 10;
3995 /* software strips receive CRC, so leave room for it */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07003996 min_rx_space = adapter->max_frame_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07003997 min_rx_space = ALIGN(min_rx_space, 1024);
3998 min_rx_space >>= 10;
3999
Bruce Allane921eb12012-11-28 09:28:37 +00004000 /* If current Tx allocation is less than the min Tx FIFO size,
Auke Kokbc7f75f2007-09-17 12:30:59 -07004001 * and the min Tx FIFO size is less than the current Rx FIFO
Bruce Allanad680762008-03-28 09:15:03 -07004002 * allocation, take space away from current Rx allocation
4003 */
Auke Kokdf762462007-10-25 13:57:53 -07004004 if ((tx_space < min_tx_space) &&
4005 ((min_tx_space - tx_space) < pba)) {
4006 pba -= min_tx_space - tx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004007
Bruce Allane921eb12012-11-28 09:28:37 +00004008 /* if short on Rx space, Rx wins and must trump Tx
Bruce Allan419e5512012-08-17 06:18:02 +00004009 * adjustment
Bruce Allanad680762008-03-28 09:15:03 -07004010 */
Bruce Allan79d4e902011-12-16 00:46:27 +00004011 if (pba < min_rx_space)
Auke Kokdf762462007-10-25 13:57:53 -07004012 pba = min_rx_space;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004013 }
Auke Kokdf762462007-10-25 13:57:53 -07004014
4015 ew32(PBA, pba);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004016 }
4017
Bruce Allane921eb12012-11-28 09:28:37 +00004018 /* flow control settings
Bruce Allanad680762008-03-28 09:15:03 -07004019 *
Bruce Allan38eb3942009-11-19 12:34:20 +00004020 * The high water mark must be low enough to fit one full frame
Auke Kokbc7f75f2007-09-17 12:30:59 -07004021 * (or the size used for early receive) above it in the Rx FIFO.
4022 * Set it to the lower of:
4023 * - 90% of the Rx FIFO size, and
Bruce Allan38eb3942009-11-19 12:34:20 +00004024 * - the full Rx FIFO size minus one full frame
Bruce Allanad680762008-03-28 09:15:03 -07004025 */
Bruce Alland3738bb2010-06-16 13:27:28 +00004026 if (adapter->flags & FLAG_DISABLE_FC_PAUSE_TIME)
4027 fc->pause_time = 0xFFFF;
4028 else
4029 fc->pause_time = E1000_FC_PAUSE_TIME;
Bruce Allanb20caa82012-02-22 09:03:03 +00004030 fc->send_xon = true;
Bruce Alland3738bb2010-06-16 13:27:28 +00004031 fc->current_mode = fc->requested_mode;
4032
4033 switch (hw->mac.type) {
Bruce Allan79d4e902011-12-16 00:46:27 +00004034 case e1000_ich9lan:
4035 case e1000_ich10lan:
4036 if (adapter->netdev->mtu > ETH_DATA_LEN) {
4037 pba = 14;
4038 ew32(PBA, pba);
4039 fc->high_water = 0x2800;
4040 fc->low_water = fc->high_water - 8;
4041 break;
4042 }
Jeff Kirsher5463fce62020-06-03 20:07:26 -07004043 fallthrough;
Bruce Alland3738bb2010-06-16 13:27:28 +00004044 default:
Bruce Allan79d4e902011-12-16 00:46:27 +00004045 hwm = min(((pba << 10) * 9 / 10),
4046 ((pba << 10) - adapter->max_frame_size));
Bruce Alland3738bb2010-06-16 13:27:28 +00004047
Bruce Allane80bd1d2013-05-01 01:19:46 +00004048 fc->high_water = hwm & E1000_FCRTH_RTH; /* 8-byte granularity */
Bruce Alland3738bb2010-06-16 13:27:28 +00004049 fc->low_water = fc->high_water - 8;
4050 break;
4051 case e1000_pchlan:
Bruce Allane921eb12012-11-28 09:28:37 +00004052 /* Workaround PCH LOM adapter hangs with certain network
Bruce Allan38eb3942009-11-19 12:34:20 +00004053 * loads. If hangs persist, try disabling Tx flow control.
4054 */
4055 if (adapter->netdev->mtu > ETH_DATA_LEN) {
4056 fc->high_water = 0x3500;
Bruce Allane80bd1d2013-05-01 01:19:46 +00004057 fc->low_water = 0x1500;
Bruce Allan38eb3942009-11-19 12:34:20 +00004058 } else {
4059 fc->high_water = 0x5000;
Bruce Allane80bd1d2013-05-01 01:19:46 +00004060 fc->low_water = 0x3000;
Bruce Allan38eb3942009-11-19 12:34:20 +00004061 }
Bruce Allana3055952010-05-10 15:02:12 +00004062 fc->refresh_time = 0x1000;
Bruce Alland3738bb2010-06-16 13:27:28 +00004063 break;
4064 case e1000_pch2lan:
Bruce Allan2fbe4522012-04-19 03:21:47 +00004065 case e1000_pch_lpt:
David Ertman79849eb2015-02-10 09:10:43 +00004066 case e1000_pch_spt:
Sasha Neftinc8744f42017-04-06 10:26:47 +03004067 case e1000_pch_cnp:
Sasha Neftinfb776f52019-10-16 11:08:38 +03004068 case e1000_pch_tgp:
Sasha Neftin59e46682020-01-19 13:57:13 +02004069 case e1000_pch_adp:
Sasha Neftincc23f4f2020-08-13 11:34:06 +03004070 case e1000_pch_mtp:
Miguel Bernal Marinf74dc882017-03-27 16:01:56 -06004071 fc->refresh_time = 0xFFFF;
4072 fc->pause_time = 0xFFFF;
Bruce Allan347b5202012-12-08 00:35:35 +00004073
4074 if (adapter->netdev->mtu <= ETH_DATA_LEN) {
4075 fc->high_water = 0x05C20;
4076 fc->low_water = 0x05048;
Bruce Allan347b5202012-12-08 00:35:35 +00004077 break;
Bruce Allan828bac82010-09-29 21:39:37 +00004078 }
Bruce Allan347b5202012-12-08 00:35:35 +00004079
Bruce Allance345e02013-06-21 09:07:07 +00004080 pba = 14;
4081 ew32(PBA, pba);
Bruce Allan347b5202012-12-08 00:35:35 +00004082 fc->high_water = ((pba << 10) * 9 / 10) & E1000_FCRTH_RTH;
4083 fc->low_water = ((pba << 10) * 8 / 10) & E1000_FCRTL_RTL;
Bruce Alland3738bb2010-06-16 13:27:28 +00004084 break;
Bruce Allan38eb3942009-11-19 12:34:20 +00004085 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07004086
Bruce Allane921eb12012-11-28 09:28:37 +00004087 /* Alignment of Tx data is on an arbitrary byte boundary with the
Bruce Alland821a4c2012-08-24 20:38:11 +00004088 * maximum size per Tx descriptor limited only to the transmit
4089 * allocation of the packet buffer minus 96 bytes with an upper
4090 * limit of 24KB due to receive synchronization limitations.
4091 */
4092 adapter->tx_fifo_limit = min_t(u32, ((er32(PBA) >> 16) << 10) - 96,
4093 24 << 10);
4094
Bruce Allane921eb12012-11-28 09:28:37 +00004095 /* Disable Adaptive Interrupt Moderation if 2 full packets cannot
Bruce Allan79d4e902011-12-16 00:46:27 +00004096 * fit in receive buffer.
Bruce Allan828bac82010-09-29 21:39:37 +00004097 */
4098 if (adapter->itr_setting & 0x3) {
Bruce Allan79d4e902011-12-16 00:46:27 +00004099 if ((adapter->max_frame_size * 2) > (pba << 10)) {
Bruce Allan828bac82010-09-29 21:39:37 +00004100 if (!(adapter->flags2 & FLAG2_DISABLE_AIM)) {
4101 dev_info(&adapter->pdev->dev,
Bruce Allan17e813e2013-02-20 04:06:01 +00004102 "Interrupt Throttle Rate off\n");
Bruce Allan828bac82010-09-29 21:39:37 +00004103 adapter->flags2 |= FLAG2_DISABLE_AIM;
Matthew Vick22a4cca2012-07-12 00:02:42 +00004104 e1000e_write_itr(adapter, 0);
Bruce Allan828bac82010-09-29 21:39:37 +00004105 }
4106 } else if (adapter->flags2 & FLAG2_DISABLE_AIM) {
4107 dev_info(&adapter->pdev->dev,
Bruce Allan17e813e2013-02-20 04:06:01 +00004108 "Interrupt Throttle Rate on\n");
Bruce Allan828bac82010-09-29 21:39:37 +00004109 adapter->flags2 &= ~FLAG2_DISABLE_AIM;
4110 adapter->itr = 20000;
Matthew Vick22a4cca2012-07-12 00:02:42 +00004111 e1000e_write_itr(adapter, adapter->itr);
Bruce Allan828bac82010-09-29 21:39:37 +00004112 }
4113 }
4114
Sasha Neftinc8744f42017-04-06 10:26:47 +03004115 if (hw->mac.type >= e1000_pch_spt)
Yanir Lubetkin0ffc5642015-04-22 04:15:01 +03004116 e1000_flush_desc_rings(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004117 /* Allow time for pending master requests to run */
4118 mac->ops.reset_hw(hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004119
Bruce Allane921eb12012-11-28 09:28:37 +00004120 /* For parts with AMT enabled, let the firmware know
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004121 * that the network interface is in control
4122 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07004123 if (adapter->flags & FLAG_HAS_AMT)
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004124 e1000e_get_hw_control(adapter);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07004125
Auke Kokbc7f75f2007-09-17 12:30:59 -07004126 ew32(WUC, 0);
4127
4128 if (mac->ops.init_hw(hw))
Jeff Kirsher44defeb2008-08-04 17:20:41 -07004129 e_err("Hardware Error\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07004130
4131 e1000_update_mng_vlan(adapter);
4132
4133 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
4134 ew32(VET, ETH_P_8021Q);
4135
4136 e1000e_reset_adaptive(hw);
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004137
Jacob Kelleraa524b62016-04-20 11:36:42 -07004138 /* restore systim and hwtstamp settings */
4139 e1000e_systim_reset(adapter);
Bruce Allanb67e1912012-12-27 08:32:33 +00004140
Bruce Alland495bcb2013-03-20 07:23:11 +00004141 /* Set EEE advertisement as appropriate */
4142 if (adapter->flags2 & FLAG2_HAS_EEE) {
4143 s32 ret_val;
4144 u16 adv_addr;
4145
4146 switch (hw->phy.type) {
4147 case e1000_phy_82579:
4148 adv_addr = I82579_EEE_ADVERTISEMENT;
4149 break;
4150 case e1000_phy_i217:
4151 adv_addr = I217_EEE_ADVERTISEMENT;
4152 break;
4153 default:
4154 dev_err(&adapter->pdev->dev,
4155 "Invalid PHY type setting EEE advertisement\n");
4156 return;
4157 }
4158
4159 ret_val = hw->phy.ops.acquire(hw);
4160 if (ret_val) {
4161 dev_err(&adapter->pdev->dev,
4162 "EEE advertisement - unable to acquire PHY\n");
4163 return;
4164 }
4165
4166 e1000_write_emi_reg_locked(hw, adv_addr,
4167 hw->dev_spec.ich8lan.eee_disable ?
4168 0 : adapter->eee_advert);
4169
4170 hw->phy.ops.release(hw);
4171 }
4172
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004173 if (!netif_running(adapter->netdev) &&
David Ertman28002092014-02-14 07:16:41 +00004174 !test_bit(__E1000_TESTING, &adapter->state))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004175 e1000_power_down_phy(adapter);
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004176
Auke Kokbc7f75f2007-09-17 12:30:59 -07004177 e1000_get_phy_info(hw);
4178
Bruce Allan918d7192009-06-02 11:28:20 +00004179 if ((adapter->flags & FLAG_HAS_SMART_POWER_DOWN) &&
4180 !(adapter->flags & FLAG_SMART_POWER_DOWN)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07004181 u16 phy_data = 0;
Bruce Allane921eb12012-11-28 09:28:37 +00004182 /* speed up time to link by disabling smart power down, ignore
Auke Kokbc7f75f2007-09-17 12:30:59 -07004183 * the return value of this function because there is nothing
Bruce Allanad680762008-03-28 09:15:03 -07004184 * different we would do if it failed
4185 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004186 e1e_rphy(hw, IGP02E1000_PHY_POWER_MGMT, &phy_data);
4187 phy_data &= ~IGP02E1000_PM_SPD;
4188 e1e_wphy(hw, IGP02E1000_PHY_POWER_MGMT, phy_data);
4189 }
Sasha Neftinc8744f42017-04-06 10:26:47 +03004190 if (hw->mac.type >= e1000_pch_spt && adapter->int_mode == 0) {
Yanir Lubetkinec945cf2015-06-02 17:05:42 +03004191 u32 reg;
4192
4193 /* Fextnvm7 @ 0xe4[2] = 1 */
4194 reg = er32(FEXTNVM7);
4195 reg |= E1000_FEXTNVM7_SIDE_CLK_UNGATE;
4196 ew32(FEXTNVM7, reg);
4197 /* Fextnvm9 @ 0x5bb4[13:12] = 11 */
4198 reg = er32(FEXTNVM9);
4199 reg |= E1000_FEXTNVM9_IOSFSB_CLKGATE_DIS |
4200 E1000_FEXTNVM9_IOSFSB_CLKREQ_DIS;
4201 ew32(FEXTNVM9, reg);
4202 }
4203
Auke Kokbc7f75f2007-09-17 12:30:59 -07004204}
4205
Benjamin Poiriera61cfe42015-11-09 15:50:20 -08004206/**
4207 * e1000e_trigger_lsc - trigger an LSC interrupt
4208 * @adapter:
4209 *
4210 * Fire a link status change interrupt to start the watchdog.
4211 **/
4212static void e1000e_trigger_lsc(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004213{
4214 struct e1000_hw *hw = &adapter->hw;
4215
Benjamin Poiriera61cfe42015-11-09 15:50:20 -08004216 if (adapter->msix_entries)
Benjamin Poirier4aea7a5c2017-07-21 11:36:27 -07004217 ew32(ICS, E1000_ICS_LSC | E1000_ICS_OTHER);
Benjamin Poiriera61cfe42015-11-09 15:50:20 -08004218 else
4219 ew32(ICS, E1000_ICS_LSC);
4220}
4221
4222void e1000e_up(struct e1000_adapter *adapter)
4223{
Auke Kokbc7f75f2007-09-17 12:30:59 -07004224 /* hardware has been reset, we need to reload some things */
4225 e1000_configure(adapter);
4226
4227 clear_bit(__E1000_DOWN, &adapter->state);
4228
Bruce Allan4662e822008-08-26 18:37:06 -07004229 if (adapter->msix_entries)
4230 e1000_configure_msix(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004231 e1000_irq_enable(adapter);
4232
Konstantin Khlebnikovd17ba0f2019-04-17 11:13:20 +03004233 /* Tx queue started by watchdog timer when link is up */
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00004234
Benjamin Poiriera61cfe42015-11-09 15:50:20 -08004235 e1000e_trigger_lsc(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004236}
4237
Jesse Brandeburg713b3c92011-02-02 10:19:50 +00004238static void e1000e_flush_descriptors(struct e1000_adapter *adapter)
4239{
4240 struct e1000_hw *hw = &adapter->hw;
4241
4242 if (!(adapter->flags2 & FLAG2_DMA_BURST))
4243 return;
4244
4245 /* flush pending descriptor writebacks to memory */
4246 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
4247 ew32(RDTR, adapter->rx_int_delay | E1000_RDTR_FPD);
4248
4249 /* execute the writes immediately */
4250 e1e_flush();
Matthew Vickbf030852012-03-16 09:03:00 +00004251
Bruce Allane921eb12012-11-28 09:28:37 +00004252 /* due to rare timing issues, write to TIDV/RDTR again to ensure the
Matthew Vickbf030852012-03-16 09:03:00 +00004253 * write is successful
4254 */
4255 ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD);
4256 ew32(RDTR, adapter->rx_int_delay | E1000_RDTR_FPD);
4257
4258 /* execute the writes immediately */
4259 e1e_flush();
Jesse Brandeburg713b3c92011-02-02 10:19:50 +00004260}
4261
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004262static void e1000e_update_stats(struct e1000_adapter *adapter);
4263
David Ertman28002092014-02-14 07:16:41 +00004264/**
4265 * e1000e_down - quiesce the device and optionally reset the hardware
4266 * @adapter: board private structure
4267 * @reset: boolean flag to reset the hardware or not
4268 */
4269void e1000e_down(struct e1000_adapter *adapter, bool reset)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004270{
4271 struct net_device *netdev = adapter->netdev;
4272 struct e1000_hw *hw = &adapter->hw;
4273 u32 tctl, rctl;
4274
Bruce Allane921eb12012-11-28 09:28:37 +00004275 /* signal that we're down so the interrupt handler does not
Bruce Allanad680762008-03-28 09:15:03 -07004276 * reschedule our watchdog timer
4277 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004278 set_bit(__E1000_DOWN, &adapter->state);
4279
Eliezer Tamira60a1322015-03-20 17:41:52 -07004280 netif_carrier_off(netdev);
4281
Auke Kokbc7f75f2007-09-17 12:30:59 -07004282 /* disable receives in the hardware */
4283 rctl = er32(RCTL);
David S. Miller823dcd22011-08-20 10:39:12 -07004284 if (!(adapter->flags2 & FLAG2_NO_DISABLE_RX))
4285 ew32(RCTL, rctl & ~E1000_RCTL_EN);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004286 /* flush and sleep below */
4287
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00004288 netif_stop_queue(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004289
4290 /* disable transmits in the hardware */
4291 tctl = er32(TCTL);
4292 tctl &= ~E1000_TCTL_EN;
4293 ew32(TCTL, tctl);
David S. Miller823dcd22011-08-20 10:39:12 -07004294
Auke Kokbc7f75f2007-09-17 12:30:59 -07004295 /* flush both disables and wait for them to finish */
4296 e1e_flush();
Arjan van de Venab6973a2019-06-14 17:29:35 -07004297 usleep_range(10000, 11000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004298
Auke Kokbc7f75f2007-09-17 12:30:59 -07004299 e1000_irq_disable(adapter);
4300
Bruce Allana3b87a42013-04-20 05:37:29 +00004301 napi_synchronize(&adapter->napi);
4302
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08004303 del_timer_sync(&adapter->watchdog_timer);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004304 del_timer_sync(&adapter->phy_info_timer);
4305
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004306 spin_lock(&adapter->stats64_lock);
4307 e1000e_update_stats(adapter);
4308 spin_unlock(&adapter->stats64_lock);
4309
Bruce Allan400484f2011-05-13 07:20:03 +00004310 e1000e_flush_descriptors(adapter);
Bruce Allan400484f2011-05-13 07:20:03 +00004311
Auke Kokbc7f75f2007-09-17 12:30:59 -07004312 adapter->link_speed = 0;
4313 adapter->link_duplex = 0;
4314
Bruce Allanda1e20462013-06-21 09:07:02 +00004315 /* Disable Si errata workaround on PCHx for jumbo frame flow */
4316 if ((hw->mac.type >= e1000_pch2lan) &&
4317 (adapter->netdev->mtu > ETH_DATA_LEN) &&
4318 e1000_lv_jumbo_workaround_ich8lan(hw, false))
4319 e_dbg("failed to disable jumbo frame workaround mode\n");
4320
Yanir Lubetkin0ffc5642015-04-22 04:15:01 +03004321 if (!pci_channel_offline(adapter->pdev)) {
4322 if (reset)
4323 e1000e_reset(adapter);
Sasha Neftinc8744f42017-04-06 10:26:47 +03004324 else if (hw->mac.type >= e1000_pch_spt)
Yanir Lubetkin0ffc5642015-04-22 04:15:01 +03004325 e1000_flush_desc_rings(adapter);
4326 }
4327 e1000_clean_tx_ring(adapter->tx_ring);
4328 e1000_clean_rx_ring(adapter->rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004329}
4330
4331void e1000e_reinit_locked(struct e1000_adapter *adapter)
4332{
4333 might_sleep();
4334 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
Arjan van de Venab6973a2019-06-14 17:29:35 -07004335 usleep_range(1000, 1100);
David Ertman28002092014-02-14 07:16:41 +00004336 e1000e_down(adapter, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004337 e1000e_up(adapter);
4338 clear_bit(__E1000_RESETTING, &adapter->state);
4339}
4340
4341/**
Jarod Wilson0be5b962016-07-26 14:25:34 -04004342 * e1000e_sanitize_systim - sanitize raw cycle counter reads
4343 * @hw: pointer to the HW structure
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004344 * @systim: PHC time value read, sanitized and returned
4345 * @sts: structure to hold system time before and after reading SYSTIML,
4346 * may be NULL
Jarod Wilson0be5b962016-07-26 14:25:34 -04004347 *
4348 * Errata for 82574/82583 possible bad bits read from SYSTIMH/L:
4349 * check to see that the time is incrementing at a reasonable
4350 * rate and is a multiple of incvalue.
4351 **/
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004352static u64 e1000e_sanitize_systim(struct e1000_hw *hw, u64 systim,
4353 struct ptp_system_timestamp *sts)
Jarod Wilson0be5b962016-07-26 14:25:34 -04004354{
4355 u64 time_delta, rem, temp;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01004356 u64 systim_next;
Jarod Wilson0be5b962016-07-26 14:25:34 -04004357 u32 incvalue;
4358 int i;
4359
4360 incvalue = er32(TIMINCA) & E1000_TIMINCA_INCVALUE_MASK;
4361 for (i = 0; i < E1000_MAX_82574_SYSTIM_REREADS; i++) {
4362 /* latch SYSTIMH on read of SYSTIML */
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004363 ptp_read_system_prets(sts);
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01004364 systim_next = (u64)er32(SYSTIML);
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004365 ptp_read_system_postts(sts);
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01004366 systim_next |= (u64)er32(SYSTIMH) << 32;
Jarod Wilson0be5b962016-07-26 14:25:34 -04004367
4368 time_delta = systim_next - systim;
4369 temp = time_delta;
4370 /* VMWare users have seen incvalue of zero, don't div / 0 */
4371 rem = incvalue ? do_div(temp, incvalue) : (time_delta != 0);
4372
4373 systim = systim_next;
4374
4375 if ((time_delta < E1000_82574_SYSTIM_EPSILON) && (rem == 0))
4376 break;
4377 }
4378
4379 return systim;
4380}
4381
4382/**
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004383 * e1000e_read_systim - read SYSTIM register
4384 * @adapter: board private structure
4385 * @sts: structure which will contain system time before and after reading
4386 * SYSTIML, may be NULL
Bruce Allanb67e1912012-12-27 08:32:33 +00004387 **/
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004388u64 e1000e_read_systim(struct e1000_adapter *adapter,
4389 struct ptp_system_timestamp *sts)
Bruce Allanb67e1912012-12-27 08:32:33 +00004390{
Bruce Allanb67e1912012-12-27 08:32:33 +00004391 struct e1000_hw *hw = &adapter->hw;
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004392 u32 systimel, systimel_2, systimeh;
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01004393 u64 systim;
Raanan Avargil37b129102015-07-19 16:33:20 +03004394 /* SYSTIMH latching upon SYSTIML read does not work well.
4395 * This means that if SYSTIML overflows after we read it but before
4396 * we read SYSTIMH, the value of SYSTIMH has been incremented and we
4397 * will experience a huge non linear increment in the systime value
4398 * to fix that we test for overflow and if true, we re-read systime.
Yanir Lubetkin83129b32015-06-02 17:05:45 +03004399 */
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004400 ptp_read_system_prets(sts);
Denys Vlasenkoab507c92016-04-20 17:45:56 +02004401 systimel = er32(SYSTIML);
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004402 ptp_read_system_postts(sts);
Raanan Avargil37b129102015-07-19 16:33:20 +03004403 systimeh = er32(SYSTIMH);
Denys Vlasenkoab507c92016-04-20 17:45:56 +02004404 /* Is systimel is so large that overflow is possible? */
4405 if (systimel >= (u32)0xffffffff - E1000_TIMINCA_INCVALUE_MASK) {
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004406 ptp_read_system_prets(sts);
4407 systimel_2 = er32(SYSTIML);
4408 ptp_read_system_postts(sts);
Denys Vlasenkoab507c92016-04-20 17:45:56 +02004409 if (systimel > systimel_2) {
4410 /* There was an overflow, read again SYSTIMH, and use
4411 * systimel_2
4412 */
4413 systimeh = er32(SYSTIMH);
4414 systimel = systimel_2;
4415 }
Raanan Avargil37b129102015-07-19 16:33:20 +03004416 }
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +01004417 systim = (u64)systimel;
4418 systim |= (u64)systimeh << 32;
Bruce Allanb67e1912012-12-27 08:32:33 +00004419
Jarod Wilson0be5b962016-07-26 14:25:34 -04004420 if (adapter->flags2 & FLAG2_CHECK_SYSTIM_OVERFLOW)
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004421 systim = e1000e_sanitize_systim(hw, systim, sts);
Todd Fujinaka5e7ff972014-05-03 06:41:37 +00004422
Bruce Allanb67e1912012-12-27 08:32:33 +00004423 return systim;
4424}
4425
4426/**
Miroslav Lichvar98942d72018-11-09 11:14:46 +01004427 * e1000e_cyclecounter_read - read raw cycle counter (used by time counter)
4428 * @cc: cyclecounter structure
4429 **/
4430static u64 e1000e_cyclecounter_read(const struct cyclecounter *cc)
4431{
4432 struct e1000_adapter *adapter = container_of(cc, struct e1000_adapter,
4433 cc);
4434
4435 return e1000e_read_systim(adapter, NULL);
4436}
4437
4438/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004439 * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
4440 * @adapter: board private structure to initialize
4441 *
4442 * e1000_sw_init initializes the Adapter private data structure.
4443 * Fields are initialized based on PCI device information and
4444 * OS network device settings (MTU size).
4445 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05004446static int e1000_sw_init(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004447{
Auke Kokbc7f75f2007-09-17 12:30:59 -07004448 struct net_device *netdev = adapter->netdev;
4449
Alexander Duyck8084b862015-05-02 00:52:00 -07004450 adapter->rx_buffer_len = VLAN_ETH_FRAME_LEN + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004451 adapter->rx_ps_bsize0 = 128;
Alexander Duyck8084b862015-05-02 00:52:00 -07004452 adapter->max_frame_size = netdev->mtu + VLAN_ETH_HLEN + ETH_FCS_LEN;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07004453 adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN;
Bruce Allan55aa6982011-12-16 00:45:45 +00004454 adapter->tx_ring_count = E1000_DEFAULT_TXD;
4455 adapter->rx_ring_count = E1000_DEFAULT_RXD;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004456
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004457 spin_lock_init(&adapter->stats64_lock);
4458
Bruce Allan4662e822008-08-26 18:37:06 -07004459 e1000e_set_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004460
Bruce Allan4662e822008-08-26 18:37:06 -07004461 if (e1000_alloc_queues(adapter))
4462 return -ENOMEM;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004463
Bruce Allanb67e1912012-12-27 08:32:33 +00004464 /* Setup hardware time stamping cyclecounter */
4465 if (adapter->flags & FLAG_HAS_HW_TIMESTAMP) {
4466 adapter->cc.read = e1000e_cyclecounter_read;
Richard Cochran4d045b42015-01-02 20:22:05 +01004467 adapter->cc.mask = CYCLECOUNTER_MASK(64);
Bruce Allanb67e1912012-12-27 08:32:33 +00004468 adapter->cc.mult = 1;
4469 /* cc.shift set in e1000e_get_base_tininca() */
4470
4471 spin_lock_init(&adapter->systim_lock);
4472 INIT_WORK(&adapter->tx_hwtstamp_work, e1000e_tx_hwtstamp_work);
4473 }
4474
Auke Kokbc7f75f2007-09-17 12:30:59 -07004475 /* Explicitly disable IRQ since the NIC can be in any state. */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004476 e1000_irq_disable(adapter);
4477
Auke Kokbc7f75f2007-09-17 12:30:59 -07004478 set_bit(__E1000_DOWN, &adapter->state);
4479 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004480}
4481
4482/**
Bruce Allanf8d59f72008-08-08 18:36:11 -07004483 * e1000_intr_msi_test - Interrupt Handler
4484 * @irq: interrupt number
4485 * @data: pointer to a network interface device structure
4486 **/
Bruce Allan8bb62862013-01-16 08:46:49 +00004487static irqreturn_t e1000_intr_msi_test(int __always_unused irq, void *data)
Bruce Allanf8d59f72008-08-08 18:36:11 -07004488{
4489 struct net_device *netdev = data;
4490 struct e1000_adapter *adapter = netdev_priv(netdev);
4491 struct e1000_hw *hw = &adapter->hw;
4492 u32 icr = er32(ICR);
4493
Bruce Allan3bb99fe2009-11-20 23:25:07 +00004494 e_dbg("icr is %08X\n", icr);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004495 if (icr & E1000_ICR_RXSEQ) {
4496 adapter->flags &= ~FLAG_MSI_TEST_FAILED;
Bruce Allane921eb12012-11-28 09:28:37 +00004497 /* Force memory writes to complete before acknowledging the
Bruce Allanbc763292012-08-17 06:18:07 +00004498 * interrupt is handled.
4499 */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004500 wmb();
4501 }
4502
4503 return IRQ_HANDLED;
4504}
4505
4506/**
4507 * e1000_test_msi_interrupt - Returns 0 for successful test
4508 * @adapter: board private struct
4509 *
4510 * code flow taken from tg3.c
4511 **/
4512static int e1000_test_msi_interrupt(struct e1000_adapter *adapter)
4513{
4514 struct net_device *netdev = adapter->netdev;
4515 struct e1000_hw *hw = &adapter->hw;
4516 int err;
4517
4518 /* poll_enable hasn't been called yet, so don't need disable */
4519 /* clear any pending events */
4520 er32(ICR);
4521
4522 /* free the real vector and request a test handler */
4523 e1000_free_irq(adapter);
Bruce Allan4662e822008-08-26 18:37:06 -07004524 e1000e_reset_interrupt_capability(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004525
4526 /* Assume that the test fails, if it succeeds then the test
Bruce Allane921eb12012-11-28 09:28:37 +00004527 * MSI irq handler will unset this flag
4528 */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004529 adapter->flags |= FLAG_MSI_TEST_FAILED;
4530
4531 err = pci_enable_msi(adapter->pdev);
4532 if (err)
4533 goto msi_test_failed;
4534
Joe Perchesa0607fd2009-11-18 23:29:17 -08004535 err = request_irq(adapter->pdev->irq, e1000_intr_msi_test, 0,
Bruce Allanf8d59f72008-08-08 18:36:11 -07004536 netdev->name, netdev);
4537 if (err) {
4538 pci_disable_msi(adapter->pdev);
4539 goto msi_test_failed;
4540 }
4541
Bruce Allane921eb12012-11-28 09:28:37 +00004542 /* Force memory writes to complete before enabling and firing an
Bruce Allanbc763292012-08-17 06:18:07 +00004543 * interrupt.
4544 */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004545 wmb();
4546
4547 e1000_irq_enable(adapter);
4548
4549 /* fire an unusual interrupt on the test handler */
4550 ew32(ICS, E1000_ICS_RXSEQ);
4551 e1e_flush();
Prasanna S Panchamukhi569a3af2012-04-19 17:01:00 +00004552 msleep(100);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004553
4554 e1000_irq_disable(adapter);
4555
Bruce Allanbc763292012-08-17 06:18:07 +00004556 rmb(); /* read flags after interrupt has been fired */
Bruce Allanf8d59f72008-08-08 18:36:11 -07004557
4558 if (adapter->flags & FLAG_MSI_TEST_FAILED) {
Bruce Allan4662e822008-08-26 18:37:06 -07004559 adapter->int_mode = E1000E_INT_MODE_LEGACY;
Jean Delvare068e8a32010-09-12 22:45:39 +00004560 e_info("MSI interrupt test failed, using legacy interrupt.\n");
Bruce Allan24b706b2012-01-31 06:37:22 +00004561 } else {
Jean Delvare068e8a32010-09-12 22:45:39 +00004562 e_dbg("MSI interrupt test succeeded!\n");
Bruce Allan24b706b2012-01-31 06:37:22 +00004563 }
Bruce Allanf8d59f72008-08-08 18:36:11 -07004564
4565 free_irq(adapter->pdev->irq, netdev);
4566 pci_disable_msi(adapter->pdev);
4567
Bruce Allanf8d59f72008-08-08 18:36:11 -07004568msi_test_failed:
Bruce Allan4662e822008-08-26 18:37:06 -07004569 e1000e_set_interrupt_capability(adapter);
Jean Delvare068e8a32010-09-12 22:45:39 +00004570 return e1000_request_irq(adapter);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004571}
4572
4573/**
4574 * e1000_test_msi - Returns 0 if MSI test succeeds or INTx mode is restored
4575 * @adapter: board private struct
4576 *
4577 * code flow taken from tg3.c, called with e1000 interrupts disabled.
4578 **/
4579static int e1000_test_msi(struct e1000_adapter *adapter)
4580{
4581 int err;
4582 u16 pci_cmd;
4583
4584 if (!(adapter->flags & FLAG_MSI_ENABLED))
4585 return 0;
4586
4587 /* disable SERR in case the MSI write causes a master abort */
4588 pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
Dean Nelson36f24072010-06-29 18:12:05 +00004589 if (pci_cmd & PCI_COMMAND_SERR)
4590 pci_write_config_word(adapter->pdev, PCI_COMMAND,
4591 pci_cmd & ~PCI_COMMAND_SERR);
Bruce Allanf8d59f72008-08-08 18:36:11 -07004592
4593 err = e1000_test_msi_interrupt(adapter);
4594
Dean Nelson36f24072010-06-29 18:12:05 +00004595 /* re-enable SERR */
4596 if (pci_cmd & PCI_COMMAND_SERR) {
4597 pci_read_config_word(adapter->pdev, PCI_COMMAND, &pci_cmd);
4598 pci_cmd |= PCI_COMMAND_SERR;
4599 pci_write_config_word(adapter->pdev, PCI_COMMAND, pci_cmd);
4600 }
Bruce Allanf8d59f72008-08-08 18:36:11 -07004601
Bruce Allanf8d59f72008-08-08 18:36:11 -07004602 return err;
4603}
4604
4605/**
Stefan Assmannd5ea45d2016-02-03 09:20:52 +01004606 * e1000e_open - Called when a network interface is made active
Auke Kokbc7f75f2007-09-17 12:30:59 -07004607 * @netdev: network interface device structure
4608 *
4609 * Returns 0 on success, negative value on failure
4610 *
4611 * The open entry point is called when a network interface is made
4612 * active by the system (IFF_UP). At this point all resources needed
4613 * for transmit and receive operations are allocated, the interrupt
4614 * handler is registered with the OS, the watchdog timer is started,
4615 * and the stack is notified that the interface is ready.
4616 **/
Stefan Assmannd5ea45d2016-02-03 09:20:52 +01004617int e1000e_open(struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004618{
4619 struct e1000_adapter *adapter = netdev_priv(netdev);
4620 struct e1000_hw *hw = &adapter->hw;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004621 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004622 int err;
4623
4624 /* disallow open during test */
4625 if (test_bit(__E1000_TESTING, &adapter->state))
4626 return -EBUSY;
4627
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004628 pm_runtime_get_sync(&pdev->dev);
4629
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00004630 netif_carrier_off(netdev);
Konstantin Khlebnikovd17ba0f2019-04-17 11:13:20 +03004631 netif_stop_queue(netdev);
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00004632
Auke Kokbc7f75f2007-09-17 12:30:59 -07004633 /* allocate transmit descriptors */
Bruce Allan55aa6982011-12-16 00:45:45 +00004634 err = e1000e_setup_tx_resources(adapter->tx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004635 if (err)
4636 goto err_setup_tx;
4637
4638 /* allocate receive descriptors */
Bruce Allan55aa6982011-12-16 00:45:45 +00004639 err = e1000e_setup_rx_resources(adapter->rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004640 if (err)
4641 goto err_setup_rx;
4642
Bruce Allane921eb12012-11-28 09:28:37 +00004643 /* If AMT is enabled, let the firmware know that the network
Bruce Allan11b08be2010-05-10 14:59:31 +00004644 * interface is now open and reset the part to a known state.
4645 */
4646 if (adapter->flags & FLAG_HAS_AMT) {
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004647 e1000e_get_hw_control(adapter);
Bruce Allan11b08be2010-05-10 14:59:31 +00004648 e1000e_reset(adapter);
4649 }
4650
Auke Kokbc7f75f2007-09-17 12:30:59 -07004651 e1000e_power_up_phy(adapter);
4652
4653 adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
Bruce Allane5fe2542013-02-20 04:06:27 +00004654 if ((adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN))
Auke Kokbc7f75f2007-09-17 12:30:59 -07004655 e1000_update_mng_vlan(adapter);
4656
Bruce Allan79d4e902011-12-16 00:46:27 +00004657 /* DMA latency requirement to workaround jumbo issue */
Rafael J. Wysocki81e95ad2020-02-12 00:24:36 +01004658 cpu_latency_qos_add_request(&adapter->pm_qos_req, PM_QOS_DEFAULT_VALUE);
Florian Micklerc128ec22010-08-02 14:27:00 +00004659
Bruce Allane921eb12012-11-28 09:28:37 +00004660 /* before we allocate an interrupt, we must be ready to handle it.
Auke Kokbc7f75f2007-09-17 12:30:59 -07004661 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
4662 * as soon as we call pci_request_irq, so we have to setup our
Bruce Allanad680762008-03-28 09:15:03 -07004663 * clean_rx handler before we do so.
4664 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004665 e1000_configure(adapter);
4666
4667 err = e1000_request_irq(adapter);
4668 if (err)
4669 goto err_req_irq;
4670
Bruce Allane921eb12012-11-28 09:28:37 +00004671 /* Work around PCIe errata with MSI interrupts causing some chipsets to
Bruce Allanf8d59f72008-08-08 18:36:11 -07004672 * ignore e1000e MSI messages, which means we need to test our MSI
4673 * interrupt now
4674 */
Bruce Allan4662e822008-08-26 18:37:06 -07004675 if (adapter->int_mode != E1000E_INT_MODE_LEGACY) {
Bruce Allanf8d59f72008-08-08 18:36:11 -07004676 err = e1000_test_msi(adapter);
4677 if (err) {
4678 e_err("Interrupt allocation failed\n");
4679 goto err_req_irq;
4680 }
4681 }
4682
Auke Kokbc7f75f2007-09-17 12:30:59 -07004683 /* From here on the code is the same as e1000e_up() */
4684 clear_bit(__E1000_DOWN, &adapter->state);
4685
4686 napi_enable(&adapter->napi);
4687
4688 e1000_irq_enable(adapter);
4689
Jeff Kirsher09357b02011-11-18 14:25:00 +00004690 adapter->tx_hang_recheck = false;
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07004691
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00004692 hw->mac.get_link_status = true;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004693 pm_runtime_put(&pdev->dev);
4694
Benjamin Poiriera61cfe42015-11-09 15:50:20 -08004695 e1000e_trigger_lsc(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004696
4697 return 0;
4698
4699err_req_irq:
Rafael J. Wysocki81e95ad2020-02-12 00:24:36 +01004700 cpu_latency_qos_remove_request(&adapter->pm_qos_req);
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004701 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004702 e1000_power_down_phy(adapter);
Bruce Allan55aa6982011-12-16 00:45:45 +00004703 e1000e_free_rx_resources(adapter->rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004704err_setup_rx:
Bruce Allan55aa6982011-12-16 00:45:45 +00004705 e1000e_free_tx_resources(adapter->tx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004706err_setup_tx:
4707 e1000e_reset(adapter);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004708 pm_runtime_put_sync(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004709
4710 return err;
4711}
4712
4713/**
Stefan Assmannd5ea45d2016-02-03 09:20:52 +01004714 * e1000e_close - Disables a network interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07004715 * @netdev: network interface device structure
4716 *
4717 * Returns 0, this is not allowed to fail
4718 *
4719 * The close entry point is called when an interface is de-activated
4720 * by the OS. The hardware is still under the drivers control, but
4721 * needs to be disabled. A global MAC reset is issued to stop the
4722 * hardware, and all transmit and receive resources are freed.
4723 **/
Stefan Assmannd5ea45d2016-02-03 09:20:52 +01004724int e1000e_close(struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004725{
4726 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004727 struct pci_dev *pdev = adapter->pdev;
Bruce Allanbb9e44d2012-03-21 00:39:12 +00004728 int count = E1000_CHECK_RESET_COUNT;
4729
4730 while (test_bit(__E1000_RESETTING, &adapter->state) && count--)
Arjan van de Venab6973a2019-06-14 17:29:35 -07004731 usleep_range(10000, 11000);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004732
4733 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004734
4735 pm_runtime_get_sync(&pdev->dev);
4736
Alexander Duycka7023812019-10-11 08:34:52 -07004737 if (netif_device_present(netdev)) {
David Ertman28002092014-02-14 07:16:41 +00004738 e1000e_down(adapter, true);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004739 e1000_free_irq(adapter);
David Ertman63eb48f2014-02-14 07:16:46 +00004740
4741 /* Link status message must follow this format */
Alexander Duyckc557a4b2019-10-31 09:58:51 -07004742 netdev_info(netdev, "NIC Link is Down\n");
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004743 }
Bruce Allana3b87a42013-04-20 05:37:29 +00004744
4745 napi_disable(&adapter->napi);
4746
Bruce Allan55aa6982011-12-16 00:45:45 +00004747 e1000e_free_tx_resources(adapter->tx_ring);
4748 e1000e_free_rx_resources(adapter->rx_ring);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004749
Bruce Allane921eb12012-11-28 09:28:37 +00004750 /* kill manageability vlan ID if supported, but not if a vlan with
Bruce Allanad680762008-03-28 09:15:03 -07004751 * the same ID is registered on the host OS (let 8021q kill it)
4752 */
Bruce Allane5fe2542013-02-20 04:06:27 +00004753 if (adapter->hw.mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN)
Patrick McHardy80d5c362013-04-19 02:04:28 +00004754 e1000_vlan_rx_kill_vid(netdev, htons(ETH_P_8021Q),
4755 adapter->mng_vlan_id);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004756
Bruce Allane921eb12012-11-28 09:28:37 +00004757 /* If AMT is enabled, let the firmware know that the network
Bruce Allanad680762008-03-28 09:15:03 -07004758 * interface is now closed
4759 */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00004760 if ((adapter->flags & FLAG_HAS_AMT) &&
4761 !test_bit(__E1000_TESTING, &adapter->state))
4762 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004763
Rafael J. Wysocki81e95ad2020-02-12 00:24:36 +01004764 cpu_latency_qos_remove_request(&adapter->pm_qos_req);
Florian Micklerc128ec22010-08-02 14:27:00 +00004765
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00004766 pm_runtime_put_sync(&pdev->dev);
4767
Auke Kokbc7f75f2007-09-17 12:30:59 -07004768 return 0;
4769}
Bruce Allanfc830b72013-02-20 04:06:11 +00004770
Auke Kokbc7f75f2007-09-17 12:30:59 -07004771/**
4772 * e1000_set_mac - Change the Ethernet Address of the NIC
4773 * @netdev: network interface device structure
4774 * @p: pointer to an address structure
4775 *
4776 * Returns 0 on success, negative on failure
4777 **/
4778static int e1000_set_mac(struct net_device *netdev, void *p)
4779{
4780 struct e1000_adapter *adapter = netdev_priv(netdev);
Bruce Allan69e1e012012-04-14 03:28:50 +00004781 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004782 struct sockaddr *addr = p;
4783
4784 if (!is_valid_ether_addr(addr->sa_data))
4785 return -EADDRNOTAVAIL;
4786
4787 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
4788 memcpy(adapter->hw.mac.addr, addr->sa_data, netdev->addr_len);
4789
Bruce Allan69e1e012012-04-14 03:28:50 +00004790 hw->mac.ops.rar_set(&adapter->hw, adapter->hw.mac.addr, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004791
4792 if (adapter->flags & FLAG_RESET_OVERWRITES_LAA) {
4793 /* activate the work around */
4794 e1000e_set_laa_state_82571(&adapter->hw, 1);
4795
Bruce Allane921eb12012-11-28 09:28:37 +00004796 /* Hold a copy of the LAA in RAR[14] This is done so that
Auke Kokbc7f75f2007-09-17 12:30:59 -07004797 * between the time RAR[0] gets clobbered and the time it
4798 * gets fixed (in e1000_watchdog), the actual LAA is in one
4799 * of the RARs and no incoming packets directed to this port
4800 * are dropped. Eventually the LAA will be in RAR[0] and
Bruce Allanad680762008-03-28 09:15:03 -07004801 * RAR[14]
4802 */
Bruce Allan69e1e012012-04-14 03:28:50 +00004803 hw->mac.ops.rar_set(&adapter->hw, adapter->hw.mac.addr,
4804 adapter->hw.mac.rar_entry_count - 1);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004805 }
4806
4807 return 0;
4808}
4809
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07004810/**
4811 * e1000e_update_phy_task - work thread to update phy
4812 * @work: pointer to our work struct
4813 *
4814 * this worker thread exists because we must acquire a
4815 * semaphore to read the phy, which we could msleep while
4816 * waiting for it, and we can't msleep in a timer.
4817 **/
4818static void e1000e_update_phy_task(struct work_struct *work)
4819{
4820 struct e1000_adapter *adapter = container_of(work,
Bruce Allan17e813e2013-02-20 04:06:01 +00004821 struct e1000_adapter,
4822 update_phy_task);
David Ertmana03206e2014-01-24 23:07:48 +00004823 struct e1000_hw *hw = &adapter->hw;
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00004824
4825 if (test_bit(__E1000_DOWN, &adapter->state))
4826 return;
4827
David Ertmana03206e2014-01-24 23:07:48 +00004828 e1000_get_phy_info(hw);
4829
4830 /* Enable EEE on 82579 after link up */
David Ertman50844bb2014-05-13 00:06:26 +00004831 if (hw->phy.type >= e1000_phy_82579)
David Ertmana03206e2014-01-24 23:07:48 +00004832 e1000_set_eee_pchlan(hw);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07004833}
4834
Bruce Allane921eb12012-11-28 09:28:37 +00004835/**
4836 * e1000_update_phy_info - timre call-back to update PHY info
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07004837 * @t: pointer to timer_list containing private info adapter
Bruce Allane921eb12012-11-28 09:28:37 +00004838 *
Bruce Allanad680762008-03-28 09:15:03 -07004839 * Need to wait a few seconds after link up to get diagnostic information from
4840 * the phy
Bruce Allane921eb12012-11-28 09:28:37 +00004841 **/
Kees Cook26566ea2017-10-16 17:29:35 -07004842static void e1000_update_phy_info(struct timer_list *t)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004843{
Kees Cook26566ea2017-10-16 17:29:35 -07004844 struct e1000_adapter *adapter = from_timer(adapter, t, phy_info_timer);
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00004845
4846 if (test_bit(__E1000_DOWN, &adapter->state))
4847 return;
4848
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07004849 schedule_work(&adapter->update_phy_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004850}
4851
4852/**
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004853 * e1000e_update_phy_stats - Update the PHY statistics counters
4854 * @adapter: board private structure
Bruce Allan2b6b1682011-05-13 07:20:09 +00004855 *
4856 * Read/clear the upper 16-bit PHY registers and read/accumulate lower
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004857 **/
4858static void e1000e_update_phy_stats(struct e1000_adapter *adapter)
4859{
4860 struct e1000_hw *hw = &adapter->hw;
4861 s32 ret_val;
4862 u16 phy_data;
4863
4864 ret_val = hw->phy.ops.acquire(hw);
4865 if (ret_val)
4866 return;
4867
Bruce Allane921eb12012-11-28 09:28:37 +00004868 /* A page set is expensive so check if already on desired page.
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004869 * If not, set to the page with the PHY status registers.
4870 */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004871 hw->phy.addr = 1;
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004872 ret_val = e1000e_read_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT,
4873 &phy_data);
4874 if (ret_val)
4875 goto release;
Bruce Allan2b6b1682011-05-13 07:20:09 +00004876 if (phy_data != (HV_STATS_PAGE << IGP_PAGE_SHIFT)) {
4877 ret_val = hw->phy.ops.set_page(hw,
4878 HV_STATS_PAGE << IGP_PAGE_SHIFT);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004879 if (ret_val)
4880 goto release;
4881 }
4882
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004883 /* Single Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004884 hw->phy.ops.read_reg_page(hw, HV_SCC_UPPER, &phy_data);
4885 ret_val = hw->phy.ops.read_reg_page(hw, HV_SCC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004886 if (!ret_val)
4887 adapter->stats.scc += phy_data;
4888
4889 /* Excessive Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004890 hw->phy.ops.read_reg_page(hw, HV_ECOL_UPPER, &phy_data);
4891 ret_val = hw->phy.ops.read_reg_page(hw, HV_ECOL_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004892 if (!ret_val)
4893 adapter->stats.ecol += phy_data;
4894
4895 /* Multiple Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004896 hw->phy.ops.read_reg_page(hw, HV_MCC_UPPER, &phy_data);
4897 ret_val = hw->phy.ops.read_reg_page(hw, HV_MCC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004898 if (!ret_val)
4899 adapter->stats.mcc += phy_data;
4900
4901 /* Late Collision Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004902 hw->phy.ops.read_reg_page(hw, HV_LATECOL_UPPER, &phy_data);
4903 ret_val = hw->phy.ops.read_reg_page(hw, HV_LATECOL_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004904 if (!ret_val)
4905 adapter->stats.latecol += phy_data;
4906
4907 /* Collision Count - also used for adaptive IFS */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004908 hw->phy.ops.read_reg_page(hw, HV_COLC_UPPER, &phy_data);
4909 ret_val = hw->phy.ops.read_reg_page(hw, HV_COLC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004910 if (!ret_val)
4911 hw->mac.collision_delta = phy_data;
4912
4913 /* Defer Count */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004914 hw->phy.ops.read_reg_page(hw, HV_DC_UPPER, &phy_data);
4915 ret_val = hw->phy.ops.read_reg_page(hw, HV_DC_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004916 if (!ret_val)
4917 adapter->stats.dc += phy_data;
4918
4919 /* Transmit with no CRS */
Bruce Allan2b6b1682011-05-13 07:20:09 +00004920 hw->phy.ops.read_reg_page(hw, HV_TNCRS_UPPER, &phy_data);
4921 ret_val = hw->phy.ops.read_reg_page(hw, HV_TNCRS_LOWER, &phy_data);
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004922 if (!ret_val)
4923 adapter->stats.tncrs += phy_data;
4924
4925release:
4926 hw->phy.ops.release(hw);
4927}
4928
4929/**
Auke Kokbc7f75f2007-09-17 12:30:59 -07004930 * e1000e_update_stats - Update the board statistics counters
4931 * @adapter: board private structure
4932 **/
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00004933static void e1000e_update_stats(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -07004934{
Ajit Khaparde7274c202009-10-07 02:44:26 +00004935 struct net_device *netdev = adapter->netdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004936 struct e1000_hw *hw = &adapter->hw;
4937 struct pci_dev *pdev = adapter->pdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004938
Bruce Allane921eb12012-11-28 09:28:37 +00004939 /* Prevent stats update while adapter is being reset, or if the pci
Auke Kokbc7f75f2007-09-17 12:30:59 -07004940 * connection is down.
4941 */
4942 if (adapter->link_speed == 0)
4943 return;
4944 if (pci_channel_offline(pdev))
4945 return;
4946
Auke Kokbc7f75f2007-09-17 12:30:59 -07004947 adapter->stats.crcerrs += er32(CRCERRS);
4948 adapter->stats.gprc += er32(GPRC);
Bruce Allan7c257692008-04-23 11:09:00 -07004949 adapter->stats.gorc += er32(GORCL);
Bruce Allane80bd1d2013-05-01 01:19:46 +00004950 er32(GORCH); /* Clear gorc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004951 adapter->stats.bprc += er32(BPRC);
4952 adapter->stats.mprc += er32(MPRC);
4953 adapter->stats.roc += er32(ROC);
4954
Auke Kokbc7f75f2007-09-17 12:30:59 -07004955 adapter->stats.mpc += er32(MPC);
Bruce Allana4f58f52009-06-02 11:29:18 +00004956
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004957 /* Half-duplex statistics */
4958 if (adapter->link_duplex == HALF_DUPLEX) {
4959 if (adapter->flags2 & FLAG2_HAS_PHY_STATS) {
4960 e1000e_update_phy_stats(adapter);
4961 } else {
4962 adapter->stats.scc += er32(SCC);
4963 adapter->stats.ecol += er32(ECOL);
4964 adapter->stats.mcc += er32(MCC);
4965 adapter->stats.latecol += er32(LATECOL);
4966 adapter->stats.dc += er32(DC);
Bruce Allana4f58f52009-06-02 11:29:18 +00004967
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004968 hw->mac.collision_delta = er32(COLC);
Bruce Allana4f58f52009-06-02 11:29:18 +00004969
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004970 if ((hw->mac.type != e1000_82574) &&
4971 (hw->mac.type != e1000_82583))
4972 adapter->stats.tncrs += er32(TNCRS);
4973 }
4974 adapter->stats.colc += hw->mac.collision_delta;
Bruce Allana4f58f52009-06-02 11:29:18 +00004975 }
Bruce Allan8c7bbb92010-06-16 13:26:41 +00004976
Auke Kokbc7f75f2007-09-17 12:30:59 -07004977 adapter->stats.xonrxc += er32(XONRXC);
4978 adapter->stats.xontxc += er32(XONTXC);
4979 adapter->stats.xoffrxc += er32(XOFFRXC);
4980 adapter->stats.xofftxc += er32(XOFFTXC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004981 adapter->stats.gptc += er32(GPTC);
Bruce Allan7c257692008-04-23 11:09:00 -07004982 adapter->stats.gotc += er32(GOTCL);
Bruce Allane80bd1d2013-05-01 01:19:46 +00004983 er32(GOTCH); /* Clear gotc */
Auke Kokbc7f75f2007-09-17 12:30:59 -07004984 adapter->stats.rnbc += er32(RNBC);
4985 adapter->stats.ruc += er32(RUC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004986
4987 adapter->stats.mptc += er32(MPTC);
4988 adapter->stats.bptc += er32(BPTC);
4989
4990 /* used for adaptive IFS */
4991
4992 hw->mac.tx_packet_delta = er32(TPT);
4993 adapter->stats.tpt += hw->mac.tx_packet_delta;
Auke Kokbc7f75f2007-09-17 12:30:59 -07004994
4995 adapter->stats.algnerrc += er32(ALGNERRC);
4996 adapter->stats.rxerrc += er32(RXERRC);
Auke Kokbc7f75f2007-09-17 12:30:59 -07004997 adapter->stats.cexterr += er32(CEXTERR);
4998 adapter->stats.tsctc += er32(TSCTC);
4999 adapter->stats.tsctfc += er32(TSCTFC);
5000
Auke Kokbc7f75f2007-09-17 12:30:59 -07005001 /* Fill out the OS statistics structure */
Ajit Khaparde7274c202009-10-07 02:44:26 +00005002 netdev->stats.multicast = adapter->stats.mprc;
5003 netdev->stats.collisions = adapter->stats.colc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005004
5005 /* Rx Errors */
5006
Bruce Allane921eb12012-11-28 09:28:37 +00005007 /* RLEC on some newer hardware can be incorrect so build
Bruce Allanad680762008-03-28 09:15:03 -07005008 * our own version based on RUC and ROC
5009 */
Ajit Khaparde7274c202009-10-07 02:44:26 +00005010 netdev->stats.rx_errors = adapter->stats.rxerrc +
Bruce Allanf0ff4392013-02-20 04:05:39 +00005011 adapter->stats.crcerrs + adapter->stats.algnerrc +
5012 adapter->stats.ruc + adapter->stats.roc + adapter->stats.cexterr;
Ajit Khaparde7274c202009-10-07 02:44:26 +00005013 netdev->stats.rx_length_errors = adapter->stats.ruc +
Bruce Allanf0ff4392013-02-20 04:05:39 +00005014 adapter->stats.roc;
Ajit Khaparde7274c202009-10-07 02:44:26 +00005015 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
5016 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
5017 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005018
5019 /* Tx Errors */
Bruce Allanf0ff4392013-02-20 04:05:39 +00005020 netdev->stats.tx_errors = adapter->stats.ecol + adapter->stats.latecol;
Ajit Khaparde7274c202009-10-07 02:44:26 +00005021 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
5022 netdev->stats.tx_window_errors = adapter->stats.latecol;
5023 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005024
5025 /* Tx Dropped needs to be maintained elsewhere */
5026
Auke Kokbc7f75f2007-09-17 12:30:59 -07005027 /* Management Stats */
5028 adapter->stats.mgptc += er32(MGTPTC);
5029 adapter->stats.mgprc += er32(MGTPRC);
5030 adapter->stats.mgpdc += er32(MGTPDC);
Bruce Allan94fb8482013-01-23 09:00:03 +00005031
5032 /* Correctable ECC Errors */
Sasha Neftinc8744f42017-04-06 10:26:47 +03005033 if (hw->mac.type >= e1000_pch_lpt) {
Bruce Allan94fb8482013-01-23 09:00:03 +00005034 u32 pbeccsts = er32(PBECCSTS);
David Ertman6cf08d12014-04-05 06:07:00 +00005035
Bruce Allan94fb8482013-01-23 09:00:03 +00005036 adapter->corr_errors +=
5037 pbeccsts & E1000_PBECCSTS_CORR_ERR_CNT_MASK;
5038 adapter->uncorr_errors +=
5039 (pbeccsts & E1000_PBECCSTS_UNCORR_ERR_CNT_MASK) >>
5040 E1000_PBECCSTS_UNCORR_ERR_CNT_SHIFT;
5041 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005042}
5043
Bruce Allan7c257692008-04-23 11:09:00 -07005044/**
5045 * e1000_phy_read_status - Update the PHY register status snapshot
5046 * @adapter: board private structure
5047 **/
5048static void e1000_phy_read_status(struct e1000_adapter *adapter)
5049{
5050 struct e1000_hw *hw = &adapter->hw;
5051 struct e1000_phy_regs *phy = &adapter->phy_regs;
Bruce Allan7c257692008-04-23 11:09:00 -07005052
Bruce Allan97390ab2013-06-29 07:42:25 +00005053 if (!pm_runtime_suspended((&adapter->pdev->dev)->parent) &&
5054 (er32(STATUS) & E1000_STATUS_LU) &&
Bruce Allan7c257692008-04-23 11:09:00 -07005055 (adapter->hw.phy.media_type == e1000_media_type_copper)) {
Bruce Allan90da0662011-01-06 07:02:53 +00005056 int ret_val;
5057
Bruce Allanc2ade1a2013-01-16 08:54:35 +00005058 ret_val = e1e_rphy(hw, MII_BMCR, &phy->bmcr);
5059 ret_val |= e1e_rphy(hw, MII_BMSR, &phy->bmsr);
5060 ret_val |= e1e_rphy(hw, MII_ADVERTISE, &phy->advertise);
5061 ret_val |= e1e_rphy(hw, MII_LPA, &phy->lpa);
5062 ret_val |= e1e_rphy(hw, MII_EXPANSION, &phy->expansion);
5063 ret_val |= e1e_rphy(hw, MII_CTRL1000, &phy->ctrl1000);
5064 ret_val |= e1e_rphy(hw, MII_STAT1000, &phy->stat1000);
5065 ret_val |= e1e_rphy(hw, MII_ESTATUS, &phy->estatus);
Bruce Allan7c257692008-04-23 11:09:00 -07005066 if (ret_val)
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005067 e_warn("Error reading PHY register\n");
Bruce Allan7c257692008-04-23 11:09:00 -07005068 } else {
Bruce Allane921eb12012-11-28 09:28:37 +00005069 /* Do not read PHY registers if link is not up
Bruce Allan7c257692008-04-23 11:09:00 -07005070 * Set values to typical power-on defaults
5071 */
5072 phy->bmcr = (BMCR_SPEED1000 | BMCR_ANENABLE | BMCR_FULLDPLX);
5073 phy->bmsr = (BMSR_100FULL | BMSR_100HALF | BMSR_10FULL |
5074 BMSR_10HALF | BMSR_ESTATEN | BMSR_ANEGCAPABLE |
5075 BMSR_ERCAP);
5076 phy->advertise = (ADVERTISE_PAUSE_ASYM | ADVERTISE_PAUSE_CAP |
5077 ADVERTISE_ALL | ADVERTISE_CSMA);
5078 phy->lpa = 0;
5079 phy->expansion = EXPANSION_ENABLENPAGE;
5080 phy->ctrl1000 = ADVERTISE_1000FULL;
5081 phy->stat1000 = 0;
5082 phy->estatus = (ESTATUS_1000_TFULL | ESTATUS_1000_THALF);
5083 }
Bruce Allan7c257692008-04-23 11:09:00 -07005084}
5085
Auke Kokbc7f75f2007-09-17 12:30:59 -07005086static void e1000_print_link_info(struct e1000_adapter *adapter)
5087{
Auke Kokbc7f75f2007-09-17 12:30:59 -07005088 struct e1000_hw *hw = &adapter->hw;
5089 u32 ctrl = er32(CTRL);
5090
Bruce Allan8f12fe82008-11-21 16:54:43 -08005091 /* Link status message must follow this format for user tools */
Alexander Duyckc557a4b2019-10-31 09:58:51 -07005092 netdev_info(adapter->netdev,
5093 "NIC Link is Up %d Mbps %s Duplex, Flow Control: %s\n",
5094 adapter->link_speed,
5095 adapter->link_duplex == FULL_DUPLEX ? "Full" : "Half",
5096 (ctrl & E1000_CTRL_TFCE) && (ctrl & E1000_CTRL_RFCE) ? "Rx/Tx" :
5097 (ctrl & E1000_CTRL_RFCE) ? "Rx" :
5098 (ctrl & E1000_CTRL_TFCE) ? "Tx" : "None");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005099}
5100
Bruce Allan0c6bdb32010-06-17 18:58:43 +00005101static bool e1000e_has_link(struct e1000_adapter *adapter)
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005102{
5103 struct e1000_hw *hw = &adapter->hw;
Rusty Russell3db1cd52011-12-19 13:56:45 +00005104 bool link_active = false;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005105 s32 ret_val = 0;
5106
Bruce Allane921eb12012-11-28 09:28:37 +00005107 /* get_link_status is set on LSC (link status) interrupt or
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005108 * Rx sequence error interrupt. get_link_status will stay
Benjamin Poirier65a29da2017-07-21 11:36:24 -07005109 * true until the check_for_link establishes link
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005110 * for copper adapters ONLY
5111 */
5112 switch (hw->phy.media_type) {
5113 case e1000_media_type_copper:
5114 if (hw->mac.get_link_status) {
5115 ret_val = hw->mac.ops.check_for_link(hw);
Benjamin Poirier3016e0a2018-03-06 10:55:52 +09005116 link_active = !hw->mac.get_link_status;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005117 } else {
Rusty Russell3db1cd52011-12-19 13:56:45 +00005118 link_active = true;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005119 }
5120 break;
5121 case e1000_media_type_fiber:
5122 ret_val = hw->mac.ops.check_for_link(hw);
5123 link_active = !!(er32(STATUS) & E1000_STATUS_LU);
5124 break;
5125 case e1000_media_type_internal_serdes:
5126 ret_val = hw->mac.ops.check_for_link(hw);
Benjamin Poirier65a29da2017-07-21 11:36:24 -07005127 link_active = hw->mac.serdes_has_link;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005128 break;
5129 default:
5130 case e1000_media_type_unknown:
5131 break;
5132 }
5133
Benjamin Poirierd3509f82017-07-21 11:36:25 -07005134 if ((ret_val == -E1000_ERR_PHY) && (hw->phy.type == e1000_phy_igp_3) &&
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005135 (er32(CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
5136 /* See e1000_kmrn_lock_loss_workaround_ich8lan() */
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005137 e_info("Gigabit has been disabled, downgrading speed\n");
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005138 }
5139
5140 return link_active;
5141}
5142
5143static void e1000e_enable_receives(struct e1000_adapter *adapter)
5144{
5145 /* make sure the receive unit is started */
5146 if ((adapter->flags & FLAG_RX_NEEDS_RESTART) &&
Bruce Allan12d43f72012-12-05 06:26:14 +00005147 (adapter->flags & FLAG_RESTART_NOW)) {
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005148 struct e1000_hw *hw = &adapter->hw;
5149 u32 rctl = er32(RCTL);
David Ertman6cf08d12014-04-05 06:07:00 +00005150
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005151 ew32(RCTL, rctl | E1000_RCTL_EN);
Bruce Allan12d43f72012-12-05 06:26:14 +00005152 adapter->flags &= ~FLAG_RESTART_NOW;
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005153 }
5154}
5155
Carolyn Wybornyff10e132010-10-28 00:59:53 +00005156static void e1000e_check_82574_phy_workaround(struct e1000_adapter *adapter)
5157{
5158 struct e1000_hw *hw = &adapter->hw;
5159
Bruce Allane921eb12012-11-28 09:28:37 +00005160 /* With 82574 controllers, PHY needs to be checked periodically
Carolyn Wybornyff10e132010-10-28 00:59:53 +00005161 * for hung state and reset, if two calls return true
5162 */
5163 if (e1000_check_phy_82574(hw))
5164 adapter->phy_hang_count++;
5165 else
5166 adapter->phy_hang_count = 0;
5167
5168 if (adapter->phy_hang_count > 1) {
5169 adapter->phy_hang_count = 0;
David Ertmand9554e92014-01-08 01:07:55 +00005170 e_dbg("PHY appears hung - resetting\n");
Carolyn Wybornyff10e132010-10-28 00:59:53 +00005171 schedule_work(&adapter->reset_task);
5172 }
5173}
5174
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08005175/**
5176 * e1000_watchdog - Timer Call-back
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07005177 * @t: pointer to timer_list containing private info adapter
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08005178 **/
5179static void e1000_watchdog(struct timer_list *t)
5180{
5181 struct e1000_adapter *adapter = from_timer(adapter, t, watchdog_timer);
5182
5183 /* Do the rest outside of interrupt context */
5184 schedule_work(&adapter->watchdog_task);
5185
5186 /* TODO: make this use queue_delayed_work() */
5187}
5188
Auke Kokbc7f75f2007-09-17 12:30:59 -07005189static void e1000_watchdog_task(struct work_struct *work)
5190{
5191 struct e1000_adapter *adapter = container_of(work,
Bruce Allan17e813e2013-02-20 04:06:01 +00005192 struct e1000_adapter,
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08005193 watchdog_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005194 struct net_device *netdev = adapter->netdev;
5195 struct e1000_mac_info *mac = &adapter->hw.mac;
Bruce Allan75eb0fa2008-11-21 16:53:51 -08005196 struct e1000_phy_info *phy = &adapter->hw.phy;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005197 struct e1000_ring *tx_ring = adapter->tx_ring;
Vitaly Lifshitsdef4ec62019-06-25 17:39:11 +03005198 u32 dmoff_exit_timeout = 100, tries = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005199 struct e1000_hw *hw = &adapter->hw;
Vitaly Lifshitsdef4ec62019-06-25 17:39:11 +03005200 u32 link, tctl, pcim_state;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005201
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00005202 if (test_bit(__E1000_DOWN, &adapter->state))
5203 return;
5204
David S. Millerb405e8d2010-02-04 22:31:41 -08005205 link = e1000e_has_link(adapter);
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005206 if ((netif_carrier_ok(netdev)) && link) {
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005207 /* Cancel scheduled suspend requests. */
5208 pm_runtime_resume(netdev->dev.parent);
5209
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005210 e1000e_enable_receives(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005211 goto link_up;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005212 }
5213
5214 if ((e1000e_enable_tx_pkt_filtering(hw)) &&
5215 (adapter->mng_vlan_id != adapter->hw.mng_cookie.vlan_id))
5216 e1000_update_mng_vlan(adapter);
5217
Auke Kokbc7f75f2007-09-17 12:30:59 -07005218 if (link) {
5219 if (!netif_carrier_ok(netdev)) {
Rusty Russell3db1cd52011-12-19 13:56:45 +00005220 bool txb2b = true;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005221
5222 /* Cancel scheduled suspend requests. */
5223 pm_runtime_resume(netdev->dev.parent);
5224
Vitaly Lifshitsdef4ec62019-06-25 17:39:11 +03005225 /* Checking if MAC is in DMoff state*/
Sasha Neftin2e7256f2021-06-24 12:02:48 -07005226 if (er32(FWSM) & E1000_ICH_FWSM_FW_VALID) {
Vitaly Lifshitsdef4ec62019-06-25 17:39:11 +03005227 pcim_state = er32(STATUS);
Sasha Neftin2e7256f2021-06-24 12:02:48 -07005228 while (pcim_state & E1000_STATUS_PCIM_STATE) {
5229 if (tries++ == dmoff_exit_timeout) {
5230 e_dbg("Error in exiting dmoff\n");
5231 break;
5232 }
5233 usleep_range(10000, 20000);
5234 pcim_state = er32(STATUS);
Vitaly Lifshitsdef4ec62019-06-25 17:39:11 +03005235
Sasha Neftin2e7256f2021-06-24 12:02:48 -07005236 /* Checking if MAC exited DMoff state */
5237 if (!(pcim_state & E1000_STATUS_PCIM_STATE))
5238 e1000_phy_hw_reset(&adapter->hw);
5239 }
Vitaly Lifshitsdef4ec62019-06-25 17:39:11 +03005240 }
5241
Jeff Kirsher318a94d2008-03-28 09:15:16 -07005242 /* update snapshot of PHY registers on LSC */
Bruce Allan7c257692008-04-23 11:09:00 -07005243 e1000_phy_read_status(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005244 mac->ops.get_link_up_info(&adapter->hw,
Bruce Allan17e813e2013-02-20 04:06:01 +00005245 &adapter->link_speed,
5246 &adapter->link_duplex);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005247 e1000_print_link_info(adapter);
Koki Sanagie792cd92013-02-03 14:03:55 +00005248
5249 /* check if SmartSpeed worked */
5250 e1000e_check_downshift(hw);
5251 if (phy->speed_downgraded)
5252 netdev_warn(netdev,
5253 "Link Speed was downgraded by SmartSpeed\n");
5254
Bruce Allane921eb12012-11-28 09:28:37 +00005255 /* On supported PHYs, check for duplex mismatch only
Bruce Allanf4187b52008-08-26 18:36:50 -07005256 * if link has autonegotiated at 10/100 half
5257 */
5258 if ((hw->phy.type == e1000_phy_igp_3 ||
5259 hw->phy.type == e1000_phy_bm) &&
David Ertman138953b2013-08-30 05:45:25 +00005260 hw->mac.autoneg &&
Bruce Allanf4187b52008-08-26 18:36:50 -07005261 (adapter->link_speed == SPEED_10 ||
5262 adapter->link_speed == SPEED_100) &&
5263 (adapter->link_duplex == HALF_DUPLEX)) {
5264 u16 autoneg_exp;
5265
Bruce Allanc2ade1a2013-01-16 08:54:35 +00005266 e1e_rphy(hw, MII_EXPANSION, &autoneg_exp);
Bruce Allanf4187b52008-08-26 18:36:50 -07005267
Bruce Allanc2ade1a2013-01-16 08:54:35 +00005268 if (!(autoneg_exp & EXPANSION_NWAY))
Jeff Kirsheref456f82011-11-03 11:40:28 +00005269 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 -07005270 }
5271
Emil Tantilovf49c57e2010-03-24 12:55:02 +00005272 /* adjust timeout factor according to speed/duplex */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005273 adapter->tx_timeout_factor = 1;
5274 switch (adapter->link_speed) {
5275 case SPEED_10:
Rusty Russell3db1cd52011-12-19 13:56:45 +00005276 txb2b = false;
Bruce Allan10f1b492008-08-08 18:36:01 -07005277 adapter->tx_timeout_factor = 16;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005278 break;
5279 case SPEED_100:
Rusty Russell3db1cd52011-12-19 13:56:45 +00005280 txb2b = false;
Bruce Allan4c86e0b2009-11-19 12:35:26 +00005281 adapter->tx_timeout_factor = 10;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005282 break;
5283 }
5284
Bruce Allane921eb12012-11-28 09:28:37 +00005285 /* workaround: re-program speed mode bit after
Bruce Allanad680762008-03-28 09:15:03 -07005286 * link-up event
5287 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005288 if ((adapter->flags & FLAG_TARC_SPEED_MODE_BIT) &&
5289 !txb2b) {
5290 u32 tarc0;
David Ertman6cf08d12014-04-05 06:07:00 +00005291
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07005292 tarc0 = er32(TARC(0));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005293 tarc0 &= ~SPEED_MODE_BIT;
Jeff Kirshere9ec2c02008-04-02 13:48:13 -07005294 ew32(TARC(0), tarc0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005295 }
5296
Bruce Allane921eb12012-11-28 09:28:37 +00005297 /* disable TSO for pcie and 10/100 speeds, to avoid
Bruce Allanad680762008-03-28 09:15:03 -07005298 * some hardware issues
5299 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005300 if (!(adapter->flags & FLAG_TSO_FORCE)) {
5301 switch (adapter->link_speed) {
5302 case SPEED_10:
5303 case SPEED_100:
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005304 e_info("10/100 speed: disabling TSO\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005305 netdev->features &= ~NETIF_F_TSO;
5306 netdev->features &= ~NETIF_F_TSO6;
5307 break;
5308 case SPEED_1000:
5309 netdev->features |= NETIF_F_TSO;
5310 netdev->features |= NETIF_F_TSO6;
5311 break;
5312 default:
5313 /* oops */
5314 break;
5315 }
Kai-Heng Fengf2980102020-05-07 22:21:07 +08005316 if (hw->mac.type == e1000_pch_spt) {
5317 netdev->features &= ~NETIF_F_TSO;
5318 netdev->features &= ~NETIF_F_TSO6;
5319 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005320 }
5321
Bruce Allane921eb12012-11-28 09:28:37 +00005322 /* enable transmits in the hardware, need to do this
Bruce Allanad680762008-03-28 09:15:03 -07005323 * after setting TARC(0)
5324 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005325 tctl = er32(TCTL);
5326 tctl |= E1000_TCTL_EN;
5327 ew32(TCTL, tctl);
5328
Bruce Allane921eb12012-11-28 09:28:37 +00005329 /* Perform any post-link-up configuration before
Bruce Allan75eb0fa2008-11-21 16:53:51 -08005330 * reporting link up.
5331 */
5332 if (phy->ops.cfg_on_link_up)
5333 phy->ops.cfg_on_link_up(hw);
5334
Konstantin Khlebnikovd17ba0f2019-04-17 11:13:20 +03005335 netif_wake_queue(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005336 netif_carrier_on(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005337
5338 if (!test_bit(__E1000_DOWN, &adapter->state))
5339 mod_timer(&adapter->phy_info_timer,
5340 round_jiffies(jiffies + 2 * HZ));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005341 }
5342 } else {
5343 if (netif_carrier_ok(netdev)) {
5344 adapter->link_speed = 0;
5345 adapter->link_duplex = 0;
Bruce Allan8f12fe82008-11-21 16:54:43 -08005346 /* Link status message must follow this format */
Alexander Duyckc557a4b2019-10-31 09:58:51 -07005347 netdev_info(netdev, "NIC Link is Down\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005348 netif_carrier_off(netdev);
Konstantin Khlebnikovd17ba0f2019-04-17 11:13:20 +03005349 netif_stop_queue(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005350 if (!test_bit(__E1000_DOWN, &adapter->state))
5351 mod_timer(&adapter->phy_info_timer,
5352 round_jiffies(jiffies + 2 * HZ));
5353
David Ertmand9554e92014-01-08 01:07:55 +00005354 /* 8000ES2LAN requires a Rx packet buffer work-around
5355 * on link down event; reset the controller to flush
5356 * the Rx packet buffer.
Bruce Allan12d43f72012-12-05 06:26:14 +00005357 */
Konstantin Khlebnikovcaff4222019-04-17 11:13:16 +03005358 if (adapter->flags & FLAG_RX_NEEDS_RESTART)
Bruce Allan12d43f72012-12-05 06:26:14 +00005359 adapter->flags |= FLAG_RESTART_NOW;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00005360 else
5361 pm_schedule_suspend(netdev->dev.parent,
Bruce Allan17e813e2013-02-20 04:06:01 +00005362 LINK_TIMEOUT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005363 }
5364 }
5365
5366link_up:
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005367 spin_lock(&adapter->stats64_lock);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005368 e1000e_update_stats(adapter);
5369
5370 mac->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
5371 adapter->tpt_old = adapter->stats.tpt;
5372 mac->collision_delta = adapter->stats.colc - adapter->colc_old;
5373 adapter->colc_old = adapter->stats.colc;
5374
Bruce Allan7c257692008-04-23 11:09:00 -07005375 adapter->gorc = adapter->stats.gorc - adapter->gorc_old;
5376 adapter->gorc_old = adapter->stats.gorc;
5377 adapter->gotc = adapter->stats.gotc - adapter->gotc_old;
5378 adapter->gotc_old = adapter->stats.gotc;
Flavio Leitner2084b112011-04-05 04:27:43 +00005379 spin_unlock(&adapter->stats64_lock);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005380
Konstantin Khlebnikovcaff4222019-04-17 11:13:16 +03005381 /* If the link is lost the controller stops DMA, but
5382 * if there is queued Tx work it cannot be done. So
5383 * reset the controller to flush the Tx packet buffers.
5384 */
5385 if (!netif_carrier_ok(netdev) &&
5386 (e1000_desc_unused(tx_ring) + 1 < tx_ring->count))
5387 adapter->flags |= FLAG_RESTART_NOW;
5388
David Ertmand9554e92014-01-08 01:07:55 +00005389 /* If reset is necessary, do it outside of interrupt context. */
Bruce Allan12d43f72012-12-05 06:26:14 +00005390 if (adapter->flags & FLAG_RESTART_NOW) {
Bruce Allan90da0662011-01-06 07:02:53 +00005391 schedule_work(&adapter->reset_task);
5392 /* return immediately since reset is imminent */
5393 return;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005394 }
5395
Bruce Allan12d43f72012-12-05 06:26:14 +00005396 e1000e_update_adaptive(&adapter->hw);
5397
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005398 /* Simple mode for Interrupt Throttle Rate (ITR) */
5399 if (adapter->itr_setting == 4) {
Bruce Allane921eb12012-11-28 09:28:37 +00005400 /* Symmetric Tx/Rx gets a reduced ITR=2000;
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005401 * Total asymmetrical Tx or Rx gets ITR=8000;
5402 * everyone else is between 2000-8000.
5403 */
5404 u32 goc = (adapter->gotc + adapter->gorc) / 10000;
5405 u32 dif = (adapter->gotc > adapter->gorc ?
Bruce Allan17e813e2013-02-20 04:06:01 +00005406 adapter->gotc - adapter->gorc :
5407 adapter->gorc - adapter->gotc) / 10000;
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005408 u32 itr = goc > 0 ? (dif * 6000 / goc + 2000) : 8000;
5409
Matthew Vick22a4cca2012-07-12 00:02:42 +00005410 e1000e_write_itr(adapter, itr);
Jesse Brandeburgeab2abf2010-05-04 22:26:03 +00005411 }
5412
Bruce Allanad680762008-03-28 09:15:03 -07005413 /* Cause software interrupt to ensure Rx ring is cleaned */
Bruce Allan4662e822008-08-26 18:37:06 -07005414 if (adapter->msix_entries)
5415 ew32(ICS, adapter->rx_ring->ims_val);
5416 else
5417 ew32(ICS, E1000_ICS_RXDMT0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005418
Jesse Brandeburg713b3c92011-02-02 10:19:50 +00005419 /* flush pending descriptors to memory before detecting Tx hang */
5420 e1000e_flush_descriptors(adapter);
5421
Auke Kokbc7f75f2007-09-17 12:30:59 -07005422 /* Force detection of hung controller every watchdog period */
Rusty Russell3db1cd52011-12-19 13:56:45 +00005423 adapter->detect_tx_hung = true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005424
Bruce Allane921eb12012-11-28 09:28:37 +00005425 /* With 82571 controllers, LAA may be overwritten due to controller
Bruce Allanad680762008-03-28 09:15:03 -07005426 * reset from the other port. Set the appropriate LAA in RAR[0]
5427 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005428 if (e1000e_get_laa_state_82571(hw))
Bruce Allan69e1e012012-04-14 03:28:50 +00005429 hw->mac.ops.rar_set(hw, adapter->hw.mac.addr, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005430
Carolyn Wybornyff10e132010-10-28 00:59:53 +00005431 if (adapter->flags2 & FLAG2_CHECK_PHY_HANG)
5432 e1000e_check_82574_phy_workaround(adapter);
5433
Bruce Allanb67e1912012-12-27 08:32:33 +00005434 /* Clear valid timestamp stuck in RXSTMPL/H due to a Rx error */
5435 if (adapter->hwtstamp_config.rx_filter != HWTSTAMP_FILTER_NONE) {
5436 if ((adapter->flags2 & FLAG2_CHECK_RX_HWTSTAMP) &&
5437 (er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_VALID)) {
5438 er32(RXSTMPH);
5439 adapter->rx_hwtstamp_cleared++;
5440 } else {
5441 adapter->flags2 |= FLAG2_CHECK_RX_HWTSTAMP;
5442 }
5443 }
5444
Auke Kokbc7f75f2007-09-17 12:30:59 -07005445 /* Reset the timer */
5446 if (!test_bit(__E1000_DOWN, &adapter->state))
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08005447 mod_timer(&adapter->watchdog_timer,
5448 round_jiffies(jiffies + 2 * HZ));
Auke Kokbc7f75f2007-09-17 12:30:59 -07005449}
5450
5451#define E1000_TX_FLAGS_CSUM 0x00000001
5452#define E1000_TX_FLAGS_VLAN 0x00000002
5453#define E1000_TX_FLAGS_TSO 0x00000004
5454#define E1000_TX_FLAGS_IPV4 0x00000008
Ben Greear943146d2012-02-11 15:39:40 +00005455#define E1000_TX_FLAGS_NO_FCS 0x00000010
Bruce Allanb67e1912012-12-27 08:32:33 +00005456#define E1000_TX_FLAGS_HWTSTAMP 0x00000020
Auke Kokbc7f75f2007-09-17 12:30:59 -07005457#define E1000_TX_FLAGS_VLAN_MASK 0xffff0000
5458#define E1000_TX_FLAGS_VLAN_SHIFT 16
5459
Vlad Yasevich47ccd1e2014-08-25 10:34:48 -04005460static int e1000_tso(struct e1000_ring *tx_ring, struct sk_buff *skb,
5461 __be16 protocol)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005462{
Auke Kokbc7f75f2007-09-17 12:30:59 -07005463 struct e1000_context_desc *context_desc;
5464 struct e1000_buffer *buffer_info;
5465 unsigned int i;
5466 u32 cmd_length = 0;
Bruce Allan70443ae2012-08-17 06:18:13 +00005467 u16 ipcse = 0, mss;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005468 u8 ipcss, ipcso, tucss, tucso, hdr_len;
Francois Romieubcf1f572014-03-30 03:14:43 +00005469 int err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005470
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005471 if (!skb_is_gso(skb))
5472 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005473
Francois Romieubcf1f572014-03-30 03:14:43 +00005474 err = skb_cow_head(skb, 0);
5475 if (err < 0)
5476 return err;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005477
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005478 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
5479 mss = skb_shinfo(skb)->gso_size;
Vlad Yasevich47ccd1e2014-08-25 10:34:48 -04005480 if (protocol == htons(ETH_P_IP)) {
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005481 struct iphdr *iph = ip_hdr(skb);
5482 iph->tot_len = 0;
5483 iph->check = 0;
5484 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
Bruce Allanf0ff4392013-02-20 04:05:39 +00005485 0, IPPROTO_TCP, 0);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005486 cmd_length = E1000_TXD_CMD_IP;
5487 ipcse = skb_transport_offset(skb) - 1;
Sridhar Samudrala8e1e8a42010-01-23 02:02:21 -08005488 } else if (skb_is_gso_v6(skb)) {
Heiner Kallweit2b316fbc2020-02-18 21:05:02 +01005489 tcp_v6_gso_csum_prep(skb);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005490 ipcse = 0;
5491 }
5492 ipcss = skb_network_offset(skb);
5493 ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
5494 tucss = skb_transport_offset(skb);
5495 tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005496
5497 cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
Bruce Allanf0ff4392013-02-20 04:05:39 +00005498 E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005499
5500 i = tx_ring->next_to_use;
5501 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
5502 buffer_info = &tx_ring->buffer_info[i];
5503
Bruce Allane80bd1d2013-05-01 01:19:46 +00005504 context_desc->lower_setup.ip_fields.ipcss = ipcss;
5505 context_desc->lower_setup.ip_fields.ipcso = ipcso;
5506 context_desc->lower_setup.ip_fields.ipcse = cpu_to_le16(ipcse);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005507 context_desc->upper_setup.tcp_fields.tucss = tucss;
5508 context_desc->upper_setup.tcp_fields.tucso = tucso;
Bruce Allan70443ae2012-08-17 06:18:13 +00005509 context_desc->upper_setup.tcp_fields.tucse = 0;
Bruce Allane80bd1d2013-05-01 01:19:46 +00005510 context_desc->tcp_seg_setup.fields.mss = cpu_to_le16(mss);
Bruce Allan3d5e33c2009-11-20 23:27:03 +00005511 context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
5512 context_desc->cmd_and_length = cpu_to_le32(cmd_length);
5513
5514 buffer_info->time_stamp = jiffies;
5515 buffer_info->next_to_watch = i;
5516
5517 i++;
5518 if (i == tx_ring->count)
5519 i = 0;
5520 tx_ring->next_to_use = i;
5521
5522 return 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005523}
5524
Vlad Yasevich47ccd1e2014-08-25 10:34:48 -04005525static bool e1000_tx_csum(struct e1000_ring *tx_ring, struct sk_buff *skb,
5526 __be16 protocol)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005527{
Bruce Allan55aa6982011-12-16 00:45:45 +00005528 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005529 struct e1000_context_desc *context_desc;
5530 struct e1000_buffer *buffer_info;
5531 unsigned int i;
5532 u8 css;
Dave Grahamaf807c82008-10-09 14:28:58 -07005533 u32 cmd_len = E1000_TXD_CMD_DEXT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005534
Dave Grahamaf807c82008-10-09 14:28:58 -07005535 if (skb->ip_summed != CHECKSUM_PARTIAL)
David Ertman3992c8e2014-04-05 03:36:15 +00005536 return false;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005537
Arthur Jones3f518392009-03-20 15:56:35 -07005538 switch (protocol) {
Harvey Harrison09640e632009-02-01 00:45:17 -08005539 case cpu_to_be16(ETH_P_IP):
Dave Grahamaf807c82008-10-09 14:28:58 -07005540 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
5541 cmd_len |= E1000_TXD_CMD_TCP;
5542 break;
Harvey Harrison09640e632009-02-01 00:45:17 -08005543 case cpu_to_be16(ETH_P_IPV6):
Dave Grahamaf807c82008-10-09 14:28:58 -07005544 /* XXX not handling all IPV6 headers */
5545 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
5546 cmd_len |= E1000_TXD_CMD_TCP;
5547 break;
5548 default:
5549 if (unlikely(net_ratelimit()))
Arthur Jones5f66f202009-03-19 01:13:08 +00005550 e_warn("checksum_partial proto=%x!\n",
5551 be16_to_cpu(protocol));
Dave Grahamaf807c82008-10-09 14:28:58 -07005552 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005553 }
5554
Michał Mirosław0d0b1672010-12-14 15:24:08 +00005555 css = skb_checksum_start_offset(skb);
Dave Grahamaf807c82008-10-09 14:28:58 -07005556
5557 i = tx_ring->next_to_use;
5558 buffer_info = &tx_ring->buffer_info[i];
5559 context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
5560
5561 context_desc->lower_setup.ip_config = 0;
5562 context_desc->upper_setup.tcp_fields.tucss = css;
Bruce Allanf0ff4392013-02-20 04:05:39 +00005563 context_desc->upper_setup.tcp_fields.tucso = css + skb->csum_offset;
Dave Grahamaf807c82008-10-09 14:28:58 -07005564 context_desc->upper_setup.tcp_fields.tucse = 0;
5565 context_desc->tcp_seg_setup.data = 0;
5566 context_desc->cmd_and_length = cpu_to_le32(cmd_len);
5567
5568 buffer_info->time_stamp = jiffies;
5569 buffer_info->next_to_watch = i;
5570
5571 i++;
5572 if (i == tx_ring->count)
5573 i = 0;
5574 tx_ring->next_to_use = i;
5575
David Ertman3992c8e2014-04-05 03:36:15 +00005576 return true;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005577}
5578
Bruce Allan55aa6982011-12-16 00:45:45 +00005579static int e1000_tx_map(struct e1000_ring *tx_ring, struct sk_buff *skb,
5580 unsigned int first, unsigned int max_per_txd,
Bruce Alland821a4c2012-08-24 20:38:11 +00005581 unsigned int nr_frags)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005582{
Bruce Allan55aa6982011-12-16 00:45:45 +00005583 struct e1000_adapter *adapter = tx_ring->adapter;
Alexander Duyck03b13202009-12-02 16:45:31 +00005584 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005585 struct e1000_buffer *buffer_info;
Jesse Brandeburg8ddc9512009-03-02 16:02:53 -08005586 unsigned int len = skb_headlen(skb);
Alexander Duyck03b13202009-12-02 16:45:31 +00005587 unsigned int offset = 0, size, count = 0, i;
Tom Herbert9ed318d2010-05-05 14:02:27 +00005588 unsigned int f, bytecount, segs;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005589
5590 i = tx_ring->next_to_use;
5591
5592 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005593 buffer_info = &tx_ring->buffer_info[i];
Auke Kokbc7f75f2007-09-17 12:30:59 -07005594 size = min(len, max_per_txd);
5595
Auke Kokbc7f75f2007-09-17 12:30:59 -07005596 buffer_info->length = size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005597 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005598 buffer_info->next_to_watch = i;
Nick Nunley0be3f552010-04-27 13:09:05 +00005599 buffer_info->dma = dma_map_single(&pdev->dev,
5600 skb->data + offset,
Bruce Allanaf667a22010-12-31 06:10:01 +00005601 size, DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00005602 buffer_info->mapped_as_page = false;
Nick Nunley0be3f552010-04-27 13:09:05 +00005603 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00005604 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005605
5606 len -= size;
5607 offset += size;
Alexander Duyck03b13202009-12-02 16:45:31 +00005608 count++;
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005609
5610 if (len) {
5611 i++;
5612 if (i == tx_ring->count)
5613 i = 0;
5614 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005615 }
5616
5617 for (f = 0; f < nr_frags; f++) {
Matthew Wilcox (Oracle)d7840972019-07-22 20:08:25 -07005618 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
Auke Kokbc7f75f2007-09-17 12:30:59 -07005619
Eric Dumazet9e903e02011-10-18 21:00:24 +00005620 len = skb_frag_size(frag);
Ian Campbell877749b2011-08-29 23:18:26 +00005621 offset = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005622
5623 while (len) {
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005624 i++;
5625 if (i == tx_ring->count)
5626 i = 0;
5627
Auke Kokbc7f75f2007-09-17 12:30:59 -07005628 buffer_info = &tx_ring->buffer_info[i];
5629 size = min(len, max_per_txd);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005630
5631 buffer_info->length = size;
5632 buffer_info->time_stamp = jiffies;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005633 buffer_info->next_to_watch = i;
Ian Campbell877749b2011-08-29 23:18:26 +00005634 buffer_info->dma = skb_frag_dma_map(&pdev->dev, frag,
Bruce Allan17e813e2013-02-20 04:06:01 +00005635 offset, size,
5636 DMA_TO_DEVICE);
Alexander Duyck03b13202009-12-02 16:45:31 +00005637 buffer_info->mapped_as_page = true;
Nick Nunley0be3f552010-04-27 13:09:05 +00005638 if (dma_mapping_error(&pdev->dev, buffer_info->dma))
Alexander Duyck03b13202009-12-02 16:45:31 +00005639 goto dma_error;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005640
5641 len -= size;
5642 offset += size;
5643 count++;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005644 }
5645 }
5646
Bruce Allanaf667a22010-12-31 06:10:01 +00005647 segs = skb_shinfo(skb)->gso_segs ? : 1;
Tom Herbert9ed318d2010-05-05 14:02:27 +00005648 /* multiply data chunks by size of headers */
5649 bytecount = ((segs - 1) * skb_headlen(skb)) + skb->len;
5650
Auke Kokbc7f75f2007-09-17 12:30:59 -07005651 tx_ring->buffer_info[i].skb = skb;
Tom Herbert9ed318d2010-05-05 14:02:27 +00005652 tx_ring->buffer_info[i].segs = segs;
5653 tx_ring->buffer_info[i].bytecount = bytecount;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005654 tx_ring->buffer_info[first].next_to_watch = i;
5655
5656 return count;
Alexander Duyck03b13202009-12-02 16:45:31 +00005657
5658dma_error:
Bruce Allanaf667a22010-12-31 06:10:01 +00005659 dev_err(&pdev->dev, "Tx DMA map failed\n");
Alexander Duyck03b13202009-12-02 16:45:31 +00005660 buffer_info->dma = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00005661 if (count)
Alexander Duyck03b13202009-12-02 16:45:31 +00005662 count--;
Roel Kluinc1fa3472010-01-19 14:21:45 +00005663
5664 while (count--) {
Bruce Allanaf667a22010-12-31 06:10:01 +00005665 if (i == 0)
Alexander Duyck03b13202009-12-02 16:45:31 +00005666 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00005667 i--;
Alexander Duyck03b13202009-12-02 16:45:31 +00005668 buffer_info = &tx_ring->buffer_info[i];
Florian Fainelli377b6272017-08-25 18:14:24 -07005669 e1000_put_txbuf(tx_ring, buffer_info, true);
Alexander Duyck03b13202009-12-02 16:45:31 +00005670 }
5671
5672 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005673}
5674
Bruce Allan55aa6982011-12-16 00:45:45 +00005675static void e1000_tx_queue(struct e1000_ring *tx_ring, int tx_flags, int count)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005676{
Bruce Allan55aa6982011-12-16 00:45:45 +00005677 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005678 struct e1000_tx_desc *tx_desc = NULL;
5679 struct e1000_buffer *buffer_info;
5680 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
5681 unsigned int i;
5682
5683 if (tx_flags & E1000_TX_FLAGS_TSO) {
5684 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
Bruce Allanf0ff4392013-02-20 04:05:39 +00005685 E1000_TXD_CMD_TSE;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005686 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
5687
5688 if (tx_flags & E1000_TX_FLAGS_IPV4)
5689 txd_upper |= E1000_TXD_POPTS_IXSM << 8;
5690 }
5691
5692 if (tx_flags & E1000_TX_FLAGS_CSUM) {
5693 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
5694 txd_upper |= E1000_TXD_POPTS_TXSM << 8;
5695 }
5696
5697 if (tx_flags & E1000_TX_FLAGS_VLAN) {
5698 txd_lower |= E1000_TXD_CMD_VLE;
5699 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
5700 }
5701
Ben Greear943146d2012-02-11 15:39:40 +00005702 if (unlikely(tx_flags & E1000_TX_FLAGS_NO_FCS))
5703 txd_lower &= ~(E1000_TXD_CMD_IFCS);
5704
Bruce Allanb67e1912012-12-27 08:32:33 +00005705 if (unlikely(tx_flags & E1000_TX_FLAGS_HWTSTAMP)) {
5706 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
5707 txd_upper |= E1000_TXD_EXTCMD_TSTAMP;
5708 }
5709
Auke Kokbc7f75f2007-09-17 12:30:59 -07005710 i = tx_ring->next_to_use;
5711
Bruce Allan36b973d2010-11-24 07:42:43 +00005712 do {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005713 buffer_info = &tx_ring->buffer_info[i];
5714 tx_desc = E1000_TX_DESC(*tx_ring, i);
5715 tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
Bruce Allanf0ff4392013-02-20 04:05:39 +00005716 tx_desc->lower.data = cpu_to_le32(txd_lower |
5717 buffer_info->length);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005718 tx_desc->upper.data = cpu_to_le32(txd_upper);
5719
5720 i++;
5721 if (i == tx_ring->count)
5722 i = 0;
Bruce Allan36b973d2010-11-24 07:42:43 +00005723 } while (--count > 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005724
5725 tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
5726
Ben Greear943146d2012-02-11 15:39:40 +00005727 /* txd_cmd re-enables FCS, so we'll re-disable it here as desired. */
5728 if (unlikely(tx_flags & E1000_TX_FLAGS_NO_FCS))
5729 tx_desc->lower.data &= ~(cpu_to_le32(E1000_TXD_CMD_IFCS));
5730
Bruce Allane921eb12012-11-28 09:28:37 +00005731 /* Force memory writes to complete before letting h/w
Auke Kokbc7f75f2007-09-17 12:30:59 -07005732 * know there are new descriptors to fetch. (Only
5733 * applicable for weak-ordered memory model archs,
Bruce Allanad680762008-03-28 09:15:03 -07005734 * such as IA-64).
5735 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005736 wmb();
5737
5738 tx_ring->next_to_use = i;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005739}
5740
5741#define MINIMUM_DHCP_PACKET_SIZE 282
5742static int e1000_transfer_dhcp_info(struct e1000_adapter *adapter,
5743 struct sk_buff *skb)
5744{
Bruce Allane80bd1d2013-05-01 01:19:46 +00005745 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005746 u16 length, offset;
5747
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01005748 if (skb_vlan_tag_present(skb) &&
5749 !((skb_vlan_tag_get(skb) == adapter->hw.mng_cookie.vlan_id) &&
Bruce Alland60923c2012-12-05 06:26:56 +00005750 (adapter->hw.mng_cookie.status &
5751 E1000_MNG_DHCP_COOKIE_STATUS_VLAN)))
5752 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005753
5754 if (skb->len <= MINIMUM_DHCP_PACKET_SIZE)
5755 return 0;
5756
Bruce Allan53aa82d2013-02-20 04:06:06 +00005757 if (((struct ethhdr *)skb->data)->h_proto != htons(ETH_P_IP))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005758 return 0;
5759
5760 {
Bruce Allan362e20c2013-02-20 04:05:45 +00005761 const struct iphdr *ip = (struct iphdr *)((u8 *)skb->data + 14);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005762 struct udphdr *udp;
5763
5764 if (ip->protocol != IPPROTO_UDP)
5765 return 0;
5766
5767 udp = (struct udphdr *)((u8 *)ip + (ip->ihl << 2));
5768 if (ntohs(udp->dest) != 67)
5769 return 0;
5770
5771 offset = (u8 *)udp + 8 - skb->data;
5772 length = skb->len - offset;
5773 return e1000e_mng_write_dhcp_info(hw, (u8 *)udp + 8, length);
5774 }
5775
5776 return 0;
5777}
5778
Bruce Allan55aa6982011-12-16 00:45:45 +00005779static int __e1000_maybe_stop_tx(struct e1000_ring *tx_ring, int size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005780{
Bruce Allan55aa6982011-12-16 00:45:45 +00005781 struct e1000_adapter *adapter = tx_ring->adapter;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005782
Bruce Allan55aa6982011-12-16 00:45:45 +00005783 netif_stop_queue(adapter->netdev);
Bruce Allane921eb12012-11-28 09:28:37 +00005784 /* Herbert's original patch had:
Auke Kokbc7f75f2007-09-17 12:30:59 -07005785 * smp_mb__after_netif_stop_queue();
Bruce Allanad680762008-03-28 09:15:03 -07005786 * but since that doesn't exist yet, just open code it.
5787 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005788 smp_mb();
5789
Bruce Allane921eb12012-11-28 09:28:37 +00005790 /* We need to check again in a case another CPU has just
Bruce Allanad680762008-03-28 09:15:03 -07005791 * made room available.
5792 */
Bruce Allan55aa6982011-12-16 00:45:45 +00005793 if (e1000_desc_unused(tx_ring) < size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005794 return -EBUSY;
5795
5796 /* A reprieve! */
Bruce Allan55aa6982011-12-16 00:45:45 +00005797 netif_start_queue(adapter->netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005798 ++adapter->restart_queue;
5799 return 0;
5800}
5801
Bruce Allan55aa6982011-12-16 00:45:45 +00005802static int e1000_maybe_stop_tx(struct e1000_ring *tx_ring, int size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005803{
Bruce Alland821a4c2012-08-24 20:38:11 +00005804 BUG_ON(size > tx_ring->count);
5805
Bruce Allan55aa6982011-12-16 00:45:45 +00005806 if (e1000_desc_unused(tx_ring) >= size)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005807 return 0;
Bruce Allan55aa6982011-12-16 00:45:45 +00005808 return __e1000_maybe_stop_tx(tx_ring, size);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005809}
5810
Stephen Hemminger3b29a562009-08-31 19:50:55 +00005811static netdev_tx_t e1000_xmit_frame(struct sk_buff *skb,
5812 struct net_device *netdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005813{
5814 struct e1000_adapter *adapter = netdev_priv(netdev);
5815 struct e1000_ring *tx_ring = adapter->tx_ring;
5816 unsigned int first;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005817 unsigned int tx_flags = 0;
Eric Dumazete743d312010-04-14 15:59:40 -07005818 unsigned int len = skb_headlen(skb);
Auke Kok4e6c7092007-10-05 14:15:23 -07005819 unsigned int nr_frags;
5820 unsigned int mss;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005821 int count = 0;
5822 int tso;
5823 unsigned int f;
Vlad Yasevich47ccd1e2014-08-25 10:34:48 -04005824 __be16 protocol = vlan_get_protocol(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005825
5826 if (test_bit(__E1000_DOWN, &adapter->state)) {
5827 dev_kfree_skb_any(skb);
5828 return NETDEV_TX_OK;
5829 }
5830
5831 if (skb->len <= 0) {
5832 dev_kfree_skb_any(skb);
5833 return NETDEV_TX_OK;
5834 }
5835
Bruce Allane921eb12012-11-28 09:28:37 +00005836 /* The minimum packet size with TCTL.PSP set is 17 bytes so
Tushar Dave6e97c172012-09-14 02:21:37 +00005837 * pad skb in order to meet this minimum size requirement
5838 */
Alexander Duycka94d9e22014-12-03 08:17:39 -08005839 if (skb_put_padto(skb, 17))
5840 return NETDEV_TX_OK;
Tushar Dave6e97c172012-09-14 02:21:37 +00005841
Auke Kokbc7f75f2007-09-17 12:30:59 -07005842 mss = skb_shinfo(skb)->gso_size;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005843 if (mss) {
5844 u8 hdr_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005845
Bruce Allane921eb12012-11-28 09:28:37 +00005846 /* TSO Workaround for 82571/2/3 Controllers -- if skb->data
Bruce Allanad680762008-03-28 09:15:03 -07005847 * points to just header, pull a few bytes of payload from
5848 * frags into skb->data
5849 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07005850 hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
Bruce Allane921eb12012-11-28 09:28:37 +00005851 /* we do this workaround for ES2LAN, but it is un-necessary,
Bruce Allanad680762008-03-28 09:15:03 -07005852 * avoiding it could save a lot of cycles
5853 */
Auke Kok4e6c7092007-10-05 14:15:23 -07005854 if (skb->data_len && (hdr_len == len)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005855 unsigned int pull_size;
5856
Bruce Allana2a5b322012-01-31 06:37:17 +00005857 pull_size = min_t(unsigned int, 4, skb->data_len);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005858 if (!__pskb_pull_tail(skb, pull_size)) {
Jeff Kirsher44defeb2008-08-04 17:20:41 -07005859 e_err("__pskb_pull_tail failed.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07005860 dev_kfree_skb_any(skb);
5861 return NETDEV_TX_OK;
5862 }
Eric Dumazete743d312010-04-14 15:59:40 -07005863 len = skb_headlen(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005864 }
5865 }
5866
5867 /* reserve a descriptor for the offload context */
5868 if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
5869 count++;
5870 count++;
5871
Bruce Alland821a4c2012-08-24 20:38:11 +00005872 count += DIV_ROUND_UP(len, adapter->tx_fifo_limit);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005873
5874 nr_frags = skb_shinfo(skb)->nr_frags;
5875 for (f = 0; f < nr_frags; f++)
Bruce Alland821a4c2012-08-24 20:38:11 +00005876 count += DIV_ROUND_UP(skb_frag_size(&skb_shinfo(skb)->frags[f]),
5877 adapter->tx_fifo_limit);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005878
5879 if (adapter->hw.mac.tx_pkt_filtering)
5880 e1000_transfer_dhcp_info(adapter, skb);
5881
Bruce Allane921eb12012-11-28 09:28:37 +00005882 /* need: count + 2 desc gap to keep tail from touching
Bruce Allanad680762008-03-28 09:15:03 -07005883 * head, otherwise try next time
5884 */
Bruce Allan55aa6982011-12-16 00:45:45 +00005885 if (e1000_maybe_stop_tx(tx_ring, count + 2))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005886 return NETDEV_TX_BUSY;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005887
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01005888 if (skb_vlan_tag_present(skb)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005889 tx_flags |= E1000_TX_FLAGS_VLAN;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01005890 tx_flags |= (skb_vlan_tag_get(skb) <<
5891 E1000_TX_FLAGS_VLAN_SHIFT);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005892 }
5893
5894 first = tx_ring->next_to_use;
5895
Vlad Yasevich47ccd1e2014-08-25 10:34:48 -04005896 tso = e1000_tso(tx_ring, skb, protocol);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005897 if (tso < 0) {
5898 dev_kfree_skb_any(skb);
Auke Kokbc7f75f2007-09-17 12:30:59 -07005899 return NETDEV_TX_OK;
5900 }
5901
5902 if (tso)
5903 tx_flags |= E1000_TX_FLAGS_TSO;
Vlad Yasevich47ccd1e2014-08-25 10:34:48 -04005904 else if (e1000_tx_csum(tx_ring, skb, protocol))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005905 tx_flags |= E1000_TX_FLAGS_CSUM;
5906
Bruce Allane921eb12012-11-28 09:28:37 +00005907 /* Old method was to assume IPv4 packet by default if TSO was enabled.
Auke Kokbc7f75f2007-09-17 12:30:59 -07005908 * 82571 hardware supports TSO capabilities for IPv6 as well...
Bruce Allanad680762008-03-28 09:15:03 -07005909 * no longer assume, we must.
5910 */
Vlad Yasevich47ccd1e2014-08-25 10:34:48 -04005911 if (protocol == htons(ETH_P_IP))
Auke Kokbc7f75f2007-09-17 12:30:59 -07005912 tx_flags |= E1000_TX_FLAGS_IPV4;
5913
Ben Greear943146d2012-02-11 15:39:40 +00005914 if (unlikely(skb->no_fcs))
5915 tx_flags |= E1000_TX_FLAGS_NO_FCS;
5916
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005917 /* if count is 0 then mapping error has occurred */
Bruce Alland821a4c2012-08-24 20:38:11 +00005918 count = e1000_tx_map(tx_ring, skb, first, adapter->tx_fifo_limit,
5919 nr_frags);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005920 if (count) {
Mathias Koehrer69308952014-08-07 18:51:53 +00005921 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
Jacob Kellercff57142017-05-03 10:28:57 -07005922 (adapter->flags & FLAG_HAS_HW_TIMESTAMP)) {
5923 if (!adapter->tx_hwtstamp_skb) {
5924 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
5925 tx_flags |= E1000_TX_FLAGS_HWTSTAMP;
5926 adapter->tx_hwtstamp_skb = skb_get(skb);
5927 adapter->tx_hwtstamp_start = jiffies;
5928 schedule_work(&adapter->tx_hwtstamp_work);
5929 } else {
5930 adapter->tx_hwtstamp_skipped++;
5931 }
Bruce Allanb67e1912012-12-27 08:32:33 +00005932 }
Willem de Bruijn80be3122012-04-27 09:04:05 +00005933
Miroslav Lichvar74abc9b12017-05-19 17:52:41 +02005934 skb_tx_timestamp(skb);
5935
Tom Herbert3f0cfa32011-11-28 16:33:16 +00005936 netdev_sent_queue(netdev, skb->len);
Bruce Allan55aa6982011-12-16 00:45:45 +00005937 e1000_tx_queue(tx_ring, tx_flags, count);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005938 /* Make sure there is space in the ring for the next send. */
Bruce Alland821a4c2012-08-24 20:38:11 +00005939 e1000_maybe_stop_tx(tx_ring,
5940 (MAX_SKB_FRAGS *
5941 DIV_ROUND_UP(PAGE_SIZE,
5942 adapter->tx_fifo_limit) + 2));
Florian Westphal472f31f2015-01-09 09:26:14 +00005943
Florian Westphal6b16f9e2019-04-01 16:42:14 +02005944 if (!netdev_xmit_more() ||
Florian Westphal472f31f2015-01-09 09:26:14 +00005945 netif_xmit_stopped(netdev_get_tx_queue(netdev, 0))) {
5946 if (adapter->flags2 & FLAG2_PCIM2PCI_ARBITER_WA)
5947 e1000e_update_tdt_wa(tx_ring,
5948 tx_ring->next_to_use);
5949 else
5950 writel(tx_ring->next_to_use, tx_ring->tail);
Florian Westphal472f31f2015-01-09 09:26:14 +00005951 }
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005952 } else {
Auke Kokbc7f75f2007-09-17 12:30:59 -07005953 dev_kfree_skb_any(skb);
Alexander Duyck1b7719c2009-03-19 01:12:50 +00005954 tx_ring->buffer_info[first].time_stamp = 0;
5955 tx_ring->next_to_use = first;
Auke Kokbc7f75f2007-09-17 12:30:59 -07005956 }
5957
Auke Kokbc7f75f2007-09-17 12:30:59 -07005958 return NETDEV_TX_OK;
5959}
5960
5961/**
5962 * e1000_tx_timeout - Respond to a Tx Hang
5963 * @netdev: network interface device structure
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07005964 * @txqueue: index of the hung queue (unused)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005965 **/
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07005966static void e1000_tx_timeout(struct net_device *netdev, unsigned int __always_unused txqueue)
Auke Kokbc7f75f2007-09-17 12:30:59 -07005967{
5968 struct e1000_adapter *adapter = netdev_priv(netdev);
5969
5970 /* Do the reset outside of interrupt context */
5971 adapter->tx_timeout_count++;
5972 schedule_work(&adapter->reset_task);
5973}
5974
5975static void e1000_reset_task(struct work_struct *work)
5976{
5977 struct e1000_adapter *adapter;
5978 adapter = container_of(work, struct e1000_adapter, reset_task);
5979
Vitaly Lifshits21f857f2020-10-21 14:59:37 +03005980 rtnl_lock();
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00005981 /* don't run the task if already down */
Vitaly Lifshits21f857f2020-10-21 14:59:37 +03005982 if (test_bit(__E1000_DOWN, &adapter->state)) {
5983 rtnl_unlock();
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00005984 return;
Vitaly Lifshits21f857f2020-10-21 14:59:37 +03005985 }
Jesse Brandeburg615b32a2011-02-02 10:19:45 +00005986
Bruce Allan12d43f72012-12-05 06:26:14 +00005987 if (!(adapter->flags & FLAG_RESTART_NOW)) {
Carolyn Wybornyaffa9df2010-10-28 00:59:55 +00005988 e1000e_dump(adapter);
Bruce Allan12d43f72012-12-05 06:26:14 +00005989 e_err("Reset adapter unexpectedly\n");
Carolyn Wybornyaffa9df2010-10-28 00:59:55 +00005990 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07005991 e1000e_reinit_locked(adapter);
Vitaly Lifshits21f857f2020-10-21 14:59:37 +03005992 rtnl_unlock();
Auke Kokbc7f75f2007-09-17 12:30:59 -07005993}
5994
5995/**
Sasha Neftin39da2ca2021-03-14 15:59:20 +02005996 * e1000e_get_stats64 - Get System Network Statistics
Auke Kokbc7f75f2007-09-17 12:30:59 -07005997 * @netdev: network interface device structure
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00005998 * @stats: rtnl_link_stats64 pointer
Auke Kokbc7f75f2007-09-17 12:30:59 -07005999 *
6000 * Returns the address of the device statistics structure.
Auke Kokbc7f75f2007-09-17 12:30:59 -07006001 **/
stephen hemmingerbc1f4472017-01-06 19:12:52 -08006002void e1000e_get_stats64(struct net_device *netdev,
6003 struct rtnl_link_stats64 *stats)
Auke Kokbc7f75f2007-09-17 12:30:59 -07006004{
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00006005 struct e1000_adapter *adapter = netdev_priv(netdev);
6006
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00006007 spin_lock(&adapter->stats64_lock);
6008 e1000e_update_stats(adapter);
6009 /* Fill out the OS statistics structure */
6010 stats->rx_bytes = adapter->stats.gorc;
6011 stats->rx_packets = adapter->stats.gprc;
6012 stats->tx_bytes = adapter->stats.gotc;
6013 stats->tx_packets = adapter->stats.gptc;
6014 stats->multicast = adapter->stats.mprc;
6015 stats->collisions = adapter->stats.colc;
6016
6017 /* Rx Errors */
6018
Bruce Allane921eb12012-11-28 09:28:37 +00006019 /* RLEC on some newer hardware can be incorrect so build
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00006020 * our own version based on RUC and ROC
6021 */
6022 stats->rx_errors = adapter->stats.rxerrc +
Bruce Allanf0ff4392013-02-20 04:05:39 +00006023 adapter->stats.crcerrs + adapter->stats.algnerrc +
6024 adapter->stats.ruc + adapter->stats.roc + adapter->stats.cexterr;
6025 stats->rx_length_errors = adapter->stats.ruc + adapter->stats.roc;
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00006026 stats->rx_crc_errors = adapter->stats.crcerrs;
6027 stats->rx_frame_errors = adapter->stats.algnerrc;
6028 stats->rx_missed_errors = adapter->stats.mpc;
6029
6030 /* Tx Errors */
Bruce Allanf0ff4392013-02-20 04:05:39 +00006031 stats->tx_errors = adapter->stats.ecol + adapter->stats.latecol;
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00006032 stats->tx_aborted_errors = adapter->stats.ecol;
6033 stats->tx_window_errors = adapter->stats.latecol;
6034 stats->tx_carrier_errors = adapter->stats.tncrs;
6035
6036 /* Tx Dropped needs to be maintained elsewhere */
6037
6038 spin_unlock(&adapter->stats64_lock);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006039}
6040
6041/**
6042 * e1000_change_mtu - Change the Maximum Transfer Unit
6043 * @netdev: network interface device structure
6044 * @new_mtu: new value for maximum frame size
6045 *
6046 * Returns 0 on success, negative on failure
6047 **/
6048static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
6049{
6050 struct e1000_adapter *adapter = netdev_priv(netdev);
Alexander Duyck8084b862015-05-02 00:52:00 -07006051 int max_frame = new_mtu + VLAN_ETH_HLEN + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006052
Bruce Allan2adc55c2009-06-02 11:28:58 +00006053 /* Jumbo frame support */
Jarod Wilson91c527a2016-10-17 15:54:05 -04006054 if ((new_mtu > ETH_DATA_LEN) &&
Bruce Allan2e1706f2012-06-30 20:02:42 +00006055 !(adapter->flags & FLAG_HAS_JUMBO_FRAMES)) {
6056 e_err("Jumbo Frames not supported.\n");
6057 return -EINVAL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006058 }
6059
Bruce Allan2fbe4522012-04-19 03:21:47 +00006060 /* Jumbo frame workaround on 82579 and newer requires CRC be stripped */
6061 if ((adapter->hw.mac.type >= e1000_pch2lan) &&
Bruce Allana1ce6472010-09-22 17:16:40 +00006062 !(adapter->flags2 & FLAG2_CRC_STRIPPING) &&
6063 (new_mtu > ETH_DATA_LEN)) {
Bruce Allan2fbe4522012-04-19 03:21:47 +00006064 e_err("Jumbo Frames not supported on this device when CRC stripping is disabled.\n");
Bruce Allana1ce6472010-09-22 17:16:40 +00006065 return -EINVAL;
6066 }
6067
Auke Kokbc7f75f2007-09-17 12:30:59 -07006068 while (test_and_set_bit(__E1000_RESETTING, &adapter->state))
Arjan van de Venab6973a2019-06-14 17:29:35 -07006069 usleep_range(1000, 1100);
Bruce Allan610c9922009-11-19 12:35:45 +00006070 /* e1000e_down -> e1000e_reset dependent on max_frame_size & mtu */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07006071 adapter->max_frame_size = max_frame;
Florian Fainelli12299132019-11-07 14:35:36 -08006072 netdev_dbg(netdev, "changing MTU from %d to %d\n",
6073 netdev->mtu, new_mtu);
Bruce Allan610c9922009-11-19 12:35:45 +00006074 netdev->mtu = new_mtu;
David Ertman63eb48f2014-02-14 07:16:46 +00006075
6076 pm_runtime_get_sync(netdev->dev.parent);
6077
Auke Kokbc7f75f2007-09-17 12:30:59 -07006078 if (netif_running(netdev))
David Ertman28002092014-02-14 07:16:41 +00006079 e1000e_down(adapter, true);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006080
Bruce Allane921eb12012-11-28 09:28:37 +00006081 /* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
Auke Kokbc7f75f2007-09-17 12:30:59 -07006082 * means we reserve 2 more, this pushes us to allocate from the next
6083 * larger slab size.
Bruce Allanad680762008-03-28 09:15:03 -07006084 * i.e. RXBUFFER_2048 --> size-4096 slab
Bruce Allan97ac8ca2008-04-29 09:16:05 -07006085 * However with the new *_jumbo_rx* routines, jumbo receives will use
6086 * fragmented skbs
Bruce Allanad680762008-03-28 09:15:03 -07006087 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07006088
Jesse Brandeburg99261462010-01-22 22:56:16 +00006089 if (max_frame <= 2048)
Auke Kokbc7f75f2007-09-17 12:30:59 -07006090 adapter->rx_buffer_len = 2048;
6091 else
6092 adapter->rx_buffer_len = 4096;
6093
6094 /* adjust allocation if LPE protects us, and we aren't using SBP */
Alexander Duyck8084b862015-05-02 00:52:00 -07006095 if (max_frame <= (VLAN_ETH_FRAME_LEN + ETH_FCS_LEN))
6096 adapter->rx_buffer_len = VLAN_ETH_FRAME_LEN + ETH_FCS_LEN;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006097
Auke Kokbc7f75f2007-09-17 12:30:59 -07006098 if (netif_running(netdev))
6099 e1000e_up(adapter);
6100 else
6101 e1000e_reset(adapter);
6102
David Ertman63eb48f2014-02-14 07:16:46 +00006103 pm_runtime_put_sync(netdev->dev.parent);
6104
Auke Kokbc7f75f2007-09-17 12:30:59 -07006105 clear_bit(__E1000_RESETTING, &adapter->state);
6106
6107 return 0;
6108}
6109
6110static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
6111 int cmd)
6112{
6113 struct e1000_adapter *adapter = netdev_priv(netdev);
6114 struct mii_ioctl_data *data = if_mii(ifr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006115
Jeff Kirsher318a94d2008-03-28 09:15:16 -07006116 if (adapter->hw.phy.media_type != e1000_media_type_copper)
Auke Kokbc7f75f2007-09-17 12:30:59 -07006117 return -EOPNOTSUPP;
6118
6119 switch (cmd) {
6120 case SIOCGMIIPHY:
6121 data->phy_id = adapter->hw.phy.addr;
6122 break;
6123 case SIOCGMIIREG:
Bruce Allanb16a0022009-11-20 23:24:30 +00006124 e1000_phy_read_status(adapter);
6125
Bruce Allan7c257692008-04-23 11:09:00 -07006126 switch (data->reg_num & 0x1F) {
6127 case MII_BMCR:
6128 data->val_out = adapter->phy_regs.bmcr;
6129 break;
6130 case MII_BMSR:
6131 data->val_out = adapter->phy_regs.bmsr;
6132 break;
6133 case MII_PHYSID1:
6134 data->val_out = (adapter->hw.phy.id >> 16);
6135 break;
6136 case MII_PHYSID2:
6137 data->val_out = (adapter->hw.phy.id & 0xFFFF);
6138 break;
6139 case MII_ADVERTISE:
6140 data->val_out = adapter->phy_regs.advertise;
6141 break;
6142 case MII_LPA:
6143 data->val_out = adapter->phy_regs.lpa;
6144 break;
6145 case MII_EXPANSION:
6146 data->val_out = adapter->phy_regs.expansion;
6147 break;
6148 case MII_CTRL1000:
6149 data->val_out = adapter->phy_regs.ctrl1000;
6150 break;
6151 case MII_STAT1000:
6152 data->val_out = adapter->phy_regs.stat1000;
6153 break;
6154 case MII_ESTATUS:
6155 data->val_out = adapter->phy_regs.estatus;
6156 break;
6157 default:
Auke Kokbc7f75f2007-09-17 12:30:59 -07006158 return -EIO;
6159 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07006160 break;
6161 case SIOCSMIIREG:
6162 default:
6163 return -EOPNOTSUPP;
6164 }
6165 return 0;
6166}
6167
Bruce Allanb67e1912012-12-27 08:32:33 +00006168/**
Sasha Neftin39da2ca2021-03-14 15:59:20 +02006169 * e1000e_hwtstamp_set - control hardware time stamping
Bruce Allanb67e1912012-12-27 08:32:33 +00006170 * @netdev: network interface device structure
Jesse Brandeburgb50f7bc2020-09-25 15:24:37 -07006171 * @ifr: interface request
Bruce Allanb67e1912012-12-27 08:32:33 +00006172 *
6173 * Outgoing time stamping can be enabled and disabled. Play nice and
6174 * disable it when requested, although it shouldn't cause any overhead
6175 * when no packet needs it. At most one packet in the queue may be
6176 * marked for time stamping, otherwise it would be impossible to tell
6177 * for sure to which packet the hardware time stamp belongs.
6178 *
6179 * Incoming time stamping has to be configured via the hardware filters.
6180 * Not all combinations are supported, in particular event type has to be
6181 * specified. Matching the kind of event packet is not supported, with the
6182 * exception of "all V2 events regardless of level 2 or 4".
6183 **/
Ben Hutchings4e8cff62013-11-18 23:07:16 +00006184static int e1000e_hwtstamp_set(struct net_device *netdev, struct ifreq *ifr)
Bruce Allanb67e1912012-12-27 08:32:33 +00006185{
6186 struct e1000_adapter *adapter = netdev_priv(netdev);
6187 struct hwtstamp_config config;
6188 int ret_val;
6189
6190 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
6191 return -EFAULT;
6192
Ben Hutchings62d7e3a2013-11-14 00:41:38 +00006193 ret_val = e1000e_config_hwtstamp(adapter, &config);
Bruce Allanb67e1912012-12-27 08:32:33 +00006194 if (ret_val)
6195 return ret_val;
6196
Bruce Alland89777b2013-01-19 01:09:58 +00006197 switch (config.rx_filter) {
6198 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
6199 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
6200 case HWTSTAMP_FILTER_PTP_V2_SYNC:
6201 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
6202 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
6203 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
6204 /* With V2 type filters which specify a Sync or Delay Request,
6205 * Path Delay Request/Response messages are also time stamped
6206 * by hardware so notify the caller the requested packets plus
6207 * some others are time stamped.
6208 */
6209 config.rx_filter = HWTSTAMP_FILTER_SOME;
6210 break;
6211 default:
6212 break;
6213 }
6214
Bruce Allanb67e1912012-12-27 08:32:33 +00006215 return copy_to_user(ifr->ifr_data, &config,
6216 sizeof(config)) ? -EFAULT : 0;
6217}
6218
Ben Hutchings4e8cff62013-11-18 23:07:16 +00006219static int e1000e_hwtstamp_get(struct net_device *netdev, struct ifreq *ifr)
6220{
6221 struct e1000_adapter *adapter = netdev_priv(netdev);
6222
6223 return copy_to_user(ifr->ifr_data, &adapter->hwtstamp_config,
6224 sizeof(adapter->hwtstamp_config)) ? -EFAULT : 0;
6225}
6226
Auke Kokbc7f75f2007-09-17 12:30:59 -07006227static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
6228{
6229 switch (cmd) {
6230 case SIOCGMIIPHY:
6231 case SIOCGMIIREG:
6232 case SIOCSMIIREG:
6233 return e1000_mii_ioctl(netdev, ifr, cmd);
Bruce Allanb67e1912012-12-27 08:32:33 +00006234 case SIOCSHWTSTAMP:
Ben Hutchings4e8cff62013-11-18 23:07:16 +00006235 return e1000e_hwtstamp_set(netdev, ifr);
6236 case SIOCGHWTSTAMP:
6237 return e1000e_hwtstamp_get(netdev, ifr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006238 default:
6239 return -EOPNOTSUPP;
6240 }
6241}
6242
Bruce Allana4f58f52009-06-02 11:29:18 +00006243static int e1000_init_phy_wakeup(struct e1000_adapter *adapter, u32 wufc)
6244{
6245 struct e1000_hw *hw = &adapter->hw;
David Ertman74f350e2014-02-22 03:15:17 +00006246 u32 i, mac_reg, wuc;
Bruce Allan2b6b1682011-05-13 07:20:09 +00006247 u16 phy_reg, wuc_enable;
Bruce Allan70806a72013-01-05 05:08:37 +00006248 int retval;
Bruce Allana4f58f52009-06-02 11:29:18 +00006249
6250 /* copy MAC RARs to PHY RARs */
Bruce Alland3738bb2010-06-16 13:27:28 +00006251 e1000_copy_rx_addrs_to_phy_ich8lan(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00006252
Bruce Allan2b6b1682011-05-13 07:20:09 +00006253 retval = hw->phy.ops.acquire(hw);
6254 if (retval) {
6255 e_err("Could not acquire PHY\n");
6256 return retval;
6257 }
6258
6259 /* Enable access to wakeup registers on and set page to BM_WUC_PAGE */
6260 retval = e1000_enable_phy_wakeup_reg_access_bm(hw, &wuc_enable);
6261 if (retval)
Bruce Allan75ce1532012-02-08 02:54:48 +00006262 goto release;
Bruce Allan2b6b1682011-05-13 07:20:09 +00006263
6264 /* copy MAC MTA to PHY MTA - only needed for pchlan */
Bruce Allana4f58f52009-06-02 11:29:18 +00006265 for (i = 0; i < adapter->hw.mac.mta_reg_count; i++) {
6266 mac_reg = E1000_READ_REG_ARRAY(hw, E1000_MTA, i);
Bruce Allan2b6b1682011-05-13 07:20:09 +00006267 hw->phy.ops.write_reg_page(hw, BM_MTA(i),
6268 (u16)(mac_reg & 0xFFFF));
6269 hw->phy.ops.write_reg_page(hw, BM_MTA(i) + 1,
6270 (u16)((mac_reg >> 16) & 0xFFFF));
Bruce Allana4f58f52009-06-02 11:29:18 +00006271 }
6272
6273 /* configure PHY Rx Control register */
Bruce Allan2b6b1682011-05-13 07:20:09 +00006274 hw->phy.ops.read_reg_page(&adapter->hw, BM_RCTL, &phy_reg);
Bruce Allana4f58f52009-06-02 11:29:18 +00006275 mac_reg = er32(RCTL);
6276 if (mac_reg & E1000_RCTL_UPE)
6277 phy_reg |= BM_RCTL_UPE;
6278 if (mac_reg & E1000_RCTL_MPE)
6279 phy_reg |= BM_RCTL_MPE;
6280 phy_reg &= ~(BM_RCTL_MO_MASK);
6281 if (mac_reg & E1000_RCTL_MO_3)
6282 phy_reg |= (((mac_reg & E1000_RCTL_MO_3) >> E1000_RCTL_MO_SHIFT)
Bruce Allan17e813e2013-02-20 04:06:01 +00006283 << BM_RCTL_MO_SHIFT);
Bruce Allana4f58f52009-06-02 11:29:18 +00006284 if (mac_reg & E1000_RCTL_BAM)
6285 phy_reg |= BM_RCTL_BAM;
6286 if (mac_reg & E1000_RCTL_PMCF)
6287 phy_reg |= BM_RCTL_PMCF;
6288 mac_reg = er32(CTRL);
6289 if (mac_reg & E1000_CTRL_RFCE)
6290 phy_reg |= BM_RCTL_RFCE;
Bruce Allan2b6b1682011-05-13 07:20:09 +00006291 hw->phy.ops.write_reg_page(&adapter->hw, BM_RCTL, phy_reg);
Bruce Allana4f58f52009-06-02 11:29:18 +00006292
David Ertman74f350e2014-02-22 03:15:17 +00006293 wuc = E1000_WUC_PME_EN;
6294 if (wufc & (E1000_WUFC_MAG | E1000_WUFC_LNKC))
6295 wuc |= E1000_WUC_APME;
6296
Bruce Allana4f58f52009-06-02 11:29:18 +00006297 /* enable PHY wakeup in MAC register */
6298 ew32(WUFC, wufc);
David Ertman74f350e2014-02-22 03:15:17 +00006299 ew32(WUC, (E1000_WUC_PHY_WAKE | E1000_WUC_APMPME |
6300 E1000_WUC_PME_STATUS | wuc));
Bruce Allana4f58f52009-06-02 11:29:18 +00006301
6302 /* configure and enable PHY wakeup in PHY registers */
Bruce Allan2b6b1682011-05-13 07:20:09 +00006303 hw->phy.ops.write_reg_page(&adapter->hw, BM_WUFC, wufc);
David Ertman74f350e2014-02-22 03:15:17 +00006304 hw->phy.ops.write_reg_page(&adapter->hw, BM_WUC, wuc);
Bruce Allana4f58f52009-06-02 11:29:18 +00006305
6306 /* activate PHY wakeup */
Bruce Allan2b6b1682011-05-13 07:20:09 +00006307 wuc_enable |= BM_WUC_ENABLE_BIT | BM_WUC_HOST_WU_BIT;
6308 retval = e1000_disable_phy_wakeup_reg_access_bm(hw, &wuc_enable);
Bruce Allana4f58f52009-06-02 11:29:18 +00006309 if (retval)
6310 e_err("Could not set PHY Host Wakeup bit\n");
Bruce Allan75ce1532012-02-08 02:54:48 +00006311release:
Bruce Allan94d81862009-11-20 23:25:26 +00006312 hw->phy.ops.release(hw);
Bruce Allana4f58f52009-06-02 11:29:18 +00006313
6314 return retval;
6315}
6316
David Ertman2a7e19a2014-07-11 06:21:31 +00006317static void e1000e_flush_lpic(struct pci_dev *pdev)
6318{
6319 struct net_device *netdev = pci_get_drvdata(pdev);
6320 struct e1000_adapter *adapter = netdev_priv(netdev);
6321 struct e1000_hw *hw = &adapter->hw;
6322 u32 ret_val;
6323
6324 pm_runtime_get_sync(netdev->dev.parent);
6325
6326 ret_val = hw->phy.ops.acquire(hw);
6327 if (ret_val)
6328 goto fl_out;
6329
6330 pr_info("EEE TX LPI TIMER: %08X\n",
6331 er32(LPIC) >> E1000_LPIC_LPIET_SHIFT);
6332
6333 hw->phy.ops.release(hw);
6334
6335fl_out:
6336 pm_runtime_put_sync(netdev->dev.parent);
6337}
6338
Sasha Neftinf15bb6d2019-09-16 09:52:40 +03006339/* S0ix implementation */
6340static void e1000e_s0ix_entry_flow(struct e1000_adapter *adapter)
6341{
6342 struct e1000_hw *hw = &adapter->hw;
6343 u32 mac_data;
6344 u16 phy_data;
6345
6346 /* Disable the periodic inband message,
6347 * don't request PCIe clock in K1 page770_17[10:9] = 10b
6348 */
6349 e1e_rphy(hw, HV_PM_CTRL, &phy_data);
6350 phy_data &= ~HV_PM_CTRL_K1_CLK_REQ;
6351 phy_data |= BIT(10);
6352 e1e_wphy(hw, HV_PM_CTRL, phy_data);
6353
6354 /* Make sure we don't exit K1 every time a new packet arrives
6355 * 772_29[5] = 1 CS_Mode_Stay_In_K1
6356 */
6357 e1e_rphy(hw, I217_CGFREG, &phy_data);
6358 phy_data |= BIT(5);
6359 e1e_wphy(hw, I217_CGFREG, phy_data);
6360
6361 /* Change the MAC/PHY interface to SMBus
6362 * Force the SMBus in PHY page769_23[0] = 1
6363 * Force the SMBus in MAC CTRL_EXT[11] = 1
6364 */
6365 e1e_rphy(hw, CV_SMB_CTRL, &phy_data);
6366 phy_data |= CV_SMB_CTRL_FORCE_SMBUS;
6367 e1e_wphy(hw, CV_SMB_CTRL, phy_data);
6368 mac_data = er32(CTRL_EXT);
6369 mac_data |= E1000_CTRL_EXT_FORCE_SMBUS;
6370 ew32(CTRL_EXT, mac_data);
6371
6372 /* DFT control: PHY bit: page769_20[0] = 1
6373 * Gate PPW via EXTCNF_CTRL - set 0x0F00[7] = 1
6374 */
6375 e1e_rphy(hw, I82579_DFT_CTRL, &phy_data);
6376 phy_data |= BIT(0);
6377 e1e_wphy(hw, I82579_DFT_CTRL, phy_data);
6378
6379 mac_data = er32(EXTCNF_CTRL);
6380 mac_data |= E1000_EXTCNF_CTRL_GATE_PHY_CFG;
6381 ew32(EXTCNF_CTRL, mac_data);
6382
6383 /* Check MAC Tx/Rx packet buffer pointers.
6384 * Reset MAC Tx/Rx packet buffer pointers to suppress any
6385 * pending traffic indication that would prevent power gating.
6386 */
6387 mac_data = er32(TDFH);
6388 if (mac_data)
6389 ew32(TDFH, 0);
6390 mac_data = er32(TDFT);
6391 if (mac_data)
6392 ew32(TDFT, 0);
6393 mac_data = er32(TDFHS);
6394 if (mac_data)
6395 ew32(TDFHS, 0);
6396 mac_data = er32(TDFTS);
6397 if (mac_data)
6398 ew32(TDFTS, 0);
6399 mac_data = er32(TDFPC);
6400 if (mac_data)
6401 ew32(TDFPC, 0);
6402 mac_data = er32(RDFH);
6403 if (mac_data)
6404 ew32(RDFH, 0);
6405 mac_data = er32(RDFT);
6406 if (mac_data)
6407 ew32(RDFT, 0);
6408 mac_data = er32(RDFHS);
6409 if (mac_data)
6410 ew32(RDFHS, 0);
6411 mac_data = er32(RDFTS);
6412 if (mac_data)
6413 ew32(RDFTS, 0);
6414 mac_data = er32(RDFPC);
6415 if (mac_data)
6416 ew32(RDFPC, 0);
6417
6418 /* Enable the Dynamic Power Gating in the MAC */
6419 mac_data = er32(FEXTNVM7);
6420 mac_data |= BIT(22);
6421 ew32(FEXTNVM7, mac_data);
6422
6423 /* Disable the time synchronization clock */
6424 mac_data = er32(FEXTNVM7);
6425 mac_data |= BIT(31);
6426 mac_data &= ~BIT(0);
6427 ew32(FEXTNVM7, mac_data);
6428
6429 /* Dynamic Power Gating Enable */
6430 mac_data = er32(CTRL_EXT);
6431 mac_data |= BIT(3);
6432 ew32(CTRL_EXT, mac_data);
6433
Vitaly Lifshits632fbd52020-03-12 13:57:07 +02006434 /* Disable disconnected cable conditioning for Power Gating */
6435 mac_data = er32(DPGFR);
6436 mac_data |= BIT(2);
6437 ew32(DPGFR, mac_data);
6438
6439 /* Don't wake from dynamic Power Gating with clock request */
6440 mac_data = er32(FEXTNVM12);
6441 mac_data |= BIT(12);
6442 ew32(FEXTNVM12, mac_data);
6443
6444 /* Ungate PGCB clock */
6445 mac_data = er32(FEXTNVM9);
Vitaly Lifshitsa379b012020-12-08 12:56:32 -06006446 mac_data &= ~BIT(28);
Vitaly Lifshits632fbd52020-03-12 13:57:07 +02006447 ew32(FEXTNVM9, mac_data);
6448
6449 /* Enable K1 off to enable mPHY Power Gating */
6450 mac_data = er32(FEXTNVM6);
6451 mac_data |= BIT(31);
Vitaly Lifshitsa379b012020-12-08 12:56:32 -06006452 ew32(FEXTNVM6, mac_data);
Vitaly Lifshits632fbd52020-03-12 13:57:07 +02006453
6454 /* Enable mPHY power gating for any link and speed */
6455 mac_data = er32(FEXTNVM8);
6456 mac_data |= BIT(9);
6457 ew32(FEXTNVM8, mac_data);
6458
Sasha Neftinf15bb6d2019-09-16 09:52:40 +03006459 /* Enable the Dynamic Clock Gating in the DMA and MAC */
6460 mac_data = er32(CTRL_EXT);
6461 mac_data |= E1000_CTRL_EXT_DMA_DYN_CLK_EN;
6462 ew32(CTRL_EXT, mac_data);
6463
6464 /* No MAC DPG gating SLP_S0 in modern standby
6465 * Switch the logic of the lanphypc to use PMC counter
6466 */
6467 mac_data = er32(FEXTNVM5);
6468 mac_data |= BIT(7);
6469 ew32(FEXTNVM5, mac_data);
6470}
6471
6472static void e1000e_s0ix_exit_flow(struct e1000_adapter *adapter)
6473{
6474 struct e1000_hw *hw = &adapter->hw;
6475 u32 mac_data;
6476 u16 phy_data;
6477
6478 /* Disable the Dynamic Power Gating in the MAC */
6479 mac_data = er32(FEXTNVM7);
6480 mac_data &= 0xFFBFFFFF;
6481 ew32(FEXTNVM7, mac_data);
6482
6483 /* Enable the time synchronization clock */
6484 mac_data = er32(FEXTNVM7);
6485 mac_data |= BIT(0);
6486 ew32(FEXTNVM7, mac_data);
6487
Vitaly Lifshits632fbd52020-03-12 13:57:07 +02006488 /* Disable mPHY power gating for any link and speed */
6489 mac_data = er32(FEXTNVM8);
6490 mac_data &= ~BIT(9);
6491 ew32(FEXTNVM8, mac_data);
6492
6493 /* Disable K1 off */
6494 mac_data = er32(FEXTNVM6);
6495 mac_data &= ~BIT(31);
Vitaly Lifshitsa379b012020-12-08 12:56:32 -06006496 ew32(FEXTNVM6, mac_data);
Vitaly Lifshits632fbd52020-03-12 13:57:07 +02006497
6498 /* Disable Ungate PGCB clock */
6499 mac_data = er32(FEXTNVM9);
Vitaly Lifshitsa379b012020-12-08 12:56:32 -06006500 mac_data |= BIT(28);
Vitaly Lifshits632fbd52020-03-12 13:57:07 +02006501 ew32(FEXTNVM9, mac_data);
6502
6503 /* Cancel not waking from dynamic
6504 * Power Gating with clock request
6505 */
6506 mac_data = er32(FEXTNVM12);
6507 mac_data &= ~BIT(12);
6508 ew32(FEXTNVM12, mac_data);
6509
6510 /* Cancel disable disconnected cable conditioning
6511 * for Power Gating
6512 */
6513 mac_data = er32(DPGFR);
6514 mac_data &= ~BIT(2);
6515 ew32(DPGFR, mac_data);
6516
Sasha Neftinf15bb6d2019-09-16 09:52:40 +03006517 /* Disable Dynamic Power Gating */
6518 mac_data = er32(CTRL_EXT);
6519 mac_data &= 0xFFFFFFF7;
6520 ew32(CTRL_EXT, mac_data);
6521
6522 /* Disable the Dynamic Clock Gating in the DMA and MAC */
6523 mac_data = er32(CTRL_EXT);
6524 mac_data &= 0xFFF7FFFF;
6525 ew32(CTRL_EXT, mac_data);
6526
6527 /* Revert the lanphypc logic to use the internal Gbe counter
6528 * and not the PMC counter
6529 */
6530 mac_data = er32(FEXTNVM5);
6531 mac_data &= 0xFFFFFF7F;
6532 ew32(FEXTNVM5, mac_data);
6533
6534 /* Enable the periodic inband message,
6535 * Request PCIe clock in K1 page770_17[10:9] =01b
6536 */
6537 e1e_rphy(hw, HV_PM_CTRL, &phy_data);
6538 phy_data &= 0xFBFF;
6539 phy_data |= HV_PM_CTRL_K1_CLK_REQ;
6540 e1e_wphy(hw, HV_PM_CTRL, phy_data);
6541
6542 /* Return back configuration
6543 * 772_29[5] = 0 CS_Mode_Stay_In_K1
6544 */
6545 e1e_rphy(hw, I217_CGFREG, &phy_data);
6546 phy_data &= 0xFFDF;
6547 e1e_wphy(hw, I217_CGFREG, phy_data);
6548
6549 /* Change the MAC/PHY interface to Kumeran
6550 * Unforce the SMBus in PHY page769_23[0] = 0
6551 * Unforce the SMBus in MAC CTRL_EXT[11] = 0
6552 */
6553 e1e_rphy(hw, CV_SMB_CTRL, &phy_data);
6554 phy_data &= ~CV_SMB_CTRL_FORCE_SMBUS;
6555 e1e_wphy(hw, CV_SMB_CTRL, phy_data);
6556 mac_data = er32(CTRL_EXT);
6557 mac_data &= ~E1000_CTRL_EXT_FORCE_SMBUS;
6558 ew32(CTRL_EXT, mac_data);
6559}
6560
David Ertman28002092014-02-14 07:16:41 +00006561static int e1000e_pm_freeze(struct device *dev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07006562{
Chuhong Yuanee2e80c2019-07-23 22:15:13 +08006563 struct net_device *netdev = dev_get_drvdata(dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006564 struct e1000_adapter *adapter = netdev_priv(netdev);
Alexander Duycka7023812019-10-11 08:34:52 -07006565 bool present;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006566
Alexander Duycka7023812019-10-11 08:34:52 -07006567 rtnl_lock();
6568
6569 present = netif_device_present(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006570 netif_device_detach(netdev);
6571
Alexander Duycka7023812019-10-11 08:34:52 -07006572 if (present && netif_running(netdev)) {
Bruce Allanbb9e44d2012-03-21 00:39:12 +00006573 int count = E1000_CHECK_RESET_COUNT;
6574
6575 while (test_bit(__E1000_RESETTING, &adapter->state) && count--)
Arjan van de Venab6973a2019-06-14 17:29:35 -07006576 usleep_range(10000, 11000);
Bruce Allanbb9e44d2012-03-21 00:39:12 +00006577
Auke Kokbc7f75f2007-09-17 12:30:59 -07006578 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
David Ertman28002092014-02-14 07:16:41 +00006579
6580 /* Quiesce the device without resetting the hardware */
6581 e1000e_down(adapter, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006582 e1000_free_irq(adapter);
6583 }
Alexander Duycka7023812019-10-11 08:34:52 -07006584 rtnl_unlock();
6585
Jeff Kirsher9f47a482017-03-23 20:47:15 -07006586 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006587
David Ertman28002092014-02-14 07:16:41 +00006588 /* Allow time for pending master requests to run */
6589 e1000e_disable_pcie_master(&adapter->hw);
6590
6591 return 0;
6592}
6593
6594static int __e1000_shutdown(struct pci_dev *pdev, bool runtime)
6595{
6596 struct net_device *netdev = pci_get_drvdata(pdev);
6597 struct e1000_adapter *adapter = netdev_priv(netdev);
6598 struct e1000_hw *hw = &adapter->hw;
Chen Yu6bf6be12020-05-22 01:59:00 +08006599 u32 ctrl, ctrl_ext, rctl, status, wufc;
David Ertman28002092014-02-14 07:16:41 +00006600 int retval = 0;
6601
Chen Yu6bf6be12020-05-22 01:59:00 +08006602 /* Runtime suspend should only enable wakeup for link changes */
6603 if (runtime)
6604 wufc = E1000_WUFC_LNKC;
6605 else if (device_may_wakeup(&pdev->dev))
6606 wufc = adapter->wol;
6607 else
6608 wufc = 0;
6609
Auke Kokbc7f75f2007-09-17 12:30:59 -07006610 status = er32(STATUS);
6611 if (status & E1000_STATUS_LU)
6612 wufc &= ~E1000_WUFC_LNKC;
6613
6614 if (wufc) {
6615 e1000_setup_rctl(adapter);
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00006616 e1000e_set_rx_mode(netdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006617
6618 /* turn on all-multi mode if wake on multicast is enabled */
6619 if (wufc & E1000_WUFC_MC) {
6620 rctl = er32(RCTL);
6621 rctl |= E1000_RCTL_MPE;
6622 ew32(RCTL, rctl);
6623 }
6624
6625 ctrl = er32(CTRL);
Bruce Allana4f58f52009-06-02 11:29:18 +00006626 ctrl |= E1000_CTRL_ADVD3WUC;
6627 if (!(adapter->flags2 & FLAG2_HAS_PHY_WAKEUP))
6628 ctrl |= E1000_CTRL_EN_PHY_PWR_MGMT;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006629 ew32(CTRL, ctrl);
6630
Jeff Kirsher318a94d2008-03-28 09:15:16 -07006631 if (adapter->hw.phy.media_type == e1000_media_type_fiber ||
6632 adapter->hw.phy.media_type ==
6633 e1000_media_type_internal_serdes) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006634 /* keep the laser running in D3 */
6635 ctrl_ext = er32(CTRL_EXT);
Bruce Allan93a23f42009-12-08 07:27:41 +00006636 ctrl_ext |= E1000_CTRL_EXT_SDP3_DATA;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006637 ew32(CTRL_EXT, ctrl_ext);
6638 }
6639
David Ertman63eb48f2014-02-14 07:16:46 +00006640 if (!runtime)
6641 e1000e_power_up_phy(adapter);
6642
Bruce Allan97ac8ca2008-04-29 09:16:05 -07006643 if (adapter->flags & FLAG_IS_ICH)
Bruce Allan99730e42011-05-13 07:19:48 +00006644 e1000_suspend_workarounds_ich8lan(&adapter->hw);
Bruce Allan97ac8ca2008-04-29 09:16:05 -07006645
Bruce Allan82776a42009-08-14 14:35:33 +00006646 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
Bruce Allana4f58f52009-06-02 11:29:18 +00006647 /* enable wakeup by the PHY */
6648 retval = e1000_init_phy_wakeup(adapter, wufc);
6649 if (retval)
6650 return retval;
6651 } else {
6652 /* enable wakeup by the MAC */
6653 ew32(WUFC, wufc);
6654 ew32(WUC, E1000_WUC_PME_EN);
6655 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07006656 } else {
6657 ew32(WUC, 0);
6658 ew32(WUFC, 0);
David Ertman28002092014-02-14 07:16:41 +00006659
6660 e1000_power_down_phy(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006661 }
6662
David Ertman74f350e2014-02-22 03:15:17 +00006663 if (adapter->hw.phy.type == e1000_phy_igp_3) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07006664 e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw);
Sasha Neftinc8744f42017-04-06 10:26:47 +03006665 } else if (hw->mac.type >= e1000_pch_lpt) {
Chen Yu6bf6be12020-05-22 01:59:00 +08006666 if (wufc && !(wufc & (E1000_WUFC_EX | E1000_WUFC_MC | E1000_WUFC_BC)))
David Ertman74f350e2014-02-22 03:15:17 +00006667 /* ULP does not support wake from unicast, multicast
6668 * or broadcast.
6669 */
6670 retval = e1000_enable_ulp_lpt_lp(hw, !runtime);
6671
6672 if (retval)
6673 return retval;
6674 }
6675
Raanan Avargilf5ac7442015-07-06 16:48:00 +03006676 /* Ensure that the appropriate bits are set in LPI_CTRL
6677 * for EEE in Sx
6678 */
6679 if ((hw->phy.type >= e1000_phy_i217) &&
6680 adapter->eee_advert && hw->dev_spec.ich8lan.eee_lp_ability) {
6681 u16 lpi_ctrl = 0;
6682
6683 retval = hw->phy.ops.acquire(hw);
6684 if (!retval) {
6685 retval = e1e_rphy_locked(hw, I82579_LPI_CTRL,
6686 &lpi_ctrl);
6687 if (!retval) {
6688 if (adapter->eee_advert &
6689 hw->dev_spec.ich8lan.eee_lp_ability &
6690 I82579_EEE_100_SUPPORTED)
6691 lpi_ctrl |= I82579_LPI_CTRL_100_ENABLE;
6692 if (adapter->eee_advert &
6693 hw->dev_spec.ich8lan.eee_lp_ability &
6694 I82579_EEE_1000_SUPPORTED)
6695 lpi_ctrl |= I82579_LPI_CTRL_1000_ENABLE;
6696
6697 retval = e1e_wphy_locked(hw, I82579_LPI_CTRL,
6698 lpi_ctrl);
6699 }
6700 }
6701 hw->phy.ops.release(hw);
6702 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07006703
Bruce Allane921eb12012-11-28 09:28:37 +00006704 /* Release control of h/w to f/w. If f/w is AMT enabled, this
Bruce Allanad680762008-03-28 09:15:03 -07006705 * would have already happened in close and is redundant.
6706 */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006707 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006708
Dean Nelson24b41c92013-06-13 03:55:44 +00006709 pci_clear_master(pdev);
6710
Bruce Allane921eb12012-11-28 09:28:37 +00006711 /* The pci-e switch on some quad port adapters will report a
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006712 * correctable error when the MAC transitions from D0 to D3. To
6713 * prevent this we need to mask off the correctable errors on the
6714 * downstream port of the pci-e switch.
Li Zhange8c254c2013-08-13 18:42:58 +00006715 *
6716 * We don't have the associated upstream bridge while assigning
6717 * the PCI device into guest. For example, the KVM on power is
6718 * one of the cases.
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006719 */
6720 if (adapter->flags & FLAG_IS_QUAD_PORT) {
6721 struct pci_dev *us_dev = pdev->bus->self;
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006722 u16 devctl;
6723
Li Zhange8c254c2013-08-13 18:42:58 +00006724 if (!us_dev)
6725 return 0;
6726
Jiang Liuf8c0fca2012-08-20 13:30:43 -06006727 pcie_capability_read_word(us_dev, PCI_EXP_DEVCTL, &devctl);
6728 pcie_capability_write_word(us_dev, PCI_EXP_DEVCTL,
6729 (devctl & ~PCI_EXP_DEVCTL_CERE));
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006730
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006731 pci_save_state(pdev);
6732 pci_prepare_to_sleep(pdev);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006733
Jiang Liuf8c0fca2012-08-20 13:30:43 -06006734 pcie_capability_write_word(us_dev, PCI_EXP_DEVCTL, devctl);
Alexander Duyck005cbdf2008-11-21 16:49:10 -08006735 }
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006736
6737 return 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006738}
6739
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006740/**
Yanir Lubetkinbeb0a152015-06-10 01:15:05 +03006741 * __e1000e_disable_aspm - Disable ASPM states
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006742 * @pdev: pointer to PCI device struct
6743 * @state: bit-mask of ASPM states to disable
Yanir Lubetkinbeb0a152015-06-10 01:15:05 +03006744 * @locked: indication if this context holds pci_bus_sem locked.
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006745 *
6746 * Some devices *must* have certain ASPM states disabled per hardware errata.
6747 **/
Yanir Lubetkinbeb0a152015-06-10 01:15:05 +03006748static void __e1000e_disable_aspm(struct pci_dev *pdev, u16 state, int locked)
Bruce Allan6f461f62010-04-27 03:33:04 +00006749{
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006750 struct pci_dev *parent = pdev->bus->self;
6751 u16 aspm_dis_mask = 0;
6752 u16 pdev_aspmc, parent_aspmc;
Bjorn Helgaasffe0b2ff2012-12-06 06:40:07 +00006753
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006754 switch (state) {
6755 case PCIE_LINK_STATE_L0S:
6756 case PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1:
6757 aspm_dis_mask |= PCI_EXP_LNKCTL_ASPM_L0S;
Jeff Kirsher5463fce62020-06-03 20:07:26 -07006758 fallthrough; /* can't have L1 without L0s */
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006759 case PCIE_LINK_STATE_L1:
6760 aspm_dis_mask |= PCI_EXP_LNKCTL_ASPM_L1;
6761 break;
6762 default:
6763 return;
6764 }
6765
6766 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &pdev_aspmc);
6767 pdev_aspmc &= PCI_EXP_LNKCTL_ASPMC;
6768
6769 if (parent) {
6770 pcie_capability_read_word(parent, PCI_EXP_LNKCTL,
6771 &parent_aspmc);
6772 parent_aspmc &= PCI_EXP_LNKCTL_ASPMC;
6773 }
6774
6775 /* Nothing to do if the ASPM states to be disabled already are */
6776 if (!(pdev_aspmc & aspm_dis_mask) &&
6777 (!parent || !(parent_aspmc & aspm_dis_mask)))
6778 return;
6779
6780 dev_info(&pdev->dev, "Disabling ASPM %s %s\n",
6781 (aspm_dis_mask & pdev_aspmc & PCI_EXP_LNKCTL_ASPM_L0S) ?
6782 "L0s" : "",
6783 (aspm_dis_mask & pdev_aspmc & PCI_EXP_LNKCTL_ASPM_L1) ?
6784 "L1" : "");
6785
6786#ifdef CONFIG_PCIEASPM
Yanir Lubetkinbeb0a152015-06-10 01:15:05 +03006787 if (locked)
6788 pci_disable_link_state_locked(pdev, state);
6789 else
6790 pci_disable_link_state(pdev, state);
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006791
6792 /* Double-check ASPM control. If not disabled by the above, the
6793 * BIOS is preventing that from happening (or CONFIG_PCIEASPM is
6794 * not enabled); override by writing PCI config space directly.
6795 */
6796 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &pdev_aspmc);
6797 pdev_aspmc &= PCI_EXP_LNKCTL_ASPMC;
6798
6799 if (!(aspm_dis_mask & pdev_aspmc))
6800 return;
6801#endif
Bjorn Helgaasffe0b2ff2012-12-06 06:40:07 +00006802
Bruce Allane921eb12012-11-28 09:28:37 +00006803 /* Both device and parent should have the same ASPM setting.
Bruce Allan6f461f62010-04-27 03:33:04 +00006804 * Disable ASPM in downstream component first and then upstream.
Auke Kok1eae4eb2007-10-31 15:22:00 -07006805 */
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006806 pcie_capability_clear_word(pdev, PCI_EXP_LNKCTL, aspm_dis_mask);
Bruce Allan6f461f62010-04-27 03:33:04 +00006807
Carolyn Wyborny13129d92013-08-03 01:53:54 +00006808 if (parent)
6809 pcie_capability_clear_word(parent, PCI_EXP_LNKCTL,
6810 aspm_dis_mask);
Auke Kok1eae4eb2007-10-31 15:22:00 -07006811}
6812
Yanir Lubetkinbeb0a152015-06-10 01:15:05 +03006813/**
6814 * e1000e_disable_aspm - Disable ASPM states.
6815 * @pdev: pointer to PCI device struct
6816 * @state: bit-mask of ASPM states to disable
6817 *
6818 * This function acquires the pci_bus_sem!
6819 * Some devices *must* have certain ASPM states disabled per hardware errata.
6820 **/
6821static void e1000e_disable_aspm(struct pci_dev *pdev, u16 state)
6822{
6823 __e1000e_disable_aspm(pdev, state, 0);
6824}
6825
6826/**
Sasha Neftin39da2ca2021-03-14 15:59:20 +02006827 * e1000e_disable_aspm_locked - Disable ASPM states.
Yanir Lubetkinbeb0a152015-06-10 01:15:05 +03006828 * @pdev: pointer to PCI device struct
6829 * @state: bit-mask of ASPM states to disable
6830 *
6831 * This function must be called with pci_bus_sem acquired!
6832 * Some devices *must* have certain ASPM states disabled per hardware errata.
6833 **/
6834static void e1000e_disable_aspm_locked(struct pci_dev *pdev, u16 state)
6835{
6836 __e1000e_disable_aspm(pdev, state, 1);
6837}
6838
Alexander Duycka7023812019-10-11 08:34:52 -07006839static int e1000e_pm_thaw(struct device *dev)
6840{
6841 struct net_device *netdev = dev_get_drvdata(dev);
6842 struct e1000_adapter *adapter = netdev_priv(netdev);
6843 int rc = 0;
6844
6845 e1000e_set_interrupt_capability(adapter);
6846
6847 rtnl_lock();
6848 if (netif_running(netdev)) {
6849 rc = e1000_request_irq(adapter);
6850 if (rc)
6851 goto err_irq;
6852
6853 e1000e_up(adapter);
6854 }
6855
6856 netif_device_attach(netdev);
6857err_irq:
6858 rtnl_unlock();
6859
6860 return rc;
6861}
6862
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006863static int __e1000_resume(struct pci_dev *pdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07006864{
6865 struct net_device *netdev = pci_get_drvdata(pdev);
6866 struct e1000_adapter *adapter = netdev_priv(netdev);
6867 struct e1000_hw *hw = &adapter->hw;
Bruce Allan78cd29d2011-03-24 03:09:03 +00006868 u16 aspm_disable_flag = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07006869
Bruce Allan78cd29d2011-03-24 03:09:03 +00006870 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L0S)
6871 aspm_disable_flag = PCIE_LINK_STATE_L0S;
6872 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
6873 aspm_disable_flag |= PCIE_LINK_STATE_L1;
6874 if (aspm_disable_flag)
Raanan Avargil2758f9e2015-07-06 17:57:36 +03006875 e1000e_disable_aspm(pdev, aspm_disable_flag);
Bruce Allan78cd29d2011-03-24 03:09:03 +00006876
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00006877 pci_set_master(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09006878
Bruce Allan2fbe4522012-04-19 03:21:47 +00006879 if (hw->mac.type >= e1000_pch2lan)
Bruce Allan99730e42011-05-13 07:19:48 +00006880 e1000_resume_workarounds_pchlan(&adapter->hw);
6881
Auke Kokbc7f75f2007-09-17 12:30:59 -07006882 e1000e_power_up_phy(adapter);
Bruce Allana4f58f52009-06-02 11:29:18 +00006883
6884 /* report the system wakeup cause from S3/S4 */
6885 if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
6886 u16 phy_data;
6887
6888 e1e_rphy(&adapter->hw, BM_WUS, &phy_data);
6889 if (phy_data) {
6890 e_info("PHY Wakeup cause - %s\n",
Bruce Allan17e813e2013-02-20 04:06:01 +00006891 phy_data & E1000_WUS_EX ? "Unicast Packet" :
6892 phy_data & E1000_WUS_MC ? "Multicast Packet" :
6893 phy_data & E1000_WUS_BC ? "Broadcast Packet" :
6894 phy_data & E1000_WUS_MAG ? "Magic Packet" :
6895 phy_data & E1000_WUS_LNKC ?
6896 "Link Status Change" : "other");
Bruce Allana4f58f52009-06-02 11:29:18 +00006897 }
6898 e1e_wphy(&adapter->hw, BM_WUS, ~0);
6899 } else {
6900 u32 wus = er32(WUS);
David Ertman6cf08d12014-04-05 06:07:00 +00006901
Bruce Allana4f58f52009-06-02 11:29:18 +00006902 if (wus) {
6903 e_info("MAC Wakeup cause - %s\n",
Bruce Allan17e813e2013-02-20 04:06:01 +00006904 wus & E1000_WUS_EX ? "Unicast Packet" :
6905 wus & E1000_WUS_MC ? "Multicast Packet" :
6906 wus & E1000_WUS_BC ? "Broadcast Packet" :
6907 wus & E1000_WUS_MAG ? "Magic Packet" :
6908 wus & E1000_WUS_LNKC ? "Link Status Change" :
6909 "other");
Bruce Allana4f58f52009-06-02 11:29:18 +00006910 }
6911 ew32(WUS, ~0);
6912 }
6913
Auke Kokbc7f75f2007-09-17 12:30:59 -07006914 e1000e_reset(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006915
Bruce Allancd791612010-05-10 14:59:51 +00006916 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006917
Bruce Allane921eb12012-11-28 09:28:37 +00006918 /* If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07006919 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07006920 * under the control of the driver.
6921 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07006922 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00006923 e1000e_get_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07006924
6925 return 0;
6926}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006927
Wei Yongjunf2d75b12021-03-17 14:52:34 +00006928static __maybe_unused int e1000e_pm_prepare(struct device *dev)
Chen Yuccf8b942020-12-01 09:21:50 +08006929{
6930 return pm_runtime_suspended(dev) &&
6931 pm_suspend_via_firmware();
6932}
6933
Arnd Bergmann880e6262020-05-27 15:47:00 +02006934static __maybe_unused int e1000e_pm_suspend(struct device *dev)
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006935{
Sasha Neftinf15bb6d2019-09-16 09:52:40 +03006936 struct net_device *netdev = pci_get_drvdata(to_pci_dev(dev));
6937 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006938 struct pci_dev *pdev = to_pci_dev(dev);
Chris Wilson833521e2017-05-31 18:50:43 +03006939 int rc;
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006940
David Ertman2a7e19a2014-07-11 06:21:31 +00006941 e1000e_flush_lpic(pdev);
6942
David Ertman28002092014-02-14 07:16:41 +00006943 e1000e_pm_freeze(dev);
6944
Chris Wilson833521e2017-05-31 18:50:43 +03006945 rc = __e1000_shutdown(pdev, false);
Mario Limonciello808e0d82020-12-14 13:29:32 -06006946 if (rc) {
Chris Wilson833521e2017-05-31 18:50:43 +03006947 e1000e_pm_thaw(dev);
Mario Limonciello808e0d82020-12-14 13:29:32 -06006948 } else {
6949 /* Introduce S0ix implementation */
Mario Limonciello3c98cbf2020-12-14 13:29:35 -06006950 if (adapter->flags2 & FLAG2_ENABLE_S0IX_FLOWS)
Mario Limonciello808e0d82020-12-14 13:29:32 -06006951 e1000e_s0ix_entry_flow(adapter);
6952 }
Sasha Neftinf15bb6d2019-09-16 09:52:40 +03006953
Chris Wilson833521e2017-05-31 18:50:43 +03006954 return rc;
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006955}
6956
Arnd Bergmann880e6262020-05-27 15:47:00 +02006957static __maybe_unused int e1000e_pm_resume(struct device *dev)
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006958{
Sasha Neftinf15bb6d2019-09-16 09:52:40 +03006959 struct net_device *netdev = pci_get_drvdata(to_pci_dev(dev));
6960 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006961 struct pci_dev *pdev = to_pci_dev(dev);
David Ertman28002092014-02-14 07:16:41 +00006962 int rc;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006963
Sasha Neftinf15bb6d2019-09-16 09:52:40 +03006964 /* Introduce S0ix implementation */
Mario Limonciello3c98cbf2020-12-14 13:29:35 -06006965 if (adapter->flags2 & FLAG2_ENABLE_S0IX_FLOWS)
Sasha Neftinf15bb6d2019-09-16 09:52:40 +03006966 e1000e_s0ix_exit_flow(adapter);
6967
David Ertman28002092014-02-14 07:16:41 +00006968 rc = __e1000_resume(pdev);
6969 if (rc)
6970 return rc;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006971
David Ertman28002092014-02-14 07:16:41 +00006972 return e1000e_pm_thaw(dev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006973}
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006974
Arnd Bergmann880e6262020-05-27 15:47:00 +02006975static __maybe_unused int e1000e_pm_runtime_idle(struct device *dev)
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006976{
Chuhong Yuanee2e80c2019-07-23 22:15:13 +08006977 struct net_device *netdev = dev_get_drvdata(dev);
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006978 struct e1000_adapter *adapter = netdev_priv(netdev);
David Ertman2116bc252014-07-11 06:21:23 +00006979 u16 eee_lp;
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006980
David Ertman2116bc252014-07-11 06:21:23 +00006981 eee_lp = adapter->hw.dev_spec.ich8lan.eee_lp_ability;
6982
6983 if (!e1000e_has_link(adapter)) {
6984 adapter->hw.dev_spec.ich8lan.eee_lp_ability = eee_lp;
David Ertman63eb48f2014-02-14 07:16:46 +00006985 pm_schedule_suspend(dev, 5 * MSEC_PER_SEC);
David Ertman2116bc252014-07-11 06:21:23 +00006986 }
Rafael J. Wysockia0340162010-03-17 23:12:24 -07006987
6988 return -EBUSY;
6989}
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00006990
Arnd Bergmann880e6262020-05-27 15:47:00 +02006991static __maybe_unused int e1000e_pm_runtime_resume(struct device *dev)
David Ertman63eb48f2014-02-14 07:16:46 +00006992{
6993 struct pci_dev *pdev = to_pci_dev(dev);
6994 struct net_device *netdev = pci_get_drvdata(pdev);
6995 struct e1000_adapter *adapter = netdev_priv(netdev);
6996 int rc;
6997
6998 rc = __e1000_resume(pdev);
6999 if (rc)
7000 return rc;
7001
7002 if (netdev->flags & IFF_UP)
Alexander Duyck386164d2015-10-27 16:59:31 -07007003 e1000e_up(adapter);
David Ertman63eb48f2014-02-14 07:16:46 +00007004
7005 return rc;
7006}
7007
Arnd Bergmann880e6262020-05-27 15:47:00 +02007008static __maybe_unused int e1000e_pm_runtime_suspend(struct device *dev)
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00007009{
7010 struct pci_dev *pdev = to_pci_dev(dev);
7011 struct net_device *netdev = pci_get_drvdata(pdev);
7012 struct e1000_adapter *adapter = netdev_priv(netdev);
7013
David Ertman63eb48f2014-02-14 07:16:46 +00007014 if (netdev->flags & IFF_UP) {
7015 int count = E1000_CHECK_RESET_COUNT;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00007016
David Ertman63eb48f2014-02-14 07:16:46 +00007017 while (test_bit(__E1000_RESETTING, &adapter->state) && count--)
Arjan van de Venab6973a2019-06-14 17:29:35 -07007018 usleep_range(10000, 11000);
David Ertman63eb48f2014-02-14 07:16:46 +00007019
7020 WARN_ON(test_bit(__E1000_RESETTING, &adapter->state));
7021
7022 /* Down the device without resetting the hardware */
7023 e1000e_down(adapter, false);
7024 }
7025
7026 if (__e1000_shutdown(pdev, true)) {
7027 e1000e_pm_runtime_resume(dev);
7028 return -EBUSY;
7029 }
7030
7031 return 0;
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00007032}
Auke Kokbc7f75f2007-09-17 12:30:59 -07007033
7034static void e1000_shutdown(struct pci_dev *pdev)
7035{
David Ertman2a7e19a2014-07-11 06:21:31 +00007036 e1000e_flush_lpic(pdev);
7037
David Ertman28002092014-02-14 07:16:41 +00007038 e1000e_pm_freeze(&pdev->dev);
7039
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00007040 __e1000_shutdown(pdev, false);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007041}
7042
7043#ifdef CONFIG_NET_POLL_CONTROLLER
Dongdong Deng147b2c82010-11-16 19:50:15 -08007044
Bruce Allan8bb62862013-01-16 08:46:49 +00007045static irqreturn_t e1000_intr_msix(int __always_unused irq, void *data)
Dongdong Deng147b2c82010-11-16 19:50:15 -08007046{
7047 struct net_device *netdev = data;
7048 struct e1000_adapter *adapter = netdev_priv(netdev);
Dongdong Deng147b2c82010-11-16 19:50:15 -08007049
7050 if (adapter->msix_entries) {
Bruce Allan90da0662011-01-06 07:02:53 +00007051 int vector, msix_irq;
7052
Dongdong Deng147b2c82010-11-16 19:50:15 -08007053 vector = 0;
7054 msix_irq = adapter->msix_entries[vector].vector;
Konstantin Khlebnikovfd8e5972017-05-19 10:18:49 +03007055 if (disable_hardirq(msix_irq))
7056 e1000_intr_msix_rx(msix_irq, netdev);
Dongdong Deng147b2c82010-11-16 19:50:15 -08007057 enable_irq(msix_irq);
7058
7059 vector++;
7060 msix_irq = adapter->msix_entries[vector].vector;
Konstantin Khlebnikovfd8e5972017-05-19 10:18:49 +03007061 if (disable_hardirq(msix_irq))
7062 e1000_intr_msix_tx(msix_irq, netdev);
Dongdong Deng147b2c82010-11-16 19:50:15 -08007063 enable_irq(msix_irq);
7064
7065 vector++;
7066 msix_irq = adapter->msix_entries[vector].vector;
Konstantin Khlebnikovfd8e5972017-05-19 10:18:49 +03007067 if (disable_hardirq(msix_irq))
7068 e1000_msix_other(msix_irq, netdev);
Dongdong Deng147b2c82010-11-16 19:50:15 -08007069 enable_irq(msix_irq);
7070 }
7071
7072 return IRQ_HANDLED;
7073}
7074
Bruce Allane921eb12012-11-28 09:28:37 +00007075/**
7076 * e1000_netpoll
7077 * @netdev: network interface device structure
7078 *
Auke Kokbc7f75f2007-09-17 12:30:59 -07007079 * Polling 'interrupt' - used by things like netconsole to send skbs
7080 * without having to re-enable interrupts. It's not called while
7081 * the interrupt routine is executing.
7082 */
7083static void e1000_netpoll(struct net_device *netdev)
7084{
7085 struct e1000_adapter *adapter = netdev_priv(netdev);
7086
Dongdong Deng147b2c82010-11-16 19:50:15 -08007087 switch (adapter->int_mode) {
7088 case E1000E_INT_MODE_MSIX:
7089 e1000_intr_msix(adapter->pdev->irq, netdev);
7090 break;
7091 case E1000E_INT_MODE_MSI:
WANG Cong31119122016-12-10 14:22:42 -08007092 if (disable_hardirq(adapter->pdev->irq))
7093 e1000_intr_msi(adapter->pdev->irq, netdev);
Dongdong Deng147b2c82010-11-16 19:50:15 -08007094 enable_irq(adapter->pdev->irq);
7095 break;
Bruce Allane80bd1d2013-05-01 01:19:46 +00007096 default: /* E1000E_INT_MODE_LEGACY */
WANG Cong31119122016-12-10 14:22:42 -08007097 if (disable_hardirq(adapter->pdev->irq))
7098 e1000_intr(adapter->pdev->irq, netdev);
Dongdong Deng147b2c82010-11-16 19:50:15 -08007099 enable_irq(adapter->pdev->irq);
7100 break;
7101 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07007102}
7103#endif
7104
7105/**
7106 * e1000_io_error_detected - called when PCI error is detected
7107 * @pdev: Pointer to PCI device
7108 * @state: The current pci connection state
7109 *
7110 * This function is called after a PCI bus error affecting
7111 * this device has been detected.
7112 */
7113static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
7114 pci_channel_state_t state)
7115{
Alexander Duycka7023812019-10-11 08:34:52 -07007116 e1000e_pm_freeze(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007117
Mike Masonc93b5a72009-06-30 12:45:53 +00007118 if (state == pci_channel_io_perm_failure)
7119 return PCI_ERS_RESULT_DISCONNECT;
7120
Auke Kokbc7f75f2007-09-17 12:30:59 -07007121 pci_disable_device(pdev);
7122
Hao Chen800b74a2021-05-19 14:14:44 +08007123 /* Request a slot reset. */
Auke Kokbc7f75f2007-09-17 12:30:59 -07007124 return PCI_ERS_RESULT_NEED_RESET;
7125}
7126
7127/**
7128 * e1000_io_slot_reset - called after the pci bus has been reset.
7129 * @pdev: Pointer to PCI device
7130 *
7131 * Restart the card from scratch, as if from a cold-boot. Implementation
David Ertman28002092014-02-14 07:16:41 +00007132 * resembles the first-half of the e1000e_pm_resume routine.
Auke Kokbc7f75f2007-09-17 12:30:59 -07007133 */
7134static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
7135{
7136 struct net_device *netdev = pci_get_drvdata(pdev);
7137 struct e1000_adapter *adapter = netdev_priv(netdev);
7138 struct e1000_hw *hw = &adapter->hw;
Bruce Allan78cd29d2011-03-24 03:09:03 +00007139 u16 aspm_disable_flag = 0;
Taku Izumi6e4f6f62008-06-20 11:57:02 +09007140 int err;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00007141 pci_ers_result_t result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007142
Bruce Allan78cd29d2011-03-24 03:09:03 +00007143 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L0S)
7144 aspm_disable_flag = PCIE_LINK_STATE_L0S;
Bruce Allan6f461f62010-04-27 03:33:04 +00007145 if (adapter->flags2 & FLAG2_DISABLE_ASPM_L1)
Bruce Allan78cd29d2011-03-24 03:09:03 +00007146 aspm_disable_flag |= PCIE_LINK_STATE_L1;
7147 if (aspm_disable_flag)
Raanan Avargil2758f9e2015-07-06 17:57:36 +03007148 e1000e_disable_aspm_locked(pdev, aspm_disable_flag);
Bruce Allan78cd29d2011-03-24 03:09:03 +00007149
Bruce Allanf0f422e2008-08-04 17:21:53 -07007150 err = pci_enable_device_mem(pdev);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09007151 if (err) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07007152 dev_err(&pdev->dev,
7153 "Cannot re-enable PCI device after reset.\n");
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00007154 result = PCI_ERS_RESULT_DISCONNECT;
7155 } else {
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00007156 pdev->state_saved = true;
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00007157 pci_restore_state(pdev);
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00007158 pci_set_master(pdev);
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00007159
7160 pci_enable_wake(pdev, PCI_D3hot, 0);
7161 pci_enable_wake(pdev, PCI_D3cold, 0);
7162
7163 e1000e_reset(adapter);
7164 ew32(WUS, ~0);
7165 result = PCI_ERS_RESULT_RECOVERED;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007166 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07007167
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00007168 return result;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007169}
7170
7171/**
7172 * e1000_io_resume - called when traffic can start flowing again.
7173 * @pdev: Pointer to PCI device
7174 *
7175 * This callback is called when the error recovery driver tells us that
7176 * its OK to resume normal operation. Implementation resembles the
David Ertman28002092014-02-14 07:16:41 +00007177 * second-half of the e1000e_pm_resume routine.
Auke Kokbc7f75f2007-09-17 12:30:59 -07007178 */
7179static void e1000_io_resume(struct pci_dev *pdev)
7180{
7181 struct net_device *netdev = pci_get_drvdata(pdev);
7182 struct e1000_adapter *adapter = netdev_priv(netdev);
7183
Bruce Allancd791612010-05-10 14:59:51 +00007184 e1000_init_manageability_pt(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007185
Alexander Duycka7023812019-10-11 08:34:52 -07007186 e1000e_pm_thaw(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007187
Bruce Allane921eb12012-11-28 09:28:37 +00007188 /* If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07007189 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07007190 * under the control of the driver.
7191 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07007192 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00007193 e1000e_get_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007194}
7195
7196static void e1000_print_device_info(struct e1000_adapter *adapter)
7197{
7198 struct e1000_hw *hw = &adapter->hw;
7199 struct net_device *netdev = adapter->netdev;
Bruce Allan073287c2010-11-24 06:01:51 +00007200 u32 ret_val;
7201 u8 pba_str[E1000_PBANUM_LENGTH];
Auke Kokbc7f75f2007-09-17 12:30:59 -07007202
7203 /* print bus type/speed/width info */
Bruce Allana5cc7642011-03-19 00:31:23 +00007204 e_info("(PCI Express:2.5GT/s:%s) %pM\n",
Jeff Kirsher44defeb2008-08-04 17:20:41 -07007205 /* bus width */
7206 ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" :
Bruce Allanf0ff4392013-02-20 04:05:39 +00007207 "Width x1"),
Jeff Kirsher44defeb2008-08-04 17:20:41 -07007208 /* MAC address */
Johannes Berg7c510e42008-10-27 17:47:26 -07007209 netdev->dev_addr);
Jeff Kirsher44defeb2008-08-04 17:20:41 -07007210 e_info("Intel(R) PRO/%s Network Connection\n",
7211 (hw->phy.type == e1000_phy_ife) ? "10/100" : "1000");
Bruce Allan073287c2010-11-24 06:01:51 +00007212 ret_val = e1000_read_pba_string_generic(hw, pba_str,
7213 E1000_PBANUM_LENGTH);
7214 if (ret_val)
Bruce Allanf2315bf2011-12-16 00:46:59 +00007215 strlcpy((char *)pba_str, "Unknown", sizeof(pba_str));
Bruce Allan073287c2010-11-24 06:01:51 +00007216 e_info("MAC: %d, PHY: %d, PBA No: %s\n",
7217 hw->mac.type, hw->phy.type, pba_str);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007218}
7219
Auke Kok10aa4c02008-08-04 17:21:20 -07007220static void e1000_eeprom_checks(struct e1000_adapter *adapter)
7221{
7222 struct e1000_hw *hw = &adapter->hw;
7223 int ret_val;
7224 u16 buf = 0;
7225
7226 if (hw->mac.type != e1000_82573)
7227 return;
7228
7229 ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &buf);
Bruce Allane885d762012-01-31 06:37:32 +00007230 le16_to_cpus(&buf);
Jacob Keller18dd2392016-04-13 16:08:32 -07007231 if (!ret_val && (!(buf & BIT(0)))) {
Auke Kok10aa4c02008-08-04 17:21:20 -07007232 /* Deep Smart Power Down (DSPD) */
Frans Pop6c2a9ef2008-09-22 14:52:22 -07007233 dev_warn(&adapter->pdev->dev,
7234 "Warning: detected DSPD enabled in EEPROM\n");
Auke Kok10aa4c02008-08-04 17:21:20 -07007235 }
Auke Kok10aa4c02008-08-04 17:21:20 -07007236}
7237
Alexander Duyck55e7fe52015-05-02 01:09:59 -07007238static netdev_features_t e1000_fix_features(struct net_device *netdev,
7239 netdev_features_t features)
7240{
7241 struct e1000_adapter *adapter = netdev_priv(netdev);
7242 struct e1000_hw *hw = &adapter->hw;
7243
7244 /* Jumbo frame workaround on 82579 and newer requires CRC be stripped */
7245 if ((hw->mac.type >= e1000_pch2lan) && (netdev->mtu > ETH_DATA_LEN))
7246 features &= ~NETIF_F_RXFCS;
7247
Jarod Wilson83808642016-06-09 19:50:13 -04007248 /* Since there is no support for separate Rx/Tx vlan accel
7249 * enable/disable make sure Tx flag is always in same state as Rx.
7250 */
7251 if (features & NETIF_F_HW_VLAN_CTAG_RX)
7252 features |= NETIF_F_HW_VLAN_CTAG_TX;
7253 else
7254 features &= ~NETIF_F_HW_VLAN_CTAG_TX;
7255
Alexander Duyck55e7fe52015-05-02 01:09:59 -07007256 return features;
7257}
7258
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007259static int e1000_set_features(struct net_device *netdev,
Bruce Allan70495a52012-01-11 01:26:50 +00007260 netdev_features_t features)
Bruce Allandc221292011-08-19 03:23:48 +00007261{
7262 struct e1000_adapter *adapter = netdev_priv(netdev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007263 netdev_features_t changed = features ^ netdev->features;
Bruce Allandc221292011-08-19 03:23:48 +00007264
7265 if (changed & (NETIF_F_TSO | NETIF_F_TSO6))
7266 adapter->flags |= FLAG_TSO_FORCE;
7267
Patrick McHardyf6469682013-04-19 02:04:27 +00007268 if (!(changed & (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX |
Ben Greearcf955e62012-02-11 15:39:51 +00007269 NETIF_F_RXCSUM | NETIF_F_RXHASH | NETIF_F_RXFCS |
7270 NETIF_F_RXALL)))
Bruce Allandc221292011-08-19 03:23:48 +00007271 return 0;
7272
Ben Greear01840392012-02-11 15:39:25 +00007273 if (changed & NETIF_F_RXFCS) {
7274 if (features & NETIF_F_RXFCS) {
7275 adapter->flags2 &= ~FLAG2_CRC_STRIPPING;
7276 } else {
7277 /* We need to take it back to defaults, which might mean
7278 * stripping is still disabled at the adapter level.
7279 */
7280 if (adapter->flags2 & FLAG2_DFLT_CRC_STRIPPING)
7281 adapter->flags2 |= FLAG2_CRC_STRIPPING;
7282 else
7283 adapter->flags2 &= ~FLAG2_CRC_STRIPPING;
7284 }
7285 }
7286
Bruce Allan70495a52012-01-11 01:26:50 +00007287 netdev->features = features;
7288
Bruce Allandc221292011-08-19 03:23:48 +00007289 if (netif_running(netdev))
7290 e1000e_reinit_locked(adapter);
7291 else
7292 e1000e_reset(adapter);
7293
Serhey Popovychb0ddfe22018-03-29 17:51:36 +03007294 return 1;
Bruce Allandc221292011-08-19 03:23:48 +00007295}
7296
Stephen Hemminger651c2462008-11-19 21:57:48 -08007297static const struct net_device_ops e1000e_netdev_ops = {
Stefan Assmannd5ea45d2016-02-03 09:20:52 +01007298 .ndo_open = e1000e_open,
7299 .ndo_stop = e1000e_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08007300 .ndo_start_xmit = e1000_xmit_frame,
Jeff Kirsher67fd4fc2011-01-07 05:12:09 +00007301 .ndo_get_stats64 = e1000e_get_stats64,
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00007302 .ndo_set_rx_mode = e1000e_set_rx_mode,
Stephen Hemminger651c2462008-11-19 21:57:48 -08007303 .ndo_set_mac_address = e1000_set_mac,
7304 .ndo_change_mtu = e1000_change_mtu,
7305 .ndo_do_ioctl = e1000_ioctl,
7306 .ndo_tx_timeout = e1000_tx_timeout,
7307 .ndo_validate_addr = eth_validate_addr,
7308
Stephen Hemminger651c2462008-11-19 21:57:48 -08007309 .ndo_vlan_rx_add_vid = e1000_vlan_rx_add_vid,
7310 .ndo_vlan_rx_kill_vid = e1000_vlan_rx_kill_vid,
7311#ifdef CONFIG_NET_POLL_CONTROLLER
7312 .ndo_poll_controller = e1000_netpoll,
7313#endif
Bruce Allandc221292011-08-19 03:23:48 +00007314 .ndo_set_features = e1000_set_features,
Alexander Duyck55e7fe52015-05-02 01:09:59 -07007315 .ndo_fix_features = e1000_fix_features,
Toshiaki Makitaf2701b12015-08-06 17:57:29 +09007316 .ndo_features_check = passthru_features_check,
Stephen Hemminger651c2462008-11-19 21:57:48 -08007317};
7318
Auke Kokbc7f75f2007-09-17 12:30:59 -07007319/**
7320 * e1000_probe - Device Initialization Routine
7321 * @pdev: PCI device information struct
7322 * @ent: entry in e1000_pci_tbl
7323 *
7324 * Returns 0 on success, negative on failure
7325 *
7326 * e1000_probe initializes an adapter identified by a pci_dev structure.
7327 * The OS initialization, configuring of the adapter private structure,
7328 * and a hardware reset occur.
7329 **/
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00007330static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Auke Kokbc7f75f2007-09-17 12:30:59 -07007331{
7332 struct net_device *netdev;
7333 struct e1000_adapter *adapter;
7334 struct e1000_hw *hw;
7335 const struct e1000_info *ei = e1000_info_tbl[ent->driver_data];
Becky Brucef47e81f2008-05-01 18:03:11 -05007336 resource_size_t mmio_start, mmio_len;
7337 resource_size_t flash_start, flash_len;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007338 static int cards_found;
Bruce Allan78cd29d2011-03-24 03:09:03 +00007339 u16 aspm_disable_flag = 0;
Bruce Allan17e813e2013-02-20 04:06:01 +00007340 int bars, i, err, pci_using_dac;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007341 u16 eeprom_data = 0;
7342 u16 eeprom_apme_mask = E1000_EEPROM_APME;
Brian Walsh847042a2016-04-12 23:22:30 -04007343 s32 ret_val = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007344
Bruce Allan78cd29d2011-03-24 03:09:03 +00007345 if (ei->flags2 & FLAG2_DISABLE_ASPM_L0S)
7346 aspm_disable_flag = PCIE_LINK_STATE_L0S;
Bruce Allan6f461f62010-04-27 03:33:04 +00007347 if (ei->flags2 & FLAG2_DISABLE_ASPM_L1)
Bruce Allan78cd29d2011-03-24 03:09:03 +00007348 aspm_disable_flag |= PCIE_LINK_STATE_L1;
7349 if (aspm_disable_flag)
7350 e1000e_disable_aspm(pdev, aspm_disable_flag);
Taku Izumi6e4f6f62008-06-20 11:57:02 +09007351
Bruce Allanf0f422e2008-08-04 17:21:53 -07007352 err = pci_enable_device_mem(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007353 if (err)
7354 return err;
7355
7356 pci_using_dac = 0;
Russell King718a39e2013-06-10 12:22:30 +01007357 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Auke Kokbc7f75f2007-09-17 12:30:59 -07007358 if (!err) {
Russell King718a39e2013-06-10 12:22:30 +01007359 pci_using_dac = 1;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007360 } else {
Russell King718a39e2013-06-10 12:22:30 +01007361 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Auke Kokbc7f75f2007-09-17 12:30:59 -07007362 if (err) {
Russell King718a39e2013-06-10 12:22:30 +01007363 dev_err(&pdev->dev,
7364 "No usable DMA configuration, aborting\n");
7365 goto err_dma;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007366 }
7367 }
7368
Bruce Allan17e813e2013-02-20 04:06:01 +00007369 bars = pci_select_bars(pdev, IORESOURCE_MEM);
7370 err = pci_request_selected_regions_exclusive(pdev, bars,
7371 e1000e_driver_name);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007372 if (err)
7373 goto err_pci_reg;
7374
Xiaotian Feng68eac462009-08-14 14:35:52 +00007375 /* AER (Advanced Error Reporting) hooks */
Frans Pop19d5afd2009-10-02 10:04:12 -07007376 pci_enable_pcie_error_reporting(pdev);
Xiaotian Feng68eac462009-08-14 14:35:52 +00007377
Auke Kokbc7f75f2007-09-17 12:30:59 -07007378 pci_set_master(pdev);
Bruce Allan438b3652008-11-21 16:51:33 -08007379 /* PCI config space info */
7380 err = pci_save_state(pdev);
7381 if (err)
7382 goto err_alloc_etherdev;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007383
7384 err = -ENOMEM;
7385 netdev = alloc_etherdev(sizeof(struct e1000_adapter));
7386 if (!netdev)
7387 goto err_alloc_etherdev;
7388
Auke Kokbc7f75f2007-09-17 12:30:59 -07007389 SET_NETDEV_DEV(netdev, &pdev->dev);
7390
Tom Herbertf85e4df2010-05-05 14:03:32 +00007391 netdev->irq = pdev->irq;
7392
Auke Kokbc7f75f2007-09-17 12:30:59 -07007393 pci_set_drvdata(pdev, netdev);
7394 adapter = netdev_priv(netdev);
7395 hw = &adapter->hw;
7396 adapter->netdev = netdev;
7397 adapter->pdev = pdev;
7398 adapter->ei = ei;
7399 adapter->pba = ei->pba;
7400 adapter->flags = ei->flags;
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +00007401 adapter->flags2 = ei->flags2;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007402 adapter->hw.adapter = adapter;
7403 adapter->hw.mac.type = ei->mac;
Bruce Allan2adc55c2009-06-02 11:28:58 +00007404 adapter->max_hw_frame_size = ei->max_hw_frame_size;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00007405 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007406
7407 mmio_start = pci_resource_start(pdev, 0);
7408 mmio_len = pci_resource_len(pdev, 0);
7409
7410 err = -EIO;
7411 adapter->hw.hw_addr = ioremap(mmio_start, mmio_len);
7412 if (!adapter->hw.hw_addr)
7413 goto err_ioremap;
7414
7415 if ((adapter->flags & FLAG_HAS_FLASH) &&
Yanir Lubetkin1103a632015-02-28 10:10:06 +00007416 (pci_resource_flags(pdev, 1) & IORESOURCE_MEM) &&
7417 (hw->mac.type < e1000_pch_spt)) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07007418 flash_start = pci_resource_start(pdev, 1);
7419 flash_len = pci_resource_len(pdev, 1);
7420 adapter->hw.flash_address = ioremap(flash_start, flash_len);
7421 if (!adapter->hw.flash_address)
7422 goto err_flashmap;
7423 }
7424
Bruce Alland495bcb2013-03-20 07:23:11 +00007425 /* Set default EEE advertisement */
7426 if (adapter->flags2 & FLAG2_HAS_EEE)
7427 adapter->eee_advert = MDIO_EEE_100TX | MDIO_EEE_1000T;
7428
Auke Kokbc7f75f2007-09-17 12:30:59 -07007429 /* construct the net_device struct */
Bruce Allane80bd1d2013-05-01 01:19:46 +00007430 netdev->netdev_ops = &e1000e_netdev_ops;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007431 e1000e_set_ethtool_ops(netdev);
Bruce Allane80bd1d2013-05-01 01:19:46 +00007432 netdev->watchdog_timeo = 5 * HZ;
Bruce Allanc58c8a72012-03-20 03:48:19 +00007433 netif_napi_add(netdev, &adapter->napi, e1000e_poll, 64);
Bruce Allanf2315bf2011-12-16 00:46:59 +00007434 strlcpy(netdev->name, pci_name(pdev), sizeof(netdev->name));
Auke Kokbc7f75f2007-09-17 12:30:59 -07007435
7436 netdev->mem_start = mmio_start;
7437 netdev->mem_end = mmio_start + mmio_len;
7438
7439 adapter->bd_number = cards_found++;
7440
Bruce Allan4662e822008-08-26 18:37:06 -07007441 e1000e_check_options(adapter);
7442
Auke Kokbc7f75f2007-09-17 12:30:59 -07007443 /* setup adapter struct */
7444 err = e1000_sw_init(adapter);
7445 if (err)
7446 goto err_sw_init;
7447
Auke Kokbc7f75f2007-09-17 12:30:59 -07007448 memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops));
7449 memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops));
7450 memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops));
7451
Jeff Kirsher69e3fd82008-04-02 13:48:18 -07007452 err = ei->get_variants(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007453 if (err)
7454 goto err_hw_init;
7455
Bruce Allan4a770352008-10-01 17:18:35 -07007456 if ((adapter->flags & FLAG_IS_ICH) &&
Yanir Lubetkin152c0a92015-03-20 17:41:53 -07007457 (adapter->flags & FLAG_READ_ONLY_NVM) &&
7458 (hw->mac.type < e1000_pch_spt))
Bruce Allan4a770352008-10-01 17:18:35 -07007459 e1000e_write_protect_nvm_ich8lan(&adapter->hw);
7460
Auke Kokbc7f75f2007-09-17 12:30:59 -07007461 hw->mac.ops.get_bus_info(&adapter->hw);
7462
Jeff Kirsher318a94d2008-03-28 09:15:16 -07007463 adapter->hw.phy.autoneg_wait_to_complete = 0;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007464
7465 /* Copper options */
Jeff Kirsher318a94d2008-03-28 09:15:16 -07007466 if (adapter->hw.phy.media_type == e1000_media_type_copper) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07007467 adapter->hw.phy.mdix = AUTO_ALL_MODES;
7468 adapter->hw.phy.disable_polarity_correction = 0;
7469 adapter->hw.phy.ms_type = e1000_ms_hw_default;
7470 }
7471
Bruce Allan470a5422012-05-26 06:08:48 +00007472 if (hw->phy.ops.check_reset_block && hw->phy.ops.check_reset_block(hw))
Bruce Allan185095f2012-06-07 02:23:37 +00007473 dev_info(&pdev->dev,
7474 "PHY reset is blocked due to SOL/IDER session.\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07007475
Bruce Allandc221292011-08-19 03:23:48 +00007476 /* Set initial default active device features */
7477 netdev->features = (NETIF_F_SG |
Patrick McHardyf6469682013-04-19 02:04:27 +00007478 NETIF_F_HW_VLAN_CTAG_RX |
7479 NETIF_F_HW_VLAN_CTAG_TX |
Bruce Allandc221292011-08-19 03:23:48 +00007480 NETIF_F_TSO |
7481 NETIF_F_TSO6 |
Bruce Allan70495a52012-01-11 01:26:50 +00007482 NETIF_F_RXHASH |
Bruce Allandc221292011-08-19 03:23:48 +00007483 NETIF_F_RXCSUM |
7484 NETIF_F_HW_CSUM);
7485
7486 /* Set user-changeable features (subset of all device features) */
7487 netdev->hw_features = netdev->features;
Ben Greear01840392012-02-11 15:39:25 +00007488 netdev->hw_features |= NETIF_F_RXFCS;
Ben Greear943146d2012-02-11 15:39:40 +00007489 netdev->priv_flags |= IFF_SUPP_NOFCS;
Ben Greearcf955e62012-02-11 15:39:51 +00007490 netdev->hw_features |= NETIF_F_RXALL;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007491
7492 if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
Patrick McHardyf6469682013-04-19 02:04:27 +00007493 netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007494
Bruce Allandc221292011-08-19 03:23:48 +00007495 netdev->vlan_features |= (NETIF_F_SG |
7496 NETIF_F_TSO |
7497 NETIF_F_TSO6 |
7498 NETIF_F_HW_CSUM);
Jeff Kirshera5136e22008-06-05 04:07:28 -07007499
Jesse Brandeburgef9b9652011-11-04 05:47:06 +00007500 netdev->priv_flags |= IFF_UNICAST_FLT;
7501
Yi Zou7b872a52010-09-22 17:57:58 +00007502 if (pci_using_dac) {
Auke Kokbc7f75f2007-09-17 12:30:59 -07007503 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007504 netdev->vlan_features |= NETIF_F_HIGHDMA;
7505 }
Auke Kokbc7f75f2007-09-17 12:30:59 -07007506
Jarod Wilson91c527a2016-10-17 15:54:05 -04007507 /* MTU range: 68 - max_hw_frame_size */
7508 netdev->min_mtu = ETH_MIN_MTU;
7509 netdev->max_mtu = adapter->max_hw_frame_size -
7510 (VLAN_ETH_HLEN + ETH_FCS_LEN);
7511
Auke Kokbc7f75f2007-09-17 12:30:59 -07007512 if (e1000e_enable_mng_pass_thru(&adapter->hw))
7513 adapter->flags |= FLAG_MNG_PT_ENABLED;
7514
Bruce Allane921eb12012-11-28 09:28:37 +00007515 /* before reading the NVM, reset the controller to
Bruce Allanad680762008-03-28 09:15:03 -07007516 * put the device in a known good starting state
7517 */
Auke Kokbc7f75f2007-09-17 12:30:59 -07007518 adapter->hw.mac.ops.reset_hw(&adapter->hw);
7519
Bruce Allane921eb12012-11-28 09:28:37 +00007520 /* systems with ASPM and others may see the checksum fail on the first
Auke Kokbc7f75f2007-09-17 12:30:59 -07007521 * attempt. Let's give it a few tries
7522 */
7523 for (i = 0;; i++) {
7524 if (e1000_validate_nvm_checksum(&adapter->hw) >= 0)
7525 break;
7526 if (i == 2) {
Bruce Allan185095f2012-06-07 02:23:37 +00007527 dev_err(&pdev->dev, "The NVM Checksum Is Not Valid\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07007528 err = -EIO;
7529 goto err_eeprom;
7530 }
7531 }
7532
Auke Kok10aa4c02008-08-04 17:21:20 -07007533 e1000_eeprom_checks(adapter);
7534
Bruce Allan608f8a02010-01-13 02:04:58 +00007535 /* copy the MAC address */
Auke Kokbc7f75f2007-09-17 12:30:59 -07007536 if (e1000e_read_mac_addr(&adapter->hw))
Bruce Allan185095f2012-06-07 02:23:37 +00007537 dev_err(&pdev->dev,
7538 "NVM Read Error while reading MAC address\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -07007539
7540 memcpy(netdev->dev_addr, adapter->hw.mac.addr, netdev->addr_len);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007541
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +00007542 if (!is_valid_ether_addr(netdev->dev_addr)) {
Bruce Allan185095f2012-06-07 02:23:37 +00007543 dev_err(&pdev->dev, "Invalid MAC Address: %pM\n",
Jiri Pirkoaaeb6cd2013-01-08 01:38:26 +00007544 netdev->dev_addr);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007545 err = -EIO;
7546 goto err_eeprom;
7547 }
7548
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08007549 timer_setup(&adapter->watchdog_timer, e1000_watchdog, 0);
Kees Cook26566ea2017-10-16 17:29:35 -07007550 timer_setup(&adapter->phy_info_timer, e1000_update_phy_info, 0);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007551
7552 INIT_WORK(&adapter->reset_task, e1000_reset_task);
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08007553 INIT_WORK(&adapter->watchdog_task, e1000_watchdog_task);
Jesse Brandeburga8f88ff2008-10-02 16:33:25 -07007554 INIT_WORK(&adapter->downshift_task, e1000e_downshift_workaround);
7555 INIT_WORK(&adapter->update_phy_task, e1000e_update_phy_task);
Bruce Allan41cec6f2009-11-20 23:28:56 +00007556 INIT_WORK(&adapter->print_hang_task, e1000_print_hw_hang);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007557
Auke Kokbc7f75f2007-09-17 12:30:59 -07007558 /* Initialize link parameters. User can change them with ethtool */
7559 adapter->hw.mac.autoneg = 1;
Rusty Russell3db1cd52011-12-19 13:56:45 +00007560 adapter->fc_autoneg = true;
Bruce Allan5c48ef3e22008-11-21 16:57:36 -08007561 adapter->hw.fc.requested_mode = e1000_fc_default;
7562 adapter->hw.fc.current_mode = e1000_fc_default;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007563 adapter->hw.phy.autoneg_advertised = 0x2f;
7564
Bruce Allane921eb12012-11-28 09:28:37 +00007565 /* Initial Wake on LAN setting - If APM wake is enabled in
Auke Kokbc7f75f2007-09-17 12:30:59 -07007566 * the EEPROM, enable the ACPI Magic Packet filter
7567 */
7568 if (adapter->flags & FLAG_APME_IN_WUC) {
7569 /* APME bit in EEPROM is mapped to WUC.APME */
7570 eeprom_data = er32(WUC);
7571 eeprom_apme_mask = E1000_WUC_APME;
Bruce Allan4def99b2011-02-02 09:30:36 +00007572 if ((hw->mac.type > e1000_ich10lan) &&
7573 (eeprom_data & E1000_WUC_PHY_WAKE))
Bruce Allana4f58f52009-06-02 11:29:18 +00007574 adapter->flags2 |= FLAG2_HAS_PHY_WAKEUP;
Auke Kokbc7f75f2007-09-17 12:30:59 -07007575 } else if (adapter->flags & FLAG_APME_IN_CTRL3) {
7576 if (adapter->flags & FLAG_APME_CHECK_PORT_B &&
7577 (adapter->hw.bus.func == 1))
Brian Walsh847042a2016-04-12 23:22:30 -04007578 ret_val = e1000_read_nvm(&adapter->hw,
David Ertman491a04d2014-07-09 16:07:42 +00007579 NVM_INIT_CONTROL3_PORT_B,
7580 1, &eeprom_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007581 else
Brian Walsh847042a2016-04-12 23:22:30 -04007582 ret_val = e1000_read_nvm(&adapter->hw,
David Ertman491a04d2014-07-09 16:07:42 +00007583 NVM_INIT_CONTROL3_PORT_A,
7584 1, &eeprom_data);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007585 }
7586
7587 /* fetch WoL from EEPROM */
Brian Walsh847042a2016-04-12 23:22:30 -04007588 if (ret_val)
7589 e_dbg("NVM read error getting WoL initial values: %d\n", ret_val);
David Ertman491a04d2014-07-09 16:07:42 +00007590 else if (eeprom_data & eeprom_apme_mask)
Auke Kokbc7f75f2007-09-17 12:30:59 -07007591 adapter->eeprom_wol |= E1000_WUFC_MAG;
7592
Bruce Allane921eb12012-11-28 09:28:37 +00007593 /* now that we have the eeprom settings, apply the special cases
Auke Kokbc7f75f2007-09-17 12:30:59 -07007594 * where the eeprom may be wrong or the board simply won't support
7595 * wake on lan on a particular port
7596 */
7597 if (!(adapter->flags & FLAG_HAS_WOL))
7598 adapter->eeprom_wol = 0;
7599
7600 /* initialize the wol settings based on the eeprom settings */
7601 adapter->wol = adapter->eeprom_wol;
Konstantin Khlebnikov66148ba2013-03-05 09:43:04 +00007602
7603 /* make sure adapter isn't asleep if manageability is enabled */
7604 if (adapter->wol || (adapter->flags & FLAG_MNG_PT_ENABLED) ||
7605 (hw->mac.ops.check_mng_mode(hw)))
7606 device_wakeup_enable(&pdev->dev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007607
Bruce Allan84527592008-11-21 17:00:22 -08007608 /* save off EEPROM version number */
Brian Walsh847042a2016-04-12 23:22:30 -04007609 ret_val = e1000_read_nvm(&adapter->hw, 5, 1, &adapter->eeprom_vers);
David Ertman491a04d2014-07-09 16:07:42 +00007610
Brian Walsh847042a2016-04-12 23:22:30 -04007611 if (ret_val) {
7612 e_dbg("NVM read error getting EEPROM version: %d\n", ret_val);
David Ertman491a04d2014-07-09 16:07:42 +00007613 adapter->eeprom_vers = 0;
7614 }
Bruce Allan84527592008-11-21 17:00:22 -08007615
Jacob Kelleraa524b62016-04-20 11:36:42 -07007616 /* init PTP hardware clock */
7617 e1000e_ptp_init(adapter);
7618
Auke Kokbc7f75f2007-09-17 12:30:59 -07007619 /* reset the hardware with the new settings */
7620 e1000e_reset(adapter);
7621
Bruce Allane921eb12012-11-28 09:28:37 +00007622 /* If the controller has AMT, do not set DRV_LOAD until the interface
Auke Kokbc7f75f2007-09-17 12:30:59 -07007623 * is up. For all other cases, let the f/w know that the h/w is now
Bruce Allanad680762008-03-28 09:15:03 -07007624 * under the control of the driver.
7625 */
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07007626 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00007627 e1000e_get_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007628
Mario Limonciello3c98cbf2020-12-14 13:29:35 -06007629 if (hw->mac.type >= e1000_pch_cnp)
7630 adapter->flags2 |= FLAG2_ENABLE_S0IX_FLOWS;
7631
Bruce Allanf2315bf2011-12-16 00:46:59 +00007632 strlcpy(netdev->name, "eth%d", sizeof(netdev->name));
Auke Kokbc7f75f2007-09-17 12:30:59 -07007633 err = register_netdev(netdev);
7634 if (err)
7635 goto err_register;
7636
Jesse Brandeburg9c563d22009-04-17 20:44:34 +00007637 /* carrier off reporting is important to ethtool even BEFORE open */
7638 netif_carrier_off(netdev);
7639
Auke Kokbc7f75f2007-09-17 12:30:59 -07007640 e1000_print_device_info(adapter);
7641
Chen Yuccf8b942020-12-01 09:21:50 +08007642 dev_pm_set_driver_flags(&pdev->dev, DPM_FLAG_SMART_PREPARE);
Kai-Heng Feng59f58702018-12-11 15:59:37 +08007643
Chen Yu33353692020-12-01 09:22:09 +08007644 if (pci_dev_run_wake(pdev) && hw->mac.type != e1000_pch_cnp)
Alan Sternf3ec4f82010-06-08 15:23:51 -04007645 pm_runtime_put_noidle(&pdev->dev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00007646
Auke Kokbc7f75f2007-09-17 12:30:59 -07007647 return 0;
7648
7649err_register:
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07007650 if (!(adapter->flags & FLAG_HAS_AMT))
Bruce Allan31dbe5b2011-01-06 14:29:52 +00007651 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007652err_eeprom:
Bruce Allan470a5422012-05-26 06:08:48 +00007653 if (hw->phy.ops.check_reset_block && !hw->phy.ops.check_reset_block(hw))
Auke Kokbc7f75f2007-09-17 12:30:59 -07007654 e1000_phy_hw_reset(&adapter->hw);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07007655err_hw_init:
Auke Kokbc7f75f2007-09-17 12:30:59 -07007656 kfree(adapter->tx_ring);
7657 kfree(adapter->rx_ring);
7658err_sw_init:
Yanir Lubetkin1103a632015-02-28 10:10:06 +00007659 if ((adapter->hw.flash_address) && (hw->mac.type < e1000_pch_spt))
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07007660 iounmap(adapter->hw.flash_address);
Jeff Kirshere82f54b2008-11-14 06:45:07 +00007661 e1000e_reset_interrupt_capability(adapter);
Jesse Brandeburgc43bc57e2008-08-04 17:21:40 -07007662err_flashmap:
Auke Kokbc7f75f2007-09-17 12:30:59 -07007663 iounmap(adapter->hw.hw_addr);
7664err_ioremap:
7665 free_netdev(netdev);
7666err_alloc_etherdev:
Christophe JAILLET45890752021-06-16 07:05:53 +02007667 pci_disable_pcie_error_reporting(pdev);
Johannes Thumshirn56d766d2016-06-07 09:44:05 +02007668 pci_release_mem_regions(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007669err_pci_reg:
7670err_dma:
7671 pci_disable_device(pdev);
7672 return err;
7673}
7674
7675/**
7676 * e1000_remove - Device Removal Routine
7677 * @pdev: PCI device information struct
7678 *
7679 * e1000_remove is called by the PCI subsystem to alert the driver
7680 * that it should release a PCI device. The could be caused by a
7681 * Hot-Plug event, or because the driver is going to be removed from
7682 * memory.
7683 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05007684static void e1000_remove(struct pci_dev *pdev)
Auke Kokbc7f75f2007-09-17 12:30:59 -07007685{
7686 struct net_device *netdev = pci_get_drvdata(pdev);
7687 struct e1000_adapter *adapter = netdev_priv(netdev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00007688
Bruce Alland89777b2013-01-19 01:09:58 +00007689 e1000e_ptp_remove(adapter);
7690
Bruce Allane921eb12012-11-28 09:28:37 +00007691 /* The timers may be rescheduled, so explicitly disable them
Tejun Heo23f333a2010-12-12 16:45:14 +01007692 * from being rescheduled.
Bruce Allanad680762008-03-28 09:15:03 -07007693 */
Alexander Duyckdaee5592019-10-11 08:34:59 -07007694 set_bit(__E1000_DOWN, &adapter->state);
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08007695 del_timer_sync(&adapter->watchdog_timer);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007696 del_timer_sync(&adapter->phy_info_timer);
7697
Bruce Allan41cec6f2009-11-20 23:28:56 +00007698 cancel_work_sync(&adapter->reset_task);
Jeff Kirsherd5ad7a62020-01-04 23:29:22 -08007699 cancel_work_sync(&adapter->watchdog_task);
Bruce Allan41cec6f2009-11-20 23:28:56 +00007700 cancel_work_sync(&adapter->downshift_task);
7701 cancel_work_sync(&adapter->update_phy_task);
7702 cancel_work_sync(&adapter->print_hang_task);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007703
Bruce Allanb67e1912012-12-27 08:32:33 +00007704 if (adapter->flags & FLAG_HAS_HW_TIMESTAMP) {
7705 cancel_work_sync(&adapter->tx_hwtstamp_work);
7706 if (adapter->tx_hwtstamp_skb) {
Florian Fainelli377b6272017-08-25 18:14:24 -07007707 dev_consume_skb_any(adapter->tx_hwtstamp_skb);
Bruce Allanb67e1912012-12-27 08:32:33 +00007708 adapter->tx_hwtstamp_skb = NULL;
7709 }
7710 }
7711
Bruce Allan17f208d2009-12-01 15:47:22 +00007712 unregister_netdev(netdev);
7713
Alan Sternf3ec4f82010-06-08 15:23:51 -04007714 if (pci_dev_run_wake(pdev))
7715 pm_runtime_get_noresume(&pdev->dev);
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00007716
Bruce Allane921eb12012-11-28 09:28:37 +00007717 /* Release control of h/w to f/w. If f/w is AMT enabled, this
Bruce Allanad680762008-03-28 09:15:03 -07007718 * would have already happened in close and is redundant.
7719 */
Bruce Allan31dbe5b2011-01-06 14:29:52 +00007720 e1000e_release_hw_control(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007721
Bruce Allan4662e822008-08-26 18:37:06 -07007722 e1000e_reset_interrupt_capability(adapter);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007723 kfree(adapter->tx_ring);
7724 kfree(adapter->rx_ring);
7725
7726 iounmap(adapter->hw.hw_addr);
Yanir Lubetkin1103a632015-02-28 10:10:06 +00007727 if ((adapter->hw.flash_address) &&
7728 (adapter->hw.mac.type < e1000_pch_spt))
Auke Kokbc7f75f2007-09-17 12:30:59 -07007729 iounmap(adapter->hw.flash_address);
Johannes Thumshirn56d766d2016-06-07 09:44:05 +02007730 pci_release_mem_regions(pdev);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007731
7732 free_netdev(netdev);
7733
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00007734 /* AER disable */
Frans Pop19d5afd2009-10-02 10:04:12 -07007735 pci_disable_pcie_error_reporting(pdev);
Jesse Brandeburg111b9dc2009-02-10 12:51:20 +00007736
Auke Kokbc7f75f2007-09-17 12:30:59 -07007737 pci_disable_device(pdev);
7738}
7739
7740/* PCI Error Recovery (ERS) */
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07007741static const struct pci_error_handlers e1000_err_handler = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07007742 .error_detected = e1000_io_error_detected,
7743 .slot_reset = e1000_io_slot_reset,
7744 .resume = e1000_io_resume,
7745};
7746
David Ertman0e8e8422014-04-08 22:10:31 +00007747static const struct pci_device_id e1000_pci_tbl[] = {
Auke Kokbc7f75f2007-09-17 12:30:59 -07007748 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_COPPER), board_82571 },
7749 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_FIBER), board_82571 },
7750 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER), board_82571 },
Bruce Allanc29c3ba2013-02-20 04:05:50 +00007751 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER_LP),
7752 board_82571 },
Auke Kokbc7f75f2007-09-17 12:30:59 -07007753 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_QUAD_FIBER), board_82571 },
7754 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES), board_82571 },
Auke Kok040babf2007-10-31 15:22:05 -07007755 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_DUAL), board_82571 },
7756 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571EB_SERDES_QUAD), board_82571 },
7757 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82571PT_QUAD_COPPER), board_82571 },
Bruce Allanad680762008-03-28 09:15:03 -07007758
Auke Kokbc7f75f2007-09-17 12:30:59 -07007759 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI), board_82572 },
7760 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_COPPER), board_82572 },
7761 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_FIBER), board_82572 },
7762 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82572EI_SERDES), board_82572 },
Bruce Allanad680762008-03-28 09:15:03 -07007763
Auke Kokbc7f75f2007-09-17 12:30:59 -07007764 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E), board_82573 },
7765 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573E_IAMT), board_82573 },
7766 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82573L), board_82573 },
Bruce Allanad680762008-03-28 09:15:03 -07007767
Bruce Allan4662e822008-08-26 18:37:06 -07007768 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574L), board_82574 },
Bruce Allanbef28b12009-03-24 23:28:02 -07007769 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82574LA), board_82574 },
Alexander Duyck8c81c9c2009-03-19 01:12:27 +00007770 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82583V), board_82583 },
Bruce Allan4662e822008-08-26 18:37:06 -07007771
Auke Kokbc7f75f2007-09-17 12:30:59 -07007772 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_DPT),
7773 board_80003es2lan },
7774 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_COPPER_SPT),
7775 board_80003es2lan },
7776 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_DPT),
7777 board_80003es2lan },
7778 { PCI_VDEVICE(INTEL, E1000_DEV_ID_80003ES2LAN_SERDES_SPT),
7779 board_80003es2lan },
Bruce Allanad680762008-03-28 09:15:03 -07007780
Auke Kokbc7f75f2007-09-17 12:30:59 -07007781 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE), board_ich8lan },
7782 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_G), board_ich8lan },
7783 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IFE_GT), board_ich8lan },
7784 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_AMT), board_ich8lan },
7785 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_C), board_ich8lan },
7786 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M), board_ich8lan },
7787 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_IGP_M_AMT), board_ich8lan },
Bruce Allan9e135a22009-12-01 15:50:31 +00007788 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH8_82567V_3), board_ich8lan },
Bruce Allanad680762008-03-28 09:15:03 -07007789
Auke Kokbc7f75f2007-09-17 12:30:59 -07007790 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE), board_ich9lan },
7791 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_G), board_ich9lan },
7792 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IFE_GT), board_ich9lan },
7793 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_AMT), board_ich9lan },
7794 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_C), board_ich9lan },
Bruce Allan2f15f9d2008-08-26 18:36:36 -07007795 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_BM), board_ich9lan },
Bruce Allan97ac8ca2008-04-29 09:16:05 -07007796 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M), board_ich9lan },
7797 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_AMT), board_ich9lan },
7798 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH9_IGP_M_V), board_ich9lan },
7799
7800 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LM), board_ich9lan },
7801 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_LF), board_ich9lan },
7802 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_R_BM_V), board_ich9lan },
Auke Kokbc7f75f2007-09-17 12:30:59 -07007803
Bruce Allanf4187b52008-08-26 18:36:50 -07007804 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LM), board_ich10lan },
7805 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_LF), board_ich10lan },
Bruce Allan10df0b92010-05-10 15:02:52 +00007806 { PCI_VDEVICE(INTEL, E1000_DEV_ID_ICH10_D_BM_V), board_ich10lan },
Bruce Allanf4187b52008-08-26 18:36:50 -07007807
Bruce Allana4f58f52009-06-02 11:29:18 +00007808 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LM), board_pchlan },
7809 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_M_HV_LC), board_pchlan },
7810 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DM), board_pchlan },
7811 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_D_HV_DC), board_pchlan },
7812
Bruce Alland3738bb2010-06-16 13:27:28 +00007813 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH2_LV_LM), board_pch2lan },
7814 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH2_LV_V), board_pch2lan },
7815
Bruce Allan2fbe4522012-04-19 03:21:47 +00007816 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPT_I217_LM), board_pch_lpt },
7817 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPT_I217_V), board_pch_lpt },
Bruce Allan16e310a2012-10-09 01:11:26 +00007818 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPTLP_I218_LM), board_pch_lpt },
7819 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LPTLP_I218_V), board_pch_lpt },
Bruce Allan91a3d822013-06-29 01:15:16 +00007820 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_LM2), board_pch_lpt },
7821 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_V2), board_pch_lpt },
7822 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_LM3), board_pch_lpt },
7823 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_I218_V3), board_pch_lpt },
David Ertman79849eb2015-02-10 09:10:43 +00007824 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_SPT_I219_LM), board_pch_spt },
7825 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_SPT_I219_V), board_pch_spt },
7826 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_SPT_I219_LM2), board_pch_spt },
7827 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_SPT_I219_V2), board_pch_spt },
Raanan Avargilf3ed9352015-10-20 17:13:01 +03007828 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_LBG_I219_LM3), board_pch_spt },
Raanan Avargil9cd34b32015-12-22 15:35:05 +02007829 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_SPT_I219_LM4), board_pch_spt },
7830 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_SPT_I219_V4), board_pch_spt },
7831 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_SPT_I219_LM5), board_pch_spt },
7832 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_SPT_I219_V5), board_pch_spt },
Sasha Neftin3a3173b2017-04-06 10:26:32 +03007833 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CNP_I219_LM6), board_pch_cnp },
7834 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CNP_I219_V6), board_pch_cnp },
7835 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CNP_I219_LM7), board_pch_cnp },
7836 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CNP_I219_V7), board_pch_cnp },
Sasha Neftin48f76b682017-07-17 15:13:39 -07007837 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ICP_I219_LM8), board_pch_cnp },
7838 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ICP_I219_V8), board_pch_cnp },
7839 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ICP_I219_LM9), board_pch_cnp },
7840 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ICP_I219_V9), board_pch_cnp },
Sasha Neftin914ee9c2019-10-10 13:15:39 +03007841 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_LM10), board_pch_cnp },
7842 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_V10), board_pch_cnp },
7843 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_LM11), board_pch_cnp },
7844 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_V11), board_pch_cnp },
7845 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_LM12), board_pch_spt },
7846 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_CMP_I219_V12), board_pch_spt },
Sasha Neftinfb776f52019-10-16 11:08:38 +03007847 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_LM13), board_pch_cnp },
7848 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_V13), board_pch_cnp },
7849 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_LM14), board_pch_cnp },
7850 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_V14), board_pch_cnp },
7851 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_LM15), board_pch_cnp },
Vitaly Lifshits56321222020-01-21 15:46:28 -08007852 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_TGP_I219_V15), board_pch_cnp },
Sasha Neftin59e46682020-01-19 13:57:13 +02007853 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ADP_I219_LM16), board_pch_cnp },
7854 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ADP_I219_V16), board_pch_cnp },
7855 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ADP_I219_LM17), board_pch_cnp },
7856 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_ADP_I219_V17), board_pch_cnp },
Sasha Neftincc23f4f2020-08-13 11:34:06 +03007857 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_MTP_I219_LM18), board_pch_cnp },
7858 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_MTP_I219_V18), board_pch_cnp },
7859 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_MTP_I219_LM19), board_pch_cnp },
7860 { PCI_VDEVICE(INTEL, E1000_DEV_ID_PCH_MTP_I219_V19), board_pch_cnp },
Bruce Allan2fbe4522012-04-19 03:21:47 +00007861
Bruce Allanf36bb6c2012-01-31 06:38:04 +00007862 { 0, 0, 0, 0, 0, 0, 0 } /* terminate list */
Auke Kokbc7f75f2007-09-17 12:30:59 -07007863};
7864MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
7865
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00007866static const struct dev_pm_ops e1000_pm_ops = {
Kevin Hao72f72dc2014-03-18 00:26:49 -07007867#ifdef CONFIG_PM_SLEEP
Chen Yuccf8b942020-12-01 09:21:50 +08007868 .prepare = e1000e_pm_prepare,
David Ertman28002092014-02-14 07:16:41 +00007869 .suspend = e1000e_pm_suspend,
7870 .resume = e1000e_pm_resume,
7871 .freeze = e1000e_pm_freeze,
7872 .thaw = e1000e_pm_thaw,
7873 .poweroff = e1000e_pm_suspend,
7874 .restore = e1000e_pm_resume,
Kevin Hao72f72dc2014-03-18 00:26:49 -07007875#endif
David Ertman63eb48f2014-02-14 07:16:46 +00007876 SET_RUNTIME_PM_OPS(e1000e_pm_runtime_suspend, e1000e_pm_runtime_resume,
7877 e1000e_pm_runtime_idle)
Rafael J. Wysocki23606cf2010-03-14 14:35:17 +00007878};
7879
Auke Kokbc7f75f2007-09-17 12:30:59 -07007880/* PCI Device API Driver */
7881static struct pci_driver e1000_driver = {
7882 .name = e1000e_driver_name,
7883 .id_table = e1000_pci_tbl,
7884 .probe = e1000_probe,
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05007885 .remove = e1000_remove,
Bruce Allanf36bb6c2012-01-31 06:38:04 +00007886 .driver = {
7887 .pm = &e1000_pm_ops,
7888 },
Auke Kokbc7f75f2007-09-17 12:30:59 -07007889 .shutdown = e1000_shutdown,
7890 .err_handler = &e1000_err_handler
7891};
7892
7893/**
7894 * e1000_init_module - Driver Registration Routine
7895 *
7896 * e1000_init_module is the first routine called when the driver is
7897 * loaded. All it does is register with the PCI subsystem.
7898 **/
7899static int __init e1000_init_module(void)
7900{
Jeff Kirsher34a2a3b82020-05-29 00:18:33 -07007901 pr_info("Intel(R) PRO/1000 Network Driver\n");
Yanir Lubetkin529498c2015-06-02 17:05:50 +03007902 pr_info("Copyright(c) 1999 - 2015 Intel Corporation.\n");
Bruce Allan53ec5492009-11-20 23:27:40 +00007903
Jean Sacren5a5e8892015-09-19 05:08:42 -06007904 return pci_register_driver(&e1000_driver);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007905}
7906module_init(e1000_init_module);
7907
7908/**
7909 * e1000_exit_module - Driver Exit Cleanup Routine
7910 *
7911 * e1000_exit_module is called just before the driver is removed
7912 * from memory.
7913 **/
7914static void __exit e1000_exit_module(void)
7915{
7916 pci_unregister_driver(&e1000_driver);
Auke Kokbc7f75f2007-09-17 12:30:59 -07007917}
7918module_exit(e1000_exit_module);
7919
Auke Kokbc7f75f2007-09-17 12:30:59 -07007920MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
7921MODULE_DESCRIPTION("Intel(R) PRO/1000 Network Driver");
Jesse Brandeburg98674eb2018-09-14 17:37:57 -07007922MODULE_LICENSE("GPL v2");
Auke Kokbc7f75f2007-09-17 12:30:59 -07007923
Bruce Allan06c24b92012-02-23 03:13:13 +00007924/* netdev.c */