blob: e006c05580ec7c6833c621da686dff1a7c271eb0 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore94971822012-01-06 03:24:16 +00004 Copyright(c) 1999 - 2012 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
Auke Kok9a799d72007-09-15 14:07:45 -070023 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28#include <linux/types.h>
29#include <linux/module.h>
30#include <linux/pci.h>
31#include <linux/netdevice.h>
32#include <linux/vmalloc.h>
33#include <linux/string.h>
34#include <linux/in.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000035#include <linux/interrupt.h>
Auke Kok9a799d72007-09-15 14:07:45 -070036#include <linux/ip.h>
37#include <linux/tcp.h>
Alexander Duyck897ab152011-05-27 05:31:47 +000038#include <linux/sctp.h>
Lucy Liu60127862009-07-22 14:07:33 +000039#include <linux/pkt_sched.h>
Auke Kok9a799d72007-09-15 14:07:45 -070040#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Auke Kok9a799d72007-09-15 14:07:45 -070042#include <net/checksum.h>
43#include <net/ip6_checksum.h>
44#include <linux/ethtool.h>
Jiri Pirko01789342011-08-16 06:29:00 +000045#include <linux/if.h>
Auke Kok9a799d72007-09-15 14:07:45 -070046#include <linux/if_vlan.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040047#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000048#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070049
50#include "ixgbe.h"
51#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000052#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000053#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070054
55char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070056static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000057 "Intel(R) 10 Gigabit PCI Express Network Driver";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000058#ifdef IXGBE_FCOE
Neerav Parikhea818752012-01-04 20:23:40 +000059char ixgbe_default_device_descr[] =
60 "Intel(R) 10 Gigabit Network Connection";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000061#else
62static char ixgbe_default_device_descr[] =
63 "Intel(R) 10 Gigabit Network Connection";
64#endif
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000065#define MAJ 3
Don Skidmoreeef45602012-04-28 03:29:22 +000066#define MIN 9
67#define BUILD 15
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000068#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
Don Skidmorea38a1042011-05-20 03:05:14 +000069 __stringify(BUILD) "-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070070const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000071static const char ixgbe_copyright[] =
Don Skidmore94971822012-01-06 03:24:16 +000072 "Copyright (c) 1999-2012 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070073
74static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070075 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000076 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e12010-11-16 19:27:16 -080077 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070078};
79
80/* ixgbe_pci_tbl - PCI Device ID Table
81 *
82 * Wildcard entries (PCI_ANY_ID) should come last
83 * Last entry must be all 0s
84 *
85 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
86 * Class, Class Mask, private data (not used) }
87 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000088static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Alexander Duyck54239c62011-07-15 03:06:06 +000089 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
90 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
91 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
92 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
93 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
94 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
95 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
96 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
97 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
98 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
99 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
112 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
113 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
114 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
Emil Tantilov7d145282011-09-08 08:30:14 +0000115 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
Emil Tantilov9e791e42011-11-04 06:43:29 +0000116 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
Auke Kok9a799d72007-09-15 14:07:45 -0700117 /* required last entry */
118 {0, }
119};
120MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
121
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400122#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800123static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000124 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800125static struct notifier_block dca_notifier = {
126 .notifier_call = ixgbe_notify_dca,
127 .next = NULL,
128 .priority = 0
129};
130#endif
131
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000132#ifdef CONFIG_PCI_IOV
133static unsigned int max_vfs;
134module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000135MODULE_PARM_DESC(max_vfs,
Greg Rose6b42a9c2012-04-17 04:29:29 +0000136 "Maximum number of virtual functions to allocate per physical function - default is zero and maximum value is 63");
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000137#endif /* CONFIG_PCI_IOV */
138
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000139static unsigned int allow_unsupported_sfp;
140module_param(allow_unsupported_sfp, uint, 0);
141MODULE_PARM_DESC(allow_unsupported_sfp,
142 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
143
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000144#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
145static int debug = -1;
146module_param(debug, int, 0);
147MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
148
Auke Kok9a799d72007-09-15 14:07:45 -0700149MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
150MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
151MODULE_LICENSE("GPL");
152MODULE_VERSION(DRV_VERSION);
153
Alexander Duyck70864002011-04-27 09:13:56 +0000154static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
155{
156 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
157 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
158 schedule_work(&adapter->service_task);
159}
160
161static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
162{
163 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
164
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000165 /* flush memory to make sure state is correct before next watchdog */
Alexander Duyck70864002011-04-27 09:13:56 +0000166 smp_mb__before_clear_bit();
167 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
168}
169
Taku Izumidcd79ae2010-04-27 14:39:53 +0000170struct ixgbe_reg_info {
171 u32 ofs;
172 char *name;
173};
174
175static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
176
177 /* General Registers */
178 {IXGBE_CTRL, "CTRL"},
179 {IXGBE_STATUS, "STATUS"},
180 {IXGBE_CTRL_EXT, "CTRL_EXT"},
181
182 /* Interrupt Registers */
183 {IXGBE_EICR, "EICR"},
184
185 /* RX Registers */
186 {IXGBE_SRRCTL(0), "SRRCTL"},
187 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
188 {IXGBE_RDLEN(0), "RDLEN"},
189 {IXGBE_RDH(0), "RDH"},
190 {IXGBE_RDT(0), "RDT"},
191 {IXGBE_RXDCTL(0), "RXDCTL"},
192 {IXGBE_RDBAL(0), "RDBAL"},
193 {IXGBE_RDBAH(0), "RDBAH"},
194
195 /* TX Registers */
196 {IXGBE_TDBAL(0), "TDBAL"},
197 {IXGBE_TDBAH(0), "TDBAH"},
198 {IXGBE_TDLEN(0), "TDLEN"},
199 {IXGBE_TDH(0), "TDH"},
200 {IXGBE_TDT(0), "TDT"},
201 {IXGBE_TXDCTL(0), "TXDCTL"},
202
203 /* List Terminator */
204 {}
205};
206
207
208/*
209 * ixgbe_regdump - register printout routine
210 */
211static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
212{
213 int i = 0, j = 0;
214 char rname[16];
215 u32 regs[64];
216
217 switch (reginfo->ofs) {
218 case IXGBE_SRRCTL(0):
219 for (i = 0; i < 64; i++)
220 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
221 break;
222 case IXGBE_DCA_RXCTRL(0):
223 for (i = 0; i < 64; i++)
224 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
225 break;
226 case IXGBE_RDLEN(0):
227 for (i = 0; i < 64; i++)
228 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
229 break;
230 case IXGBE_RDH(0):
231 for (i = 0; i < 64; i++)
232 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
233 break;
234 case IXGBE_RDT(0):
235 for (i = 0; i < 64; i++)
236 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
237 break;
238 case IXGBE_RXDCTL(0):
239 for (i = 0; i < 64; i++)
240 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
241 break;
242 case IXGBE_RDBAL(0):
243 for (i = 0; i < 64; i++)
244 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
245 break;
246 case IXGBE_RDBAH(0):
247 for (i = 0; i < 64; i++)
248 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
249 break;
250 case IXGBE_TDBAL(0):
251 for (i = 0; i < 64; i++)
252 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
253 break;
254 case IXGBE_TDBAH(0):
255 for (i = 0; i < 64; i++)
256 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
257 break;
258 case IXGBE_TDLEN(0):
259 for (i = 0; i < 64; i++)
260 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
261 break;
262 case IXGBE_TDH(0):
263 for (i = 0; i < 64; i++)
264 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
265 break;
266 case IXGBE_TDT(0):
267 for (i = 0; i < 64; i++)
268 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
269 break;
270 case IXGBE_TXDCTL(0):
271 for (i = 0; i < 64; i++)
272 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
273 break;
274 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000275 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000276 IXGBE_READ_REG(hw, reginfo->ofs));
277 return;
278 }
279
280 for (i = 0; i < 8; i++) {
281 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000282 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000283 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000284 pr_cont(" %08x", regs[i*8+j]);
285 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000286 }
287
288}
289
290/*
291 * ixgbe_dump - Print registers, tx-rings and rx-rings
292 */
293static void ixgbe_dump(struct ixgbe_adapter *adapter)
294{
295 struct net_device *netdev = adapter->netdev;
296 struct ixgbe_hw *hw = &adapter->hw;
297 struct ixgbe_reg_info *reginfo;
298 int n = 0;
299 struct ixgbe_ring *tx_ring;
Alexander Duyck729739b2012-02-08 07:51:06 +0000300 struct ixgbe_tx_buffer *tx_buffer;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000301 union ixgbe_adv_tx_desc *tx_desc;
302 struct my_u0 { u64 a; u64 b; } *u0;
303 struct ixgbe_ring *rx_ring;
304 union ixgbe_adv_rx_desc *rx_desc;
305 struct ixgbe_rx_buffer *rx_buffer_info;
306 u32 staterr;
307 int i = 0;
308
309 if (!netif_msg_hw(adapter))
310 return;
311
312 /* Print netdevice Info */
313 if (netdev) {
314 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000315 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000316 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000317 pr_info("%-15s %016lX %016lX %016lX\n",
318 netdev->name,
319 netdev->state,
320 netdev->trans_start,
321 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000322 }
323
324 /* Print Registers */
325 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000326 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000327 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
328 reginfo->name; reginfo++) {
329 ixgbe_regdump(hw, reginfo);
330 }
331
332 /* Print TX Ring Summary */
333 if (!netdev || !netif_running(netdev))
334 goto exit;
335
336 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000337 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000338 for (n = 0; n < adapter->num_tx_queues; n++) {
339 tx_ring = adapter->tx_ring[n];
Alexander Duyck729739b2012-02-08 07:51:06 +0000340 tx_buffer = &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Alexander Duyckd3d00232011-07-15 02:31:25 +0000341 pr_info(" %5d %5X %5X %016llX %04X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000342 n, tx_ring->next_to_use, tx_ring->next_to_clean,
Alexander Duyck729739b2012-02-08 07:51:06 +0000343 (u64)dma_unmap_addr(tx_buffer, dma),
344 dma_unmap_len(tx_buffer, len),
345 tx_buffer->next_to_watch,
346 (u64)tx_buffer->time_stamp);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000347 }
348
349 /* Print TX Rings */
350 if (!netif_msg_tx_done(adapter))
351 goto rx_ring_summary;
352
353 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
354
355 /* Transmit Descriptor Formats
356 *
357 * Advanced Transmit Descriptor
358 * +--------------------------------------------------------------+
359 * 0 | Buffer Address [63:0] |
360 * +--------------------------------------------------------------+
361 * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
362 * +--------------------------------------------------------------+
363 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
364 */
365
366 for (n = 0; n < adapter->num_tx_queues; n++) {
367 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000368 pr_info("------------------------------------\n");
369 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
370 pr_info("------------------------------------\n");
371 pr_info("T [desc] [address 63:0 ] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000372 "[PlPOIdStDDt Ln] [bi->dma ] "
373 "leng ntw timestamp bi->skb\n");
374
375 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duycke4f74022012-01-31 02:59:44 +0000376 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000377 tx_buffer = &tx_ring->tx_buffer_info[i];
Taku Izumidcd79ae2010-04-27 14:39:53 +0000378 u0 = (struct my_u0 *)tx_desc;
Joe Perchesc7689572010-09-07 21:35:17 +0000379 pr_info("T [0x%03X] %016llX %016llX %016llX"
Alexander Duyckd3d00232011-07-15 02:31:25 +0000380 " %04X %p %016llX %p", i,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000381 le64_to_cpu(u0->a),
382 le64_to_cpu(u0->b),
Alexander Duyck729739b2012-02-08 07:51:06 +0000383 (u64)dma_unmap_addr(tx_buffer, dma),
384 dma_unmap_len(tx_buffer, len),
385 tx_buffer->next_to_watch,
386 (u64)tx_buffer->time_stamp,
387 tx_buffer->skb);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000388 if (i == tx_ring->next_to_use &&
389 i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000390 pr_cont(" NTC/U\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000391 else if (i == tx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000392 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000393 else if (i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000394 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000395 else
Joe Perchesc7689572010-09-07 21:35:17 +0000396 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000397
398 if (netif_msg_pktdata(adapter) &&
Alexander Duyck729739b2012-02-08 07:51:06 +0000399 dma_unmap_len(tx_buffer, len) != 0)
Taku Izumidcd79ae2010-04-27 14:39:53 +0000400 print_hex_dump(KERN_INFO, "",
401 DUMP_PREFIX_ADDRESS, 16, 1,
Alexander Duyck729739b2012-02-08 07:51:06 +0000402 phys_to_virt(dma_unmap_addr(tx_buffer,
403 dma)),
404 dma_unmap_len(tx_buffer, len),
405 true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000406 }
407 }
408
409 /* Print RX Rings Summary */
410rx_ring_summary:
411 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000412 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000413 for (n = 0; n < adapter->num_rx_queues; n++) {
414 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000415 pr_info("%5d %5X %5X\n",
416 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000417 }
418
419 /* Print RX Rings */
420 if (!netif_msg_rx_status(adapter))
421 goto exit;
422
423 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
424
425 /* Advanced Receive Descriptor (Read) Format
426 * 63 1 0
427 * +-----------------------------------------------------+
428 * 0 | Packet Buffer Address [63:1] |A0/NSE|
429 * +----------------------------------------------+------+
430 * 8 | Header Buffer Address [63:1] | DD |
431 * +-----------------------------------------------------+
432 *
433 *
434 * Advanced Receive Descriptor (Write-Back) Format
435 *
436 * 63 48 47 32 31 30 21 20 16 15 4 3 0
437 * +------------------------------------------------------+
438 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
439 * | Checksum Ident | | | | Type | Type |
440 * +------------------------------------------------------+
441 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
442 * +------------------------------------------------------+
443 * 63 48 47 32 31 20 19 0
444 */
445 for (n = 0; n < adapter->num_rx_queues; n++) {
446 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000447 pr_info("------------------------------------\n");
448 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
449 pr_info("------------------------------------\n");
450 pr_info("R [desc] [ PktBuf A0] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000451 "[ HeadBuf DD] [bi->dma ] [bi->skb] "
452 "<-- Adv Rx Read format\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000453 pr_info("RWB[desc] [PcsmIpSHl PtRs] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000454 "[vl er S cks ln] ---------------- [bi->skb] "
455 "<-- Adv Rx Write-Back format\n");
456
457 for (i = 0; i < rx_ring->count; i++) {
458 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000459 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000460 u0 = (struct my_u0 *)rx_desc;
461 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
462 if (staterr & IXGBE_RXD_STAT_DD) {
463 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000464 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000465 "%016llX ---------------- %p", i,
466 le64_to_cpu(u0->a),
467 le64_to_cpu(u0->b),
468 rx_buffer_info->skb);
469 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000470 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000471 "%016llX %016llX %p", i,
472 le64_to_cpu(u0->a),
473 le64_to_cpu(u0->b),
474 (u64)rx_buffer_info->dma,
475 rx_buffer_info->skb);
476
477 if (netif_msg_pktdata(adapter)) {
478 print_hex_dump(KERN_INFO, "",
479 DUMP_PREFIX_ADDRESS, 16, 1,
480 phys_to_virt(rx_buffer_info->dma),
Alexander Duyckf8003262012-03-03 02:35:52 +0000481 ixgbe_rx_bufsz(rx_ring), true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000482 }
483 }
484
485 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000486 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000487 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000488 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000489 else
Joe Perchesc7689572010-09-07 21:35:17 +0000490 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000491
492 }
493 }
494
495exit:
496 return;
497}
498
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800499static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
500{
501 u32 ctrl_ext;
502
503 /* Let firmware take over control of h/w */
504 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
505 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000506 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800507}
508
509static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
510{
511 u32 ctrl_ext;
512
513 /* Let firmware know the driver has taken over */
514 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
515 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000516 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800517}
Auke Kok9a799d72007-09-15 14:07:45 -0700518
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000519/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000520 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
521 * @adapter: pointer to adapter struct
522 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
523 * @queue: queue to map the corresponding interrupt to
524 * @msix_vector: the vector to map to the corresponding queue
525 *
526 */
527static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000528 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700529{
530 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000531 struct ixgbe_hw *hw = &adapter->hw;
532 switch (hw->mac.type) {
533 case ixgbe_mac_82598EB:
534 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
535 if (direction == -1)
536 direction = 0;
537 index = (((direction * 64) + queue) >> 2) & 0x1F;
538 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
539 ivar &= ~(0xFF << (8 * (queue & 0x3)));
540 ivar |= (msix_vector << (8 * (queue & 0x3)));
541 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
542 break;
543 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800544 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000545 if (direction == -1) {
546 /* other causes */
547 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
548 index = ((queue & 1) * 8);
549 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
550 ivar &= ~(0xFF << index);
551 ivar |= (msix_vector << index);
552 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
553 break;
554 } else {
555 /* tx or rx causes */
556 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
557 index = ((16 * (queue & 1)) + (8 * direction));
558 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
559 ivar &= ~(0xFF << index);
560 ivar |= (msix_vector << index);
561 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
562 break;
563 }
564 default:
565 break;
566 }
Auke Kok9a799d72007-09-15 14:07:45 -0700567}
568
Alexander Duyckfe49f042009-06-04 16:00:09 +0000569static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000570 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000571{
572 u32 mask;
573
Alexander Duyckbd508172010-11-16 19:27:03 -0800574 switch (adapter->hw.mac.type) {
575 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000576 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
577 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800578 break;
579 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800580 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000581 mask = (qmask & 0xFFFFFFFF);
582 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
583 mask = (qmask >> 32);
584 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800585 break;
586 default:
587 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000588 }
589}
590
Alexander Duyck729739b2012-02-08 07:51:06 +0000591void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *ring,
592 struct ixgbe_tx_buffer *tx_buffer)
Alexander Duyckd3d00232011-07-15 02:31:25 +0000593{
Alexander Duyck729739b2012-02-08 07:51:06 +0000594 if (tx_buffer->skb) {
595 dev_kfree_skb_any(tx_buffer->skb);
596 if (dma_unmap_len(tx_buffer, len))
Alexander Duyckd3d00232011-07-15 02:31:25 +0000597 dma_unmap_single(ring->dev,
Alexander Duyck729739b2012-02-08 07:51:06 +0000598 dma_unmap_addr(tx_buffer, dma),
599 dma_unmap_len(tx_buffer, len),
600 DMA_TO_DEVICE);
601 } else if (dma_unmap_len(tx_buffer, len)) {
602 dma_unmap_page(ring->dev,
603 dma_unmap_addr(tx_buffer, dma),
604 dma_unmap_len(tx_buffer, len),
605 DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000606 }
Alexander Duyck729739b2012-02-08 07:51:06 +0000607 tx_buffer->next_to_watch = NULL;
608 tx_buffer->skb = NULL;
609 dma_unmap_len_set(tx_buffer, len, 0);
610 /* tx_buffer must be completely set up in the transmit path */
Auke Kok9a799d72007-09-15 14:07:45 -0700611}
612
Alexander Duyck943561d2012-05-09 22:14:44 -0700613static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter *adapter)
614{
615 struct ixgbe_hw *hw = &adapter->hw;
616 struct ixgbe_hw_stats *hwstats = &adapter->stats;
617 int i;
618 u32 data;
619
620 if ((hw->fc.current_mode != ixgbe_fc_full) &&
621 (hw->fc.current_mode != ixgbe_fc_rx_pause))
622 return;
623
624 switch (hw->mac.type) {
625 case ixgbe_mac_82598EB:
626 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
627 break;
628 default:
629 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
630 }
631 hwstats->lxoffrxc += data;
632
633 /* refill credits (no tx hang) if we received xoff */
634 if (!data)
635 return;
636
637 for (i = 0; i < adapter->num_tx_queues; i++)
638 clear_bit(__IXGBE_HANG_CHECK_ARMED,
639 &adapter->tx_ring[i]->state);
640}
641
John Fastabendc84d3242010-11-16 19:27:12 -0800642static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700643{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700644 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800645 struct ixgbe_hw_stats *hwstats = &adapter->stats;
John Fastabendc84d3242010-11-16 19:27:12 -0800646 u32 xoff[8] = {0};
647 int i;
Alexander Duyck943561d2012-05-09 22:14:44 -0700648 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700649
Alexander Duyck943561d2012-05-09 22:14:44 -0700650 if (adapter->ixgbe_ieee_pfc)
651 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
John Fastabendc84d3242010-11-16 19:27:12 -0800652
Alexander Duyck943561d2012-05-09 22:14:44 -0700653 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED) || !pfc_en) {
654 ixgbe_update_xoff_rx_lfc(adapter);
John Fastabendc84d3242010-11-16 19:27:12 -0800655 return;
Alexander Duyck943561d2012-05-09 22:14:44 -0700656 }
John Fastabendc84d3242010-11-16 19:27:12 -0800657
658 /* update stats for each tc, only valid with PFC enabled */
659 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
660 switch (hw->mac.type) {
661 case ixgbe_mac_82598EB:
662 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
663 break;
664 default:
665 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
666 }
667 hwstats->pxoffrxc[i] += xoff[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700668 }
669
John Fastabendc84d3242010-11-16 19:27:12 -0800670 /* disarm tx queues that have received xoff frames */
671 for (i = 0; i < adapter->num_tx_queues; i++) {
672 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendfb5475f2011-04-26 07:26:36 +0000673 u8 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800674
675 if (xoff[tc])
676 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
677 }
678}
679
680static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
681{
Alexander Duyck7d7ce682012-02-08 07:50:51 +0000682 return ring->stats.packets;
John Fastabendc84d3242010-11-16 19:27:12 -0800683}
684
685static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
686{
687 struct ixgbe_adapter *adapter = netdev_priv(ring->netdev);
688 struct ixgbe_hw *hw = &adapter->hw;
689
690 u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
691 u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
692
693 if (head != tail)
694 return (head < tail) ?
695 tail - head : (tail + ring->count - head);
696
697 return 0;
698}
699
700static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
701{
702 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
703 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
704 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
705 bool ret = false;
706
707 clear_check_for_tx_hang(tx_ring);
708
709 /*
710 * Check for a hung queue, but be thorough. This verifies
711 * that a transmit has been completed since the previous
712 * check AND there is at least one packet pending. The
713 * ARMED bit is set to indicate a potential hang. The
714 * bit is cleared if a pause frame is received to remove
715 * false hang detection due to PFC or 802.3x frames. By
716 * requiring this to fail twice we avoid races with
717 * pfc clearing the ARMED bit and conditions where we
718 * run the check_tx_hang logic with a transmit completion
719 * pending but without time to complete it yet.
720 */
721 if ((tx_done_old == tx_done) && tx_pending) {
722 /* make sure it is true for two checks in a row */
723 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
724 &tx_ring->state);
725 } else {
726 /* update completed stats and continue */
727 tx_ring->tx_stats.tx_done_old = tx_done;
728 /* reset the countdown */
729 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
730 }
731
732 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700733}
734
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000735/**
736 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
737 * @adapter: driver private struct
738 **/
739static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
740{
741
742 /* Do the reset outside of interrupt context */
743 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
744 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
745 ixgbe_service_event_schedule(adapter);
746 }
747}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700748
Auke Kok9a799d72007-09-15 14:07:45 -0700749/**
750 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000751 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700752 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700753 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000754static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000755 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700756{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000757 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000758 struct ixgbe_tx_buffer *tx_buffer;
759 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700760 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +0000761 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyck729739b2012-02-08 07:51:06 +0000762 unsigned int i = tx_ring->next_to_clean;
763
764 if (test_bit(__IXGBE_DOWN, &adapter->state))
765 return true;
Auke Kok9a799d72007-09-15 14:07:45 -0700766
Alexander Duyckd3d00232011-07-15 02:31:25 +0000767 tx_buffer = &tx_ring->tx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000768 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000769 i -= tx_ring->count;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800770
Alexander Duyck729739b2012-02-08 07:51:06 +0000771 do {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000772 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -0700773
Alexander Duyckd3d00232011-07-15 02:31:25 +0000774 /* if next_to_watch is not set then there is no work pending */
775 if (!eop_desc)
776 break;
777
Alexander Duyck7f83a9e2012-02-08 07:49:23 +0000778 /* prevent any other reads prior to eop_desc */
779 rmb();
780
Alexander Duyckd3d00232011-07-15 02:31:25 +0000781 /* if DD is not set pending work has not been completed */
782 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
783 break;
784
Alexander Duyckd3d00232011-07-15 02:31:25 +0000785 /* clear next_to_watch to prevent false hangs */
786 tx_buffer->next_to_watch = NULL;
787
Alexander Duyck091a6242012-02-08 07:51:01 +0000788 /* update the statistics for this packet */
789 total_bytes += tx_buffer->bytecount;
790 total_packets += tx_buffer->gso_segs;
791
Jacob Keller3a6a4ed2012-05-01 05:24:58 +0000792#ifdef CONFIG_IXGBE_PTP
Jacob Keller0ede4a62012-05-22 06:08:32 +0000793 if (unlikely(tx_buffer->tx_flags & IXGBE_TX_FLAGS_TSTAMP))
794 ixgbe_ptp_tx_hwtstamp(q_vector, tx_buffer->skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +0000795#endif
Jacob Keller0ede4a62012-05-22 06:08:32 +0000796
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000797 /* free the skb */
798 dev_kfree_skb_any(tx_buffer->skb);
799
Alexander Duyck729739b2012-02-08 07:51:06 +0000800 /* unmap skb header data */
801 dma_unmap_single(tx_ring->dev,
802 dma_unmap_addr(tx_buffer, dma),
803 dma_unmap_len(tx_buffer, len),
804 DMA_TO_DEVICE);
805
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000806 /* clear tx_buffer data */
807 tx_buffer->skb = NULL;
Alexander Duyck729739b2012-02-08 07:51:06 +0000808 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000809
Alexander Duyck729739b2012-02-08 07:51:06 +0000810 /* unmap remaining buffers */
811 while (tx_desc != eop_desc) {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000812 tx_buffer++;
813 tx_desc++;
814 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +0000815 if (unlikely(!i)) {
816 i -= tx_ring->count;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000817 tx_buffer = tx_ring->tx_buffer_info;
Alexander Duycke4f74022012-01-31 02:59:44 +0000818 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000819 }
820
Alexander Duyck729739b2012-02-08 07:51:06 +0000821 /* unmap any remaining paged data */
822 if (dma_unmap_len(tx_buffer, len)) {
823 dma_unmap_page(tx_ring->dev,
824 dma_unmap_addr(tx_buffer, dma),
825 dma_unmap_len(tx_buffer, len),
826 DMA_TO_DEVICE);
827 dma_unmap_len_set(tx_buffer, len, 0);
828 }
829 }
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800830
Alexander Duyck729739b2012-02-08 07:51:06 +0000831 /* move us one more past the eop_desc for start of next pkt */
832 tx_buffer++;
833 tx_desc++;
834 i++;
835 if (unlikely(!i)) {
836 i -= tx_ring->count;
837 tx_buffer = tx_ring->tx_buffer_info;
838 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
839 }
840
841 /* issue prefetch for next Tx descriptor */
842 prefetch(tx_desc);
843
844 /* update budget accounting */
845 budget--;
846 } while (likely(budget));
847
848 i += tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -0700849 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000850 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -0800851 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +0000852 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000853 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +0000854 q_vector->tx.total_bytes += total_bytes;
855 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -0800856
John Fastabendc84d3242010-11-16 19:27:12 -0800857 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -0800858 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -0800859 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800860 e_err(drv, "Detected Tx Unit Hang\n"
861 " Tx Queue <%d>\n"
862 " TDH, TDT <%x>, <%x>\n"
863 " next_to_use <%x>\n"
864 " next_to_clean <%x>\n"
865 "tx_buffer_info[next_to_clean]\n"
866 " time_stamp <%lx>\n"
867 " jiffies <%lx>\n",
868 tx_ring->queue_index,
869 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
870 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +0000871 tx_ring->next_to_use, i,
872 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -0800873
874 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
875
876 e_info(probe,
877 "tx hang %d detected on queue %d, resetting adapter\n",
878 adapter->tx_timeout_count + 1, tx_ring->queue_index);
879
880 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000881 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -0800882
883 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +0000884 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -0800885 }
Auke Kok9a799d72007-09-15 14:07:45 -0700886
Alexander Duyckb2d96e02012-02-07 08:14:33 +0000887 netdev_tx_completed_queue(txring_txq(tx_ring),
888 total_packets, total_bytes);
889
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800890#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +0000891 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +0000892 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800893 /* Make sure that anybody stopping the queue after this
894 * sees the new next_to_clean.
895 */
896 smp_mb();
Alexander Duyck729739b2012-02-08 07:51:06 +0000897 if (__netif_subqueue_stopped(tx_ring->netdev,
898 tx_ring->queue_index)
899 && !test_bit(__IXGBE_DOWN, &adapter->state)) {
900 netif_wake_subqueue(tx_ring->netdev,
901 tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800902 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800903 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800904 }
Auke Kok9a799d72007-09-15 14:07:45 -0700905
Alexander Duyck59224552011-08-31 00:01:06 +0000906 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -0700907}
908
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400909#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800910static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800911 struct ixgbe_ring *tx_ring,
912 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800913{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000914 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000915 u32 txctrl = dca3_get_tag(tx_ring->dev, cpu);
916 u16 reg_offset;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800917
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800918 switch (hw->mac.type) {
919 case ixgbe_mac_82598EB:
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000920 reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800921 break;
922 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800923 case ixgbe_mac_X540:
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000924 reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx);
925 txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599;
926 break;
927 default:
928 /* for unknown hardware do not write register */
929 return;
930 }
931
932 /*
933 * We can enable relaxed ordering for reads, but not writes when
934 * DCA is enabled. This is due to a known issue in some chipsets
935 * which will cause the DCA tag to be cleared.
936 */
937 txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN |
938 IXGBE_DCA_TXCTRL_DATA_RRO_EN |
939 IXGBE_DCA_TXCTRL_DESC_DCA_EN;
940
941 IXGBE_WRITE_REG(hw, reg_offset, txctrl);
942}
943
944static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
945 struct ixgbe_ring *rx_ring,
946 int cpu)
947{
948 struct ixgbe_hw *hw = &adapter->hw;
949 u32 rxctrl = dca3_get_tag(rx_ring->dev, cpu);
950 u8 reg_idx = rx_ring->reg_idx;
951
952
953 switch (hw->mac.type) {
954 case ixgbe_mac_82599EB:
955 case ixgbe_mac_X540:
956 rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800957 break;
958 default:
959 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800960 }
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000961
962 /*
963 * We can enable relaxed ordering for reads, but not writes when
964 * DCA is enabled. This is due to a known issue in some chipsets
965 * which will cause the DCA tag to be cleared.
966 */
967 rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN |
968 IXGBE_DCA_RXCTRL_DATA_DCA_EN |
969 IXGBE_DCA_RXCTRL_DESC_DCA_EN;
970
971 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800972}
973
974static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
975{
976 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000977 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800978 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800979
980 if (q_vector->cpu == cpu)
981 goto out_no_update;
982
Alexander Duycka5579282012-02-08 07:50:04 +0000983 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000984 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800985
Alexander Duycka5579282012-02-08 07:50:04 +0000986 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000987 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800988
989 q_vector->cpu = cpu;
990out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800991 put_cpu();
992}
993
994static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
995{
996 int i;
997
998 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
999 return;
1000
Alexander Duycke35ec122009-05-21 13:07:12 +00001001 /* always use CB2 mode, difference is masked in the CB driver */
1002 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
1003
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001004 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001005 adapter->q_vector[i]->cpu = -1;
1006 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001007 }
1008}
1009
1010static int __ixgbe_notify_dca(struct device *dev, void *data)
1011{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001012 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001013 unsigned long event = *(unsigned long *)data;
1014
Don Skidmore2a72c312011-07-20 02:27:05 +00001015 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001016 return 0;
1017
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001018 switch (event) {
1019 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001020 /* if we're already enabled, don't do it again */
1021 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1022 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001023 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001024 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001025 ixgbe_setup_dca(adapter);
1026 break;
1027 }
1028 /* Fall Through since DCA is disabled. */
1029 case DCA_PROVIDER_REMOVE:
1030 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1031 dca_remove_requester(dev);
1032 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1033 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
1034 }
1035 break;
1036 }
1037
Denis V. Lunev652f0932008-03-27 14:39:17 +03001038 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001039}
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001040
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001041#endif /* CONFIG_IXGBE_DCA */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001042static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
1043 union ixgbe_adv_rx_desc *rx_desc,
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001044 struct sk_buff *skb)
1045{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001046 if (ring->netdev->features & NETIF_F_RXHASH)
1047 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001048}
1049
Alexander Duyckf8003262012-03-03 02:35:52 +00001050#ifdef IXGBE_FCOE
Auke Kok9a799d72007-09-15 14:07:45 -07001051/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001052 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
Alexander Duyck57efd442012-06-25 21:54:46 +00001053 * @ring: structure containing ring specific data
Alexander Duyckff886df2011-06-11 01:45:13 +00001054 * @rx_desc: advanced rx descriptor
1055 *
1056 * Returns : true if it is FCoE pkt
1057 */
Alexander Duyck57efd442012-06-25 21:54:46 +00001058static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring *ring,
Alexander Duyckff886df2011-06-11 01:45:13 +00001059 union ixgbe_adv_rx_desc *rx_desc)
1060{
1061 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1062
Alexander Duyck57efd442012-06-25 21:54:46 +00001063 return test_bit(__IXGBE_RX_FCOE, &ring->state) &&
Alexander Duyckff886df2011-06-11 01:45:13 +00001064 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1065 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1066 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1067}
1068
Alexander Duyckf8003262012-03-03 02:35:52 +00001069#endif /* IXGBE_FCOE */
Alexander Duyckff886df2011-06-11 01:45:13 +00001070/**
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001071 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
Alexander Duyck8a0da212012-01-31 02:59:49 +00001072 * @ring: structure containing ring specific data
1073 * @rx_desc: current Rx descriptor being processed
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001074 * @skb: skb currently being received and modified
1075 **/
Alexander Duyck8a0da212012-01-31 02:59:49 +00001076static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001077 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001078 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001079{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001080 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001081
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001082 /* Rx csum disabled */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001083 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Auke Kok9a799d72007-09-15 14:07:45 -07001084 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001085
1086 /* if IP and error */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001087 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1088 ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001089 ring->rx_stats.csum_err++;
Auke Kok9a799d72007-09-15 14:07:45 -07001090 return;
1091 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001092
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001093 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001094 return;
1095
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001096 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Alexander Duyckf8003262012-03-03 02:35:52 +00001097 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
Don Skidmore8bae1b22009-07-23 18:00:39 +00001098
1099 /*
1100 * 82599 errata, UDP frames with a 0 checksum can be marked as
1101 * checksum errors.
1102 */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001103 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1104 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
Don Skidmore8bae1b22009-07-23 18:00:39 +00001105 return;
1106
Alexander Duyck8a0da212012-01-31 02:59:49 +00001107 ring->rx_stats.csum_err++;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001108 return;
1109 }
1110
Auke Kok9a799d72007-09-15 14:07:45 -07001111 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001112 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001113}
1114
Alexander Duyck84ea2592010-11-16 19:26:49 -08001115static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001116{
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001117 rx_ring->next_to_use = val;
Alexander Duyckf8003262012-03-03 02:35:52 +00001118
1119 /* update next to alloc since we have filled the ring */
1120 rx_ring->next_to_alloc = val;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001121 /*
1122 * Force memory writes to complete before letting h/w
1123 * know there are new descriptors to fetch. (Only
1124 * applicable for weak-ordered memory model archs,
1125 * such as IA-64).
1126 */
1127 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001128 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001129}
1130
Alexander Duyckf990b792012-01-31 02:59:34 +00001131static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1132 struct ixgbe_rx_buffer *bi)
1133{
1134 struct page *page = bi->page;
Alexander Duyckf8003262012-03-03 02:35:52 +00001135 dma_addr_t dma = bi->dma;
Alexander Duyckf990b792012-01-31 02:59:34 +00001136
Alexander Duyckf8003262012-03-03 02:35:52 +00001137 /* since we are recycling buffers we should seldom need to alloc */
1138 if (likely(dma))
Alexander Duyckf990b792012-01-31 02:59:34 +00001139 return true;
1140
Alexander Duyckf8003262012-03-03 02:35:52 +00001141 /* alloc new page for storage */
1142 if (likely(!page)) {
Alexander Duyck8633c082012-06-16 07:31:19 +00001143 page = alloc_pages(GFP_ATOMIC | __GFP_COLD | __GFP_COMP,
Alexander Duyckf8003262012-03-03 02:35:52 +00001144 ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf990b792012-01-31 02:59:34 +00001145 if (unlikely(!page)) {
1146 rx_ring->rx_stats.alloc_rx_page_failed++;
1147 return false;
1148 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001149 bi->page = page;
Alexander Duyckf990b792012-01-31 02:59:34 +00001150 }
1151
Alexander Duyckf8003262012-03-03 02:35:52 +00001152 /* map page for use */
1153 dma = dma_map_page(rx_ring->dev, page, 0,
1154 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
Alexander Duyckf990b792012-01-31 02:59:34 +00001155
Alexander Duyckf8003262012-03-03 02:35:52 +00001156 /*
1157 * if mapping failed free memory back to system since
1158 * there isn't much point in holding memory we can't use
1159 */
1160 if (dma_mapping_error(rx_ring->dev, dma)) {
Alexander Duyckdd411ec2012-04-06 04:24:50 +00001161 __free_pages(page, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00001162 bi->page = NULL;
1163
Alexander Duyckf990b792012-01-31 02:59:34 +00001164 rx_ring->rx_stats.alloc_rx_page_failed++;
1165 return false;
1166 }
1167
Alexander Duyckf8003262012-03-03 02:35:52 +00001168 bi->dma = dma;
1169 bi->page_offset ^= ixgbe_rx_bufsz(rx_ring);
1170
Alexander Duyckf990b792012-01-31 02:59:34 +00001171 return true;
1172}
1173
Auke Kok9a799d72007-09-15 14:07:45 -07001174/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001175 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001176 * @rx_ring: ring to place buffers on
1177 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001178 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001179void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001180{
Auke Kok9a799d72007-09-15 14:07:45 -07001181 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001182 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001183 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001184
Alexander Duyckf8003262012-03-03 02:35:52 +00001185 /* nothing to do */
1186 if (!cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001187 return;
1188
Alexander Duycke4f74022012-01-31 02:59:44 +00001189 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Alexander Duyckf990b792012-01-31 02:59:34 +00001190 bi = &rx_ring->rx_buffer_info[i];
1191 i -= rx_ring->count;
1192
Alexander Duyckf8003262012-03-03 02:35:52 +00001193 do {
1194 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
Alexander Duyckf990b792012-01-31 02:59:34 +00001195 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001196
Alexander Duyckf8003262012-03-03 02:35:52 +00001197 /*
1198 * Refresh the desc even if buffer_addrs didn't change
1199 * because each write-back erases this info.
1200 */
1201 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
Auke Kok9a799d72007-09-15 14:07:45 -07001202
Alexander Duyckf990b792012-01-31 02:59:34 +00001203 rx_desc++;
1204 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001205 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001206 if (unlikely(!i)) {
Alexander Duycke4f74022012-01-31 02:59:44 +00001207 rx_desc = IXGBE_RX_DESC(rx_ring, 0);
Alexander Duyckf990b792012-01-31 02:59:34 +00001208 bi = rx_ring->rx_buffer_info;
1209 i -= rx_ring->count;
1210 }
1211
1212 /* clear the hdr_addr for the next_to_use descriptor */
1213 rx_desc->read.hdr_addr = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001214
1215 cleaned_count--;
1216 } while (cleaned_count);
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001217
Alexander Duyckf990b792012-01-31 02:59:34 +00001218 i += rx_ring->count;
1219
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001220 if (rx_ring->next_to_use != i)
Alexander Duyck84ea2592010-11-16 19:26:49 -08001221 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001222}
1223
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001224/**
1225 * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE
1226 * @data: pointer to the start of the headers
1227 * @max_len: total length of section to find headers in
1228 *
1229 * This function is meant to determine the length of headers that will
1230 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1231 * motivation of doing this is to only perform one pull for IPv4 TCP
1232 * packets so that we can do basic things like calculating the gso_size
1233 * based on the average data per packet.
1234 **/
1235static unsigned int ixgbe_get_headlen(unsigned char *data,
1236 unsigned int max_len)
1237{
1238 union {
1239 unsigned char *network;
1240 /* l2 headers */
1241 struct ethhdr *eth;
1242 struct vlan_hdr *vlan;
1243 /* l3 headers */
1244 struct iphdr *ipv4;
1245 } hdr;
1246 __be16 protocol;
1247 u8 nexthdr = 0; /* default to not TCP */
1248 u8 hlen;
1249
1250 /* this should never happen, but better safe than sorry */
1251 if (max_len < ETH_HLEN)
1252 return max_len;
1253
1254 /* initialize network frame pointer */
1255 hdr.network = data;
1256
1257 /* set first protocol and move network header forward */
1258 protocol = hdr.eth->h_proto;
1259 hdr.network += ETH_HLEN;
1260
1261 /* handle any vlan tag if present */
1262 if (protocol == __constant_htons(ETH_P_8021Q)) {
1263 if ((hdr.network - data) > (max_len - VLAN_HLEN))
1264 return max_len;
1265
1266 protocol = hdr.vlan->h_vlan_encapsulated_proto;
1267 hdr.network += VLAN_HLEN;
1268 }
1269
1270 /* handle L3 protocols */
1271 if (protocol == __constant_htons(ETH_P_IP)) {
1272 if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
1273 return max_len;
1274
1275 /* access ihl as a u8 to avoid unaligned access on ia64 */
1276 hlen = (hdr.network[0] & 0x0F) << 2;
1277
1278 /* verify hlen meets minimum size requirements */
1279 if (hlen < sizeof(struct iphdr))
1280 return hdr.network - data;
1281
1282 /* record next protocol */
1283 nexthdr = hdr.ipv4->protocol;
1284 hdr.network += hlen;
Alexander Duyckf8003262012-03-03 02:35:52 +00001285#ifdef IXGBE_FCOE
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001286 } else if (protocol == __constant_htons(ETH_P_FCOE)) {
1287 if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN))
1288 return max_len;
1289 hdr.network += FCOE_HEADER_LEN;
1290#endif
1291 } else {
1292 return hdr.network - data;
1293 }
1294
1295 /* finally sort out TCP */
1296 if (nexthdr == IPPROTO_TCP) {
1297 if ((hdr.network - data) > (max_len - sizeof(struct tcphdr)))
1298 return max_len;
1299
1300 /* access doff as a u8 to avoid unaligned access on ia64 */
1301 hlen = (hdr.network[12] & 0xF0) >> 2;
1302
1303 /* verify hlen meets minimum size requirements */
1304 if (hlen < sizeof(struct tcphdr))
1305 return hdr.network - data;
1306
1307 hdr.network += hlen;
1308 }
1309
1310 /*
1311 * If everything has gone correctly hdr.network should be the
1312 * data section of the packet and will be the end of the header.
1313 * If not then it probably represents the end of the last recognized
1314 * header.
1315 */
1316 if ((hdr.network - data) < max_len)
1317 return hdr.network - data;
1318 else
1319 return max_len;
1320}
1321
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001322static void ixgbe_get_rsc_cnt(struct ixgbe_ring *rx_ring,
1323 union ixgbe_adv_rx_desc *rx_desc,
1324 struct sk_buff *skb)
1325{
1326 __le32 rsc_enabled;
1327 u32 rsc_cnt;
1328
1329 if (!ring_is_rsc_enabled(rx_ring))
1330 return;
1331
1332 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1333 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1334
1335 /* If this is an RSC frame rsc_cnt should be non-zero */
1336 if (!rsc_enabled)
1337 return;
1338
1339 rsc_cnt = le32_to_cpu(rsc_enabled);
1340 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1341
1342 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
Alexander Duyckaa801752010-11-16 19:27:02 -08001343}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001344
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001345static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1346 struct sk_buff *skb)
1347{
Alexander Duyckf8003262012-03-03 02:35:52 +00001348 u16 hdr_len = skb_headlen(skb);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001349
1350 /* set gso_size to avoid messing up TCP MSS */
1351 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1352 IXGBE_CB(skb)->append_cnt);
1353}
1354
1355static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1356 struct sk_buff *skb)
1357{
1358 /* if append_cnt is 0 then frame is not RSC */
1359 if (!IXGBE_CB(skb)->append_cnt)
1360 return;
1361
1362 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1363 rx_ring->rx_stats.rsc_flush++;
1364
1365 ixgbe_set_rsc_gso_size(rx_ring, skb);
1366
1367 /* gso_size is computed using append_cnt so always clear it last */
1368 IXGBE_CB(skb)->append_cnt = 0;
1369}
1370
Alexander Duyck8a0da212012-01-31 02:59:49 +00001371/**
1372 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1373 * @rx_ring: rx descriptor ring packet is being transacted on
1374 * @rx_desc: pointer to the EOP Rx descriptor
1375 * @skb: pointer to current skb being populated
1376 *
1377 * This function checks the ring, descriptor, and packet information in
1378 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1379 * other fields within the skb.
1380 **/
1381static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1382 union ixgbe_adv_rx_desc *rx_desc,
1383 struct sk_buff *skb)
1384{
John Fastabend43e95f12012-05-15 06:12:17 +00001385 struct net_device *dev = rx_ring->netdev;
1386
Alexander Duyck8a0da212012-01-31 02:59:49 +00001387 ixgbe_update_rsc_stats(rx_ring, skb);
1388
1389 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1390
1391 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1392
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001393#ifdef CONFIG_IXGBE_PTP
Jacob Keller1d1a79b2012-05-22 06:18:08 +00001394 ixgbe_ptp_rx_hwtstamp(rx_ring->q_vector, rx_desc, skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001395#endif
1396
John Fastabend43e95f12012-05-15 06:12:17 +00001397 if ((dev->features & NETIF_F_HW_VLAN_RX) &&
1398 ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001399 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
1400 __vlan_hwaccel_put_tag(skb, vid);
1401 }
1402
1403 skb_record_rx_queue(skb, rx_ring->queue_index);
1404
John Fastabend43e95f12012-05-15 06:12:17 +00001405 skb->protocol = eth_type_trans(skb, dev);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001406}
1407
1408static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1409 struct sk_buff *skb)
1410{
1411 struct ixgbe_adapter *adapter = q_vector->adapter;
1412
1413 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1414 napi_gro_receive(&q_vector->napi, skb);
1415 else
1416 netif_rx(skb);
Alexander Duyckf8212f92009-04-27 22:42:37 +00001417}
1418
Alexander Duyckf8003262012-03-03 02:35:52 +00001419/**
1420 * ixgbe_is_non_eop - process handling of non-EOP buffers
1421 * @rx_ring: Rx ring being processed
1422 * @rx_desc: Rx descriptor for current buffer
1423 * @skb: Current socket buffer containing buffer in progress
1424 *
1425 * This function updates next to clean. If the buffer is an EOP buffer
1426 * this function exits returning false, otherwise it will place the
1427 * sk_buff in the next buffer to be chained and return true indicating
1428 * that this is in fact a non-EOP buffer.
1429 **/
1430static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring,
1431 union ixgbe_adv_rx_desc *rx_desc,
1432 struct sk_buff *skb)
1433{
1434 u32 ntc = rx_ring->next_to_clean + 1;
1435
1436 /* fetch, update, and store next to clean */
1437 ntc = (ntc < rx_ring->count) ? ntc : 0;
1438 rx_ring->next_to_clean = ntc;
1439
1440 prefetch(IXGBE_RX_DESC(rx_ring, ntc));
1441
1442 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1443 return false;
1444
1445 /* append_cnt indicates packet is RSC, if so fetch nextp */
1446 if (IXGBE_CB(skb)->append_cnt) {
1447 ntc = le32_to_cpu(rx_desc->wb.upper.status_error);
1448 ntc &= IXGBE_RXDADV_NEXTP_MASK;
1449 ntc >>= IXGBE_RXDADV_NEXTP_SHIFT;
1450 }
1451
1452 /* place skb in next buffer to be received */
1453 rx_ring->rx_buffer_info[ntc].skb = skb;
1454 rx_ring->rx_stats.non_eop_descs++;
1455
1456 return true;
1457}
1458
1459/**
1460 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1461 * @rx_ring: rx descriptor ring packet is being transacted on
1462 * @rx_desc: pointer to the EOP Rx descriptor
1463 * @skb: pointer to current skb being fixed
1464 *
1465 * Check for corrupted packet headers caused by senders on the local L2
1466 * embedded NIC switch not setting up their Tx Descriptors right. These
1467 * should be very rare.
1468 *
1469 * Also address the case where we are pulling data in on pages only
1470 * and as such no data is present in the skb header.
1471 *
1472 * In addition if skb is not at least 60 bytes we need to pad it so that
1473 * it is large enough to qualify as a valid Ethernet frame.
1474 *
1475 * Returns true if an error was encountered and skb was freed.
1476 **/
1477static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1478 union ixgbe_adv_rx_desc *rx_desc,
1479 struct sk_buff *skb)
1480{
1481 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1482 struct net_device *netdev = rx_ring->netdev;
1483 unsigned char *va;
1484 unsigned int pull_len;
1485
1486 /* if the page was released unmap it, else just sync our portion */
1487 if (unlikely(IXGBE_CB(skb)->page_released)) {
1488 dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma,
1489 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
1490 IXGBE_CB(skb)->page_released = false;
1491 } else {
1492 dma_sync_single_range_for_cpu(rx_ring->dev,
1493 IXGBE_CB(skb)->dma,
1494 frag->page_offset,
1495 ixgbe_rx_bufsz(rx_ring),
1496 DMA_FROM_DEVICE);
1497 }
1498 IXGBE_CB(skb)->dma = 0;
1499
1500 /* verify that the packet does not have any known errors */
1501 if (unlikely(ixgbe_test_staterr(rx_desc,
1502 IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1503 !(netdev->features & NETIF_F_RXALL))) {
1504 dev_kfree_skb_any(skb);
1505 return true;
1506 }
1507
1508 /*
1509 * it is valid to use page_address instead of kmap since we are
1510 * working with pages allocated out of the lomem pool per
1511 * alloc_page(GFP_ATOMIC)
1512 */
1513 va = skb_frag_address(frag);
1514
1515 /*
1516 * we need the header to contain the greater of either ETH_HLEN or
1517 * 60 bytes if the skb->len is less than 60 for skb_pad.
1518 */
1519 pull_len = skb_frag_size(frag);
1520 if (pull_len > 256)
1521 pull_len = ixgbe_get_headlen(va, pull_len);
1522
1523 /* align pull length to size of long to optimize memcpy performance */
1524 skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1525
1526 /* update all of the pointers */
1527 skb_frag_size_sub(frag, pull_len);
1528 frag->page_offset += pull_len;
1529 skb->data_len -= pull_len;
1530 skb->tail += pull_len;
1531
1532 /*
1533 * if we sucked the frag empty then we should free it,
1534 * if there are other frags here something is screwed up in hardware
1535 */
1536 if (skb_frag_size(frag) == 0) {
1537 BUG_ON(skb_shinfo(skb)->nr_frags != 1);
1538 skb_shinfo(skb)->nr_frags = 0;
1539 __skb_frag_unref(frag);
1540 skb->truesize -= ixgbe_rx_bufsz(rx_ring);
1541 }
1542
Alexander Duyck57efd442012-06-25 21:54:46 +00001543#ifdef IXGBE_FCOE
1544 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1545 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc))
1546 return false;
1547
1548#endif
Alexander Duyckf8003262012-03-03 02:35:52 +00001549 /* if skb_pad returns an error the skb was freed */
1550 if (unlikely(skb->len < 60)) {
1551 int pad_len = 60 - skb->len;
1552
1553 if (skb_pad(skb, pad_len))
1554 return true;
1555 __skb_put(skb, pad_len);
1556 }
1557
1558 return false;
1559}
1560
1561/**
1562 * ixgbe_can_reuse_page - determine if we can reuse a page
1563 * @rx_buffer: pointer to rx_buffer containing the page we want to reuse
1564 *
1565 * Returns true if page can be reused in another Rx buffer
1566 **/
1567static inline bool ixgbe_can_reuse_page(struct ixgbe_rx_buffer *rx_buffer)
1568{
1569 struct page *page = rx_buffer->page;
1570
1571 /* if we are only owner of page and it is local we can reuse it */
1572 return likely(page_count(page) == 1) &&
1573 likely(page_to_nid(page) == numa_node_id());
1574}
1575
1576/**
1577 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1578 * @rx_ring: rx descriptor ring to store buffers on
1579 * @old_buff: donor buffer to have page reused
1580 *
1581 * Syncronizes page for reuse by the adapter
1582 **/
1583static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1584 struct ixgbe_rx_buffer *old_buff)
1585{
1586 struct ixgbe_rx_buffer *new_buff;
1587 u16 nta = rx_ring->next_to_alloc;
1588 u16 bufsz = ixgbe_rx_bufsz(rx_ring);
1589
1590 new_buff = &rx_ring->rx_buffer_info[nta];
1591
1592 /* update, and store next to alloc */
1593 nta++;
1594 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1595
1596 /* transfer page from old buffer to new buffer */
1597 new_buff->page = old_buff->page;
1598 new_buff->dma = old_buff->dma;
1599
1600 /* flip page offset to other buffer and store to new_buff */
1601 new_buff->page_offset = old_buff->page_offset ^ bufsz;
1602
1603 /* sync the buffer for use by the device */
1604 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
1605 new_buff->page_offset, bufsz,
1606 DMA_FROM_DEVICE);
1607
1608 /* bump ref count on page before it is given to the stack */
1609 get_page(new_buff->page);
1610}
1611
1612/**
1613 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1614 * @rx_ring: rx descriptor ring to transact packets on
1615 * @rx_buffer: buffer containing page to add
1616 * @rx_desc: descriptor containing length of buffer written by hardware
1617 * @skb: sk_buff to place the data into
1618 *
1619 * This function is based on skb_add_rx_frag. I would have used that
1620 * function however it doesn't handle the truesize case correctly since we
1621 * are allocating more memory than might be used for a single receive.
1622 **/
1623static void ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
1624 struct ixgbe_rx_buffer *rx_buffer,
1625 struct sk_buff *skb, int size)
1626{
1627 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
1628 rx_buffer->page, rx_buffer->page_offset,
1629 size);
1630 skb->len += size;
1631 skb->data_len += size;
1632 skb->truesize += ixgbe_rx_bufsz(rx_ring);
1633}
1634
1635/**
1636 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
1637 * @q_vector: structure containing interrupt and ring information
1638 * @rx_ring: rx descriptor ring to transact packets on
1639 * @budget: Total limit on number of packets to process
1640 *
1641 * This function provides a "bounce buffer" approach to Rx interrupt
1642 * processing. The advantage to this is that on systems that have
1643 * expensive overhead for IOMMU access this provides a means of avoiding
1644 * it by maintaining the mapping of the page to the syste.
1645 *
1646 * Returns true if all work is completed without reaching budget
1647 **/
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001648static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001649 struct ixgbe_ring *rx_ring,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001650 int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001651{
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001652 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Ben Greear3f2d1c02012-03-08 08:28:41 +00001653#ifdef IXGBE_FCOE
Alexander Duyckf8003262012-03-03 02:35:52 +00001654 struct ixgbe_adapter *adapter = q_vector->adapter;
Yi Zou3d8fd382009-06-08 14:38:44 +00001655 int ddp_bytes = 0;
1656#endif /* IXGBE_FCOE */
Alexander Duyckf8003262012-03-03 02:35:52 +00001657 u16 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001658
Alexander Duyckf8003262012-03-03 02:35:52 +00001659 do {
1660 struct ixgbe_rx_buffer *rx_buffer;
1661 union ixgbe_adv_rx_desc *rx_desc;
1662 struct sk_buff *skb;
1663 struct page *page;
1664 u16 ntc;
Auke Kok9a799d72007-09-15 14:07:45 -07001665
Alexander Duyckf8003262012-03-03 02:35:52 +00001666 /* return some buffers to hardware, one at a time is too slow */
1667 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
1668 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1669 cleaned_count = 0;
1670 }
Auke Kok9a799d72007-09-15 14:07:45 -07001671
Alexander Duyckf8003262012-03-03 02:35:52 +00001672 ntc = rx_ring->next_to_clean;
1673 rx_desc = IXGBE_RX_DESC(rx_ring, ntc);
1674 rx_buffer = &rx_ring->rx_buffer_info[ntc];
Auke Kok9a799d72007-09-15 14:07:45 -07001675
Alexander Duyckf8003262012-03-03 02:35:52 +00001676 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD))
1677 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001678
Alexander Duyckf8003262012-03-03 02:35:52 +00001679 /*
1680 * This memory barrier is needed to keep us from reading
1681 * any other fields out of the rx_desc until we know the
1682 * RXD_STAT_DD bit is set
1683 */
1684 rmb();
Auke Kok9a799d72007-09-15 14:07:45 -07001685
Alexander Duyckf8003262012-03-03 02:35:52 +00001686 page = rx_buffer->page;
1687 prefetchw(page);
1688
1689 skb = rx_buffer->skb;
1690
1691 if (likely(!skb)) {
1692 void *page_addr = page_address(page) +
1693 rx_buffer->page_offset;
1694
1695 /* prefetch first cache line of first page */
1696 prefetch(page_addr);
1697#if L1_CACHE_BYTES < 128
1698 prefetch(page_addr + L1_CACHE_BYTES);
1699#endif
1700
1701 /* allocate a skb to store the frags */
1702 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1703 IXGBE_RX_HDR_SIZE);
1704 if (unlikely(!skb)) {
1705 rx_ring->rx_stats.alloc_rx_buff_failed++;
1706 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001707 }
1708
Alexander Duyckf8003262012-03-03 02:35:52 +00001709 /*
1710 * we will be copying header into skb->data in
1711 * pskb_may_pull so it is in our interest to prefetch
1712 * it now to avoid a possible cache miss
1713 */
1714 prefetchw(skb->data);
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001715
1716 /*
1717 * Delay unmapping of the first packet. It carries the
1718 * header information, HW may still access the header
Alexander Duyckf8003262012-03-03 02:35:52 +00001719 * after the writeback. Only unmap it when EOP is
1720 * reached
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001721 */
Alexander Duyckf8003262012-03-03 02:35:52 +00001722 IXGBE_CB(skb)->dma = rx_buffer->dma;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001723 } else {
Alexander Duyckf8003262012-03-03 02:35:52 +00001724 /* we are reusing so sync this buffer for CPU use */
1725 dma_sync_single_range_for_cpu(rx_ring->dev,
1726 rx_buffer->dma,
1727 rx_buffer->page_offset,
1728 ixgbe_rx_bufsz(rx_ring),
1729 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001730 }
1731
Alexander Duyckf8003262012-03-03 02:35:52 +00001732 /* pull page into skb */
1733 ixgbe_add_rx_frag(rx_ring, rx_buffer, skb,
1734 le16_to_cpu(rx_desc->wb.upper.length));
1735
1736 if (ixgbe_can_reuse_page(rx_buffer)) {
1737 /* hand second half of page back to the ring */
1738 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
1739 } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) {
1740 /* the page has been released from the ring */
1741 IXGBE_CB(skb)->page_released = true;
1742 } else {
1743 /* we are not reusing the buffer so unmap it */
1744 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
1745 ixgbe_rx_pg_size(rx_ring),
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001746 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001747 }
1748
Alexander Duyckf8003262012-03-03 02:35:52 +00001749 /* clear contents of buffer_info */
1750 rx_buffer->skb = NULL;
1751 rx_buffer->dma = 0;
1752 rx_buffer->page = NULL;
1753
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001754 ixgbe_get_rsc_cnt(rx_ring, rx_desc, skb);
1755
Auke Kok9a799d72007-09-15 14:07:45 -07001756 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001757
Alexander Duyckf8003262012-03-03 02:35:52 +00001758 /* place incomplete frames back on ring for completion */
1759 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
1760 continue;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001761
Alexander Duyckf8003262012-03-03 02:35:52 +00001762 /* verify the packet layout is correct */
1763 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
1764 continue;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001765
1766 /* probably a little skewed due to removing CRC */
1767 total_rx_bytes += skb->len;
1768 total_rx_packets++;
1769
Alexander Duyck8a0da212012-01-31 02:59:49 +00001770 /* populate checksum, timestamp, VLAN, and protocol */
1771 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
1772
Yi Zou332d4a72009-05-13 13:11:53 +00001773#ifdef IXGBE_FCOE
1774 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyck57efd442012-06-25 21:54:46 +00001775 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001776 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
David S. Miller823dcd22011-08-20 10:39:12 -07001777 if (!ddp_bytes) {
1778 dev_kfree_skb_any(skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001779 continue;
David S. Miller823dcd22011-08-20 10:39:12 -07001780 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001781 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001782
Yi Zou332d4a72009-05-13 13:11:53 +00001783#endif /* IXGBE_FCOE */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001784 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001785
Alexander Duyckf8003262012-03-03 02:35:52 +00001786 /* update budget accounting */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001787 budget--;
Alexander Duyckf8003262012-03-03 02:35:52 +00001788 } while (likely(budget));
Auke Kok9a799d72007-09-15 14:07:45 -07001789
Yi Zou3d8fd382009-06-08 14:38:44 +00001790#ifdef IXGBE_FCOE
1791 /* include DDPed FCoE data */
1792 if (ddp_bytes > 0) {
1793 unsigned int mss;
1794
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001795 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001796 sizeof(struct fc_frame_header) -
1797 sizeof(struct fcoe_crc_eof);
1798 if (mss > 512)
1799 mss &= ~511;
1800 total_rx_bytes += ddp_bytes;
1801 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1802 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001803
Alexander Duyckf8003262012-03-03 02:35:52 +00001804#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001805 u64_stats_update_begin(&rx_ring->syncp);
1806 rx_ring->stats.packets += total_rx_packets;
1807 rx_ring->stats.bytes += total_rx_bytes;
1808 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001809 q_vector->rx.total_packets += total_rx_packets;
1810 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001811
Alexander Duyckf8003262012-03-03 02:35:52 +00001812 if (cleaned_count)
1813 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1814
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001815 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001816}
1817
Auke Kok9a799d72007-09-15 14:07:45 -07001818/**
1819 * ixgbe_configure_msix - Configure MSI-X hardware
1820 * @adapter: board private structure
1821 *
1822 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1823 * interrupts.
1824 **/
1825static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1826{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001827 struct ixgbe_q_vector *q_vector;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001828 int v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001829 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001830
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00001831 /* Populate MSIX to EITR Select */
1832 if (adapter->num_vfs > 32) {
1833 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
1834 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
1835 }
1836
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001837 /*
1838 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001839 * corresponding register.
1840 */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001841 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001842 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001843 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001844
Alexander Duycka5579282012-02-08 07:50:04 +00001845 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001846 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001847
Alexander Duycka5579282012-02-08 07:50:04 +00001848 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001849 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001850
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001851 if (q_vector->tx.ring && !q_vector->rx.ring) {
1852 /* tx only vector */
1853 if (adapter->tx_itr_setting == 1)
1854 q_vector->itr = IXGBE_10K_ITR;
1855 else
1856 q_vector->itr = adapter->tx_itr_setting;
1857 } else {
1858 /* rx or rx/tx vector */
1859 if (adapter->rx_itr_setting == 1)
1860 q_vector->itr = IXGBE_20K_ITR;
1861 else
1862 q_vector->itr = adapter->rx_itr_setting;
1863 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001864
Alexander Duyckfe49f042009-06-04 16:00:09 +00001865 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001866 }
1867
Alexander Duyckbd508172010-11-16 19:27:03 -08001868 switch (adapter->hw.mac.type) {
1869 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001870 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001871 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001872 break;
1873 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001874 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001875 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001876 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08001877 default:
1878 break;
1879 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001880 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001881
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001882 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001883 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001884 mask &= ~(IXGBE_EIMS_OTHER |
1885 IXGBE_EIMS_MAILBOX |
1886 IXGBE_EIMS_LSC);
1887
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001888 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001889}
1890
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001891enum latency_range {
1892 lowest_latency = 0,
1893 low_latency = 1,
1894 bulk_latency = 2,
1895 latency_invalid = 255
1896};
1897
1898/**
1899 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00001900 * @q_vector: structure containing interrupt and ring information
1901 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001902 *
1903 * Stores a new ITR value based on packets and byte
1904 * counts during the last interrupt. The advantage of per interrupt
1905 * computation is faster updates and more accurate ITR for the current
1906 * traffic pattern. Constants in this function were computed
1907 * based on theoretical maximum wire speed and thresholds were set based
1908 * on testing data as well as attempting to minimize response time
1909 * while increasing bulk throughput.
1910 * this functionality is controlled by the InterruptThrottleRate module
1911 * parameter (see ixgbe_param.c)
1912 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00001913static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
1914 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001915{
Alexander Duyckbd198052011-06-11 01:45:08 +00001916 int bytes = ring_container->total_bytes;
1917 int packets = ring_container->total_packets;
1918 u32 timepassed_us;
Alexander Duyck621bd702012-02-08 07:50:20 +00001919 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00001920 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001921
1922 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00001923 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001924
1925 /* simple throttlerate management
Alexander Duyck621bd702012-02-08 07:50:20 +00001926 * 0-10MB/s lowest (100000 ints/s)
1927 * 10-20MB/s low (20000 ints/s)
1928 * 20-1249MB/s bulk (8000 ints/s)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001929 */
1930 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001931 timepassed_us = q_vector->itr >> 2;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001932 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1933
1934 switch (itr_setting) {
1935 case lowest_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00001936 if (bytes_perint > 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00001937 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001938 break;
1939 case low_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00001940 if (bytes_perint > 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00001941 itr_setting = bulk_latency;
Alexander Duyck621bd702012-02-08 07:50:20 +00001942 else if (bytes_perint <= 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00001943 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001944 break;
1945 case bulk_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00001946 if (bytes_perint <= 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00001947 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001948 break;
1949 }
1950
Alexander Duyckbd198052011-06-11 01:45:08 +00001951 /* clear work counters since we have the values we need */
1952 ring_container->total_bytes = 0;
1953 ring_container->total_packets = 0;
1954
1955 /* write updated itr to ring container */
1956 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001957}
1958
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001959/**
1960 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001961 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001962 *
1963 * This function is made to be called by ethtool and by the driver
1964 * when it needs to update EITR registers at runtime. Hardware
1965 * specific quirks/differences are taken care of here.
1966 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001967void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001968{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001969 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001970 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001971 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00001972 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001973
Alexander Duyckbd508172010-11-16 19:27:03 -08001974 switch (adapter->hw.mac.type) {
1975 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001976 /* must write high and low 16 bits to reset counter */
1977 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001978 break;
1979 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001980 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001981 /*
1982 * set the WDIS bit to not clear the timer bits and cause an
1983 * immediate assertion of the interrupt
1984 */
1985 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08001986 break;
1987 default:
1988 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001989 }
1990 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
1991}
1992
Alexander Duyckbd198052011-06-11 01:45:08 +00001993static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001994{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001995 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00001996 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001997
Alexander Duyckbd198052011-06-11 01:45:08 +00001998 ixgbe_update_itr(q_vector, &q_vector->tx);
1999 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002000
Alexander Duyck08c88332011-06-11 01:45:03 +00002001 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002002
2003 switch (current_itr) {
2004 /* counts and packets in update_itr are dependent on these numbers */
2005 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002006 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002007 break;
2008 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002009 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002010 break;
2011 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002012 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002013 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00002014 default:
2015 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002016 }
2017
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002018 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002019 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002020 new_itr = (10 * new_itr * q_vector->itr) /
2021 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002022
Alexander Duyckbd198052011-06-11 01:45:08 +00002023 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002024 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002025
2026 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002027 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002028}
2029
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002030/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00002031 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00002032 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002033 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00002034static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002035{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002036 struct ixgbe_hw *hw = &adapter->hw;
2037 u32 eicr = adapter->interrupt_event;
2038
Alexander Duyckf0f97782011-04-22 04:08:09 +00002039 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00002040 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002041
Alexander Duyckf0f97782011-04-22 04:08:09 +00002042 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2043 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2044 return;
2045
2046 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2047
Joe Perches7ca647b2010-09-07 21:35:40 +00002048 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002049 case IXGBE_DEV_ID_82599_T3_LOM:
2050 /*
2051 * Since the warning interrupt is for both ports
2052 * we don't have to check if:
2053 * - This interrupt wasn't for our port.
2054 * - We may have missed the interrupt so always have to
2055 * check if we got a LSC
2056 */
2057 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
2058 !(eicr & IXGBE_EICR_LSC))
2059 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002060
Alexander Duyckf0f97782011-04-22 04:08:09 +00002061 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
2062 u32 autoneg;
2063 bool link_up = false;
2064
Joe Perches7ca647b2010-09-07 21:35:40 +00002065 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
2066
Alexander Duyckf0f97782011-04-22 04:08:09 +00002067 if (link_up)
2068 return;
2069 }
2070
2071 /* Check if this is not due to overtemp */
2072 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2073 return;
2074
2075 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00002076 default:
2077 if (!(eicr & IXGBE_EICR_GPI_SDP0))
2078 return;
2079 break;
2080 }
2081 e_crit(drv,
2082 "Network adapter has been stopped because it has over heated. "
2083 "Restart the computer. If the problem persists, "
2084 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00002085
2086 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002087}
2088
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002089static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2090{
2091 struct ixgbe_hw *hw = &adapter->hw;
2092
2093 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
2094 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002095 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002096 /* write to clear the interrupt */
2097 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
2098 }
2099}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002100
Jacob Keller4f51bf72011-08-20 04:49:45 +00002101static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2102{
2103 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2104 return;
2105
2106 switch (adapter->hw.mac.type) {
2107 case ixgbe_mac_82599EB:
2108 /*
2109 * Need to check link state so complete overtemp check
2110 * on service task
2111 */
2112 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
2113 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2114 adapter->interrupt_event = eicr;
2115 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2116 ixgbe_service_event_schedule(adapter);
2117 return;
2118 }
2119 return;
2120 case ixgbe_mac_X540:
2121 if (!(eicr & IXGBE_EICR_TS))
2122 return;
2123 break;
2124 default:
2125 return;
2126 }
2127
2128 e_crit(drv,
2129 "Network adapter has been stopped because it has over heated. "
2130 "Restart the computer. If the problem persists, "
2131 "power off the system and replace the adapter\n");
2132}
2133
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002134static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2135{
2136 struct ixgbe_hw *hw = &adapter->hw;
2137
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002138 if (eicr & IXGBE_EICR_GPI_SDP2) {
2139 /* Clear the interrupt */
2140 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002141 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2142 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2143 ixgbe_service_event_schedule(adapter);
2144 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002145 }
2146
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002147 if (eicr & IXGBE_EICR_GPI_SDP1) {
2148 /* Clear the interrupt */
2149 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002150 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2151 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2152 ixgbe_service_event_schedule(adapter);
2153 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002154 }
2155}
2156
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002157static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2158{
2159 struct ixgbe_hw *hw = &adapter->hw;
2160
2161 adapter->lsc_int++;
2162 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2163 adapter->link_check_timeout = jiffies;
2164 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2165 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002166 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002167 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002168 }
2169}
2170
Alexander Duyckfe49f042009-06-04 16:00:09 +00002171static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2172 u64 qmask)
2173{
2174 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002175 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002176
Alexander Duyckbd508172010-11-16 19:27:03 -08002177 switch (hw->mac.type) {
2178 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002179 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002180 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2181 break;
2182 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002183 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002184 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002185 if (mask)
2186 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002187 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002188 if (mask)
2189 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2190 break;
2191 default:
2192 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002193 }
2194 /* skip the flush */
2195}
2196
2197static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002198 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002199{
2200 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002201 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002202
Alexander Duyckbd508172010-11-16 19:27:03 -08002203 switch (hw->mac.type) {
2204 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002205 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002206 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2207 break;
2208 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002209 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002210 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002211 if (mask)
2212 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002213 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002214 if (mask)
2215 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2216 break;
2217 default:
2218 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002219 }
2220 /* skip the flush */
2221}
2222
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002223/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002224 * ixgbe_irq_enable - Enable default interrupt generation settings
2225 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002226 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002227static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2228 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002229{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002230 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002231
Alexander Duyck2c4af692011-07-15 07:29:55 +00002232 /* don't reenable LSC while waiting for link */
2233 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2234 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002235
Alexander Duyck2c4af692011-07-15 07:29:55 +00002236 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002237 switch (adapter->hw.mac.type) {
2238 case ixgbe_mac_82599EB:
2239 mask |= IXGBE_EIMS_GPI_SDP0;
2240 break;
2241 case ixgbe_mac_X540:
2242 mask |= IXGBE_EIMS_TS;
2243 break;
2244 default:
2245 break;
2246 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002247 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2248 mask |= IXGBE_EIMS_GPI_SDP1;
2249 switch (adapter->hw.mac.type) {
2250 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002251 mask |= IXGBE_EIMS_GPI_SDP1;
2252 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002253 case ixgbe_mac_X540:
2254 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002255 mask |= IXGBE_EIMS_MAILBOX;
2256 break;
2257 default:
2258 break;
2259 }
2260 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2261 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2262 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002263
Alexander Duyck2c4af692011-07-15 07:29:55 +00002264 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2265 if (queues)
2266 ixgbe_irq_enable_queues(adapter, ~0);
2267 if (flush)
2268 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002269}
2270
Alexander Duyck2c4af692011-07-15 07:29:55 +00002271static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002272{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002273 struct ixgbe_adapter *adapter = data;
2274 struct ixgbe_hw *hw = &adapter->hw;
2275 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002276
Alexander Duyck2c4af692011-07-15 07:29:55 +00002277 /*
2278 * Workaround for Silicon errata. Use clear-by-write instead
2279 * of clear-by-read. Reading with EICS will return the
2280 * interrupt causes without clearing, which later be done
2281 * with the write to EICR.
2282 */
2283 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
2284 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002285
Alexander Duyck2c4af692011-07-15 07:29:55 +00002286 if (eicr & IXGBE_EICR_LSC)
2287 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002288
Alexander Duyck2c4af692011-07-15 07:29:55 +00002289 if (eicr & IXGBE_EICR_MAILBOX)
2290 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002291
Alexander Duyck2c4af692011-07-15 07:29:55 +00002292 switch (hw->mac.type) {
2293 case ixgbe_mac_82599EB:
2294 case ixgbe_mac_X540:
2295 if (eicr & IXGBE_EICR_ECC)
2296 e_info(link, "Received unrecoverable ECC Err, please "
2297 "reboot\n");
2298 /* Handle Flow Director Full threshold interrupt */
2299 if (eicr & IXGBE_EICR_FLOW_DIR) {
2300 int reinit_count = 0;
2301 int i;
2302 for (i = 0; i < adapter->num_tx_queues; i++) {
2303 struct ixgbe_ring *ring = adapter->tx_ring[i];
2304 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2305 &ring->state))
2306 reinit_count++;
2307 }
2308 if (reinit_count) {
2309 /* no more flow director interrupts until after init */
2310 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2311 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2312 ixgbe_service_event_schedule(adapter);
2313 }
2314 }
2315 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002316 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002317 break;
2318 default:
2319 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002320 }
2321
Alexander Duyck2c4af692011-07-15 07:29:55 +00002322 ixgbe_check_fan_failure(adapter, eicr);
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002323#ifdef CONFIG_IXGBE_PTP
2324 ixgbe_ptp_check_pps_event(adapter, eicr);
2325#endif
Auke Kok9a799d72007-09-15 14:07:45 -07002326
Alexander Duyck2c4af692011-07-15 07:29:55 +00002327 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002328 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002329 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002330
Alexander Duyck2c4af692011-07-15 07:29:55 +00002331 return IRQ_HANDLED;
2332}
2333
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002334static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002335{
2336 struct ixgbe_q_vector *q_vector = data;
2337
Auke Kok9a799d72007-09-15 14:07:45 -07002338 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002339
2340 if (q_vector->rx.ring || q_vector->tx.ring)
2341 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002342
2343 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002344}
2345
Auke Kok9a799d72007-09-15 14:07:45 -07002346/**
Alexander Duyckeb01b972012-02-08 07:51:27 +00002347 * ixgbe_poll - NAPI Rx polling callback
2348 * @napi: structure for representing this polling device
2349 * @budget: how many packets driver is allowed to clean
2350 *
2351 * This function is used for legacy and MSI, NAPI mode
2352 **/
Jeff Kirsher8af3c332012-02-18 07:08:14 +00002353int ixgbe_poll(struct napi_struct *napi, int budget)
Alexander Duyckeb01b972012-02-08 07:51:27 +00002354{
2355 struct ixgbe_q_vector *q_vector =
2356 container_of(napi, struct ixgbe_q_vector, napi);
2357 struct ixgbe_adapter *adapter = q_vector->adapter;
2358 struct ixgbe_ring *ring;
2359 int per_ring_budget;
2360 bool clean_complete = true;
2361
2362#ifdef CONFIG_IXGBE_DCA
2363 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2364 ixgbe_update_dca(q_vector);
2365#endif
2366
2367 ixgbe_for_each_ring(ring, q_vector->tx)
2368 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
2369
2370 /* attempt to distribute budget to each queue fairly, but don't allow
2371 * the budget to go below 1 because we'll exit polling */
2372 if (q_vector->rx.count > 1)
2373 per_ring_budget = max(budget/q_vector->rx.count, 1);
2374 else
2375 per_ring_budget = budget;
2376
2377 ixgbe_for_each_ring(ring, q_vector->rx)
2378 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
2379 per_ring_budget);
2380
2381 /* If all work not completed, return budget and keep polling */
2382 if (!clean_complete)
2383 return budget;
2384
2385 /* all work done, exit the polling mode */
2386 napi_complete(napi);
2387 if (adapter->rx_itr_setting & 1)
2388 ixgbe_set_itr(q_vector);
2389 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2390 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
2391
2392 return 0;
2393}
2394
2395/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002396 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2397 * @adapter: board private structure
2398 *
2399 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2400 * interrupts from the kernel.
2401 **/
2402static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2403{
2404 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002405 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002406 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002407
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002408 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002409 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002410 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002411
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002412 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002413 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002414 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002415 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002416 } else if (q_vector->rx.ring) {
2417 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2418 "%s-%s-%d", netdev->name, "rx", ri++);
2419 } else if (q_vector->tx.ring) {
2420 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2421 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002422 } else {
2423 /* skip this unused q_vector */
2424 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002425 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002426 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2427 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002428 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002429 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002430 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002431 goto free_queue_irqs;
2432 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002433 /* If Flow Director is enabled, set interrupt affinity */
2434 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2435 /* assign the mask for this irq */
2436 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002437 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002438 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002439 }
2440
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002441 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002442 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002443 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002444 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002445 goto free_queue_irqs;
2446 }
2447
2448 return 0;
2449
2450free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002451 while (vector) {
2452 vector--;
2453 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2454 NULL);
2455 free_irq(adapter->msix_entries[vector].vector,
2456 adapter->q_vector[vector]);
2457 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002458 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2459 pci_disable_msix(adapter->pdev);
2460 kfree(adapter->msix_entries);
2461 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002462 return err;
2463}
2464
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002465/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002466 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002467 * @irq: interrupt number
2468 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002469 **/
2470static irqreturn_t ixgbe_intr(int irq, void *data)
2471{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002472 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002473 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002474 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002475 u32 eicr;
2476
Don Skidmore54037502009-02-21 15:42:56 -08002477 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002478 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002479 * before the read of EICR.
2480 */
2481 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2482
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002483 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002484 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002485 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002486 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002487 /*
2488 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002489 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002490 * have disabled interrupts due to EIAM
2491 * finish the workaround of silicon errata on 82598. Unmask
2492 * the interrupt that we masked before the EICR read.
2493 */
2494 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2495 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002496 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002497 }
Auke Kok9a799d72007-09-15 14:07:45 -07002498
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002499 if (eicr & IXGBE_EICR_LSC)
2500 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002501
Alexander Duyckbd508172010-11-16 19:27:03 -08002502 switch (hw->mac.type) {
2503 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002504 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002505 /* Fall through */
2506 case ixgbe_mac_X540:
2507 if (eicr & IXGBE_EICR_ECC)
2508 e_info(link, "Received unrecoverable ECC err, please "
2509 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002510 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002511 break;
2512 default:
2513 break;
2514 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002515
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002516 ixgbe_check_fan_failure(adapter, eicr);
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002517#ifdef CONFIG_IXGBE_PTP
2518 ixgbe_ptp_check_pps_event(adapter, eicr);
2519#endif
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002520
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00002521 /* would disable interrupts here but EIAM disabled it */
2522 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002523
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002524 /*
2525 * re-enable link(maybe) and non-queue interrupts, no flush.
2526 * ixgbe_poll will re-enable the queue interrupts
2527 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002528 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2529 ixgbe_irq_enable(adapter, false, false);
2530
Auke Kok9a799d72007-09-15 14:07:45 -07002531 return IRQ_HANDLED;
2532}
2533
2534/**
2535 * ixgbe_request_irq - initialize interrupts
2536 * @adapter: board private structure
2537 *
2538 * Attempts to configure interrupts using the best available
2539 * capabilities of the hardware and kernel.
2540 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002541static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002542{
2543 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002544 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002545
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002546 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002547 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002548 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002549 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002550 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002551 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002552 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002553 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002554
Alexander Duyckde88eee2012-02-08 07:49:59 +00002555 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002556 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002557
Auke Kok9a799d72007-09-15 14:07:45 -07002558 return err;
2559}
2560
2561static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2562{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002563 int vector;
Auke Kok9a799d72007-09-15 14:07:45 -07002564
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002565 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002566 free_irq(adapter->pdev->irq, adapter);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002567 return;
Auke Kok9a799d72007-09-15 14:07:45 -07002568 }
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002569
2570 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
2571 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
2572 struct msix_entry *entry = &adapter->msix_entries[vector];
2573
2574 /* free only the irqs that were actually requested */
2575 if (!q_vector->rx.ring && !q_vector->tx.ring)
2576 continue;
2577
2578 /* clear the affinity_mask in the IRQ descriptor */
2579 irq_set_affinity_hint(entry->vector, NULL);
2580
2581 free_irq(entry->vector, q_vector);
2582 }
2583
2584 free_irq(adapter->msix_entries[vector++].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002585}
2586
2587/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002588 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2589 * @adapter: board private structure
2590 **/
2591static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2592{
Alexander Duyckbd508172010-11-16 19:27:03 -08002593 switch (adapter->hw.mac.type) {
2594 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002595 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002596 break;
2597 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002598 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002599 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2600 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002601 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002602 break;
2603 default:
2604 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002605 }
2606 IXGBE_WRITE_FLUSH(&adapter->hw);
2607 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002608 int vector;
2609
2610 for (vector = 0; vector < adapter->num_q_vectors; vector++)
2611 synchronize_irq(adapter->msix_entries[vector].vector);
2612
2613 synchronize_irq(adapter->msix_entries[vector++].vector);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002614 } else {
2615 synchronize_irq(adapter->pdev->irq);
2616 }
2617}
2618
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002619/**
Auke Kok9a799d72007-09-15 14:07:45 -07002620 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2621 *
2622 **/
2623static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2624{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002625 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002626
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002627 /* rx/tx vector */
2628 if (adapter->rx_itr_setting == 1)
2629 q_vector->itr = IXGBE_20K_ITR;
2630 else
2631 q_vector->itr = adapter->rx_itr_setting;
2632
2633 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002634
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002635 ixgbe_set_ivar(adapter, 0, 0, 0);
2636 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002637
Emil Tantilov396e7992010-07-01 20:05:12 +00002638 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002639}
2640
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002641/**
2642 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2643 * @adapter: board private structure
2644 * @ring: structure containing ring specific data
2645 *
2646 * Configure the Tx descriptor ring after a reset.
2647 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002648void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2649 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002650{
2651 struct ixgbe_hw *hw = &adapter->hw;
2652 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002653 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002654 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002655 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002656
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002657 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002658 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002659 IXGBE_WRITE_FLUSH(hw);
2660
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002661 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002662 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002663 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2664 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2665 ring->count * sizeof(union ixgbe_adv_tx_desc));
2666 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2667 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002668 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002669
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002670 /*
2671 * set WTHRESH to encourage burst writeback, it should not be set
2672 * higher than 1 when ITR is 0 as it could cause false TX hangs
2673 *
2674 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2675 * to or less than the number of on chip descriptors, which is
2676 * currently 40.
2677 */
Alexander Duycke954b372012-02-08 07:49:38 +00002678 if (!ring->q_vector || (ring->q_vector->itr < 8))
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002679 txdctl |= (1 << 16); /* WTHRESH = 1 */
2680 else
2681 txdctl |= (8 << 16); /* WTHRESH = 8 */
2682
Alexander Duycke954b372012-02-08 07:49:38 +00002683 /*
2684 * Setting PTHRESH to 32 both improves performance
2685 * and avoids a TX hang with DFP enabled
2686 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002687 txdctl |= (1 << 8) | /* HTHRESH = 1 */
2688 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002689
2690 /* reinitialize flowdirector state */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002691 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2692 adapter->atr_sample_rate) {
2693 ring->atr_sample_rate = adapter->atr_sample_rate;
2694 ring->atr_count = 0;
2695 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2696 } else {
2697 ring->atr_sample_rate = 0;
2698 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002699
John Fastabendc84d3242010-11-16 19:27:12 -08002700 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2701
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002702 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002703 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2704
2705 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2706 if (hw->mac.type == ixgbe_mac_82598EB &&
2707 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2708 return;
2709
2710 /* poll to verify queue is enabled */
2711 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002712 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002713 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2714 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2715 if (!wait_loop)
2716 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002717}
2718
Alexander Duyck120ff942010-08-19 13:34:50 +00002719static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2720{
2721 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002722 u32 rttdcs, mtqc;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002723 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002724
2725 if (hw->mac.type == ixgbe_mac_82598EB)
2726 return;
2727
2728 /* disable the arbiter while setting MTQC */
2729 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2730 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2731 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2732
2733 /* set transmit pool layout */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002734 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2735 mtqc = IXGBE_MTQC_VT_ENA;
2736 if (tcs > 4)
2737 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2738 else if (tcs > 1)
2739 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2740 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
2741 mtqc |= IXGBE_MTQC_32VF;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002742 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002743 mtqc |= IXGBE_MTQC_64VF;
2744 } else {
2745 if (tcs > 4)
2746 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2747 else if (tcs > 1)
2748 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2749 else
2750 mtqc = IXGBE_MTQC_64Q_1PB;
2751 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00002752
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002753 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
John Fastabend8b1c0b22011-05-03 02:26:48 +00002754
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002755 /* Enable Security TX Buffer IFG for multiple pb */
2756 if (tcs) {
2757 u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2758 sectx |= IXGBE_SECTX_DCB;
2759 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx);
Alexander Duyck120ff942010-08-19 13:34:50 +00002760 }
2761
2762 /* re-enable the arbiter */
2763 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2764 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2765}
2766
Auke Kok9a799d72007-09-15 14:07:45 -07002767/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002768 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002769 * @adapter: board private structure
2770 *
2771 * Configure the Tx unit of the MAC after a reset.
2772 **/
2773static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2774{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002775 struct ixgbe_hw *hw = &adapter->hw;
2776 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002777 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002778
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002779 ixgbe_setup_mtqc(adapter);
2780
2781 if (hw->mac.type != ixgbe_mac_82598EB) {
2782 /* DMATXCTL.EN must be before Tx queues are enabled */
2783 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2784 dmatxctl |= IXGBE_DMATXCTL_TE;
2785 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2786 }
2787
Auke Kok9a799d72007-09-15 14:07:45 -07002788 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002789 for (i = 0; i < adapter->num_tx_queues; i++)
2790 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002791}
2792
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00002793static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
2794 struct ixgbe_ring *ring)
2795{
2796 struct ixgbe_hw *hw = &adapter->hw;
2797 u8 reg_idx = ring->reg_idx;
2798 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2799
2800 srrctl |= IXGBE_SRRCTL_DROP_EN;
2801
2802 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2803}
2804
2805static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
2806 struct ixgbe_ring *ring)
2807{
2808 struct ixgbe_hw *hw = &adapter->hw;
2809 u8 reg_idx = ring->reg_idx;
2810 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2811
2812 srrctl &= ~IXGBE_SRRCTL_DROP_EN;
2813
2814 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2815}
2816
2817#ifdef CONFIG_IXGBE_DCB
2818void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2819#else
2820static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2821#endif
2822{
2823 int i;
2824 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
2825
2826 if (adapter->ixgbe_ieee_pfc)
2827 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
2828
2829 /*
2830 * We should set the drop enable bit if:
2831 * SR-IOV is enabled
2832 * or
2833 * Number of Rx queues > 1 and flow control is disabled
2834 *
2835 * This allows us to avoid head of line blocking for security
2836 * and performance reasons.
2837 */
2838 if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
2839 !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
2840 for (i = 0; i < adapter->num_rx_queues; i++)
2841 ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
2842 } else {
2843 for (i = 0; i < adapter->num_rx_queues; i++)
2844 ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
2845 }
2846}
2847
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002848#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002849
Yi Zoua6616b42009-08-06 13:05:23 +00002850static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002851 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002852{
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002853 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002854 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002855 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002856
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002857 if (hw->mac.type == ixgbe_mac_82598EB) {
2858 u16 mask = adapter->ring_feature[RING_F_RSS].mask;
2859
2860 /*
2861 * if VMDq is not active we must program one srrctl register
2862 * per RSS queue since we have enabled RDRXCTL.MVMEN
2863 */
2864 reg_idx &= mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002865 }
2866
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002867 /* configure header buffer length, needed for RSC */
2868 srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002869
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002870 /* configure the packet buffer length */
Alexander Duyckf8003262012-03-03 02:35:52 +00002871#if PAGE_SIZE > IXGBE_MAX_RXBUFFER
2872 srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002873#else
Alexander Duyckf8003262012-03-03 02:35:52 +00002874 srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002875#endif
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002876
2877 /* configure descriptor type */
Alexander Duyckf8003262012-03-03 02:35:52 +00002878 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002879
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002880 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002881}
2882
Alexander Duyck05abb122010-08-19 13:35:41 +00002883static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002884{
Alexander Duyck05abb122010-08-19 13:35:41 +00002885 struct ixgbe_hw *hw = &adapter->hw;
2886 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002887 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2888 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002889 u32 mrqc = 0, reta = 0;
2890 u32 rxcsum;
2891 int i, j;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002892 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend86b4db32011-04-26 07:26:19 +00002893
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002894 /*
2895 * Program table for at least 2 queues w/ SR-IOV so that VFs can
2896 * make full use of any rings they may have. We will use the
2897 * PSRTYPE register to control how many rings we use within the PF.
2898 */
2899 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 2))
2900 rss_i = 2;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002901
Alexander Duyck05abb122010-08-19 13:35:41 +00002902 /* Fill out hash function seeds */
2903 for (i = 0; i < 10; i++)
2904 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002905
Alexander Duyck05abb122010-08-19 13:35:41 +00002906 /* Fill out redirection table */
2907 for (i = 0, j = 0; i < 128; i++, j++) {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002908 if (j == rss_i)
Alexander Duyck05abb122010-08-19 13:35:41 +00002909 j = 0;
2910 /* reta = 4-byte sliding window of
2911 * 0x00..(indices-1)(indices-1)00..etc. */
2912 reta = (reta << 8) | (j * 0x11);
2913 if ((i & 3) == 3)
2914 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2915 }
2916
2917 /* Disable indicating checksum in descriptor, enables RSS hash */
2918 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2919 rxcsum |= IXGBE_RXCSUM_PCSD;
2920 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2921
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002922 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00002923 if (adapter->ring_feature[RING_F_RSS].mask)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002924 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002925 } else {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002926 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00002927
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002928 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2929 if (tcs > 4)
2930 mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */
2931 else if (tcs > 1)
2932 mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */
2933 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
2934 mrqc = IXGBE_MRQC_VMDQRSS32EN;
2935 else
2936 mrqc = IXGBE_MRQC_VMDQRSS64EN;
2937 } else {
2938 if (tcs > 4)
2939 mrqc = IXGBE_MRQC_RTRSS8TCEN;
2940 else if (tcs > 1)
John Fastabend8b1c0b22011-05-03 02:26:48 +00002941 mrqc = IXGBE_MRQC_RTRSS4TCEN;
2942 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002943 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002944 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002945 }
2946
Alexander Duyck05abb122010-08-19 13:35:41 +00002947 /* Perform hash on these packet types */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002948 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4 |
2949 IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
2950 IXGBE_MRQC_RSS_FIELD_IPV6 |
2951 IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
Alexander Duyck05abb122010-08-19 13:35:41 +00002952
Alexander Duyckef6afc02012-02-08 07:51:53 +00002953 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
2954 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
2955 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2956 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
2957
Alexander Duyck05abb122010-08-19 13:35:41 +00002958 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002959}
2960
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002961/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002962 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2963 * @adapter: address of board private structure
2964 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002965 **/
Don Skidmore082757a2011-07-21 05:55:00 +00002966static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00002967 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002968{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002969 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002970 u32 rscctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002971 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002972
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002973 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002974 return;
2975
Alexander Duyck73670962010-08-19 13:38:34 +00002976 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002977 rscctrl |= IXGBE_RSCCTL_RSCEN;
2978 /*
2979 * we must limit the number of descriptors so that the
2980 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00002981 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002982 */
Alexander Duyckf8003262012-03-03 02:35:52 +00002983#if (PAGE_SIZE <= 8192)
2984 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2985#elif (PAGE_SIZE <= 16384)
2986 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002987#else
Alexander Duyckf8003262012-03-03 02:35:52 +00002988 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002989#endif
Alexander Duyck73670962010-08-19 13:38:34 +00002990 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002991}
2992
Alexander Duyck9e10e042010-08-19 13:40:06 +00002993#define IXGBE_MAX_RX_DESC_POLL 10
2994static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
2995 struct ixgbe_ring *ring)
2996{
2997 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002998 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2999 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003000 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003001
3002 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3003 if (hw->mac.type == ixgbe_mac_82598EB &&
3004 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3005 return;
3006
3007 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003008 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003009 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3010 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3011
3012 if (!wait_loop) {
3013 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3014 "the polling period\n", reg_idx);
3015 }
3016}
3017
Yi Zou2d39d572011-01-06 14:29:56 +00003018void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3019 struct ixgbe_ring *ring)
3020{
3021 struct ixgbe_hw *hw = &adapter->hw;
3022 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3023 u32 rxdctl;
3024 u8 reg_idx = ring->reg_idx;
3025
3026 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3027 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3028
3029 /* write value back with RXDCTL.ENABLE bit cleared */
3030 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3031
3032 if (hw->mac.type == ixgbe_mac_82598EB &&
3033 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3034 return;
3035
3036 /* the hardware may take up to 100us to really disable the rx queue */
3037 do {
3038 udelay(10);
3039 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3040 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3041
3042 if (!wait_loop) {
3043 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3044 "the polling period\n", reg_idx);
3045 }
3046}
3047
Alexander Duyck84418e32010-08-19 13:40:54 +00003048void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3049 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003050{
3051 struct ixgbe_hw *hw = &adapter->hw;
3052 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003053 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003054 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003055
Alexander Duyck9e10e042010-08-19 13:40:06 +00003056 /* disable queue to avoid issues while updating state */
3057 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003058 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003059
Alexander Duyckacd37172010-08-19 13:36:05 +00003060 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3061 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3062 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3063 ring->count * sizeof(union ixgbe_adv_rx_desc));
3064 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3065 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08003066 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003067
3068 ixgbe_configure_srrctl(adapter, ring);
3069 ixgbe_configure_rscctl(adapter, ring);
3070
Greg Rosee9f98072011-01-26 01:06:07 +00003071 /* If operating in IOV mode set RLPML for X540 */
3072 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
3073 hw->mac.type == ixgbe_mac_X540) {
3074 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
3075 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
3076 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
3077 }
3078
Alexander Duyck9e10e042010-08-19 13:40:06 +00003079 if (hw->mac.type == ixgbe_mac_82598EB) {
3080 /*
3081 * enable cache line friendly hardware writes:
3082 * PTHRESH=32 descriptors (half the internal cache),
3083 * this also removes ugly rx_no_buffer_count increment
3084 * HTHRESH=4 descriptors (to minimize latency on fetch)
3085 * WTHRESH=8 burst writeback up to two cache lines
3086 */
3087 rxdctl &= ~0x3FFFFF;
3088 rxdctl |= 0x080420;
3089 }
3090
3091 /* enable receive descriptor ring */
3092 rxdctl |= IXGBE_RXDCTL_ENABLE;
3093 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3094
3095 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003096 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003097}
3098
Alexander Duyck48654522010-08-19 13:36:27 +00003099static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3100{
3101 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003102 int rss_i = adapter->ring_feature[RING_F_RSS].indices;
Alexander Duyck48654522010-08-19 13:36:27 +00003103 int p;
3104
3105 /* PSRTYPE must be initialized in non 82598 adapters */
3106 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003107 IXGBE_PSRTYPE_UDPHDR |
3108 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003109 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003110 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003111
3112 if (hw->mac.type == ixgbe_mac_82598EB)
3113 return;
3114
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003115 if (rss_i > 3)
3116 psrtype |= 2 << 29;
3117 else if (rss_i > 1)
3118 psrtype |= 1 << 29;
Alexander Duyck48654522010-08-19 13:36:27 +00003119
3120 for (p = 0; p < adapter->num_rx_pools; p++)
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003121 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(p)),
Alexander Duyck48654522010-08-19 13:36:27 +00003122 psrtype);
3123}
3124
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003125static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3126{
3127 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003128 u32 reg_offset, vf_shift;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003129 u32 gcr_ext, vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003130 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003131
3132 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3133 return;
3134
3135 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003136 vmdctl |= IXGBE_VMD_CTL_VMDQ_EN;
3137 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003138 vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003139 vmdctl |= IXGBE_VT_CTL_REPLEN;
3140 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003141
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003142 vf_shift = VMDQ_P(0) % 32;
3143 reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003144
3145 /* Enable only the PF's pool for Tx/Rx */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003146 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (~0) << vf_shift);
3147 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1);
3148 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (~0) << vf_shift);
3149 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003150 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3151
3152 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003153 hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0));
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003154
3155 /*
3156 * Set up VF register offsets for selected VT Mode,
3157 * i.e. 32 or 64 VFs for SR-IOV
3158 */
Alexander Duyck73079ea2012-07-14 06:48:49 +00003159 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3160 case IXGBE_82599_VMDQ_8Q_MASK:
3161 gcr_ext = IXGBE_GCR_EXT_VT_MODE_16;
3162 break;
3163 case IXGBE_82599_VMDQ_4Q_MASK:
3164 gcr_ext = IXGBE_GCR_EXT_VT_MODE_32;
3165 break;
3166 default:
3167 gcr_ext = IXGBE_GCR_EXT_VT_MODE_64;
3168 break;
3169 }
3170
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003171 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3172
3173 /* enable Tx loopback for VF/PF communication */
3174 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003175
Greg Rosea985b6c32010-11-18 03:02:52 +00003176 /* Enable MAC Anti-Spoofing */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003177 hw->mac.ops.set_mac_anti_spoofing(hw, (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003178 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00003179 /* For VFs that have spoof checking turned off */
3180 for (i = 0; i < adapter->num_vfs; i++) {
3181 if (!adapter->vfinfo[i].spoofchk_enabled)
3182 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
3183 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003184}
3185
Alexander Duyck477de6e2010-08-19 13:38:11 +00003186static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003187{
Auke Kok9a799d72007-09-15 14:07:45 -07003188 struct ixgbe_hw *hw = &adapter->hw;
3189 struct net_device *netdev = adapter->netdev;
3190 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003191 struct ixgbe_ring *rx_ring;
3192 int i;
3193 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003194
Alexander Duyck477de6e2010-08-19 13:38:11 +00003195#ifdef IXGBE_FCOE
3196 /* adjust max frame to be able to do baby jumbo for FCoE */
3197 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3198 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3199 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3200
3201#endif /* IXGBE_FCOE */
3202 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3203 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3204 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3205 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3206
3207 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003208 }
3209
Alexander Duyck919e78a2011-08-26 09:52:38 +00003210 /* MHADD will allow an extra 4 bytes past for vlan tagged frames */
3211 max_frame += VLAN_HLEN;
3212
Auke Kok9a799d72007-09-15 14:07:45 -07003213 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003214 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3215 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003216 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3217
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003218 /*
3219 * Setup the HW Rx Head and Tail Descriptor Pointers and
3220 * the Base and Length of the Rx Descriptor Ring
3221 */
Auke Kok9a799d72007-09-15 14:07:45 -07003222 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003223 rx_ring = adapter->rx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003224 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3225 set_ring_rsc_enabled(rx_ring);
3226 else
3227 clear_ring_rsc_enabled(rx_ring);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003228 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003229}
3230
Alexander Duyck73670962010-08-19 13:38:34 +00003231static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3232{
3233 struct ixgbe_hw *hw = &adapter->hw;
3234 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3235
3236 switch (hw->mac.type) {
3237 case ixgbe_mac_82598EB:
3238 /*
3239 * For VMDq support of different descriptor types or
3240 * buffer sizes through the use of multiple SRRCTL
3241 * registers, RDRXCTL.MVMEN must be set to 1
3242 *
3243 * also, the manual doesn't mention it clearly but DCA hints
3244 * will only use queue 0's tags unless this bit is set. Side
3245 * effects of setting this bit are only that SRRCTL must be
3246 * fully programmed [0..15]
3247 */
3248 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3249 break;
3250 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003251 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003252 /* Disable RSC for ACK packets */
3253 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3254 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3255 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3256 /* hardware requires some bits to be set by default */
3257 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3258 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3259 break;
3260 default:
3261 /* We should do nothing since we don't know this hardware */
3262 return;
3263 }
3264
3265 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3266}
3267
Alexander Duyck477de6e2010-08-19 13:38:11 +00003268/**
3269 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3270 * @adapter: board private structure
3271 *
3272 * Configure the Rx unit of the MAC after a reset.
3273 **/
3274static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3275{
3276 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003277 int i;
3278 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003279
3280 /* disable receives while setting up the descriptors */
3281 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3282 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3283
3284 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003285 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003286
Alexander Duyck9e10e042010-08-19 13:40:06 +00003287 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003288 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003289
Alexander Duyck477de6e2010-08-19 13:38:11 +00003290 /* set_rx_buffer_len must be called before ring initialization */
3291 ixgbe_set_rx_buffer_len(adapter);
3292
3293 /*
3294 * Setup the HW Rx Head and Tail Descriptor Pointers and
3295 * the Base and Length of the Rx Descriptor Ring
3296 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003297 for (i = 0; i < adapter->num_rx_queues; i++)
3298 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003299
Alexander Duyck9e10e042010-08-19 13:40:06 +00003300 /* disable drop enable for 82598 parts */
3301 if (hw->mac.type == ixgbe_mac_82598EB)
3302 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3303
3304 /* enable all receives */
3305 rxctrl |= IXGBE_RXCTRL_RXEN;
3306 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003307}
3308
Jiri Pirko8e586132011-12-08 19:52:37 -05003309static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003310{
3311 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003312 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003313
3314 /* add VID to filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003315 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003316 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003317
3318 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003319}
3320
Jiri Pirko8e586132011-12-08 19:52:37 -05003321static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003322{
3323 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003324 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003325
Auke Kok9a799d72007-09-15 14:07:45 -07003326 /* remove VID from filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003327 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003328 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003329
3330 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003331}
3332
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003333/**
3334 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3335 * @adapter: driver data
3336 */
3337static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3338{
3339 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003340 u32 vlnctrl;
3341
3342 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3343 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3344 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3345}
3346
3347/**
3348 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3349 * @adapter: driver data
3350 */
3351static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3352{
3353 struct ixgbe_hw *hw = &adapter->hw;
3354 u32 vlnctrl;
3355
3356 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3357 vlnctrl |= IXGBE_VLNCTRL_VFE;
3358 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3359 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3360}
3361
3362/**
3363 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3364 * @adapter: driver data
3365 */
3366static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3367{
3368 struct ixgbe_hw *hw = &adapter->hw;
3369 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003370 int i, j;
3371
3372 switch (hw->mac.type) {
3373 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003374 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3375 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003376 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3377 break;
3378 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003379 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003380 for (i = 0; i < adapter->num_rx_queues; i++) {
3381 j = adapter->rx_ring[i]->reg_idx;
3382 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3383 vlnctrl &= ~IXGBE_RXDCTL_VME;
3384 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3385 }
3386 break;
3387 default:
3388 break;
3389 }
3390}
3391
3392/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003393 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003394 * @adapter: driver data
3395 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003396static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003397{
3398 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003399 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003400 int i, j;
3401
3402 switch (hw->mac.type) {
3403 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003404 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3405 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003406 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3407 break;
3408 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003409 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003410 for (i = 0; i < adapter->num_rx_queues; i++) {
3411 j = adapter->rx_ring[i]->reg_idx;
3412 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3413 vlnctrl |= IXGBE_RXDCTL_VME;
3414 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3415 }
3416 break;
3417 default:
3418 break;
3419 }
3420}
3421
Auke Kok9a799d72007-09-15 14:07:45 -07003422static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3423{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003424 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003425
Jesse Grossf62bbb52010-10-20 13:56:10 +00003426 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3427
3428 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3429 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003430}
3431
3432/**
Alexander Duyck28500622010-06-15 09:25:48 +00003433 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3434 * @netdev: network interface device structure
3435 *
3436 * Writes unicast address list to the RAR table.
3437 * Returns: -ENOMEM on failure/insufficient address space
3438 * 0 on no addresses written
3439 * X on writing X addresses to the RAR table
3440 **/
3441static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3442{
3443 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3444 struct ixgbe_hw *hw = &adapter->hw;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00003445 unsigned int rar_entries = IXGBE_MAX_PF_MACVLANS;
Alexander Duyck28500622010-06-15 09:25:48 +00003446 int count = 0;
3447
3448 /* return ENOMEM indicating insufficient memory for addresses */
3449 if (netdev_uc_count(netdev) > rar_entries)
3450 return -ENOMEM;
3451
3452 if (!netdev_uc_empty(netdev) && rar_entries) {
3453 struct netdev_hw_addr *ha;
3454 /* return error if we do not support writing to RAR table */
3455 if (!hw->mac.ops.set_rar)
3456 return -ENOMEM;
3457
3458 netdev_for_each_uc_addr(ha, netdev) {
3459 if (!rar_entries)
3460 break;
3461 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003462 VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck28500622010-06-15 09:25:48 +00003463 count++;
3464 }
3465 }
3466 /* write the addresses in reverse order to avoid write combining */
3467 for (; rar_entries > 0 ; rar_entries--)
3468 hw->mac.ops.clear_rar(hw, rar_entries);
3469
3470 return count;
3471}
3472
3473/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003474 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003475 * @netdev: network interface device structure
3476 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003477 * The set_rx_method entry point is called whenever the unicast/multicast
3478 * address list or the network interface flags are updated. This routine is
3479 * responsible for configuring the hardware for proper unicast, multicast and
3480 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003481 **/
Greg Rose7f870472010-01-09 02:25:29 +00003482void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003483{
3484 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3485 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003486 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3487 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003488
3489 /* Check for Promiscuous and All Multicast modes */
3490
3491 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3492
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003493 /* set all bits that we expect to always be set */
Ben Greear3f2d1c02012-03-08 08:28:41 +00003494 fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003495 fctrl |= IXGBE_FCTRL_BAM;
3496 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3497 fctrl |= IXGBE_FCTRL_PMCF;
3498
Alexander Duyck28500622010-06-15 09:25:48 +00003499 /* clear the bits we are changing the status of */
3500 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3501
Auke Kok9a799d72007-09-15 14:07:45 -07003502 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003503 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003504 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003505 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003506 /* don't hardware filter vlans in promisc mode */
3507 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003508 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003509 if (netdev->flags & IFF_ALLMULTI) {
3510 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003511 vmolr |= IXGBE_VMOLR_MPE;
3512 } else {
3513 /*
3514 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003515 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003516 * that we can at least receive multicast traffic
3517 */
3518 hw->mac.ops.update_mc_addr_list(hw, netdev);
3519 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003520 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003521 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003522 hw->addr_ctrl.user_set_promisc = false;
John Fastabend9dcb3732012-04-15 06:44:25 +00003523 }
3524
3525 /*
3526 * Write addresses to available RAR registers, if there is not
3527 * sufficient space to store all the addresses then enable
3528 * unicast promiscuous mode
3529 */
3530 count = ixgbe_write_uc_addr_list(netdev);
3531 if (count < 0) {
3532 fctrl |= IXGBE_FCTRL_UPE;
3533 vmolr |= IXGBE_VMOLR_ROPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003534 }
3535
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003536 if (adapter->num_vfs)
Alexander Duyck28500622010-06-15 09:25:48 +00003537 ixgbe_restore_vf_multicasts(adapter);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003538
3539 if (hw->mac.type != ixgbe_mac_82598EB) {
3540 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) &
Alexander Duyck28500622010-06-15 09:25:48 +00003541 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3542 IXGBE_VMOLR_ROPE);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003543 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003544 }
3545
Ben Greear3f2d1c02012-03-08 08:28:41 +00003546 /* This is useful for sniffing bad packets. */
3547 if (adapter->netdev->features & NETIF_F_RXALL) {
3548 /* UPE and MPE will be handled by normal PROMISC logic
3549 * in e1000e_set_rx_mode */
3550 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
3551 IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
3552 IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
3553
3554 fctrl &= ~(IXGBE_FCTRL_DPF);
3555 /* NOTE: VLAN filtering is disabled by setting PROMISC */
3556 }
3557
Auke Kok9a799d72007-09-15 14:07:45 -07003558 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003559
3560 if (netdev->features & NETIF_F_HW_VLAN_RX)
3561 ixgbe_vlan_strip_enable(adapter);
3562 else
3563 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003564}
3565
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003566static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3567{
3568 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003569
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003570 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3571 napi_enable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003572}
3573
3574static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3575{
3576 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003577
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003578 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3579 napi_disable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003580}
3581
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003582#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003583/**
Alexander Duyck2f90b862008-11-20 20:52:10 -08003584 * ixgbe_configure_dcb - Configure DCB hardware
3585 * @adapter: ixgbe adapter struct
3586 *
3587 * This is called by the driver on open to configure the DCB hardware.
3588 * This is also called by the gennetlink interface when reconfiguring
3589 * the DCB state.
3590 */
3591static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3592{
3593 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend98063072010-10-28 00:59:57 +00003594 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003595
Alexander Duyck67ebd792010-08-19 13:34:04 +00003596 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3597 if (hw->mac.type == ixgbe_mac_82598EB)
3598 netif_set_gso_max_size(adapter->netdev, 65536);
3599 return;
3600 }
3601
3602 if (hw->mac.type == ixgbe_mac_82598EB)
3603 netif_set_gso_max_size(adapter->netdev, 32768);
3604
Alexander Duyck2f90b862008-11-20 20:52:10 -08003605 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003606
John Fastabendb1208182011-10-15 05:00:10 +00003607#ifdef IXGBE_FCOE
3608 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3609 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3610#endif
3611
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003612 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003613 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003614 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3615 DCB_TX_CONFIG);
3616 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3617 DCB_RX_CONFIG);
3618 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003619 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3620 ixgbe_dcb_hw_ets(&adapter->hw,
3621 adapter->ixgbe_ieee_ets,
3622 max_frame);
3623 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3624 adapter->ixgbe_ieee_pfc->pfc_en,
3625 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003626 }
John Fastabend8187cd42011-02-23 05:58:08 +00003627
3628 /* Enable RSS Hash per TC */
3629 if (hw->mac.type != ixgbe_mac_82598EB) {
Alexander Duyck4ae63732012-06-22 06:46:33 +00003630 u32 msb = 0;
3631 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003632
Alexander Duyckd411a932012-06-30 00:14:01 +00003633 while (rss_i) {
3634 msb++;
3635 rss_i >>= 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003636 }
Alexander Duyckd411a932012-06-30 00:14:01 +00003637
Alexander Duyck4ae63732012-06-22 06:46:33 +00003638 /* write msb to all 8 TCs in one write */
3639 IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111);
John Fastabend8187cd42011-02-23 05:58:08 +00003640 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003641}
John Fastabend9da712d2011-08-23 03:14:22 +00003642#endif
3643
3644/* Additional bittime to account for IXGBE framing */
3645#define IXGBE_ETH_FRAMING 20
3646
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003647/**
John Fastabend9da712d2011-08-23 03:14:22 +00003648 * ixgbe_hpbthresh - calculate high water mark for flow control
3649 *
3650 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003651 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00003652 */
3653static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
3654{
3655 struct ixgbe_hw *hw = &adapter->hw;
3656 struct net_device *dev = adapter->netdev;
3657 int link, tc, kb, marker;
3658 u32 dv_id, rx_pba;
3659
3660 /* Calculate max LAN frame size */
3661 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
3662
3663#ifdef IXGBE_FCOE
3664 /* FCoE traffic class uses FCOE jumbo frames */
Alexander Duyck800bd602012-06-02 00:11:02 +00003665 if ((dev->features & NETIF_F_FCOE_MTU) &&
3666 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
3667 (pb == ixgbe_fcoe_get_tc(adapter)))
3668 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003669
3670#endif
John Fastabend9da712d2011-08-23 03:14:22 +00003671 /* Calculate delay value for device */
3672 switch (hw->mac.type) {
3673 case ixgbe_mac_X540:
3674 dv_id = IXGBE_DV_X540(link, tc);
3675 break;
3676 default:
3677 dv_id = IXGBE_DV(link, tc);
3678 break;
3679 }
3680
3681 /* Loopback switch introduces additional latency */
3682 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3683 dv_id += IXGBE_B2BT(tc);
3684
3685 /* Delay value is calculated in bit times convert to KB */
3686 kb = IXGBE_BT2KB(dv_id);
3687 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
3688
3689 marker = rx_pba - kb;
3690
3691 /* It is possible that the packet buffer is not large enough
3692 * to provide required headroom. In this case throw an error
3693 * to user and a do the best we can.
3694 */
3695 if (marker < 0) {
3696 e_warn(drv, "Packet Buffer(%i) can not provide enough"
3697 "headroom to support flow control."
3698 "Decrease MTU or number of traffic classes\n", pb);
3699 marker = tc + 1;
3700 }
3701
3702 return marker;
3703}
3704
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003705/**
John Fastabend9da712d2011-08-23 03:14:22 +00003706 * ixgbe_lpbthresh - calculate low water mark for for flow control
3707 *
3708 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003709 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00003710 */
3711static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
3712{
3713 struct ixgbe_hw *hw = &adapter->hw;
3714 struct net_device *dev = adapter->netdev;
3715 int tc;
3716 u32 dv_id;
3717
3718 /* Calculate max LAN frame size */
3719 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3720
3721 /* Calculate delay value for device */
3722 switch (hw->mac.type) {
3723 case ixgbe_mac_X540:
3724 dv_id = IXGBE_LOW_DV_X540(tc);
3725 break;
3726 default:
3727 dv_id = IXGBE_LOW_DV(tc);
3728 break;
3729 }
3730
3731 /* Delay value is calculated in bit times convert to KB */
3732 return IXGBE_BT2KB(dv_id);
3733}
3734
3735/*
3736 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3737 */
3738static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
3739{
3740 struct ixgbe_hw *hw = &adapter->hw;
3741 int num_tc = netdev_get_num_tc(adapter->netdev);
3742 int i;
3743
3744 if (!num_tc)
3745 num_tc = 1;
3746
3747 hw->fc.low_water = ixgbe_lpbthresh(adapter);
3748
3749 for (i = 0; i < num_tc; i++) {
3750 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
3751
3752 /* Low water marks must not be larger than high water marks */
3753 if (hw->fc.low_water > hw->fc.high_water[i])
3754 hw->fc.low_water = 0;
3755 }
3756}
John Fastabend80605c652011-05-02 12:34:10 +00003757
3758static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3759{
John Fastabend80605c652011-05-02 12:34:10 +00003760 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00003761 int hdrm;
3762 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00003763
3764 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3765 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00003766 hdrm = 32 << adapter->fdir_pballoc;
3767 else
3768 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00003769
Alexander Duyckf7e10272011-07-21 00:40:35 +00003770 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00003771 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00003772}
3773
Alexander Duycke4911d52011-05-11 07:18:52 +00003774static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3775{
3776 struct ixgbe_hw *hw = &adapter->hw;
3777 struct hlist_node *node, *node2;
3778 struct ixgbe_fdir_filter *filter;
3779
3780 spin_lock(&adapter->fdir_perfect_lock);
3781
3782 if (!hlist_empty(&adapter->fdir_filter_list))
3783 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3784
3785 hlist_for_each_entry_safe(filter, node, node2,
3786 &adapter->fdir_filter_list, fdir_node) {
3787 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003788 &filter->filter,
3789 filter->sw_idx,
3790 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3791 IXGBE_FDIR_DROP_QUEUE :
3792 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003793 }
3794
3795 spin_unlock(&adapter->fdir_perfect_lock);
3796}
3797
Auke Kok9a799d72007-09-15 14:07:45 -07003798static void ixgbe_configure(struct ixgbe_adapter *adapter)
3799{
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003800 struct ixgbe_hw *hw = &adapter->hw;
3801
John Fastabend80605c652011-05-02 12:34:10 +00003802 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003803#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003804 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003805#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003806
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003807 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003808 ixgbe_restore_vlan(adapter);
3809
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003810 switch (hw->mac.type) {
3811 case ixgbe_mac_82599EB:
3812 case ixgbe_mac_X540:
3813 hw->mac.ops.disable_rx_buff(hw);
3814 break;
3815 default:
3816 break;
3817 }
3818
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003819 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003820 ixgbe_init_fdir_signature_82599(&adapter->hw,
3821 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003822 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3823 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3824 adapter->fdir_pballoc);
3825 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003826 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003827
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003828 switch (hw->mac.type) {
3829 case ixgbe_mac_82599EB:
3830 case ixgbe_mac_X540:
3831 hw->mac.ops.enable_rx_buff(hw);
3832 break;
3833 default:
3834 break;
3835 }
3836
Alexander Duyck933d41f2010-09-07 21:34:29 +00003837 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003838
Alexander Duyck7c8ae652012-05-05 05:32:47 +00003839#ifdef IXGBE_FCOE
3840 /* configure FCoE L2 filters, redirection table, and Rx control */
3841 ixgbe_configure_fcoe(adapter);
3842
3843#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07003844 ixgbe_configure_tx(adapter);
3845 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003846}
3847
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003848static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3849{
3850 switch (hw->phy.type) {
3851 case ixgbe_phy_sfp_avago:
3852 case ixgbe_phy_sfp_ftl:
3853 case ixgbe_phy_sfp_intel:
3854 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003855 case ixgbe_phy_sfp_passive_tyco:
3856 case ixgbe_phy_sfp_passive_unknown:
3857 case ixgbe_phy_sfp_active_unknown:
3858 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003859 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00003860 case ixgbe_phy_nl:
3861 if (hw->mac.type == ixgbe_mac_82598EB)
3862 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003863 default:
3864 return false;
3865 }
3866}
3867
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003868/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003869 * ixgbe_sfp_link_config - set up SFP+ link
3870 * @adapter: pointer to private adapter struct
3871 **/
3872static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3873{
Alexander Duyck70864002011-04-27 09:13:56 +00003874 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003875 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00003876 * is that an SFP was inserted/removed after the reset
3877 * but before SFP detection was enabled. As such the best
3878 * solution is to just start searching as soon as we start
3879 */
3880 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3881 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003882
Alexander Duyck70864002011-04-27 09:13:56 +00003883 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003884}
3885
3886/**
3887 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003888 * @hw: pointer to private hardware struct
3889 *
3890 * Returns 0 on success, negative on failure
3891 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003892static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003893{
3894 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003895 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003896 u32 ret = IXGBE_ERR_LINK_SETUP;
3897
3898 if (hw->mac.ops.check_link)
3899 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3900
3901 if (ret)
3902 goto link_cfg_out;
3903
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003904 autoneg = hw->phy.autoneg_advertised;
3905 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003906 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3907 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003908 if (ret)
3909 goto link_cfg_out;
3910
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003911 if (hw->mac.ops.setup_link)
3912 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003913link_cfg_out:
3914 return ret;
3915}
3916
Alexander Duycka34bcff2010-08-19 13:39:20 +00003917static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003918{
Auke Kok9a799d72007-09-15 14:07:45 -07003919 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003920 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003921
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003922 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003923 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3924 IXGBE_GPIE_OCD;
3925 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003926 /*
3927 * use EIAM to auto-mask when MSI-X interrupt is asserted
3928 * this saves a register write for every interrupt
3929 */
3930 switch (hw->mac.type) {
3931 case ixgbe_mac_82598EB:
3932 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3933 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003934 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003935 case ixgbe_mac_X540:
3936 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003937 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3938 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3939 break;
3940 }
3941 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003942 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3943 * specifically only auto mask tx and rx interrupts */
3944 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003945 }
3946
Alexander Duycka34bcff2010-08-19 13:39:20 +00003947 /* XXX: to interrupt immediately for EICS writes, enable this */
3948 /* gpie |= IXGBE_GPIE_EIMEN; */
3949
3950 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3951 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
Alexander Duyck73079ea2012-07-14 06:48:49 +00003952
3953 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3954 case IXGBE_82599_VMDQ_8Q_MASK:
3955 gpie |= IXGBE_GPIE_VTMODE_16;
3956 break;
3957 case IXGBE_82599_VMDQ_4Q_MASK:
3958 gpie |= IXGBE_GPIE_VTMODE_32;
3959 break;
3960 default:
3961 gpie |= IXGBE_GPIE_VTMODE_64;
3962 break;
3963 }
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003964 }
3965
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003966 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00003967 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
3968 switch (adapter->hw.mac.type) {
3969 case ixgbe_mac_82599EB:
3970 gpie |= IXGBE_SDP0_GPIEN;
3971 break;
3972 case ixgbe_mac_X540:
3973 gpie |= IXGBE_EIMS_TS;
3974 break;
3975 default:
3976 break;
3977 }
3978 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003979
Alexander Duycka34bcff2010-08-19 13:39:20 +00003980 /* Enable fan failure interrupt */
3981 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003982 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003983
Don Skidmore2698b202011-04-13 07:01:52 +00003984 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003985 gpie |= IXGBE_SDP1_GPIEN;
3986 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00003987 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00003988
3989 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3990}
3991
Alexander Duyckc7ccde02011-07-21 00:40:40 +00003992static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00003993{
3994 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003995 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003996 u32 ctrl_ext;
3997
3998 ixgbe_get_hw_control(adapter);
3999 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004000
Auke Kok9a799d72007-09-15 14:07:45 -07004001 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4002 ixgbe_configure_msix(adapter);
4003 else
4004 ixgbe_configure_msi_and_legacy(adapter);
4005
Don Skidmorec6ecf392010-12-03 03:31:51 +00004006 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
4007 if (hw->mac.ops.enable_tx_laser &&
4008 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004009 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004010 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00004011 hw->mac.ops.enable_tx_laser(hw);
4012
Auke Kok9a799d72007-09-15 14:07:45 -07004013 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004014 ixgbe_napi_enable_all(adapter);
4015
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08004016 if (ixgbe_is_sfp(hw)) {
4017 ixgbe_sfp_link_config(adapter);
4018 } else {
4019 err = ixgbe_non_sfp_link_config(hw);
4020 if (err)
4021 e_err(probe, "link_config FAILED %d\n", err);
4022 }
4023
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004024 /* clear any pending interrupts, may auto mask */
4025 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00004026 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07004027
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004028 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00004029 * If this adapter has a fan, check to see if we had a failure
4030 * before we enabled the interrupt.
4031 */
4032 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
4033 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
4034 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00004035 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00004036 }
4037
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004038 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00004039 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004040
Auke Kok9a799d72007-09-15 14:07:45 -07004041 /* bring the link up in the watchdog, this could race with our first
4042 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004043 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
4044 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00004045 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00004046
4047 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
4048 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
4049 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
4050 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07004051}
4052
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004053void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
4054{
4055 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00004056 /* put off any impending NetWatchDogTimeout */
4057 adapter->netdev->trans_start = jiffies;
4058
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004059 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00004060 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004061 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00004062 /*
4063 * If SR-IOV enabled then wait a bit before bringing the adapter
4064 * back up to give the VFs time to respond to the reset. The
4065 * two second wait is based upon the watchdog timer cycle in
4066 * the VF driver.
4067 */
4068 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4069 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004070 ixgbe_up(adapter);
4071 clear_bit(__IXGBE_RESETTING, &adapter->state);
4072}
4073
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004074void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004075{
4076 /* hardware has been reset, we need to reload some things */
4077 ixgbe_configure(adapter);
4078
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004079 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004080}
4081
4082void ixgbe_reset(struct ixgbe_adapter *adapter)
4083{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004084 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004085 int err;
4086
Alexander Duyck70864002011-04-27 09:13:56 +00004087 /* lock SFP init bit to prevent race conditions with the watchdog */
4088 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4089 usleep_range(1000, 2000);
4090
4091 /* clear all SFP and link config related flags while holding SFP_INIT */
4092 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4093 IXGBE_FLAG2_SFP_NEEDS_RESET);
4094 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4095
Don Skidmore8ca783a2009-05-26 20:40:47 -07004096 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004097 switch (err) {
4098 case 0:
4099 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004100 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004101 break;
4102 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004103 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004104 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004105 case IXGBE_ERR_EEPROM_VERSION:
4106 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004107 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004108 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00004109 "your hardware. If you are experiencing problems "
4110 "please contact your Intel or hardware "
4111 "representative who provided you with this "
4112 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004113 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004114 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004115 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004116 }
Auke Kok9a799d72007-09-15 14:07:45 -07004117
Alexander Duyck70864002011-04-27 09:13:56 +00004118 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4119
Auke Kok9a799d72007-09-15 14:07:45 -07004120 /* reprogram the RAR[0] in case user changed it. */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004121 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07004122}
4123
Auke Kok9a799d72007-09-15 14:07:45 -07004124/**
Alexander Duyckf8003262012-03-03 02:35:52 +00004125 * ixgbe_init_rx_page_offset - initialize page offset values for Rx buffers
4126 * @rx_ring: ring to setup
4127 *
4128 * On many IA platforms the L1 cache has a critical stride of 4K, this
4129 * results in each receive buffer starting in the same cache set. To help
4130 * reduce the pressure on this cache set we can interleave the offsets so
4131 * that only every other buffer will be in the same cache set.
4132 **/
4133static void ixgbe_init_rx_page_offset(struct ixgbe_ring *rx_ring)
4134{
4135 struct ixgbe_rx_buffer *rx_buffer = rx_ring->rx_buffer_info;
4136 u16 i;
4137
4138 for (i = 0; i < rx_ring->count; i += 2) {
4139 rx_buffer[0].page_offset = 0;
4140 rx_buffer[1].page_offset = ixgbe_rx_bufsz(rx_ring);
4141 rx_buffer = &rx_buffer[2];
4142 }
4143}
4144
4145/**
Auke Kok9a799d72007-09-15 14:07:45 -07004146 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004147 * @rx_ring: ring to free buffers from
4148 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004149static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004150{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004151 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004152 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004153 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004154
Alexander Duyck84418e32010-08-19 13:40:54 +00004155 /* ring already cleared, nothing to do */
4156 if (!rx_ring->rx_buffer_info)
4157 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004158
Alexander Duyck84418e32010-08-19 13:40:54 +00004159 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004160 for (i = 0; i < rx_ring->count; i++) {
Alexander Duyckf8003262012-03-03 02:35:52 +00004161 struct ixgbe_rx_buffer *rx_buffer;
Auke Kok9a799d72007-09-15 14:07:45 -07004162
Alexander Duyckf8003262012-03-03 02:35:52 +00004163 rx_buffer = &rx_ring->rx_buffer_info[i];
4164 if (rx_buffer->skb) {
4165 struct sk_buff *skb = rx_buffer->skb;
4166 if (IXGBE_CB(skb)->page_released) {
4167 dma_unmap_page(dev,
4168 IXGBE_CB(skb)->dma,
4169 ixgbe_rx_bufsz(rx_ring),
4170 DMA_FROM_DEVICE);
4171 IXGBE_CB(skb)->page_released = false;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00004172 }
4173 dev_kfree_skb(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07004174 }
Alexander Duyckf8003262012-03-03 02:35:52 +00004175 rx_buffer->skb = NULL;
4176 if (rx_buffer->dma)
4177 dma_unmap_page(dev, rx_buffer->dma,
4178 ixgbe_rx_pg_size(rx_ring),
4179 DMA_FROM_DEVICE);
4180 rx_buffer->dma = 0;
4181 if (rx_buffer->page)
Alexander Duyckdd411ec2012-04-06 04:24:50 +00004182 __free_pages(rx_buffer->page,
4183 ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00004184 rx_buffer->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07004185 }
4186
4187 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4188 memset(rx_ring->rx_buffer_info, 0, size);
4189
Alexander Duyckf8003262012-03-03 02:35:52 +00004190 ixgbe_init_rx_page_offset(rx_ring);
4191
Auke Kok9a799d72007-09-15 14:07:45 -07004192 /* Zero out the descriptor ring */
4193 memset(rx_ring->desc, 0, rx_ring->size);
4194
Alexander Duyckf8003262012-03-03 02:35:52 +00004195 rx_ring->next_to_alloc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004196 rx_ring->next_to_clean = 0;
4197 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004198}
4199
4200/**
4201 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004202 * @tx_ring: ring to be cleaned
4203 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004204static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004205{
4206 struct ixgbe_tx_buffer *tx_buffer_info;
4207 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004208 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004209
Alexander Duyck84418e32010-08-19 13:40:54 +00004210 /* ring already cleared, nothing to do */
4211 if (!tx_ring->tx_buffer_info)
4212 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004213
Alexander Duyck84418e32010-08-19 13:40:54 +00004214 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004215 for (i = 0; i < tx_ring->count; i++) {
4216 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004217 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004218 }
4219
John Fastabenddad8a3b2012-04-23 12:22:39 +00004220 netdev_tx_reset_queue(txring_txq(tx_ring));
4221
Auke Kok9a799d72007-09-15 14:07:45 -07004222 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4223 memset(tx_ring->tx_buffer_info, 0, size);
4224
4225 /* Zero out the descriptor ring */
4226 memset(tx_ring->desc, 0, tx_ring->size);
4227
4228 tx_ring->next_to_use = 0;
4229 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004230}
4231
4232/**
Auke Kok9a799d72007-09-15 14:07:45 -07004233 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4234 * @adapter: board private structure
4235 **/
4236static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4237{
4238 int i;
4239
4240 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004241 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004242}
4243
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004244/**
4245 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4246 * @adapter: board private structure
4247 **/
4248static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4249{
4250 int i;
4251
4252 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004253 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004254}
4255
Alexander Duycke4911d52011-05-11 07:18:52 +00004256static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4257{
4258 struct hlist_node *node, *node2;
4259 struct ixgbe_fdir_filter *filter;
4260
4261 spin_lock(&adapter->fdir_perfect_lock);
4262
4263 hlist_for_each_entry_safe(filter, node, node2,
4264 &adapter->fdir_filter_list, fdir_node) {
4265 hlist_del(&filter->fdir_node);
4266 kfree(filter);
4267 }
4268 adapter->fdir_filter_count = 0;
4269
4270 spin_unlock(&adapter->fdir_perfect_lock);
4271}
4272
Auke Kok9a799d72007-09-15 14:07:45 -07004273void ixgbe_down(struct ixgbe_adapter *adapter)
4274{
4275 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004276 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004277 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004278 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004279
4280 /* signal that we are down to the interrupt handler */
4281 set_bit(__IXGBE_DOWN, &adapter->state);
4282
4283 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004284 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4285 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004286
Yi Zou2d39d572011-01-06 14:29:56 +00004287 /* disable all enabled rx queues */
4288 for (i = 0; i < adapter->num_rx_queues; i++)
4289 /* this call also flushes the previous write */
4290 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4291
Don Skidmore032b4322011-03-18 09:32:53 +00004292 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004293
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004294 netif_tx_stop_all_queues(netdev);
4295
Alexander Duyck70864002011-04-27 09:13:56 +00004296 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004297 netif_carrier_off(netdev);
4298 netif_tx_disable(netdev);
4299
4300 ixgbe_irq_disable(adapter);
4301
4302 ixgbe_napi_disable_all(adapter);
4303
Alexander Duyckd034acf2011-04-27 09:25:34 +00004304 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4305 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004306 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4307
4308 del_timer_sync(&adapter->service_timer);
4309
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004310 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004311 /* Clear EITR Select mapping */
4312 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4313
4314 /* Mark all the VFs as inactive */
4315 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004316 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004317
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004318 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004319 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004320
Auke Kok9a799d72007-09-15 14:07:45 -07004321 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004322 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004323 }
4324
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004325 /* disable transmits in the hardware now that interrupts are off */
4326 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004327 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004328 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004329 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004330
4331 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004332 switch (hw->mac.type) {
4333 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004334 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004335 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004336 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4337 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004338 break;
4339 default:
4340 break;
4341 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004342
Paul Larson6f4a0e42008-06-24 17:00:56 -07004343 if (!pci_channel_offline(adapter->pdev))
4344 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004345
4346 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4347 if (hw->mac.ops.disable_tx_laser &&
4348 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004349 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004350 (hw->mac.type == ixgbe_mac_82599EB))))
4351 hw->mac.ops.disable_tx_laser(hw);
4352
Auke Kok9a799d72007-09-15 14:07:45 -07004353 ixgbe_clean_all_tx_rings(adapter);
4354 ixgbe_clean_all_rx_rings(adapter);
4355
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004356#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004357 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004358 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004359#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004360}
4361
Auke Kok9a799d72007-09-15 14:07:45 -07004362/**
Auke Kok9a799d72007-09-15 14:07:45 -07004363 * ixgbe_tx_timeout - Respond to a Tx Hang
4364 * @netdev: network interface device structure
4365 **/
4366static void ixgbe_tx_timeout(struct net_device *netdev)
4367{
4368 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4369
4370 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004371 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004372}
4373
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004374/**
Auke Kok9a799d72007-09-15 14:07:45 -07004375 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4376 * @adapter: board private structure to initialize
4377 *
4378 * ixgbe_sw_init initializes the Adapter private data structure.
4379 * Fields are initialized based on PCI device information and
4380 * OS network device settings (MTU size).
4381 **/
4382static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
4383{
4384 struct ixgbe_hw *hw = &adapter->hw;
4385 struct pci_dev *pdev = adapter->pdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004386 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004387#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004388 int j;
4389 struct tc_configuration *tc;
4390#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004391
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004392 /* PCI config space info */
4393
4394 hw->vendor_id = pdev->vendor;
4395 hw->device_id = pdev->device;
4396 hw->revision_id = pdev->revision;
4397 hw->subsystem_vendor_id = pdev->subsystem_vendor;
4398 hw->subsystem_device_id = pdev->subsystem_device;
4399
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004400 /* Set capability flags */
Jesse Brandeburg3ed69d72012-02-10 10:20:02 +00004401 rss = min_t(int, IXGBE_MAX_RSS_INDICES, num_online_cpus());
Alexander Duyckc0876632012-05-10 00:01:46 +00004402 adapter->ring_feature[RING_F_RSS].limit = rss;
Alexander Duyckbd508172010-11-16 19:27:03 -08004403 switch (hw->mac.type) {
4404 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00004405 if (hw->device_id == IXGBE_DEV_ID_82598AT)
4406 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004407 adapter->max_q_vectors = MAX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08004408 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08004409 case ixgbe_mac_X540:
Jacob Keller4f51bf72011-08-20 04:49:45 +00004410 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
4411 case ixgbe_mac_82599EB:
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004412 adapter->max_q_vectors = MAX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00004413 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
4414 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004415 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
4416 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00004417 /* Flow Director hash filters enabled */
4418 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
4419 adapter->atr_sample_rate = 20;
Alexander Duyckc0876632012-05-10 00:01:46 +00004420 adapter->ring_feature[RING_F_FDIR].limit =
Joe Perchese8e9f692010-09-07 21:34:53 +00004421 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00004422 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00004423#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00004424 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
4425 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
Yi Zou61a0f422009-12-03 11:32:22 +00004426#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00004427 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00004428 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00004429#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00004430#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08004431 break;
4432 default:
4433 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00004434 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004435
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004436#ifdef IXGBE_FCOE
4437 /* FCoE support exists, always init the FCoE lock */
4438 spin_lock_init(&adapter->fcoe.lock);
4439
4440#endif
Alexander Duyck1fc5f032011-06-02 04:28:39 +00004441 /* n-tuple support exists, always init our spinlock */
4442 spin_lock_init(&adapter->fdir_perfect_lock);
4443
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004444#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00004445 switch (hw->mac.type) {
4446 case ixgbe_mac_X540:
4447 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
4448 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
4449 break;
4450 default:
4451 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
4452 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
4453 break;
4454 }
4455
Alexander Duyck2f90b862008-11-20 20:52:10 -08004456 /* Configure DCB traffic classes */
4457 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
4458 tc = &adapter->dcb_cfg.tc_config[j];
4459 tc->path[DCB_TX_CONFIG].bwg_id = 0;
4460 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
4461 tc->path[DCB_RX_CONFIG].bwg_id = 0;
4462 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
4463 tc->dcb_pfc = pfc_disabled;
4464 }
John Fastabend4de2a022011-09-27 03:52:01 +00004465
4466 /* Initialize default user to priority mapping, UPx->TC0 */
4467 tc = &adapter->dcb_cfg.tc_config[0];
4468 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
4469 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
4470
Alexander Duyck2f90b862008-11-20 20:52:10 -08004471 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
4472 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00004473 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004474 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00004475 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
John Fastabendf525c6d22012-04-18 22:42:27 +00004476 memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg,
4477 sizeof(adapter->temp_dcb_cfg));
Alexander Duyck2f90b862008-11-20 20:52:10 -08004478
4479#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004480
4481 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00004482 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00004483 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
John Fastabend9da712d2011-08-23 03:14:22 +00004484 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07004485 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
4486 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00004487 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07004488
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004489 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004490 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004491 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004492
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004493 /* set default ring sizes */
4494 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
4495 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
4496
Alexander Duyckbd198052011-06-11 01:45:08 +00004497 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00004498 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00004499
Auke Kok9a799d72007-09-15 14:07:45 -07004500 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004501 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004502 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07004503 return -EIO;
4504 }
4505
Auke Kok9a799d72007-09-15 14:07:45 -07004506 set_bit(__IXGBE_DOWN, &adapter->state);
4507
4508 return 0;
4509}
4510
4511/**
4512 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004513 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004514 *
4515 * Return 0 on success, negative on failure
4516 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004517int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004518{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004519 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004520 int orig_node = dev_to_node(dev);
4521 int numa_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07004522 int size;
4523
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004524 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004525
4526 if (tx_ring->q_vector)
4527 numa_node = tx_ring->q_vector->numa_node;
4528
4529 tx_ring->tx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004530 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004531 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004532 if (!tx_ring->tx_buffer_info)
4533 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004534
4535 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08004536 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004537 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004538
Alexander Duyckde88eee2012-02-08 07:49:59 +00004539 set_dev_node(dev, numa_node);
4540 tx_ring->desc = dma_alloc_coherent(dev,
4541 tx_ring->size,
4542 &tx_ring->dma,
4543 GFP_KERNEL);
4544 set_dev_node(dev, orig_node);
4545 if (!tx_ring->desc)
4546 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
4547 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004548 if (!tx_ring->desc)
4549 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004550
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004551 tx_ring->next_to_use = 0;
4552 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004553 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004554
4555err:
4556 vfree(tx_ring->tx_buffer_info);
4557 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004558 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004559 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004560}
4561
4562/**
Alexander Duyck69888672008-09-11 20:05:39 -07004563 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
4564 * @adapter: board private structure
4565 *
4566 * If this function returns with an error, then it's possible one or
4567 * more of the rings is populated (while the rest are not). It is the
4568 * callers duty to clean those orphaned rings.
4569 *
4570 * Return 0 on success, negative on failure
4571 **/
4572static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
4573{
4574 int i, err = 0;
4575
4576 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004577 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004578 if (!err)
4579 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004580
Emil Tantilov396e7992010-07-01 20:05:12 +00004581 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004582 goto err_setup_tx;
Alexander Duyck69888672008-09-11 20:05:39 -07004583 }
4584
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004585 return 0;
4586err_setup_tx:
4587 /* rewind the index freeing the rings as we go */
4588 while (i--)
4589 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004590 return err;
4591}
4592
4593/**
Auke Kok9a799d72007-09-15 14:07:45 -07004594 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004595 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004596 *
4597 * Returns 0 on success, negative on failure
4598 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004599int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004600{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004601 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004602 int orig_node = dev_to_node(dev);
4603 int numa_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004604 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07004605
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004606 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004607
4608 if (rx_ring->q_vector)
4609 numa_node = rx_ring->q_vector->numa_node;
4610
4611 rx_ring->rx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004612 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004613 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004614 if (!rx_ring->rx_buffer_info)
4615 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004616
Auke Kok9a799d72007-09-15 14:07:45 -07004617 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004618 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
4619 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004620
Alexander Duyckde88eee2012-02-08 07:49:59 +00004621 set_dev_node(dev, numa_node);
4622 rx_ring->desc = dma_alloc_coherent(dev,
4623 rx_ring->size,
4624 &rx_ring->dma,
4625 GFP_KERNEL);
4626 set_dev_node(dev, orig_node);
4627 if (!rx_ring->desc)
4628 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
4629 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004630 if (!rx_ring->desc)
4631 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004632
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004633 rx_ring->next_to_clean = 0;
4634 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004635
Alexander Duyckf8003262012-03-03 02:35:52 +00004636 ixgbe_init_rx_page_offset(rx_ring);
4637
Auke Kok9a799d72007-09-15 14:07:45 -07004638 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004639err:
4640 vfree(rx_ring->rx_buffer_info);
4641 rx_ring->rx_buffer_info = NULL;
4642 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07004643 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004644}
4645
4646/**
Alexander Duyck69888672008-09-11 20:05:39 -07004647 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
4648 * @adapter: board private structure
4649 *
4650 * If this function returns with an error, then it's possible one or
4651 * more of the rings is populated (while the rest are not). It is the
4652 * callers duty to clean those orphaned rings.
4653 *
4654 * Return 0 on success, negative on failure
4655 **/
Alexander Duyck69888672008-09-11 20:05:39 -07004656static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
4657{
4658 int i, err = 0;
4659
4660 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004661 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004662 if (!err)
4663 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004664
Emil Tantilov396e7992010-07-01 20:05:12 +00004665 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004666 goto err_setup_rx;
Alexander Duyck69888672008-09-11 20:05:39 -07004667 }
4668
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004669#ifdef IXGBE_FCOE
4670 err = ixgbe_setup_fcoe_ddp_resources(adapter);
4671 if (!err)
4672#endif
4673 return 0;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004674err_setup_rx:
4675 /* rewind the index freeing the rings as we go */
4676 while (i--)
4677 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004678 return err;
4679}
4680
4681/**
Auke Kok9a799d72007-09-15 14:07:45 -07004682 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004683 * @tx_ring: Tx descriptor ring for a specific queue
4684 *
4685 * Free all transmit software resources
4686 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004687void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004688{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004689 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004690
4691 vfree(tx_ring->tx_buffer_info);
4692 tx_ring->tx_buffer_info = NULL;
4693
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004694 /* if not set, then don't free */
4695 if (!tx_ring->desc)
4696 return;
4697
4698 dma_free_coherent(tx_ring->dev, tx_ring->size,
4699 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004700
4701 tx_ring->desc = NULL;
4702}
4703
4704/**
4705 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
4706 * @adapter: board private structure
4707 *
4708 * Free all transmit software resources
4709 **/
4710static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
4711{
4712 int i;
4713
4714 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004715 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004716 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004717}
4718
4719/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07004720 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07004721 * @rx_ring: ring to clean the resources from
4722 *
4723 * Free all receive software resources
4724 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004725void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004726{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004727 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004728
4729 vfree(rx_ring->rx_buffer_info);
4730 rx_ring->rx_buffer_info = NULL;
4731
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004732 /* if not set, then don't free */
4733 if (!rx_ring->desc)
4734 return;
4735
4736 dma_free_coherent(rx_ring->dev, rx_ring->size,
4737 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004738
4739 rx_ring->desc = NULL;
4740}
4741
4742/**
4743 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
4744 * @adapter: board private structure
4745 *
4746 * Free all receive software resources
4747 **/
4748static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
4749{
4750 int i;
4751
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004752#ifdef IXGBE_FCOE
4753 ixgbe_free_fcoe_ddp_resources(adapter);
4754
4755#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004756 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004757 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004758 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004759}
4760
4761/**
Auke Kok9a799d72007-09-15 14:07:45 -07004762 * ixgbe_change_mtu - Change the Maximum Transfer Unit
4763 * @netdev: network interface device structure
4764 * @new_mtu: new value for maximum frame size
4765 *
4766 * Returns 0 on success, negative on failure
4767 **/
4768static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
4769{
4770 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4771 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
4772
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07004773 /* MTU < 68 is an error and causes problems on some kernels */
Alexander Duyck655309e2012-02-08 07:50:35 +00004774 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
4775 return -EINVAL;
4776
4777 /*
4778 * For 82599EB we cannot allow PF to change MTU greater than 1500
4779 * in SR-IOV mode as it may cause buffer overruns in guest VFs that
4780 * don't allocate and chain buffers correctly.
4781 */
4782 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
4783 (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
4784 (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
Greg Rosee9f98072011-01-26 01:06:07 +00004785 return -EINVAL;
Auke Kok9a799d72007-09-15 14:07:45 -07004786
Emil Tantilov396e7992010-07-01 20:05:12 +00004787 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Alexander Duyck655309e2012-02-08 07:50:35 +00004788
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004789 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07004790 netdev->mtu = new_mtu;
4791
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004792 if (netif_running(netdev))
4793 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004794
4795 return 0;
4796}
4797
4798/**
4799 * ixgbe_open - Called when a network interface is made active
4800 * @netdev: network interface device structure
4801 *
4802 * Returns 0 on success, negative value on failure
4803 *
4804 * The open entry point is called when a network interface is made
4805 * active by the system (IFF_UP). At this point all resources needed
4806 * for transmit and receive operations are allocated, the interrupt
4807 * handler is registered with the OS, the watchdog timer is started,
4808 * and the stack is notified that the interface is ready.
4809 **/
4810static int ixgbe_open(struct net_device *netdev)
4811{
4812 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4813 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07004814
Auke Kok4bebfaa2008-02-11 09:26:01 -08004815 /* disallow open during test */
4816 if (test_bit(__IXGBE_TESTING, &adapter->state))
4817 return -EBUSY;
4818
Jesse Brandeburg54386462009-04-17 20:44:27 +00004819 netif_carrier_off(netdev);
4820
Auke Kok9a799d72007-09-15 14:07:45 -07004821 /* allocate transmit descriptors */
4822 err = ixgbe_setup_all_tx_resources(adapter);
4823 if (err)
4824 goto err_setup_tx;
4825
Auke Kok9a799d72007-09-15 14:07:45 -07004826 /* allocate receive descriptors */
4827 err = ixgbe_setup_all_rx_resources(adapter);
4828 if (err)
4829 goto err_setup_rx;
4830
4831 ixgbe_configure(adapter);
4832
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004833 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004834 if (err)
4835 goto err_req_irq;
4836
Alexander Duyckac802f52012-07-12 05:52:53 +00004837 /* Notify the stack of the actual queue counts. */
4838 err = netif_set_real_num_tx_queues(netdev,
4839 adapter->num_rx_pools > 1 ? 1 :
4840 adapter->num_tx_queues);
4841 if (err)
4842 goto err_set_queues;
4843
4844
4845 err = netif_set_real_num_rx_queues(netdev,
4846 adapter->num_rx_pools > 1 ? 1 :
4847 adapter->num_rx_queues);
4848 if (err)
4849 goto err_set_queues;
4850
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004851 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004852
4853 return 0;
4854
Alexander Duyckac802f52012-07-12 05:52:53 +00004855err_set_queues:
4856 ixgbe_free_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004857err_req_irq:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004858 ixgbe_free_all_rx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004859err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004860 ixgbe_free_all_tx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004861err_setup_tx:
Auke Kok9a799d72007-09-15 14:07:45 -07004862 ixgbe_reset(adapter);
4863
4864 return err;
4865}
4866
4867/**
4868 * ixgbe_close - Disables a network interface
4869 * @netdev: network interface device structure
4870 *
4871 * Returns 0, this is not allowed to fail
4872 *
4873 * The close entry point is called when an interface is de-activated
4874 * by the OS. The hardware is still under the drivers control, but
4875 * needs to be disabled. A global MAC reset is issued to stop the
4876 * hardware, and all transmit and receive resources are freed.
4877 **/
4878static int ixgbe_close(struct net_device *netdev)
4879{
4880 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07004881
4882 ixgbe_down(adapter);
4883 ixgbe_free_irq(adapter);
4884
Alexander Duycke4911d52011-05-11 07:18:52 +00004885 ixgbe_fdir_filter_exit(adapter);
4886
Auke Kok9a799d72007-09-15 14:07:45 -07004887 ixgbe_free_all_tx_resources(adapter);
4888 ixgbe_free_all_rx_resources(adapter);
4889
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08004890 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004891
4892 return 0;
4893}
4894
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004895#ifdef CONFIG_PM
4896static int ixgbe_resume(struct pci_dev *pdev)
4897{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004898 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4899 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004900 u32 err;
4901
4902 pci_set_power_state(pdev, PCI_D0);
4903 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08004904 /*
4905 * pci_restore_state clears dev->state_saved so call
4906 * pci_save_state to restore it.
4907 */
4908 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00004909
4910 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004911 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004912 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004913 return err;
4914 }
4915 pci_set_master(pdev);
4916
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07004917 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004918
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004919 ixgbe_reset(adapter);
4920
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00004921 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
4922
Alexander Duyckac802f52012-07-12 05:52:53 +00004923 rtnl_lock();
4924 err = ixgbe_init_interrupt_scheme(adapter);
4925 if (!err && netif_running(netdev))
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004926 err = ixgbe_open(netdev);
Alexander Duyckac802f52012-07-12 05:52:53 +00004927
4928 rtnl_unlock();
4929
4930 if (err)
4931 return err;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004932
4933 netif_device_attach(netdev);
4934
4935 return 0;
4936}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004937#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00004938
4939static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004940{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004941 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4942 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004943 struct ixgbe_hw *hw = &adapter->hw;
4944 u32 ctrl, fctrl;
4945 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004946#ifdef CONFIG_PM
4947 int retval = 0;
4948#endif
4949
4950 netif_device_detach(netdev);
4951
4952 if (netif_running(netdev)) {
Don Skidmoreab6039a2012-03-17 05:51:52 +00004953 rtnl_lock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004954 ixgbe_down(adapter);
4955 ixgbe_free_irq(adapter);
4956 ixgbe_free_all_tx_resources(adapter);
4957 ixgbe_free_all_rx_resources(adapter);
Don Skidmoreab6039a2012-03-17 05:51:52 +00004958 rtnl_unlock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004959 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004960
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08004961 ixgbe_clear_interrupt_scheme(adapter);
4962
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004963#ifdef CONFIG_PM
4964 retval = pci_save_state(pdev);
4965 if (retval)
4966 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004967
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004968#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004969 if (wufc) {
4970 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004971
Don Skidmorec509e752012-04-05 08:12:05 +00004972 /*
4973 * enable the optics for both mult-speed fiber and
4974 * 82599 SFP+ fiber as we can WoL.
4975 */
4976 if (hw->mac.ops.enable_tx_laser &&
4977 (hw->phy.multispeed_fiber ||
4978 (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber &&
4979 hw->mac.type == ixgbe_mac_82599EB)))
4980 hw->mac.ops.enable_tx_laser(hw);
4981
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004982 /* turn on all-multi mode if wake on multicast is enabled */
4983 if (wufc & IXGBE_WUFC_MC) {
4984 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4985 fctrl |= IXGBE_FCTRL_MPE;
4986 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4987 }
4988
4989 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
4990 ctrl |= IXGBE_CTRL_GIO_DIS;
4991 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
4992
4993 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
4994 } else {
4995 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
4996 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
4997 }
4998
Alexander Duyckbd508172010-11-16 19:27:03 -08004999 switch (hw->mac.type) {
5000 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005001 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005002 break;
5003 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005004 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005005 pci_wake_from_d3(pdev, !!wufc);
5006 break;
5007 default:
5008 break;
5009 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005010
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005011 *enable_wake = !!wufc;
5012
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005013 ixgbe_release_hw_control(adapter);
5014
5015 pci_disable_device(pdev);
5016
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005017 return 0;
5018}
5019
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005020#ifdef CONFIG_PM
5021static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5022{
5023 int retval;
5024 bool wake;
5025
5026 retval = __ixgbe_shutdown(pdev, &wake);
5027 if (retval)
5028 return retval;
5029
5030 if (wake) {
5031 pci_prepare_to_sleep(pdev);
5032 } else {
5033 pci_wake_from_d3(pdev, false);
5034 pci_set_power_state(pdev, PCI_D3hot);
5035 }
5036
5037 return 0;
5038}
5039#endif /* CONFIG_PM */
5040
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005041static void ixgbe_shutdown(struct pci_dev *pdev)
5042{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005043 bool wake;
5044
5045 __ixgbe_shutdown(pdev, &wake);
5046
5047 if (system_state == SYSTEM_POWER_OFF) {
5048 pci_wake_from_d3(pdev, wake);
5049 pci_set_power_state(pdev, PCI_D3hot);
5050 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005051}
5052
5053/**
Auke Kok9a799d72007-09-15 14:07:45 -07005054 * ixgbe_update_stats - Update the board statistics counters.
5055 * @adapter: board private structure
5056 **/
5057void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5058{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005059 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005060 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005061 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005062 u64 total_mpc = 0;
5063 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005064 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5065 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005066 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005067
Don Skidmored08935c2010-06-11 13:20:29 +00005068 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5069 test_bit(__IXGBE_RESETTING, &adapter->state))
5070 return;
5071
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005072 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005073 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005074 u64 rsc_flush = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005075 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005076 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5077 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005078 }
5079 adapter->rsc_total_count = rsc_count;
5080 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005081 }
5082
Alexander Duyck5b7da512010-11-16 19:26:50 -08005083 for (i = 0; i < adapter->num_rx_queues; i++) {
5084 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5085 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5086 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5087 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005088 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005089 bytes += rx_ring->stats.bytes;
5090 packets += rx_ring->stats.packets;
5091 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005092 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005093 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5094 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005095 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005096 netdev->stats.rx_bytes = bytes;
5097 netdev->stats.rx_packets = packets;
5098
5099 bytes = 0;
5100 packets = 0;
5101 /* gather some stats to the adapter struct that are per queue */
5102 for (i = 0; i < adapter->num_tx_queues; i++) {
5103 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5104 restart_queue += tx_ring->tx_stats.restart_queue;
5105 tx_busy += tx_ring->tx_stats.tx_busy;
5106 bytes += tx_ring->stats.bytes;
5107 packets += tx_ring->stats.packets;
5108 }
5109 adapter->restart_queue = restart_queue;
5110 adapter->tx_busy = tx_busy;
5111 netdev->stats.tx_bytes = bytes;
5112 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005113
Joe Perches7ca647b2010-09-07 21:35:40 +00005114 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005115
5116 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005117 for (i = 0; i < 8; i++) {
5118 /* for packet buffers not used, the register should read 0 */
5119 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5120 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005121 hwstats->mpc[i] += mpc;
5122 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005123 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5124 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005125 switch (hw->mac.type) {
5126 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005127 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5128 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5129 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005130 hwstats->pxonrxc[i] +=
5131 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005132 break;
5133 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005134 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005135 hwstats->pxonrxc[i] +=
5136 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005137 break;
5138 default:
5139 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005140 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005141 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005142
5143 /*16 register reads */
5144 for (i = 0; i < 16; i++) {
5145 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5146 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5147 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5148 (hw->mac.type == ixgbe_mac_X540)) {
5149 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5150 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5151 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5152 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5153 }
5154 }
5155
Joe Perches7ca647b2010-09-07 21:35:40 +00005156 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005157 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005158 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005159
John Fastabendc84d3242010-11-16 19:27:12 -08005160 ixgbe_update_xoff_received(adapter);
5161
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005162 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005163 switch (hw->mac.type) {
5164 case ixgbe_mac_82598EB:
5165 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005166 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5167 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5168 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5169 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005170 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005171 /* OS2BMC stats are X540 only*/
5172 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5173 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5174 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5175 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5176 case ixgbe_mac_82599EB:
Alexander Duycka4d4f622012-03-28 08:03:32 +00005177 for (i = 0; i < 16; i++)
5178 adapter->hw_rx_no_dma_resources +=
5179 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005180 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005181 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005182 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005183 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005184 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005185 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005186 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005187 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5188 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005189#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005190 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5191 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5192 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5193 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5194 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5195 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005196 /* Add up per cpu counters for total ddp aloc fail */
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005197 if (adapter->fcoe.ddp_pool) {
5198 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5199 struct ixgbe_fcoe_ddp_pool *ddp_pool;
5200 unsigned int cpu;
5201 u64 noddp = 0, noddp_ext_buff = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005202 for_each_possible_cpu(cpu) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005203 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
5204 noddp += ddp_pool->noddp;
5205 noddp_ext_buff += ddp_pool->noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005206 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005207 hwstats->fcoe_noddp = noddp;
5208 hwstats->fcoe_noddp_ext_buff = noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005209 }
Yi Zou6d455222009-05-13 13:12:16 +00005210#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005211 break;
5212 default:
5213 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005214 }
Auke Kok9a799d72007-09-15 14:07:45 -07005215 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005216 hwstats->bprc += bprc;
5217 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005218 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005219 hwstats->mprc -= bprc;
5220 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5221 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5222 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5223 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5224 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5225 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5226 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5227 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005228 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005229 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005230 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005231 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005232 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5233 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005234 /*
5235 * 82598 errata - tx of flow control packets is included in tx counters
5236 */
5237 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005238 hwstats->gptc -= xon_off_tot;
5239 hwstats->mptc -= xon_off_tot;
5240 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5241 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5242 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5243 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5244 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5245 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5246 hwstats->ptc64 -= xon_off_tot;
5247 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5248 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5249 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5250 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5251 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5252 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005253
5254 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005255 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005256
5257 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005258 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005259 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005260 netdev->stats.rx_length_errors = hwstats->rlec;
5261 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005262 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005263}
5264
5265/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005266 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005267 * @adapter: pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005268 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005269static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005270{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005271 struct ixgbe_hw *hw = &adapter->hw;
5272 int i;
5273
Alexander Duyckd034acf2011-04-27 09:25:34 +00005274 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5275 return;
5276
5277 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5278
5279 /* if interface is down do nothing */
5280 if (test_bit(__IXGBE_DOWN, &adapter->state))
5281 return;
5282
5283 /* do nothing if we are not using signature filters */
5284 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5285 return;
5286
5287 adapter->fdir_overflow++;
5288
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005289 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5290 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005291 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005292 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005293 /* re-enable flow director interrupts */
5294 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005295 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005296 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005297 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005298 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005299}
5300
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005301/**
5302 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005303 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005304 *
5305 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005306 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005307 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005308 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005309 */
5310static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5311{
Auke Kok9a799d72007-09-15 14:07:45 -07005312 struct ixgbe_hw *hw = &adapter->hw;
5313 u64 eics = 0;
5314 int i;
5315
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005316 /* If we're down or resetting, just bail */
5317 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5318 test_bit(__IXGBE_RESETTING, &adapter->state))
5319 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005320
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005321 /* Force detection of hung controller */
5322 if (netif_carrier_ok(adapter->netdev)) {
5323 for (i = 0; i < adapter->num_tx_queues; i++)
5324 set_check_for_tx_hang(adapter->tx_ring[i]);
5325 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005326
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005327 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005328 /*
5329 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005330 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005331 * would set *both* EIMS and EICS for any bit in EIAM
5332 */
5333 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5334 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005335 } else {
5336 /* get one bit for every active tx/rx interrupt vector */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00005337 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005338 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00005339 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005340 eics |= ((u64)1 << i);
5341 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005342 }
5343
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005344 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005345 ixgbe_irq_rearm_queues(adapter, eics);
5346
Alexander Duyckfe49f042009-06-04 16:00:09 +00005347}
5348
5349/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005350 * ixgbe_watchdog_update_link - update the link status
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005351 * @adapter: pointer to the device adapter structure
5352 * @link_speed: pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005353 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005354static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005355{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005356 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005357 u32 link_speed = adapter->link_speed;
5358 bool link_up = adapter->link_up;
Alexander Duyck041441d2012-04-19 17:48:48 +00005359 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005360
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005361 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5362 return;
5363
5364 if (hw->mac.ops.check_link) {
5365 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005366 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005367 /* always assume link is up, if no check link function */
5368 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
5369 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005370 }
Alexander Duyck041441d2012-04-19 17:48:48 +00005371
5372 if (adapter->ixgbe_ieee_pfc)
5373 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
5374
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005375 if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
Alexander Duyck041441d2012-04-19 17:48:48 +00005376 hw->mac.ops.fc_enable(hw);
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005377 ixgbe_set_rx_drop_en(adapter);
5378 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005379
5380 if (link_up ||
5381 time_after(jiffies, (adapter->link_check_timeout +
5382 IXGBE_TRY_LINK_TIMEOUT))) {
5383 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5384 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
5385 IXGBE_WRITE_FLUSH(hw);
5386 }
5387
5388 adapter->link_up = link_up;
5389 adapter->link_speed = link_speed;
5390}
5391
5392/**
5393 * ixgbe_watchdog_link_is_up - update netif_carrier status and
5394 * print link up message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005395 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005396 **/
5397static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
5398{
5399 struct net_device *netdev = adapter->netdev;
5400 struct ixgbe_hw *hw = &adapter->hw;
5401 u32 link_speed = adapter->link_speed;
5402 bool flow_rx, flow_tx;
5403
5404 /* only continue if link was previously down */
5405 if (netif_carrier_ok(netdev))
5406 return;
5407
5408 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
5409
5410 switch (hw->mac.type) {
5411 case ixgbe_mac_82598EB: {
5412 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5413 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
5414 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
5415 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
5416 }
5417 break;
5418 case ixgbe_mac_X540:
5419 case ixgbe_mac_82599EB: {
5420 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
5421 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
5422 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
5423 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
5424 }
5425 break;
5426 default:
5427 flow_tx = false;
5428 flow_rx = false;
5429 break;
5430 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005431
5432#ifdef CONFIG_IXGBE_PTP
5433 ixgbe_ptp_start_cyclecounter(adapter);
5434#endif
5435
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005436 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
5437 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
5438 "10 Gbps" :
5439 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
5440 "1 Gbps" :
5441 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
5442 "100 Mbps" :
5443 "unknown speed"))),
5444 ((flow_rx && flow_tx) ? "RX/TX" :
5445 (flow_rx ? "RX" :
5446 (flow_tx ? "TX" : "None"))));
5447
5448 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005449 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005450
5451 /* ping all the active vfs to let them know link has changed */
5452 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005453}
5454
5455/**
5456 * ixgbe_watchdog_link_is_down - update netif_carrier status and
5457 * print link down message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005458 * @adapter: pointer to the adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005459 **/
Alexander Duyck581330b2012-02-08 07:51:47 +00005460static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005461{
5462 struct net_device *netdev = adapter->netdev;
5463 struct ixgbe_hw *hw = &adapter->hw;
5464
5465 adapter->link_up = false;
5466 adapter->link_speed = 0;
5467
5468 /* only continue if link was up previously */
5469 if (!netif_carrier_ok(netdev))
5470 return;
5471
5472 /* poll for SFP+ cable when link is down */
5473 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
5474 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
5475
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005476#ifdef CONFIG_IXGBE_PTP
5477 ixgbe_ptp_start_cyclecounter(adapter);
5478#endif
5479
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005480 e_info(drv, "NIC Link is Down\n");
5481 netif_carrier_off(netdev);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005482
5483 /* ping all the active vfs to let them know link has changed */
5484 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005485}
5486
5487/**
5488 * ixgbe_watchdog_flush_tx - flush queues on link down
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005489 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005490 **/
5491static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
5492{
5493 int i;
5494 int some_tx_pending = 0;
5495
5496 if (!netif_carrier_ok(adapter->netdev)) {
5497 for (i = 0; i < adapter->num_tx_queues; i++) {
5498 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5499 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
5500 some_tx_pending = 1;
5501 break;
5502 }
5503 }
5504
5505 if (some_tx_pending) {
5506 /* We've lost link, so the controller stops DMA,
5507 * but we've got queued Tx work that's never going
5508 * to get done, so reset controller to flush Tx.
5509 * (Do the reset outside of interrupt context).
5510 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005511 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005512 }
5513 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005514}
5515
Greg Rosea985b6c32010-11-18 03:02:52 +00005516static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
5517{
5518 u32 ssvpc;
5519
5520 /* Do not perform spoof check for 82598 */
5521 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
5522 return;
5523
5524 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
5525
5526 /*
5527 * ssvpc register is cleared on read, if zero then no
5528 * spoofed packets in the last interval.
5529 */
5530 if (!ssvpc)
5531 return;
5532
5533 e_warn(drv, "%d Spoofed packets detected\n", ssvpc);
5534}
5535
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005536/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005537 * ixgbe_watchdog_subtask - check and bring link up
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005538 * @adapter: pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005539 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005540static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005541{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005542 /* if interface is down do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00005543 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5544 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005545 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005546
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005547 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00005548
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005549 if (adapter->link_up)
5550 ixgbe_watchdog_link_is_up(adapter);
5551 else
5552 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005553
Greg Rosea985b6c32010-11-18 03:02:52 +00005554 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005555 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005556
5557 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005558}
5559
Alexander Duyck70864002011-04-27 09:13:56 +00005560/**
5561 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005562 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005563 **/
5564static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
5565{
5566 struct ixgbe_hw *hw = &adapter->hw;
5567 s32 err;
5568
5569 /* not searching for SFP so there is nothing to do here */
5570 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
5571 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5572 return;
5573
5574 /* someone else is in init, wait until next service event */
5575 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5576 return;
5577
5578 err = hw->phy.ops.identify_sfp(hw);
5579 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5580 goto sfp_out;
5581
5582 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
5583 /* If no cable is present, then we need to reset
5584 * the next time we find a good cable. */
5585 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
5586 }
5587
5588 /* exit on error */
5589 if (err)
5590 goto sfp_out;
5591
5592 /* exit if reset not needed */
5593 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5594 goto sfp_out;
5595
5596 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
5597
5598 /*
5599 * A module may be identified correctly, but the EEPROM may not have
5600 * support for that module. setup_sfp() will fail in that case, so
5601 * we should not allow that module to load.
5602 */
5603 if (hw->mac.type == ixgbe_mac_82598EB)
5604 err = hw->phy.ops.reset(hw);
5605 else
5606 err = hw->mac.ops.setup_sfp(hw);
5607
5608 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5609 goto sfp_out;
5610
5611 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
5612 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
5613
5614sfp_out:
5615 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5616
5617 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
5618 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
5619 e_dev_err("failed to initialize because an unsupported "
5620 "SFP+ module type was detected.\n");
5621 e_dev_err("Reload the driver after installing a "
5622 "supported module.\n");
5623 unregister_netdev(adapter->netdev);
5624 }
5625}
5626
5627/**
5628 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005629 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005630 **/
5631static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
5632{
5633 struct ixgbe_hw *hw = &adapter->hw;
5634 u32 autoneg;
5635 bool negotiation;
5636
5637 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
5638 return;
5639
5640 /* someone else is in init, wait until next service event */
5641 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5642 return;
5643
5644 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
5645
5646 autoneg = hw->phy.autoneg_advertised;
5647 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
5648 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Alexander Duyck70864002011-04-27 09:13:56 +00005649 if (hw->mac.ops.setup_link)
5650 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
5651
5652 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5653 adapter->link_check_timeout = jiffies;
5654 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5655}
5656
Greg Rose83c61fa2011-09-07 05:59:35 +00005657#ifdef CONFIG_PCI_IOV
5658static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
5659{
5660 int vf;
5661 struct ixgbe_hw *hw = &adapter->hw;
5662 struct net_device *netdev = adapter->netdev;
5663 u32 gpc;
5664 u32 ciaa, ciad;
5665
5666 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
5667 if (gpc) /* If incrementing then no need for the check below */
5668 return;
5669 /*
5670 * Check to see if a bad DMA write target from an errant or
5671 * malicious VF has caused a PCIe error. If so then we can
5672 * issue a VFLR to the offending VF(s) and then resume without
5673 * requesting a full slot reset.
5674 */
5675
5676 for (vf = 0; vf < adapter->num_vfs; vf++) {
5677 ciaa = (vf << 16) | 0x80000000;
5678 /* 32 bit read so align, we really want status at offset 6 */
5679 ciaa |= PCI_COMMAND;
5680 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5681 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
5682 ciaa &= 0x7FFFFFFF;
5683 /* disable debug mode asap after reading data */
5684 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5685 /* Get the upper 16 bits which will be the PCI status reg */
5686 ciad >>= 16;
5687 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
5688 netdev_err(netdev, "VF %d Hung DMA\n", vf);
5689 /* Issue VFLR */
5690 ciaa = (vf << 16) | 0x80000000;
5691 ciaa |= 0xA8;
5692 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5693 ciad = 0x00008000; /* VFLR */
5694 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
5695 ciaa &= 0x7FFFFFFF;
5696 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5697 }
5698 }
5699}
5700
5701#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005702/**
5703 * ixgbe_service_timer - Timer Call-back
5704 * @data: pointer to adapter cast into an unsigned long
5705 **/
5706static void ixgbe_service_timer(unsigned long data)
5707{
5708 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
5709 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00005710 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00005711
5712 /* poll faster when waiting for link */
5713 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
5714 next_event_offset = HZ / 10;
5715 else
5716 next_event_offset = HZ * 2;
5717
Greg Rose83c61fa2011-09-07 05:59:35 +00005718#ifdef CONFIG_PCI_IOV
Alexander Duyck6bb78cf2012-02-08 07:51:22 +00005719 /*
5720 * don't bother with SR-IOV VF DMA hang check if there are
5721 * no VFs or the link is down
5722 */
5723 if (!adapter->num_vfs ||
5724 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5725 goto normal_timer_service;
5726
5727 /* If we have VFs allocated then we must check for DMA hangs */
5728 ixgbe_check_for_bad_vf(adapter);
5729 next_event_offset = HZ / 50;
5730 adapter->timer_event_accumulator++;
5731
5732 if (adapter->timer_event_accumulator >= 100)
5733 adapter->timer_event_accumulator = 0;
5734 else
5735 ready = false;
5736
5737normal_timer_service:
Greg Rose83c61fa2011-09-07 05:59:35 +00005738#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005739 /* Reset the timer */
5740 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
5741
Greg Rose83c61fa2011-09-07 05:59:35 +00005742 if (ready)
5743 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005744}
5745
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005746static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
5747{
5748 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
5749 return;
5750
5751 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
5752
5753 /* If we're already down or resetting, just bail */
5754 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5755 test_bit(__IXGBE_RESETTING, &adapter->state))
5756 return;
5757
5758 ixgbe_dump(adapter);
5759 netdev_err(adapter->netdev, "Reset adapter\n");
5760 adapter->tx_timeout_count++;
5761
5762 ixgbe_reinit_locked(adapter);
5763}
5764
Alexander Duyck70864002011-04-27 09:13:56 +00005765/**
5766 * ixgbe_service_task - manages and runs subtasks
5767 * @work: pointer to work_struct containing our data
5768 **/
5769static void ixgbe_service_task(struct work_struct *work)
5770{
5771 struct ixgbe_adapter *adapter = container_of(work,
5772 struct ixgbe_adapter,
5773 service_task);
5774
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005775 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005776 ixgbe_sfp_detection_subtask(adapter);
5777 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00005778 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005779 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00005780 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005781 ixgbe_check_hang_subtask(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005782#ifdef CONFIG_IXGBE_PTP
5783 ixgbe_ptp_overflow_check(adapter);
5784#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005785
5786 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005787}
5788
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005789static int ixgbe_tso(struct ixgbe_ring *tx_ring,
5790 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005791 u8 *hdr_len)
Alexander Duyck897ab152011-05-27 05:31:47 +00005792{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005793 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005794 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005795 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07005796
Alexander Duyck897ab152011-05-27 05:31:47 +00005797 if (!skb_is_gso(skb))
5798 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005799
Alexander Duyck897ab152011-05-27 05:31:47 +00005800 if (skb_header_cloned(skb)) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00005801 int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Alexander Duyck897ab152011-05-27 05:31:47 +00005802 if (err)
5803 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00005804 }
5805
Alexander Duyck897ab152011-05-27 05:31:47 +00005806 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
5807 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
5808
Alexander Duyck244e27a2012-02-08 07:51:11 +00005809 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005810 struct iphdr *iph = ip_hdr(skb);
5811 iph->tot_len = 0;
5812 iph->check = 0;
5813 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5814 iph->daddr, 0,
5815 IPPROTO_TCP,
5816 0);
5817 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005818 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5819 IXGBE_TX_FLAGS_CSUM |
5820 IXGBE_TX_FLAGS_IPV4;
Alexander Duyck897ab152011-05-27 05:31:47 +00005821 } else if (skb_is_gso_v6(skb)) {
5822 ipv6_hdr(skb)->payload_len = 0;
5823 tcp_hdr(skb)->check =
5824 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
5825 &ipv6_hdr(skb)->daddr,
5826 0, IPPROTO_TCP, 0);
Alexander Duyck244e27a2012-02-08 07:51:11 +00005827 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5828 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck897ab152011-05-27 05:31:47 +00005829 }
5830
Alexander Duyck091a6242012-02-08 07:51:01 +00005831 /* compute header lengths */
Alexander Duyck897ab152011-05-27 05:31:47 +00005832 l4len = tcp_hdrlen(skb);
5833 *hdr_len = skb_transport_offset(skb) + l4len;
5834
Alexander Duyck091a6242012-02-08 07:51:01 +00005835 /* update gso size and bytecount with header size */
5836 first->gso_segs = skb_shinfo(skb)->gso_segs;
5837 first->bytecount += (first->gso_segs - 1) * *hdr_len;
5838
Alexander Duyck897ab152011-05-27 05:31:47 +00005839 /* mss_l4len_id: use 1 as index for TSO */
5840 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
5841 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
5842 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
5843
5844 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
5845 vlan_macip_lens = skb_network_header_len(skb);
5846 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005847 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005848
5849 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005850 mss_l4len_idx);
Alexander Duyck897ab152011-05-27 05:31:47 +00005851
5852 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00005853}
5854
Alexander Duyck244e27a2012-02-08 07:51:11 +00005855static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
5856 struct ixgbe_tx_buffer *first)
Auke Kok9a799d72007-09-15 14:07:45 -07005857{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005858 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005859 u32 vlan_macip_lens = 0;
5860 u32 mss_l4len_idx = 0;
5861 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005862
Alexander Duyck897ab152011-05-27 05:31:47 +00005863 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00005864 if (!(first->tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
5865 !(first->tx_flags & IXGBE_TX_FLAGS_TXSW))
5866 return;
Alexander Duyck897ab152011-05-27 05:31:47 +00005867 } else {
5868 u8 l4_hdr = 0;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005869 switch (first->protocol) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005870 case __constant_htons(ETH_P_IP):
5871 vlan_macip_lens |= skb_network_header_len(skb);
5872 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
5873 l4_hdr = ip_hdr(skb)->protocol;
5874 break;
5875 case __constant_htons(ETH_P_IPV6):
5876 vlan_macip_lens |= skb_network_header_len(skb);
5877 l4_hdr = ipv6_hdr(skb)->nexthdr;
5878 break;
5879 default:
5880 if (unlikely(net_ratelimit())) {
5881 dev_warn(tx_ring->dev,
5882 "partial checksum but proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005883 first->protocol);
Alexander Duyck897ab152011-05-27 05:31:47 +00005884 }
5885 break;
5886 }
Auke Kok9a799d72007-09-15 14:07:45 -07005887
Alexander Duyck897ab152011-05-27 05:31:47 +00005888 switch (l4_hdr) {
5889 case IPPROTO_TCP:
5890 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
5891 mss_l4len_idx = tcp_hdrlen(skb) <<
5892 IXGBE_ADVTXD_L4LEN_SHIFT;
5893 break;
5894 case IPPROTO_SCTP:
5895 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
5896 mss_l4len_idx = sizeof(struct sctphdr) <<
5897 IXGBE_ADVTXD_L4LEN_SHIFT;
5898 break;
5899 case IPPROTO_UDP:
5900 mss_l4len_idx = sizeof(struct udphdr) <<
5901 IXGBE_ADVTXD_L4LEN_SHIFT;
5902 break;
5903 default:
5904 if (unlikely(net_ratelimit())) {
5905 dev_warn(tx_ring->dev,
5906 "partial checksum but l4 proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005907 l4_hdr);
Alexander Duyck897ab152011-05-27 05:31:47 +00005908 }
5909 break;
5910 }
Alexander Duyck244e27a2012-02-08 07:51:11 +00005911
5912 /* update TX checksum flag */
5913 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07005914 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005915
Alexander Duyck244e27a2012-02-08 07:51:11 +00005916 /* vlan_macip_lens: MACLEN, VLAN tag */
Alexander Duyck897ab152011-05-27 05:31:47 +00005917 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005918 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005919
5920 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
5921 type_tucmd, mss_l4len_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07005922}
5923
Alexander Duyckd3d00232011-07-15 02:31:25 +00005924static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
5925{
5926 /* set type for advanced descriptor with frame checksum insertion */
5927 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
5928 IXGBE_ADVTXD_DCMD_IFCS |
5929 IXGBE_ADVTXD_DCMD_DEXT);
5930
5931 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00005932 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005933 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
5934
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005935#ifdef CONFIG_IXGBE_PTP
5936 if (tx_flags & IXGBE_TX_FLAGS_TSTAMP)
5937 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_MAC_TSTAMP);
5938#endif
5939
Alexander Duyckd3d00232011-07-15 02:31:25 +00005940 /* set segmentation enable bits for TSO/FSO */
5941#ifdef IXGBE_FCOE
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005942 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FSO))
Alexander Duyckd3d00232011-07-15 02:31:25 +00005943#else
5944 if (tx_flags & IXGBE_TX_FLAGS_TSO)
5945#endif
5946 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
5947
5948 return cmd_type;
5949}
5950
Alexander Duyck729739b2012-02-08 07:51:06 +00005951static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
5952 u32 tx_flags, unsigned int paylen)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005953{
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005954 __le32 olinfo_status = cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005955
5956 /* enable L4 checksum for TSO and TX checksum offload */
5957 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
5958 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
5959
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005960 /* enble IPv4 checksum for TSO */
5961 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
5962 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005963
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005964 /* use index 1 context for TSO/FSO/FCOE */
5965#ifdef IXGBE_FCOE
5966 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FCOE))
5967#else
5968 if (tx_flags & IXGBE_TX_FLAGS_TSO)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005969#endif
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005970 olinfo_status |= cpu_to_le32(1 << IXGBE_ADVTXD_IDX_SHIFT);
5971
Alexander Duyck7f9643f2011-06-29 05:43:27 +00005972 /*
5973 * Check Context must be set if Tx switch is enabled, which it
5974 * always is for case where virtual functions are running
5975 */
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005976#ifdef IXGBE_FCOE
5977 if (tx_flags & (IXGBE_TX_FLAGS_TXSW | IXGBE_TX_FLAGS_FCOE))
5978#else
Alexander Duyck7f9643f2011-06-29 05:43:27 +00005979 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005980#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00005981 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
5982
Alexander Duyck729739b2012-02-08 07:51:06 +00005983 tx_desc->read.olinfo_status = olinfo_status;
Alexander Duyckd3d00232011-07-15 02:31:25 +00005984}
5985
5986#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
5987 IXGBE_TXD_CMD_RS)
5988
5989static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
Alexander Duyckd3d00232011-07-15 02:31:25 +00005990 struct ixgbe_tx_buffer *first,
Alexander Duyckd3d00232011-07-15 02:31:25 +00005991 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07005992{
Alexander Duyckd3d00232011-07-15 02:31:25 +00005993 dma_addr_t dma;
Alexander Duyck729739b2012-02-08 07:51:06 +00005994 struct sk_buff *skb = first->skb;
5995 struct ixgbe_tx_buffer *tx_buffer;
5996 union ixgbe_adv_tx_desc *tx_desc;
5997 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
Alexander Duyckd3d00232011-07-15 02:31:25 +00005998 unsigned int data_len = skb->data_len;
5999 unsigned int size = skb_headlen(skb);
Alexander Duyck729739b2012-02-08 07:51:06 +00006000 unsigned int paylen = skb->len - hdr_len;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006001 u32 tx_flags = first->tx_flags;
Alexander Duyck729739b2012-02-08 07:51:06 +00006002 __le32 cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006003 u16 i = tx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07006004
Alexander Duyck729739b2012-02-08 07:51:06 +00006005 tx_desc = IXGBE_TX_DESC(tx_ring, i);
6006
6007 ixgbe_tx_olinfo_status(tx_desc, tx_flags, paylen);
6008 cmd_type = ixgbe_tx_cmd_type(tx_flags);
6009
Alexander Duyckd3d00232011-07-15 02:31:25 +00006010#ifdef IXGBE_FCOE
6011 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006012 if (data_len < sizeof(struct fcoe_crc_eof)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006013 size -= sizeof(struct fcoe_crc_eof) - data_len;
6014 data_len = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00006015 } else {
6016 data_len -= sizeof(struct fcoe_crc_eof);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006017 }
Auke Kok9a799d72007-09-15 14:07:45 -07006018 }
6019
Alexander Duyckd3d00232011-07-15 02:31:25 +00006020#endif
Alexander Duyck729739b2012-02-08 07:51:06 +00006021 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
6022 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006023 goto dma_error;
6024
Alexander Duyck729739b2012-02-08 07:51:06 +00006025 /* record length, and DMA address */
6026 dma_unmap_len_set(first, len, size);
6027 dma_unmap_addr_set(first, dma, dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006028
Alexander Duyck729739b2012-02-08 07:51:06 +00006029 tx_desc->read.buffer_addr = cpu_to_le64(dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006030
6031 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006032 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006033 tx_desc->read.cmd_type_len =
6034 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006035
Alexander Duyckd3d00232011-07-15 02:31:25 +00006036 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00006037 tx_desc++;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006038 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006039 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006040 i = 0;
6041 }
Alexander Duyck729739b2012-02-08 07:51:06 +00006042
6043 dma += IXGBE_MAX_DATA_PER_TXD;
6044 size -= IXGBE_MAX_DATA_PER_TXD;
6045
6046 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6047 tx_desc->read.olinfo_status = 0;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006048 }
6049
Alexander Duyck729739b2012-02-08 07:51:06 +00006050 if (likely(!data_len))
6051 break;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006052
Ben Greearf43f3132012-03-06 09:42:04 +00006053 if (unlikely(skb->no_fcs))
6054 cmd_type &= ~(cpu_to_le32(IXGBE_ADVTXD_DCMD_IFCS));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006055 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006056
Alexander Duyck729739b2012-02-08 07:51:06 +00006057 i++;
6058 tx_desc++;
6059 if (i == tx_ring->count) {
6060 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
6061 i = 0;
6062 }
Auke Kok9a799d72007-09-15 14:07:45 -07006063
Alexander Duyckd3d00232011-07-15 02:31:25 +00006064#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006065 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006066#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006067 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006068#endif
6069 data_len -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006070
Alexander Duyck729739b2012-02-08 07:51:06 +00006071 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
6072 DMA_TO_DEVICE);
6073 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006074 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006075
Alexander Duyck729739b2012-02-08 07:51:06 +00006076 tx_buffer = &tx_ring->tx_buffer_info[i];
6077 dma_unmap_len_set(tx_buffer, len, size);
6078 dma_unmap_addr_set(tx_buffer, dma, dma);
6079
6080 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6081 tx_desc->read.olinfo_status = 0;
6082
6083 frag++;
Auke Kok9a799d72007-09-15 14:07:45 -07006084 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006085
Alexander Duyck729739b2012-02-08 07:51:06 +00006086 /* write last descriptor with RS and EOP bits */
6087 cmd_type |= cpu_to_le32(size) | cpu_to_le32(IXGBE_TXD_CMD);
6088 tx_desc->read.cmd_type_len = cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006089
Alexander Duyck091a6242012-02-08 07:51:01 +00006090 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Alexander Duyckb2d96e02012-02-07 08:14:33 +00006091
Alexander Duyckd3d00232011-07-15 02:31:25 +00006092 /* set the timestamp */
6093 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006094
6095 /*
Alexander Duyck729739b2012-02-08 07:51:06 +00006096 * Force memory writes to complete before letting h/w know there
6097 * are new descriptors to fetch. (Only applicable for weak-ordered
6098 * memory model archs, such as IA-64).
6099 *
6100 * We also need this memory barrier to make certain all of the
6101 * status bits have been updated before next_to_watch is written.
Auke Kok9a799d72007-09-15 14:07:45 -07006102 */
6103 wmb();
6104
Alexander Duyckd3d00232011-07-15 02:31:25 +00006105 /* set next_to_watch value indicating a packet is present */
6106 first->next_to_watch = tx_desc;
6107
Alexander Duyck729739b2012-02-08 07:51:06 +00006108 i++;
6109 if (i == tx_ring->count)
6110 i = 0;
6111
6112 tx_ring->next_to_use = i;
6113
Alexander Duyckd3d00232011-07-15 02:31:25 +00006114 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006115 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006116
6117 return;
6118dma_error:
Alexander Duyck729739b2012-02-08 07:51:06 +00006119 dev_err(tx_ring->dev, "TX DMA map failed\n");
Alexander Duyckd3d00232011-07-15 02:31:25 +00006120
6121 /* clear dma mappings for failed tx_buffer_info map */
6122 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006123 tx_buffer = &tx_ring->tx_buffer_info[i];
6124 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
6125 if (tx_buffer == first)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006126 break;
6127 if (i == 0)
6128 i = tx_ring->count;
6129 i--;
6130 }
6131
Alexander Duyckd3d00232011-07-15 02:31:25 +00006132 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006133}
6134
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006135static void ixgbe_atr(struct ixgbe_ring *ring,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006136 struct ixgbe_tx_buffer *first)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006137{
Alexander Duyck69830522011-01-06 14:29:58 +00006138 struct ixgbe_q_vector *q_vector = ring->q_vector;
6139 union ixgbe_atr_hash_dword input = { .dword = 0 };
6140 union ixgbe_atr_hash_dword common = { .dword = 0 };
6141 union {
6142 unsigned char *network;
6143 struct iphdr *ipv4;
6144 struct ipv6hdr *ipv6;
6145 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006146 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006147 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006148
Alexander Duyck69830522011-01-06 14:29:58 +00006149 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6150 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006151 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006152
Alexander Duyck69830522011-01-06 14:29:58 +00006153 /* do nothing if sampling is disabled */
6154 if (!ring->atr_sample_rate)
6155 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006156
Alexander Duyck69830522011-01-06 14:29:58 +00006157 ring->atr_count++;
6158
6159 /* snag network header to get L4 type and address */
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006160 hdr.network = skb_network_header(first->skb);
Alexander Duyck69830522011-01-06 14:29:58 +00006161
6162 /* Currently only IPv4/IPv6 with TCP is supported */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006163 if ((first->protocol != __constant_htons(ETH_P_IPV6) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006164 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
Alexander Duyck244e27a2012-02-08 07:51:11 +00006165 (first->protocol != __constant_htons(ETH_P_IP) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006166 hdr.ipv4->protocol != IPPROTO_TCP))
6167 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006168
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006169 th = tcp_hdr(first->skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006170
Alexander Duyck66f32a82011-06-29 05:43:22 +00006171 /* skip this packet since it is invalid or the socket is closing */
6172 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006173 return;
6174
6175 /* sample on all syn packets or once every atr sample count */
6176 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6177 return;
6178
6179 /* reset sample count */
6180 ring->atr_count = 0;
6181
Alexander Duyck244e27a2012-02-08 07:51:11 +00006182 vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
Alexander Duyck69830522011-01-06 14:29:58 +00006183
6184 /*
6185 * src and dst are inverted, think how the receiver sees them
6186 *
6187 * The input is broken into two sections, a non-compressed section
6188 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6189 * is XORed together and stored in the compressed dword.
6190 */
6191 input.formatted.vlan_id = vlan_id;
6192
6193 /*
6194 * since src port and flex bytes occupy the same word XOR them together
6195 * and write the value to source port portion of compressed dword
6196 */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006197 if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006198 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6199 else
Alexander Duyck244e27a2012-02-08 07:51:11 +00006200 common.port.src ^= th->dest ^ first->protocol;
Alexander Duyck69830522011-01-06 14:29:58 +00006201 common.port.dst ^= th->source;
6202
Alexander Duyck244e27a2012-02-08 07:51:11 +00006203 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck69830522011-01-06 14:29:58 +00006204 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6205 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6206 } else {
6207 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6208 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6209 hdr.ipv6->saddr.s6_addr32[1] ^
6210 hdr.ipv6->saddr.s6_addr32[2] ^
6211 hdr.ipv6->saddr.s6_addr32[3] ^
6212 hdr.ipv6->daddr.s6_addr32[0] ^
6213 hdr.ipv6->daddr.s6_addr32[1] ^
6214 hdr.ipv6->daddr.s6_addr32[2] ^
6215 hdr.ipv6->daddr.s6_addr32[3];
6216 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006217
6218 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006219 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6220 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006221}
6222
Alexander Duyck63544e92011-05-27 05:31:42 +00006223static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006224{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006225 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006226 /* Herbert's original patch had:
6227 * smp_mb__after_netif_stop_queue();
6228 * but since that doesn't exist yet, just open code it. */
6229 smp_mb();
6230
6231 /* We need to check again in a case another CPU has just
6232 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006233 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006234 return -EBUSY;
6235
6236 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006237 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006238 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006239 return 0;
6240}
6241
Alexander Duyck82d4e462011-06-11 01:44:58 +00006242static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006243{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006244 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006245 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006246 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006247}
6248
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006249static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6250{
6251 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006252 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6253 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006254#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006255 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006256
John Fastabende5b64632011-03-08 03:44:52 +00006257 if (((protocol == htons(ETH_P_FCOE)) ||
6258 (protocol == htons(ETH_P_FIP))) &&
6259 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyckc0876632012-05-10 00:01:46 +00006260 struct ixgbe_ring_feature *f;
6261
6262 f = &adapter->ring_feature[RING_F_FCOE];
6263
6264 while (txq >= f->indices)
6265 txq -= f->indices;
Alexander Duycke4b317e2012-05-05 05:30:53 +00006266 txq += adapter->ring_feature[RING_F_FCOE].offset;
Alexander Duyckc0876632012-05-10 00:01:46 +00006267
John Fastabende5b64632011-03-08 03:44:52 +00006268 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006269 }
6270#endif
6271
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006272 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6273 while (unlikely(txq >= dev->real_num_tx_queues))
6274 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006275 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006276 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006277
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006278 return skb_tx_hash(dev, skb);
6279}
6280
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006281netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006282 struct ixgbe_adapter *adapter,
6283 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006284{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006285 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006286 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006287 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006288#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6289 unsigned short f;
6290#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006291 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006292 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006293 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006294
Alexander Duycka535c302011-05-27 05:31:52 +00006295 /*
6296 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00006297 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00006298 * + 2 desc gap to keep tail from touching head,
6299 * + 1 desc for context descriptor,
6300 * otherwise try next time
6301 */
6302#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6303 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6304 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6305#else
6306 count += skb_shinfo(skb)->nr_frags;
6307#endif
6308 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6309 tx_ring->tx_stats.tx_busy++;
6310 return NETDEV_TX_BUSY;
6311 }
6312
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006313 /* record the location of the first descriptor for this packet */
6314 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
6315 first->skb = skb;
Alexander Duyck091a6242012-02-08 07:51:01 +00006316 first->bytecount = skb->len;
6317 first->gso_segs = 1;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006318
Alexander Duyck66f32a82011-06-29 05:43:22 +00006319 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00006320 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006321 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6322 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6323 /* else if it is a SW VLAN check the next protocol and store the tag */
6324 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
6325 struct vlan_hdr *vhdr, _vhdr;
6326 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
6327 if (!vhdr)
6328 goto out_drop;
6329
6330 protocol = vhdr->h_vlan_encapsulated_proto;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006331 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
6332 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006333 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006334 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006335
Jacob Kelleraa7bd462012-05-04 01:55:23 +00006336 skb_tx_timestamp(skb);
6337
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006338#ifdef CONFIG_IXGBE_PTP
6339 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
6340 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
6341 tx_flags |= IXGBE_TX_FLAGS_TSTAMP;
6342 }
6343#endif
6344
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006345#ifdef CONFIG_PCI_IOV
6346 /*
6347 * Use the l2switch_enable flag - would be false if the DMA
6348 * Tx switch had been disabled.
6349 */
6350 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6351 tx_flags |= IXGBE_TX_FLAGS_TXSW;
6352
6353#endif
John Fastabend32701dc2011-09-27 03:51:56 +00006354 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006355 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00006356 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
6357 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006358 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00006359 tx_flags |= (skb->priority & 0x7) <<
6360 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006361 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
6362 struct vlan_ethhdr *vhdr;
6363 if (skb_header_cloned(skb) &&
6364 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6365 goto out_drop;
6366 vhdr = (struct vlan_ethhdr *)skb->data;
6367 vhdr->h_vlan_TCI = htons(tx_flags >>
6368 IXGBE_TX_FLAGS_VLAN_SHIFT);
6369 } else {
6370 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6371 }
6372 }
Alexander Duycka535c302011-05-27 05:31:52 +00006373
Alexander Duyck244e27a2012-02-08 07:51:11 +00006374 /* record initial flags and protocol */
6375 first->tx_flags = tx_flags;
6376 first->protocol = protocol;
6377
Yi Zoueacd73f2009-05-13 13:11:06 +00006378#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00006379 /* setup tx offload for FCoE */
6380 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
6381 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00006382 tso = ixgbe_fso(tx_ring, first, &hdr_len);
Alexander Duyck897ab152011-05-27 05:31:47 +00006383 if (tso < 0)
6384 goto out_drop;
Auke Kok9a799d72007-09-15 14:07:45 -07006385
Alexander Duyck66f32a82011-06-29 05:43:22 +00006386 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006387 }
Auke Kok9a799d72007-09-15 14:07:45 -07006388
Auke Kok9a799d72007-09-15 14:07:45 -07006389#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006390 tso = ixgbe_tso(tx_ring, first, &hdr_len);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006391 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07006392 goto out_drop;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006393 else if (!tso)
6394 ixgbe_tx_csum(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006395
6396 /* add the ATR filter if ATR is on */
6397 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
Alexander Duyck244e27a2012-02-08 07:51:11 +00006398 ixgbe_atr(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006399
6400#ifdef IXGBE_FCOE
6401xmit_fcoe:
6402#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006403 ixgbe_tx_map(tx_ring, first, hdr_len);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006404
6405 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006406
6407 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006408
6409out_drop:
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006410 dev_kfree_skb_any(first->skb);
6411 first->skb = NULL;
6412
Alexander Duyck897ab152011-05-27 05:31:47 +00006413 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07006414}
6415
Alexander Duycka50c29d2012-02-08 07:50:40 +00006416static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
6417 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07006418{
6419 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006420 struct ixgbe_ring *tx_ring;
Auke Kok9a799d72007-09-15 14:07:45 -07006421
Alexander Duycka50c29d2012-02-08 07:50:40 +00006422 /*
6423 * The minimum packet size for olinfo paylen is 17 so pad the skb
6424 * in order to meet this minimum size requirement.
6425 */
Stephen Hemmingerf73332f2012-06-21 02:15:10 +00006426 if (unlikely(skb->len < 17)) {
6427 if (skb_pad(skb, 17 - skb->len))
Alexander Duycka50c29d2012-02-08 07:50:40 +00006428 return NETDEV_TX_OK;
6429 skb->len = 17;
6430 }
6431
Auke Kok9a799d72007-09-15 14:07:45 -07006432 tx_ring = adapter->tx_ring[skb->queue_mapping];
6433 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
6434}
6435
6436/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006437 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Auke Kok9a799d72007-09-15 14:07:45 -07006438 * @netdev: network interface device structure
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006439 * @p: pointer to an address structure
6440 *
Auke Kok9a799d72007-09-15 14:07:45 -07006441 * Returns 0 on success, negative on failure
6442 **/
6443static int ixgbe_set_mac(struct net_device *netdev, void *p)
6444{
Ben Hutchings6b73e102009-04-29 08:08:58 +00006445 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6446 struct ixgbe_hw *hw = &adapter->hw;
6447 struct sockaddr *addr = p;
6448
6449 if (!is_valid_ether_addr(addr->sa_data))
6450 return -EADDRNOTAVAIL;
6451
6452 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
6453 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
6454
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00006455 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07006456
6457 return 0;
6458}
6459
Ben Hutchings6b73e102009-04-29 08:08:58 +00006460static int
6461ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6462{
6463 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6464 struct ixgbe_hw *hw = &adapter->hw;
6465 u16 value;
6466 int rc;
6467
6468 if (prtad != hw->phy.mdio.prtad)
6469 return -EINVAL;
6470 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6471 if (!rc)
6472 rc = value;
6473 return rc;
6474}
6475
6476static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6477 u16 addr, u16 value)
6478{
6479 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6480 struct ixgbe_hw *hw = &adapter->hw;
6481
6482 if (prtad != hw->phy.mdio.prtad)
6483 return -EINVAL;
6484 return hw->phy.ops.write_reg(hw, addr, devad, value);
6485}
6486
6487static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6488{
6489 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6490
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006491 switch (cmd) {
6492#ifdef CONFIG_IXGBE_PTP
6493 case SIOCSHWTSTAMP:
6494 return ixgbe_ptp_hwtstamp_ioctl(adapter, req, cmd);
6495#endif
6496 default:
6497 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6498 }
Ben Hutchings6b73e102009-04-29 08:08:58 +00006499}
6500
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006501/**
6502 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006503 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006504 * @netdev: network interface device structure
6505 *
6506 * Returns non-zero on failure
6507 **/
6508static int ixgbe_add_sanmac_netdev(struct net_device *dev)
6509{
6510 int err = 0;
6511 struct ixgbe_adapter *adapter = netdev_priv(dev);
6512 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6513
6514 if (is_valid_ether_addr(mac->san_addr)) {
6515 rtnl_lock();
6516 err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6517 rtnl_unlock();
6518 }
6519 return err;
6520}
6521
6522/**
6523 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006524 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006525 * @netdev: network interface device structure
6526 *
6527 * Returns non-zero on failure
6528 **/
6529static int ixgbe_del_sanmac_netdev(struct net_device *dev)
6530{
6531 int err = 0;
6532 struct ixgbe_adapter *adapter = netdev_priv(dev);
6533 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6534
6535 if (is_valid_ether_addr(mac->san_addr)) {
6536 rtnl_lock();
6537 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6538 rtnl_unlock();
6539 }
6540 return err;
6541}
6542
Auke Kok9a799d72007-09-15 14:07:45 -07006543#ifdef CONFIG_NET_POLL_CONTROLLER
6544/*
6545 * Polling 'interrupt' - used by things like netconsole to send skbs
6546 * without having to re-enable interrupts. It's not called while
6547 * the interrupt routine is executing.
6548 */
6549static void ixgbe_netpoll(struct net_device *netdev)
6550{
6551 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006552 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07006553
Alexander Duyck1a647bd2010-01-13 01:49:13 +00006554 /* if interface is down do nothing */
6555 if (test_bit(__IXGBE_DOWN, &adapter->state))
6556 return;
6557
Auke Kok9a799d72007-09-15 14:07:45 -07006558 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006559 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00006560 for (i = 0; i < adapter->num_q_vectors; i++)
6561 ixgbe_msix_clean_rings(0, adapter->q_vector[i]);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006562 } else {
6563 ixgbe_intr(adapter->pdev->irq, netdev);
6564 }
Auke Kok9a799d72007-09-15 14:07:45 -07006565 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07006566}
Auke Kok9a799d72007-09-15 14:07:45 -07006567
Alexander Duyck581330b2012-02-08 07:51:47 +00006568#endif
Eric Dumazetde1036b2010-10-20 23:00:04 +00006569static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
6570 struct rtnl_link_stats64 *stats)
6571{
6572 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6573 int i;
6574
Eric Dumazet1a515022010-11-16 19:26:42 -08006575 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006576 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08006577 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00006578 u64 bytes, packets;
6579 unsigned int start;
6580
Eric Dumazet1a515022010-11-16 19:26:42 -08006581 if (ring) {
6582 do {
6583 start = u64_stats_fetch_begin_bh(&ring->syncp);
6584 packets = ring->stats.packets;
6585 bytes = ring->stats.bytes;
6586 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6587 stats->rx_packets += packets;
6588 stats->rx_bytes += bytes;
6589 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00006590 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00006591
6592 for (i = 0; i < adapter->num_tx_queues; i++) {
6593 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
6594 u64 bytes, packets;
6595 unsigned int start;
6596
6597 if (ring) {
6598 do {
6599 start = u64_stats_fetch_begin_bh(&ring->syncp);
6600 packets = ring->stats.packets;
6601 bytes = ring->stats.bytes;
6602 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6603 stats->tx_packets += packets;
6604 stats->tx_bytes += bytes;
6605 }
6606 }
Eric Dumazet1a515022010-11-16 19:26:42 -08006607 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006608 /* following stats updated by ixgbe_watchdog_task() */
6609 stats->multicast = netdev->stats.multicast;
6610 stats->rx_errors = netdev->stats.rx_errors;
6611 stats->rx_length_errors = netdev->stats.rx_length_errors;
6612 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
6613 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
6614 return stats;
6615}
6616
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006617#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006618/**
6619 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
6620 * @adapter: pointer to ixgbe_adapter
John Fastabend8b1c0b22011-05-03 02:26:48 +00006621 * @tc: number of traffic classes currently enabled
6622 *
6623 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
6624 * 802.1Q priority maps to a packet buffer that exists.
6625 */
6626static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
6627{
6628 struct ixgbe_hw *hw = &adapter->hw;
6629 u32 reg, rsave;
6630 int i;
6631
6632 /* 82598 have a static priority to TC mapping that can not
6633 * be changed so no validation is needed.
6634 */
6635 if (hw->mac.type == ixgbe_mac_82598EB)
6636 return;
6637
6638 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
6639 rsave = reg;
6640
6641 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
6642 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
6643
6644 /* If up2tc is out of bounds default to zero */
6645 if (up2tc > tc)
6646 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
6647 }
6648
6649 if (reg != rsave)
6650 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
6651
6652 return;
6653}
6654
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006655/**
Alexander Duyck02debdc2012-05-18 06:33:31 +00006656 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
6657 * @adapter: Pointer to adapter struct
6658 *
6659 * Populate the netdev user priority to tc map
6660 */
6661static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter)
6662{
6663 struct net_device *dev = adapter->netdev;
6664 struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg;
6665 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
6666 u8 prio;
6667
6668 for (prio = 0; prio < MAX_USER_PRIORITY; prio++) {
6669 u8 tc = 0;
6670
6671 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE)
6672 tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio);
6673 else if (ets)
6674 tc = ets->prio_tc[prio];
6675
6676 netdev_set_prio_tc_map(dev, prio, tc);
6677 }
6678}
6679
6680/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006681 * ixgbe_setup_tc - configure net_device for multiple traffic classes
John Fastabend8b1c0b22011-05-03 02:26:48 +00006682 *
6683 * @netdev: net device to configure
6684 * @tc: number of traffic classes to enable
6685 */
6686int ixgbe_setup_tc(struct net_device *dev, u8 tc)
6687{
John Fastabend8b1c0b22011-05-03 02:26:48 +00006688 struct ixgbe_adapter *adapter = netdev_priv(dev);
6689 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00006690
John Fastabende7589ea2011-07-18 22:38:36 +00006691 /* Multiple traffic classes requires multiple queues */
6692 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
6693 e_err(drv, "Enable failed, needs MSI-X\n");
6694 return -EINVAL;
6695 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00006696
6697 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00006698 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
Alexander Duyck581330b2012-02-08 07:51:47 +00006699 (hw->mac.type == ixgbe_mac_82598EB &&
6700 tc < MAX_TRAFFIC_CLASS))
John Fastabend8b1c0b22011-05-03 02:26:48 +00006701 return -EINVAL;
6702
6703 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006704 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00006705 * hardware is not flexible enough to do this dynamically.
6706 */
6707 if (netif_running(dev))
6708 ixgbe_close(dev);
6709 ixgbe_clear_interrupt_scheme(adapter);
6710
John Fastabende7589ea2011-07-18 22:38:36 +00006711 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006712 netdev_set_num_tc(dev, tc);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006713 ixgbe_set_prio_tc_map(adapter);
6714
John Fastabende7589ea2011-07-18 22:38:36 +00006715 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
6716 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
6717
Alexander Duyck943561d2012-05-09 22:14:44 -07006718 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
6719 adapter->last_lfc_mode = adapter->hw.fc.requested_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006720 adapter->hw.fc.requested_mode = ixgbe_fc_none;
Alexander Duyck943561d2012-05-09 22:14:44 -07006721 }
John Fastabende7589ea2011-07-18 22:38:36 +00006722 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006723 netdev_reset_tc(dev);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006724
Alexander Duyck943561d2012-05-09 22:14:44 -07006725 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6726 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006727
6728 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
6729 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
6730
6731 adapter->temp_dcb_cfg.pfc_mode_enable = false;
6732 adapter->dcb_cfg.pfc_mode_enable = false;
6733 }
6734
John Fastabend8b1c0b22011-05-03 02:26:48 +00006735 ixgbe_init_interrupt_scheme(adapter);
6736 ixgbe_validate_rtr(adapter, tc);
6737 if (netif_running(dev))
6738 ixgbe_open(dev);
6739
6740 return 0;
6741}
Eric Dumazetde1036b2010-10-20 23:00:04 +00006742
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006743#endif /* CONFIG_IXGBE_DCB */
Don Skidmore082757a2011-07-21 05:55:00 +00006744void ixgbe_do_reset(struct net_device *netdev)
6745{
6746 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6747
6748 if (netif_running(netdev))
6749 ixgbe_reinit_locked(adapter);
6750 else
6751 ixgbe_reset(adapter);
6752}
6753
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006754static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006755 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006756{
6757 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6758
Don Skidmore082757a2011-07-21 05:55:00 +00006759 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006760 if (!(features & NETIF_F_RXCSUM))
6761 features &= ~NETIF_F_LRO;
Don Skidmore082757a2011-07-21 05:55:00 +00006762
Alexander Duyck567d2de2012-02-11 07:18:57 +00006763 /* Turn off LRO if not RSC capable */
6764 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
6765 features &= ~NETIF_F_LRO;
Jacob Keller8e2813f2012-04-21 06:05:40 +00006766
Alexander Duyck567d2de2012-02-11 07:18:57 +00006767 return features;
Don Skidmore082757a2011-07-21 05:55:00 +00006768}
6769
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006770static int ixgbe_set_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006771 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006772{
6773 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck567d2de2012-02-11 07:18:57 +00006774 netdev_features_t changed = netdev->features ^ features;
Don Skidmore082757a2011-07-21 05:55:00 +00006775 bool need_reset = false;
6776
Don Skidmore082757a2011-07-21 05:55:00 +00006777 /* Make sure RSC matches LRO, reset if change */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006778 if (!(features & NETIF_F_LRO)) {
6779 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Don Skidmore082757a2011-07-21 05:55:00 +00006780 need_reset = true;
Alexander Duyck567d2de2012-02-11 07:18:57 +00006781 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
6782 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
6783 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
6784 if (adapter->rx_itr_setting == 1 ||
6785 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
6786 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
6787 need_reset = true;
6788 } else if ((changed ^ features) & NETIF_F_LRO) {
6789 e_info(probe, "rx-usecs set too low, "
6790 "disabling RSC\n");
Don Skidmore082757a2011-07-21 05:55:00 +00006791 }
6792 }
6793
6794 /*
6795 * Check if Flow Director n-tuple support was enabled or disabled. If
6796 * the state changed, we need to reset.
6797 */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006798 if (!(features & NETIF_F_NTUPLE)) {
6799 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
6800 /* turn off Flow Director, set ATR and reset */
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00006801 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
Alexander Duyck567d2de2012-02-11 07:18:57 +00006802 !(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
6803 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
Don Skidmore082757a2011-07-21 05:55:00 +00006804 need_reset = true;
6805 }
Don Skidmore082757a2011-07-21 05:55:00 +00006806 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
Alexander Duyck567d2de2012-02-11 07:18:57 +00006807 } else if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
6808 /* turn off ATR, enable perfect filters and reset */
6809 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
6810 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
Don Skidmore082757a2011-07-21 05:55:00 +00006811 need_reset = true;
6812 }
6813
John Fastabend146d4cc2012-05-15 05:59:26 +00006814 if (features & NETIF_F_HW_VLAN_RX)
6815 ixgbe_vlan_strip_enable(adapter);
6816 else
6817 ixgbe_vlan_strip_disable(adapter);
6818
Ben Greear3f2d1c02012-03-08 08:28:41 +00006819 if (changed & NETIF_F_RXALL)
6820 need_reset = true;
6821
Alexander Duyck567d2de2012-02-11 07:18:57 +00006822 netdev->features = features;
Don Skidmore082757a2011-07-21 05:55:00 +00006823 if (need_reset)
6824 ixgbe_do_reset(netdev);
6825
6826 return 0;
Don Skidmore082757a2011-07-21 05:55:00 +00006827}
6828
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006829static int ixgbe_ndo_fdb_add(struct ndmsg *ndm,
6830 struct net_device *dev,
6831 unsigned char *addr,
6832 u16 flags)
6833{
6834 struct ixgbe_adapter *adapter = netdev_priv(dev);
6835 int err = -EOPNOTSUPP;
6836
6837 if (ndm->ndm_state & NUD_PERMANENT) {
6838 pr_info("%s: FDB only supports static addresses\n",
6839 ixgbe_driver_name);
6840 return -EINVAL;
6841 }
6842
6843 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
6844 if (is_unicast_ether_addr(addr))
6845 err = dev_uc_add_excl(dev, addr);
6846 else if (is_multicast_ether_addr(addr))
6847 err = dev_mc_add_excl(dev, addr);
6848 else
6849 err = -EINVAL;
6850 }
6851
6852 /* Only return duplicate errors if NLM_F_EXCL is set */
6853 if (err == -EEXIST && !(flags & NLM_F_EXCL))
6854 err = 0;
6855
6856 return err;
6857}
6858
6859static int ixgbe_ndo_fdb_del(struct ndmsg *ndm,
6860 struct net_device *dev,
6861 unsigned char *addr)
6862{
6863 struct ixgbe_adapter *adapter = netdev_priv(dev);
6864 int err = -EOPNOTSUPP;
6865
6866 if (ndm->ndm_state & NUD_PERMANENT) {
6867 pr_info("%s: FDB only supports static addresses\n",
6868 ixgbe_driver_name);
6869 return -EINVAL;
6870 }
6871
6872 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
6873 if (is_unicast_ether_addr(addr))
6874 err = dev_uc_del(dev, addr);
6875 else if (is_multicast_ether_addr(addr))
6876 err = dev_mc_del(dev, addr);
6877 else
6878 err = -EINVAL;
6879 }
6880
6881 return err;
6882}
6883
6884static int ixgbe_ndo_fdb_dump(struct sk_buff *skb,
6885 struct netlink_callback *cb,
6886 struct net_device *dev,
6887 int idx)
6888{
6889 struct ixgbe_adapter *adapter = netdev_priv(dev);
6890
6891 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6892 idx = ndo_dflt_fdb_dump(skb, cb, dev, idx);
6893
6894 return idx;
6895}
6896
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006897static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00006898 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006899 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08006900 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006901 .ndo_select_queue = ixgbe_select_queue,
Alexander Duyck581330b2012-02-08 07:51:47 +00006902 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006903 .ndo_validate_addr = eth_validate_addr,
6904 .ndo_set_mac_address = ixgbe_set_mac,
6905 .ndo_change_mtu = ixgbe_change_mtu,
6906 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006907 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
6908 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00006909 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00006910 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
6911 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
6912 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Alexander Duyck581330b2012-02-08 07:51:47 +00006913 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00006914 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00006915 .ndo_get_stats64 = ixgbe_get_stats64,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006916#ifdef CONFIG_IXGBE_DCB
John Fastabend24095aa2011-02-23 05:58:03 +00006917 .ndo_setup_tc = ixgbe_setup_tc,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006918#endif
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006919#ifdef CONFIG_NET_POLL_CONTROLLER
6920 .ndo_poll_controller = ixgbe_netpoll,
6921#endif
Yi Zou332d4a72009-05-13 13:11:53 +00006922#ifdef IXGBE_FCOE
6923 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00006924 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00006925 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00006926 .ndo_fcoe_enable = ixgbe_fcoe_enable,
6927 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00006928 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00006929 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00006930#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00006931 .ndo_set_features = ixgbe_set_features,
6932 .ndo_fix_features = ixgbe_fix_features,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006933 .ndo_fdb_add = ixgbe_ndo_fdb_add,
6934 .ndo_fdb_del = ixgbe_ndo_fdb_del,
6935 .ndo_fdb_dump = ixgbe_ndo_fdb_dump,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006936};
6937
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006938static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006939 const struct ixgbe_info *ii)
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006940{
6941#ifdef CONFIG_PCI_IOV
6942 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006943
Greg Rosec6bda302011-08-24 02:37:55 +00006944 if (hw->mac.type == ixgbe_mac_82598EB)
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006945 return;
6946
6947 /* The 82599 supports up to 64 VFs per physical function
6948 * but this implementation limits allocation to 63 so that
6949 * basic networking resources are still available to the
Greg Rose6b42a9c2012-04-17 04:29:29 +00006950 * physical function. If the user requests greater thn
6951 * 63 VFs then it is an error - reset to default of zero.
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006952 */
Greg Rose6b42a9c2012-04-17 04:29:29 +00006953 adapter->num_vfs = (max_vfs > 63) ? 0 : max_vfs;
Greg Rosec6bda302011-08-24 02:37:55 +00006954 ixgbe_enable_sriov(adapter, ii);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006955#endif /* CONFIG_PCI_IOV */
6956}
6957
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006958/**
Jacob Keller8e2813f2012-04-21 06:05:40 +00006959 * ixgbe_wol_supported - Check whether device supports WoL
6960 * @hw: hw specific details
6961 * @device_id: the device ID
6962 * @subdev_id: the subsystem device ID
6963 *
6964 * This function is used by probe and ethtool to determine
6965 * which devices have WoL support
6966 *
6967 **/
6968int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
6969 u16 subdevice_id)
6970{
6971 struct ixgbe_hw *hw = &adapter->hw;
6972 u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
6973 int is_wol_supported = 0;
6974
6975 switch (device_id) {
6976 case IXGBE_DEV_ID_82599_SFP:
6977 /* Only these subdevices could supports WOL */
6978 switch (subdevice_id) {
6979 case IXGBE_SUBDEV_ID_82599_560FLR:
6980 /* only support first port */
6981 if (hw->bus.func != 0)
6982 break;
6983 case IXGBE_SUBDEV_ID_82599_SFP:
6984 is_wol_supported = 1;
6985 break;
6986 }
6987 break;
6988 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
6989 /* All except this subdevice support WOL */
6990 if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
6991 is_wol_supported = 1;
6992 break;
6993 case IXGBE_DEV_ID_82599_KX4:
6994 is_wol_supported = 1;
6995 break;
6996 case IXGBE_DEV_ID_X540T:
6997 /* check eeprom to see if enabled wol */
6998 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
6999 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7000 (hw->bus.func == 0))) {
7001 is_wol_supported = 1;
7002 }
7003 break;
7004 }
7005
7006 return is_wol_supported;
7007}
7008
7009/**
Auke Kok9a799d72007-09-15 14:07:45 -07007010 * ixgbe_probe - Device Initialization Routine
7011 * @pdev: PCI device information struct
7012 * @ent: entry in ixgbe_pci_tbl
7013 *
7014 * Returns 0 on success, negative on failure
7015 *
7016 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7017 * The OS initialization, configuring of the adapter private structure,
7018 * and a hardware reset occur.
7019 **/
7020static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007021 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007022{
7023 struct net_device *netdev;
7024 struct ixgbe_adapter *adapter = NULL;
7025 struct ixgbe_hw *hw;
7026 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007027 static int cards_found;
7028 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00007029 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007030 unsigned int indices = num_possible_cpus();
Yi Zoueacd73f2009-05-13 13:11:06 +00007031#ifdef IXGBE_FCOE
7032 u16 device_caps;
7033#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007034 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07007035
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007036 /* Catch broken hardware that put the wrong VF device ID in
7037 * the PCIe SR-IOV capability.
7038 */
7039 if (pdev->is_virtfn) {
7040 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7041 pci_name(pdev), pdev->vendor, pdev->device);
7042 return -EINVAL;
7043 }
7044
gouji-new9ce77662009-05-06 10:44:45 +00007045 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007046 if (err)
7047 return err;
7048
Nick Nunley1b507732010-04-27 13:10:27 +00007049 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7050 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007051 pci_using_dac = 1;
7052 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007053 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007054 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007055 err = dma_set_coherent_mask(&pdev->dev,
7056 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007057 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007058 dev_err(&pdev->dev,
7059 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007060 goto err_dma;
7061 }
7062 }
7063 pci_using_dac = 0;
7064 }
7065
gouji-new9ce77662009-05-06 10:44:45 +00007066 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007067 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007068 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007069 dev_err(&pdev->dev,
7070 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007071 goto err_pci_reg;
7072 }
7073
Frans Pop19d5afd2009-10-02 10:04:12 -07007074 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007075
Auke Kok9a799d72007-09-15 14:07:45 -07007076 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007077 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007078
John Fastabende901acd2011-04-26 07:26:08 +00007079#ifdef CONFIG_IXGBE_DCB
7080 indices *= MAX_TRAFFIC_CLASS;
7081#endif
7082
John Fastabendc85a2612010-02-25 23:15:21 +00007083 if (ii->mac == ixgbe_mac_82598EB)
Alexander Duyckd411a932012-06-30 00:14:01 +00007084#ifdef CONFIG_IXGBE_DCB
7085 indices = min_t(unsigned int, indices, MAX_TRAFFIC_CLASS * 4);
7086#else
John Fastabendc85a2612010-02-25 23:15:21 +00007087 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
Alexander Duyckd411a932012-06-30 00:14:01 +00007088#endif
John Fastabendc85a2612010-02-25 23:15:21 +00007089 else
7090 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7091
John Fastabende901acd2011-04-26 07:26:08 +00007092#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007093 indices += min_t(unsigned int, num_possible_cpus(),
7094 IXGBE_MAX_FCOE_INDICES);
7095#endif
John Fastabendc85a2612010-02-25 23:15:21 +00007096 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007097 if (!netdev) {
7098 err = -ENOMEM;
7099 goto err_alloc_etherdev;
7100 }
7101
Auke Kok9a799d72007-09-15 14:07:45 -07007102 SET_NETDEV_DEV(netdev, &pdev->dev);
7103
Auke Kok9a799d72007-09-15 14:07:45 -07007104 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007105 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007106
7107 adapter->netdev = netdev;
7108 adapter->pdev = pdev;
7109 hw = &adapter->hw;
7110 hw->back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00007111 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kok9a799d72007-09-15 14:07:45 -07007112
Jeff Kirsher05857982008-09-11 19:57:00 -07007113 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007114 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007115 if (!hw->hw_addr) {
7116 err = -EIO;
7117 goto err_ioremap;
7118 }
7119
7120 for (i = 1; i <= 5; i++) {
7121 if (pci_resource_len(pdev, i) == 0)
7122 continue;
7123 }
7124
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007125 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007126 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007127 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007128 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007129
Auke Kok9a799d72007-09-15 14:07:45 -07007130 adapter->bd_number = cards_found;
7131
Auke Kok9a799d72007-09-15 14:07:45 -07007132 /* Setup hw api */
7133 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007134 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007135
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007136 /* EEPROM */
7137 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7138 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7139 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7140 if (!(eec & (1 << 8)))
7141 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7142
7143 /* PHY */
7144 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007145 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007146 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7147 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7148 hw->phy.mdio.mmds = 0;
7149 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7150 hw->phy.mdio.dev = netdev;
7151 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7152 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007153
Don Skidmore8ca783a2009-05-26 20:40:47 -07007154 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007155
7156 /* setup the private structure */
7157 err = ixgbe_sw_init(adapter);
7158 if (err)
7159 goto err_sw_init;
7160
Don Skidmoree86bff02010-02-11 04:14:08 +00007161 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007162 switch (adapter->hw.mac.type) {
7163 case ixgbe_mac_82599EB:
7164 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007165 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007166 break;
7167 default:
7168 break;
7169 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007170
Don Skidmorebf069c92009-05-07 10:39:54 +00007171 /*
7172 * If there is a fan on this device and it has failed log the
7173 * failure.
7174 */
7175 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7176 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7177 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007178 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007179 }
7180
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00007181 if (allow_unsupported_sfp)
7182 hw->allow_unsupported_sfp = allow_unsupported_sfp;
7183
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007184 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007185 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007186 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007187 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007188 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7189 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007190 err = 0;
7191 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007192 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007193 "module type was detected.\n");
7194 e_dev_err("Reload the driver after installing a supported "
7195 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007196 goto err_sw_init;
7197 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007198 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007199 goto err_sw_init;
7200 }
7201
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007202 ixgbe_probe_vf(adapter, ii);
7203
Emil Tantilov396e7992010-07-01 20:05:12 +00007204 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007205 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00007206 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00007207 NETIF_F_HW_VLAN_TX |
7208 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00007209 NETIF_F_HW_VLAN_FILTER |
7210 NETIF_F_TSO |
7211 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00007212 NETIF_F_RXHASH |
7213 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007214
Don Skidmore082757a2011-07-21 05:55:00 +00007215 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007216
Don Skidmore58be7662011-04-12 09:42:11 +00007217 switch (adapter->hw.mac.type) {
7218 case ixgbe_mac_82599EB:
7219 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007220 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00007221 netdev->hw_features |= NETIF_F_SCTP_CSUM |
7222 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00007223 break;
7224 default:
7225 break;
7226 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007227
Ben Greear3f2d1c02012-03-08 08:28:41 +00007228 netdev->hw_features |= NETIF_F_RXALL;
7229
Jeff Kirsherad31c402008-06-05 04:05:30 -07007230 netdev->vlan_features |= NETIF_F_TSO;
7231 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007232 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007233 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007234 netdev->vlan_features |= NETIF_F_SG;
7235
Jiri Pirko01789342011-08-16 06:29:00 +00007236 netdev->priv_flags |= IFF_UNICAST_FLT;
Ben Greearf43f3132012-03-06 09:42:04 +00007237 netdev->priv_flags |= IFF_SUPP_NOFCS;
Jiri Pirko01789342011-08-16 06:29:00 +00007238
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007239#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007240 netdev->dcbnl_ops = &dcbnl_ops;
7241#endif
7242
Yi Zoueacd73f2009-05-13 13:11:06 +00007243#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007244 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007245 if (hw->mac.ops.get_device_caps) {
7246 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007247 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7248 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007249 }
Alexander Duyck7c8ae652012-05-05 05:32:47 +00007250
7251 adapter->ring_feature[RING_F_FCOE].limit = IXGBE_FCRETA_SIZE;
7252
7253 netdev->vlan_features |= NETIF_F_FSO |
7254 NETIF_F_FCOE_CRC |
7255 NETIF_F_FCOE_MTU;
Yi Zou5e09d7f2010-07-19 13:59:52 +00007256 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007257#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007258 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007259 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007260 netdev->vlan_features |= NETIF_F_HIGHDMA;
7261 }
Auke Kok9a799d72007-09-15 14:07:45 -07007262
Don Skidmore082757a2011-07-21 05:55:00 +00007263 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
7264 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007265 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007266 netdev->features |= NETIF_F_LRO;
7267
Auke Kok9a799d72007-09-15 14:07:45 -07007268 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007269 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007270 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007271 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007272 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007273 }
7274
7275 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7276 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7277
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007278 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007279 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007280 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007281 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007282 }
7283
Alexander Duyck70864002011-04-27 09:13:56 +00007284 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
Alexander Duyck581330b2012-02-08 07:51:47 +00007285 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007286
Alexander Duyck70864002011-04-27 09:13:56 +00007287 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7288 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007289
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007290 err = ixgbe_init_interrupt_scheme(adapter);
7291 if (err)
7292 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007293
Jacob Keller8e2813f2012-04-21 06:05:40 +00007294 /* WOL not supported for all devices */
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007295 adapter->wol = 0;
Jacob Keller8e2813f2012-04-21 06:05:40 +00007296 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
7297 if (ixgbe_wol_supported(adapter, pdev->device, pdev->subsystem_device))
Andy Gospodarek9417c462011-07-16 07:31:33 +00007298 adapter->wol = IXGBE_WUFC_MAG;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007299
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007300 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7301
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007302#ifdef CONFIG_IXGBE_PTP
7303 ixgbe_ptp_init(adapter);
7304#endif /* CONFIG_IXGBE_PTP*/
7305
Emil Tantilov15e52092011-09-29 05:01:29 +00007306 /* save off EEPROM version number */
7307 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
7308 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
7309
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007310 /* pick up the PCI bus settings for reporting later */
7311 hw->mac.ops.get_bus_info(hw);
7312
Auke Kok9a799d72007-09-15 14:07:45 -07007313 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007314 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007315 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7316 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007317 "Unknown"),
7318 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7319 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7320 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7321 "Unknown"),
7322 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007323
7324 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7325 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007326 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007327 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007328 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007329 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007330 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007331 else
Don Skidmore289700db2010-12-03 03:32:58 +00007332 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7333 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007334
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007335 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007336 e_dev_warn("PCI-Express bandwidth available for this card is "
7337 "not sufficient for optimal performance.\n");
7338 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7339 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007340 }
7341
Auke Kok9a799d72007-09-15 14:07:45 -07007342 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007343 err = hw->mac.ops.start_hw(hw);
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007344 if (err == IXGBE_ERR_EEPROM_VERSION) {
7345 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007346 e_dev_warn("This device is a pre-production adapter/LOM. "
7347 "Please be aware there may be issues associated "
7348 "with your hardware. If you are experiencing "
7349 "problems please contact your Intel or hardware "
7350 "representative who provided you with this "
7351 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007352 }
Auke Kok9a799d72007-09-15 14:07:45 -07007353 strcpy(netdev->name, "eth%d");
7354 err = register_netdev(netdev);
7355 if (err)
7356 goto err_register;
7357
Emil Tantilov93d3ce82011-10-19 07:59:55 +00007358 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7359 if (hw->mac.ops.disable_tx_laser &&
7360 ((hw->phy.multispeed_fiber) ||
7361 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
7362 (hw->mac.type == ixgbe_mac_82599EB))))
7363 hw->mac.ops.disable_tx_laser(hw);
7364
Jesse Brandeburg54386462009-04-17 20:44:27 +00007365 /* carrier off reporting is important to ethtool even BEFORE open */
7366 netif_carrier_off(netdev);
7367
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007368#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007369 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007370 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007371 ixgbe_setup_dca(adapter);
7372 }
7373#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007374 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007375 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007376 for (i = 0; i < adapter->num_vfs; i++)
7377 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7378 }
7379
Jacob Keller2466dd92011-09-08 03:50:54 +00007380 /* firmware requires driver version to be 0xFFFFFFFF
7381 * since os does not support feature
7382 */
Emil Tantilov9612de92011-05-07 07:40:20 +00007383 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00007384 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
7385 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00007386
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007387 /* add san mac addr to netdev */
7388 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007389
Neerav Parikhea818752012-01-04 20:23:40 +00007390 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07007391 cards_found++;
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007392
Don Skidmore12109822012-05-04 06:07:08 +00007393#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007394 if (ixgbe_sysfs_init(adapter))
7395 e_err(probe, "failed to allocate sysfs resources\n");
Don Skidmore12109822012-05-04 06:07:08 +00007396#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007397
Auke Kok9a799d72007-09-15 14:07:45 -07007398 return 0;
7399
7400err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007401 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007402 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007403err_sw_init:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007404 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7405 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007406 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007407 iounmap(hw->hw_addr);
7408err_ioremap:
7409 free_netdev(netdev);
7410err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007411 pci_release_selected_regions(pdev,
7412 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007413err_pci_reg:
7414err_dma:
7415 pci_disable_device(pdev);
7416 return err;
7417}
7418
7419/**
7420 * ixgbe_remove - Device Removal Routine
7421 * @pdev: PCI device information struct
7422 *
7423 * ixgbe_remove is called by the PCI subsystem to alert the driver
7424 * that it should release a PCI device. The could be caused by a
7425 * Hot-Plug event, or because the driver is going to be removed from
7426 * memory.
7427 **/
7428static void __devexit ixgbe_remove(struct pci_dev *pdev)
7429{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007430 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7431 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007432
7433 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007434 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007435
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007436#ifdef CONFIG_IXGBE_PTP
7437 ixgbe_ptp_stop(adapter);
7438#endif
7439
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007440#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007441 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7442 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7443 dca_remove_requester(&pdev->dev);
7444 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7445 }
7446
7447#endif
Don Skidmore12109822012-05-04 06:07:08 +00007448#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007449 ixgbe_sysfs_exit(adapter);
Don Skidmore12109822012-05-04 06:07:08 +00007450#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007451
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007452 /* remove the added san mac */
7453 ixgbe_del_sanmac_netdev(netdev);
7454
Donald Skidmorec4900be2008-11-20 21:11:42 -08007455 if (netdev->reg_state == NETREG_REGISTERED)
7456 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007457
Greg Rosec6bda302011-08-24 02:37:55 +00007458 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
7459 if (!(ixgbe_check_vf_assignment(adapter)))
7460 ixgbe_disable_sriov(adapter);
7461 else
7462 e_dev_warn("Unloading driver while VFs are assigned "
7463 "- VFs will not be deallocated\n");
7464 }
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007465
Alexander Duyck7a921c92009-05-06 10:43:28 +00007466 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007467
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007468 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007469
Alexander Duyck2b1588c2012-03-17 02:39:16 +00007470#ifdef CONFIG_DCB
7471 kfree(adapter->ixgbe_ieee_pfc);
7472 kfree(adapter->ixgbe_ieee_ets);
7473
7474#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007475 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007476 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007477 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007478
Emil Tantilov849c4542010-06-03 16:53:41 +00007479 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007480
Auke Kok9a799d72007-09-15 14:07:45 -07007481 free_netdev(netdev);
7482
Frans Pop19d5afd2009-10-02 10:04:12 -07007483 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007484
Auke Kok9a799d72007-09-15 14:07:45 -07007485 pci_disable_device(pdev);
7486}
7487
7488/**
7489 * ixgbe_io_error_detected - called when PCI error is detected
7490 * @pdev: Pointer to PCI device
7491 * @state: The current pci connection state
7492 *
7493 * This function is called after a PCI bus error affecting
7494 * this device has been detected.
7495 */
7496static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007497 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007498{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007499 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7500 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007501
Greg Rose83c61fa2011-09-07 05:59:35 +00007502#ifdef CONFIG_PCI_IOV
7503 struct pci_dev *bdev, *vfdev;
7504 u32 dw0, dw1, dw2, dw3;
7505 int vf, pos;
7506 u16 req_id, pf_func;
7507
7508 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
7509 adapter->num_vfs == 0)
7510 goto skip_bad_vf_detection;
7511
7512 bdev = pdev->bus->self;
7513 while (bdev && (bdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT))
7514 bdev = bdev->bus->self;
7515
7516 if (!bdev)
7517 goto skip_bad_vf_detection;
7518
7519 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
7520 if (!pos)
7521 goto skip_bad_vf_detection;
7522
7523 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
7524 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
7525 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
7526 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
7527
7528 req_id = dw1 >> 16;
7529 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
7530 if (!(req_id & 0x0080))
7531 goto skip_bad_vf_detection;
7532
7533 pf_func = req_id & 0x01;
7534 if ((pf_func & 1) == (pdev->devfn & 1)) {
7535 unsigned int device_id;
7536
7537 vf = (req_id & 0x7F) >> 1;
7538 e_dev_err("VF %d has caused a PCIe error\n", vf);
7539 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
7540 "%8.8x\tdw3: %8.8x\n",
7541 dw0, dw1, dw2, dw3);
7542 switch (adapter->hw.mac.type) {
7543 case ixgbe_mac_82599EB:
7544 device_id = IXGBE_82599_VF_DEVICE_ID;
7545 break;
7546 case ixgbe_mac_X540:
7547 device_id = IXGBE_X540_VF_DEVICE_ID;
7548 break;
7549 default:
7550 device_id = 0;
7551 break;
7552 }
7553
7554 /* Find the pci device of the offending VF */
7555 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID, device_id, NULL);
7556 while (vfdev) {
7557 if (vfdev->devfn == (req_id & 0xFF))
7558 break;
7559 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID,
7560 device_id, vfdev);
7561 }
7562 /*
7563 * There's a slim chance the VF could have been hot plugged,
7564 * so if it is no longer present we don't need to issue the
7565 * VFLR. Just clean up the AER in that case.
7566 */
7567 if (vfdev) {
7568 e_dev_err("Issuing VFLR to VF %d\n", vf);
7569 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
7570 }
7571
7572 pci_cleanup_aer_uncorrect_error_status(pdev);
7573 }
7574
7575 /*
7576 * Even though the error may have occurred on the other port
7577 * we still need to increment the vf error reference count for
7578 * both ports because the I/O resume function will be called
7579 * for both of them.
7580 */
7581 adapter->vferr_refcount++;
7582
7583 return PCI_ERS_RESULT_RECOVERED;
7584
7585skip_bad_vf_detection:
7586#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07007587 netif_device_detach(netdev);
7588
Breno Leitao3044b8d2009-05-06 10:44:26 +00007589 if (state == pci_channel_io_perm_failure)
7590 return PCI_ERS_RESULT_DISCONNECT;
7591
Auke Kok9a799d72007-09-15 14:07:45 -07007592 if (netif_running(netdev))
7593 ixgbe_down(adapter);
7594 pci_disable_device(pdev);
7595
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007596 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007597 return PCI_ERS_RESULT_NEED_RESET;
7598}
7599
7600/**
7601 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7602 * @pdev: Pointer to PCI device
7603 *
7604 * Restart the card from scratch, as if from a cold-boot.
7605 */
7606static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7607{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007608 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007609 pci_ers_result_t result;
7610 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007611
gouji-new9ce77662009-05-06 10:44:45 +00007612 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007613 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007614 result = PCI_ERS_RESULT_DISCONNECT;
7615 } else {
7616 pci_set_master(pdev);
7617 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007618 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007619
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007620 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007621
7622 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007623 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007624 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007625 }
Auke Kok9a799d72007-09-15 14:07:45 -07007626
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007627 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7628 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007629 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7630 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007631 /* non-fatal, continue */
7632 }
Auke Kok9a799d72007-09-15 14:07:45 -07007633
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007634 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007635}
7636
7637/**
7638 * ixgbe_io_resume - called when traffic can start flowing again.
7639 * @pdev: Pointer to PCI device
7640 *
7641 * This callback is called when the error recovery driver tells us that
7642 * its OK to resume normal operation.
7643 */
7644static void ixgbe_io_resume(struct pci_dev *pdev)
7645{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007646 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7647 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007648
Greg Rose83c61fa2011-09-07 05:59:35 +00007649#ifdef CONFIG_PCI_IOV
7650 if (adapter->vferr_refcount) {
7651 e_info(drv, "Resuming after VF err\n");
7652 adapter->vferr_refcount--;
7653 return;
7654 }
7655
7656#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00007657 if (netif_running(netdev))
7658 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007659
7660 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007661}
7662
7663static struct pci_error_handlers ixgbe_err_handler = {
7664 .error_detected = ixgbe_io_error_detected,
7665 .slot_reset = ixgbe_io_slot_reset,
7666 .resume = ixgbe_io_resume,
7667};
7668
7669static struct pci_driver ixgbe_driver = {
7670 .name = ixgbe_driver_name,
7671 .id_table = ixgbe_pci_tbl,
7672 .probe = ixgbe_probe,
7673 .remove = __devexit_p(ixgbe_remove),
7674#ifdef CONFIG_PM
7675 .suspend = ixgbe_suspend,
7676 .resume = ixgbe_resume,
7677#endif
7678 .shutdown = ixgbe_shutdown,
7679 .err_handler = &ixgbe_err_handler
7680};
7681
7682/**
7683 * ixgbe_init_module - Driver Registration Routine
7684 *
7685 * ixgbe_init_module is the first routine called when the driver is
7686 * loaded. All it does is register with the PCI subsystem.
7687 **/
7688static int __init ixgbe_init_module(void)
7689{
7690 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007691 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007692 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007693
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007694#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007695 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007696#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007697
Auke Kok9a799d72007-09-15 14:07:45 -07007698 ret = pci_register_driver(&ixgbe_driver);
7699 return ret;
7700}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007701
Auke Kok9a799d72007-09-15 14:07:45 -07007702module_init(ixgbe_init_module);
7703
7704/**
7705 * ixgbe_exit_module - Driver Exit Cleanup Routine
7706 *
7707 * ixgbe_exit_module is called just before the driver is removed
7708 * from memory.
7709 **/
7710static void __exit ixgbe_exit_module(void)
7711{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007712#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007713 dca_unregister_notify(&dca_notifier);
7714#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007715 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08007716 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007717}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007718
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007719#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007720static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007721 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007722{
7723 int ret_val;
7724
7725 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007726 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007727
7728 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7729}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007730
Alexander Duyckb4533682009-03-31 21:32:42 +00007731#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007732
Auke Kok9a799d72007-09-15 14:07:45 -07007733module_exit(ixgbe_exit_module);
7734
7735/* ixgbe_main.c */