blob: 29465be2a14af27ac49199e33caf8e0957bebfc1 [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 Skidmorefe15e8e2010-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) &&
Emil Tantilov9c50c032012-07-26 01:21:24 +0000399 tx_buffer->skb)
Taku Izumidcd79ae2010-04-27 14:39:53 +0000400 print_hex_dump(KERN_INFO, "",
401 DUMP_PREFIX_ADDRESS, 16, 1,
Emil Tantilov9c50c032012-07-26 01:21:24 +0000402 tx_buffer->skb->data,
Alexander Duyck729739b2012-02-08 07:51:06 +0000403 dma_unmap_len(tx_buffer, len),
404 true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000405 }
406 }
407
408 /* Print RX Rings Summary */
409rx_ring_summary:
410 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000411 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000412 for (n = 0; n < adapter->num_rx_queues; n++) {
413 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000414 pr_info("%5d %5X %5X\n",
415 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000416 }
417
418 /* Print RX Rings */
419 if (!netif_msg_rx_status(adapter))
420 goto exit;
421
422 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
423
424 /* Advanced Receive Descriptor (Read) Format
425 * 63 1 0
426 * +-----------------------------------------------------+
427 * 0 | Packet Buffer Address [63:1] |A0/NSE|
428 * +----------------------------------------------+------+
429 * 8 | Header Buffer Address [63:1] | DD |
430 * +-----------------------------------------------------+
431 *
432 *
433 * Advanced Receive Descriptor (Write-Back) Format
434 *
435 * 63 48 47 32 31 30 21 20 16 15 4 3 0
436 * +------------------------------------------------------+
437 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
438 * | Checksum Ident | | | | Type | Type |
439 * +------------------------------------------------------+
440 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
441 * +------------------------------------------------------+
442 * 63 48 47 32 31 20 19 0
443 */
444 for (n = 0; n < adapter->num_rx_queues; n++) {
445 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000446 pr_info("------------------------------------\n");
447 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
448 pr_info("------------------------------------\n");
449 pr_info("R [desc] [ PktBuf A0] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000450 "[ HeadBuf DD] [bi->dma ] [bi->skb] "
451 "<-- Adv Rx Read format\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000452 pr_info("RWB[desc] [PcsmIpSHl PtRs] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000453 "[vl er S cks ln] ---------------- [bi->skb] "
454 "<-- Adv Rx Write-Back format\n");
455
456 for (i = 0; i < rx_ring->count; i++) {
457 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000458 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000459 u0 = (struct my_u0 *)rx_desc;
460 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
461 if (staterr & IXGBE_RXD_STAT_DD) {
462 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000463 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000464 "%016llX ---------------- %p", i,
465 le64_to_cpu(u0->a),
466 le64_to_cpu(u0->b),
467 rx_buffer_info->skb);
468 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000469 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000470 "%016llX %016llX %p", i,
471 le64_to_cpu(u0->a),
472 le64_to_cpu(u0->b),
473 (u64)rx_buffer_info->dma,
474 rx_buffer_info->skb);
475
Emil Tantilov9c50c032012-07-26 01:21:24 +0000476 if (netif_msg_pktdata(adapter) &&
477 rx_buffer_info->dma) {
Taku Izumidcd79ae2010-04-27 14:39:53 +0000478 print_hex_dump(KERN_INFO, "",
479 DUMP_PREFIX_ADDRESS, 16, 1,
Emil Tantilov9c50c032012-07-26 01:21:24 +0000480 page_address(rx_buffer_info->page) +
481 rx_buffer_info->page_offset,
Alexander Duyckf8003262012-03-03 02:35:52 +0000482 ixgbe_rx_bufsz(rx_ring), true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000483 }
484 }
485
486 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000487 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000488 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000489 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000490 else
Joe Perchesc7689572010-09-07 21:35:17 +0000491 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000492
493 }
494 }
495
496exit:
497 return;
498}
499
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800500static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
501{
502 u32 ctrl_ext;
503
504 /* Let firmware take over control of h/w */
505 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
506 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000507 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800508}
509
510static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
511{
512 u32 ctrl_ext;
513
514 /* Let firmware know the driver has taken over */
515 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
516 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000517 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800518}
Auke Kok9a799d72007-09-15 14:07:45 -0700519
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000520/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000521 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
522 * @adapter: pointer to adapter struct
523 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
524 * @queue: queue to map the corresponding interrupt to
525 * @msix_vector: the vector to map to the corresponding queue
526 *
527 */
528static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000529 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700530{
531 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000532 struct ixgbe_hw *hw = &adapter->hw;
533 switch (hw->mac.type) {
534 case ixgbe_mac_82598EB:
535 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
536 if (direction == -1)
537 direction = 0;
538 index = (((direction * 64) + queue) >> 2) & 0x1F;
539 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
540 ivar &= ~(0xFF << (8 * (queue & 0x3)));
541 ivar |= (msix_vector << (8 * (queue & 0x3)));
542 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
543 break;
544 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800545 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000546 if (direction == -1) {
547 /* other causes */
548 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
549 index = ((queue & 1) * 8);
550 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
551 ivar &= ~(0xFF << index);
552 ivar |= (msix_vector << index);
553 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
554 break;
555 } else {
556 /* tx or rx causes */
557 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
558 index = ((16 * (queue & 1)) + (8 * direction));
559 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
560 ivar &= ~(0xFF << index);
561 ivar |= (msix_vector << index);
562 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
563 break;
564 }
565 default:
566 break;
567 }
Auke Kok9a799d72007-09-15 14:07:45 -0700568}
569
Alexander Duyckfe49f042009-06-04 16:00:09 +0000570static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000571 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000572{
573 u32 mask;
574
Alexander Duyckbd508172010-11-16 19:27:03 -0800575 switch (adapter->hw.mac.type) {
576 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000577 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
578 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800579 break;
580 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800581 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000582 mask = (qmask & 0xFFFFFFFF);
583 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
584 mask = (qmask >> 32);
585 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800586 break;
587 default:
588 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000589 }
590}
591
Alexander Duyck729739b2012-02-08 07:51:06 +0000592void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *ring,
593 struct ixgbe_tx_buffer *tx_buffer)
Alexander Duyckd3d00232011-07-15 02:31:25 +0000594{
Alexander Duyck729739b2012-02-08 07:51:06 +0000595 if (tx_buffer->skb) {
596 dev_kfree_skb_any(tx_buffer->skb);
597 if (dma_unmap_len(tx_buffer, len))
Alexander Duyckd3d00232011-07-15 02:31:25 +0000598 dma_unmap_single(ring->dev,
Alexander Duyck729739b2012-02-08 07:51:06 +0000599 dma_unmap_addr(tx_buffer, dma),
600 dma_unmap_len(tx_buffer, len),
601 DMA_TO_DEVICE);
602 } else if (dma_unmap_len(tx_buffer, len)) {
603 dma_unmap_page(ring->dev,
604 dma_unmap_addr(tx_buffer, dma),
605 dma_unmap_len(tx_buffer, len),
606 DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000607 }
Alexander Duyck729739b2012-02-08 07:51:06 +0000608 tx_buffer->next_to_watch = NULL;
609 tx_buffer->skb = NULL;
610 dma_unmap_len_set(tx_buffer, len, 0);
611 /* tx_buffer must be completely set up in the transmit path */
Auke Kok9a799d72007-09-15 14:07:45 -0700612}
613
Alexander Duyck943561d2012-05-09 22:14:44 -0700614static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter *adapter)
615{
616 struct ixgbe_hw *hw = &adapter->hw;
617 struct ixgbe_hw_stats *hwstats = &adapter->stats;
618 int i;
619 u32 data;
620
621 if ((hw->fc.current_mode != ixgbe_fc_full) &&
622 (hw->fc.current_mode != ixgbe_fc_rx_pause))
623 return;
624
625 switch (hw->mac.type) {
626 case ixgbe_mac_82598EB:
627 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
628 break;
629 default:
630 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
631 }
632 hwstats->lxoffrxc += data;
633
634 /* refill credits (no tx hang) if we received xoff */
635 if (!data)
636 return;
637
638 for (i = 0; i < adapter->num_tx_queues; i++)
639 clear_bit(__IXGBE_HANG_CHECK_ARMED,
640 &adapter->tx_ring[i]->state);
641}
642
John Fastabendc84d3242010-11-16 19:27:12 -0800643static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700644{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700645 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800646 struct ixgbe_hw_stats *hwstats = &adapter->stats;
John Fastabendc84d3242010-11-16 19:27:12 -0800647 u32 xoff[8] = {0};
648 int i;
Alexander Duyck943561d2012-05-09 22:14:44 -0700649 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700650
Alexander Duyck943561d2012-05-09 22:14:44 -0700651 if (adapter->ixgbe_ieee_pfc)
652 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
John Fastabendc84d3242010-11-16 19:27:12 -0800653
Alexander Duyck943561d2012-05-09 22:14:44 -0700654 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED) || !pfc_en) {
655 ixgbe_update_xoff_rx_lfc(adapter);
John Fastabendc84d3242010-11-16 19:27:12 -0800656 return;
Alexander Duyck943561d2012-05-09 22:14:44 -0700657 }
John Fastabendc84d3242010-11-16 19:27:12 -0800658
659 /* update stats for each tc, only valid with PFC enabled */
660 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
661 switch (hw->mac.type) {
662 case ixgbe_mac_82598EB:
663 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
664 break;
665 default:
666 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
667 }
668 hwstats->pxoffrxc[i] += xoff[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700669 }
670
John Fastabendc84d3242010-11-16 19:27:12 -0800671 /* disarm tx queues that have received xoff frames */
672 for (i = 0; i < adapter->num_tx_queues; i++) {
673 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendfb5475f2011-04-26 07:26:36 +0000674 u8 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800675
676 if (xoff[tc])
677 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
678 }
679}
680
681static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
682{
Alexander Duyck7d7ce682012-02-08 07:50:51 +0000683 return ring->stats.packets;
John Fastabendc84d3242010-11-16 19:27:12 -0800684}
685
686static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
687{
688 struct ixgbe_adapter *adapter = netdev_priv(ring->netdev);
689 struct ixgbe_hw *hw = &adapter->hw;
690
691 u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
692 u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
693
694 if (head != tail)
695 return (head < tail) ?
696 tail - head : (tail + ring->count - head);
697
698 return 0;
699}
700
701static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
702{
703 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
704 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
705 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
706 bool ret = false;
707
708 clear_check_for_tx_hang(tx_ring);
709
710 /*
711 * Check for a hung queue, but be thorough. This verifies
712 * that a transmit has been completed since the previous
713 * check AND there is at least one packet pending. The
714 * ARMED bit is set to indicate a potential hang. The
715 * bit is cleared if a pause frame is received to remove
716 * false hang detection due to PFC or 802.3x frames. By
717 * requiring this to fail twice we avoid races with
718 * pfc clearing the ARMED bit and conditions where we
719 * run the check_tx_hang logic with a transmit completion
720 * pending but without time to complete it yet.
721 */
722 if ((tx_done_old == tx_done) && tx_pending) {
723 /* make sure it is true for two checks in a row */
724 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
725 &tx_ring->state);
726 } else {
727 /* update completed stats and continue */
728 tx_ring->tx_stats.tx_done_old = tx_done;
729 /* reset the countdown */
730 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
731 }
732
733 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700734}
735
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000736/**
737 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
738 * @adapter: driver private struct
739 **/
740static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
741{
742
743 /* Do the reset outside of interrupt context */
744 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
745 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
746 ixgbe_service_event_schedule(adapter);
747 }
748}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700749
Auke Kok9a799d72007-09-15 14:07:45 -0700750/**
751 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000752 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700753 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700754 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000755static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000756 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700757{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000758 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000759 struct ixgbe_tx_buffer *tx_buffer;
760 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700761 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +0000762 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyck729739b2012-02-08 07:51:06 +0000763 unsigned int i = tx_ring->next_to_clean;
764
765 if (test_bit(__IXGBE_DOWN, &adapter->state))
766 return true;
Auke Kok9a799d72007-09-15 14:07:45 -0700767
Alexander Duyckd3d00232011-07-15 02:31:25 +0000768 tx_buffer = &tx_ring->tx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000769 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000770 i -= tx_ring->count;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800771
Alexander Duyck729739b2012-02-08 07:51:06 +0000772 do {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000773 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -0700774
Alexander Duyckd3d00232011-07-15 02:31:25 +0000775 /* if next_to_watch is not set then there is no work pending */
776 if (!eop_desc)
777 break;
778
Alexander Duyck7f83a9e2012-02-08 07:49:23 +0000779 /* prevent any other reads prior to eop_desc */
780 rmb();
781
Alexander Duyckd3d00232011-07-15 02:31:25 +0000782 /* if DD is not set pending work has not been completed */
783 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
784 break;
785
Alexander Duyckd3d00232011-07-15 02:31:25 +0000786 /* clear next_to_watch to prevent false hangs */
787 tx_buffer->next_to_watch = NULL;
788
Alexander Duyck091a6242012-02-08 07:51:01 +0000789 /* update the statistics for this packet */
790 total_bytes += tx_buffer->bytecount;
791 total_packets += tx_buffer->gso_segs;
792
Jacob Keller3a6a4ed2012-05-01 05:24:58 +0000793#ifdef CONFIG_IXGBE_PTP
Jacob Keller0ede4a62012-05-22 06:08:32 +0000794 if (unlikely(tx_buffer->tx_flags & IXGBE_TX_FLAGS_TSTAMP))
795 ixgbe_ptp_tx_hwtstamp(q_vector, tx_buffer->skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +0000796#endif
Jacob Keller0ede4a62012-05-22 06:08:32 +0000797
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000798 /* free the skb */
799 dev_kfree_skb_any(tx_buffer->skb);
800
Alexander Duyck729739b2012-02-08 07:51:06 +0000801 /* unmap skb header data */
802 dma_unmap_single(tx_ring->dev,
803 dma_unmap_addr(tx_buffer, dma),
804 dma_unmap_len(tx_buffer, len),
805 DMA_TO_DEVICE);
806
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000807 /* clear tx_buffer data */
808 tx_buffer->skb = NULL;
Alexander Duyck729739b2012-02-08 07:51:06 +0000809 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000810
Alexander Duyck729739b2012-02-08 07:51:06 +0000811 /* unmap remaining buffers */
812 while (tx_desc != eop_desc) {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000813 tx_buffer++;
814 tx_desc++;
815 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +0000816 if (unlikely(!i)) {
817 i -= tx_ring->count;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000818 tx_buffer = tx_ring->tx_buffer_info;
Alexander Duycke4f74022012-01-31 02:59:44 +0000819 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000820 }
821
Alexander Duyck729739b2012-02-08 07:51:06 +0000822 /* unmap any remaining paged data */
823 if (dma_unmap_len(tx_buffer, len)) {
824 dma_unmap_page(tx_ring->dev,
825 dma_unmap_addr(tx_buffer, dma),
826 dma_unmap_len(tx_buffer, len),
827 DMA_TO_DEVICE);
828 dma_unmap_len_set(tx_buffer, len, 0);
829 }
830 }
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800831
Alexander Duyck729739b2012-02-08 07:51:06 +0000832 /* move us one more past the eop_desc for start of next pkt */
833 tx_buffer++;
834 tx_desc++;
835 i++;
836 if (unlikely(!i)) {
837 i -= tx_ring->count;
838 tx_buffer = tx_ring->tx_buffer_info;
839 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
840 }
841
842 /* issue prefetch for next Tx descriptor */
843 prefetch(tx_desc);
844
845 /* update budget accounting */
846 budget--;
847 } while (likely(budget));
848
849 i += tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -0700850 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000851 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -0800852 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +0000853 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000854 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +0000855 q_vector->tx.total_bytes += total_bytes;
856 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -0800857
John Fastabendc84d3242010-11-16 19:27:12 -0800858 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -0800859 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -0800860 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800861 e_err(drv, "Detected Tx Unit Hang\n"
862 " Tx Queue <%d>\n"
863 " TDH, TDT <%x>, <%x>\n"
864 " next_to_use <%x>\n"
865 " next_to_clean <%x>\n"
866 "tx_buffer_info[next_to_clean]\n"
867 " time_stamp <%lx>\n"
868 " jiffies <%lx>\n",
869 tx_ring->queue_index,
870 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
871 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +0000872 tx_ring->next_to_use, i,
873 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -0800874
875 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
876
877 e_info(probe,
878 "tx hang %d detected on queue %d, resetting adapter\n",
879 adapter->tx_timeout_count + 1, tx_ring->queue_index);
880
881 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000882 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -0800883
884 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +0000885 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -0800886 }
Auke Kok9a799d72007-09-15 14:07:45 -0700887
Alexander Duyckb2d96e02012-02-07 08:14:33 +0000888 netdev_tx_completed_queue(txring_txq(tx_ring),
889 total_packets, total_bytes);
890
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800891#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +0000892 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +0000893 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800894 /* Make sure that anybody stopping the queue after this
895 * sees the new next_to_clean.
896 */
897 smp_mb();
Alexander Duyck729739b2012-02-08 07:51:06 +0000898 if (__netif_subqueue_stopped(tx_ring->netdev,
899 tx_ring->queue_index)
900 && !test_bit(__IXGBE_DOWN, &adapter->state)) {
901 netif_wake_subqueue(tx_ring->netdev,
902 tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800903 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800904 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800905 }
Auke Kok9a799d72007-09-15 14:07:45 -0700906
Alexander Duyck59224552011-08-31 00:01:06 +0000907 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -0700908}
909
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400910#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800911static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800912 struct ixgbe_ring *tx_ring,
913 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800914{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000915 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000916 u32 txctrl = dca3_get_tag(tx_ring->dev, cpu);
917 u16 reg_offset;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800918
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800919 switch (hw->mac.type) {
920 case ixgbe_mac_82598EB:
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000921 reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800922 break;
923 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800924 case ixgbe_mac_X540:
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000925 reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx);
926 txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599;
927 break;
928 default:
929 /* for unknown hardware do not write register */
930 return;
931 }
932
933 /*
934 * We can enable relaxed ordering for reads, but not writes when
935 * DCA is enabled. This is due to a known issue in some chipsets
936 * which will cause the DCA tag to be cleared.
937 */
938 txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN |
939 IXGBE_DCA_TXCTRL_DATA_RRO_EN |
940 IXGBE_DCA_TXCTRL_DESC_DCA_EN;
941
942 IXGBE_WRITE_REG(hw, reg_offset, txctrl);
943}
944
945static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
946 struct ixgbe_ring *rx_ring,
947 int cpu)
948{
949 struct ixgbe_hw *hw = &adapter->hw;
950 u32 rxctrl = dca3_get_tag(rx_ring->dev, cpu);
951 u8 reg_idx = rx_ring->reg_idx;
952
953
954 switch (hw->mac.type) {
955 case ixgbe_mac_82599EB:
956 case ixgbe_mac_X540:
957 rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800958 break;
959 default:
960 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800961 }
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000962
963 /*
964 * We can enable relaxed ordering for reads, but not writes when
965 * DCA is enabled. This is due to a known issue in some chipsets
966 * which will cause the DCA tag to be cleared.
967 */
968 rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN |
969 IXGBE_DCA_RXCTRL_DATA_DCA_EN |
970 IXGBE_DCA_RXCTRL_DESC_DCA_EN;
971
972 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800973}
974
975static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
976{
977 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000978 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800979 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800980
981 if (q_vector->cpu == cpu)
982 goto out_no_update;
983
Alexander Duycka5579282012-02-08 07:50:04 +0000984 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000985 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800986
Alexander Duycka5579282012-02-08 07:50:04 +0000987 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000988 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800989
990 q_vector->cpu = cpu;
991out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800992 put_cpu();
993}
994
995static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
996{
997 int i;
998
999 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
1000 return;
1001
Alexander Duycke35ec122009-05-21 13:07:12 +00001002 /* always use CB2 mode, difference is masked in the CB driver */
1003 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
1004
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001005 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001006 adapter->q_vector[i]->cpu = -1;
1007 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001008 }
1009}
1010
1011static int __ixgbe_notify_dca(struct device *dev, void *data)
1012{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001013 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001014 unsigned long event = *(unsigned long *)data;
1015
Don Skidmore2a72c312011-07-20 02:27:05 +00001016 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001017 return 0;
1018
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001019 switch (event) {
1020 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001021 /* if we're already enabled, don't do it again */
1022 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1023 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001024 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001025 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001026 ixgbe_setup_dca(adapter);
1027 break;
1028 }
1029 /* Fall Through since DCA is disabled. */
1030 case DCA_PROVIDER_REMOVE:
1031 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1032 dca_remove_requester(dev);
1033 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1034 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
1035 }
1036 break;
1037 }
1038
Denis V. Lunev652f0932008-03-27 14:39:17 +03001039 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001040}
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001041
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001042#endif /* CONFIG_IXGBE_DCA */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001043static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
1044 union ixgbe_adv_rx_desc *rx_desc,
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001045 struct sk_buff *skb)
1046{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001047 if (ring->netdev->features & NETIF_F_RXHASH)
1048 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001049}
1050
Alexander Duyckf8003262012-03-03 02:35:52 +00001051#ifdef IXGBE_FCOE
Auke Kok9a799d72007-09-15 14:07:45 -07001052/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001053 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
Alexander Duyck57efd442012-06-25 21:54:46 +00001054 * @ring: structure containing ring specific data
Alexander Duyckff886df2011-06-11 01:45:13 +00001055 * @rx_desc: advanced rx descriptor
1056 *
1057 * Returns : true if it is FCoE pkt
1058 */
Alexander Duyck57efd442012-06-25 21:54:46 +00001059static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring *ring,
Alexander Duyckff886df2011-06-11 01:45:13 +00001060 union ixgbe_adv_rx_desc *rx_desc)
1061{
1062 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1063
Alexander Duyck57efd442012-06-25 21:54:46 +00001064 return test_bit(__IXGBE_RX_FCOE, &ring->state) &&
Alexander Duyckff886df2011-06-11 01:45:13 +00001065 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1066 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1067 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1068}
1069
Alexander Duyckf8003262012-03-03 02:35:52 +00001070#endif /* IXGBE_FCOE */
Alexander Duyckff886df2011-06-11 01:45:13 +00001071/**
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001072 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
Alexander Duyck8a0da212012-01-31 02:59:49 +00001073 * @ring: structure containing ring specific data
1074 * @rx_desc: current Rx descriptor being processed
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001075 * @skb: skb currently being received and modified
1076 **/
Alexander Duyck8a0da212012-01-31 02:59:49 +00001077static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001078 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001079 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001080{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001081 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001082
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001083 /* Rx csum disabled */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001084 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Auke Kok9a799d72007-09-15 14:07:45 -07001085 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001086
1087 /* if IP and error */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001088 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1089 ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001090 ring->rx_stats.csum_err++;
Auke Kok9a799d72007-09-15 14:07:45 -07001091 return;
1092 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001093
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001094 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001095 return;
1096
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001097 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Alexander Duyckf8003262012-03-03 02:35:52 +00001098 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
Don Skidmore8bae1b22009-07-23 18:00:39 +00001099
1100 /*
1101 * 82599 errata, UDP frames with a 0 checksum can be marked as
1102 * checksum errors.
1103 */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001104 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1105 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
Don Skidmore8bae1b22009-07-23 18:00:39 +00001106 return;
1107
Alexander Duyck8a0da212012-01-31 02:59:49 +00001108 ring->rx_stats.csum_err++;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001109 return;
1110 }
1111
Auke Kok9a799d72007-09-15 14:07:45 -07001112 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001113 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001114}
1115
Alexander Duyck84ea2592010-11-16 19:26:49 -08001116static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001117{
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001118 rx_ring->next_to_use = val;
Alexander Duyckf8003262012-03-03 02:35:52 +00001119
1120 /* update next to alloc since we have filled the ring */
1121 rx_ring->next_to_alloc = val;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001122 /*
1123 * Force memory writes to complete before letting h/w
1124 * know there are new descriptors to fetch. (Only
1125 * applicable for weak-ordered memory model archs,
1126 * such as IA-64).
1127 */
1128 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001129 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001130}
1131
Alexander Duyckf990b792012-01-31 02:59:34 +00001132static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1133 struct ixgbe_rx_buffer *bi)
1134{
1135 struct page *page = bi->page;
Alexander Duyckf8003262012-03-03 02:35:52 +00001136 dma_addr_t dma = bi->dma;
Alexander Duyckf990b792012-01-31 02:59:34 +00001137
Alexander Duyckf8003262012-03-03 02:35:52 +00001138 /* since we are recycling buffers we should seldom need to alloc */
1139 if (likely(dma))
Alexander Duyckf990b792012-01-31 02:59:34 +00001140 return true;
1141
Alexander Duyckf8003262012-03-03 02:35:52 +00001142 /* alloc new page for storage */
1143 if (likely(!page)) {
Mel Gorman06140022012-07-31 16:44:24 -07001144 page = __skb_alloc_pages(GFP_ATOMIC | __GFP_COLD | __GFP_COMP,
1145 bi->skb, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf990b792012-01-31 02:59:34 +00001146 if (unlikely(!page)) {
1147 rx_ring->rx_stats.alloc_rx_page_failed++;
1148 return false;
1149 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001150 bi->page = page;
Alexander Duyckf990b792012-01-31 02:59:34 +00001151 }
1152
Alexander Duyckf8003262012-03-03 02:35:52 +00001153 /* map page for use */
1154 dma = dma_map_page(rx_ring->dev, page, 0,
1155 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
Alexander Duyckf990b792012-01-31 02:59:34 +00001156
Alexander Duyckf8003262012-03-03 02:35:52 +00001157 /*
1158 * if mapping failed free memory back to system since
1159 * there isn't much point in holding memory we can't use
1160 */
1161 if (dma_mapping_error(rx_ring->dev, dma)) {
Alexander Duyckdd411ec2012-04-06 04:24:50 +00001162 __free_pages(page, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00001163 bi->page = NULL;
1164
Alexander Duyckf990b792012-01-31 02:59:34 +00001165 rx_ring->rx_stats.alloc_rx_page_failed++;
1166 return false;
1167 }
1168
Alexander Duyckf8003262012-03-03 02:35:52 +00001169 bi->dma = dma;
Alexander Duyckafaa9452012-07-20 08:08:12 +00001170 bi->page_offset = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001171
Alexander Duyckf990b792012-01-31 02:59:34 +00001172 return true;
1173}
1174
Auke Kok9a799d72007-09-15 14:07:45 -07001175/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001176 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001177 * @rx_ring: ring to place buffers on
1178 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001179 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001180void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001181{
Auke Kok9a799d72007-09-15 14:07:45 -07001182 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001183 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001184 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001185
Alexander Duyckf8003262012-03-03 02:35:52 +00001186 /* nothing to do */
1187 if (!cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001188 return;
1189
Alexander Duycke4f74022012-01-31 02:59:44 +00001190 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Alexander Duyckf990b792012-01-31 02:59:34 +00001191 bi = &rx_ring->rx_buffer_info[i];
1192 i -= rx_ring->count;
1193
Alexander Duyckf8003262012-03-03 02:35:52 +00001194 do {
1195 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
Alexander Duyckf990b792012-01-31 02:59:34 +00001196 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001197
Alexander Duyckf8003262012-03-03 02:35:52 +00001198 /*
1199 * Refresh the desc even if buffer_addrs didn't change
1200 * because each write-back erases this info.
1201 */
1202 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
Auke Kok9a799d72007-09-15 14:07:45 -07001203
Alexander Duyckf990b792012-01-31 02:59:34 +00001204 rx_desc++;
1205 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001206 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001207 if (unlikely(!i)) {
Alexander Duycke4f74022012-01-31 02:59:44 +00001208 rx_desc = IXGBE_RX_DESC(rx_ring, 0);
Alexander Duyckf990b792012-01-31 02:59:34 +00001209 bi = rx_ring->rx_buffer_info;
1210 i -= rx_ring->count;
1211 }
1212
1213 /* clear the hdr_addr for the next_to_use descriptor */
1214 rx_desc->read.hdr_addr = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001215
1216 cleaned_count--;
1217 } while (cleaned_count);
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001218
Alexander Duyckf990b792012-01-31 02:59:34 +00001219 i += rx_ring->count;
1220
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001221 if (rx_ring->next_to_use != i)
Alexander Duyck84ea2592010-11-16 19:26:49 -08001222 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001223}
1224
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001225/**
1226 * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE
1227 * @data: pointer to the start of the headers
1228 * @max_len: total length of section to find headers in
1229 *
1230 * This function is meant to determine the length of headers that will
1231 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1232 * motivation of doing this is to only perform one pull for IPv4 TCP
1233 * packets so that we can do basic things like calculating the gso_size
1234 * based on the average data per packet.
1235 **/
1236static unsigned int ixgbe_get_headlen(unsigned char *data,
1237 unsigned int max_len)
1238{
1239 union {
1240 unsigned char *network;
1241 /* l2 headers */
1242 struct ethhdr *eth;
1243 struct vlan_hdr *vlan;
1244 /* l3 headers */
1245 struct iphdr *ipv4;
1246 } hdr;
1247 __be16 protocol;
1248 u8 nexthdr = 0; /* default to not TCP */
1249 u8 hlen;
1250
1251 /* this should never happen, but better safe than sorry */
1252 if (max_len < ETH_HLEN)
1253 return max_len;
1254
1255 /* initialize network frame pointer */
1256 hdr.network = data;
1257
1258 /* set first protocol and move network header forward */
1259 protocol = hdr.eth->h_proto;
1260 hdr.network += ETH_HLEN;
1261
1262 /* handle any vlan tag if present */
1263 if (protocol == __constant_htons(ETH_P_8021Q)) {
1264 if ((hdr.network - data) > (max_len - VLAN_HLEN))
1265 return max_len;
1266
1267 protocol = hdr.vlan->h_vlan_encapsulated_proto;
1268 hdr.network += VLAN_HLEN;
1269 }
1270
1271 /* handle L3 protocols */
1272 if (protocol == __constant_htons(ETH_P_IP)) {
1273 if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
1274 return max_len;
1275
1276 /* access ihl as a u8 to avoid unaligned access on ia64 */
1277 hlen = (hdr.network[0] & 0x0F) << 2;
1278
1279 /* verify hlen meets minimum size requirements */
1280 if (hlen < sizeof(struct iphdr))
1281 return hdr.network - data;
1282
1283 /* record next protocol */
1284 nexthdr = hdr.ipv4->protocol;
1285 hdr.network += hlen;
Alexander Duyckf8003262012-03-03 02:35:52 +00001286#ifdef IXGBE_FCOE
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001287 } else if (protocol == __constant_htons(ETH_P_FCOE)) {
1288 if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN))
1289 return max_len;
1290 hdr.network += FCOE_HEADER_LEN;
1291#endif
1292 } else {
1293 return hdr.network - data;
1294 }
1295
1296 /* finally sort out TCP */
1297 if (nexthdr == IPPROTO_TCP) {
1298 if ((hdr.network - data) > (max_len - sizeof(struct tcphdr)))
1299 return max_len;
1300
1301 /* access doff as a u8 to avoid unaligned access on ia64 */
1302 hlen = (hdr.network[12] & 0xF0) >> 2;
1303
1304 /* verify hlen meets minimum size requirements */
1305 if (hlen < sizeof(struct tcphdr))
1306 return hdr.network - data;
1307
1308 hdr.network += hlen;
1309 }
1310
1311 /*
1312 * If everything has gone correctly hdr.network should be the
1313 * data section of the packet and will be the end of the header.
1314 * If not then it probably represents the end of the last recognized
1315 * header.
1316 */
1317 if ((hdr.network - data) < max_len)
1318 return hdr.network - data;
1319 else
1320 return max_len;
1321}
1322
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001323static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1324 struct sk_buff *skb)
1325{
Alexander Duyckf8003262012-03-03 02:35:52 +00001326 u16 hdr_len = skb_headlen(skb);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001327
1328 /* set gso_size to avoid messing up TCP MSS */
1329 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1330 IXGBE_CB(skb)->append_cnt);
1331}
1332
1333static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1334 struct sk_buff *skb)
1335{
1336 /* if append_cnt is 0 then frame is not RSC */
1337 if (!IXGBE_CB(skb)->append_cnt)
1338 return;
1339
1340 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1341 rx_ring->rx_stats.rsc_flush++;
1342
1343 ixgbe_set_rsc_gso_size(rx_ring, skb);
1344
1345 /* gso_size is computed using append_cnt so always clear it last */
1346 IXGBE_CB(skb)->append_cnt = 0;
1347}
1348
Alexander Duyck8a0da212012-01-31 02:59:49 +00001349/**
1350 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1351 * @rx_ring: rx descriptor ring packet is being transacted on
1352 * @rx_desc: pointer to the EOP Rx descriptor
1353 * @skb: pointer to current skb being populated
1354 *
1355 * This function checks the ring, descriptor, and packet information in
1356 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1357 * other fields within the skb.
1358 **/
1359static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1360 union ixgbe_adv_rx_desc *rx_desc,
1361 struct sk_buff *skb)
1362{
John Fastabend43e95f12012-05-15 06:12:17 +00001363 struct net_device *dev = rx_ring->netdev;
1364
Alexander Duyck8a0da212012-01-31 02:59:49 +00001365 ixgbe_update_rsc_stats(rx_ring, skb);
1366
1367 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1368
1369 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1370
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001371#ifdef CONFIG_IXGBE_PTP
Jacob Keller1d1a79b2012-05-22 06:18:08 +00001372 ixgbe_ptp_rx_hwtstamp(rx_ring->q_vector, rx_desc, skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001373#endif
1374
John Fastabend43e95f12012-05-15 06:12:17 +00001375 if ((dev->features & NETIF_F_HW_VLAN_RX) &&
1376 ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001377 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
1378 __vlan_hwaccel_put_tag(skb, vid);
1379 }
1380
1381 skb_record_rx_queue(skb, rx_ring->queue_index);
1382
John Fastabend43e95f12012-05-15 06:12:17 +00001383 skb->protocol = eth_type_trans(skb, dev);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001384}
1385
1386static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1387 struct sk_buff *skb)
1388{
1389 struct ixgbe_adapter *adapter = q_vector->adapter;
1390
1391 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1392 napi_gro_receive(&q_vector->napi, skb);
1393 else
1394 netif_rx(skb);
Alexander Duyckaa801752010-11-16 19:27:02 -08001395}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001396
Alexander Duyckf8003262012-03-03 02:35:52 +00001397/**
1398 * ixgbe_is_non_eop - process handling of non-EOP buffers
1399 * @rx_ring: Rx ring being processed
1400 * @rx_desc: Rx descriptor for current buffer
1401 * @skb: Current socket buffer containing buffer in progress
1402 *
1403 * This function updates next to clean. If the buffer is an EOP buffer
1404 * this function exits returning false, otherwise it will place the
1405 * sk_buff in the next buffer to be chained and return true indicating
1406 * that this is in fact a non-EOP buffer.
1407 **/
1408static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring,
1409 union ixgbe_adv_rx_desc *rx_desc,
1410 struct sk_buff *skb)
1411{
1412 u32 ntc = rx_ring->next_to_clean + 1;
1413
1414 /* fetch, update, and store next to clean */
1415 ntc = (ntc < rx_ring->count) ? ntc : 0;
1416 rx_ring->next_to_clean = ntc;
1417
1418 prefetch(IXGBE_RX_DESC(rx_ring, ntc));
1419
Alexander Duyck5a02cbd2012-07-20 08:08:51 +00001420 /* update RSC append count if present */
1421 if (ring_is_rsc_enabled(rx_ring)) {
1422 __le32 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1423 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1424
1425 if (unlikely(rsc_enabled)) {
1426 u32 rsc_cnt = le32_to_cpu(rsc_enabled);
1427
1428 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1429 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
1430
1431 /* update ntc based on RSC value */
1432 ntc = le32_to_cpu(rx_desc->wb.upper.status_error);
1433 ntc &= IXGBE_RXDADV_NEXTP_MASK;
1434 ntc >>= IXGBE_RXDADV_NEXTP_SHIFT;
1435 }
1436 }
1437
1438 /* if we are the last buffer then there is nothing else to do */
Alexander Duyckf8003262012-03-03 02:35:52 +00001439 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1440 return false;
1441
Alexander Duyckf8003262012-03-03 02:35:52 +00001442 /* place skb in next buffer to be received */
1443 rx_ring->rx_buffer_info[ntc].skb = skb;
1444 rx_ring->rx_stats.non_eop_descs++;
1445
1446 return true;
1447}
1448
1449/**
Alexander Duyck19861ce2012-07-20 08:08:33 +00001450 * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail
1451 * @rx_ring: rx descriptor ring packet is being transacted on
1452 * @skb: pointer to current skb being adjusted
1453 *
1454 * This function is an ixgbe specific version of __pskb_pull_tail. The
1455 * main difference between this version and the original function is that
1456 * this function can make several assumptions about the state of things
1457 * that allow for significant optimizations versus the standard function.
1458 * As a result we can do things like drop a frag and maintain an accurate
1459 * truesize for the skb.
1460 */
1461static void ixgbe_pull_tail(struct ixgbe_ring *rx_ring,
1462 struct sk_buff *skb)
1463{
1464 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1465 unsigned char *va;
1466 unsigned int pull_len;
1467
1468 /*
1469 * it is valid to use page_address instead of kmap since we are
1470 * working with pages allocated out of the lomem pool per
1471 * alloc_page(GFP_ATOMIC)
1472 */
1473 va = skb_frag_address(frag);
1474
1475 /*
1476 * we need the header to contain the greater of either ETH_HLEN or
1477 * 60 bytes if the skb->len is less than 60 for skb_pad.
1478 */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001479 pull_len = ixgbe_get_headlen(va, IXGBE_RX_HDR_SIZE);
Alexander Duyck19861ce2012-07-20 08:08:33 +00001480
1481 /* align pull length to size of long to optimize memcpy performance */
1482 skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1483
1484 /* update all of the pointers */
1485 skb_frag_size_sub(frag, pull_len);
1486 frag->page_offset += pull_len;
1487 skb->data_len -= pull_len;
1488 skb->tail += pull_len;
Alexander Duyck19861ce2012-07-20 08:08:33 +00001489}
1490
1491/**
Alexander Duyck42073d92012-07-20 08:08:28 +00001492 * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB
1493 * @rx_ring: rx descriptor ring packet is being transacted on
1494 * @skb: pointer to current skb being updated
1495 *
1496 * This function provides a basic DMA sync up for the first fragment of an
1497 * skb. The reason for doing this is that the first fragment cannot be
1498 * unmapped until we have reached the end of packet descriptor for a buffer
1499 * chain.
1500 */
1501static void ixgbe_dma_sync_frag(struct ixgbe_ring *rx_ring,
1502 struct sk_buff *skb)
1503{
1504 /* if the page was released unmap it, else just sync our portion */
1505 if (unlikely(IXGBE_CB(skb)->page_released)) {
1506 dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma,
1507 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
1508 IXGBE_CB(skb)->page_released = false;
1509 } else {
1510 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1511
1512 dma_sync_single_range_for_cpu(rx_ring->dev,
1513 IXGBE_CB(skb)->dma,
1514 frag->page_offset,
1515 ixgbe_rx_bufsz(rx_ring),
1516 DMA_FROM_DEVICE);
1517 }
1518 IXGBE_CB(skb)->dma = 0;
1519}
1520
1521/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001522 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1523 * @rx_ring: rx descriptor ring packet is being transacted on
1524 * @rx_desc: pointer to the EOP Rx descriptor
1525 * @skb: pointer to current skb being fixed
1526 *
1527 * Check for corrupted packet headers caused by senders on the local L2
1528 * embedded NIC switch not setting up their Tx Descriptors right. These
1529 * should be very rare.
1530 *
1531 * Also address the case where we are pulling data in on pages only
1532 * and as such no data is present in the skb header.
1533 *
1534 * In addition if skb is not at least 60 bytes we need to pad it so that
1535 * it is large enough to qualify as a valid Ethernet frame.
1536 *
1537 * Returns true if an error was encountered and skb was freed.
1538 **/
1539static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1540 union ixgbe_adv_rx_desc *rx_desc,
1541 struct sk_buff *skb)
1542{
Alexander Duyckf8003262012-03-03 02:35:52 +00001543 struct net_device *netdev = rx_ring->netdev;
Alexander Duyckf8003262012-03-03 02:35:52 +00001544
Alexander Duyckf8003262012-03-03 02:35:52 +00001545 /* verify that the packet does not have any known errors */
1546 if (unlikely(ixgbe_test_staterr(rx_desc,
1547 IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1548 !(netdev->features & NETIF_F_RXALL))) {
1549 dev_kfree_skb_any(skb);
1550 return true;
1551 }
1552
Alexander Duyck19861ce2012-07-20 08:08:33 +00001553 /* place header in linear portion of buffer */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001554 if (skb_is_nonlinear(skb))
1555 ixgbe_pull_tail(rx_ring, skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001556
Alexander Duyck57efd442012-06-25 21:54:46 +00001557#ifdef IXGBE_FCOE
1558 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1559 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc))
1560 return false;
1561
1562#endif
Alexander Duyckf8003262012-03-03 02:35:52 +00001563 /* if skb_pad returns an error the skb was freed */
1564 if (unlikely(skb->len < 60)) {
1565 int pad_len = 60 - skb->len;
1566
1567 if (skb_pad(skb, pad_len))
1568 return true;
1569 __skb_put(skb, pad_len);
1570 }
1571
1572 return false;
1573}
1574
1575/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001576 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1577 * @rx_ring: rx descriptor ring to store buffers on
1578 * @old_buff: donor buffer to have page reused
1579 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001580 * Synchronizes page for reuse by the adapter
Alexander Duyckf8003262012-03-03 02:35:52 +00001581 **/
1582static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1583 struct ixgbe_rx_buffer *old_buff)
1584{
1585 struct ixgbe_rx_buffer *new_buff;
1586 u16 nta = rx_ring->next_to_alloc;
Alexander Duyckf8003262012-03-03 02:35:52 +00001587
1588 new_buff = &rx_ring->rx_buffer_info[nta];
1589
1590 /* update, and store next to alloc */
1591 nta++;
1592 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1593
1594 /* transfer page from old buffer to new buffer */
1595 new_buff->page = old_buff->page;
1596 new_buff->dma = old_buff->dma;
Alexander Duyck0549ae22012-07-20 08:08:18 +00001597 new_buff->page_offset = old_buff->page_offset;
Alexander Duyckf8003262012-03-03 02:35:52 +00001598
1599 /* sync the buffer for use by the device */
1600 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001601 new_buff->page_offset,
1602 ixgbe_rx_bufsz(rx_ring),
Alexander Duyckf8003262012-03-03 02:35:52 +00001603 DMA_FROM_DEVICE);
Alexander Duyckf8003262012-03-03 02:35:52 +00001604}
1605
1606/**
1607 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1608 * @rx_ring: rx descriptor ring to transact packets on
1609 * @rx_buffer: buffer containing page to add
1610 * @rx_desc: descriptor containing length of buffer written by hardware
1611 * @skb: sk_buff to place the data into
1612 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001613 * This function will add the data contained in rx_buffer->page to the skb.
1614 * This is done either through a direct copy if the data in the buffer is
1615 * less than the skb header size, otherwise it will just attach the page as
1616 * a frag to the skb.
1617 *
1618 * The function will then update the page offset if necessary and return
1619 * true if the buffer can be reused by the adapter.
Alexander Duyckf8003262012-03-03 02:35:52 +00001620 **/
Alexander Duyck0549ae22012-07-20 08:08:18 +00001621static bool ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
Alexander Duyckf8003262012-03-03 02:35:52 +00001622 struct ixgbe_rx_buffer *rx_buffer,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001623 union ixgbe_adv_rx_desc *rx_desc,
1624 struct sk_buff *skb)
Alexander Duyckf8003262012-03-03 02:35:52 +00001625{
Alexander Duyck0549ae22012-07-20 08:08:18 +00001626 struct page *page = rx_buffer->page;
1627 unsigned int size = le16_to_cpu(rx_desc->wb.upper.length);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001628#if (PAGE_SIZE < 8192)
Alexander Duyck0549ae22012-07-20 08:08:18 +00001629 unsigned int truesize = ixgbe_rx_bufsz(rx_ring);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001630#else
1631 unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
1632 unsigned int last_offset = ixgbe_rx_pg_size(rx_ring) -
1633 ixgbe_rx_bufsz(rx_ring);
1634#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001635
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001636 if ((size <= IXGBE_RX_HDR_SIZE) && !skb_is_nonlinear(skb)) {
1637 unsigned char *va = page_address(page) + rx_buffer->page_offset;
1638
1639 memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long)));
1640
1641 /* we can reuse buffer as-is, just make sure it is local */
1642 if (likely(page_to_nid(page) == numa_node_id()))
1643 return true;
1644
1645 /* this page cannot be reused so discard it */
1646 put_page(page);
1647 return false;
1648 }
1649
Alexander Duyck0549ae22012-07-20 08:08:18 +00001650 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
1651 rx_buffer->page_offset, size, truesize);
1652
Alexander Duyck09816fb2012-07-20 08:08:23 +00001653 /* avoid re-using remote pages */
1654 if (unlikely(page_to_nid(page) != numa_node_id()))
1655 return false;
1656
1657#if (PAGE_SIZE < 8192)
1658 /* if we are only owner of page we can reuse it */
1659 if (unlikely(page_count(page) != 1))
Alexander Duyck0549ae22012-07-20 08:08:18 +00001660 return false;
1661
1662 /* flip page offset to other buffer */
1663 rx_buffer->page_offset ^= truesize;
1664
Alexander Duyck09816fb2012-07-20 08:08:23 +00001665 /*
1666 * since we are the only owner of the page and we need to
1667 * increment it, just set the value to 2 in order to avoid
1668 * an unecessary locked operation
1669 */
1670 atomic_set(&page->_count, 2);
1671#else
1672 /* move offset up to the next cache line */
1673 rx_buffer->page_offset += truesize;
1674
1675 if (rx_buffer->page_offset > last_offset)
1676 return false;
1677
Alexander Duyck0549ae22012-07-20 08:08:18 +00001678 /* bump ref count on page before it is given to the stack */
1679 get_page(page);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001680#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001681
1682 return true;
Alexander Duyckf8003262012-03-03 02:35:52 +00001683}
1684
Alexander Duyck18806c92012-07-20 08:08:44 +00001685static struct sk_buff *ixgbe_fetch_rx_buffer(struct ixgbe_ring *rx_ring,
1686 union ixgbe_adv_rx_desc *rx_desc)
1687{
1688 struct ixgbe_rx_buffer *rx_buffer;
1689 struct sk_buff *skb;
1690 struct page *page;
1691
1692 rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];
1693 page = rx_buffer->page;
1694 prefetchw(page);
1695
1696 skb = rx_buffer->skb;
1697
1698 if (likely(!skb)) {
1699 void *page_addr = page_address(page) +
1700 rx_buffer->page_offset;
1701
1702 /* prefetch first cache line of first page */
1703 prefetch(page_addr);
1704#if L1_CACHE_BYTES < 128
1705 prefetch(page_addr + L1_CACHE_BYTES);
1706#endif
1707
1708 /* allocate a skb to store the frags */
1709 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1710 IXGBE_RX_HDR_SIZE);
1711 if (unlikely(!skb)) {
1712 rx_ring->rx_stats.alloc_rx_buff_failed++;
1713 return NULL;
1714 }
1715
1716 /*
1717 * we will be copying header into skb->data in
1718 * pskb_may_pull so it is in our interest to prefetch
1719 * it now to avoid a possible cache miss
1720 */
1721 prefetchw(skb->data);
1722
1723 /*
1724 * Delay unmapping of the first packet. It carries the
1725 * header information, HW may still access the header
1726 * after the writeback. Only unmap it when EOP is
1727 * reached
1728 */
1729 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1730 goto dma_sync;
1731
1732 IXGBE_CB(skb)->dma = rx_buffer->dma;
1733 } else {
1734 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))
1735 ixgbe_dma_sync_frag(rx_ring, skb);
1736
1737dma_sync:
1738 /* we are reusing so sync this buffer for CPU use */
1739 dma_sync_single_range_for_cpu(rx_ring->dev,
1740 rx_buffer->dma,
1741 rx_buffer->page_offset,
1742 ixgbe_rx_bufsz(rx_ring),
1743 DMA_FROM_DEVICE);
1744 }
1745
1746 /* pull page into skb */
1747 if (ixgbe_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
1748 /* hand second half of page back to the ring */
1749 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
1750 } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) {
1751 /* the page has been released from the ring */
1752 IXGBE_CB(skb)->page_released = true;
1753 } else {
1754 /* we are not reusing the buffer so unmap it */
1755 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
1756 ixgbe_rx_pg_size(rx_ring),
1757 DMA_FROM_DEVICE);
1758 }
1759
1760 /* clear contents of buffer_info */
1761 rx_buffer->skb = NULL;
1762 rx_buffer->dma = 0;
1763 rx_buffer->page = NULL;
1764
1765 return skb;
1766}
1767
Alexander Duyckf8003262012-03-03 02:35:52 +00001768/**
1769 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
1770 * @q_vector: structure containing interrupt and ring information
1771 * @rx_ring: rx descriptor ring to transact packets on
1772 * @budget: Total limit on number of packets to process
1773 *
1774 * This function provides a "bounce buffer" approach to Rx interrupt
1775 * processing. The advantage to this is that on systems that have
1776 * expensive overhead for IOMMU access this provides a means of avoiding
1777 * it by maintaining the mapping of the page to the syste.
1778 *
1779 * Returns true if all work is completed without reaching budget
1780 **/
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001781static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001782 struct ixgbe_ring *rx_ring,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001783 int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001784{
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001785 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Ben Greear3f2d1c02012-03-08 08:28:41 +00001786#ifdef IXGBE_FCOE
Alexander Duyckf8003262012-03-03 02:35:52 +00001787 struct ixgbe_adapter *adapter = q_vector->adapter;
Mark Rustad4ffdf912012-07-18 06:05:50 +00001788 int ddp_bytes;
1789 unsigned int mss = 0;
Yi Zou3d8fd382009-06-08 14:38:44 +00001790#endif /* IXGBE_FCOE */
Alexander Duyckf8003262012-03-03 02:35:52 +00001791 u16 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001792
Alexander Duyckf8003262012-03-03 02:35:52 +00001793 do {
Alexander Duyckf8003262012-03-03 02:35:52 +00001794 union ixgbe_adv_rx_desc *rx_desc;
1795 struct sk_buff *skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001796
Alexander Duyckf8003262012-03-03 02:35:52 +00001797 /* return some buffers to hardware, one at a time is too slow */
1798 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
1799 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1800 cleaned_count = 0;
1801 }
Auke Kok9a799d72007-09-15 14:07:45 -07001802
Alexander Duyck18806c92012-07-20 08:08:44 +00001803 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ring->next_to_clean);
Auke Kok9a799d72007-09-15 14:07:45 -07001804
Alexander Duyckf8003262012-03-03 02:35:52 +00001805 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD))
1806 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001807
Alexander Duyckf8003262012-03-03 02:35:52 +00001808 /*
1809 * This memory barrier is needed to keep us from reading
1810 * any other fields out of the rx_desc until we know the
1811 * RXD_STAT_DD bit is set
1812 */
1813 rmb();
Auke Kok9a799d72007-09-15 14:07:45 -07001814
Alexander Duyck18806c92012-07-20 08:08:44 +00001815 /* retrieve a buffer from the ring */
1816 skb = ixgbe_fetch_rx_buffer(rx_ring, rx_desc);
Alexander Duyckf8003262012-03-03 02:35:52 +00001817
Alexander Duyck18806c92012-07-20 08:08:44 +00001818 /* exit if we failed to retrieve a buffer */
1819 if (!skb)
1820 break;
Alexander Duyckf8003262012-03-03 02:35:52 +00001821
Auke Kok9a799d72007-09-15 14:07:45 -07001822 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001823
Alexander Duyckf8003262012-03-03 02:35:52 +00001824 /* place incomplete frames back on ring for completion */
1825 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
1826 continue;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001827
Alexander Duyckf8003262012-03-03 02:35:52 +00001828 /* verify the packet layout is correct */
1829 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
1830 continue;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001831
1832 /* probably a little skewed due to removing CRC */
1833 total_rx_bytes += skb->len;
1834 total_rx_packets++;
1835
Alexander Duyck8a0da212012-01-31 02:59:49 +00001836 /* populate checksum, timestamp, VLAN, and protocol */
1837 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
1838
Yi Zou332d4a72009-05-13 13:11:53 +00001839#ifdef IXGBE_FCOE
1840 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyck57efd442012-06-25 21:54:46 +00001841 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001842 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
Mark Rustad4ffdf912012-07-18 06:05:50 +00001843 /* include DDPed FCoE data */
1844 if (ddp_bytes > 0) {
1845 if (!mss) {
1846 mss = rx_ring->netdev->mtu -
1847 sizeof(struct fcoe_hdr) -
1848 sizeof(struct fc_frame_header) -
1849 sizeof(struct fcoe_crc_eof);
1850 if (mss > 512)
1851 mss &= ~511;
1852 }
1853 total_rx_bytes += ddp_bytes;
1854 total_rx_packets += DIV_ROUND_UP(ddp_bytes,
1855 mss);
1856 }
David S. Miller823dcd22011-08-20 10:39:12 -07001857 if (!ddp_bytes) {
1858 dev_kfree_skb_any(skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001859 continue;
David S. Miller823dcd22011-08-20 10:39:12 -07001860 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001861 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001862
Yi Zou332d4a72009-05-13 13:11:53 +00001863#endif /* IXGBE_FCOE */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001864 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001865
Alexander Duyckf8003262012-03-03 02:35:52 +00001866 /* update budget accounting */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001867 budget--;
Alexander Duyckf8003262012-03-03 02:35:52 +00001868 } while (likely(budget));
Auke Kok9a799d72007-09-15 14:07:45 -07001869
Alexander Duyckc267fc12010-11-16 19:27:00 -08001870 u64_stats_update_begin(&rx_ring->syncp);
1871 rx_ring->stats.packets += total_rx_packets;
1872 rx_ring->stats.bytes += total_rx_bytes;
1873 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001874 q_vector->rx.total_packets += total_rx_packets;
1875 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001876
Alexander Duyckf8003262012-03-03 02:35:52 +00001877 if (cleaned_count)
1878 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1879
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001880 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001881}
1882
Auke Kok9a799d72007-09-15 14:07:45 -07001883/**
1884 * ixgbe_configure_msix - Configure MSI-X hardware
1885 * @adapter: board private structure
1886 *
1887 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1888 * interrupts.
1889 **/
1890static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1891{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001892 struct ixgbe_q_vector *q_vector;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001893 int v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001894 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001895
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00001896 /* Populate MSIX to EITR Select */
1897 if (adapter->num_vfs > 32) {
1898 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
1899 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
1900 }
1901
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001902 /*
1903 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001904 * corresponding register.
1905 */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001906 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001907 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001908 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001909
Alexander Duycka5579282012-02-08 07:50:04 +00001910 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001911 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001912
Alexander Duycka5579282012-02-08 07:50:04 +00001913 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001914 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001915
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001916 if (q_vector->tx.ring && !q_vector->rx.ring) {
1917 /* tx only vector */
1918 if (adapter->tx_itr_setting == 1)
1919 q_vector->itr = IXGBE_10K_ITR;
1920 else
1921 q_vector->itr = adapter->tx_itr_setting;
1922 } else {
1923 /* rx or rx/tx vector */
1924 if (adapter->rx_itr_setting == 1)
1925 q_vector->itr = IXGBE_20K_ITR;
1926 else
1927 q_vector->itr = adapter->rx_itr_setting;
1928 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001929
Alexander Duyckfe49f042009-06-04 16:00:09 +00001930 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001931 }
1932
Alexander Duyckbd508172010-11-16 19:27:03 -08001933 switch (adapter->hw.mac.type) {
1934 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001935 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001936 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001937 break;
1938 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001939 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001940 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001941 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08001942 default:
1943 break;
1944 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001945 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001946
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001947 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001948 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001949 mask &= ~(IXGBE_EIMS_OTHER |
1950 IXGBE_EIMS_MAILBOX |
1951 IXGBE_EIMS_LSC);
1952
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001953 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001954}
1955
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001956enum latency_range {
1957 lowest_latency = 0,
1958 low_latency = 1,
1959 bulk_latency = 2,
1960 latency_invalid = 255
1961};
1962
1963/**
1964 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00001965 * @q_vector: structure containing interrupt and ring information
1966 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001967 *
1968 * Stores a new ITR value based on packets and byte
1969 * counts during the last interrupt. The advantage of per interrupt
1970 * computation is faster updates and more accurate ITR for the current
1971 * traffic pattern. Constants in this function were computed
1972 * based on theoretical maximum wire speed and thresholds were set based
1973 * on testing data as well as attempting to minimize response time
1974 * while increasing bulk throughput.
1975 * this functionality is controlled by the InterruptThrottleRate module
1976 * parameter (see ixgbe_param.c)
1977 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00001978static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
1979 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001980{
Alexander Duyckbd198052011-06-11 01:45:08 +00001981 int bytes = ring_container->total_bytes;
1982 int packets = ring_container->total_packets;
1983 u32 timepassed_us;
Alexander Duyck621bd702012-02-08 07:50:20 +00001984 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00001985 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001986
1987 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00001988 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001989
1990 /* simple throttlerate management
Alexander Duyck621bd702012-02-08 07:50:20 +00001991 * 0-10MB/s lowest (100000 ints/s)
1992 * 10-20MB/s low (20000 ints/s)
1993 * 20-1249MB/s bulk (8000 ints/s)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001994 */
1995 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001996 timepassed_us = q_vector->itr >> 2;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001997 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1998
1999 switch (itr_setting) {
2000 case lowest_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002001 if (bytes_perint > 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002002 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002003 break;
2004 case low_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002005 if (bytes_perint > 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002006 itr_setting = bulk_latency;
Alexander Duyck621bd702012-02-08 07:50:20 +00002007 else if (bytes_perint <= 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002008 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002009 break;
2010 case bulk_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002011 if (bytes_perint <= 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002012 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002013 break;
2014 }
2015
Alexander Duyckbd198052011-06-11 01:45:08 +00002016 /* clear work counters since we have the values we need */
2017 ring_container->total_bytes = 0;
2018 ring_container->total_packets = 0;
2019
2020 /* write updated itr to ring container */
2021 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002022}
2023
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002024/**
2025 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00002026 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002027 *
2028 * This function is made to be called by ethtool and by the driver
2029 * when it needs to update EITR registers at runtime. Hardware
2030 * specific quirks/differences are taken care of here.
2031 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00002032void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002033{
Alexander Duyckfe49f042009-06-04 16:00:09 +00002034 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002035 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002036 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002037 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002038
Alexander Duyckbd508172010-11-16 19:27:03 -08002039 switch (adapter->hw.mac.type) {
2040 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002041 /* must write high and low 16 bits to reset counter */
2042 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08002043 break;
2044 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002045 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002046 /*
2047 * set the WDIS bit to not clear the timer bits and cause an
2048 * immediate assertion of the interrupt
2049 */
2050 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08002051 break;
2052 default:
2053 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002054 }
2055 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
2056}
2057
Alexander Duyckbd198052011-06-11 01:45:08 +00002058static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002059{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002060 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00002061 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002062
Alexander Duyckbd198052011-06-11 01:45:08 +00002063 ixgbe_update_itr(q_vector, &q_vector->tx);
2064 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002065
Alexander Duyck08c88332011-06-11 01:45:03 +00002066 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002067
2068 switch (current_itr) {
2069 /* counts and packets in update_itr are dependent on these numbers */
2070 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002071 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002072 break;
2073 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002074 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002075 break;
2076 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002077 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002078 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00002079 default:
2080 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002081 }
2082
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002083 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002084 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002085 new_itr = (10 * new_itr * q_vector->itr) /
2086 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002087
Alexander Duyckbd198052011-06-11 01:45:08 +00002088 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002089 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002090
2091 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002092 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002093}
2094
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002095/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00002096 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00002097 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002098 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00002099static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002100{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002101 struct ixgbe_hw *hw = &adapter->hw;
2102 u32 eicr = adapter->interrupt_event;
2103
Alexander Duyckf0f97782011-04-22 04:08:09 +00002104 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00002105 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002106
Alexander Duyckf0f97782011-04-22 04:08:09 +00002107 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2108 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2109 return;
2110
2111 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2112
Joe Perches7ca647b2010-09-07 21:35:40 +00002113 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002114 case IXGBE_DEV_ID_82599_T3_LOM:
2115 /*
2116 * Since the warning interrupt is for both ports
2117 * we don't have to check if:
2118 * - This interrupt wasn't for our port.
2119 * - We may have missed the interrupt so always have to
2120 * check if we got a LSC
2121 */
2122 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
2123 !(eicr & IXGBE_EICR_LSC))
2124 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002125
Alexander Duyckf0f97782011-04-22 04:08:09 +00002126 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
2127 u32 autoneg;
2128 bool link_up = false;
2129
Joe Perches7ca647b2010-09-07 21:35:40 +00002130 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
2131
Alexander Duyckf0f97782011-04-22 04:08:09 +00002132 if (link_up)
2133 return;
2134 }
2135
2136 /* Check if this is not due to overtemp */
2137 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2138 return;
2139
2140 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00002141 default:
2142 if (!(eicr & IXGBE_EICR_GPI_SDP0))
2143 return;
2144 break;
2145 }
2146 e_crit(drv,
2147 "Network adapter has been stopped because it has over heated. "
2148 "Restart the computer. If the problem persists, "
2149 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00002150
2151 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002152}
2153
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002154static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2155{
2156 struct ixgbe_hw *hw = &adapter->hw;
2157
2158 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
2159 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002160 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002161 /* write to clear the interrupt */
2162 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
2163 }
2164}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002165
Jacob Keller4f51bf72011-08-20 04:49:45 +00002166static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2167{
2168 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2169 return;
2170
2171 switch (adapter->hw.mac.type) {
2172 case ixgbe_mac_82599EB:
2173 /*
2174 * Need to check link state so complete overtemp check
2175 * on service task
2176 */
2177 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
2178 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2179 adapter->interrupt_event = eicr;
2180 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2181 ixgbe_service_event_schedule(adapter);
2182 return;
2183 }
2184 return;
2185 case ixgbe_mac_X540:
2186 if (!(eicr & IXGBE_EICR_TS))
2187 return;
2188 break;
2189 default:
2190 return;
2191 }
2192
2193 e_crit(drv,
2194 "Network adapter has been stopped because it has over heated. "
2195 "Restart the computer. If the problem persists, "
2196 "power off the system and replace the adapter\n");
2197}
2198
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002199static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2200{
2201 struct ixgbe_hw *hw = &adapter->hw;
2202
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002203 if (eicr & IXGBE_EICR_GPI_SDP2) {
2204 /* Clear the interrupt */
2205 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002206 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2207 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2208 ixgbe_service_event_schedule(adapter);
2209 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002210 }
2211
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002212 if (eicr & IXGBE_EICR_GPI_SDP1) {
2213 /* Clear the interrupt */
2214 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002215 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2216 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2217 ixgbe_service_event_schedule(adapter);
2218 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002219 }
2220}
2221
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002222static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2223{
2224 struct ixgbe_hw *hw = &adapter->hw;
2225
2226 adapter->lsc_int++;
2227 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2228 adapter->link_check_timeout = jiffies;
2229 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2230 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002231 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002232 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002233 }
2234}
2235
Alexander Duyckfe49f042009-06-04 16:00:09 +00002236static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2237 u64 qmask)
2238{
2239 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002240 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002241
Alexander Duyckbd508172010-11-16 19:27:03 -08002242 switch (hw->mac.type) {
2243 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002244 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002245 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2246 break;
2247 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002248 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002249 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002250 if (mask)
2251 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002252 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002253 if (mask)
2254 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2255 break;
2256 default:
2257 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002258 }
2259 /* skip the flush */
2260}
2261
2262static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002263 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002264{
2265 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002266 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002267
Alexander Duyckbd508172010-11-16 19:27:03 -08002268 switch (hw->mac.type) {
2269 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002270 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002271 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2272 break;
2273 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002274 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002275 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002276 if (mask)
2277 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002278 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002279 if (mask)
2280 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2281 break;
2282 default:
2283 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002284 }
2285 /* skip the flush */
2286}
2287
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002288/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002289 * ixgbe_irq_enable - Enable default interrupt generation settings
2290 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002291 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002292static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2293 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002294{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002295 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002296
Alexander Duyck2c4af692011-07-15 07:29:55 +00002297 /* don't reenable LSC while waiting for link */
2298 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2299 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002300
Alexander Duyck2c4af692011-07-15 07:29:55 +00002301 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002302 switch (adapter->hw.mac.type) {
2303 case ixgbe_mac_82599EB:
2304 mask |= IXGBE_EIMS_GPI_SDP0;
2305 break;
2306 case ixgbe_mac_X540:
2307 mask |= IXGBE_EIMS_TS;
2308 break;
2309 default:
2310 break;
2311 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002312 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2313 mask |= IXGBE_EIMS_GPI_SDP1;
2314 switch (adapter->hw.mac.type) {
2315 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002316 mask |= IXGBE_EIMS_GPI_SDP1;
2317 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002318 case ixgbe_mac_X540:
2319 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002320 mask |= IXGBE_EIMS_MAILBOX;
2321 break;
2322 default:
2323 break;
2324 }
2325 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2326 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2327 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002328
Alexander Duyck2c4af692011-07-15 07:29:55 +00002329 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2330 if (queues)
2331 ixgbe_irq_enable_queues(adapter, ~0);
2332 if (flush)
2333 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002334}
2335
Alexander Duyck2c4af692011-07-15 07:29:55 +00002336static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002337{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002338 struct ixgbe_adapter *adapter = data;
2339 struct ixgbe_hw *hw = &adapter->hw;
2340 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002341
Alexander Duyck2c4af692011-07-15 07:29:55 +00002342 /*
2343 * Workaround for Silicon errata. Use clear-by-write instead
2344 * of clear-by-read. Reading with EICS will return the
2345 * interrupt causes without clearing, which later be done
2346 * with the write to EICR.
2347 */
2348 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
2349 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002350
Alexander Duyck2c4af692011-07-15 07:29:55 +00002351 if (eicr & IXGBE_EICR_LSC)
2352 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002353
Alexander Duyck2c4af692011-07-15 07:29:55 +00002354 if (eicr & IXGBE_EICR_MAILBOX)
2355 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002356
Alexander Duyck2c4af692011-07-15 07:29:55 +00002357 switch (hw->mac.type) {
2358 case ixgbe_mac_82599EB:
2359 case ixgbe_mac_X540:
2360 if (eicr & IXGBE_EICR_ECC)
2361 e_info(link, "Received unrecoverable ECC Err, please "
2362 "reboot\n");
2363 /* Handle Flow Director Full threshold interrupt */
2364 if (eicr & IXGBE_EICR_FLOW_DIR) {
2365 int reinit_count = 0;
2366 int i;
2367 for (i = 0; i < adapter->num_tx_queues; i++) {
2368 struct ixgbe_ring *ring = adapter->tx_ring[i];
2369 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2370 &ring->state))
2371 reinit_count++;
2372 }
2373 if (reinit_count) {
2374 /* no more flow director interrupts until after init */
2375 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2376 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2377 ixgbe_service_event_schedule(adapter);
2378 }
2379 }
2380 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002381 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002382 break;
2383 default:
2384 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002385 }
2386
Alexander Duyck2c4af692011-07-15 07:29:55 +00002387 ixgbe_check_fan_failure(adapter, eicr);
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002388#ifdef CONFIG_IXGBE_PTP
2389 ixgbe_ptp_check_pps_event(adapter, eicr);
2390#endif
Auke Kok9a799d72007-09-15 14:07:45 -07002391
Alexander Duyck2c4af692011-07-15 07:29:55 +00002392 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002393 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002394 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002395
Alexander Duyck2c4af692011-07-15 07:29:55 +00002396 return IRQ_HANDLED;
2397}
2398
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002399static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002400{
2401 struct ixgbe_q_vector *q_vector = data;
2402
Auke Kok9a799d72007-09-15 14:07:45 -07002403 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002404
2405 if (q_vector->rx.ring || q_vector->tx.ring)
2406 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002407
2408 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002409}
2410
Auke Kok9a799d72007-09-15 14:07:45 -07002411/**
Alexander Duyckeb01b972012-02-08 07:51:27 +00002412 * ixgbe_poll - NAPI Rx polling callback
2413 * @napi: structure for representing this polling device
2414 * @budget: how many packets driver is allowed to clean
2415 *
2416 * This function is used for legacy and MSI, NAPI mode
2417 **/
Jeff Kirsher8af3c332012-02-18 07:08:14 +00002418int ixgbe_poll(struct napi_struct *napi, int budget)
Alexander Duyckeb01b972012-02-08 07:51:27 +00002419{
2420 struct ixgbe_q_vector *q_vector =
2421 container_of(napi, struct ixgbe_q_vector, napi);
2422 struct ixgbe_adapter *adapter = q_vector->adapter;
2423 struct ixgbe_ring *ring;
2424 int per_ring_budget;
2425 bool clean_complete = true;
2426
2427#ifdef CONFIG_IXGBE_DCA
2428 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2429 ixgbe_update_dca(q_vector);
2430#endif
2431
2432 ixgbe_for_each_ring(ring, q_vector->tx)
2433 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
2434
2435 /* attempt to distribute budget to each queue fairly, but don't allow
2436 * the budget to go below 1 because we'll exit polling */
2437 if (q_vector->rx.count > 1)
2438 per_ring_budget = max(budget/q_vector->rx.count, 1);
2439 else
2440 per_ring_budget = budget;
2441
2442 ixgbe_for_each_ring(ring, q_vector->rx)
2443 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
2444 per_ring_budget);
2445
2446 /* If all work not completed, return budget and keep polling */
2447 if (!clean_complete)
2448 return budget;
2449
2450 /* all work done, exit the polling mode */
2451 napi_complete(napi);
2452 if (adapter->rx_itr_setting & 1)
2453 ixgbe_set_itr(q_vector);
2454 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2455 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
2456
2457 return 0;
2458}
2459
2460/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002461 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2462 * @adapter: board private structure
2463 *
2464 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2465 * interrupts from the kernel.
2466 **/
2467static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2468{
2469 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002470 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002471 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002472
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002473 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002474 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002475 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002476
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002477 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002478 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002479 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002480 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002481 } else if (q_vector->rx.ring) {
2482 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2483 "%s-%s-%d", netdev->name, "rx", ri++);
2484 } else if (q_vector->tx.ring) {
2485 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2486 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002487 } else {
2488 /* skip this unused q_vector */
2489 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002490 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002491 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2492 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002493 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002494 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002495 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002496 goto free_queue_irqs;
2497 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002498 /* If Flow Director is enabled, set interrupt affinity */
2499 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2500 /* assign the mask for this irq */
2501 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002502 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002503 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002504 }
2505
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002506 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002507 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002508 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002509 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002510 goto free_queue_irqs;
2511 }
2512
2513 return 0;
2514
2515free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002516 while (vector) {
2517 vector--;
2518 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2519 NULL);
2520 free_irq(adapter->msix_entries[vector].vector,
2521 adapter->q_vector[vector]);
2522 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002523 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2524 pci_disable_msix(adapter->pdev);
2525 kfree(adapter->msix_entries);
2526 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002527 return err;
2528}
2529
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002530/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002531 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002532 * @irq: interrupt number
2533 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002534 **/
2535static irqreturn_t ixgbe_intr(int irq, void *data)
2536{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002537 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002538 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002539 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002540 u32 eicr;
2541
Don Skidmore54037502009-02-21 15:42:56 -08002542 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002543 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002544 * before the read of EICR.
2545 */
2546 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2547
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002548 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002549 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002550 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002551 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002552 /*
2553 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002554 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002555 * have disabled interrupts due to EIAM
2556 * finish the workaround of silicon errata on 82598. Unmask
2557 * the interrupt that we masked before the EICR read.
2558 */
2559 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2560 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002561 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002562 }
Auke Kok9a799d72007-09-15 14:07:45 -07002563
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002564 if (eicr & IXGBE_EICR_LSC)
2565 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002566
Alexander Duyckbd508172010-11-16 19:27:03 -08002567 switch (hw->mac.type) {
2568 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002569 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002570 /* Fall through */
2571 case ixgbe_mac_X540:
2572 if (eicr & IXGBE_EICR_ECC)
2573 e_info(link, "Received unrecoverable ECC err, please "
2574 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002575 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002576 break;
2577 default:
2578 break;
2579 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002580
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002581 ixgbe_check_fan_failure(adapter, eicr);
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002582#ifdef CONFIG_IXGBE_PTP
2583 ixgbe_ptp_check_pps_event(adapter, eicr);
2584#endif
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002585
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00002586 /* would disable interrupts here but EIAM disabled it */
2587 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002588
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002589 /*
2590 * re-enable link(maybe) and non-queue interrupts, no flush.
2591 * ixgbe_poll will re-enable the queue interrupts
2592 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002593 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2594 ixgbe_irq_enable(adapter, false, false);
2595
Auke Kok9a799d72007-09-15 14:07:45 -07002596 return IRQ_HANDLED;
2597}
2598
2599/**
2600 * ixgbe_request_irq - initialize interrupts
2601 * @adapter: board private structure
2602 *
2603 * Attempts to configure interrupts using the best available
2604 * capabilities of the hardware and kernel.
2605 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002606static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002607{
2608 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002609 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002610
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002611 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002612 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002613 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002614 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002615 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002616 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002617 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002618 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002619
Alexander Duyckde88eee2012-02-08 07:49:59 +00002620 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002621 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002622
Auke Kok9a799d72007-09-15 14:07:45 -07002623 return err;
2624}
2625
2626static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2627{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002628 int vector;
Auke Kok9a799d72007-09-15 14:07:45 -07002629
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002630 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002631 free_irq(adapter->pdev->irq, adapter);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002632 return;
Auke Kok9a799d72007-09-15 14:07:45 -07002633 }
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002634
2635 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
2636 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
2637 struct msix_entry *entry = &adapter->msix_entries[vector];
2638
2639 /* free only the irqs that were actually requested */
2640 if (!q_vector->rx.ring && !q_vector->tx.ring)
2641 continue;
2642
2643 /* clear the affinity_mask in the IRQ descriptor */
2644 irq_set_affinity_hint(entry->vector, NULL);
2645
2646 free_irq(entry->vector, q_vector);
2647 }
2648
2649 free_irq(adapter->msix_entries[vector++].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002650}
2651
2652/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002653 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2654 * @adapter: board private structure
2655 **/
2656static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2657{
Alexander Duyckbd508172010-11-16 19:27:03 -08002658 switch (adapter->hw.mac.type) {
2659 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002660 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002661 break;
2662 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002663 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002664 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2665 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002666 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002667 break;
2668 default:
2669 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002670 }
2671 IXGBE_WRITE_FLUSH(&adapter->hw);
2672 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002673 int vector;
2674
2675 for (vector = 0; vector < adapter->num_q_vectors; vector++)
2676 synchronize_irq(adapter->msix_entries[vector].vector);
2677
2678 synchronize_irq(adapter->msix_entries[vector++].vector);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002679 } else {
2680 synchronize_irq(adapter->pdev->irq);
2681 }
2682}
2683
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002684/**
Auke Kok9a799d72007-09-15 14:07:45 -07002685 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2686 *
2687 **/
2688static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2689{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002690 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002691
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002692 /* rx/tx vector */
2693 if (adapter->rx_itr_setting == 1)
2694 q_vector->itr = IXGBE_20K_ITR;
2695 else
2696 q_vector->itr = adapter->rx_itr_setting;
2697
2698 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002699
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002700 ixgbe_set_ivar(adapter, 0, 0, 0);
2701 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002702
Emil Tantilov396e7992010-07-01 20:05:12 +00002703 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002704}
2705
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002706/**
2707 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2708 * @adapter: board private structure
2709 * @ring: structure containing ring specific data
2710 *
2711 * Configure the Tx descriptor ring after a reset.
2712 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002713void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2714 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002715{
2716 struct ixgbe_hw *hw = &adapter->hw;
2717 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002718 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002719 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002720 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002721
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002722 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002723 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002724 IXGBE_WRITE_FLUSH(hw);
2725
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002726 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002727 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002728 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2729 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2730 ring->count * sizeof(union ixgbe_adv_tx_desc));
2731 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2732 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002733 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002734
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002735 /*
2736 * set WTHRESH to encourage burst writeback, it should not be set
2737 * higher than 1 when ITR is 0 as it could cause false TX hangs
2738 *
2739 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2740 * to or less than the number of on chip descriptors, which is
2741 * currently 40.
2742 */
Alexander Duycke954b372012-02-08 07:49:38 +00002743 if (!ring->q_vector || (ring->q_vector->itr < 8))
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002744 txdctl |= (1 << 16); /* WTHRESH = 1 */
2745 else
2746 txdctl |= (8 << 16); /* WTHRESH = 8 */
2747
Alexander Duycke954b372012-02-08 07:49:38 +00002748 /*
2749 * Setting PTHRESH to 32 both improves performance
2750 * and avoids a TX hang with DFP enabled
2751 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002752 txdctl |= (1 << 8) | /* HTHRESH = 1 */
2753 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002754
2755 /* reinitialize flowdirector state */
Alexander Duyck39cb6812012-06-06 05:38:20 +00002756 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002757 ring->atr_sample_rate = adapter->atr_sample_rate;
2758 ring->atr_count = 0;
2759 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2760 } else {
2761 ring->atr_sample_rate = 0;
2762 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002763
John Fastabendc84d3242010-11-16 19:27:12 -08002764 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2765
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002766 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002767 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2768
2769 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2770 if (hw->mac.type == ixgbe_mac_82598EB &&
2771 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2772 return;
2773
2774 /* poll to verify queue is enabled */
2775 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002776 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002777 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2778 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2779 if (!wait_loop)
2780 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002781}
2782
Alexander Duyck120ff942010-08-19 13:34:50 +00002783static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2784{
2785 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002786 u32 rttdcs, mtqc;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002787 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002788
2789 if (hw->mac.type == ixgbe_mac_82598EB)
2790 return;
2791
2792 /* disable the arbiter while setting MTQC */
2793 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2794 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2795 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2796
2797 /* set transmit pool layout */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002798 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2799 mtqc = IXGBE_MTQC_VT_ENA;
2800 if (tcs > 4)
2801 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2802 else if (tcs > 1)
2803 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2804 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
2805 mtqc |= IXGBE_MTQC_32VF;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002806 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002807 mtqc |= IXGBE_MTQC_64VF;
2808 } else {
2809 if (tcs > 4)
2810 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2811 else if (tcs > 1)
2812 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2813 else
2814 mtqc = IXGBE_MTQC_64Q_1PB;
2815 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00002816
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002817 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
John Fastabend8b1c0b22011-05-03 02:26:48 +00002818
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002819 /* Enable Security TX Buffer IFG for multiple pb */
2820 if (tcs) {
2821 u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2822 sectx |= IXGBE_SECTX_DCB;
2823 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx);
Alexander Duyck120ff942010-08-19 13:34:50 +00002824 }
2825
2826 /* re-enable the arbiter */
2827 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2828 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2829}
2830
Auke Kok9a799d72007-09-15 14:07:45 -07002831/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002832 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002833 * @adapter: board private structure
2834 *
2835 * Configure the Tx unit of the MAC after a reset.
2836 **/
2837static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2838{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002839 struct ixgbe_hw *hw = &adapter->hw;
2840 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002841 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002842
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002843 ixgbe_setup_mtqc(adapter);
2844
2845 if (hw->mac.type != ixgbe_mac_82598EB) {
2846 /* DMATXCTL.EN must be before Tx queues are enabled */
2847 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2848 dmatxctl |= IXGBE_DMATXCTL_TE;
2849 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2850 }
2851
Auke Kok9a799d72007-09-15 14:07:45 -07002852 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002853 for (i = 0; i < adapter->num_tx_queues; i++)
2854 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002855}
2856
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00002857static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
2858 struct ixgbe_ring *ring)
2859{
2860 struct ixgbe_hw *hw = &adapter->hw;
2861 u8 reg_idx = ring->reg_idx;
2862 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2863
2864 srrctl |= IXGBE_SRRCTL_DROP_EN;
2865
2866 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2867}
2868
2869static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
2870 struct ixgbe_ring *ring)
2871{
2872 struct ixgbe_hw *hw = &adapter->hw;
2873 u8 reg_idx = ring->reg_idx;
2874 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2875
2876 srrctl &= ~IXGBE_SRRCTL_DROP_EN;
2877
2878 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2879}
2880
2881#ifdef CONFIG_IXGBE_DCB
2882void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2883#else
2884static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2885#endif
2886{
2887 int i;
2888 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
2889
2890 if (adapter->ixgbe_ieee_pfc)
2891 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
2892
2893 /*
2894 * We should set the drop enable bit if:
2895 * SR-IOV is enabled
2896 * or
2897 * Number of Rx queues > 1 and flow control is disabled
2898 *
2899 * This allows us to avoid head of line blocking for security
2900 * and performance reasons.
2901 */
2902 if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
2903 !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
2904 for (i = 0; i < adapter->num_rx_queues; i++)
2905 ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
2906 } else {
2907 for (i = 0; i < adapter->num_rx_queues; i++)
2908 ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
2909 }
2910}
2911
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002912#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002913
Yi Zoua6616b42009-08-06 13:05:23 +00002914static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002915 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002916{
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002917 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002918 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002919 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002920
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002921 if (hw->mac.type == ixgbe_mac_82598EB) {
2922 u16 mask = adapter->ring_feature[RING_F_RSS].mask;
2923
2924 /*
2925 * if VMDq is not active we must program one srrctl register
2926 * per RSS queue since we have enabled RDRXCTL.MVMEN
2927 */
2928 reg_idx &= mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002929 }
2930
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002931 /* configure header buffer length, needed for RSC */
2932 srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002933
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002934 /* configure the packet buffer length */
Alexander Duyckf8003262012-03-03 02:35:52 +00002935 srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002936
2937 /* configure descriptor type */
Alexander Duyckf8003262012-03-03 02:35:52 +00002938 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002939
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002940 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002941}
2942
Alexander Duyck05abb122010-08-19 13:35:41 +00002943static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002944{
Alexander Duyck05abb122010-08-19 13:35:41 +00002945 struct ixgbe_hw *hw = &adapter->hw;
2946 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002947 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2948 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002949 u32 mrqc = 0, reta = 0;
2950 u32 rxcsum;
2951 int i, j;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002952 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend86b4db32011-04-26 07:26:19 +00002953
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002954 /*
2955 * Program table for at least 2 queues w/ SR-IOV so that VFs can
2956 * make full use of any rings they may have. We will use the
2957 * PSRTYPE register to control how many rings we use within the PF.
2958 */
2959 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 2))
2960 rss_i = 2;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002961
Alexander Duyck05abb122010-08-19 13:35:41 +00002962 /* Fill out hash function seeds */
2963 for (i = 0; i < 10; i++)
2964 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002965
Alexander Duyck05abb122010-08-19 13:35:41 +00002966 /* Fill out redirection table */
2967 for (i = 0, j = 0; i < 128; i++, j++) {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002968 if (j == rss_i)
Alexander Duyck05abb122010-08-19 13:35:41 +00002969 j = 0;
2970 /* reta = 4-byte sliding window of
2971 * 0x00..(indices-1)(indices-1)00..etc. */
2972 reta = (reta << 8) | (j * 0x11);
2973 if ((i & 3) == 3)
2974 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2975 }
2976
2977 /* Disable indicating checksum in descriptor, enables RSS hash */
2978 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2979 rxcsum |= IXGBE_RXCSUM_PCSD;
2980 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2981
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002982 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00002983 if (adapter->ring_feature[RING_F_RSS].mask)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002984 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002985 } else {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002986 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00002987
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002988 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2989 if (tcs > 4)
2990 mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */
2991 else if (tcs > 1)
2992 mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */
2993 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
2994 mrqc = IXGBE_MRQC_VMDQRSS32EN;
2995 else
2996 mrqc = IXGBE_MRQC_VMDQRSS64EN;
2997 } else {
2998 if (tcs > 4)
2999 mrqc = IXGBE_MRQC_RTRSS8TCEN;
3000 else if (tcs > 1)
John Fastabend8b1c0b22011-05-03 02:26:48 +00003001 mrqc = IXGBE_MRQC_RTRSS4TCEN;
3002 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003003 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003004 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003005 }
3006
Alexander Duyck05abb122010-08-19 13:35:41 +00003007 /* Perform hash on these packet types */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003008 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4 |
3009 IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
3010 IXGBE_MRQC_RSS_FIELD_IPV6 |
3011 IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
Alexander Duyck05abb122010-08-19 13:35:41 +00003012
Alexander Duyckef6afc02012-02-08 07:51:53 +00003013 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
3014 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
3015 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
3016 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
3017
Alexander Duyck05abb122010-08-19 13:35:41 +00003018 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003019}
3020
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003021/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003022 * ixgbe_configure_rscctl - enable RSC for the indicated ring
3023 * @adapter: address of board private structure
3024 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003025 **/
Don Skidmore082757a2011-07-21 05:55:00 +00003026static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00003027 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003028{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003029 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003030 u32 rscctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003031 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003032
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003033 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00003034 return;
3035
Alexander Duyck73670962010-08-19 13:38:34 +00003036 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003037 rscctrl |= IXGBE_RSCCTL_RSCEN;
3038 /*
3039 * we must limit the number of descriptors so that the
3040 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00003041 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003042 */
Alexander Duyckf8003262012-03-03 02:35:52 +00003043 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck73670962010-08-19 13:38:34 +00003044 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003045}
3046
Alexander Duyck9e10e042010-08-19 13:40:06 +00003047#define IXGBE_MAX_RX_DESC_POLL 10
3048static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3049 struct ixgbe_ring *ring)
3050{
3051 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003052 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3053 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003054 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003055
3056 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3057 if (hw->mac.type == ixgbe_mac_82598EB &&
3058 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3059 return;
3060
3061 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003062 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003063 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3064 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3065
3066 if (!wait_loop) {
3067 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3068 "the polling period\n", reg_idx);
3069 }
3070}
3071
Yi Zou2d39d572011-01-06 14:29:56 +00003072void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3073 struct ixgbe_ring *ring)
3074{
3075 struct ixgbe_hw *hw = &adapter->hw;
3076 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3077 u32 rxdctl;
3078 u8 reg_idx = ring->reg_idx;
3079
3080 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3081 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3082
3083 /* write value back with RXDCTL.ENABLE bit cleared */
3084 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3085
3086 if (hw->mac.type == ixgbe_mac_82598EB &&
3087 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3088 return;
3089
3090 /* the hardware may take up to 100us to really disable the rx queue */
3091 do {
3092 udelay(10);
3093 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3094 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3095
3096 if (!wait_loop) {
3097 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3098 "the polling period\n", reg_idx);
3099 }
3100}
3101
Alexander Duyck84418e32010-08-19 13:40:54 +00003102void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3103 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003104{
3105 struct ixgbe_hw *hw = &adapter->hw;
3106 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003107 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003108 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003109
Alexander Duyck9e10e042010-08-19 13:40:06 +00003110 /* disable queue to avoid issues while updating state */
3111 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003112 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003113
Alexander Duyckacd37172010-08-19 13:36:05 +00003114 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3115 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3116 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3117 ring->count * sizeof(union ixgbe_adv_rx_desc));
3118 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3119 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08003120 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003121
3122 ixgbe_configure_srrctl(adapter, ring);
3123 ixgbe_configure_rscctl(adapter, ring);
3124
Greg Rosee9f98072011-01-26 01:06:07 +00003125 /* If operating in IOV mode set RLPML for X540 */
3126 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
3127 hw->mac.type == ixgbe_mac_X540) {
3128 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
3129 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
3130 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
3131 }
3132
Alexander Duyck9e10e042010-08-19 13:40:06 +00003133 if (hw->mac.type == ixgbe_mac_82598EB) {
3134 /*
3135 * enable cache line friendly hardware writes:
3136 * PTHRESH=32 descriptors (half the internal cache),
3137 * this also removes ugly rx_no_buffer_count increment
3138 * HTHRESH=4 descriptors (to minimize latency on fetch)
3139 * WTHRESH=8 burst writeback up to two cache lines
3140 */
3141 rxdctl &= ~0x3FFFFF;
3142 rxdctl |= 0x080420;
3143 }
3144
3145 /* enable receive descriptor ring */
3146 rxdctl |= IXGBE_RXDCTL_ENABLE;
3147 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3148
3149 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003150 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003151}
3152
Alexander Duyck48654522010-08-19 13:36:27 +00003153static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3154{
3155 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003156 int rss_i = adapter->ring_feature[RING_F_RSS].indices;
Alexander Duyck48654522010-08-19 13:36:27 +00003157 int p;
3158
3159 /* PSRTYPE must be initialized in non 82598 adapters */
3160 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003161 IXGBE_PSRTYPE_UDPHDR |
3162 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003163 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003164 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003165
3166 if (hw->mac.type == ixgbe_mac_82598EB)
3167 return;
3168
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003169 if (rss_i > 3)
3170 psrtype |= 2 << 29;
3171 else if (rss_i > 1)
3172 psrtype |= 1 << 29;
Alexander Duyck48654522010-08-19 13:36:27 +00003173
3174 for (p = 0; p < adapter->num_rx_pools; p++)
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003175 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(p)),
Alexander Duyck48654522010-08-19 13:36:27 +00003176 psrtype);
3177}
3178
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003179static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3180{
3181 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003182 u32 reg_offset, vf_shift;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003183 u32 gcr_ext, vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003184 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003185
3186 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3187 return;
3188
3189 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003190 vmdctl |= IXGBE_VMD_CTL_VMDQ_EN;
3191 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003192 vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003193 vmdctl |= IXGBE_VT_CTL_REPLEN;
3194 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003195
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003196 vf_shift = VMDQ_P(0) % 32;
3197 reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003198
3199 /* Enable only the PF's pool for Tx/Rx */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003200 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (~0) << vf_shift);
3201 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1);
3202 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (~0) << vf_shift);
3203 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003204 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3205
3206 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003207 hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0));
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003208
3209 /*
3210 * Set up VF register offsets for selected VT Mode,
3211 * i.e. 32 or 64 VFs for SR-IOV
3212 */
Alexander Duyck73079ea2012-07-14 06:48:49 +00003213 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3214 case IXGBE_82599_VMDQ_8Q_MASK:
3215 gcr_ext = IXGBE_GCR_EXT_VT_MODE_16;
3216 break;
3217 case IXGBE_82599_VMDQ_4Q_MASK:
3218 gcr_ext = IXGBE_GCR_EXT_VT_MODE_32;
3219 break;
3220 default:
3221 gcr_ext = IXGBE_GCR_EXT_VT_MODE_64;
3222 break;
3223 }
3224
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003225 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3226
3227 /* enable Tx loopback for VF/PF communication */
3228 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003229
Greg Rosea985b6c32010-11-18 03:02:52 +00003230 /* Enable MAC Anti-Spoofing */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003231 hw->mac.ops.set_mac_anti_spoofing(hw, (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003232 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00003233 /* For VFs that have spoof checking turned off */
3234 for (i = 0; i < adapter->num_vfs; i++) {
3235 if (!adapter->vfinfo[i].spoofchk_enabled)
3236 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
3237 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003238}
3239
Alexander Duyck477de6e2010-08-19 13:38:11 +00003240static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003241{
Auke Kok9a799d72007-09-15 14:07:45 -07003242 struct ixgbe_hw *hw = &adapter->hw;
3243 struct net_device *netdev = adapter->netdev;
3244 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003245 struct ixgbe_ring *rx_ring;
3246 int i;
3247 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003248
Alexander Duyck477de6e2010-08-19 13:38:11 +00003249#ifdef IXGBE_FCOE
3250 /* adjust max frame to be able to do baby jumbo for FCoE */
3251 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3252 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3253 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3254
3255#endif /* IXGBE_FCOE */
3256 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3257 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3258 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3259 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3260
3261 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003262 }
3263
Alexander Duyck919e78a2011-08-26 09:52:38 +00003264 /* MHADD will allow an extra 4 bytes past for vlan tagged frames */
3265 max_frame += VLAN_HLEN;
3266
Auke Kok9a799d72007-09-15 14:07:45 -07003267 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003268 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3269 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003270 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3271
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003272 /*
3273 * Setup the HW Rx Head and Tail Descriptor Pointers and
3274 * the Base and Length of the Rx Descriptor Ring
3275 */
Auke Kok9a799d72007-09-15 14:07:45 -07003276 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003277 rx_ring = adapter->rx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003278 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3279 set_ring_rsc_enabled(rx_ring);
3280 else
3281 clear_ring_rsc_enabled(rx_ring);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003282 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003283}
3284
Alexander Duyck73670962010-08-19 13:38:34 +00003285static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3286{
3287 struct ixgbe_hw *hw = &adapter->hw;
3288 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3289
3290 switch (hw->mac.type) {
3291 case ixgbe_mac_82598EB:
3292 /*
3293 * For VMDq support of different descriptor types or
3294 * buffer sizes through the use of multiple SRRCTL
3295 * registers, RDRXCTL.MVMEN must be set to 1
3296 *
3297 * also, the manual doesn't mention it clearly but DCA hints
3298 * will only use queue 0's tags unless this bit is set. Side
3299 * effects of setting this bit are only that SRRCTL must be
3300 * fully programmed [0..15]
3301 */
3302 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3303 break;
3304 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003305 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003306 /* Disable RSC for ACK packets */
3307 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3308 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3309 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3310 /* hardware requires some bits to be set by default */
3311 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3312 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3313 break;
3314 default:
3315 /* We should do nothing since we don't know this hardware */
3316 return;
3317 }
3318
3319 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3320}
3321
Alexander Duyck477de6e2010-08-19 13:38:11 +00003322/**
3323 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3324 * @adapter: board private structure
3325 *
3326 * Configure the Rx unit of the MAC after a reset.
3327 **/
3328static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3329{
3330 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003331 int i;
3332 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003333
3334 /* disable receives while setting up the descriptors */
3335 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3336 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3337
3338 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003339 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003340
Alexander Duyck9e10e042010-08-19 13:40:06 +00003341 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003342 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003343
Alexander Duyck477de6e2010-08-19 13:38:11 +00003344 /* set_rx_buffer_len must be called before ring initialization */
3345 ixgbe_set_rx_buffer_len(adapter);
3346
3347 /*
3348 * Setup the HW Rx Head and Tail Descriptor Pointers and
3349 * the Base and Length of the Rx Descriptor Ring
3350 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003351 for (i = 0; i < adapter->num_rx_queues; i++)
3352 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003353
Alexander Duyck9e10e042010-08-19 13:40:06 +00003354 /* disable drop enable for 82598 parts */
3355 if (hw->mac.type == ixgbe_mac_82598EB)
3356 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3357
3358 /* enable all receives */
3359 rxctrl |= IXGBE_RXCTRL_RXEN;
3360 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003361}
3362
Jiri Pirko8e586132011-12-08 19:52:37 -05003363static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003364{
3365 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003366 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003367
3368 /* add VID to filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003369 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003370 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003371
3372 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003373}
3374
Jiri Pirko8e586132011-12-08 19:52:37 -05003375static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003376{
3377 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003378 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003379
Auke Kok9a799d72007-09-15 14:07:45 -07003380 /* remove VID from filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003381 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003382 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003383
3384 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003385}
3386
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003387/**
3388 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3389 * @adapter: driver data
3390 */
3391static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3392{
3393 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003394 u32 vlnctrl;
3395
3396 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3397 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3398 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3399}
3400
3401/**
3402 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3403 * @adapter: driver data
3404 */
3405static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3406{
3407 struct ixgbe_hw *hw = &adapter->hw;
3408 u32 vlnctrl;
3409
3410 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3411 vlnctrl |= IXGBE_VLNCTRL_VFE;
3412 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3413 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3414}
3415
3416/**
3417 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3418 * @adapter: driver data
3419 */
3420static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3421{
3422 struct ixgbe_hw *hw = &adapter->hw;
3423 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003424 int i, j;
3425
3426 switch (hw->mac.type) {
3427 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003428 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3429 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003430 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3431 break;
3432 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003433 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003434 for (i = 0; i < adapter->num_rx_queues; i++) {
3435 j = adapter->rx_ring[i]->reg_idx;
3436 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3437 vlnctrl &= ~IXGBE_RXDCTL_VME;
3438 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3439 }
3440 break;
3441 default:
3442 break;
3443 }
3444}
3445
3446/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003447 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003448 * @adapter: driver data
3449 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003450static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003451{
3452 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003453 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003454 int i, j;
3455
3456 switch (hw->mac.type) {
3457 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003458 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3459 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003460 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3461 break;
3462 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003463 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003464 for (i = 0; i < adapter->num_rx_queues; i++) {
3465 j = adapter->rx_ring[i]->reg_idx;
3466 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3467 vlnctrl |= IXGBE_RXDCTL_VME;
3468 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3469 }
3470 break;
3471 default:
3472 break;
3473 }
3474}
3475
Auke Kok9a799d72007-09-15 14:07:45 -07003476static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3477{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003478 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003479
Jesse Grossf62bbb52010-10-20 13:56:10 +00003480 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3481
3482 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3483 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003484}
3485
3486/**
Alexander Duyck28500622010-06-15 09:25:48 +00003487 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3488 * @netdev: network interface device structure
3489 *
3490 * Writes unicast address list to the RAR table.
3491 * Returns: -ENOMEM on failure/insufficient address space
3492 * 0 on no addresses written
3493 * X on writing X addresses to the RAR table
3494 **/
3495static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3496{
3497 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3498 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend95447462012-05-31 12:42:26 +00003499 unsigned int rar_entries = hw->mac.num_rar_entries - 1;
Alexander Duyck28500622010-06-15 09:25:48 +00003500 int count = 0;
3501
John Fastabend95447462012-05-31 12:42:26 +00003502 /* In SR-IOV mode significantly less RAR entries are available */
3503 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3504 rar_entries = IXGBE_MAX_PF_MACVLANS - 1;
3505
Alexander Duyck28500622010-06-15 09:25:48 +00003506 /* return ENOMEM indicating insufficient memory for addresses */
3507 if (netdev_uc_count(netdev) > rar_entries)
3508 return -ENOMEM;
3509
John Fastabend95447462012-05-31 12:42:26 +00003510 if (!netdev_uc_empty(netdev)) {
Alexander Duyck28500622010-06-15 09:25:48 +00003511 struct netdev_hw_addr *ha;
3512 /* return error if we do not support writing to RAR table */
3513 if (!hw->mac.ops.set_rar)
3514 return -ENOMEM;
3515
3516 netdev_for_each_uc_addr(ha, netdev) {
3517 if (!rar_entries)
3518 break;
3519 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003520 VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck28500622010-06-15 09:25:48 +00003521 count++;
3522 }
3523 }
3524 /* write the addresses in reverse order to avoid write combining */
3525 for (; rar_entries > 0 ; rar_entries--)
3526 hw->mac.ops.clear_rar(hw, rar_entries);
3527
3528 return count;
3529}
3530
3531/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003532 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003533 * @netdev: network interface device structure
3534 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003535 * The set_rx_method entry point is called whenever the unicast/multicast
3536 * address list or the network interface flags are updated. This routine is
3537 * responsible for configuring the hardware for proper unicast, multicast and
3538 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003539 **/
Greg Rose7f870472010-01-09 02:25:29 +00003540void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003541{
3542 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3543 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003544 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3545 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003546
3547 /* Check for Promiscuous and All Multicast modes */
3548
3549 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3550
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003551 /* set all bits that we expect to always be set */
Ben Greear3f2d1c02012-03-08 08:28:41 +00003552 fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003553 fctrl |= IXGBE_FCTRL_BAM;
3554 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3555 fctrl |= IXGBE_FCTRL_PMCF;
3556
Alexander Duyck28500622010-06-15 09:25:48 +00003557 /* clear the bits we are changing the status of */
3558 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3559
Auke Kok9a799d72007-09-15 14:07:45 -07003560 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003561 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003562 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003563 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003564 /* don't hardware filter vlans in promisc mode */
3565 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003566 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003567 if (netdev->flags & IFF_ALLMULTI) {
3568 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003569 vmolr |= IXGBE_VMOLR_MPE;
3570 } else {
3571 /*
3572 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003573 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003574 * that we can at least receive multicast traffic
3575 */
3576 hw->mac.ops.update_mc_addr_list(hw, netdev);
3577 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003578 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003579 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003580 hw->addr_ctrl.user_set_promisc = false;
John Fastabend9dcb3732012-04-15 06:44:25 +00003581 }
3582
3583 /*
3584 * Write addresses to available RAR registers, if there is not
3585 * sufficient space to store all the addresses then enable
3586 * unicast promiscuous mode
3587 */
3588 count = ixgbe_write_uc_addr_list(netdev);
3589 if (count < 0) {
3590 fctrl |= IXGBE_FCTRL_UPE;
3591 vmolr |= IXGBE_VMOLR_ROPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003592 }
3593
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003594 if (adapter->num_vfs)
Alexander Duyck28500622010-06-15 09:25:48 +00003595 ixgbe_restore_vf_multicasts(adapter);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003596
3597 if (hw->mac.type != ixgbe_mac_82598EB) {
3598 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) &
Alexander Duyck28500622010-06-15 09:25:48 +00003599 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3600 IXGBE_VMOLR_ROPE);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003601 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003602 }
3603
Ben Greear3f2d1c02012-03-08 08:28:41 +00003604 /* This is useful for sniffing bad packets. */
3605 if (adapter->netdev->features & NETIF_F_RXALL) {
3606 /* UPE and MPE will be handled by normal PROMISC logic
3607 * in e1000e_set_rx_mode */
3608 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
3609 IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
3610 IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
3611
3612 fctrl &= ~(IXGBE_FCTRL_DPF);
3613 /* NOTE: VLAN filtering is disabled by setting PROMISC */
3614 }
3615
Auke Kok9a799d72007-09-15 14:07:45 -07003616 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003617
3618 if (netdev->features & NETIF_F_HW_VLAN_RX)
3619 ixgbe_vlan_strip_enable(adapter);
3620 else
3621 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003622}
3623
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003624static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3625{
3626 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003627
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003628 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3629 napi_enable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003630}
3631
3632static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3633{
3634 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003635
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003636 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3637 napi_disable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003638}
3639
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003640#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003641/**
Alexander Duyck2f90b862008-11-20 20:52:10 -08003642 * ixgbe_configure_dcb - Configure DCB hardware
3643 * @adapter: ixgbe adapter struct
3644 *
3645 * This is called by the driver on open to configure the DCB hardware.
3646 * This is also called by the gennetlink interface when reconfiguring
3647 * the DCB state.
3648 */
3649static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3650{
3651 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend98063072010-10-28 00:59:57 +00003652 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003653
Alexander Duyck67ebd792010-08-19 13:34:04 +00003654 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3655 if (hw->mac.type == ixgbe_mac_82598EB)
3656 netif_set_gso_max_size(adapter->netdev, 65536);
3657 return;
3658 }
3659
3660 if (hw->mac.type == ixgbe_mac_82598EB)
3661 netif_set_gso_max_size(adapter->netdev, 32768);
3662
John Fastabendb1208182011-10-15 05:00:10 +00003663#ifdef IXGBE_FCOE
3664 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3665 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3666#endif
3667
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003668 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003669 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003670 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3671 DCB_TX_CONFIG);
3672 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3673 DCB_RX_CONFIG);
3674 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003675 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3676 ixgbe_dcb_hw_ets(&adapter->hw,
3677 adapter->ixgbe_ieee_ets,
3678 max_frame);
3679 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3680 adapter->ixgbe_ieee_pfc->pfc_en,
3681 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003682 }
John Fastabend8187cd42011-02-23 05:58:08 +00003683
3684 /* Enable RSS Hash per TC */
3685 if (hw->mac.type != ixgbe_mac_82598EB) {
Alexander Duyck4ae63732012-06-22 06:46:33 +00003686 u32 msb = 0;
3687 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003688
Alexander Duyckd411a932012-06-30 00:14:01 +00003689 while (rss_i) {
3690 msb++;
3691 rss_i >>= 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003692 }
Alexander Duyckd411a932012-06-30 00:14:01 +00003693
Alexander Duyck4ae63732012-06-22 06:46:33 +00003694 /* write msb to all 8 TCs in one write */
3695 IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111);
John Fastabend8187cd42011-02-23 05:58:08 +00003696 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003697}
John Fastabend9da712d2011-08-23 03:14:22 +00003698#endif
3699
3700/* Additional bittime to account for IXGBE framing */
3701#define IXGBE_ETH_FRAMING 20
3702
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003703/**
John Fastabend9da712d2011-08-23 03:14:22 +00003704 * ixgbe_hpbthresh - calculate high water mark for flow control
3705 *
3706 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003707 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00003708 */
3709static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
3710{
3711 struct ixgbe_hw *hw = &adapter->hw;
3712 struct net_device *dev = adapter->netdev;
3713 int link, tc, kb, marker;
3714 u32 dv_id, rx_pba;
3715
3716 /* Calculate max LAN frame size */
3717 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
3718
3719#ifdef IXGBE_FCOE
3720 /* FCoE traffic class uses FCOE jumbo frames */
Alexander Duyck800bd602012-06-02 00:11:02 +00003721 if ((dev->features & NETIF_F_FCOE_MTU) &&
3722 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
3723 (pb == ixgbe_fcoe_get_tc(adapter)))
3724 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003725
3726#endif
John Fastabend9da712d2011-08-23 03:14:22 +00003727 /* Calculate delay value for device */
3728 switch (hw->mac.type) {
3729 case ixgbe_mac_X540:
3730 dv_id = IXGBE_DV_X540(link, tc);
3731 break;
3732 default:
3733 dv_id = IXGBE_DV(link, tc);
3734 break;
3735 }
3736
3737 /* Loopback switch introduces additional latency */
3738 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3739 dv_id += IXGBE_B2BT(tc);
3740
3741 /* Delay value is calculated in bit times convert to KB */
3742 kb = IXGBE_BT2KB(dv_id);
3743 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
3744
3745 marker = rx_pba - kb;
3746
3747 /* It is possible that the packet buffer is not large enough
3748 * to provide required headroom. In this case throw an error
3749 * to user and a do the best we can.
3750 */
3751 if (marker < 0) {
3752 e_warn(drv, "Packet Buffer(%i) can not provide enough"
3753 "headroom to support flow control."
3754 "Decrease MTU or number of traffic classes\n", pb);
3755 marker = tc + 1;
3756 }
3757
3758 return marker;
3759}
3760
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003761/**
John Fastabend9da712d2011-08-23 03:14:22 +00003762 * ixgbe_lpbthresh - calculate low water mark for for flow control
3763 *
3764 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003765 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00003766 */
3767static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
3768{
3769 struct ixgbe_hw *hw = &adapter->hw;
3770 struct net_device *dev = adapter->netdev;
3771 int tc;
3772 u32 dv_id;
3773
3774 /* Calculate max LAN frame size */
3775 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3776
3777 /* Calculate delay value for device */
3778 switch (hw->mac.type) {
3779 case ixgbe_mac_X540:
3780 dv_id = IXGBE_LOW_DV_X540(tc);
3781 break;
3782 default:
3783 dv_id = IXGBE_LOW_DV(tc);
3784 break;
3785 }
3786
3787 /* Delay value is calculated in bit times convert to KB */
3788 return IXGBE_BT2KB(dv_id);
3789}
3790
3791/*
3792 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3793 */
3794static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
3795{
3796 struct ixgbe_hw *hw = &adapter->hw;
3797 int num_tc = netdev_get_num_tc(adapter->netdev);
3798 int i;
3799
3800 if (!num_tc)
3801 num_tc = 1;
3802
3803 hw->fc.low_water = ixgbe_lpbthresh(adapter);
3804
3805 for (i = 0; i < num_tc; i++) {
3806 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
3807
3808 /* Low water marks must not be larger than high water marks */
3809 if (hw->fc.low_water > hw->fc.high_water[i])
3810 hw->fc.low_water = 0;
3811 }
3812}
John Fastabend80605c652011-05-02 12:34:10 +00003813
3814static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3815{
John Fastabend80605c652011-05-02 12:34:10 +00003816 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00003817 int hdrm;
3818 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00003819
3820 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3821 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00003822 hdrm = 32 << adapter->fdir_pballoc;
3823 else
3824 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00003825
Alexander Duyckf7e10272011-07-21 00:40:35 +00003826 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00003827 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00003828}
3829
Alexander Duycke4911d52011-05-11 07:18:52 +00003830static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3831{
3832 struct ixgbe_hw *hw = &adapter->hw;
3833 struct hlist_node *node, *node2;
3834 struct ixgbe_fdir_filter *filter;
3835
3836 spin_lock(&adapter->fdir_perfect_lock);
3837
3838 if (!hlist_empty(&adapter->fdir_filter_list))
3839 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3840
3841 hlist_for_each_entry_safe(filter, node, node2,
3842 &adapter->fdir_filter_list, fdir_node) {
3843 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003844 &filter->filter,
3845 filter->sw_idx,
3846 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3847 IXGBE_FDIR_DROP_QUEUE :
3848 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003849 }
3850
3851 spin_unlock(&adapter->fdir_perfect_lock);
3852}
3853
Auke Kok9a799d72007-09-15 14:07:45 -07003854static void ixgbe_configure(struct ixgbe_adapter *adapter)
3855{
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003856 struct ixgbe_hw *hw = &adapter->hw;
3857
John Fastabend80605c652011-05-02 12:34:10 +00003858 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003859#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003860 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003861#endif
Alexander Duyckb35d4d42012-05-23 05:39:25 +00003862 /*
3863 * We must restore virtualization before VLANs or else
3864 * the VLVF registers will not be populated
3865 */
3866 ixgbe_configure_virtualization(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003867
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003868 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003869 ixgbe_restore_vlan(adapter);
3870
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003871 switch (hw->mac.type) {
3872 case ixgbe_mac_82599EB:
3873 case ixgbe_mac_X540:
3874 hw->mac.ops.disable_rx_buff(hw);
3875 break;
3876 default:
3877 break;
3878 }
3879
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003880 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003881 ixgbe_init_fdir_signature_82599(&adapter->hw,
3882 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003883 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3884 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3885 adapter->fdir_pballoc);
3886 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003887 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003888
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003889 switch (hw->mac.type) {
3890 case ixgbe_mac_82599EB:
3891 case ixgbe_mac_X540:
3892 hw->mac.ops.enable_rx_buff(hw);
3893 break;
3894 default:
3895 break;
3896 }
3897
Alexander Duyck7c8ae652012-05-05 05:32:47 +00003898#ifdef IXGBE_FCOE
3899 /* configure FCoE L2 filters, redirection table, and Rx control */
3900 ixgbe_configure_fcoe(adapter);
3901
3902#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07003903 ixgbe_configure_tx(adapter);
3904 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003905}
3906
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003907static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3908{
3909 switch (hw->phy.type) {
3910 case ixgbe_phy_sfp_avago:
3911 case ixgbe_phy_sfp_ftl:
3912 case ixgbe_phy_sfp_intel:
3913 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003914 case ixgbe_phy_sfp_passive_tyco:
3915 case ixgbe_phy_sfp_passive_unknown:
3916 case ixgbe_phy_sfp_active_unknown:
3917 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003918 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00003919 case ixgbe_phy_nl:
3920 if (hw->mac.type == ixgbe_mac_82598EB)
3921 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003922 default:
3923 return false;
3924 }
3925}
3926
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003927/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003928 * ixgbe_sfp_link_config - set up SFP+ link
3929 * @adapter: pointer to private adapter struct
3930 **/
3931static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3932{
Alexander Duyck70864002011-04-27 09:13:56 +00003933 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003934 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00003935 * is that an SFP was inserted/removed after the reset
3936 * but before SFP detection was enabled. As such the best
3937 * solution is to just start searching as soon as we start
3938 */
3939 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3940 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003941
Alexander Duyck70864002011-04-27 09:13:56 +00003942 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003943}
3944
3945/**
3946 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003947 * @hw: pointer to private hardware struct
3948 *
3949 * Returns 0 on success, negative on failure
3950 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003951static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003952{
3953 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003954 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003955 u32 ret = IXGBE_ERR_LINK_SETUP;
3956
3957 if (hw->mac.ops.check_link)
3958 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3959
3960 if (ret)
3961 goto link_cfg_out;
3962
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003963 autoneg = hw->phy.autoneg_advertised;
3964 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003965 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3966 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003967 if (ret)
3968 goto link_cfg_out;
3969
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003970 if (hw->mac.ops.setup_link)
3971 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003972link_cfg_out:
3973 return ret;
3974}
3975
Alexander Duycka34bcff2010-08-19 13:39:20 +00003976static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003977{
Auke Kok9a799d72007-09-15 14:07:45 -07003978 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003979 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003980
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003981 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003982 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3983 IXGBE_GPIE_OCD;
3984 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003985 /*
3986 * use EIAM to auto-mask when MSI-X interrupt is asserted
3987 * this saves a register write for every interrupt
3988 */
3989 switch (hw->mac.type) {
3990 case ixgbe_mac_82598EB:
3991 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3992 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003993 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003994 case ixgbe_mac_X540:
3995 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003996 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3997 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3998 break;
3999 }
4000 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004001 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
4002 * specifically only auto mask tx and rx interrupts */
4003 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07004004 }
4005
Alexander Duycka34bcff2010-08-19 13:39:20 +00004006 /* XXX: to interrupt immediately for EICS writes, enable this */
4007 /* gpie |= IXGBE_GPIE_EIMEN; */
4008
4009 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
4010 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
Alexander Duyck73079ea2012-07-14 06:48:49 +00004011
4012 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
4013 case IXGBE_82599_VMDQ_8Q_MASK:
4014 gpie |= IXGBE_GPIE_VTMODE_16;
4015 break;
4016 case IXGBE_82599_VMDQ_4Q_MASK:
4017 gpie |= IXGBE_GPIE_VTMODE_32;
4018 break;
4019 default:
4020 gpie |= IXGBE_GPIE_VTMODE_64;
4021 break;
4022 }
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004023 }
4024
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004025 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00004026 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
4027 switch (adapter->hw.mac.type) {
4028 case ixgbe_mac_82599EB:
4029 gpie |= IXGBE_SDP0_GPIEN;
4030 break;
4031 case ixgbe_mac_X540:
4032 gpie |= IXGBE_EIMS_TS;
4033 break;
4034 default:
4035 break;
4036 }
4037 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004038
Alexander Duycka34bcff2010-08-19 13:39:20 +00004039 /* Enable fan failure interrupt */
4040 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004041 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004042
Don Skidmore2698b202011-04-13 07:01:52 +00004043 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004044 gpie |= IXGBE_SDP1_GPIEN;
4045 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00004046 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00004047
4048 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
4049}
4050
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004051static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00004052{
4053 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004054 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004055 u32 ctrl_ext;
4056
4057 ixgbe_get_hw_control(adapter);
4058 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004059
Auke Kok9a799d72007-09-15 14:07:45 -07004060 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4061 ixgbe_configure_msix(adapter);
4062 else
4063 ixgbe_configure_msi_and_legacy(adapter);
4064
Don Skidmorec6ecf392010-12-03 03:31:51 +00004065 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
4066 if (hw->mac.ops.enable_tx_laser &&
4067 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004068 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004069 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00004070 hw->mac.ops.enable_tx_laser(hw);
4071
Auke Kok9a799d72007-09-15 14:07:45 -07004072 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004073 ixgbe_napi_enable_all(adapter);
4074
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08004075 if (ixgbe_is_sfp(hw)) {
4076 ixgbe_sfp_link_config(adapter);
4077 } else {
4078 err = ixgbe_non_sfp_link_config(hw);
4079 if (err)
4080 e_err(probe, "link_config FAILED %d\n", err);
4081 }
4082
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004083 /* clear any pending interrupts, may auto mask */
4084 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00004085 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07004086
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004087 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00004088 * If this adapter has a fan, check to see if we had a failure
4089 * before we enabled the interrupt.
4090 */
4091 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
4092 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
4093 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00004094 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00004095 }
4096
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004097 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00004098 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004099
Auke Kok9a799d72007-09-15 14:07:45 -07004100 /* bring the link up in the watchdog, this could race with our first
4101 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004102 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
4103 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00004104 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00004105
4106 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
4107 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
4108 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
4109 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07004110}
4111
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004112void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
4113{
4114 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00004115 /* put off any impending NetWatchDogTimeout */
4116 adapter->netdev->trans_start = jiffies;
4117
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004118 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00004119 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004120 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00004121 /*
4122 * If SR-IOV enabled then wait a bit before bringing the adapter
4123 * back up to give the VFs time to respond to the reset. The
4124 * two second wait is based upon the watchdog timer cycle in
4125 * the VF driver.
4126 */
4127 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4128 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004129 ixgbe_up(adapter);
4130 clear_bit(__IXGBE_RESETTING, &adapter->state);
4131}
4132
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004133void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004134{
4135 /* hardware has been reset, we need to reload some things */
4136 ixgbe_configure(adapter);
4137
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004138 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004139}
4140
4141void ixgbe_reset(struct ixgbe_adapter *adapter)
4142{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004143 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004144 int err;
4145
Alexander Duyck70864002011-04-27 09:13:56 +00004146 /* lock SFP init bit to prevent race conditions with the watchdog */
4147 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4148 usleep_range(1000, 2000);
4149
4150 /* clear all SFP and link config related flags while holding SFP_INIT */
4151 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4152 IXGBE_FLAG2_SFP_NEEDS_RESET);
4153 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4154
Don Skidmore8ca783a2009-05-26 20:40:47 -07004155 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004156 switch (err) {
4157 case 0:
4158 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004159 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004160 break;
4161 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004162 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004163 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004164 case IXGBE_ERR_EEPROM_VERSION:
4165 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004166 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004167 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00004168 "your hardware. If you are experiencing problems "
4169 "please contact your Intel or hardware "
4170 "representative who provided you with this "
4171 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004172 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004173 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004174 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004175 }
Auke Kok9a799d72007-09-15 14:07:45 -07004176
Alexander Duyck70864002011-04-27 09:13:56 +00004177 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4178
Auke Kok9a799d72007-09-15 14:07:45 -07004179 /* reprogram the RAR[0] in case user changed it. */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004180 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00004181
4182 /* update SAN MAC vmdq pool selection */
4183 if (hw->mac.san_mac_rar_index)
4184 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
Auke Kok9a799d72007-09-15 14:07:45 -07004185}
4186
Auke Kok9a799d72007-09-15 14:07:45 -07004187/**
4188 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004189 * @rx_ring: ring to free buffers from
4190 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004191static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004192{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004193 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004194 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004195 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004196
Alexander Duyck84418e32010-08-19 13:40:54 +00004197 /* ring already cleared, nothing to do */
4198 if (!rx_ring->rx_buffer_info)
4199 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004200
Alexander Duyck84418e32010-08-19 13:40:54 +00004201 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004202 for (i = 0; i < rx_ring->count; i++) {
Alexander Duyckf8003262012-03-03 02:35:52 +00004203 struct ixgbe_rx_buffer *rx_buffer;
Auke Kok9a799d72007-09-15 14:07:45 -07004204
Alexander Duyckf8003262012-03-03 02:35:52 +00004205 rx_buffer = &rx_ring->rx_buffer_info[i];
4206 if (rx_buffer->skb) {
4207 struct sk_buff *skb = rx_buffer->skb;
4208 if (IXGBE_CB(skb)->page_released) {
4209 dma_unmap_page(dev,
4210 IXGBE_CB(skb)->dma,
4211 ixgbe_rx_bufsz(rx_ring),
4212 DMA_FROM_DEVICE);
4213 IXGBE_CB(skb)->page_released = false;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00004214 }
4215 dev_kfree_skb(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07004216 }
Alexander Duyckf8003262012-03-03 02:35:52 +00004217 rx_buffer->skb = NULL;
4218 if (rx_buffer->dma)
4219 dma_unmap_page(dev, rx_buffer->dma,
4220 ixgbe_rx_pg_size(rx_ring),
4221 DMA_FROM_DEVICE);
4222 rx_buffer->dma = 0;
4223 if (rx_buffer->page)
Alexander Duyckdd411ec2012-04-06 04:24:50 +00004224 __free_pages(rx_buffer->page,
4225 ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00004226 rx_buffer->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07004227 }
4228
4229 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4230 memset(rx_ring->rx_buffer_info, 0, size);
4231
4232 /* Zero out the descriptor ring */
4233 memset(rx_ring->desc, 0, rx_ring->size);
4234
Alexander Duyckf8003262012-03-03 02:35:52 +00004235 rx_ring->next_to_alloc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004236 rx_ring->next_to_clean = 0;
4237 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004238}
4239
4240/**
4241 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004242 * @tx_ring: ring to be cleaned
4243 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004244static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004245{
4246 struct ixgbe_tx_buffer *tx_buffer_info;
4247 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004248 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004249
Alexander Duyck84418e32010-08-19 13:40:54 +00004250 /* ring already cleared, nothing to do */
4251 if (!tx_ring->tx_buffer_info)
4252 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004253
Alexander Duyck84418e32010-08-19 13:40:54 +00004254 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004255 for (i = 0; i < tx_ring->count; i++) {
4256 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004257 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004258 }
4259
John Fastabenddad8a3b2012-04-23 12:22:39 +00004260 netdev_tx_reset_queue(txring_txq(tx_ring));
4261
Auke Kok9a799d72007-09-15 14:07:45 -07004262 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4263 memset(tx_ring->tx_buffer_info, 0, size);
4264
4265 /* Zero out the descriptor ring */
4266 memset(tx_ring->desc, 0, tx_ring->size);
4267
4268 tx_ring->next_to_use = 0;
4269 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004270}
4271
4272/**
Auke Kok9a799d72007-09-15 14:07:45 -07004273 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4274 * @adapter: board private structure
4275 **/
4276static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4277{
4278 int i;
4279
4280 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004281 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004282}
4283
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004284/**
4285 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4286 * @adapter: board private structure
4287 **/
4288static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4289{
4290 int i;
4291
4292 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004293 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004294}
4295
Alexander Duycke4911d52011-05-11 07:18:52 +00004296static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4297{
4298 struct hlist_node *node, *node2;
4299 struct ixgbe_fdir_filter *filter;
4300
4301 spin_lock(&adapter->fdir_perfect_lock);
4302
4303 hlist_for_each_entry_safe(filter, node, node2,
4304 &adapter->fdir_filter_list, fdir_node) {
4305 hlist_del(&filter->fdir_node);
4306 kfree(filter);
4307 }
4308 adapter->fdir_filter_count = 0;
4309
4310 spin_unlock(&adapter->fdir_perfect_lock);
4311}
4312
Auke Kok9a799d72007-09-15 14:07:45 -07004313void ixgbe_down(struct ixgbe_adapter *adapter)
4314{
4315 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004316 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004317 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004318 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004319
4320 /* signal that we are down to the interrupt handler */
4321 set_bit(__IXGBE_DOWN, &adapter->state);
4322
4323 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004324 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4325 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004326
Yi Zou2d39d572011-01-06 14:29:56 +00004327 /* disable all enabled rx queues */
4328 for (i = 0; i < adapter->num_rx_queues; i++)
4329 /* this call also flushes the previous write */
4330 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4331
Don Skidmore032b4322011-03-18 09:32:53 +00004332 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004333
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004334 netif_tx_stop_all_queues(netdev);
4335
Alexander Duyck70864002011-04-27 09:13:56 +00004336 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004337 netif_carrier_off(netdev);
4338 netif_tx_disable(netdev);
4339
4340 ixgbe_irq_disable(adapter);
4341
4342 ixgbe_napi_disable_all(adapter);
4343
Alexander Duyckd034acf2011-04-27 09:25:34 +00004344 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4345 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004346 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4347
4348 del_timer_sync(&adapter->service_timer);
4349
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004350 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004351 /* Clear EITR Select mapping */
4352 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4353
4354 /* Mark all the VFs as inactive */
4355 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004356 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004357
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004358 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004359 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004360
Auke Kok9a799d72007-09-15 14:07:45 -07004361 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004362 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004363 }
4364
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004365 /* disable transmits in the hardware now that interrupts are off */
4366 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004367 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004368 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004369 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004370
4371 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004372 switch (hw->mac.type) {
4373 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004374 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004375 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004376 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4377 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004378 break;
4379 default:
4380 break;
4381 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004382
Paul Larson6f4a0e42008-06-24 17:00:56 -07004383 if (!pci_channel_offline(adapter->pdev))
4384 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004385
4386 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4387 if (hw->mac.ops.disable_tx_laser &&
4388 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004389 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004390 (hw->mac.type == ixgbe_mac_82599EB))))
4391 hw->mac.ops.disable_tx_laser(hw);
4392
Auke Kok9a799d72007-09-15 14:07:45 -07004393 ixgbe_clean_all_tx_rings(adapter);
4394 ixgbe_clean_all_rx_rings(adapter);
4395
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004396#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004397 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004398 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004399#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004400}
4401
Auke Kok9a799d72007-09-15 14:07:45 -07004402/**
Auke Kok9a799d72007-09-15 14:07:45 -07004403 * ixgbe_tx_timeout - Respond to a Tx Hang
4404 * @netdev: network interface device structure
4405 **/
4406static void ixgbe_tx_timeout(struct net_device *netdev)
4407{
4408 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4409
4410 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004411 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004412}
4413
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004414/**
Auke Kok9a799d72007-09-15 14:07:45 -07004415 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4416 * @adapter: board private structure to initialize
4417 *
4418 * ixgbe_sw_init initializes the Adapter private data structure.
4419 * Fields are initialized based on PCI device information and
4420 * OS network device settings (MTU size).
4421 **/
4422static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
4423{
4424 struct ixgbe_hw *hw = &adapter->hw;
4425 struct pci_dev *pdev = adapter->pdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004426 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004427#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004428 int j;
4429 struct tc_configuration *tc;
4430#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004431
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004432 /* PCI config space info */
4433
4434 hw->vendor_id = pdev->vendor;
4435 hw->device_id = pdev->device;
4436 hw->revision_id = pdev->revision;
4437 hw->subsystem_vendor_id = pdev->subsystem_vendor;
4438 hw->subsystem_device_id = pdev->subsystem_device;
4439
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004440 /* Set capability flags */
Jesse Brandeburg3ed69d72012-02-10 10:20:02 +00004441 rss = min_t(int, IXGBE_MAX_RSS_INDICES, num_online_cpus());
Alexander Duyckc0876632012-05-10 00:01:46 +00004442 adapter->ring_feature[RING_F_RSS].limit = rss;
Alexander Duyckbd508172010-11-16 19:27:03 -08004443 switch (hw->mac.type) {
4444 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00004445 if (hw->device_id == IXGBE_DEV_ID_82598AT)
4446 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004447 adapter->max_q_vectors = MAX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08004448 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08004449 case ixgbe_mac_X540:
Jacob Keller4f51bf72011-08-20 04:49:45 +00004450 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
4451 case ixgbe_mac_82599EB:
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004452 adapter->max_q_vectors = MAX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00004453 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
4454 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004455 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
4456 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00004457 /* Flow Director hash filters enabled */
Alexander Duyck45b9f502011-01-06 14:29:59 +00004458 adapter->atr_sample_rate = 20;
Alexander Duyckc0876632012-05-10 00:01:46 +00004459 adapter->ring_feature[RING_F_FDIR].limit =
Joe Perchese8e9f692010-09-07 21:34:53 +00004460 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00004461 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00004462#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00004463 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
4464 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
Yi Zou61a0f422009-12-03 11:32:22 +00004465#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00004466 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00004467 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00004468#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00004469#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08004470 break;
4471 default:
4472 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00004473 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004474
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004475#ifdef IXGBE_FCOE
4476 /* FCoE support exists, always init the FCoE lock */
4477 spin_lock_init(&adapter->fcoe.lock);
4478
4479#endif
Alexander Duyck1fc5f032011-06-02 04:28:39 +00004480 /* n-tuple support exists, always init our spinlock */
4481 spin_lock_init(&adapter->fdir_perfect_lock);
4482
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004483#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00004484 switch (hw->mac.type) {
4485 case ixgbe_mac_X540:
4486 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
4487 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
4488 break;
4489 default:
4490 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
4491 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
4492 break;
4493 }
4494
Alexander Duyck2f90b862008-11-20 20:52:10 -08004495 /* Configure DCB traffic classes */
4496 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
4497 tc = &adapter->dcb_cfg.tc_config[j];
4498 tc->path[DCB_TX_CONFIG].bwg_id = 0;
4499 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
4500 tc->path[DCB_RX_CONFIG].bwg_id = 0;
4501 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
4502 tc->dcb_pfc = pfc_disabled;
4503 }
John Fastabend4de2a022011-09-27 03:52:01 +00004504
4505 /* Initialize default user to priority mapping, UPx->TC0 */
4506 tc = &adapter->dcb_cfg.tc_config[0];
4507 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
4508 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
4509
Alexander Duyck2f90b862008-11-20 20:52:10 -08004510 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
4511 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00004512 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004513 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00004514 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
John Fastabendf525c6d22012-04-18 22:42:27 +00004515 memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg,
4516 sizeof(adapter->temp_dcb_cfg));
Alexander Duyck2f90b862008-11-20 20:52:10 -08004517
4518#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004519
4520 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00004521 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00004522 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
John Fastabend9da712d2011-08-23 03:14:22 +00004523 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07004524 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
4525 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00004526 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07004527
Alexander Duyck99d74482012-05-09 08:09:25 +00004528#ifdef CONFIG_PCI_IOV
4529 /* assign number of SR-IOV VFs */
4530 if (hw->mac.type != ixgbe_mac_82598EB)
4531 adapter->num_vfs = (max_vfs > 63) ? 0 : max_vfs;
4532
4533#endif
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004534 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004535 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004536 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004537
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004538 /* set default ring sizes */
4539 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
4540 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
4541
Alexander Duyckbd198052011-06-11 01:45:08 +00004542 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00004543 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00004544
Auke Kok9a799d72007-09-15 14:07:45 -07004545 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004546 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004547 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07004548 return -EIO;
4549 }
4550
Auke Kok9a799d72007-09-15 14:07:45 -07004551 set_bit(__IXGBE_DOWN, &adapter->state);
4552
4553 return 0;
4554}
4555
4556/**
4557 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004558 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004559 *
4560 * Return 0 on success, negative on failure
4561 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004562int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004563{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004564 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004565 int orig_node = dev_to_node(dev);
4566 int numa_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07004567 int size;
4568
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004569 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004570
4571 if (tx_ring->q_vector)
4572 numa_node = tx_ring->q_vector->numa_node;
4573
4574 tx_ring->tx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004575 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004576 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004577 if (!tx_ring->tx_buffer_info)
4578 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004579
4580 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08004581 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004582 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004583
Alexander Duyckde88eee2012-02-08 07:49:59 +00004584 set_dev_node(dev, numa_node);
4585 tx_ring->desc = dma_alloc_coherent(dev,
4586 tx_ring->size,
4587 &tx_ring->dma,
4588 GFP_KERNEL);
4589 set_dev_node(dev, orig_node);
4590 if (!tx_ring->desc)
4591 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
4592 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004593 if (!tx_ring->desc)
4594 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004595
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004596 tx_ring->next_to_use = 0;
4597 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004598 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004599
4600err:
4601 vfree(tx_ring->tx_buffer_info);
4602 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004603 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004604 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004605}
4606
4607/**
Alexander Duyck69888672008-09-11 20:05:39 -07004608 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
4609 * @adapter: board private structure
4610 *
4611 * If this function returns with an error, then it's possible one or
4612 * more of the rings is populated (while the rest are not). It is the
4613 * callers duty to clean those orphaned rings.
4614 *
4615 * Return 0 on success, negative on failure
4616 **/
4617static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
4618{
4619 int i, err = 0;
4620
4621 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004622 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004623 if (!err)
4624 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004625
Emil Tantilov396e7992010-07-01 20:05:12 +00004626 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004627 goto err_setup_tx;
Alexander Duyck69888672008-09-11 20:05:39 -07004628 }
4629
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004630 return 0;
4631err_setup_tx:
4632 /* rewind the index freeing the rings as we go */
4633 while (i--)
4634 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004635 return err;
4636}
4637
4638/**
Auke Kok9a799d72007-09-15 14:07:45 -07004639 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004640 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004641 *
4642 * Returns 0 on success, negative on failure
4643 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004644int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004645{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004646 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004647 int orig_node = dev_to_node(dev);
4648 int numa_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004649 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07004650
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004651 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004652
4653 if (rx_ring->q_vector)
4654 numa_node = rx_ring->q_vector->numa_node;
4655
4656 rx_ring->rx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004657 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004658 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004659 if (!rx_ring->rx_buffer_info)
4660 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004661
Auke Kok9a799d72007-09-15 14:07:45 -07004662 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004663 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
4664 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004665
Alexander Duyckde88eee2012-02-08 07:49:59 +00004666 set_dev_node(dev, numa_node);
4667 rx_ring->desc = dma_alloc_coherent(dev,
4668 rx_ring->size,
4669 &rx_ring->dma,
4670 GFP_KERNEL);
4671 set_dev_node(dev, orig_node);
4672 if (!rx_ring->desc)
4673 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
4674 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004675 if (!rx_ring->desc)
4676 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004677
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004678 rx_ring->next_to_clean = 0;
4679 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004680
4681 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004682err:
4683 vfree(rx_ring->rx_buffer_info);
4684 rx_ring->rx_buffer_info = NULL;
4685 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07004686 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004687}
4688
4689/**
Alexander Duyck69888672008-09-11 20:05:39 -07004690 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
4691 * @adapter: board private structure
4692 *
4693 * If this function returns with an error, then it's possible one or
4694 * more of the rings is populated (while the rest are not). It is the
4695 * callers duty to clean those orphaned rings.
4696 *
4697 * Return 0 on success, negative on failure
4698 **/
Alexander Duyck69888672008-09-11 20:05:39 -07004699static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
4700{
4701 int i, err = 0;
4702
4703 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004704 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004705 if (!err)
4706 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004707
Emil Tantilov396e7992010-07-01 20:05:12 +00004708 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004709 goto err_setup_rx;
Alexander Duyck69888672008-09-11 20:05:39 -07004710 }
4711
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004712#ifdef IXGBE_FCOE
4713 err = ixgbe_setup_fcoe_ddp_resources(adapter);
4714 if (!err)
4715#endif
4716 return 0;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004717err_setup_rx:
4718 /* rewind the index freeing the rings as we go */
4719 while (i--)
4720 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004721 return err;
4722}
4723
4724/**
Auke Kok9a799d72007-09-15 14:07:45 -07004725 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004726 * @tx_ring: Tx descriptor ring for a specific queue
4727 *
4728 * Free all transmit software resources
4729 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004730void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004731{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004732 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004733
4734 vfree(tx_ring->tx_buffer_info);
4735 tx_ring->tx_buffer_info = NULL;
4736
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004737 /* if not set, then don't free */
4738 if (!tx_ring->desc)
4739 return;
4740
4741 dma_free_coherent(tx_ring->dev, tx_ring->size,
4742 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004743
4744 tx_ring->desc = NULL;
4745}
4746
4747/**
4748 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
4749 * @adapter: board private structure
4750 *
4751 * Free all transmit software resources
4752 **/
4753static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
4754{
4755 int i;
4756
4757 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004758 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004759 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004760}
4761
4762/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07004763 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07004764 * @rx_ring: ring to clean the resources from
4765 *
4766 * Free all receive software resources
4767 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004768void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004769{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004770 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004771
4772 vfree(rx_ring->rx_buffer_info);
4773 rx_ring->rx_buffer_info = NULL;
4774
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004775 /* if not set, then don't free */
4776 if (!rx_ring->desc)
4777 return;
4778
4779 dma_free_coherent(rx_ring->dev, rx_ring->size,
4780 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004781
4782 rx_ring->desc = NULL;
4783}
4784
4785/**
4786 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
4787 * @adapter: board private structure
4788 *
4789 * Free all receive software resources
4790 **/
4791static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
4792{
4793 int i;
4794
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004795#ifdef IXGBE_FCOE
4796 ixgbe_free_fcoe_ddp_resources(adapter);
4797
4798#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004799 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004800 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004801 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004802}
4803
4804/**
Auke Kok9a799d72007-09-15 14:07:45 -07004805 * ixgbe_change_mtu - Change the Maximum Transfer Unit
4806 * @netdev: network interface device structure
4807 * @new_mtu: new value for maximum frame size
4808 *
4809 * Returns 0 on success, negative on failure
4810 **/
4811static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
4812{
4813 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4814 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
4815
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07004816 /* MTU < 68 is an error and causes problems on some kernels */
Alexander Duyck655309e2012-02-08 07:50:35 +00004817 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
4818 return -EINVAL;
4819
4820 /*
4821 * For 82599EB we cannot allow PF to change MTU greater than 1500
4822 * in SR-IOV mode as it may cause buffer overruns in guest VFs that
4823 * don't allocate and chain buffers correctly.
4824 */
4825 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
4826 (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
4827 (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
Greg Rosee9f98072011-01-26 01:06:07 +00004828 return -EINVAL;
Auke Kok9a799d72007-09-15 14:07:45 -07004829
Emil Tantilov396e7992010-07-01 20:05:12 +00004830 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Alexander Duyck655309e2012-02-08 07:50:35 +00004831
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004832 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07004833 netdev->mtu = new_mtu;
4834
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004835 if (netif_running(netdev))
4836 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004837
4838 return 0;
4839}
4840
4841/**
4842 * ixgbe_open - Called when a network interface is made active
4843 * @netdev: network interface device structure
4844 *
4845 * Returns 0 on success, negative value on failure
4846 *
4847 * The open entry point is called when a network interface is made
4848 * active by the system (IFF_UP). At this point all resources needed
4849 * for transmit and receive operations are allocated, the interrupt
4850 * handler is registered with the OS, the watchdog timer is started,
4851 * and the stack is notified that the interface is ready.
4852 **/
4853static int ixgbe_open(struct net_device *netdev)
4854{
4855 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4856 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07004857
Auke Kok4bebfaa2008-02-11 09:26:01 -08004858 /* disallow open during test */
4859 if (test_bit(__IXGBE_TESTING, &adapter->state))
4860 return -EBUSY;
4861
Jesse Brandeburg54386462009-04-17 20:44:27 +00004862 netif_carrier_off(netdev);
4863
Auke Kok9a799d72007-09-15 14:07:45 -07004864 /* allocate transmit descriptors */
4865 err = ixgbe_setup_all_tx_resources(adapter);
4866 if (err)
4867 goto err_setup_tx;
4868
Auke Kok9a799d72007-09-15 14:07:45 -07004869 /* allocate receive descriptors */
4870 err = ixgbe_setup_all_rx_resources(adapter);
4871 if (err)
4872 goto err_setup_rx;
4873
4874 ixgbe_configure(adapter);
4875
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004876 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004877 if (err)
4878 goto err_req_irq;
4879
Alexander Duyckac802f52012-07-12 05:52:53 +00004880 /* Notify the stack of the actual queue counts. */
4881 err = netif_set_real_num_tx_queues(netdev,
4882 adapter->num_rx_pools > 1 ? 1 :
4883 adapter->num_tx_queues);
4884 if (err)
4885 goto err_set_queues;
4886
4887
4888 err = netif_set_real_num_rx_queues(netdev,
4889 adapter->num_rx_pools > 1 ? 1 :
4890 adapter->num_rx_queues);
4891 if (err)
4892 goto err_set_queues;
4893
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004894 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004895
4896 return 0;
4897
Alexander Duyckac802f52012-07-12 05:52:53 +00004898err_set_queues:
4899 ixgbe_free_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004900err_req_irq:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004901 ixgbe_free_all_rx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004902err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004903 ixgbe_free_all_tx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004904err_setup_tx:
Auke Kok9a799d72007-09-15 14:07:45 -07004905 ixgbe_reset(adapter);
4906
4907 return err;
4908}
4909
4910/**
4911 * ixgbe_close - Disables a network interface
4912 * @netdev: network interface device structure
4913 *
4914 * Returns 0, this is not allowed to fail
4915 *
4916 * The close entry point is called when an interface is de-activated
4917 * by the OS. The hardware is still under the drivers control, but
4918 * needs to be disabled. A global MAC reset is issued to stop the
4919 * hardware, and all transmit and receive resources are freed.
4920 **/
4921static int ixgbe_close(struct net_device *netdev)
4922{
4923 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07004924
4925 ixgbe_down(adapter);
4926 ixgbe_free_irq(adapter);
4927
Alexander Duycke4911d52011-05-11 07:18:52 +00004928 ixgbe_fdir_filter_exit(adapter);
4929
Auke Kok9a799d72007-09-15 14:07:45 -07004930 ixgbe_free_all_tx_resources(adapter);
4931 ixgbe_free_all_rx_resources(adapter);
4932
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08004933 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004934
4935 return 0;
4936}
4937
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004938#ifdef CONFIG_PM
4939static int ixgbe_resume(struct pci_dev *pdev)
4940{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004941 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4942 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004943 u32 err;
4944
4945 pci_set_power_state(pdev, PCI_D0);
4946 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08004947 /*
4948 * pci_restore_state clears dev->state_saved so call
4949 * pci_save_state to restore it.
4950 */
4951 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00004952
4953 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004954 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004955 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004956 return err;
4957 }
4958 pci_set_master(pdev);
4959
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07004960 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004961
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004962 ixgbe_reset(adapter);
4963
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00004964 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
4965
Alexander Duyckac802f52012-07-12 05:52:53 +00004966 rtnl_lock();
4967 err = ixgbe_init_interrupt_scheme(adapter);
4968 if (!err && netif_running(netdev))
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004969 err = ixgbe_open(netdev);
Alexander Duyckac802f52012-07-12 05:52:53 +00004970
4971 rtnl_unlock();
4972
4973 if (err)
4974 return err;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004975
4976 netif_device_attach(netdev);
4977
4978 return 0;
4979}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004980#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00004981
4982static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004983{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004984 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4985 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004986 struct ixgbe_hw *hw = &adapter->hw;
4987 u32 ctrl, fctrl;
4988 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004989#ifdef CONFIG_PM
4990 int retval = 0;
4991#endif
4992
4993 netif_device_detach(netdev);
4994
4995 if (netif_running(netdev)) {
Don Skidmoreab6039a2012-03-17 05:51:52 +00004996 rtnl_lock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004997 ixgbe_down(adapter);
4998 ixgbe_free_irq(adapter);
4999 ixgbe_free_all_tx_resources(adapter);
5000 ixgbe_free_all_rx_resources(adapter);
Don Skidmoreab6039a2012-03-17 05:51:52 +00005001 rtnl_unlock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005002 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005003
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005004 ixgbe_clear_interrupt_scheme(adapter);
5005
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005006#ifdef CONFIG_PM
5007 retval = pci_save_state(pdev);
5008 if (retval)
5009 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005010
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005011#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005012 if (wufc) {
5013 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005014
Don Skidmorec509e752012-04-05 08:12:05 +00005015 /*
5016 * enable the optics for both mult-speed fiber and
5017 * 82599 SFP+ fiber as we can WoL.
5018 */
5019 if (hw->mac.ops.enable_tx_laser &&
5020 (hw->phy.multispeed_fiber ||
5021 (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber &&
5022 hw->mac.type == ixgbe_mac_82599EB)))
5023 hw->mac.ops.enable_tx_laser(hw);
5024
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005025 /* turn on all-multi mode if wake on multicast is enabled */
5026 if (wufc & IXGBE_WUFC_MC) {
5027 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5028 fctrl |= IXGBE_FCTRL_MPE;
5029 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5030 }
5031
5032 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5033 ctrl |= IXGBE_CTRL_GIO_DIS;
5034 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5035
5036 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5037 } else {
5038 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5039 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5040 }
5041
Alexander Duyckbd508172010-11-16 19:27:03 -08005042 switch (hw->mac.type) {
5043 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005044 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005045 break;
5046 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005047 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005048 pci_wake_from_d3(pdev, !!wufc);
5049 break;
5050 default:
5051 break;
5052 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005053
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005054 *enable_wake = !!wufc;
5055
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005056 ixgbe_release_hw_control(adapter);
5057
5058 pci_disable_device(pdev);
5059
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005060 return 0;
5061}
5062
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005063#ifdef CONFIG_PM
5064static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5065{
5066 int retval;
5067 bool wake;
5068
5069 retval = __ixgbe_shutdown(pdev, &wake);
5070 if (retval)
5071 return retval;
5072
5073 if (wake) {
5074 pci_prepare_to_sleep(pdev);
5075 } else {
5076 pci_wake_from_d3(pdev, false);
5077 pci_set_power_state(pdev, PCI_D3hot);
5078 }
5079
5080 return 0;
5081}
5082#endif /* CONFIG_PM */
5083
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005084static void ixgbe_shutdown(struct pci_dev *pdev)
5085{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005086 bool wake;
5087
5088 __ixgbe_shutdown(pdev, &wake);
5089
5090 if (system_state == SYSTEM_POWER_OFF) {
5091 pci_wake_from_d3(pdev, wake);
5092 pci_set_power_state(pdev, PCI_D3hot);
5093 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005094}
5095
5096/**
Auke Kok9a799d72007-09-15 14:07:45 -07005097 * ixgbe_update_stats - Update the board statistics counters.
5098 * @adapter: board private structure
5099 **/
5100void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5101{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005102 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005103 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005104 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005105 u64 total_mpc = 0;
5106 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005107 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5108 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005109 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005110
Don Skidmored08935c2010-06-11 13:20:29 +00005111 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5112 test_bit(__IXGBE_RESETTING, &adapter->state))
5113 return;
5114
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005115 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005116 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005117 u64 rsc_flush = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005118 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005119 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5120 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005121 }
5122 adapter->rsc_total_count = rsc_count;
5123 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005124 }
5125
Alexander Duyck5b7da512010-11-16 19:26:50 -08005126 for (i = 0; i < adapter->num_rx_queues; i++) {
5127 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5128 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5129 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5130 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005131 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005132 bytes += rx_ring->stats.bytes;
5133 packets += rx_ring->stats.packets;
5134 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005135 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005136 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5137 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005138 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005139 netdev->stats.rx_bytes = bytes;
5140 netdev->stats.rx_packets = packets;
5141
5142 bytes = 0;
5143 packets = 0;
5144 /* gather some stats to the adapter struct that are per queue */
5145 for (i = 0; i < adapter->num_tx_queues; i++) {
5146 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5147 restart_queue += tx_ring->tx_stats.restart_queue;
5148 tx_busy += tx_ring->tx_stats.tx_busy;
5149 bytes += tx_ring->stats.bytes;
5150 packets += tx_ring->stats.packets;
5151 }
5152 adapter->restart_queue = restart_queue;
5153 adapter->tx_busy = tx_busy;
5154 netdev->stats.tx_bytes = bytes;
5155 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005156
Joe Perches7ca647b2010-09-07 21:35:40 +00005157 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005158
5159 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005160 for (i = 0; i < 8; i++) {
5161 /* for packet buffers not used, the register should read 0 */
5162 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5163 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005164 hwstats->mpc[i] += mpc;
5165 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005166 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5167 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005168 switch (hw->mac.type) {
5169 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005170 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5171 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5172 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005173 hwstats->pxonrxc[i] +=
5174 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005175 break;
5176 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005177 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005178 hwstats->pxonrxc[i] +=
5179 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005180 break;
5181 default:
5182 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005183 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005184 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005185
5186 /*16 register reads */
5187 for (i = 0; i < 16; i++) {
5188 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5189 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5190 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5191 (hw->mac.type == ixgbe_mac_X540)) {
5192 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5193 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5194 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5195 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5196 }
5197 }
5198
Joe Perches7ca647b2010-09-07 21:35:40 +00005199 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005200 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005201 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005202
John Fastabendc84d3242010-11-16 19:27:12 -08005203 ixgbe_update_xoff_received(adapter);
5204
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005205 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005206 switch (hw->mac.type) {
5207 case ixgbe_mac_82598EB:
5208 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005209 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5210 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5211 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5212 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005213 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005214 /* OS2BMC stats are X540 only*/
5215 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5216 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5217 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5218 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5219 case ixgbe_mac_82599EB:
Alexander Duycka4d4f622012-03-28 08:03:32 +00005220 for (i = 0; i < 16; i++)
5221 adapter->hw_rx_no_dma_resources +=
5222 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005223 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005224 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005225 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005226 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005227 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005228 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005229 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005230 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5231 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005232#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005233 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5234 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5235 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5236 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5237 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5238 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005239 /* Add up per cpu counters for total ddp aloc fail */
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005240 if (adapter->fcoe.ddp_pool) {
5241 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5242 struct ixgbe_fcoe_ddp_pool *ddp_pool;
5243 unsigned int cpu;
5244 u64 noddp = 0, noddp_ext_buff = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005245 for_each_possible_cpu(cpu) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005246 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
5247 noddp += ddp_pool->noddp;
5248 noddp_ext_buff += ddp_pool->noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005249 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005250 hwstats->fcoe_noddp = noddp;
5251 hwstats->fcoe_noddp_ext_buff = noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005252 }
Yi Zou6d455222009-05-13 13:12:16 +00005253#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005254 break;
5255 default:
5256 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005257 }
Auke Kok9a799d72007-09-15 14:07:45 -07005258 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005259 hwstats->bprc += bprc;
5260 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005261 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005262 hwstats->mprc -= bprc;
5263 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5264 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5265 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5266 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5267 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5268 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5269 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5270 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005271 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005272 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005273 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005274 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005275 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5276 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005277 /*
5278 * 82598 errata - tx of flow control packets is included in tx counters
5279 */
5280 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005281 hwstats->gptc -= xon_off_tot;
5282 hwstats->mptc -= xon_off_tot;
5283 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5284 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5285 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5286 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5287 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5288 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5289 hwstats->ptc64 -= xon_off_tot;
5290 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5291 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5292 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5293 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5294 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5295 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005296
5297 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005298 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005299
5300 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005301 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005302 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005303 netdev->stats.rx_length_errors = hwstats->rlec;
5304 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005305 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005306}
5307
5308/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005309 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005310 * @adapter: pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005311 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005312static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005313{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005314 struct ixgbe_hw *hw = &adapter->hw;
5315 int i;
5316
Alexander Duyckd034acf2011-04-27 09:25:34 +00005317 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5318 return;
5319
5320 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5321
5322 /* if interface is down do nothing */
5323 if (test_bit(__IXGBE_DOWN, &adapter->state))
5324 return;
5325
5326 /* do nothing if we are not using signature filters */
5327 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5328 return;
5329
5330 adapter->fdir_overflow++;
5331
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005332 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5333 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005334 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005335 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005336 /* re-enable flow director interrupts */
5337 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005338 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005339 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005340 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005341 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005342}
5343
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005344/**
5345 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005346 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005347 *
5348 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005349 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005350 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005351 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005352 */
5353static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5354{
Auke Kok9a799d72007-09-15 14:07:45 -07005355 struct ixgbe_hw *hw = &adapter->hw;
5356 u64 eics = 0;
5357 int i;
5358
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005359 /* If we're down or resetting, just bail */
5360 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5361 test_bit(__IXGBE_RESETTING, &adapter->state))
5362 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005363
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005364 /* Force detection of hung controller */
5365 if (netif_carrier_ok(adapter->netdev)) {
5366 for (i = 0; i < adapter->num_tx_queues; i++)
5367 set_check_for_tx_hang(adapter->tx_ring[i]);
5368 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005369
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005370 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005371 /*
5372 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005373 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005374 * would set *both* EIMS and EICS for any bit in EIAM
5375 */
5376 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5377 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005378 } else {
5379 /* get one bit for every active tx/rx interrupt vector */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00005380 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005381 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00005382 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005383 eics |= ((u64)1 << i);
5384 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005385 }
5386
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005387 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005388 ixgbe_irq_rearm_queues(adapter, eics);
5389
Alexander Duyckfe49f042009-06-04 16:00:09 +00005390}
5391
5392/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005393 * ixgbe_watchdog_update_link - update the link status
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005394 * @adapter: pointer to the device adapter structure
5395 * @link_speed: pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005396 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005397static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005398{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005399 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005400 u32 link_speed = adapter->link_speed;
5401 bool link_up = adapter->link_up;
Alexander Duyck041441d2012-04-19 17:48:48 +00005402 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005403
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005404 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5405 return;
5406
5407 if (hw->mac.ops.check_link) {
5408 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005409 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005410 /* always assume link is up, if no check link function */
5411 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
5412 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005413 }
Alexander Duyck041441d2012-04-19 17:48:48 +00005414
5415 if (adapter->ixgbe_ieee_pfc)
5416 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
5417
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005418 if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
Alexander Duyck041441d2012-04-19 17:48:48 +00005419 hw->mac.ops.fc_enable(hw);
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005420 ixgbe_set_rx_drop_en(adapter);
5421 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005422
5423 if (link_up ||
5424 time_after(jiffies, (adapter->link_check_timeout +
5425 IXGBE_TRY_LINK_TIMEOUT))) {
5426 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5427 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
5428 IXGBE_WRITE_FLUSH(hw);
5429 }
5430
5431 adapter->link_up = link_up;
5432 adapter->link_speed = link_speed;
5433}
5434
5435/**
5436 * ixgbe_watchdog_link_is_up - update netif_carrier status and
5437 * print link up message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005438 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005439 **/
5440static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
5441{
5442 struct net_device *netdev = adapter->netdev;
5443 struct ixgbe_hw *hw = &adapter->hw;
5444 u32 link_speed = adapter->link_speed;
5445 bool flow_rx, flow_tx;
5446
5447 /* only continue if link was previously down */
5448 if (netif_carrier_ok(netdev))
5449 return;
5450
5451 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
5452
5453 switch (hw->mac.type) {
5454 case ixgbe_mac_82598EB: {
5455 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5456 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
5457 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
5458 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
5459 }
5460 break;
5461 case ixgbe_mac_X540:
5462 case ixgbe_mac_82599EB: {
5463 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
5464 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
5465 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
5466 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
5467 }
5468 break;
5469 default:
5470 flow_tx = false;
5471 flow_rx = false;
5472 break;
5473 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005474
5475#ifdef CONFIG_IXGBE_PTP
5476 ixgbe_ptp_start_cyclecounter(adapter);
5477#endif
5478
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005479 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
5480 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
5481 "10 Gbps" :
5482 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
5483 "1 Gbps" :
5484 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
5485 "100 Mbps" :
5486 "unknown speed"))),
5487 ((flow_rx && flow_tx) ? "RX/TX" :
5488 (flow_rx ? "RX" :
5489 (flow_tx ? "TX" : "None"))));
5490
5491 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005492 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005493
5494 /* ping all the active vfs to let them know link has changed */
5495 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005496}
5497
5498/**
5499 * ixgbe_watchdog_link_is_down - update netif_carrier status and
5500 * print link down message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005501 * @adapter: pointer to the adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005502 **/
Alexander Duyck581330b2012-02-08 07:51:47 +00005503static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005504{
5505 struct net_device *netdev = adapter->netdev;
5506 struct ixgbe_hw *hw = &adapter->hw;
5507
5508 adapter->link_up = false;
5509 adapter->link_speed = 0;
5510
5511 /* only continue if link was up previously */
5512 if (!netif_carrier_ok(netdev))
5513 return;
5514
5515 /* poll for SFP+ cable when link is down */
5516 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
5517 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
5518
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005519#ifdef CONFIG_IXGBE_PTP
5520 ixgbe_ptp_start_cyclecounter(adapter);
5521#endif
5522
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005523 e_info(drv, "NIC Link is Down\n");
5524 netif_carrier_off(netdev);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005525
5526 /* ping all the active vfs to let them know link has changed */
5527 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005528}
5529
5530/**
5531 * ixgbe_watchdog_flush_tx - flush queues on link down
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005532 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005533 **/
5534static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
5535{
5536 int i;
5537 int some_tx_pending = 0;
5538
5539 if (!netif_carrier_ok(adapter->netdev)) {
5540 for (i = 0; i < adapter->num_tx_queues; i++) {
5541 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5542 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
5543 some_tx_pending = 1;
5544 break;
5545 }
5546 }
5547
5548 if (some_tx_pending) {
5549 /* We've lost link, so the controller stops DMA,
5550 * but we've got queued Tx work that's never going
5551 * to get done, so reset controller to flush Tx.
5552 * (Do the reset outside of interrupt context).
5553 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005554 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005555 }
5556 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005557}
5558
Greg Rosea985b6c32010-11-18 03:02:52 +00005559static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
5560{
5561 u32 ssvpc;
5562
Greg Rose0584d992012-08-08 00:00:58 +00005563 /* Do not perform spoof check for 82598 or if not in IOV mode */
5564 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
5565 adapter->num_vfs == 0)
Greg Rosea985b6c32010-11-18 03:02:52 +00005566 return;
5567
5568 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
5569
5570 /*
5571 * ssvpc register is cleared on read, if zero then no
5572 * spoofed packets in the last interval.
5573 */
5574 if (!ssvpc)
5575 return;
5576
Emil Tantilovd6ea0752012-08-08 06:28:37 +00005577 e_warn(drv, "%u Spoofed packets detected\n", ssvpc);
Greg Rosea985b6c32010-11-18 03:02:52 +00005578}
5579
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005580/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005581 * ixgbe_watchdog_subtask - check and bring link up
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005582 * @adapter: pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005583 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005584static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005585{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005586 /* if interface is down do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00005587 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5588 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005589 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005590
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005591 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00005592
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005593 if (adapter->link_up)
5594 ixgbe_watchdog_link_is_up(adapter);
5595 else
5596 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005597
Greg Rosea985b6c32010-11-18 03:02:52 +00005598 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005599 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005600
5601 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005602}
5603
Alexander Duyck70864002011-04-27 09:13:56 +00005604/**
5605 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005606 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005607 **/
5608static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
5609{
5610 struct ixgbe_hw *hw = &adapter->hw;
5611 s32 err;
5612
5613 /* not searching for SFP so there is nothing to do here */
5614 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
5615 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5616 return;
5617
5618 /* someone else is in init, wait until next service event */
5619 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5620 return;
5621
5622 err = hw->phy.ops.identify_sfp(hw);
5623 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5624 goto sfp_out;
5625
5626 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
5627 /* If no cable is present, then we need to reset
5628 * the next time we find a good cable. */
5629 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
5630 }
5631
5632 /* exit on error */
5633 if (err)
5634 goto sfp_out;
5635
5636 /* exit if reset not needed */
5637 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5638 goto sfp_out;
5639
5640 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
5641
5642 /*
5643 * A module may be identified correctly, but the EEPROM may not have
5644 * support for that module. setup_sfp() will fail in that case, so
5645 * we should not allow that module to load.
5646 */
5647 if (hw->mac.type == ixgbe_mac_82598EB)
5648 err = hw->phy.ops.reset(hw);
5649 else
5650 err = hw->mac.ops.setup_sfp(hw);
5651
5652 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5653 goto sfp_out;
5654
5655 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
5656 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
5657
5658sfp_out:
5659 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5660
5661 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
5662 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
5663 e_dev_err("failed to initialize because an unsupported "
5664 "SFP+ module type was detected.\n");
5665 e_dev_err("Reload the driver after installing a "
5666 "supported module.\n");
5667 unregister_netdev(adapter->netdev);
5668 }
5669}
5670
5671/**
5672 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005673 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005674 **/
5675static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
5676{
5677 struct ixgbe_hw *hw = &adapter->hw;
5678 u32 autoneg;
5679 bool negotiation;
5680
5681 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
5682 return;
5683
5684 /* someone else is in init, wait until next service event */
5685 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5686 return;
5687
5688 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
5689
5690 autoneg = hw->phy.autoneg_advertised;
5691 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
5692 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Alexander Duyck70864002011-04-27 09:13:56 +00005693 if (hw->mac.ops.setup_link)
5694 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
5695
5696 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5697 adapter->link_check_timeout = jiffies;
5698 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5699}
5700
Greg Rose83c61fa2011-09-07 05:59:35 +00005701#ifdef CONFIG_PCI_IOV
5702static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
5703{
5704 int vf;
5705 struct ixgbe_hw *hw = &adapter->hw;
5706 struct net_device *netdev = adapter->netdev;
5707 u32 gpc;
5708 u32 ciaa, ciad;
5709
5710 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
5711 if (gpc) /* If incrementing then no need for the check below */
5712 return;
5713 /*
5714 * Check to see if a bad DMA write target from an errant or
5715 * malicious VF has caused a PCIe error. If so then we can
5716 * issue a VFLR to the offending VF(s) and then resume without
5717 * requesting a full slot reset.
5718 */
5719
5720 for (vf = 0; vf < adapter->num_vfs; vf++) {
5721 ciaa = (vf << 16) | 0x80000000;
5722 /* 32 bit read so align, we really want status at offset 6 */
5723 ciaa |= PCI_COMMAND;
5724 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5725 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
5726 ciaa &= 0x7FFFFFFF;
5727 /* disable debug mode asap after reading data */
5728 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5729 /* Get the upper 16 bits which will be the PCI status reg */
5730 ciad >>= 16;
5731 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
5732 netdev_err(netdev, "VF %d Hung DMA\n", vf);
5733 /* Issue VFLR */
5734 ciaa = (vf << 16) | 0x80000000;
5735 ciaa |= 0xA8;
5736 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5737 ciad = 0x00008000; /* VFLR */
5738 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
5739 ciaa &= 0x7FFFFFFF;
5740 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5741 }
5742 }
5743}
5744
5745#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005746/**
5747 * ixgbe_service_timer - Timer Call-back
5748 * @data: pointer to adapter cast into an unsigned long
5749 **/
5750static void ixgbe_service_timer(unsigned long data)
5751{
5752 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
5753 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00005754 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00005755
5756 /* poll faster when waiting for link */
5757 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
5758 next_event_offset = HZ / 10;
5759 else
5760 next_event_offset = HZ * 2;
5761
Greg Rose83c61fa2011-09-07 05:59:35 +00005762#ifdef CONFIG_PCI_IOV
Alexander Duyck6bb78cf2012-02-08 07:51:22 +00005763 /*
5764 * don't bother with SR-IOV VF DMA hang check if there are
5765 * no VFs or the link is down
5766 */
5767 if (!adapter->num_vfs ||
5768 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5769 goto normal_timer_service;
5770
5771 /* If we have VFs allocated then we must check for DMA hangs */
5772 ixgbe_check_for_bad_vf(adapter);
5773 next_event_offset = HZ / 50;
5774 adapter->timer_event_accumulator++;
5775
5776 if (adapter->timer_event_accumulator >= 100)
5777 adapter->timer_event_accumulator = 0;
5778 else
5779 ready = false;
5780
5781normal_timer_service:
Greg Rose83c61fa2011-09-07 05:59:35 +00005782#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005783 /* Reset the timer */
5784 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
5785
Greg Rose83c61fa2011-09-07 05:59:35 +00005786 if (ready)
5787 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005788}
5789
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005790static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
5791{
5792 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
5793 return;
5794
5795 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
5796
5797 /* If we're already down or resetting, just bail */
5798 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5799 test_bit(__IXGBE_RESETTING, &adapter->state))
5800 return;
5801
5802 ixgbe_dump(adapter);
5803 netdev_err(adapter->netdev, "Reset adapter\n");
5804 adapter->tx_timeout_count++;
5805
5806 ixgbe_reinit_locked(adapter);
5807}
5808
Alexander Duyck70864002011-04-27 09:13:56 +00005809/**
5810 * ixgbe_service_task - manages and runs subtasks
5811 * @work: pointer to work_struct containing our data
5812 **/
5813static void ixgbe_service_task(struct work_struct *work)
5814{
5815 struct ixgbe_adapter *adapter = container_of(work,
5816 struct ixgbe_adapter,
5817 service_task);
5818
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005819 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005820 ixgbe_sfp_detection_subtask(adapter);
5821 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00005822 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005823 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00005824 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005825 ixgbe_check_hang_subtask(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005826#ifdef CONFIG_IXGBE_PTP
5827 ixgbe_ptp_overflow_check(adapter);
5828#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005829
5830 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005831}
5832
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005833static int ixgbe_tso(struct ixgbe_ring *tx_ring,
5834 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005835 u8 *hdr_len)
Alexander Duyck897ab152011-05-27 05:31:47 +00005836{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005837 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005838 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005839 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07005840
Alexander Duyck897ab152011-05-27 05:31:47 +00005841 if (!skb_is_gso(skb))
5842 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005843
Alexander Duyck897ab152011-05-27 05:31:47 +00005844 if (skb_header_cloned(skb)) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00005845 int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Alexander Duyck897ab152011-05-27 05:31:47 +00005846 if (err)
5847 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00005848 }
5849
Alexander Duyck897ab152011-05-27 05:31:47 +00005850 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
5851 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
5852
Alexander Duyck244e27a2012-02-08 07:51:11 +00005853 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005854 struct iphdr *iph = ip_hdr(skb);
5855 iph->tot_len = 0;
5856 iph->check = 0;
5857 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5858 iph->daddr, 0,
5859 IPPROTO_TCP,
5860 0);
5861 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005862 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5863 IXGBE_TX_FLAGS_CSUM |
5864 IXGBE_TX_FLAGS_IPV4;
Alexander Duyck897ab152011-05-27 05:31:47 +00005865 } else if (skb_is_gso_v6(skb)) {
5866 ipv6_hdr(skb)->payload_len = 0;
5867 tcp_hdr(skb)->check =
5868 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
5869 &ipv6_hdr(skb)->daddr,
5870 0, IPPROTO_TCP, 0);
Alexander Duyck244e27a2012-02-08 07:51:11 +00005871 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5872 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck897ab152011-05-27 05:31:47 +00005873 }
5874
Alexander Duyck091a6242012-02-08 07:51:01 +00005875 /* compute header lengths */
Alexander Duyck897ab152011-05-27 05:31:47 +00005876 l4len = tcp_hdrlen(skb);
5877 *hdr_len = skb_transport_offset(skb) + l4len;
5878
Alexander Duyck091a6242012-02-08 07:51:01 +00005879 /* update gso size and bytecount with header size */
5880 first->gso_segs = skb_shinfo(skb)->gso_segs;
5881 first->bytecount += (first->gso_segs - 1) * *hdr_len;
5882
Alexander Duyck897ab152011-05-27 05:31:47 +00005883 /* mss_l4len_id: use 1 as index for TSO */
5884 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
5885 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
5886 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
5887
5888 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
5889 vlan_macip_lens = skb_network_header_len(skb);
5890 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005891 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005892
5893 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005894 mss_l4len_idx);
Alexander Duyck897ab152011-05-27 05:31:47 +00005895
5896 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00005897}
5898
Alexander Duyck244e27a2012-02-08 07:51:11 +00005899static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
5900 struct ixgbe_tx_buffer *first)
Auke Kok9a799d72007-09-15 14:07:45 -07005901{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005902 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005903 u32 vlan_macip_lens = 0;
5904 u32 mss_l4len_idx = 0;
5905 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005906
Alexander Duyck897ab152011-05-27 05:31:47 +00005907 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck62748b72012-07-20 08:09:01 +00005908 if (!(first->tx_flags & IXGBE_TX_FLAGS_HW_VLAN)) {
5909 if (unlikely(skb->no_fcs))
5910 first->tx_flags |= IXGBE_TX_FLAGS_NO_IFCS;
5911 if (!(first->tx_flags & IXGBE_TX_FLAGS_TXSW))
5912 return;
5913 }
Alexander Duyck897ab152011-05-27 05:31:47 +00005914 } else {
5915 u8 l4_hdr = 0;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005916 switch (first->protocol) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005917 case __constant_htons(ETH_P_IP):
5918 vlan_macip_lens |= skb_network_header_len(skb);
5919 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
5920 l4_hdr = ip_hdr(skb)->protocol;
5921 break;
5922 case __constant_htons(ETH_P_IPV6):
5923 vlan_macip_lens |= skb_network_header_len(skb);
5924 l4_hdr = ipv6_hdr(skb)->nexthdr;
5925 break;
5926 default:
5927 if (unlikely(net_ratelimit())) {
5928 dev_warn(tx_ring->dev,
5929 "partial checksum but proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005930 first->protocol);
Alexander Duyck897ab152011-05-27 05:31:47 +00005931 }
5932 break;
5933 }
Auke Kok9a799d72007-09-15 14:07:45 -07005934
Alexander Duyck897ab152011-05-27 05:31:47 +00005935 switch (l4_hdr) {
5936 case IPPROTO_TCP:
5937 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
5938 mss_l4len_idx = tcp_hdrlen(skb) <<
5939 IXGBE_ADVTXD_L4LEN_SHIFT;
5940 break;
5941 case IPPROTO_SCTP:
5942 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
5943 mss_l4len_idx = sizeof(struct sctphdr) <<
5944 IXGBE_ADVTXD_L4LEN_SHIFT;
5945 break;
5946 case IPPROTO_UDP:
5947 mss_l4len_idx = sizeof(struct udphdr) <<
5948 IXGBE_ADVTXD_L4LEN_SHIFT;
5949 break;
5950 default:
5951 if (unlikely(net_ratelimit())) {
5952 dev_warn(tx_ring->dev,
5953 "partial checksum but l4 proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005954 l4_hdr);
Alexander Duyck897ab152011-05-27 05:31:47 +00005955 }
5956 break;
5957 }
Alexander Duyck244e27a2012-02-08 07:51:11 +00005958
5959 /* update TX checksum flag */
5960 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07005961 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005962
Alexander Duyck244e27a2012-02-08 07:51:11 +00005963 /* vlan_macip_lens: MACLEN, VLAN tag */
Alexander Duyck897ab152011-05-27 05:31:47 +00005964 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005965 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005966
5967 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
5968 type_tucmd, mss_l4len_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07005969}
5970
Alexander Duyckd3d00232011-07-15 02:31:25 +00005971static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
5972{
5973 /* set type for advanced descriptor with frame checksum insertion */
5974 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
Alexander Duyckd3d00232011-07-15 02:31:25 +00005975 IXGBE_ADVTXD_DCMD_DEXT);
5976
5977 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00005978 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005979 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
5980
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005981#ifdef CONFIG_IXGBE_PTP
5982 if (tx_flags & IXGBE_TX_FLAGS_TSTAMP)
5983 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_MAC_TSTAMP);
5984#endif
5985
Alexander Duyckd3d00232011-07-15 02:31:25 +00005986 /* set segmentation enable bits for TSO/FSO */
5987#ifdef IXGBE_FCOE
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005988 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FSO))
Alexander Duyckd3d00232011-07-15 02:31:25 +00005989#else
5990 if (tx_flags & IXGBE_TX_FLAGS_TSO)
5991#endif
5992 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
5993
Alexander Duyck62748b72012-07-20 08:09:01 +00005994 /* insert frame checksum */
5995 if (!(tx_flags & IXGBE_TX_FLAGS_NO_IFCS))
5996 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_IFCS);
5997
Alexander Duyckd3d00232011-07-15 02:31:25 +00005998 return cmd_type;
5999}
6000
Alexander Duyck729739b2012-02-08 07:51:06 +00006001static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
6002 u32 tx_flags, unsigned int paylen)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006003{
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006004 __le32 olinfo_status = cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006005
6006 /* enable L4 checksum for TSO and TX checksum offload */
6007 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6008 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
6009
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006010 /* enble IPv4 checksum for TSO */
6011 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6012 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006013
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006014 /* use index 1 context for TSO/FSO/FCOE */
6015#ifdef IXGBE_FCOE
6016 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FCOE))
6017#else
6018 if (tx_flags & IXGBE_TX_FLAGS_TSO)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006019#endif
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006020 olinfo_status |= cpu_to_le32(1 << IXGBE_ADVTXD_IDX_SHIFT);
6021
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006022 /*
6023 * Check Context must be set if Tx switch is enabled, which it
6024 * always is for case where virtual functions are running
6025 */
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006026#ifdef IXGBE_FCOE
6027 if (tx_flags & (IXGBE_TX_FLAGS_TXSW | IXGBE_TX_FLAGS_FCOE))
6028#else
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006029 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006030#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006031 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
6032
Alexander Duyck729739b2012-02-08 07:51:06 +00006033 tx_desc->read.olinfo_status = olinfo_status;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006034}
6035
6036#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6037 IXGBE_TXD_CMD_RS)
6038
6039static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006040 struct ixgbe_tx_buffer *first,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006041 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006042{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006043 dma_addr_t dma;
Alexander Duyck729739b2012-02-08 07:51:06 +00006044 struct sk_buff *skb = first->skb;
6045 struct ixgbe_tx_buffer *tx_buffer;
6046 union ixgbe_adv_tx_desc *tx_desc;
6047 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
Alexander Duyckd3d00232011-07-15 02:31:25 +00006048 unsigned int data_len = skb->data_len;
6049 unsigned int size = skb_headlen(skb);
Alexander Duyck729739b2012-02-08 07:51:06 +00006050 unsigned int paylen = skb->len - hdr_len;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006051 u32 tx_flags = first->tx_flags;
Alexander Duyck729739b2012-02-08 07:51:06 +00006052 __le32 cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006053 u16 i = tx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07006054
Alexander Duyck729739b2012-02-08 07:51:06 +00006055 tx_desc = IXGBE_TX_DESC(tx_ring, i);
6056
6057 ixgbe_tx_olinfo_status(tx_desc, tx_flags, paylen);
6058 cmd_type = ixgbe_tx_cmd_type(tx_flags);
6059
Alexander Duyckd3d00232011-07-15 02:31:25 +00006060#ifdef IXGBE_FCOE
6061 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006062 if (data_len < sizeof(struct fcoe_crc_eof)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006063 size -= sizeof(struct fcoe_crc_eof) - data_len;
6064 data_len = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00006065 } else {
6066 data_len -= sizeof(struct fcoe_crc_eof);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006067 }
Auke Kok9a799d72007-09-15 14:07:45 -07006068 }
6069
Alexander Duyckd3d00232011-07-15 02:31:25 +00006070#endif
Alexander Duyck729739b2012-02-08 07:51:06 +00006071 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
6072 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006073 goto dma_error;
6074
Alexander Duyck729739b2012-02-08 07:51:06 +00006075 /* record length, and DMA address */
6076 dma_unmap_len_set(first, len, size);
6077 dma_unmap_addr_set(first, dma, dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006078
Alexander Duyck729739b2012-02-08 07:51:06 +00006079 tx_desc->read.buffer_addr = cpu_to_le64(dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006080
6081 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006082 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006083 tx_desc->read.cmd_type_len =
6084 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006085
Alexander Duyckd3d00232011-07-15 02:31:25 +00006086 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00006087 tx_desc++;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006088 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006089 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006090 i = 0;
6091 }
Alexander Duyck729739b2012-02-08 07:51:06 +00006092
6093 dma += IXGBE_MAX_DATA_PER_TXD;
6094 size -= IXGBE_MAX_DATA_PER_TXD;
6095
6096 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6097 tx_desc->read.olinfo_status = 0;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006098 }
6099
Alexander Duyck729739b2012-02-08 07:51:06 +00006100 if (likely(!data_len))
6101 break;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006102
Alexander Duyckd3d00232011-07-15 02:31:25 +00006103 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006104
Alexander Duyck729739b2012-02-08 07:51:06 +00006105 i++;
6106 tx_desc++;
6107 if (i == tx_ring->count) {
6108 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
6109 i = 0;
6110 }
Auke Kok9a799d72007-09-15 14:07:45 -07006111
Alexander Duyckd3d00232011-07-15 02:31:25 +00006112#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006113 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006114#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006115 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006116#endif
6117 data_len -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006118
Alexander Duyck729739b2012-02-08 07:51:06 +00006119 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
6120 DMA_TO_DEVICE);
6121 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006122 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006123
Alexander Duyck729739b2012-02-08 07:51:06 +00006124 tx_buffer = &tx_ring->tx_buffer_info[i];
6125 dma_unmap_len_set(tx_buffer, len, size);
6126 dma_unmap_addr_set(tx_buffer, dma, dma);
6127
6128 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6129 tx_desc->read.olinfo_status = 0;
6130
6131 frag++;
Auke Kok9a799d72007-09-15 14:07:45 -07006132 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006133
Alexander Duyck729739b2012-02-08 07:51:06 +00006134 /* write last descriptor with RS and EOP bits */
6135 cmd_type |= cpu_to_le32(size) | cpu_to_le32(IXGBE_TXD_CMD);
6136 tx_desc->read.cmd_type_len = cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006137
Alexander Duyck091a6242012-02-08 07:51:01 +00006138 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Alexander Duyckb2d96e02012-02-07 08:14:33 +00006139
Alexander Duyckd3d00232011-07-15 02:31:25 +00006140 /* set the timestamp */
6141 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006142
6143 /*
Alexander Duyck729739b2012-02-08 07:51:06 +00006144 * Force memory writes to complete before letting h/w know there
6145 * are new descriptors to fetch. (Only applicable for weak-ordered
6146 * memory model archs, such as IA-64).
6147 *
6148 * We also need this memory barrier to make certain all of the
6149 * status bits have been updated before next_to_watch is written.
Auke Kok9a799d72007-09-15 14:07:45 -07006150 */
6151 wmb();
6152
Alexander Duyckd3d00232011-07-15 02:31:25 +00006153 /* set next_to_watch value indicating a packet is present */
6154 first->next_to_watch = tx_desc;
6155
Alexander Duyck729739b2012-02-08 07:51:06 +00006156 i++;
6157 if (i == tx_ring->count)
6158 i = 0;
6159
6160 tx_ring->next_to_use = i;
6161
Alexander Duyckd3d00232011-07-15 02:31:25 +00006162 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006163 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006164
6165 return;
6166dma_error:
Alexander Duyck729739b2012-02-08 07:51:06 +00006167 dev_err(tx_ring->dev, "TX DMA map failed\n");
Alexander Duyckd3d00232011-07-15 02:31:25 +00006168
6169 /* clear dma mappings for failed tx_buffer_info map */
6170 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006171 tx_buffer = &tx_ring->tx_buffer_info[i];
6172 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
6173 if (tx_buffer == first)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006174 break;
6175 if (i == 0)
6176 i = tx_ring->count;
6177 i--;
6178 }
6179
Alexander Duyckd3d00232011-07-15 02:31:25 +00006180 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006181}
6182
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006183static void ixgbe_atr(struct ixgbe_ring *ring,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006184 struct ixgbe_tx_buffer *first)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006185{
Alexander Duyck69830522011-01-06 14:29:58 +00006186 struct ixgbe_q_vector *q_vector = ring->q_vector;
6187 union ixgbe_atr_hash_dword input = { .dword = 0 };
6188 union ixgbe_atr_hash_dword common = { .dword = 0 };
6189 union {
6190 unsigned char *network;
6191 struct iphdr *ipv4;
6192 struct ipv6hdr *ipv6;
6193 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006194 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006195 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006196
Alexander Duyck69830522011-01-06 14:29:58 +00006197 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6198 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006199 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006200
Alexander Duyck69830522011-01-06 14:29:58 +00006201 /* do nothing if sampling is disabled */
6202 if (!ring->atr_sample_rate)
6203 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006204
Alexander Duyck69830522011-01-06 14:29:58 +00006205 ring->atr_count++;
6206
6207 /* snag network header to get L4 type and address */
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006208 hdr.network = skb_network_header(first->skb);
Alexander Duyck69830522011-01-06 14:29:58 +00006209
6210 /* Currently only IPv4/IPv6 with TCP is supported */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006211 if ((first->protocol != __constant_htons(ETH_P_IPV6) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006212 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
Alexander Duyck244e27a2012-02-08 07:51:11 +00006213 (first->protocol != __constant_htons(ETH_P_IP) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006214 hdr.ipv4->protocol != IPPROTO_TCP))
6215 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006216
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006217 th = tcp_hdr(first->skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006218
Alexander Duyck66f32a82011-06-29 05:43:22 +00006219 /* skip this packet since it is invalid or the socket is closing */
6220 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006221 return;
6222
6223 /* sample on all syn packets or once every atr sample count */
6224 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6225 return;
6226
6227 /* reset sample count */
6228 ring->atr_count = 0;
6229
Alexander Duyck244e27a2012-02-08 07:51:11 +00006230 vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
Alexander Duyck69830522011-01-06 14:29:58 +00006231
6232 /*
6233 * src and dst are inverted, think how the receiver sees them
6234 *
6235 * The input is broken into two sections, a non-compressed section
6236 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6237 * is XORed together and stored in the compressed dword.
6238 */
6239 input.formatted.vlan_id = vlan_id;
6240
6241 /*
6242 * since src port and flex bytes occupy the same word XOR them together
6243 * and write the value to source port portion of compressed dword
6244 */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006245 if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006246 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6247 else
Alexander Duyck244e27a2012-02-08 07:51:11 +00006248 common.port.src ^= th->dest ^ first->protocol;
Alexander Duyck69830522011-01-06 14:29:58 +00006249 common.port.dst ^= th->source;
6250
Alexander Duyck244e27a2012-02-08 07:51:11 +00006251 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck69830522011-01-06 14:29:58 +00006252 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6253 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6254 } else {
6255 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6256 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6257 hdr.ipv6->saddr.s6_addr32[1] ^
6258 hdr.ipv6->saddr.s6_addr32[2] ^
6259 hdr.ipv6->saddr.s6_addr32[3] ^
6260 hdr.ipv6->daddr.s6_addr32[0] ^
6261 hdr.ipv6->daddr.s6_addr32[1] ^
6262 hdr.ipv6->daddr.s6_addr32[2] ^
6263 hdr.ipv6->daddr.s6_addr32[3];
6264 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006265
6266 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006267 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6268 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006269}
6270
Alexander Duyck63544e92011-05-27 05:31:42 +00006271static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006272{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006273 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006274 /* Herbert's original patch had:
6275 * smp_mb__after_netif_stop_queue();
6276 * but since that doesn't exist yet, just open code it. */
6277 smp_mb();
6278
6279 /* We need to check again in a case another CPU has just
6280 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006281 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006282 return -EBUSY;
6283
6284 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006285 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006286 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006287 return 0;
6288}
6289
Alexander Duyck82d4e462011-06-11 01:44:58 +00006290static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006291{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006292 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006293 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006294 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006295}
6296
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006297static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6298{
6299 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006300 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6301 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006302#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006303 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006304
John Fastabende5b64632011-03-08 03:44:52 +00006305 if (((protocol == htons(ETH_P_FCOE)) ||
6306 (protocol == htons(ETH_P_FIP))) &&
6307 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyckc0876632012-05-10 00:01:46 +00006308 struct ixgbe_ring_feature *f;
6309
6310 f = &adapter->ring_feature[RING_F_FCOE];
6311
6312 while (txq >= f->indices)
6313 txq -= f->indices;
Alexander Duycke4b317e2012-05-05 05:30:53 +00006314 txq += adapter->ring_feature[RING_F_FCOE].offset;
Alexander Duyckc0876632012-05-10 00:01:46 +00006315
John Fastabende5b64632011-03-08 03:44:52 +00006316 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006317 }
6318#endif
6319
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006320 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6321 while (unlikely(txq >= dev->real_num_tx_queues))
6322 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006323 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006324 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006325
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006326 return skb_tx_hash(dev, skb);
6327}
6328
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006329netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006330 struct ixgbe_adapter *adapter,
6331 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006332{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006333 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006334 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006335 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006336#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6337 unsigned short f;
6338#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006339 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006340 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006341 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006342
Alexander Duycka535c302011-05-27 05:31:52 +00006343 /*
6344 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00006345 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00006346 * + 2 desc gap to keep tail from touching head,
6347 * + 1 desc for context descriptor,
6348 * otherwise try next time
6349 */
6350#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6351 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6352 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6353#else
6354 count += skb_shinfo(skb)->nr_frags;
6355#endif
6356 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6357 tx_ring->tx_stats.tx_busy++;
6358 return NETDEV_TX_BUSY;
6359 }
6360
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006361 /* record the location of the first descriptor for this packet */
6362 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
6363 first->skb = skb;
Alexander Duyck091a6242012-02-08 07:51:01 +00006364 first->bytecount = skb->len;
6365 first->gso_segs = 1;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006366
Alexander Duyck66f32a82011-06-29 05:43:22 +00006367 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00006368 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006369 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6370 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6371 /* else if it is a SW VLAN check the next protocol and store the tag */
6372 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
6373 struct vlan_hdr *vhdr, _vhdr;
6374 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
6375 if (!vhdr)
6376 goto out_drop;
6377
6378 protocol = vhdr->h_vlan_encapsulated_proto;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006379 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
6380 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006381 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006382 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006383
Jacob Kelleraa7bd462012-05-04 01:55:23 +00006384 skb_tx_timestamp(skb);
6385
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006386#ifdef CONFIG_IXGBE_PTP
6387 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
6388 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
6389 tx_flags |= IXGBE_TX_FLAGS_TSTAMP;
6390 }
6391#endif
6392
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006393#ifdef CONFIG_PCI_IOV
6394 /*
6395 * Use the l2switch_enable flag - would be false if the DMA
6396 * Tx switch had been disabled.
6397 */
6398 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6399 tx_flags |= IXGBE_TX_FLAGS_TXSW;
6400
6401#endif
John Fastabend32701dc2011-09-27 03:51:56 +00006402 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006403 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00006404 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
6405 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006406 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00006407 tx_flags |= (skb->priority & 0x7) <<
6408 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006409 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
6410 struct vlan_ethhdr *vhdr;
6411 if (skb_header_cloned(skb) &&
6412 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6413 goto out_drop;
6414 vhdr = (struct vlan_ethhdr *)skb->data;
6415 vhdr->h_vlan_TCI = htons(tx_flags >>
6416 IXGBE_TX_FLAGS_VLAN_SHIFT);
6417 } else {
6418 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6419 }
6420 }
Alexander Duycka535c302011-05-27 05:31:52 +00006421
Alexander Duyck244e27a2012-02-08 07:51:11 +00006422 /* record initial flags and protocol */
6423 first->tx_flags = tx_flags;
6424 first->protocol = protocol;
6425
Yi Zoueacd73f2009-05-13 13:11:06 +00006426#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00006427 /* setup tx offload for FCoE */
6428 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
Alexander Duycka58915c2012-05-25 06:38:18 +00006429 (tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00006430 tso = ixgbe_fso(tx_ring, first, &hdr_len);
Alexander Duyck897ab152011-05-27 05:31:47 +00006431 if (tso < 0)
6432 goto out_drop;
Auke Kok9a799d72007-09-15 14:07:45 -07006433
Alexander Duyck66f32a82011-06-29 05:43:22 +00006434 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006435 }
Auke Kok9a799d72007-09-15 14:07:45 -07006436
Auke Kok9a799d72007-09-15 14:07:45 -07006437#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006438 tso = ixgbe_tso(tx_ring, first, &hdr_len);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006439 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07006440 goto out_drop;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006441 else if (!tso)
6442 ixgbe_tx_csum(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006443
6444 /* add the ATR filter if ATR is on */
6445 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
Alexander Duyck244e27a2012-02-08 07:51:11 +00006446 ixgbe_atr(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006447
6448#ifdef IXGBE_FCOE
6449xmit_fcoe:
6450#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006451 ixgbe_tx_map(tx_ring, first, hdr_len);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006452
6453 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006454
6455 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006456
6457out_drop:
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006458 dev_kfree_skb_any(first->skb);
6459 first->skb = NULL;
6460
Alexander Duyck897ab152011-05-27 05:31:47 +00006461 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07006462}
6463
Alexander Duycka50c29d2012-02-08 07:50:40 +00006464static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
6465 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07006466{
6467 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006468 struct ixgbe_ring *tx_ring;
Auke Kok9a799d72007-09-15 14:07:45 -07006469
Alexander Duycka50c29d2012-02-08 07:50:40 +00006470 /*
6471 * The minimum packet size for olinfo paylen is 17 so pad the skb
6472 * in order to meet this minimum size requirement.
6473 */
Stephen Hemmingerf73332f2012-06-21 02:15:10 +00006474 if (unlikely(skb->len < 17)) {
6475 if (skb_pad(skb, 17 - skb->len))
Alexander Duycka50c29d2012-02-08 07:50:40 +00006476 return NETDEV_TX_OK;
6477 skb->len = 17;
6478 }
6479
Auke Kok9a799d72007-09-15 14:07:45 -07006480 tx_ring = adapter->tx_ring[skb->queue_mapping];
6481 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
6482}
6483
6484/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006485 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Auke Kok9a799d72007-09-15 14:07:45 -07006486 * @netdev: network interface device structure
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006487 * @p: pointer to an address structure
6488 *
Auke Kok9a799d72007-09-15 14:07:45 -07006489 * Returns 0 on success, negative on failure
6490 **/
6491static int ixgbe_set_mac(struct net_device *netdev, void *p)
6492{
Ben Hutchings6b73e102009-04-29 08:08:58 +00006493 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6494 struct ixgbe_hw *hw = &adapter->hw;
6495 struct sockaddr *addr = p;
6496
6497 if (!is_valid_ether_addr(addr->sa_data))
6498 return -EADDRNOTAVAIL;
6499
6500 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
6501 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
6502
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00006503 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07006504
6505 return 0;
6506}
6507
Ben Hutchings6b73e102009-04-29 08:08:58 +00006508static int
6509ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6510{
6511 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6512 struct ixgbe_hw *hw = &adapter->hw;
6513 u16 value;
6514 int rc;
6515
6516 if (prtad != hw->phy.mdio.prtad)
6517 return -EINVAL;
6518 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6519 if (!rc)
6520 rc = value;
6521 return rc;
6522}
6523
6524static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6525 u16 addr, u16 value)
6526{
6527 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6528 struct ixgbe_hw *hw = &adapter->hw;
6529
6530 if (prtad != hw->phy.mdio.prtad)
6531 return -EINVAL;
6532 return hw->phy.ops.write_reg(hw, addr, devad, value);
6533}
6534
6535static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6536{
6537 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6538
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006539 switch (cmd) {
6540#ifdef CONFIG_IXGBE_PTP
6541 case SIOCSHWTSTAMP:
6542 return ixgbe_ptp_hwtstamp_ioctl(adapter, req, cmd);
6543#endif
6544 default:
6545 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6546 }
Ben Hutchings6b73e102009-04-29 08:08:58 +00006547}
6548
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006549/**
6550 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006551 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006552 * @netdev: network interface device structure
6553 *
6554 * Returns non-zero on failure
6555 **/
6556static int ixgbe_add_sanmac_netdev(struct net_device *dev)
6557{
6558 int err = 0;
6559 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006560 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006561
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006562 if (is_valid_ether_addr(hw->mac.san_addr)) {
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006563 rtnl_lock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006564 err = dev_addr_add(dev, hw->mac.san_addr, NETDEV_HW_ADDR_T_SAN);
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006565 rtnl_unlock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006566
6567 /* update SAN MAC vmdq pool selection */
6568 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006569 }
6570 return err;
6571}
6572
6573/**
6574 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006575 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006576 * @netdev: network interface device structure
6577 *
6578 * Returns non-zero on failure
6579 **/
6580static int ixgbe_del_sanmac_netdev(struct net_device *dev)
6581{
6582 int err = 0;
6583 struct ixgbe_adapter *adapter = netdev_priv(dev);
6584 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6585
6586 if (is_valid_ether_addr(mac->san_addr)) {
6587 rtnl_lock();
6588 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6589 rtnl_unlock();
6590 }
6591 return err;
6592}
6593
Auke Kok9a799d72007-09-15 14:07:45 -07006594#ifdef CONFIG_NET_POLL_CONTROLLER
6595/*
6596 * Polling 'interrupt' - used by things like netconsole to send skbs
6597 * without having to re-enable interrupts. It's not called while
6598 * the interrupt routine is executing.
6599 */
6600static void ixgbe_netpoll(struct net_device *netdev)
6601{
6602 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006603 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07006604
Alexander Duyck1a647bd2010-01-13 01:49:13 +00006605 /* if interface is down do nothing */
6606 if (test_bit(__IXGBE_DOWN, &adapter->state))
6607 return;
6608
Auke Kok9a799d72007-09-15 14:07:45 -07006609 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006610 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00006611 for (i = 0; i < adapter->num_q_vectors; i++)
6612 ixgbe_msix_clean_rings(0, adapter->q_vector[i]);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006613 } else {
6614 ixgbe_intr(adapter->pdev->irq, netdev);
6615 }
Auke Kok9a799d72007-09-15 14:07:45 -07006616 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07006617}
Auke Kok9a799d72007-09-15 14:07:45 -07006618
Alexander Duyck581330b2012-02-08 07:51:47 +00006619#endif
Eric Dumazetde1036b2010-10-20 23:00:04 +00006620static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
6621 struct rtnl_link_stats64 *stats)
6622{
6623 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6624 int i;
6625
Eric Dumazet1a515022010-11-16 19:26:42 -08006626 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006627 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08006628 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00006629 u64 bytes, packets;
6630 unsigned int start;
6631
Eric Dumazet1a515022010-11-16 19:26:42 -08006632 if (ring) {
6633 do {
6634 start = u64_stats_fetch_begin_bh(&ring->syncp);
6635 packets = ring->stats.packets;
6636 bytes = ring->stats.bytes;
6637 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6638 stats->rx_packets += packets;
6639 stats->rx_bytes += bytes;
6640 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00006641 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00006642
6643 for (i = 0; i < adapter->num_tx_queues; i++) {
6644 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
6645 u64 bytes, packets;
6646 unsigned int start;
6647
6648 if (ring) {
6649 do {
6650 start = u64_stats_fetch_begin_bh(&ring->syncp);
6651 packets = ring->stats.packets;
6652 bytes = ring->stats.bytes;
6653 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6654 stats->tx_packets += packets;
6655 stats->tx_bytes += bytes;
6656 }
6657 }
Eric Dumazet1a515022010-11-16 19:26:42 -08006658 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006659 /* following stats updated by ixgbe_watchdog_task() */
6660 stats->multicast = netdev->stats.multicast;
6661 stats->rx_errors = netdev->stats.rx_errors;
6662 stats->rx_length_errors = netdev->stats.rx_length_errors;
6663 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
6664 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
6665 return stats;
6666}
6667
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006668#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006669/**
6670 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
6671 * @adapter: pointer to ixgbe_adapter
John Fastabend8b1c0b22011-05-03 02:26:48 +00006672 * @tc: number of traffic classes currently enabled
6673 *
6674 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
6675 * 802.1Q priority maps to a packet buffer that exists.
6676 */
6677static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
6678{
6679 struct ixgbe_hw *hw = &adapter->hw;
6680 u32 reg, rsave;
6681 int i;
6682
6683 /* 82598 have a static priority to TC mapping that can not
6684 * be changed so no validation is needed.
6685 */
6686 if (hw->mac.type == ixgbe_mac_82598EB)
6687 return;
6688
6689 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
6690 rsave = reg;
6691
6692 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
6693 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
6694
6695 /* If up2tc is out of bounds default to zero */
6696 if (up2tc > tc)
6697 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
6698 }
6699
6700 if (reg != rsave)
6701 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
6702
6703 return;
6704}
6705
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006706/**
Alexander Duyck02debdc2012-05-18 06:33:31 +00006707 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
6708 * @adapter: Pointer to adapter struct
6709 *
6710 * Populate the netdev user priority to tc map
6711 */
6712static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter)
6713{
6714 struct net_device *dev = adapter->netdev;
6715 struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg;
6716 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
6717 u8 prio;
6718
6719 for (prio = 0; prio < MAX_USER_PRIORITY; prio++) {
6720 u8 tc = 0;
6721
6722 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE)
6723 tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio);
6724 else if (ets)
6725 tc = ets->prio_tc[prio];
6726
6727 netdev_set_prio_tc_map(dev, prio, tc);
6728 }
6729}
6730
6731/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006732 * ixgbe_setup_tc - configure net_device for multiple traffic classes
John Fastabend8b1c0b22011-05-03 02:26:48 +00006733 *
6734 * @netdev: net device to configure
6735 * @tc: number of traffic classes to enable
6736 */
6737int ixgbe_setup_tc(struct net_device *dev, u8 tc)
6738{
John Fastabend8b1c0b22011-05-03 02:26:48 +00006739 struct ixgbe_adapter *adapter = netdev_priv(dev);
6740 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00006741
John Fastabend8b1c0b22011-05-03 02:26:48 +00006742 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00006743 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
Alexander Duyck581330b2012-02-08 07:51:47 +00006744 (hw->mac.type == ixgbe_mac_82598EB &&
6745 tc < MAX_TRAFFIC_CLASS))
John Fastabend8b1c0b22011-05-03 02:26:48 +00006746 return -EINVAL;
6747
6748 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006749 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00006750 * hardware is not flexible enough to do this dynamically.
6751 */
6752 if (netif_running(dev))
6753 ixgbe_close(dev);
6754 ixgbe_clear_interrupt_scheme(adapter);
6755
John Fastabende7589ea2011-07-18 22:38:36 +00006756 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006757 netdev_set_num_tc(dev, tc);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006758 ixgbe_set_prio_tc_map(adapter);
6759
John Fastabende7589ea2011-07-18 22:38:36 +00006760 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00006761
Alexander Duyck943561d2012-05-09 22:14:44 -07006762 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
6763 adapter->last_lfc_mode = adapter->hw.fc.requested_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006764 adapter->hw.fc.requested_mode = ixgbe_fc_none;
Alexander Duyck943561d2012-05-09 22:14:44 -07006765 }
John Fastabende7589ea2011-07-18 22:38:36 +00006766 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006767 netdev_reset_tc(dev);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006768
Alexander Duyck943561d2012-05-09 22:14:44 -07006769 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6770 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006771
6772 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00006773
6774 adapter->temp_dcb_cfg.pfc_mode_enable = false;
6775 adapter->dcb_cfg.pfc_mode_enable = false;
6776 }
6777
John Fastabend8b1c0b22011-05-03 02:26:48 +00006778 ixgbe_init_interrupt_scheme(adapter);
6779 ixgbe_validate_rtr(adapter, tc);
6780 if (netif_running(dev))
6781 ixgbe_open(dev);
6782
6783 return 0;
6784}
Eric Dumazetde1036b2010-10-20 23:00:04 +00006785
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006786#endif /* CONFIG_IXGBE_DCB */
Don Skidmore082757a2011-07-21 05:55:00 +00006787void ixgbe_do_reset(struct net_device *netdev)
6788{
6789 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6790
6791 if (netif_running(netdev))
6792 ixgbe_reinit_locked(adapter);
6793 else
6794 ixgbe_reset(adapter);
6795}
6796
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006797static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006798 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006799{
6800 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6801
Don Skidmore082757a2011-07-21 05:55:00 +00006802 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006803 if (!(features & NETIF_F_RXCSUM))
6804 features &= ~NETIF_F_LRO;
Don Skidmore082757a2011-07-21 05:55:00 +00006805
Alexander Duyck567d2de2012-02-11 07:18:57 +00006806 /* Turn off LRO if not RSC capable */
6807 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
6808 features &= ~NETIF_F_LRO;
Jacob Keller8e2813f2012-04-21 06:05:40 +00006809
Alexander Duyck567d2de2012-02-11 07:18:57 +00006810 return features;
Don Skidmore082757a2011-07-21 05:55:00 +00006811}
6812
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006813static int ixgbe_set_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006814 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006815{
6816 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck567d2de2012-02-11 07:18:57 +00006817 netdev_features_t changed = netdev->features ^ features;
Don Skidmore082757a2011-07-21 05:55:00 +00006818 bool need_reset = false;
6819
Don Skidmore082757a2011-07-21 05:55:00 +00006820 /* Make sure RSC matches LRO, reset if change */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006821 if (!(features & NETIF_F_LRO)) {
6822 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Don Skidmore082757a2011-07-21 05:55:00 +00006823 need_reset = true;
Alexander Duyck567d2de2012-02-11 07:18:57 +00006824 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
6825 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
6826 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
6827 if (adapter->rx_itr_setting == 1 ||
6828 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
6829 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
6830 need_reset = true;
6831 } else if ((changed ^ features) & NETIF_F_LRO) {
6832 e_info(probe, "rx-usecs set too low, "
6833 "disabling RSC\n");
Don Skidmore082757a2011-07-21 05:55:00 +00006834 }
6835 }
6836
6837 /*
6838 * Check if Flow Director n-tuple support was enabled or disabled. If
6839 * the state changed, we need to reset.
6840 */
Alexander Duyck39cb6812012-06-06 05:38:20 +00006841 switch (features & NETIF_F_NTUPLE) {
6842 case NETIF_F_NTUPLE:
Alexander Duyck567d2de2012-02-11 07:18:57 +00006843 /* turn off ATR, enable perfect filters and reset */
Alexander Duyck39cb6812012-06-06 05:38:20 +00006844 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
6845 need_reset = true;
6846
Alexander Duyck567d2de2012-02-11 07:18:57 +00006847 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
6848 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
Alexander Duyck39cb6812012-06-06 05:38:20 +00006849 break;
6850 default:
6851 /* turn off perfect filters, enable ATR and reset */
6852 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
6853 need_reset = true;
6854
6855 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
6856
6857 /* We cannot enable ATR if SR-IOV is enabled */
6858 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6859 break;
6860
6861 /* We cannot enable ATR if we have 2 or more traffic classes */
6862 if (netdev_get_num_tc(netdev) > 1)
6863 break;
6864
6865 /* We cannot enable ATR if RSS is disabled */
6866 if (adapter->ring_feature[RING_F_RSS].limit <= 1)
6867 break;
6868
6869 /* A sample rate of 0 indicates ATR disabled */
6870 if (!adapter->atr_sample_rate)
6871 break;
6872
6873 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
6874 break;
Don Skidmore082757a2011-07-21 05:55:00 +00006875 }
6876
John Fastabend146d4cc2012-05-15 05:59:26 +00006877 if (features & NETIF_F_HW_VLAN_RX)
6878 ixgbe_vlan_strip_enable(adapter);
6879 else
6880 ixgbe_vlan_strip_disable(adapter);
6881
Ben Greear3f2d1c02012-03-08 08:28:41 +00006882 if (changed & NETIF_F_RXALL)
6883 need_reset = true;
6884
Alexander Duyck567d2de2012-02-11 07:18:57 +00006885 netdev->features = features;
Don Skidmore082757a2011-07-21 05:55:00 +00006886 if (need_reset)
6887 ixgbe_do_reset(netdev);
6888
6889 return 0;
Don Skidmore082757a2011-07-21 05:55:00 +00006890}
6891
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006892static int ixgbe_ndo_fdb_add(struct ndmsg *ndm,
6893 struct net_device *dev,
stephen hemminger6b6e2722012-09-17 10:03:26 +00006894 const unsigned char *addr,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006895 u16 flags)
6896{
6897 struct ixgbe_adapter *adapter = netdev_priv(dev);
John Fastabend95447462012-05-31 12:42:26 +00006898 int err;
6899
6900 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
6901 return -EOPNOTSUPP;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006902
6903 if (ndm->ndm_state & NUD_PERMANENT) {
6904 pr_info("%s: FDB only supports static addresses\n",
6905 ixgbe_driver_name);
6906 return -EINVAL;
6907 }
6908
John Fastabend95447462012-05-31 12:42:26 +00006909 if (is_unicast_ether_addr(addr)) {
6910 u32 rar_uc_entries = IXGBE_MAX_PF_MACVLANS;
6911
6912 if (netdev_uc_count(dev) < rar_uc_entries)
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006913 err = dev_uc_add_excl(dev, addr);
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006914 else
John Fastabend95447462012-05-31 12:42:26 +00006915 err = -ENOMEM;
6916 } else if (is_multicast_ether_addr(addr)) {
6917 err = dev_mc_add_excl(dev, addr);
6918 } else {
6919 err = -EINVAL;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006920 }
6921
6922 /* Only return duplicate errors if NLM_F_EXCL is set */
6923 if (err == -EEXIST && !(flags & NLM_F_EXCL))
6924 err = 0;
6925
6926 return err;
6927}
6928
6929static int ixgbe_ndo_fdb_del(struct ndmsg *ndm,
6930 struct net_device *dev,
stephen hemminger6b6e2722012-09-17 10:03:26 +00006931 const unsigned char *addr)
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006932{
6933 struct ixgbe_adapter *adapter = netdev_priv(dev);
6934 int err = -EOPNOTSUPP;
6935
6936 if (ndm->ndm_state & NUD_PERMANENT) {
6937 pr_info("%s: FDB only supports static addresses\n",
6938 ixgbe_driver_name);
6939 return -EINVAL;
6940 }
6941
6942 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
6943 if (is_unicast_ether_addr(addr))
6944 err = dev_uc_del(dev, addr);
6945 else if (is_multicast_ether_addr(addr))
6946 err = dev_mc_del(dev, addr);
6947 else
6948 err = -EINVAL;
6949 }
6950
6951 return err;
6952}
6953
6954static int ixgbe_ndo_fdb_dump(struct sk_buff *skb,
6955 struct netlink_callback *cb,
6956 struct net_device *dev,
6957 int idx)
6958{
6959 struct ixgbe_adapter *adapter = netdev_priv(dev);
6960
6961 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6962 idx = ndo_dflt_fdb_dump(skb, cb, dev, idx);
6963
6964 return idx;
6965}
6966
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006967static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00006968 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006969 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08006970 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006971 .ndo_select_queue = ixgbe_select_queue,
Alexander Duyck581330b2012-02-08 07:51:47 +00006972 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006973 .ndo_validate_addr = eth_validate_addr,
6974 .ndo_set_mac_address = ixgbe_set_mac,
6975 .ndo_change_mtu = ixgbe_change_mtu,
6976 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006977 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
6978 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00006979 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00006980 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
6981 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
6982 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Alexander Duyck581330b2012-02-08 07:51:47 +00006983 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00006984 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00006985 .ndo_get_stats64 = ixgbe_get_stats64,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006986#ifdef CONFIG_IXGBE_DCB
John Fastabend24095aa2011-02-23 05:58:03 +00006987 .ndo_setup_tc = ixgbe_setup_tc,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006988#endif
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006989#ifdef CONFIG_NET_POLL_CONTROLLER
6990 .ndo_poll_controller = ixgbe_netpoll,
6991#endif
Yi Zou332d4a72009-05-13 13:11:53 +00006992#ifdef IXGBE_FCOE
6993 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00006994 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00006995 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00006996 .ndo_fcoe_enable = ixgbe_fcoe_enable,
6997 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00006998 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00006999 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00007000#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00007001 .ndo_set_features = ixgbe_set_features,
7002 .ndo_fix_features = ixgbe_fix_features,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007003 .ndo_fdb_add = ixgbe_ndo_fdb_add,
7004 .ndo_fdb_del = ixgbe_ndo_fdb_del,
7005 .ndo_fdb_dump = ixgbe_ndo_fdb_dump,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007006};
7007
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007008/**
Jacob Keller8e2813f2012-04-21 06:05:40 +00007009 * ixgbe_wol_supported - Check whether device supports WoL
7010 * @hw: hw specific details
7011 * @device_id: the device ID
7012 * @subdev_id: the subsystem device ID
7013 *
7014 * This function is used by probe and ethtool to determine
7015 * which devices have WoL support
7016 *
7017 **/
7018int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
7019 u16 subdevice_id)
7020{
7021 struct ixgbe_hw *hw = &adapter->hw;
7022 u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
7023 int is_wol_supported = 0;
7024
7025 switch (device_id) {
7026 case IXGBE_DEV_ID_82599_SFP:
7027 /* Only these subdevices could supports WOL */
7028 switch (subdevice_id) {
7029 case IXGBE_SUBDEV_ID_82599_560FLR:
7030 /* only support first port */
7031 if (hw->bus.func != 0)
7032 break;
7033 case IXGBE_SUBDEV_ID_82599_SFP:
Don Skidmoreb6dfd932012-07-11 07:17:42 +00007034 case IXGBE_SUBDEV_ID_82599_RNDC:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007035 is_wol_supported = 1;
7036 break;
7037 }
7038 break;
7039 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7040 /* All except this subdevice support WOL */
7041 if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
7042 is_wol_supported = 1;
7043 break;
7044 case IXGBE_DEV_ID_82599_KX4:
7045 is_wol_supported = 1;
7046 break;
7047 case IXGBE_DEV_ID_X540T:
7048 /* check eeprom to see if enabled wol */
7049 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
7050 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7051 (hw->bus.func == 0))) {
7052 is_wol_supported = 1;
7053 }
7054 break;
7055 }
7056
7057 return is_wol_supported;
7058}
7059
7060/**
Auke Kok9a799d72007-09-15 14:07:45 -07007061 * ixgbe_probe - Device Initialization Routine
7062 * @pdev: PCI device information struct
7063 * @ent: entry in ixgbe_pci_tbl
7064 *
7065 * Returns 0 on success, negative on failure
7066 *
7067 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7068 * The OS initialization, configuring of the adapter private structure,
7069 * and a hardware reset occur.
7070 **/
7071static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007072 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007073{
7074 struct net_device *netdev;
7075 struct ixgbe_adapter *adapter = NULL;
7076 struct ixgbe_hw *hw;
7077 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007078 static int cards_found;
7079 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00007080 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007081 unsigned int indices = num_possible_cpus();
John Fastabend3f4a6f02012-06-05 05:58:52 +00007082 unsigned int dcb_max = 0;
Yi Zoueacd73f2009-05-13 13:11:06 +00007083#ifdef IXGBE_FCOE
7084 u16 device_caps;
7085#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007086 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07007087
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007088 /* Catch broken hardware that put the wrong VF device ID in
7089 * the PCIe SR-IOV capability.
7090 */
7091 if (pdev->is_virtfn) {
7092 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7093 pci_name(pdev), pdev->vendor, pdev->device);
7094 return -EINVAL;
7095 }
7096
gouji-new9ce77662009-05-06 10:44:45 +00007097 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007098 if (err)
7099 return err;
7100
Nick Nunley1b507732010-04-27 13:10:27 +00007101 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7102 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007103 pci_using_dac = 1;
7104 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007105 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007106 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007107 err = dma_set_coherent_mask(&pdev->dev,
7108 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007109 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007110 dev_err(&pdev->dev,
7111 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007112 goto err_dma;
7113 }
7114 }
7115 pci_using_dac = 0;
7116 }
7117
gouji-new9ce77662009-05-06 10:44:45 +00007118 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007119 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007120 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007121 dev_err(&pdev->dev,
7122 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007123 goto err_pci_reg;
7124 }
7125
Frans Pop19d5afd2009-10-02 10:04:12 -07007126 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007127
Auke Kok9a799d72007-09-15 14:07:45 -07007128 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007129 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007130
John Fastabende901acd2011-04-26 07:26:08 +00007131#ifdef CONFIG_IXGBE_DCB
John Fastabend3f4a6f02012-06-05 05:58:52 +00007132 if (ii->mac == ixgbe_mac_82598EB)
7133 dcb_max = min_t(unsigned int, indices * MAX_TRAFFIC_CLASS,
7134 IXGBE_MAX_RSS_INDICES);
7135 else
7136 dcb_max = min_t(unsigned int, indices * MAX_TRAFFIC_CLASS,
7137 IXGBE_MAX_FDIR_INDICES);
John Fastabende901acd2011-04-26 07:26:08 +00007138#endif
7139
John Fastabendc85a2612010-02-25 23:15:21 +00007140 if (ii->mac == ixgbe_mac_82598EB)
7141 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7142 else
7143 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7144
John Fastabende901acd2011-04-26 07:26:08 +00007145#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007146 indices += min_t(unsigned int, num_possible_cpus(),
7147 IXGBE_MAX_FCOE_INDICES);
7148#endif
John Fastabend3f4a6f02012-06-05 05:58:52 +00007149 indices = max_t(unsigned int, dcb_max, indices);
John Fastabendc85a2612010-02-25 23:15:21 +00007150 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007151 if (!netdev) {
7152 err = -ENOMEM;
7153 goto err_alloc_etherdev;
7154 }
7155
Auke Kok9a799d72007-09-15 14:07:45 -07007156 SET_NETDEV_DEV(netdev, &pdev->dev);
7157
Auke Kok9a799d72007-09-15 14:07:45 -07007158 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007159 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007160
7161 adapter->netdev = netdev;
7162 adapter->pdev = pdev;
7163 hw = &adapter->hw;
7164 hw->back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00007165 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kok9a799d72007-09-15 14:07:45 -07007166
Jeff Kirsher05857982008-09-11 19:57:00 -07007167 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007168 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007169 if (!hw->hw_addr) {
7170 err = -EIO;
7171 goto err_ioremap;
7172 }
7173
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007174 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007175 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007176 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007177 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007178
Auke Kok9a799d72007-09-15 14:07:45 -07007179 adapter->bd_number = cards_found;
7180
Auke Kok9a799d72007-09-15 14:07:45 -07007181 /* Setup hw api */
7182 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007183 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007184
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007185 /* EEPROM */
7186 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7187 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7188 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7189 if (!(eec & (1 << 8)))
7190 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7191
7192 /* PHY */
7193 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007194 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007195 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7196 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7197 hw->phy.mdio.mmds = 0;
7198 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7199 hw->phy.mdio.dev = netdev;
7200 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7201 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007202
Don Skidmore8ca783a2009-05-26 20:40:47 -07007203 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007204
7205 /* setup the private structure */
7206 err = ixgbe_sw_init(adapter);
7207 if (err)
7208 goto err_sw_init;
7209
Don Skidmoree86bff02010-02-11 04:14:08 +00007210 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007211 switch (adapter->hw.mac.type) {
7212 case ixgbe_mac_82599EB:
7213 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007214 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007215 break;
7216 default:
7217 break;
7218 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007219
Don Skidmorebf069c92009-05-07 10:39:54 +00007220 /*
7221 * If there is a fan on this device and it has failed log the
7222 * failure.
7223 */
7224 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7225 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7226 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007227 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007228 }
7229
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00007230 if (allow_unsupported_sfp)
7231 hw->allow_unsupported_sfp = allow_unsupported_sfp;
7232
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007233 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007234 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007235 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007236 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007237 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7238 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007239 err = 0;
7240 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007241 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007242 "module type was detected.\n");
7243 e_dev_err("Reload the driver after installing a supported "
7244 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007245 goto err_sw_init;
7246 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007247 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007248 goto err_sw_init;
7249 }
7250
Alexander Duyck99d74482012-05-09 08:09:25 +00007251#ifdef CONFIG_PCI_IOV
7252 ixgbe_enable_sriov(adapter, ii);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007253
Alexander Duyck99d74482012-05-09 08:09:25 +00007254#endif
Emil Tantilov396e7992010-07-01 20:05:12 +00007255 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007256 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00007257 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00007258 NETIF_F_HW_VLAN_TX |
7259 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00007260 NETIF_F_HW_VLAN_FILTER |
7261 NETIF_F_TSO |
7262 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00007263 NETIF_F_RXHASH |
7264 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007265
Don Skidmore082757a2011-07-21 05:55:00 +00007266 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007267
Don Skidmore58be7662011-04-12 09:42:11 +00007268 switch (adapter->hw.mac.type) {
7269 case ixgbe_mac_82599EB:
7270 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007271 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00007272 netdev->hw_features |= NETIF_F_SCTP_CSUM |
7273 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00007274 break;
7275 default:
7276 break;
7277 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007278
Ben Greear3f2d1c02012-03-08 08:28:41 +00007279 netdev->hw_features |= NETIF_F_RXALL;
7280
Jeff Kirsherad31c402008-06-05 04:05:30 -07007281 netdev->vlan_features |= NETIF_F_TSO;
7282 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007283 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007284 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007285 netdev->vlan_features |= NETIF_F_SG;
7286
Jiri Pirko01789342011-08-16 06:29:00 +00007287 netdev->priv_flags |= IFF_UNICAST_FLT;
Ben Greearf43f3132012-03-06 09:42:04 +00007288 netdev->priv_flags |= IFF_SUPP_NOFCS;
Jiri Pirko01789342011-08-16 06:29:00 +00007289
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007290#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007291 netdev->dcbnl_ops = &dcbnl_ops;
7292#endif
7293
Yi Zoueacd73f2009-05-13 13:11:06 +00007294#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007295 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007296 if (hw->mac.ops.get_device_caps) {
7297 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007298 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7299 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007300 }
Alexander Duyck7c8ae652012-05-05 05:32:47 +00007301
7302 adapter->ring_feature[RING_F_FCOE].limit = IXGBE_FCRETA_SIZE;
7303
Alexander Duycka58915c2012-05-25 06:38:18 +00007304 netdev->features |= NETIF_F_FSO |
7305 NETIF_F_FCOE_CRC;
7306
Alexander Duyck7c8ae652012-05-05 05:32:47 +00007307 netdev->vlan_features |= NETIF_F_FSO |
7308 NETIF_F_FCOE_CRC |
7309 NETIF_F_FCOE_MTU;
Yi Zou5e09d7f2010-07-19 13:59:52 +00007310 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007311#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007312 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007313 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007314 netdev->vlan_features |= NETIF_F_HIGHDMA;
7315 }
Auke Kok9a799d72007-09-15 14:07:45 -07007316
Don Skidmore082757a2011-07-21 05:55:00 +00007317 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
7318 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007319 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007320 netdev->features |= NETIF_F_LRO;
7321
Auke Kok9a799d72007-09-15 14:07:45 -07007322 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007323 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007324 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007325 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007326 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007327 }
7328
7329 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7330 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7331
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007332 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007333 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007334 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007335 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007336 }
7337
Alexander Duyck70864002011-04-27 09:13:56 +00007338 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
Alexander Duyck581330b2012-02-08 07:51:47 +00007339 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007340
Alexander Duyck70864002011-04-27 09:13:56 +00007341 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7342 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007343
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007344 err = ixgbe_init_interrupt_scheme(adapter);
7345 if (err)
7346 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007347
Jacob Keller8e2813f2012-04-21 06:05:40 +00007348 /* WOL not supported for all devices */
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007349 adapter->wol = 0;
Jacob Keller8e2813f2012-04-21 06:05:40 +00007350 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
7351 if (ixgbe_wol_supported(adapter, pdev->device, pdev->subsystem_device))
Andy Gospodarek9417c462011-07-16 07:31:33 +00007352 adapter->wol = IXGBE_WUFC_MAG;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007353
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007354 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7355
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007356#ifdef CONFIG_IXGBE_PTP
7357 ixgbe_ptp_init(adapter);
7358#endif /* CONFIG_IXGBE_PTP*/
7359
Emil Tantilov15e52092011-09-29 05:01:29 +00007360 /* save off EEPROM version number */
7361 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
7362 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
7363
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007364 /* pick up the PCI bus settings for reporting later */
7365 hw->mac.ops.get_bus_info(hw);
7366
Auke Kok9a799d72007-09-15 14:07:45 -07007367 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007368 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007369 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7370 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007371 "Unknown"),
7372 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7373 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7374 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7375 "Unknown"),
7376 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007377
7378 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7379 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007380 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007381 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007382 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007383 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007384 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007385 else
Don Skidmore289700db2010-12-03 03:32:58 +00007386 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7387 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007388
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007389 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007390 e_dev_warn("PCI-Express bandwidth available for this card is "
7391 "not sufficient for optimal performance.\n");
7392 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7393 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007394 }
7395
Auke Kok9a799d72007-09-15 14:07:45 -07007396 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007397 err = hw->mac.ops.start_hw(hw);
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007398 if (err == IXGBE_ERR_EEPROM_VERSION) {
7399 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007400 e_dev_warn("This device is a pre-production adapter/LOM. "
7401 "Please be aware there may be issues associated "
7402 "with your hardware. If you are experiencing "
7403 "problems please contact your Intel or hardware "
7404 "representative who provided you with this "
7405 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007406 }
Auke Kok9a799d72007-09-15 14:07:45 -07007407 strcpy(netdev->name, "eth%d");
7408 err = register_netdev(netdev);
7409 if (err)
7410 goto err_register;
7411
Emil Tantilov93d3ce82011-10-19 07:59:55 +00007412 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7413 if (hw->mac.ops.disable_tx_laser &&
7414 ((hw->phy.multispeed_fiber) ||
7415 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
7416 (hw->mac.type == ixgbe_mac_82599EB))))
7417 hw->mac.ops.disable_tx_laser(hw);
7418
Jesse Brandeburg54386462009-04-17 20:44:27 +00007419 /* carrier off reporting is important to ethtool even BEFORE open */
7420 netif_carrier_off(netdev);
7421
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007422#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007423 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007424 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007425 ixgbe_setup_dca(adapter);
7426 }
7427#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007428 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007429 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007430 for (i = 0; i < adapter->num_vfs; i++)
7431 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7432 }
7433
Jacob Keller2466dd92011-09-08 03:50:54 +00007434 /* firmware requires driver version to be 0xFFFFFFFF
7435 * since os does not support feature
7436 */
Emil Tantilov9612de92011-05-07 07:40:20 +00007437 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00007438 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
7439 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00007440
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007441 /* add san mac addr to netdev */
7442 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007443
Neerav Parikhea818752012-01-04 20:23:40 +00007444 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07007445 cards_found++;
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007446
Don Skidmore12109822012-05-04 06:07:08 +00007447#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007448 if (ixgbe_sysfs_init(adapter))
7449 e_err(probe, "failed to allocate sysfs resources\n");
Don Skidmore12109822012-05-04 06:07:08 +00007450#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007451
Catherine Sullivan00949162012-08-10 01:59:10 +00007452#ifdef CONFIG_DEBUG_FS
7453 ixgbe_dbg_adapter_init(adapter);
7454#endif /* CONFIG_DEBUG_FS */
7455
Auke Kok9a799d72007-09-15 14:07:45 -07007456 return 0;
7457
7458err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007459 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007460 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007461err_sw_init:
Alexander Duyck99d74482012-05-09 08:09:25 +00007462 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007463 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007464 iounmap(hw->hw_addr);
7465err_ioremap:
7466 free_netdev(netdev);
7467err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007468 pci_release_selected_regions(pdev,
7469 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007470err_pci_reg:
7471err_dma:
7472 pci_disable_device(pdev);
7473 return err;
7474}
7475
7476/**
7477 * ixgbe_remove - Device Removal Routine
7478 * @pdev: PCI device information struct
7479 *
7480 * ixgbe_remove is called by the PCI subsystem to alert the driver
7481 * that it should release a PCI device. The could be caused by a
7482 * Hot-Plug event, or because the driver is going to be removed from
7483 * memory.
7484 **/
7485static void __devexit ixgbe_remove(struct pci_dev *pdev)
7486{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007487 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7488 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007489
Catherine Sullivan00949162012-08-10 01:59:10 +00007490#ifdef CONFIG_DEBUG_FS
7491 ixgbe_dbg_adapter_exit(adapter);
7492#endif /*CONFIG_DEBUG_FS */
7493
Auke Kok9a799d72007-09-15 14:07:45 -07007494 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007495 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007496
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007497#ifdef CONFIG_IXGBE_PTP
7498 ixgbe_ptp_stop(adapter);
7499#endif
7500
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007501#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007502 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7503 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7504 dca_remove_requester(&pdev->dev);
7505 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7506 }
7507
7508#endif
Don Skidmore12109822012-05-04 06:07:08 +00007509#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007510 ixgbe_sysfs_exit(adapter);
Don Skidmore12109822012-05-04 06:07:08 +00007511#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007512
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007513 /* remove the added san mac */
7514 ixgbe_del_sanmac_netdev(netdev);
7515
Donald Skidmorec4900be2008-11-20 21:11:42 -08007516 if (netdev->reg_state == NETREG_REGISTERED)
7517 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007518
Alexander Duyck92971272012-05-23 02:58:40 +00007519 ixgbe_disable_sriov(adapter);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007520
Alexander Duyck7a921c92009-05-06 10:43:28 +00007521 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007522
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007523 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007524
Alexander Duyck2b1588c2012-03-17 02:39:16 +00007525#ifdef CONFIG_DCB
7526 kfree(adapter->ixgbe_ieee_pfc);
7527 kfree(adapter->ixgbe_ieee_ets);
7528
7529#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007530 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007531 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007532 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007533
Emil Tantilov849c4542010-06-03 16:53:41 +00007534 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007535
Auke Kok9a799d72007-09-15 14:07:45 -07007536 free_netdev(netdev);
7537
Frans Pop19d5afd2009-10-02 10:04:12 -07007538 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007539
Auke Kok9a799d72007-09-15 14:07:45 -07007540 pci_disable_device(pdev);
7541}
7542
7543/**
7544 * ixgbe_io_error_detected - called when PCI error is detected
7545 * @pdev: Pointer to PCI device
7546 * @state: The current pci connection state
7547 *
7548 * This function is called after a PCI bus error affecting
7549 * this device has been detected.
7550 */
7551static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007552 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007553{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007554 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7555 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007556
Greg Rose83c61fa2011-09-07 05:59:35 +00007557#ifdef CONFIG_PCI_IOV
7558 struct pci_dev *bdev, *vfdev;
7559 u32 dw0, dw1, dw2, dw3;
7560 int vf, pos;
7561 u16 req_id, pf_func;
7562
7563 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
7564 adapter->num_vfs == 0)
7565 goto skip_bad_vf_detection;
7566
7567 bdev = pdev->bus->self;
7568 while (bdev && (bdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT))
7569 bdev = bdev->bus->self;
7570
7571 if (!bdev)
7572 goto skip_bad_vf_detection;
7573
7574 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
7575 if (!pos)
7576 goto skip_bad_vf_detection;
7577
7578 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
7579 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
7580 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
7581 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
7582
7583 req_id = dw1 >> 16;
7584 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
7585 if (!(req_id & 0x0080))
7586 goto skip_bad_vf_detection;
7587
7588 pf_func = req_id & 0x01;
7589 if ((pf_func & 1) == (pdev->devfn & 1)) {
7590 unsigned int device_id;
7591
7592 vf = (req_id & 0x7F) >> 1;
7593 e_dev_err("VF %d has caused a PCIe error\n", vf);
7594 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
7595 "%8.8x\tdw3: %8.8x\n",
7596 dw0, dw1, dw2, dw3);
7597 switch (adapter->hw.mac.type) {
7598 case ixgbe_mac_82599EB:
7599 device_id = IXGBE_82599_VF_DEVICE_ID;
7600 break;
7601 case ixgbe_mac_X540:
7602 device_id = IXGBE_X540_VF_DEVICE_ID;
7603 break;
7604 default:
7605 device_id = 0;
7606 break;
7607 }
7608
7609 /* Find the pci device of the offending VF */
Jon Mason36e90312012-07-19 21:02:09 +00007610 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, device_id, NULL);
Greg Rose83c61fa2011-09-07 05:59:35 +00007611 while (vfdev) {
7612 if (vfdev->devfn == (req_id & 0xFF))
7613 break;
Jon Mason36e90312012-07-19 21:02:09 +00007614 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Greg Rose83c61fa2011-09-07 05:59:35 +00007615 device_id, vfdev);
7616 }
7617 /*
7618 * There's a slim chance the VF could have been hot plugged,
7619 * so if it is no longer present we don't need to issue the
7620 * VFLR. Just clean up the AER in that case.
7621 */
7622 if (vfdev) {
7623 e_dev_err("Issuing VFLR to VF %d\n", vf);
7624 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
7625 }
7626
7627 pci_cleanup_aer_uncorrect_error_status(pdev);
7628 }
7629
7630 /*
7631 * Even though the error may have occurred on the other port
7632 * we still need to increment the vf error reference count for
7633 * both ports because the I/O resume function will be called
7634 * for both of them.
7635 */
7636 adapter->vferr_refcount++;
7637
7638 return PCI_ERS_RESULT_RECOVERED;
7639
7640skip_bad_vf_detection:
7641#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07007642 netif_device_detach(netdev);
7643
Breno Leitao3044b8d2009-05-06 10:44:26 +00007644 if (state == pci_channel_io_perm_failure)
7645 return PCI_ERS_RESULT_DISCONNECT;
7646
Auke Kok9a799d72007-09-15 14:07:45 -07007647 if (netif_running(netdev))
7648 ixgbe_down(adapter);
7649 pci_disable_device(pdev);
7650
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007651 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007652 return PCI_ERS_RESULT_NEED_RESET;
7653}
7654
7655/**
7656 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7657 * @pdev: Pointer to PCI device
7658 *
7659 * Restart the card from scratch, as if from a cold-boot.
7660 */
7661static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7662{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007663 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007664 pci_ers_result_t result;
7665 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007666
gouji-new9ce77662009-05-06 10:44:45 +00007667 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007668 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007669 result = PCI_ERS_RESULT_DISCONNECT;
7670 } else {
7671 pci_set_master(pdev);
7672 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007673 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007674
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007675 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007676
7677 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007678 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007679 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007680 }
Auke Kok9a799d72007-09-15 14:07:45 -07007681
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007682 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7683 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007684 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7685 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007686 /* non-fatal, continue */
7687 }
Auke Kok9a799d72007-09-15 14:07:45 -07007688
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007689 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007690}
7691
7692/**
7693 * ixgbe_io_resume - called when traffic can start flowing again.
7694 * @pdev: Pointer to PCI device
7695 *
7696 * This callback is called when the error recovery driver tells us that
7697 * its OK to resume normal operation.
7698 */
7699static void ixgbe_io_resume(struct pci_dev *pdev)
7700{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007701 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7702 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007703
Greg Rose83c61fa2011-09-07 05:59:35 +00007704#ifdef CONFIG_PCI_IOV
7705 if (adapter->vferr_refcount) {
7706 e_info(drv, "Resuming after VF err\n");
7707 adapter->vferr_refcount--;
7708 return;
7709 }
7710
7711#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00007712 if (netif_running(netdev))
7713 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007714
7715 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007716}
7717
7718static struct pci_error_handlers ixgbe_err_handler = {
7719 .error_detected = ixgbe_io_error_detected,
7720 .slot_reset = ixgbe_io_slot_reset,
7721 .resume = ixgbe_io_resume,
7722};
7723
7724static struct pci_driver ixgbe_driver = {
7725 .name = ixgbe_driver_name,
7726 .id_table = ixgbe_pci_tbl,
7727 .probe = ixgbe_probe,
7728 .remove = __devexit_p(ixgbe_remove),
7729#ifdef CONFIG_PM
7730 .suspend = ixgbe_suspend,
7731 .resume = ixgbe_resume,
7732#endif
7733 .shutdown = ixgbe_shutdown,
7734 .err_handler = &ixgbe_err_handler
7735};
7736
7737/**
7738 * ixgbe_init_module - Driver Registration Routine
7739 *
7740 * ixgbe_init_module is the first routine called when the driver is
7741 * loaded. All it does is register with the PCI subsystem.
7742 **/
7743static int __init ixgbe_init_module(void)
7744{
7745 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007746 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007747 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007748
Catherine Sullivan00949162012-08-10 01:59:10 +00007749#ifdef CONFIG_DEBUG_FS
7750 ixgbe_dbg_init();
7751#endif /* CONFIG_DEBUG_FS */
7752
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007753#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007754 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007755#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007756
Auke Kok9a799d72007-09-15 14:07:45 -07007757 ret = pci_register_driver(&ixgbe_driver);
7758 return ret;
7759}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007760
Auke Kok9a799d72007-09-15 14:07:45 -07007761module_init(ixgbe_init_module);
7762
7763/**
7764 * ixgbe_exit_module - Driver Exit Cleanup Routine
7765 *
7766 * ixgbe_exit_module is called just before the driver is removed
7767 * from memory.
7768 **/
7769static void __exit ixgbe_exit_module(void)
7770{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007771#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007772 dca_unregister_notify(&dca_notifier);
7773#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007774 pci_unregister_driver(&ixgbe_driver);
Catherine Sullivan00949162012-08-10 01:59:10 +00007775
7776#ifdef CONFIG_DEBUG_FS
7777 ixgbe_dbg_exit();
7778#endif /* CONFIG_DEBUG_FS */
7779
Eric Dumazet1a515022010-11-16 19:26:42 -08007780 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007781}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007782
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007783#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007784static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007785 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007786{
7787 int ret_val;
7788
7789 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007790 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007791
7792 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7793}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007794
Alexander Duyckb4533682009-03-31 21:32:42 +00007795#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007796
Auke Kok9a799d72007-09-15 14:07:45 -07007797module_exit(ixgbe_exit_module);
7798
7799/* ixgbe_main.c */