blob: 9e72ae6d84928fad0f101f4db13e6b5fd7f7389b [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore94971822012-01-06 03:24:16 +00004 Copyright(c) 1999 - 2012 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
Auke Kok9a799d72007-09-15 14:07:45 -070023 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28#include <linux/types.h>
29#include <linux/module.h>
30#include <linux/pci.h>
31#include <linux/netdevice.h>
32#include <linux/vmalloc.h>
33#include <linux/string.h>
34#include <linux/in.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000035#include <linux/interrupt.h>
Auke Kok9a799d72007-09-15 14:07:45 -070036#include <linux/ip.h>
37#include <linux/tcp.h>
Alexander Duyck897ab152011-05-27 05:31:47 +000038#include <linux/sctp.h>
Lucy Liu60127862009-07-22 14:07:33 +000039#include <linux/pkt_sched.h>
Auke Kok9a799d72007-09-15 14:07:45 -070040#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Auke Kok9a799d72007-09-15 14:07:45 -070042#include <net/checksum.h>
43#include <net/ip6_checksum.h>
44#include <linux/ethtool.h>
Jiri Pirko01789342011-08-16 06:29:00 +000045#include <linux/if.h>
Auke Kok9a799d72007-09-15 14:07:45 -070046#include <linux/if_vlan.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040047#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000048#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070049
50#include "ixgbe.h"
51#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000052#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000053#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070054
55char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070056static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000057 "Intel(R) 10 Gigabit PCI Express Network Driver";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000058#ifdef IXGBE_FCOE
Neerav Parikhea818752012-01-04 20:23:40 +000059char ixgbe_default_device_descr[] =
60 "Intel(R) 10 Gigabit Network Connection";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000061#else
62static char ixgbe_default_device_descr[] =
63 "Intel(R) 10 Gigabit Network Connection";
64#endif
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000065#define MAJ 3
Don Skidmoreeef45602012-04-28 03:29:22 +000066#define MIN 9
67#define BUILD 15
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000068#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
Don Skidmorea38a1042011-05-20 03:05:14 +000069 __stringify(BUILD) "-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070070const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000071static const char ixgbe_copyright[] =
Don Skidmore94971822012-01-06 03:24:16 +000072 "Copyright (c) 1999-2012 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070073
74static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070075 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000076 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e12010-11-16 19:27:16 -080077 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070078};
79
80/* ixgbe_pci_tbl - PCI Device ID Table
81 *
82 * Wildcard entries (PCI_ANY_ID) should come last
83 * Last entry must be all 0s
84 *
85 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
86 * Class, Class Mask, private data (not used) }
87 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000088static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Alexander Duyck54239c62011-07-15 03:06:06 +000089 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
90 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
91 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
92 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
93 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
94 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
95 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
96 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
97 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
98 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
99 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
112 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
113 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
114 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
Emil Tantilov7d145282011-09-08 08:30:14 +0000115 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
Emil Tantilov9e791e42011-11-04 06:43:29 +0000116 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
Auke Kok9a799d72007-09-15 14:07:45 -0700117 /* required last entry */
118 {0, }
119};
120MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
121
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400122#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800123static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000124 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800125static struct notifier_block dca_notifier = {
126 .notifier_call = ixgbe_notify_dca,
127 .next = NULL,
128 .priority = 0
129};
130#endif
131
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000132#ifdef CONFIG_PCI_IOV
133static unsigned int max_vfs;
134module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000135MODULE_PARM_DESC(max_vfs,
Greg Rose6b42a9c2012-04-17 04:29:29 +0000136 "Maximum number of virtual functions to allocate per physical function - default is zero and maximum value is 63");
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000137#endif /* CONFIG_PCI_IOV */
138
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000139static unsigned int allow_unsupported_sfp;
140module_param(allow_unsupported_sfp, uint, 0);
141MODULE_PARM_DESC(allow_unsupported_sfp,
142 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
143
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000144#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
145static int debug = -1;
146module_param(debug, int, 0);
147MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
148
Auke Kok9a799d72007-09-15 14:07:45 -0700149MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
150MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
151MODULE_LICENSE("GPL");
152MODULE_VERSION(DRV_VERSION);
153
Alexander Duyck70864002011-04-27 09:13:56 +0000154static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
155{
156 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
157 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
158 schedule_work(&adapter->service_task);
159}
160
161static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
162{
163 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
164
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000165 /* flush memory to make sure state is correct before next watchdog */
Alexander Duyck70864002011-04-27 09:13:56 +0000166 smp_mb__before_clear_bit();
167 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
168}
169
Taku Izumidcd79ae2010-04-27 14:39:53 +0000170struct ixgbe_reg_info {
171 u32 ofs;
172 char *name;
173};
174
175static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
176
177 /* General Registers */
178 {IXGBE_CTRL, "CTRL"},
179 {IXGBE_STATUS, "STATUS"},
180 {IXGBE_CTRL_EXT, "CTRL_EXT"},
181
182 /* Interrupt Registers */
183 {IXGBE_EICR, "EICR"},
184
185 /* RX Registers */
186 {IXGBE_SRRCTL(0), "SRRCTL"},
187 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
188 {IXGBE_RDLEN(0), "RDLEN"},
189 {IXGBE_RDH(0), "RDH"},
190 {IXGBE_RDT(0), "RDT"},
191 {IXGBE_RXDCTL(0), "RXDCTL"},
192 {IXGBE_RDBAL(0), "RDBAL"},
193 {IXGBE_RDBAH(0), "RDBAH"},
194
195 /* TX Registers */
196 {IXGBE_TDBAL(0), "TDBAL"},
197 {IXGBE_TDBAH(0), "TDBAH"},
198 {IXGBE_TDLEN(0), "TDLEN"},
199 {IXGBE_TDH(0), "TDH"},
200 {IXGBE_TDT(0), "TDT"},
201 {IXGBE_TXDCTL(0), "TXDCTL"},
202
203 /* List Terminator */
204 {}
205};
206
207
208/*
209 * ixgbe_regdump - register printout routine
210 */
211static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
212{
213 int i = 0, j = 0;
214 char rname[16];
215 u32 regs[64];
216
217 switch (reginfo->ofs) {
218 case IXGBE_SRRCTL(0):
219 for (i = 0; i < 64; i++)
220 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
221 break;
222 case IXGBE_DCA_RXCTRL(0):
223 for (i = 0; i < 64; i++)
224 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
225 break;
226 case IXGBE_RDLEN(0):
227 for (i = 0; i < 64; i++)
228 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
229 break;
230 case IXGBE_RDH(0):
231 for (i = 0; i < 64; i++)
232 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
233 break;
234 case IXGBE_RDT(0):
235 for (i = 0; i < 64; i++)
236 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
237 break;
238 case IXGBE_RXDCTL(0):
239 for (i = 0; i < 64; i++)
240 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
241 break;
242 case IXGBE_RDBAL(0):
243 for (i = 0; i < 64; i++)
244 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
245 break;
246 case IXGBE_RDBAH(0):
247 for (i = 0; i < 64; i++)
248 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
249 break;
250 case IXGBE_TDBAL(0):
251 for (i = 0; i < 64; i++)
252 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
253 break;
254 case IXGBE_TDBAH(0):
255 for (i = 0; i < 64; i++)
256 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
257 break;
258 case IXGBE_TDLEN(0):
259 for (i = 0; i < 64; i++)
260 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
261 break;
262 case IXGBE_TDH(0):
263 for (i = 0; i < 64; i++)
264 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
265 break;
266 case IXGBE_TDT(0):
267 for (i = 0; i < 64; i++)
268 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
269 break;
270 case IXGBE_TXDCTL(0):
271 for (i = 0; i < 64; i++)
272 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
273 break;
274 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000275 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000276 IXGBE_READ_REG(hw, reginfo->ofs));
277 return;
278 }
279
280 for (i = 0; i < 8; i++) {
281 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000282 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000283 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000284 pr_cont(" %08x", regs[i*8+j]);
285 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000286 }
287
288}
289
290/*
291 * ixgbe_dump - Print registers, tx-rings and rx-rings
292 */
293static void ixgbe_dump(struct ixgbe_adapter *adapter)
294{
295 struct net_device *netdev = adapter->netdev;
296 struct ixgbe_hw *hw = &adapter->hw;
297 struct ixgbe_reg_info *reginfo;
298 int n = 0;
299 struct ixgbe_ring *tx_ring;
Alexander Duyck729739b2012-02-08 07:51:06 +0000300 struct ixgbe_tx_buffer *tx_buffer;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000301 union ixgbe_adv_tx_desc *tx_desc;
302 struct my_u0 { u64 a; u64 b; } *u0;
303 struct ixgbe_ring *rx_ring;
304 union ixgbe_adv_rx_desc *rx_desc;
305 struct ixgbe_rx_buffer *rx_buffer_info;
306 u32 staterr;
307 int i = 0;
308
309 if (!netif_msg_hw(adapter))
310 return;
311
312 /* Print netdevice Info */
313 if (netdev) {
314 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000315 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000316 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000317 pr_info("%-15s %016lX %016lX %016lX\n",
318 netdev->name,
319 netdev->state,
320 netdev->trans_start,
321 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000322 }
323
324 /* Print Registers */
325 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000326 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000327 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
328 reginfo->name; reginfo++) {
329 ixgbe_regdump(hw, reginfo);
330 }
331
332 /* Print TX Ring Summary */
333 if (!netdev || !netif_running(netdev))
334 goto exit;
335
336 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000337 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000338 for (n = 0; n < adapter->num_tx_queues; n++) {
339 tx_ring = adapter->tx_ring[n];
Alexander Duyck729739b2012-02-08 07:51:06 +0000340 tx_buffer = &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Alexander Duyckd3d00232011-07-15 02:31:25 +0000341 pr_info(" %5d %5X %5X %016llX %04X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000342 n, tx_ring->next_to_use, tx_ring->next_to_clean,
Alexander Duyck729739b2012-02-08 07:51:06 +0000343 (u64)dma_unmap_addr(tx_buffer, dma),
344 dma_unmap_len(tx_buffer, len),
345 tx_buffer->next_to_watch,
346 (u64)tx_buffer->time_stamp);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000347 }
348
349 /* Print TX Rings */
350 if (!netif_msg_tx_done(adapter))
351 goto rx_ring_summary;
352
353 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
354
355 /* Transmit Descriptor Formats
356 *
357 * Advanced Transmit Descriptor
358 * +--------------------------------------------------------------+
359 * 0 | Buffer Address [63:0] |
360 * +--------------------------------------------------------------+
361 * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
362 * +--------------------------------------------------------------+
363 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
364 */
365
366 for (n = 0; n < adapter->num_tx_queues; n++) {
367 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000368 pr_info("------------------------------------\n");
369 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
370 pr_info("------------------------------------\n");
371 pr_info("T [desc] [address 63:0 ] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000372 "[PlPOIdStDDt Ln] [bi->dma ] "
373 "leng ntw timestamp bi->skb\n");
374
375 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duycke4f74022012-01-31 02:59:44 +0000376 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000377 tx_buffer = &tx_ring->tx_buffer_info[i];
Taku Izumidcd79ae2010-04-27 14:39:53 +0000378 u0 = (struct my_u0 *)tx_desc;
Joe Perchesc7689572010-09-07 21:35:17 +0000379 pr_info("T [0x%03X] %016llX %016llX %016llX"
Alexander Duyckd3d00232011-07-15 02:31:25 +0000380 " %04X %p %016llX %p", i,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000381 le64_to_cpu(u0->a),
382 le64_to_cpu(u0->b),
Alexander Duyck729739b2012-02-08 07:51:06 +0000383 (u64)dma_unmap_addr(tx_buffer, dma),
384 dma_unmap_len(tx_buffer, len),
385 tx_buffer->next_to_watch,
386 (u64)tx_buffer->time_stamp,
387 tx_buffer->skb);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000388 if (i == tx_ring->next_to_use &&
389 i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000390 pr_cont(" NTC/U\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000391 else if (i == tx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000392 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000393 else if (i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000394 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000395 else
Joe Perchesc7689572010-09-07 21:35:17 +0000396 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000397
398 if (netif_msg_pktdata(adapter) &&
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 Duyck4c1975d2012-01-31 02:59:23 +00001323static void ixgbe_get_rsc_cnt(struct ixgbe_ring *rx_ring,
1324 union ixgbe_adv_rx_desc *rx_desc,
1325 struct sk_buff *skb)
1326{
1327 __le32 rsc_enabled;
1328 u32 rsc_cnt;
1329
1330 if (!ring_is_rsc_enabled(rx_ring))
1331 return;
1332
1333 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1334 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1335
1336 /* If this is an RSC frame rsc_cnt should be non-zero */
1337 if (!rsc_enabled)
1338 return;
1339
1340 rsc_cnt = le32_to_cpu(rsc_enabled);
1341 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1342
1343 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
Alexander Duyckaa801752010-11-16 19:27:02 -08001344}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001345
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001346static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1347 struct sk_buff *skb)
1348{
Alexander Duyckf8003262012-03-03 02:35:52 +00001349 u16 hdr_len = skb_headlen(skb);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001350
1351 /* set gso_size to avoid messing up TCP MSS */
1352 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1353 IXGBE_CB(skb)->append_cnt);
1354}
1355
1356static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1357 struct sk_buff *skb)
1358{
1359 /* if append_cnt is 0 then frame is not RSC */
1360 if (!IXGBE_CB(skb)->append_cnt)
1361 return;
1362
1363 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1364 rx_ring->rx_stats.rsc_flush++;
1365
1366 ixgbe_set_rsc_gso_size(rx_ring, skb);
1367
1368 /* gso_size is computed using append_cnt so always clear it last */
1369 IXGBE_CB(skb)->append_cnt = 0;
1370}
1371
Alexander Duyck8a0da212012-01-31 02:59:49 +00001372/**
1373 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1374 * @rx_ring: rx descriptor ring packet is being transacted on
1375 * @rx_desc: pointer to the EOP Rx descriptor
1376 * @skb: pointer to current skb being populated
1377 *
1378 * This function checks the ring, descriptor, and packet information in
1379 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1380 * other fields within the skb.
1381 **/
1382static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1383 union ixgbe_adv_rx_desc *rx_desc,
1384 struct sk_buff *skb)
1385{
John Fastabend43e95f12012-05-15 06:12:17 +00001386 struct net_device *dev = rx_ring->netdev;
1387
Alexander Duyck8a0da212012-01-31 02:59:49 +00001388 ixgbe_update_rsc_stats(rx_ring, skb);
1389
1390 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1391
1392 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1393
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001394#ifdef CONFIG_IXGBE_PTP
Jacob Keller1d1a79b2012-05-22 06:18:08 +00001395 ixgbe_ptp_rx_hwtstamp(rx_ring->q_vector, rx_desc, skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001396#endif
1397
John Fastabend43e95f12012-05-15 06:12:17 +00001398 if ((dev->features & NETIF_F_HW_VLAN_RX) &&
1399 ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001400 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
1401 __vlan_hwaccel_put_tag(skb, vid);
1402 }
1403
1404 skb_record_rx_queue(skb, rx_ring->queue_index);
1405
John Fastabend43e95f12012-05-15 06:12:17 +00001406 skb->protocol = eth_type_trans(skb, dev);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001407}
1408
1409static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1410 struct sk_buff *skb)
1411{
1412 struct ixgbe_adapter *adapter = q_vector->adapter;
1413
1414 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1415 napi_gro_receive(&q_vector->napi, skb);
1416 else
1417 netif_rx(skb);
Alexander Duyckf8212f92009-04-27 22:42:37 +00001418}
1419
Alexander Duyckf8003262012-03-03 02:35:52 +00001420/**
1421 * ixgbe_is_non_eop - process handling of non-EOP buffers
1422 * @rx_ring: Rx ring being processed
1423 * @rx_desc: Rx descriptor for current buffer
1424 * @skb: Current socket buffer containing buffer in progress
1425 *
1426 * This function updates next to clean. If the buffer is an EOP buffer
1427 * this function exits returning false, otherwise it will place the
1428 * sk_buff in the next buffer to be chained and return true indicating
1429 * that this is in fact a non-EOP buffer.
1430 **/
1431static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring,
1432 union ixgbe_adv_rx_desc *rx_desc,
1433 struct sk_buff *skb)
1434{
1435 u32 ntc = rx_ring->next_to_clean + 1;
1436
1437 /* fetch, update, and store next to clean */
1438 ntc = (ntc < rx_ring->count) ? ntc : 0;
1439 rx_ring->next_to_clean = ntc;
1440
1441 prefetch(IXGBE_RX_DESC(rx_ring, ntc));
1442
1443 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1444 return false;
1445
1446 /* append_cnt indicates packet is RSC, if so fetch nextp */
1447 if (IXGBE_CB(skb)->append_cnt) {
1448 ntc = le32_to_cpu(rx_desc->wb.upper.status_error);
1449 ntc &= IXGBE_RXDADV_NEXTP_MASK;
1450 ntc >>= IXGBE_RXDADV_NEXTP_SHIFT;
1451 }
1452
1453 /* place skb in next buffer to be received */
1454 rx_ring->rx_buffer_info[ntc].skb = skb;
1455 rx_ring->rx_stats.non_eop_descs++;
1456
1457 return true;
1458}
1459
1460/**
Alexander Duyck19861ce2012-07-20 08:08:33 +00001461 * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail
1462 * @rx_ring: rx descriptor ring packet is being transacted on
1463 * @skb: pointer to current skb being adjusted
1464 *
1465 * This function is an ixgbe specific version of __pskb_pull_tail. The
1466 * main difference between this version and the original function is that
1467 * this function can make several assumptions about the state of things
1468 * that allow for significant optimizations versus the standard function.
1469 * As a result we can do things like drop a frag and maintain an accurate
1470 * truesize for the skb.
1471 */
1472static void ixgbe_pull_tail(struct ixgbe_ring *rx_ring,
1473 struct sk_buff *skb)
1474{
1475 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1476 unsigned char *va;
1477 unsigned int pull_len;
1478
1479 /*
1480 * it is valid to use page_address instead of kmap since we are
1481 * working with pages allocated out of the lomem pool per
1482 * alloc_page(GFP_ATOMIC)
1483 */
1484 va = skb_frag_address(frag);
1485
1486 /*
1487 * we need the header to contain the greater of either ETH_HLEN or
1488 * 60 bytes if the skb->len is less than 60 for skb_pad.
1489 */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001490 pull_len = ixgbe_get_headlen(va, IXGBE_RX_HDR_SIZE);
Alexander Duyck19861ce2012-07-20 08:08:33 +00001491
1492 /* align pull length to size of long to optimize memcpy performance */
1493 skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1494
1495 /* update all of the pointers */
1496 skb_frag_size_sub(frag, pull_len);
1497 frag->page_offset += pull_len;
1498 skb->data_len -= pull_len;
1499 skb->tail += pull_len;
Alexander Duyck19861ce2012-07-20 08:08:33 +00001500}
1501
1502/**
Alexander Duyck42073d92012-07-20 08:08:28 +00001503 * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB
1504 * @rx_ring: rx descriptor ring packet is being transacted on
1505 * @skb: pointer to current skb being updated
1506 *
1507 * This function provides a basic DMA sync up for the first fragment of an
1508 * skb. The reason for doing this is that the first fragment cannot be
1509 * unmapped until we have reached the end of packet descriptor for a buffer
1510 * chain.
1511 */
1512static void ixgbe_dma_sync_frag(struct ixgbe_ring *rx_ring,
1513 struct sk_buff *skb)
1514{
1515 /* if the page was released unmap it, else just sync our portion */
1516 if (unlikely(IXGBE_CB(skb)->page_released)) {
1517 dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma,
1518 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
1519 IXGBE_CB(skb)->page_released = false;
1520 } else {
1521 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1522
1523 dma_sync_single_range_for_cpu(rx_ring->dev,
1524 IXGBE_CB(skb)->dma,
1525 frag->page_offset,
1526 ixgbe_rx_bufsz(rx_ring),
1527 DMA_FROM_DEVICE);
1528 }
1529 IXGBE_CB(skb)->dma = 0;
1530}
1531
1532/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001533 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1534 * @rx_ring: rx descriptor ring packet is being transacted on
1535 * @rx_desc: pointer to the EOP Rx descriptor
1536 * @skb: pointer to current skb being fixed
1537 *
1538 * Check for corrupted packet headers caused by senders on the local L2
1539 * embedded NIC switch not setting up their Tx Descriptors right. These
1540 * should be very rare.
1541 *
1542 * Also address the case where we are pulling data in on pages only
1543 * and as such no data is present in the skb header.
1544 *
1545 * In addition if skb is not at least 60 bytes we need to pad it so that
1546 * it is large enough to qualify as a valid Ethernet frame.
1547 *
1548 * Returns true if an error was encountered and skb was freed.
1549 **/
1550static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1551 union ixgbe_adv_rx_desc *rx_desc,
1552 struct sk_buff *skb)
1553{
Alexander Duyckf8003262012-03-03 02:35:52 +00001554 struct net_device *netdev = rx_ring->netdev;
Alexander Duyckf8003262012-03-03 02:35:52 +00001555
Alexander Duyckf8003262012-03-03 02:35:52 +00001556 /* verify that the packet does not have any known errors */
1557 if (unlikely(ixgbe_test_staterr(rx_desc,
1558 IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1559 !(netdev->features & NETIF_F_RXALL))) {
1560 dev_kfree_skb_any(skb);
1561 return true;
1562 }
1563
Alexander Duyck19861ce2012-07-20 08:08:33 +00001564 /* place header in linear portion of buffer */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001565 if (skb_is_nonlinear(skb))
1566 ixgbe_pull_tail(rx_ring, skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001567
Alexander Duyck57efd442012-06-25 21:54:46 +00001568#ifdef IXGBE_FCOE
1569 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1570 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc))
1571 return false;
1572
1573#endif
Alexander Duyckf8003262012-03-03 02:35:52 +00001574 /* if skb_pad returns an error the skb was freed */
1575 if (unlikely(skb->len < 60)) {
1576 int pad_len = 60 - skb->len;
1577
1578 if (skb_pad(skb, pad_len))
1579 return true;
1580 __skb_put(skb, pad_len);
1581 }
1582
1583 return false;
1584}
1585
1586/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001587 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1588 * @rx_ring: rx descriptor ring to store buffers on
1589 * @old_buff: donor buffer to have page reused
1590 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001591 * Synchronizes page for reuse by the adapter
Alexander Duyckf8003262012-03-03 02:35:52 +00001592 **/
1593static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1594 struct ixgbe_rx_buffer *old_buff)
1595{
1596 struct ixgbe_rx_buffer *new_buff;
1597 u16 nta = rx_ring->next_to_alloc;
Alexander Duyckf8003262012-03-03 02:35:52 +00001598
1599 new_buff = &rx_ring->rx_buffer_info[nta];
1600
1601 /* update, and store next to alloc */
1602 nta++;
1603 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1604
1605 /* transfer page from old buffer to new buffer */
1606 new_buff->page = old_buff->page;
1607 new_buff->dma = old_buff->dma;
Alexander Duyck0549ae22012-07-20 08:08:18 +00001608 new_buff->page_offset = old_buff->page_offset;
Alexander Duyckf8003262012-03-03 02:35:52 +00001609
1610 /* sync the buffer for use by the device */
1611 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001612 new_buff->page_offset,
1613 ixgbe_rx_bufsz(rx_ring),
Alexander Duyckf8003262012-03-03 02:35:52 +00001614 DMA_FROM_DEVICE);
Alexander Duyckf8003262012-03-03 02:35:52 +00001615}
1616
1617/**
1618 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1619 * @rx_ring: rx descriptor ring to transact packets on
1620 * @rx_buffer: buffer containing page to add
1621 * @rx_desc: descriptor containing length of buffer written by hardware
1622 * @skb: sk_buff to place the data into
1623 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001624 * This function will add the data contained in rx_buffer->page to the skb.
1625 * This is done either through a direct copy if the data in the buffer is
1626 * less than the skb header size, otherwise it will just attach the page as
1627 * a frag to the skb.
1628 *
1629 * The function will then update the page offset if necessary and return
1630 * true if the buffer can be reused by the adapter.
Alexander Duyckf8003262012-03-03 02:35:52 +00001631 **/
Alexander Duyck0549ae22012-07-20 08:08:18 +00001632static bool ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
Alexander Duyckf8003262012-03-03 02:35:52 +00001633 struct ixgbe_rx_buffer *rx_buffer,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001634 union ixgbe_adv_rx_desc *rx_desc,
1635 struct sk_buff *skb)
Alexander Duyckf8003262012-03-03 02:35:52 +00001636{
Alexander Duyck0549ae22012-07-20 08:08:18 +00001637 struct page *page = rx_buffer->page;
1638 unsigned int size = le16_to_cpu(rx_desc->wb.upper.length);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001639#if (PAGE_SIZE < 8192)
Alexander Duyck0549ae22012-07-20 08:08:18 +00001640 unsigned int truesize = ixgbe_rx_bufsz(rx_ring);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001641#else
1642 unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
1643 unsigned int last_offset = ixgbe_rx_pg_size(rx_ring) -
1644 ixgbe_rx_bufsz(rx_ring);
1645#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001646
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001647 if ((size <= IXGBE_RX_HDR_SIZE) && !skb_is_nonlinear(skb)) {
1648 unsigned char *va = page_address(page) + rx_buffer->page_offset;
1649
1650 memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long)));
1651
1652 /* we can reuse buffer as-is, just make sure it is local */
1653 if (likely(page_to_nid(page) == numa_node_id()))
1654 return true;
1655
1656 /* this page cannot be reused so discard it */
1657 put_page(page);
1658 return false;
1659 }
1660
Alexander Duyck0549ae22012-07-20 08:08:18 +00001661 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
1662 rx_buffer->page_offset, size, truesize);
1663
Alexander Duyck09816fb2012-07-20 08:08:23 +00001664 /* avoid re-using remote pages */
1665 if (unlikely(page_to_nid(page) != numa_node_id()))
1666 return false;
1667
1668#if (PAGE_SIZE < 8192)
1669 /* if we are only owner of page we can reuse it */
1670 if (unlikely(page_count(page) != 1))
Alexander Duyck0549ae22012-07-20 08:08:18 +00001671 return false;
1672
1673 /* flip page offset to other buffer */
1674 rx_buffer->page_offset ^= truesize;
1675
Alexander Duyck09816fb2012-07-20 08:08:23 +00001676 /*
1677 * since we are the only owner of the page and we need to
1678 * increment it, just set the value to 2 in order to avoid
1679 * an unecessary locked operation
1680 */
1681 atomic_set(&page->_count, 2);
1682#else
1683 /* move offset up to the next cache line */
1684 rx_buffer->page_offset += truesize;
1685
1686 if (rx_buffer->page_offset > last_offset)
1687 return false;
1688
Alexander Duyck0549ae22012-07-20 08:08:18 +00001689 /* bump ref count on page before it is given to the stack */
1690 get_page(page);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001691#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001692
1693 return true;
Alexander Duyckf8003262012-03-03 02:35:52 +00001694}
1695
Alexander Duyck18806c92012-07-20 08:08:44 +00001696static struct sk_buff *ixgbe_fetch_rx_buffer(struct ixgbe_ring *rx_ring,
1697 union ixgbe_adv_rx_desc *rx_desc)
1698{
1699 struct ixgbe_rx_buffer *rx_buffer;
1700 struct sk_buff *skb;
1701 struct page *page;
1702
1703 rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];
1704 page = rx_buffer->page;
1705 prefetchw(page);
1706
1707 skb = rx_buffer->skb;
1708
1709 if (likely(!skb)) {
1710 void *page_addr = page_address(page) +
1711 rx_buffer->page_offset;
1712
1713 /* prefetch first cache line of first page */
1714 prefetch(page_addr);
1715#if L1_CACHE_BYTES < 128
1716 prefetch(page_addr + L1_CACHE_BYTES);
1717#endif
1718
1719 /* allocate a skb to store the frags */
1720 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1721 IXGBE_RX_HDR_SIZE);
1722 if (unlikely(!skb)) {
1723 rx_ring->rx_stats.alloc_rx_buff_failed++;
1724 return NULL;
1725 }
1726
1727 /*
1728 * we will be copying header into skb->data in
1729 * pskb_may_pull so it is in our interest to prefetch
1730 * it now to avoid a possible cache miss
1731 */
1732 prefetchw(skb->data);
1733
1734 /*
1735 * Delay unmapping of the first packet. It carries the
1736 * header information, HW may still access the header
1737 * after the writeback. Only unmap it when EOP is
1738 * reached
1739 */
1740 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1741 goto dma_sync;
1742
1743 IXGBE_CB(skb)->dma = rx_buffer->dma;
1744 } else {
1745 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))
1746 ixgbe_dma_sync_frag(rx_ring, skb);
1747
1748dma_sync:
1749 /* we are reusing so sync this buffer for CPU use */
1750 dma_sync_single_range_for_cpu(rx_ring->dev,
1751 rx_buffer->dma,
1752 rx_buffer->page_offset,
1753 ixgbe_rx_bufsz(rx_ring),
1754 DMA_FROM_DEVICE);
1755 }
1756
1757 /* pull page into skb */
1758 if (ixgbe_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
1759 /* hand second half of page back to the ring */
1760 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
1761 } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) {
1762 /* the page has been released from the ring */
1763 IXGBE_CB(skb)->page_released = true;
1764 } else {
1765 /* we are not reusing the buffer so unmap it */
1766 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
1767 ixgbe_rx_pg_size(rx_ring),
1768 DMA_FROM_DEVICE);
1769 }
1770
1771 /* clear contents of buffer_info */
1772 rx_buffer->skb = NULL;
1773 rx_buffer->dma = 0;
1774 rx_buffer->page = NULL;
1775
1776 return skb;
1777}
1778
Alexander Duyckf8003262012-03-03 02:35:52 +00001779/**
1780 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
1781 * @q_vector: structure containing interrupt and ring information
1782 * @rx_ring: rx descriptor ring to transact packets on
1783 * @budget: Total limit on number of packets to process
1784 *
1785 * This function provides a "bounce buffer" approach to Rx interrupt
1786 * processing. The advantage to this is that on systems that have
1787 * expensive overhead for IOMMU access this provides a means of avoiding
1788 * it by maintaining the mapping of the page to the syste.
1789 *
1790 * Returns true if all work is completed without reaching budget
1791 **/
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001792static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001793 struct ixgbe_ring *rx_ring,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001794 int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001795{
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001796 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Ben Greear3f2d1c02012-03-08 08:28:41 +00001797#ifdef IXGBE_FCOE
Alexander Duyckf8003262012-03-03 02:35:52 +00001798 struct ixgbe_adapter *adapter = q_vector->adapter;
Yi Zou3d8fd382009-06-08 14:38:44 +00001799 int ddp_bytes = 0;
1800#endif /* IXGBE_FCOE */
Alexander Duyckf8003262012-03-03 02:35:52 +00001801 u16 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001802
Alexander Duyckf8003262012-03-03 02:35:52 +00001803 do {
Alexander Duyckf8003262012-03-03 02:35:52 +00001804 union ixgbe_adv_rx_desc *rx_desc;
1805 struct sk_buff *skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001806
Alexander Duyckf8003262012-03-03 02:35:52 +00001807 /* return some buffers to hardware, one at a time is too slow */
1808 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
1809 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1810 cleaned_count = 0;
1811 }
Auke Kok9a799d72007-09-15 14:07:45 -07001812
Alexander Duyck18806c92012-07-20 08:08:44 +00001813 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ring->next_to_clean);
Auke Kok9a799d72007-09-15 14:07:45 -07001814
Alexander Duyckf8003262012-03-03 02:35:52 +00001815 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD))
1816 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001817
Alexander Duyckf8003262012-03-03 02:35:52 +00001818 /*
1819 * This memory barrier is needed to keep us from reading
1820 * any other fields out of the rx_desc until we know the
1821 * RXD_STAT_DD bit is set
1822 */
1823 rmb();
Auke Kok9a799d72007-09-15 14:07:45 -07001824
Alexander Duyck18806c92012-07-20 08:08:44 +00001825 /* retrieve a buffer from the ring */
1826 skb = ixgbe_fetch_rx_buffer(rx_ring, rx_desc);
Alexander Duyckf8003262012-03-03 02:35:52 +00001827
Alexander Duyck18806c92012-07-20 08:08:44 +00001828 /* exit if we failed to retrieve a buffer */
1829 if (!skb)
1830 break;
Alexander Duyckf8003262012-03-03 02:35:52 +00001831
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001832 ixgbe_get_rsc_cnt(rx_ring, rx_desc, skb);
1833
Auke Kok9a799d72007-09-15 14:07:45 -07001834 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001835
Alexander Duyckf8003262012-03-03 02:35:52 +00001836 /* place incomplete frames back on ring for completion */
1837 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
1838 continue;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001839
Alexander Duyckf8003262012-03-03 02:35:52 +00001840 /* verify the packet layout is correct */
1841 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
1842 continue;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001843
1844 /* probably a little skewed due to removing CRC */
1845 total_rx_bytes += skb->len;
1846 total_rx_packets++;
1847
Alexander Duyck8a0da212012-01-31 02:59:49 +00001848 /* populate checksum, timestamp, VLAN, and protocol */
1849 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
1850
Yi Zou332d4a72009-05-13 13:11:53 +00001851#ifdef IXGBE_FCOE
1852 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyck57efd442012-06-25 21:54:46 +00001853 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001854 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
David S. Miller823dcd22011-08-20 10:39:12 -07001855 if (!ddp_bytes) {
1856 dev_kfree_skb_any(skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001857 continue;
David S. Miller823dcd22011-08-20 10:39:12 -07001858 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001859 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001860
Yi Zou332d4a72009-05-13 13:11:53 +00001861#endif /* IXGBE_FCOE */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001862 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001863
Alexander Duyckf8003262012-03-03 02:35:52 +00001864 /* update budget accounting */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001865 budget--;
Alexander Duyckf8003262012-03-03 02:35:52 +00001866 } while (likely(budget));
Auke Kok9a799d72007-09-15 14:07:45 -07001867
Yi Zou3d8fd382009-06-08 14:38:44 +00001868#ifdef IXGBE_FCOE
1869 /* include DDPed FCoE data */
1870 if (ddp_bytes > 0) {
1871 unsigned int mss;
1872
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001873 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001874 sizeof(struct fc_frame_header) -
1875 sizeof(struct fcoe_crc_eof);
1876 if (mss > 512)
1877 mss &= ~511;
1878 total_rx_bytes += ddp_bytes;
1879 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1880 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001881
Alexander Duyckf8003262012-03-03 02:35:52 +00001882#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001883 u64_stats_update_begin(&rx_ring->syncp);
1884 rx_ring->stats.packets += total_rx_packets;
1885 rx_ring->stats.bytes += total_rx_bytes;
1886 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001887 q_vector->rx.total_packets += total_rx_packets;
1888 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001889
Alexander Duyckf8003262012-03-03 02:35:52 +00001890 if (cleaned_count)
1891 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1892
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001893 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001894}
1895
Auke Kok9a799d72007-09-15 14:07:45 -07001896/**
1897 * ixgbe_configure_msix - Configure MSI-X hardware
1898 * @adapter: board private structure
1899 *
1900 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1901 * interrupts.
1902 **/
1903static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1904{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001905 struct ixgbe_q_vector *q_vector;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001906 int v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001907 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001908
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00001909 /* Populate MSIX to EITR Select */
1910 if (adapter->num_vfs > 32) {
1911 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
1912 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
1913 }
1914
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001915 /*
1916 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001917 * corresponding register.
1918 */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001919 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001920 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001921 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001922
Alexander Duycka5579282012-02-08 07:50:04 +00001923 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001924 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001925
Alexander Duycka5579282012-02-08 07:50:04 +00001926 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001927 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001928
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001929 if (q_vector->tx.ring && !q_vector->rx.ring) {
1930 /* tx only vector */
1931 if (adapter->tx_itr_setting == 1)
1932 q_vector->itr = IXGBE_10K_ITR;
1933 else
1934 q_vector->itr = adapter->tx_itr_setting;
1935 } else {
1936 /* rx or rx/tx vector */
1937 if (adapter->rx_itr_setting == 1)
1938 q_vector->itr = IXGBE_20K_ITR;
1939 else
1940 q_vector->itr = adapter->rx_itr_setting;
1941 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001942
Alexander Duyckfe49f042009-06-04 16:00:09 +00001943 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001944 }
1945
Alexander Duyckbd508172010-11-16 19:27:03 -08001946 switch (adapter->hw.mac.type) {
1947 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001948 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001949 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001950 break;
1951 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001952 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001953 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001954 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08001955 default:
1956 break;
1957 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001958 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001959
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001960 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001961 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001962 mask &= ~(IXGBE_EIMS_OTHER |
1963 IXGBE_EIMS_MAILBOX |
1964 IXGBE_EIMS_LSC);
1965
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001966 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001967}
1968
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001969enum latency_range {
1970 lowest_latency = 0,
1971 low_latency = 1,
1972 bulk_latency = 2,
1973 latency_invalid = 255
1974};
1975
1976/**
1977 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00001978 * @q_vector: structure containing interrupt and ring information
1979 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001980 *
1981 * Stores a new ITR value based on packets and byte
1982 * counts during the last interrupt. The advantage of per interrupt
1983 * computation is faster updates and more accurate ITR for the current
1984 * traffic pattern. Constants in this function were computed
1985 * based on theoretical maximum wire speed and thresholds were set based
1986 * on testing data as well as attempting to minimize response time
1987 * while increasing bulk throughput.
1988 * this functionality is controlled by the InterruptThrottleRate module
1989 * parameter (see ixgbe_param.c)
1990 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00001991static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
1992 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001993{
Alexander Duyckbd198052011-06-11 01:45:08 +00001994 int bytes = ring_container->total_bytes;
1995 int packets = ring_container->total_packets;
1996 u32 timepassed_us;
Alexander Duyck621bd702012-02-08 07:50:20 +00001997 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00001998 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001999
2000 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00002001 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002002
2003 /* simple throttlerate management
Alexander Duyck621bd702012-02-08 07:50:20 +00002004 * 0-10MB/s lowest (100000 ints/s)
2005 * 10-20MB/s low (20000 ints/s)
2006 * 20-1249MB/s bulk (8000 ints/s)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002007 */
2008 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002009 timepassed_us = q_vector->itr >> 2;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002010 bytes_perint = bytes / timepassed_us; /* bytes/usec */
2011
2012 switch (itr_setting) {
2013 case lowest_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002014 if (bytes_perint > 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002015 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002016 break;
2017 case low_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002018 if (bytes_perint > 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002019 itr_setting = bulk_latency;
Alexander Duyck621bd702012-02-08 07:50:20 +00002020 else if (bytes_perint <= 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002021 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002022 break;
2023 case bulk_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002024 if (bytes_perint <= 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002025 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002026 break;
2027 }
2028
Alexander Duyckbd198052011-06-11 01:45:08 +00002029 /* clear work counters since we have the values we need */
2030 ring_container->total_bytes = 0;
2031 ring_container->total_packets = 0;
2032
2033 /* write updated itr to ring container */
2034 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002035}
2036
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002037/**
2038 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00002039 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002040 *
2041 * This function is made to be called by ethtool and by the driver
2042 * when it needs to update EITR registers at runtime. Hardware
2043 * specific quirks/differences are taken care of here.
2044 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00002045void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002046{
Alexander Duyckfe49f042009-06-04 16:00:09 +00002047 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002048 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002049 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002050 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002051
Alexander Duyckbd508172010-11-16 19:27:03 -08002052 switch (adapter->hw.mac.type) {
2053 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002054 /* must write high and low 16 bits to reset counter */
2055 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08002056 break;
2057 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002058 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002059 /*
2060 * set the WDIS bit to not clear the timer bits and cause an
2061 * immediate assertion of the interrupt
2062 */
2063 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08002064 break;
2065 default:
2066 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002067 }
2068 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
2069}
2070
Alexander Duyckbd198052011-06-11 01:45:08 +00002071static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002072{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002073 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00002074 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002075
Alexander Duyckbd198052011-06-11 01:45:08 +00002076 ixgbe_update_itr(q_vector, &q_vector->tx);
2077 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002078
Alexander Duyck08c88332011-06-11 01:45:03 +00002079 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002080
2081 switch (current_itr) {
2082 /* counts and packets in update_itr are dependent on these numbers */
2083 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002084 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002085 break;
2086 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002087 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002088 break;
2089 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002090 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002091 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00002092 default:
2093 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002094 }
2095
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002096 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002097 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002098 new_itr = (10 * new_itr * q_vector->itr) /
2099 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002100
Alexander Duyckbd198052011-06-11 01:45:08 +00002101 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002102 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002103
2104 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002105 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002106}
2107
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002108/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00002109 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00002110 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002111 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00002112static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002113{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002114 struct ixgbe_hw *hw = &adapter->hw;
2115 u32 eicr = adapter->interrupt_event;
2116
Alexander Duyckf0f97782011-04-22 04:08:09 +00002117 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00002118 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002119
Alexander Duyckf0f97782011-04-22 04:08:09 +00002120 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2121 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2122 return;
2123
2124 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2125
Joe Perches7ca647b2010-09-07 21:35:40 +00002126 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002127 case IXGBE_DEV_ID_82599_T3_LOM:
2128 /*
2129 * Since the warning interrupt is for both ports
2130 * we don't have to check if:
2131 * - This interrupt wasn't for our port.
2132 * - We may have missed the interrupt so always have to
2133 * check if we got a LSC
2134 */
2135 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
2136 !(eicr & IXGBE_EICR_LSC))
2137 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002138
Alexander Duyckf0f97782011-04-22 04:08:09 +00002139 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
2140 u32 autoneg;
2141 bool link_up = false;
2142
Joe Perches7ca647b2010-09-07 21:35:40 +00002143 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
2144
Alexander Duyckf0f97782011-04-22 04:08:09 +00002145 if (link_up)
2146 return;
2147 }
2148
2149 /* Check if this is not due to overtemp */
2150 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2151 return;
2152
2153 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00002154 default:
2155 if (!(eicr & IXGBE_EICR_GPI_SDP0))
2156 return;
2157 break;
2158 }
2159 e_crit(drv,
2160 "Network adapter has been stopped because it has over heated. "
2161 "Restart the computer. If the problem persists, "
2162 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00002163
2164 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002165}
2166
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002167static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2168{
2169 struct ixgbe_hw *hw = &adapter->hw;
2170
2171 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
2172 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002173 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002174 /* write to clear the interrupt */
2175 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
2176 }
2177}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002178
Jacob Keller4f51bf72011-08-20 04:49:45 +00002179static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2180{
2181 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2182 return;
2183
2184 switch (adapter->hw.mac.type) {
2185 case ixgbe_mac_82599EB:
2186 /*
2187 * Need to check link state so complete overtemp check
2188 * on service task
2189 */
2190 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
2191 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2192 adapter->interrupt_event = eicr;
2193 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2194 ixgbe_service_event_schedule(adapter);
2195 return;
2196 }
2197 return;
2198 case ixgbe_mac_X540:
2199 if (!(eicr & IXGBE_EICR_TS))
2200 return;
2201 break;
2202 default:
2203 return;
2204 }
2205
2206 e_crit(drv,
2207 "Network adapter has been stopped because it has over heated. "
2208 "Restart the computer. If the problem persists, "
2209 "power off the system and replace the adapter\n");
2210}
2211
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002212static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2213{
2214 struct ixgbe_hw *hw = &adapter->hw;
2215
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002216 if (eicr & IXGBE_EICR_GPI_SDP2) {
2217 /* Clear the interrupt */
2218 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002219 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2220 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2221 ixgbe_service_event_schedule(adapter);
2222 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002223 }
2224
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002225 if (eicr & IXGBE_EICR_GPI_SDP1) {
2226 /* Clear the interrupt */
2227 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002228 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2229 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2230 ixgbe_service_event_schedule(adapter);
2231 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002232 }
2233}
2234
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002235static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2236{
2237 struct ixgbe_hw *hw = &adapter->hw;
2238
2239 adapter->lsc_int++;
2240 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2241 adapter->link_check_timeout = jiffies;
2242 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2243 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002244 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002245 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002246 }
2247}
2248
Alexander Duyckfe49f042009-06-04 16:00:09 +00002249static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2250 u64 qmask)
2251{
2252 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002253 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002254
Alexander Duyckbd508172010-11-16 19:27:03 -08002255 switch (hw->mac.type) {
2256 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002257 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002258 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2259 break;
2260 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002261 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002262 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002263 if (mask)
2264 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002265 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002266 if (mask)
2267 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2268 break;
2269 default:
2270 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002271 }
2272 /* skip the flush */
2273}
2274
2275static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002276 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002277{
2278 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002279 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002280
Alexander Duyckbd508172010-11-16 19:27:03 -08002281 switch (hw->mac.type) {
2282 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002283 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002284 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2285 break;
2286 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002287 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002288 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002289 if (mask)
2290 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002291 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002292 if (mask)
2293 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2294 break;
2295 default:
2296 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002297 }
2298 /* skip the flush */
2299}
2300
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002301/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002302 * ixgbe_irq_enable - Enable default interrupt generation settings
2303 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002304 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002305static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2306 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002307{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002308 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002309
Alexander Duyck2c4af692011-07-15 07:29:55 +00002310 /* don't reenable LSC while waiting for link */
2311 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2312 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002313
Alexander Duyck2c4af692011-07-15 07:29:55 +00002314 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002315 switch (adapter->hw.mac.type) {
2316 case ixgbe_mac_82599EB:
2317 mask |= IXGBE_EIMS_GPI_SDP0;
2318 break;
2319 case ixgbe_mac_X540:
2320 mask |= IXGBE_EIMS_TS;
2321 break;
2322 default:
2323 break;
2324 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002325 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2326 mask |= IXGBE_EIMS_GPI_SDP1;
2327 switch (adapter->hw.mac.type) {
2328 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002329 mask |= IXGBE_EIMS_GPI_SDP1;
2330 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002331 case ixgbe_mac_X540:
2332 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002333 mask |= IXGBE_EIMS_MAILBOX;
2334 break;
2335 default:
2336 break;
2337 }
2338 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2339 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2340 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002341
Alexander Duyck2c4af692011-07-15 07:29:55 +00002342 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2343 if (queues)
2344 ixgbe_irq_enable_queues(adapter, ~0);
2345 if (flush)
2346 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002347}
2348
Alexander Duyck2c4af692011-07-15 07:29:55 +00002349static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002350{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002351 struct ixgbe_adapter *adapter = data;
2352 struct ixgbe_hw *hw = &adapter->hw;
2353 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002354
Alexander Duyck2c4af692011-07-15 07:29:55 +00002355 /*
2356 * Workaround for Silicon errata. Use clear-by-write instead
2357 * of clear-by-read. Reading with EICS will return the
2358 * interrupt causes without clearing, which later be done
2359 * with the write to EICR.
2360 */
2361 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
2362 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002363
Alexander Duyck2c4af692011-07-15 07:29:55 +00002364 if (eicr & IXGBE_EICR_LSC)
2365 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002366
Alexander Duyck2c4af692011-07-15 07:29:55 +00002367 if (eicr & IXGBE_EICR_MAILBOX)
2368 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002369
Alexander Duyck2c4af692011-07-15 07:29:55 +00002370 switch (hw->mac.type) {
2371 case ixgbe_mac_82599EB:
2372 case ixgbe_mac_X540:
2373 if (eicr & IXGBE_EICR_ECC)
2374 e_info(link, "Received unrecoverable ECC Err, please "
2375 "reboot\n");
2376 /* Handle Flow Director Full threshold interrupt */
2377 if (eicr & IXGBE_EICR_FLOW_DIR) {
2378 int reinit_count = 0;
2379 int i;
2380 for (i = 0; i < adapter->num_tx_queues; i++) {
2381 struct ixgbe_ring *ring = adapter->tx_ring[i];
2382 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2383 &ring->state))
2384 reinit_count++;
2385 }
2386 if (reinit_count) {
2387 /* no more flow director interrupts until after init */
2388 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2389 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2390 ixgbe_service_event_schedule(adapter);
2391 }
2392 }
2393 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002394 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002395 break;
2396 default:
2397 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002398 }
2399
Alexander Duyck2c4af692011-07-15 07:29:55 +00002400 ixgbe_check_fan_failure(adapter, eicr);
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002401#ifdef CONFIG_IXGBE_PTP
2402 ixgbe_ptp_check_pps_event(adapter, eicr);
2403#endif
Auke Kok9a799d72007-09-15 14:07:45 -07002404
Alexander Duyck2c4af692011-07-15 07:29:55 +00002405 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002406 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002407 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002408
Alexander Duyck2c4af692011-07-15 07:29:55 +00002409 return IRQ_HANDLED;
2410}
2411
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002412static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002413{
2414 struct ixgbe_q_vector *q_vector = data;
2415
Auke Kok9a799d72007-09-15 14:07:45 -07002416 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002417
2418 if (q_vector->rx.ring || q_vector->tx.ring)
2419 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002420
2421 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002422}
2423
Auke Kok9a799d72007-09-15 14:07:45 -07002424/**
Alexander Duyckeb01b972012-02-08 07:51:27 +00002425 * ixgbe_poll - NAPI Rx polling callback
2426 * @napi: structure for representing this polling device
2427 * @budget: how many packets driver is allowed to clean
2428 *
2429 * This function is used for legacy and MSI, NAPI mode
2430 **/
Jeff Kirsher8af3c332012-02-18 07:08:14 +00002431int ixgbe_poll(struct napi_struct *napi, int budget)
Alexander Duyckeb01b972012-02-08 07:51:27 +00002432{
2433 struct ixgbe_q_vector *q_vector =
2434 container_of(napi, struct ixgbe_q_vector, napi);
2435 struct ixgbe_adapter *adapter = q_vector->adapter;
2436 struct ixgbe_ring *ring;
2437 int per_ring_budget;
2438 bool clean_complete = true;
2439
2440#ifdef CONFIG_IXGBE_DCA
2441 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2442 ixgbe_update_dca(q_vector);
2443#endif
2444
2445 ixgbe_for_each_ring(ring, q_vector->tx)
2446 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
2447
2448 /* attempt to distribute budget to each queue fairly, but don't allow
2449 * the budget to go below 1 because we'll exit polling */
2450 if (q_vector->rx.count > 1)
2451 per_ring_budget = max(budget/q_vector->rx.count, 1);
2452 else
2453 per_ring_budget = budget;
2454
2455 ixgbe_for_each_ring(ring, q_vector->rx)
2456 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
2457 per_ring_budget);
2458
2459 /* If all work not completed, return budget and keep polling */
2460 if (!clean_complete)
2461 return budget;
2462
2463 /* all work done, exit the polling mode */
2464 napi_complete(napi);
2465 if (adapter->rx_itr_setting & 1)
2466 ixgbe_set_itr(q_vector);
2467 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2468 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
2469
2470 return 0;
2471}
2472
2473/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002474 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2475 * @adapter: board private structure
2476 *
2477 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2478 * interrupts from the kernel.
2479 **/
2480static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2481{
2482 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002483 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002484 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002485
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002486 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002487 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002488 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002489
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002490 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002491 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002492 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002493 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002494 } else if (q_vector->rx.ring) {
2495 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2496 "%s-%s-%d", netdev->name, "rx", ri++);
2497 } else if (q_vector->tx.ring) {
2498 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2499 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002500 } else {
2501 /* skip this unused q_vector */
2502 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002503 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002504 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2505 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002506 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002507 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002508 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002509 goto free_queue_irqs;
2510 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002511 /* If Flow Director is enabled, set interrupt affinity */
2512 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2513 /* assign the mask for this irq */
2514 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002515 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002516 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002517 }
2518
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002519 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002520 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002521 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002522 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002523 goto free_queue_irqs;
2524 }
2525
2526 return 0;
2527
2528free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002529 while (vector) {
2530 vector--;
2531 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2532 NULL);
2533 free_irq(adapter->msix_entries[vector].vector,
2534 adapter->q_vector[vector]);
2535 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002536 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2537 pci_disable_msix(adapter->pdev);
2538 kfree(adapter->msix_entries);
2539 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002540 return err;
2541}
2542
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002543/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002544 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002545 * @irq: interrupt number
2546 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002547 **/
2548static irqreturn_t ixgbe_intr(int irq, void *data)
2549{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002550 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002551 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002552 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002553 u32 eicr;
2554
Don Skidmore54037502009-02-21 15:42:56 -08002555 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002556 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002557 * before the read of EICR.
2558 */
2559 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2560
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002561 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002562 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002563 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002564 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002565 /*
2566 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002567 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002568 * have disabled interrupts due to EIAM
2569 * finish the workaround of silicon errata on 82598. Unmask
2570 * the interrupt that we masked before the EICR read.
2571 */
2572 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2573 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002574 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002575 }
Auke Kok9a799d72007-09-15 14:07:45 -07002576
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002577 if (eicr & IXGBE_EICR_LSC)
2578 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002579
Alexander Duyckbd508172010-11-16 19:27:03 -08002580 switch (hw->mac.type) {
2581 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002582 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002583 /* Fall through */
2584 case ixgbe_mac_X540:
2585 if (eicr & IXGBE_EICR_ECC)
2586 e_info(link, "Received unrecoverable ECC err, please "
2587 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002588 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002589 break;
2590 default:
2591 break;
2592 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002593
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002594 ixgbe_check_fan_failure(adapter, eicr);
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002595#ifdef CONFIG_IXGBE_PTP
2596 ixgbe_ptp_check_pps_event(adapter, eicr);
2597#endif
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002598
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00002599 /* would disable interrupts here but EIAM disabled it */
2600 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002601
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002602 /*
2603 * re-enable link(maybe) and non-queue interrupts, no flush.
2604 * ixgbe_poll will re-enable the queue interrupts
2605 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002606 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2607 ixgbe_irq_enable(adapter, false, false);
2608
Auke Kok9a799d72007-09-15 14:07:45 -07002609 return IRQ_HANDLED;
2610}
2611
2612/**
2613 * ixgbe_request_irq - initialize interrupts
2614 * @adapter: board private structure
2615 *
2616 * Attempts to configure interrupts using the best available
2617 * capabilities of the hardware and kernel.
2618 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002619static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002620{
2621 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002622 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002623
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002624 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002625 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002626 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002627 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002628 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002629 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002630 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002631 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002632
Alexander Duyckde88eee2012-02-08 07:49:59 +00002633 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002634 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002635
Auke Kok9a799d72007-09-15 14:07:45 -07002636 return err;
2637}
2638
2639static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2640{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002641 int vector;
Auke Kok9a799d72007-09-15 14:07:45 -07002642
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002643 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002644 free_irq(adapter->pdev->irq, adapter);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002645 return;
Auke Kok9a799d72007-09-15 14:07:45 -07002646 }
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002647
2648 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
2649 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
2650 struct msix_entry *entry = &adapter->msix_entries[vector];
2651
2652 /* free only the irqs that were actually requested */
2653 if (!q_vector->rx.ring && !q_vector->tx.ring)
2654 continue;
2655
2656 /* clear the affinity_mask in the IRQ descriptor */
2657 irq_set_affinity_hint(entry->vector, NULL);
2658
2659 free_irq(entry->vector, q_vector);
2660 }
2661
2662 free_irq(adapter->msix_entries[vector++].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002663}
2664
2665/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002666 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2667 * @adapter: board private structure
2668 **/
2669static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2670{
Alexander Duyckbd508172010-11-16 19:27:03 -08002671 switch (adapter->hw.mac.type) {
2672 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002673 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002674 break;
2675 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002676 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002677 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2678 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002679 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002680 break;
2681 default:
2682 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002683 }
2684 IXGBE_WRITE_FLUSH(&adapter->hw);
2685 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002686 int vector;
2687
2688 for (vector = 0; vector < adapter->num_q_vectors; vector++)
2689 synchronize_irq(adapter->msix_entries[vector].vector);
2690
2691 synchronize_irq(adapter->msix_entries[vector++].vector);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002692 } else {
2693 synchronize_irq(adapter->pdev->irq);
2694 }
2695}
2696
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002697/**
Auke Kok9a799d72007-09-15 14:07:45 -07002698 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2699 *
2700 **/
2701static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2702{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002703 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002704
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002705 /* rx/tx vector */
2706 if (adapter->rx_itr_setting == 1)
2707 q_vector->itr = IXGBE_20K_ITR;
2708 else
2709 q_vector->itr = adapter->rx_itr_setting;
2710
2711 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002712
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002713 ixgbe_set_ivar(adapter, 0, 0, 0);
2714 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002715
Emil Tantilov396e7992010-07-01 20:05:12 +00002716 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002717}
2718
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002719/**
2720 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2721 * @adapter: board private structure
2722 * @ring: structure containing ring specific data
2723 *
2724 * Configure the Tx descriptor ring after a reset.
2725 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002726void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2727 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002728{
2729 struct ixgbe_hw *hw = &adapter->hw;
2730 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002731 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002732 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002733 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002734
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002735 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002736 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002737 IXGBE_WRITE_FLUSH(hw);
2738
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002739 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002740 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002741 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2742 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2743 ring->count * sizeof(union ixgbe_adv_tx_desc));
2744 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2745 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002746 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002747
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002748 /*
2749 * set WTHRESH to encourage burst writeback, it should not be set
2750 * higher than 1 when ITR is 0 as it could cause false TX hangs
2751 *
2752 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2753 * to or less than the number of on chip descriptors, which is
2754 * currently 40.
2755 */
Alexander Duycke954b372012-02-08 07:49:38 +00002756 if (!ring->q_vector || (ring->q_vector->itr < 8))
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002757 txdctl |= (1 << 16); /* WTHRESH = 1 */
2758 else
2759 txdctl |= (8 << 16); /* WTHRESH = 8 */
2760
Alexander Duycke954b372012-02-08 07:49:38 +00002761 /*
2762 * Setting PTHRESH to 32 both improves performance
2763 * and avoids a TX hang with DFP enabled
2764 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002765 txdctl |= (1 << 8) | /* HTHRESH = 1 */
2766 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002767
2768 /* reinitialize flowdirector state */
Alexander Duyck39cb6812012-06-06 05:38:20 +00002769 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002770 ring->atr_sample_rate = adapter->atr_sample_rate;
2771 ring->atr_count = 0;
2772 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2773 } else {
2774 ring->atr_sample_rate = 0;
2775 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002776
John Fastabendc84d3242010-11-16 19:27:12 -08002777 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2778
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002779 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002780 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2781
2782 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2783 if (hw->mac.type == ixgbe_mac_82598EB &&
2784 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2785 return;
2786
2787 /* poll to verify queue is enabled */
2788 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002789 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002790 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2791 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2792 if (!wait_loop)
2793 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002794}
2795
Alexander Duyck120ff942010-08-19 13:34:50 +00002796static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2797{
2798 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002799 u32 rttdcs, mtqc;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002800 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002801
2802 if (hw->mac.type == ixgbe_mac_82598EB)
2803 return;
2804
2805 /* disable the arbiter while setting MTQC */
2806 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2807 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2808 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2809
2810 /* set transmit pool layout */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002811 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2812 mtqc = IXGBE_MTQC_VT_ENA;
2813 if (tcs > 4)
2814 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2815 else if (tcs > 1)
2816 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2817 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
2818 mtqc |= IXGBE_MTQC_32VF;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002819 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002820 mtqc |= IXGBE_MTQC_64VF;
2821 } else {
2822 if (tcs > 4)
2823 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2824 else if (tcs > 1)
2825 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2826 else
2827 mtqc = IXGBE_MTQC_64Q_1PB;
2828 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00002829
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002830 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
John Fastabend8b1c0b22011-05-03 02:26:48 +00002831
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002832 /* Enable Security TX Buffer IFG for multiple pb */
2833 if (tcs) {
2834 u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2835 sectx |= IXGBE_SECTX_DCB;
2836 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx);
Alexander Duyck120ff942010-08-19 13:34:50 +00002837 }
2838
2839 /* re-enable the arbiter */
2840 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2841 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2842}
2843
Auke Kok9a799d72007-09-15 14:07:45 -07002844/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002845 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002846 * @adapter: board private structure
2847 *
2848 * Configure the Tx unit of the MAC after a reset.
2849 **/
2850static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2851{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002852 struct ixgbe_hw *hw = &adapter->hw;
2853 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002854 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002855
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002856 ixgbe_setup_mtqc(adapter);
2857
2858 if (hw->mac.type != ixgbe_mac_82598EB) {
2859 /* DMATXCTL.EN must be before Tx queues are enabled */
2860 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2861 dmatxctl |= IXGBE_DMATXCTL_TE;
2862 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2863 }
2864
Auke Kok9a799d72007-09-15 14:07:45 -07002865 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002866 for (i = 0; i < adapter->num_tx_queues; i++)
2867 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002868}
2869
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00002870static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
2871 struct ixgbe_ring *ring)
2872{
2873 struct ixgbe_hw *hw = &adapter->hw;
2874 u8 reg_idx = ring->reg_idx;
2875 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2876
2877 srrctl |= IXGBE_SRRCTL_DROP_EN;
2878
2879 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2880}
2881
2882static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
2883 struct ixgbe_ring *ring)
2884{
2885 struct ixgbe_hw *hw = &adapter->hw;
2886 u8 reg_idx = ring->reg_idx;
2887 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2888
2889 srrctl &= ~IXGBE_SRRCTL_DROP_EN;
2890
2891 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2892}
2893
2894#ifdef CONFIG_IXGBE_DCB
2895void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2896#else
2897static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2898#endif
2899{
2900 int i;
2901 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
2902
2903 if (adapter->ixgbe_ieee_pfc)
2904 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
2905
2906 /*
2907 * We should set the drop enable bit if:
2908 * SR-IOV is enabled
2909 * or
2910 * Number of Rx queues > 1 and flow control is disabled
2911 *
2912 * This allows us to avoid head of line blocking for security
2913 * and performance reasons.
2914 */
2915 if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
2916 !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
2917 for (i = 0; i < adapter->num_rx_queues; i++)
2918 ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
2919 } else {
2920 for (i = 0; i < adapter->num_rx_queues; i++)
2921 ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
2922 }
2923}
2924
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002925#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002926
Yi Zoua6616b42009-08-06 13:05:23 +00002927static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002928 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002929{
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002930 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002931 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002932 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002933
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002934 if (hw->mac.type == ixgbe_mac_82598EB) {
2935 u16 mask = adapter->ring_feature[RING_F_RSS].mask;
2936
2937 /*
2938 * if VMDq is not active we must program one srrctl register
2939 * per RSS queue since we have enabled RDRXCTL.MVMEN
2940 */
2941 reg_idx &= mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002942 }
2943
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002944 /* configure header buffer length, needed for RSC */
2945 srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002946
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002947 /* configure the packet buffer length */
Alexander Duyckf8003262012-03-03 02:35:52 +00002948 srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002949
2950 /* configure descriptor type */
Alexander Duyckf8003262012-03-03 02:35:52 +00002951 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002952
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002953 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002954}
2955
Alexander Duyck05abb122010-08-19 13:35:41 +00002956static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002957{
Alexander Duyck05abb122010-08-19 13:35:41 +00002958 struct ixgbe_hw *hw = &adapter->hw;
2959 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002960 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2961 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002962 u32 mrqc = 0, reta = 0;
2963 u32 rxcsum;
2964 int i, j;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002965 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend86b4db32011-04-26 07:26:19 +00002966
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002967 /*
2968 * Program table for at least 2 queues w/ SR-IOV so that VFs can
2969 * make full use of any rings they may have. We will use the
2970 * PSRTYPE register to control how many rings we use within the PF.
2971 */
2972 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 2))
2973 rss_i = 2;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002974
Alexander Duyck05abb122010-08-19 13:35:41 +00002975 /* Fill out hash function seeds */
2976 for (i = 0; i < 10; i++)
2977 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002978
Alexander Duyck05abb122010-08-19 13:35:41 +00002979 /* Fill out redirection table */
2980 for (i = 0, j = 0; i < 128; i++, j++) {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002981 if (j == rss_i)
Alexander Duyck05abb122010-08-19 13:35:41 +00002982 j = 0;
2983 /* reta = 4-byte sliding window of
2984 * 0x00..(indices-1)(indices-1)00..etc. */
2985 reta = (reta << 8) | (j * 0x11);
2986 if ((i & 3) == 3)
2987 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2988 }
2989
2990 /* Disable indicating checksum in descriptor, enables RSS hash */
2991 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2992 rxcsum |= IXGBE_RXCSUM_PCSD;
2993 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2994
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002995 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00002996 if (adapter->ring_feature[RING_F_RSS].mask)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002997 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002998 } else {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002999 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00003000
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003001 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3002 if (tcs > 4)
3003 mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */
3004 else if (tcs > 1)
3005 mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */
3006 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
3007 mrqc = IXGBE_MRQC_VMDQRSS32EN;
3008 else
3009 mrqc = IXGBE_MRQC_VMDQRSS64EN;
3010 } else {
3011 if (tcs > 4)
3012 mrqc = IXGBE_MRQC_RTRSS8TCEN;
3013 else if (tcs > 1)
John Fastabend8b1c0b22011-05-03 02:26:48 +00003014 mrqc = IXGBE_MRQC_RTRSS4TCEN;
3015 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003016 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003017 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003018 }
3019
Alexander Duyck05abb122010-08-19 13:35:41 +00003020 /* Perform hash on these packet types */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003021 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4 |
3022 IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
3023 IXGBE_MRQC_RSS_FIELD_IPV6 |
3024 IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
Alexander Duyck05abb122010-08-19 13:35:41 +00003025
Alexander Duyckef6afc02012-02-08 07:51:53 +00003026 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
3027 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
3028 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
3029 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
3030
Alexander Duyck05abb122010-08-19 13:35:41 +00003031 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003032}
3033
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003034/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003035 * ixgbe_configure_rscctl - enable RSC for the indicated ring
3036 * @adapter: address of board private structure
3037 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003038 **/
Don Skidmore082757a2011-07-21 05:55:00 +00003039static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00003040 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003041{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003042 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003043 u32 rscctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003044 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003045
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003046 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00003047 return;
3048
Alexander Duyck73670962010-08-19 13:38:34 +00003049 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003050 rscctrl |= IXGBE_RSCCTL_RSCEN;
3051 /*
3052 * we must limit the number of descriptors so that the
3053 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00003054 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003055 */
Alexander Duyckf8003262012-03-03 02:35:52 +00003056 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck73670962010-08-19 13:38:34 +00003057 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003058}
3059
Alexander Duyck9e10e042010-08-19 13:40:06 +00003060#define IXGBE_MAX_RX_DESC_POLL 10
3061static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3062 struct ixgbe_ring *ring)
3063{
3064 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003065 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3066 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003067 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003068
3069 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3070 if (hw->mac.type == ixgbe_mac_82598EB &&
3071 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3072 return;
3073
3074 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003075 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003076 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3077 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3078
3079 if (!wait_loop) {
3080 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3081 "the polling period\n", reg_idx);
3082 }
3083}
3084
Yi Zou2d39d572011-01-06 14:29:56 +00003085void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3086 struct ixgbe_ring *ring)
3087{
3088 struct ixgbe_hw *hw = &adapter->hw;
3089 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3090 u32 rxdctl;
3091 u8 reg_idx = ring->reg_idx;
3092
3093 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3094 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3095
3096 /* write value back with RXDCTL.ENABLE bit cleared */
3097 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3098
3099 if (hw->mac.type == ixgbe_mac_82598EB &&
3100 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3101 return;
3102
3103 /* the hardware may take up to 100us to really disable the rx queue */
3104 do {
3105 udelay(10);
3106 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3107 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3108
3109 if (!wait_loop) {
3110 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3111 "the polling period\n", reg_idx);
3112 }
3113}
3114
Alexander Duyck84418e32010-08-19 13:40:54 +00003115void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3116 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003117{
3118 struct ixgbe_hw *hw = &adapter->hw;
3119 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003120 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003121 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003122
Alexander Duyck9e10e042010-08-19 13:40:06 +00003123 /* disable queue to avoid issues while updating state */
3124 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003125 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003126
Alexander Duyckacd37172010-08-19 13:36:05 +00003127 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3128 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3129 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3130 ring->count * sizeof(union ixgbe_adv_rx_desc));
3131 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3132 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08003133 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003134
3135 ixgbe_configure_srrctl(adapter, ring);
3136 ixgbe_configure_rscctl(adapter, ring);
3137
Greg Rosee9f98072011-01-26 01:06:07 +00003138 /* If operating in IOV mode set RLPML for X540 */
3139 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
3140 hw->mac.type == ixgbe_mac_X540) {
3141 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
3142 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
3143 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
3144 }
3145
Alexander Duyck9e10e042010-08-19 13:40:06 +00003146 if (hw->mac.type == ixgbe_mac_82598EB) {
3147 /*
3148 * enable cache line friendly hardware writes:
3149 * PTHRESH=32 descriptors (half the internal cache),
3150 * this also removes ugly rx_no_buffer_count increment
3151 * HTHRESH=4 descriptors (to minimize latency on fetch)
3152 * WTHRESH=8 burst writeback up to two cache lines
3153 */
3154 rxdctl &= ~0x3FFFFF;
3155 rxdctl |= 0x080420;
3156 }
3157
3158 /* enable receive descriptor ring */
3159 rxdctl |= IXGBE_RXDCTL_ENABLE;
3160 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3161
3162 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003163 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003164}
3165
Alexander Duyck48654522010-08-19 13:36:27 +00003166static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3167{
3168 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003169 int rss_i = adapter->ring_feature[RING_F_RSS].indices;
Alexander Duyck48654522010-08-19 13:36:27 +00003170 int p;
3171
3172 /* PSRTYPE must be initialized in non 82598 adapters */
3173 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003174 IXGBE_PSRTYPE_UDPHDR |
3175 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003176 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003177 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003178
3179 if (hw->mac.type == ixgbe_mac_82598EB)
3180 return;
3181
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003182 if (rss_i > 3)
3183 psrtype |= 2 << 29;
3184 else if (rss_i > 1)
3185 psrtype |= 1 << 29;
Alexander Duyck48654522010-08-19 13:36:27 +00003186
3187 for (p = 0; p < adapter->num_rx_pools; p++)
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003188 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(p)),
Alexander Duyck48654522010-08-19 13:36:27 +00003189 psrtype);
3190}
3191
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003192static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3193{
3194 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003195 u32 reg_offset, vf_shift;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003196 u32 gcr_ext, vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003197 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003198
3199 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3200 return;
3201
3202 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003203 vmdctl |= IXGBE_VMD_CTL_VMDQ_EN;
3204 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003205 vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003206 vmdctl |= IXGBE_VT_CTL_REPLEN;
3207 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003208
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003209 vf_shift = VMDQ_P(0) % 32;
3210 reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003211
3212 /* Enable only the PF's pool for Tx/Rx */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003213 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (~0) << vf_shift);
3214 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1);
3215 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (~0) << vf_shift);
3216 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003217 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3218
3219 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003220 hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0));
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003221
3222 /*
3223 * Set up VF register offsets for selected VT Mode,
3224 * i.e. 32 or 64 VFs for SR-IOV
3225 */
Alexander Duyck73079ea2012-07-14 06:48:49 +00003226 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3227 case IXGBE_82599_VMDQ_8Q_MASK:
3228 gcr_ext = IXGBE_GCR_EXT_VT_MODE_16;
3229 break;
3230 case IXGBE_82599_VMDQ_4Q_MASK:
3231 gcr_ext = IXGBE_GCR_EXT_VT_MODE_32;
3232 break;
3233 default:
3234 gcr_ext = IXGBE_GCR_EXT_VT_MODE_64;
3235 break;
3236 }
3237
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003238 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3239
3240 /* enable Tx loopback for VF/PF communication */
3241 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003242
Greg Rosea985b6c32010-11-18 03:02:52 +00003243 /* Enable MAC Anti-Spoofing */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003244 hw->mac.ops.set_mac_anti_spoofing(hw, (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003245 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00003246 /* For VFs that have spoof checking turned off */
3247 for (i = 0; i < adapter->num_vfs; i++) {
3248 if (!adapter->vfinfo[i].spoofchk_enabled)
3249 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
3250 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003251}
3252
Alexander Duyck477de6e2010-08-19 13:38:11 +00003253static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003254{
Auke Kok9a799d72007-09-15 14:07:45 -07003255 struct ixgbe_hw *hw = &adapter->hw;
3256 struct net_device *netdev = adapter->netdev;
3257 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003258 struct ixgbe_ring *rx_ring;
3259 int i;
3260 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003261
Alexander Duyck477de6e2010-08-19 13:38:11 +00003262#ifdef IXGBE_FCOE
3263 /* adjust max frame to be able to do baby jumbo for FCoE */
3264 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3265 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3266 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3267
3268#endif /* IXGBE_FCOE */
3269 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3270 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3271 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3272 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3273
3274 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003275 }
3276
Alexander Duyck919e78a2011-08-26 09:52:38 +00003277 /* MHADD will allow an extra 4 bytes past for vlan tagged frames */
3278 max_frame += VLAN_HLEN;
3279
Auke Kok9a799d72007-09-15 14:07:45 -07003280 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003281 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3282 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003283 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3284
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003285 /*
3286 * Setup the HW Rx Head and Tail Descriptor Pointers and
3287 * the Base and Length of the Rx Descriptor Ring
3288 */
Auke Kok9a799d72007-09-15 14:07:45 -07003289 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003290 rx_ring = adapter->rx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003291 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3292 set_ring_rsc_enabled(rx_ring);
3293 else
3294 clear_ring_rsc_enabled(rx_ring);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003295 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003296}
3297
Alexander Duyck73670962010-08-19 13:38:34 +00003298static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3299{
3300 struct ixgbe_hw *hw = &adapter->hw;
3301 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3302
3303 switch (hw->mac.type) {
3304 case ixgbe_mac_82598EB:
3305 /*
3306 * For VMDq support of different descriptor types or
3307 * buffer sizes through the use of multiple SRRCTL
3308 * registers, RDRXCTL.MVMEN must be set to 1
3309 *
3310 * also, the manual doesn't mention it clearly but DCA hints
3311 * will only use queue 0's tags unless this bit is set. Side
3312 * effects of setting this bit are only that SRRCTL must be
3313 * fully programmed [0..15]
3314 */
3315 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3316 break;
3317 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003318 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003319 /* Disable RSC for ACK packets */
3320 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3321 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3322 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3323 /* hardware requires some bits to be set by default */
3324 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3325 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3326 break;
3327 default:
3328 /* We should do nothing since we don't know this hardware */
3329 return;
3330 }
3331
3332 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3333}
3334
Alexander Duyck477de6e2010-08-19 13:38:11 +00003335/**
3336 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3337 * @adapter: board private structure
3338 *
3339 * Configure the Rx unit of the MAC after a reset.
3340 **/
3341static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3342{
3343 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003344 int i;
3345 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003346
3347 /* disable receives while setting up the descriptors */
3348 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3349 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3350
3351 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003352 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003353
Alexander Duyck9e10e042010-08-19 13:40:06 +00003354 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003355 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003356
Alexander Duyck477de6e2010-08-19 13:38:11 +00003357 /* set_rx_buffer_len must be called before ring initialization */
3358 ixgbe_set_rx_buffer_len(adapter);
3359
3360 /*
3361 * Setup the HW Rx Head and Tail Descriptor Pointers and
3362 * the Base and Length of the Rx Descriptor Ring
3363 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003364 for (i = 0; i < adapter->num_rx_queues; i++)
3365 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003366
Alexander Duyck9e10e042010-08-19 13:40:06 +00003367 /* disable drop enable for 82598 parts */
3368 if (hw->mac.type == ixgbe_mac_82598EB)
3369 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3370
3371 /* enable all receives */
3372 rxctrl |= IXGBE_RXCTRL_RXEN;
3373 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003374}
3375
Jiri Pirko8e586132011-12-08 19:52:37 -05003376static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003377{
3378 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003379 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003380
3381 /* add VID to filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003382 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003383 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003384
3385 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003386}
3387
Jiri Pirko8e586132011-12-08 19:52:37 -05003388static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003389{
3390 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003391 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003392
Auke Kok9a799d72007-09-15 14:07:45 -07003393 /* remove VID from filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003394 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003395 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003396
3397 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003398}
3399
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003400/**
3401 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3402 * @adapter: driver data
3403 */
3404static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3405{
3406 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003407 u32 vlnctrl;
3408
3409 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3410 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3411 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3412}
3413
3414/**
3415 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3416 * @adapter: driver data
3417 */
3418static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3419{
3420 struct ixgbe_hw *hw = &adapter->hw;
3421 u32 vlnctrl;
3422
3423 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3424 vlnctrl |= IXGBE_VLNCTRL_VFE;
3425 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3426 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3427}
3428
3429/**
3430 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3431 * @adapter: driver data
3432 */
3433static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3434{
3435 struct ixgbe_hw *hw = &adapter->hw;
3436 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003437 int i, j;
3438
3439 switch (hw->mac.type) {
3440 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003441 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3442 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003443 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3444 break;
3445 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003446 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003447 for (i = 0; i < adapter->num_rx_queues; i++) {
3448 j = adapter->rx_ring[i]->reg_idx;
3449 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3450 vlnctrl &= ~IXGBE_RXDCTL_VME;
3451 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3452 }
3453 break;
3454 default:
3455 break;
3456 }
3457}
3458
3459/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003460 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003461 * @adapter: driver data
3462 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003463static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003464{
3465 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003466 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003467 int i, j;
3468
3469 switch (hw->mac.type) {
3470 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003471 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3472 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003473 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3474 break;
3475 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003476 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003477 for (i = 0; i < adapter->num_rx_queues; i++) {
3478 j = adapter->rx_ring[i]->reg_idx;
3479 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3480 vlnctrl |= IXGBE_RXDCTL_VME;
3481 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3482 }
3483 break;
3484 default:
3485 break;
3486 }
3487}
3488
Auke Kok9a799d72007-09-15 14:07:45 -07003489static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3490{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003491 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003492
Jesse Grossf62bbb52010-10-20 13:56:10 +00003493 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3494
3495 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3496 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003497}
3498
3499/**
Alexander Duyck28500622010-06-15 09:25:48 +00003500 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3501 * @netdev: network interface device structure
3502 *
3503 * Writes unicast address list to the RAR table.
3504 * Returns: -ENOMEM on failure/insufficient address space
3505 * 0 on no addresses written
3506 * X on writing X addresses to the RAR table
3507 **/
3508static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3509{
3510 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3511 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend95447462012-05-31 12:42:26 +00003512 unsigned int rar_entries = hw->mac.num_rar_entries - 1;
Alexander Duyck28500622010-06-15 09:25:48 +00003513 int count = 0;
3514
John Fastabend95447462012-05-31 12:42:26 +00003515 /* In SR-IOV mode significantly less RAR entries are available */
3516 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3517 rar_entries = IXGBE_MAX_PF_MACVLANS - 1;
3518
Alexander Duyck28500622010-06-15 09:25:48 +00003519 /* return ENOMEM indicating insufficient memory for addresses */
3520 if (netdev_uc_count(netdev) > rar_entries)
3521 return -ENOMEM;
3522
John Fastabend95447462012-05-31 12:42:26 +00003523 if (!netdev_uc_empty(netdev)) {
Alexander Duyck28500622010-06-15 09:25:48 +00003524 struct netdev_hw_addr *ha;
3525 /* return error if we do not support writing to RAR table */
3526 if (!hw->mac.ops.set_rar)
3527 return -ENOMEM;
3528
3529 netdev_for_each_uc_addr(ha, netdev) {
3530 if (!rar_entries)
3531 break;
3532 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003533 VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck28500622010-06-15 09:25:48 +00003534 count++;
3535 }
3536 }
3537 /* write the addresses in reverse order to avoid write combining */
3538 for (; rar_entries > 0 ; rar_entries--)
3539 hw->mac.ops.clear_rar(hw, rar_entries);
3540
3541 return count;
3542}
3543
3544/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003545 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003546 * @netdev: network interface device structure
3547 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003548 * The set_rx_method entry point is called whenever the unicast/multicast
3549 * address list or the network interface flags are updated. This routine is
3550 * responsible for configuring the hardware for proper unicast, multicast and
3551 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003552 **/
Greg Rose7f870472010-01-09 02:25:29 +00003553void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003554{
3555 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3556 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003557 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3558 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003559
3560 /* Check for Promiscuous and All Multicast modes */
3561
3562 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3563
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003564 /* set all bits that we expect to always be set */
Ben Greear3f2d1c02012-03-08 08:28:41 +00003565 fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003566 fctrl |= IXGBE_FCTRL_BAM;
3567 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3568 fctrl |= IXGBE_FCTRL_PMCF;
3569
Alexander Duyck28500622010-06-15 09:25:48 +00003570 /* clear the bits we are changing the status of */
3571 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3572
Auke Kok9a799d72007-09-15 14:07:45 -07003573 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003574 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003575 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003576 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003577 /* don't hardware filter vlans in promisc mode */
3578 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003579 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003580 if (netdev->flags & IFF_ALLMULTI) {
3581 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003582 vmolr |= IXGBE_VMOLR_MPE;
3583 } else {
3584 /*
3585 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003586 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003587 * that we can at least receive multicast traffic
3588 */
3589 hw->mac.ops.update_mc_addr_list(hw, netdev);
3590 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003591 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003592 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003593 hw->addr_ctrl.user_set_promisc = false;
John Fastabend9dcb3732012-04-15 06:44:25 +00003594 }
3595
3596 /*
3597 * Write addresses to available RAR registers, if there is not
3598 * sufficient space to store all the addresses then enable
3599 * unicast promiscuous mode
3600 */
3601 count = ixgbe_write_uc_addr_list(netdev);
3602 if (count < 0) {
3603 fctrl |= IXGBE_FCTRL_UPE;
3604 vmolr |= IXGBE_VMOLR_ROPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003605 }
3606
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003607 if (adapter->num_vfs)
Alexander Duyck28500622010-06-15 09:25:48 +00003608 ixgbe_restore_vf_multicasts(adapter);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003609
3610 if (hw->mac.type != ixgbe_mac_82598EB) {
3611 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) &
Alexander Duyck28500622010-06-15 09:25:48 +00003612 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3613 IXGBE_VMOLR_ROPE);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003614 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003615 }
3616
Ben Greear3f2d1c02012-03-08 08:28:41 +00003617 /* This is useful for sniffing bad packets. */
3618 if (adapter->netdev->features & NETIF_F_RXALL) {
3619 /* UPE and MPE will be handled by normal PROMISC logic
3620 * in e1000e_set_rx_mode */
3621 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
3622 IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
3623 IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
3624
3625 fctrl &= ~(IXGBE_FCTRL_DPF);
3626 /* NOTE: VLAN filtering is disabled by setting PROMISC */
3627 }
3628
Auke Kok9a799d72007-09-15 14:07:45 -07003629 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003630
3631 if (netdev->features & NETIF_F_HW_VLAN_RX)
3632 ixgbe_vlan_strip_enable(adapter);
3633 else
3634 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003635}
3636
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003637static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3638{
3639 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003640
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003641 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3642 napi_enable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003643}
3644
3645static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3646{
3647 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003648
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003649 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3650 napi_disable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003651}
3652
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003653#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003654/**
Alexander Duyck2f90b862008-11-20 20:52:10 -08003655 * ixgbe_configure_dcb - Configure DCB hardware
3656 * @adapter: ixgbe adapter struct
3657 *
3658 * This is called by the driver on open to configure the DCB hardware.
3659 * This is also called by the gennetlink interface when reconfiguring
3660 * the DCB state.
3661 */
3662static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3663{
3664 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend9806307a2010-10-28 00:59:57 +00003665 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003666
Alexander Duyck67ebd792010-08-19 13:34:04 +00003667 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3668 if (hw->mac.type == ixgbe_mac_82598EB)
3669 netif_set_gso_max_size(adapter->netdev, 65536);
3670 return;
3671 }
3672
3673 if (hw->mac.type == ixgbe_mac_82598EB)
3674 netif_set_gso_max_size(adapter->netdev, 32768);
3675
Alexander Duyck2f90b862008-11-20 20:52:10 -08003676 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003677
John Fastabendb1208182011-10-15 05:00:10 +00003678#ifdef IXGBE_FCOE
3679 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3680 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3681#endif
3682
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003683 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003684 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003685 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3686 DCB_TX_CONFIG);
3687 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3688 DCB_RX_CONFIG);
3689 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003690 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3691 ixgbe_dcb_hw_ets(&adapter->hw,
3692 adapter->ixgbe_ieee_ets,
3693 max_frame);
3694 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3695 adapter->ixgbe_ieee_pfc->pfc_en,
3696 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003697 }
John Fastabend8187cd42011-02-23 05:58:08 +00003698
3699 /* Enable RSS Hash per TC */
3700 if (hw->mac.type != ixgbe_mac_82598EB) {
Alexander Duyck4ae63732012-06-22 06:46:33 +00003701 u32 msb = 0;
3702 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003703
Alexander Duyckd411a932012-06-30 00:14:01 +00003704 while (rss_i) {
3705 msb++;
3706 rss_i >>= 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003707 }
Alexander Duyckd411a932012-06-30 00:14:01 +00003708
Alexander Duyck4ae63732012-06-22 06:46:33 +00003709 /* write msb to all 8 TCs in one write */
3710 IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111);
John Fastabend8187cd42011-02-23 05:58:08 +00003711 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003712}
John Fastabend9da712d2011-08-23 03:14:22 +00003713#endif
3714
3715/* Additional bittime to account for IXGBE framing */
3716#define IXGBE_ETH_FRAMING 20
3717
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003718/**
John Fastabend9da712d2011-08-23 03:14:22 +00003719 * ixgbe_hpbthresh - calculate high water mark for flow control
3720 *
3721 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003722 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00003723 */
3724static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
3725{
3726 struct ixgbe_hw *hw = &adapter->hw;
3727 struct net_device *dev = adapter->netdev;
3728 int link, tc, kb, marker;
3729 u32 dv_id, rx_pba;
3730
3731 /* Calculate max LAN frame size */
3732 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
3733
3734#ifdef IXGBE_FCOE
3735 /* FCoE traffic class uses FCOE jumbo frames */
Alexander Duyck800bd602012-06-02 00:11:02 +00003736 if ((dev->features & NETIF_F_FCOE_MTU) &&
3737 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
3738 (pb == ixgbe_fcoe_get_tc(adapter)))
3739 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003740
3741#endif
John Fastabend9da712d2011-08-23 03:14:22 +00003742 /* Calculate delay value for device */
3743 switch (hw->mac.type) {
3744 case ixgbe_mac_X540:
3745 dv_id = IXGBE_DV_X540(link, tc);
3746 break;
3747 default:
3748 dv_id = IXGBE_DV(link, tc);
3749 break;
3750 }
3751
3752 /* Loopback switch introduces additional latency */
3753 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3754 dv_id += IXGBE_B2BT(tc);
3755
3756 /* Delay value is calculated in bit times convert to KB */
3757 kb = IXGBE_BT2KB(dv_id);
3758 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
3759
3760 marker = rx_pba - kb;
3761
3762 /* It is possible that the packet buffer is not large enough
3763 * to provide required headroom. In this case throw an error
3764 * to user and a do the best we can.
3765 */
3766 if (marker < 0) {
3767 e_warn(drv, "Packet Buffer(%i) can not provide enough"
3768 "headroom to support flow control."
3769 "Decrease MTU or number of traffic classes\n", pb);
3770 marker = tc + 1;
3771 }
3772
3773 return marker;
3774}
3775
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003776/**
John Fastabend9da712d2011-08-23 03:14:22 +00003777 * ixgbe_lpbthresh - calculate low water mark for for flow control
3778 *
3779 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003780 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00003781 */
3782static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
3783{
3784 struct ixgbe_hw *hw = &adapter->hw;
3785 struct net_device *dev = adapter->netdev;
3786 int tc;
3787 u32 dv_id;
3788
3789 /* Calculate max LAN frame size */
3790 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3791
3792 /* Calculate delay value for device */
3793 switch (hw->mac.type) {
3794 case ixgbe_mac_X540:
3795 dv_id = IXGBE_LOW_DV_X540(tc);
3796 break;
3797 default:
3798 dv_id = IXGBE_LOW_DV(tc);
3799 break;
3800 }
3801
3802 /* Delay value is calculated in bit times convert to KB */
3803 return IXGBE_BT2KB(dv_id);
3804}
3805
3806/*
3807 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3808 */
3809static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
3810{
3811 struct ixgbe_hw *hw = &adapter->hw;
3812 int num_tc = netdev_get_num_tc(adapter->netdev);
3813 int i;
3814
3815 if (!num_tc)
3816 num_tc = 1;
3817
3818 hw->fc.low_water = ixgbe_lpbthresh(adapter);
3819
3820 for (i = 0; i < num_tc; i++) {
3821 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
3822
3823 /* Low water marks must not be larger than high water marks */
3824 if (hw->fc.low_water > hw->fc.high_water[i])
3825 hw->fc.low_water = 0;
3826 }
3827}
John Fastabend80605c652011-05-02 12:34:10 +00003828
3829static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3830{
John Fastabend80605c652011-05-02 12:34:10 +00003831 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00003832 int hdrm;
3833 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00003834
3835 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3836 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00003837 hdrm = 32 << adapter->fdir_pballoc;
3838 else
3839 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00003840
Alexander Duyckf7e10272011-07-21 00:40:35 +00003841 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00003842 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00003843}
3844
Alexander Duycke4911d52011-05-11 07:18:52 +00003845static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3846{
3847 struct ixgbe_hw *hw = &adapter->hw;
3848 struct hlist_node *node, *node2;
3849 struct ixgbe_fdir_filter *filter;
3850
3851 spin_lock(&adapter->fdir_perfect_lock);
3852
3853 if (!hlist_empty(&adapter->fdir_filter_list))
3854 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3855
3856 hlist_for_each_entry_safe(filter, node, node2,
3857 &adapter->fdir_filter_list, fdir_node) {
3858 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003859 &filter->filter,
3860 filter->sw_idx,
3861 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3862 IXGBE_FDIR_DROP_QUEUE :
3863 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003864 }
3865
3866 spin_unlock(&adapter->fdir_perfect_lock);
3867}
3868
Auke Kok9a799d72007-09-15 14:07:45 -07003869static void ixgbe_configure(struct ixgbe_adapter *adapter)
3870{
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003871 struct ixgbe_hw *hw = &adapter->hw;
3872
John Fastabend80605c652011-05-02 12:34:10 +00003873 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003874#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003875 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003876#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003877
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003878 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003879 ixgbe_restore_vlan(adapter);
3880
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003881 switch (hw->mac.type) {
3882 case ixgbe_mac_82599EB:
3883 case ixgbe_mac_X540:
3884 hw->mac.ops.disable_rx_buff(hw);
3885 break;
3886 default:
3887 break;
3888 }
3889
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003890 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003891 ixgbe_init_fdir_signature_82599(&adapter->hw,
3892 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003893 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3894 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3895 adapter->fdir_pballoc);
3896 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003897 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003898
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003899 switch (hw->mac.type) {
3900 case ixgbe_mac_82599EB:
3901 case ixgbe_mac_X540:
3902 hw->mac.ops.enable_rx_buff(hw);
3903 break;
3904 default:
3905 break;
3906 }
3907
Alexander Duyck933d41f2010-09-07 21:34:29 +00003908 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003909
Alexander Duyck7c8ae652012-05-05 05:32:47 +00003910#ifdef IXGBE_FCOE
3911 /* configure FCoE L2 filters, redirection table, and Rx control */
3912 ixgbe_configure_fcoe(adapter);
3913
3914#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07003915 ixgbe_configure_tx(adapter);
3916 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003917}
3918
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003919static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3920{
3921 switch (hw->phy.type) {
3922 case ixgbe_phy_sfp_avago:
3923 case ixgbe_phy_sfp_ftl:
3924 case ixgbe_phy_sfp_intel:
3925 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003926 case ixgbe_phy_sfp_passive_tyco:
3927 case ixgbe_phy_sfp_passive_unknown:
3928 case ixgbe_phy_sfp_active_unknown:
3929 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003930 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00003931 case ixgbe_phy_nl:
3932 if (hw->mac.type == ixgbe_mac_82598EB)
3933 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003934 default:
3935 return false;
3936 }
3937}
3938
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003939/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003940 * ixgbe_sfp_link_config - set up SFP+ link
3941 * @adapter: pointer to private adapter struct
3942 **/
3943static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3944{
Alexander Duyck70864002011-04-27 09:13:56 +00003945 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003946 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00003947 * is that an SFP was inserted/removed after the reset
3948 * but before SFP detection was enabled. As such the best
3949 * solution is to just start searching as soon as we start
3950 */
3951 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3952 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003953
Alexander Duyck70864002011-04-27 09:13:56 +00003954 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003955}
3956
3957/**
3958 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003959 * @hw: pointer to private hardware struct
3960 *
3961 * Returns 0 on success, negative on failure
3962 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003963static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003964{
3965 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003966 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003967 u32 ret = IXGBE_ERR_LINK_SETUP;
3968
3969 if (hw->mac.ops.check_link)
3970 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3971
3972 if (ret)
3973 goto link_cfg_out;
3974
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003975 autoneg = hw->phy.autoneg_advertised;
3976 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003977 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3978 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003979 if (ret)
3980 goto link_cfg_out;
3981
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003982 if (hw->mac.ops.setup_link)
3983 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003984link_cfg_out:
3985 return ret;
3986}
3987
Alexander Duycka34bcff2010-08-19 13:39:20 +00003988static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003989{
Auke Kok9a799d72007-09-15 14:07:45 -07003990 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003991 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003992
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003993 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003994 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3995 IXGBE_GPIE_OCD;
3996 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003997 /*
3998 * use EIAM to auto-mask when MSI-X interrupt is asserted
3999 * this saves a register write for every interrupt
4000 */
4001 switch (hw->mac.type) {
4002 case ixgbe_mac_82598EB:
4003 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
4004 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004005 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004006 case ixgbe_mac_X540:
4007 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004008 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
4009 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
4010 break;
4011 }
4012 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004013 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
4014 * specifically only auto mask tx and rx interrupts */
4015 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07004016 }
4017
Alexander Duycka34bcff2010-08-19 13:39:20 +00004018 /* XXX: to interrupt immediately for EICS writes, enable this */
4019 /* gpie |= IXGBE_GPIE_EIMEN; */
4020
4021 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
4022 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
Alexander Duyck73079ea2012-07-14 06:48:49 +00004023
4024 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
4025 case IXGBE_82599_VMDQ_8Q_MASK:
4026 gpie |= IXGBE_GPIE_VTMODE_16;
4027 break;
4028 case IXGBE_82599_VMDQ_4Q_MASK:
4029 gpie |= IXGBE_GPIE_VTMODE_32;
4030 break;
4031 default:
4032 gpie |= IXGBE_GPIE_VTMODE_64;
4033 break;
4034 }
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004035 }
4036
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004037 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00004038 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
4039 switch (adapter->hw.mac.type) {
4040 case ixgbe_mac_82599EB:
4041 gpie |= IXGBE_SDP0_GPIEN;
4042 break;
4043 case ixgbe_mac_X540:
4044 gpie |= IXGBE_EIMS_TS;
4045 break;
4046 default:
4047 break;
4048 }
4049 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004050
Alexander Duycka34bcff2010-08-19 13:39:20 +00004051 /* Enable fan failure interrupt */
4052 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004053 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004054
Don Skidmore2698b202011-04-13 07:01:52 +00004055 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004056 gpie |= IXGBE_SDP1_GPIEN;
4057 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00004058 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00004059
4060 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
4061}
4062
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004063static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00004064{
4065 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004066 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004067 u32 ctrl_ext;
4068
4069 ixgbe_get_hw_control(adapter);
4070 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004071
Auke Kok9a799d72007-09-15 14:07:45 -07004072 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4073 ixgbe_configure_msix(adapter);
4074 else
4075 ixgbe_configure_msi_and_legacy(adapter);
4076
Don Skidmorec6ecf392010-12-03 03:31:51 +00004077 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
4078 if (hw->mac.ops.enable_tx_laser &&
4079 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004080 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004081 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00004082 hw->mac.ops.enable_tx_laser(hw);
4083
Auke Kok9a799d72007-09-15 14:07:45 -07004084 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004085 ixgbe_napi_enable_all(adapter);
4086
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08004087 if (ixgbe_is_sfp(hw)) {
4088 ixgbe_sfp_link_config(adapter);
4089 } else {
4090 err = ixgbe_non_sfp_link_config(hw);
4091 if (err)
4092 e_err(probe, "link_config FAILED %d\n", err);
4093 }
4094
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004095 /* clear any pending interrupts, may auto mask */
4096 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00004097 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07004098
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004099 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00004100 * If this adapter has a fan, check to see if we had a failure
4101 * before we enabled the interrupt.
4102 */
4103 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
4104 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
4105 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00004106 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00004107 }
4108
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004109 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00004110 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004111
Auke Kok9a799d72007-09-15 14:07:45 -07004112 /* bring the link up in the watchdog, this could race with our first
4113 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004114 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
4115 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00004116 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00004117
4118 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
4119 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
4120 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
4121 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07004122}
4123
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004124void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
4125{
4126 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00004127 /* put off any impending NetWatchDogTimeout */
4128 adapter->netdev->trans_start = jiffies;
4129
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004130 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00004131 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004132 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00004133 /*
4134 * If SR-IOV enabled then wait a bit before bringing the adapter
4135 * back up to give the VFs time to respond to the reset. The
4136 * two second wait is based upon the watchdog timer cycle in
4137 * the VF driver.
4138 */
4139 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4140 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004141 ixgbe_up(adapter);
4142 clear_bit(__IXGBE_RESETTING, &adapter->state);
4143}
4144
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004145void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004146{
4147 /* hardware has been reset, we need to reload some things */
4148 ixgbe_configure(adapter);
4149
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004150 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004151}
4152
4153void ixgbe_reset(struct ixgbe_adapter *adapter)
4154{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004155 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004156 int err;
4157
Alexander Duyck70864002011-04-27 09:13:56 +00004158 /* lock SFP init bit to prevent race conditions with the watchdog */
4159 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4160 usleep_range(1000, 2000);
4161
4162 /* clear all SFP and link config related flags while holding SFP_INIT */
4163 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4164 IXGBE_FLAG2_SFP_NEEDS_RESET);
4165 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4166
Don Skidmore8ca783a2009-05-26 20:40:47 -07004167 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004168 switch (err) {
4169 case 0:
4170 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004171 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004172 break;
4173 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004174 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004175 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004176 case IXGBE_ERR_EEPROM_VERSION:
4177 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004178 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004179 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00004180 "your hardware. If you are experiencing problems "
4181 "please contact your Intel or hardware "
4182 "representative who provided you with this "
4183 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004184 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004185 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004186 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004187 }
Auke Kok9a799d72007-09-15 14:07:45 -07004188
Alexander Duyck70864002011-04-27 09:13:56 +00004189 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4190
Auke Kok9a799d72007-09-15 14:07:45 -07004191 /* reprogram the RAR[0] in case user changed it. */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004192 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00004193
4194 /* update SAN MAC vmdq pool selection */
4195 if (hw->mac.san_mac_rar_index)
4196 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
Auke Kok9a799d72007-09-15 14:07:45 -07004197}
4198
Auke Kok9a799d72007-09-15 14:07:45 -07004199/**
4200 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004201 * @rx_ring: ring to free buffers from
4202 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004203static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004204{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004205 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004206 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004207 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004208
Alexander Duyck84418e32010-08-19 13:40:54 +00004209 /* ring already cleared, nothing to do */
4210 if (!rx_ring->rx_buffer_info)
4211 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004212
Alexander Duyck84418e32010-08-19 13:40:54 +00004213 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004214 for (i = 0; i < rx_ring->count; i++) {
Alexander Duyckf8003262012-03-03 02:35:52 +00004215 struct ixgbe_rx_buffer *rx_buffer;
Auke Kok9a799d72007-09-15 14:07:45 -07004216
Alexander Duyckf8003262012-03-03 02:35:52 +00004217 rx_buffer = &rx_ring->rx_buffer_info[i];
4218 if (rx_buffer->skb) {
4219 struct sk_buff *skb = rx_buffer->skb;
4220 if (IXGBE_CB(skb)->page_released) {
4221 dma_unmap_page(dev,
4222 IXGBE_CB(skb)->dma,
4223 ixgbe_rx_bufsz(rx_ring),
4224 DMA_FROM_DEVICE);
4225 IXGBE_CB(skb)->page_released = false;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00004226 }
4227 dev_kfree_skb(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07004228 }
Alexander Duyckf8003262012-03-03 02:35:52 +00004229 rx_buffer->skb = NULL;
4230 if (rx_buffer->dma)
4231 dma_unmap_page(dev, rx_buffer->dma,
4232 ixgbe_rx_pg_size(rx_ring),
4233 DMA_FROM_DEVICE);
4234 rx_buffer->dma = 0;
4235 if (rx_buffer->page)
Alexander Duyckdd411ec2012-04-06 04:24:50 +00004236 __free_pages(rx_buffer->page,
4237 ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00004238 rx_buffer->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07004239 }
4240
4241 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4242 memset(rx_ring->rx_buffer_info, 0, size);
4243
4244 /* Zero out the descriptor ring */
4245 memset(rx_ring->desc, 0, rx_ring->size);
4246
Alexander Duyckf8003262012-03-03 02:35:52 +00004247 rx_ring->next_to_alloc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004248 rx_ring->next_to_clean = 0;
4249 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004250}
4251
4252/**
4253 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004254 * @tx_ring: ring to be cleaned
4255 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004256static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004257{
4258 struct ixgbe_tx_buffer *tx_buffer_info;
4259 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004260 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004261
Alexander Duyck84418e32010-08-19 13:40:54 +00004262 /* ring already cleared, nothing to do */
4263 if (!tx_ring->tx_buffer_info)
4264 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004265
Alexander Duyck84418e32010-08-19 13:40:54 +00004266 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004267 for (i = 0; i < tx_ring->count; i++) {
4268 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004269 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004270 }
4271
John Fastabenddad8a3b2012-04-23 12:22:39 +00004272 netdev_tx_reset_queue(txring_txq(tx_ring));
4273
Auke Kok9a799d72007-09-15 14:07:45 -07004274 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4275 memset(tx_ring->tx_buffer_info, 0, size);
4276
4277 /* Zero out the descriptor ring */
4278 memset(tx_ring->desc, 0, tx_ring->size);
4279
4280 tx_ring->next_to_use = 0;
4281 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004282}
4283
4284/**
Auke Kok9a799d72007-09-15 14:07:45 -07004285 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4286 * @adapter: board private structure
4287 **/
4288static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4289{
4290 int i;
4291
4292 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004293 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004294}
4295
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004296/**
4297 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4298 * @adapter: board private structure
4299 **/
4300static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4301{
4302 int i;
4303
4304 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004305 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004306}
4307
Alexander Duycke4911d52011-05-11 07:18:52 +00004308static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4309{
4310 struct hlist_node *node, *node2;
4311 struct ixgbe_fdir_filter *filter;
4312
4313 spin_lock(&adapter->fdir_perfect_lock);
4314
4315 hlist_for_each_entry_safe(filter, node, node2,
4316 &adapter->fdir_filter_list, fdir_node) {
4317 hlist_del(&filter->fdir_node);
4318 kfree(filter);
4319 }
4320 adapter->fdir_filter_count = 0;
4321
4322 spin_unlock(&adapter->fdir_perfect_lock);
4323}
4324
Auke Kok9a799d72007-09-15 14:07:45 -07004325void ixgbe_down(struct ixgbe_adapter *adapter)
4326{
4327 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004328 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004329 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004330 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004331
4332 /* signal that we are down to the interrupt handler */
4333 set_bit(__IXGBE_DOWN, &adapter->state);
4334
4335 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004336 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4337 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004338
Yi Zou2d39d572011-01-06 14:29:56 +00004339 /* disable all enabled rx queues */
4340 for (i = 0; i < adapter->num_rx_queues; i++)
4341 /* this call also flushes the previous write */
4342 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4343
Don Skidmore032b4322011-03-18 09:32:53 +00004344 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004345
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004346 netif_tx_stop_all_queues(netdev);
4347
Alexander Duyck70864002011-04-27 09:13:56 +00004348 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004349 netif_carrier_off(netdev);
4350 netif_tx_disable(netdev);
4351
4352 ixgbe_irq_disable(adapter);
4353
4354 ixgbe_napi_disable_all(adapter);
4355
Alexander Duyckd034acf2011-04-27 09:25:34 +00004356 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4357 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004358 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4359
4360 del_timer_sync(&adapter->service_timer);
4361
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004362 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004363 /* Clear EITR Select mapping */
4364 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4365
4366 /* Mark all the VFs as inactive */
4367 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004368 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004369
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004370 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004371 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004372
Auke Kok9a799d72007-09-15 14:07:45 -07004373 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004374 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004375 }
4376
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004377 /* disable transmits in the hardware now that interrupts are off */
4378 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004379 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004380 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004381 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004382
4383 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004384 switch (hw->mac.type) {
4385 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004386 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004387 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004388 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4389 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004390 break;
4391 default:
4392 break;
4393 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004394
Paul Larson6f4a0e42008-06-24 17:00:56 -07004395 if (!pci_channel_offline(adapter->pdev))
4396 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004397
4398 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4399 if (hw->mac.ops.disable_tx_laser &&
4400 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004401 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004402 (hw->mac.type == ixgbe_mac_82599EB))))
4403 hw->mac.ops.disable_tx_laser(hw);
4404
Auke Kok9a799d72007-09-15 14:07:45 -07004405 ixgbe_clean_all_tx_rings(adapter);
4406 ixgbe_clean_all_rx_rings(adapter);
4407
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004408#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004409 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004410 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004411#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004412}
4413
Auke Kok9a799d72007-09-15 14:07:45 -07004414/**
Auke Kok9a799d72007-09-15 14:07:45 -07004415 * ixgbe_tx_timeout - Respond to a Tx Hang
4416 * @netdev: network interface device structure
4417 **/
4418static void ixgbe_tx_timeout(struct net_device *netdev)
4419{
4420 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4421
4422 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004423 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004424}
4425
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004426/**
Auke Kok9a799d72007-09-15 14:07:45 -07004427 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4428 * @adapter: board private structure to initialize
4429 *
4430 * ixgbe_sw_init initializes the Adapter private data structure.
4431 * Fields are initialized based on PCI device information and
4432 * OS network device settings (MTU size).
4433 **/
4434static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
4435{
4436 struct ixgbe_hw *hw = &adapter->hw;
4437 struct pci_dev *pdev = adapter->pdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004438 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004439#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004440 int j;
4441 struct tc_configuration *tc;
4442#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004443
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004444 /* PCI config space info */
4445
4446 hw->vendor_id = pdev->vendor;
4447 hw->device_id = pdev->device;
4448 hw->revision_id = pdev->revision;
4449 hw->subsystem_vendor_id = pdev->subsystem_vendor;
4450 hw->subsystem_device_id = pdev->subsystem_device;
4451
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004452 /* Set capability flags */
Jesse Brandeburg3ed69d72012-02-10 10:20:02 +00004453 rss = min_t(int, IXGBE_MAX_RSS_INDICES, num_online_cpus());
Alexander Duyckc0876632012-05-10 00:01:46 +00004454 adapter->ring_feature[RING_F_RSS].limit = rss;
Alexander Duyckbd508172010-11-16 19:27:03 -08004455 switch (hw->mac.type) {
4456 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00004457 if (hw->device_id == IXGBE_DEV_ID_82598AT)
4458 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004459 adapter->max_q_vectors = MAX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08004460 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08004461 case ixgbe_mac_X540:
Jacob Keller4f51bf72011-08-20 04:49:45 +00004462 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
4463 case ixgbe_mac_82599EB:
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004464 adapter->max_q_vectors = MAX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00004465 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
4466 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004467 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
4468 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00004469 /* Flow Director hash filters enabled */
Alexander Duyck45b9f502011-01-06 14:29:59 +00004470 adapter->atr_sample_rate = 20;
Alexander Duyckc0876632012-05-10 00:01:46 +00004471 adapter->ring_feature[RING_F_FDIR].limit =
Joe Perchese8e9f692010-09-07 21:34:53 +00004472 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00004473 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00004474#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00004475 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
4476 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
Yi Zou61a0f422009-12-03 11:32:22 +00004477#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00004478 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00004479 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00004480#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00004481#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08004482 break;
4483 default:
4484 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00004485 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004486
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004487#ifdef IXGBE_FCOE
4488 /* FCoE support exists, always init the FCoE lock */
4489 spin_lock_init(&adapter->fcoe.lock);
4490
4491#endif
Alexander Duyck1fc5f032011-06-02 04:28:39 +00004492 /* n-tuple support exists, always init our spinlock */
4493 spin_lock_init(&adapter->fdir_perfect_lock);
4494
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004495#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00004496 switch (hw->mac.type) {
4497 case ixgbe_mac_X540:
4498 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
4499 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
4500 break;
4501 default:
4502 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
4503 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
4504 break;
4505 }
4506
Alexander Duyck2f90b862008-11-20 20:52:10 -08004507 /* Configure DCB traffic classes */
4508 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
4509 tc = &adapter->dcb_cfg.tc_config[j];
4510 tc->path[DCB_TX_CONFIG].bwg_id = 0;
4511 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
4512 tc->path[DCB_RX_CONFIG].bwg_id = 0;
4513 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
4514 tc->dcb_pfc = pfc_disabled;
4515 }
John Fastabend4de2a022011-09-27 03:52:01 +00004516
4517 /* Initialize default user to priority mapping, UPx->TC0 */
4518 tc = &adapter->dcb_cfg.tc_config[0];
4519 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
4520 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
4521
Alexander Duyck2f90b862008-11-20 20:52:10 -08004522 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
4523 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00004524 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004525 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00004526 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
John Fastabendf525c6d22012-04-18 22:42:27 +00004527 memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg,
4528 sizeof(adapter->temp_dcb_cfg));
Alexander Duyck2f90b862008-11-20 20:52:10 -08004529
4530#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004531
4532 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00004533 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00004534 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
John Fastabend9da712d2011-08-23 03:14:22 +00004535 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07004536 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
4537 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00004538 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07004539
Alexander Duyck99d74482012-05-09 08:09:25 +00004540#ifdef CONFIG_PCI_IOV
4541 /* assign number of SR-IOV VFs */
4542 if (hw->mac.type != ixgbe_mac_82598EB)
4543 adapter->num_vfs = (max_vfs > 63) ? 0 : max_vfs;
4544
4545#endif
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004546 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004547 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004548 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004549
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004550 /* set default ring sizes */
4551 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
4552 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
4553
Alexander Duyckbd198052011-06-11 01:45:08 +00004554 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00004555 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00004556
Auke Kok9a799d72007-09-15 14:07:45 -07004557 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004558 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004559 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07004560 return -EIO;
4561 }
4562
Auke Kok9a799d72007-09-15 14:07:45 -07004563 set_bit(__IXGBE_DOWN, &adapter->state);
4564
4565 return 0;
4566}
4567
4568/**
4569 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004570 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004571 *
4572 * Return 0 on success, negative on failure
4573 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004574int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004575{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004576 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004577 int orig_node = dev_to_node(dev);
4578 int numa_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07004579 int size;
4580
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004581 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004582
4583 if (tx_ring->q_vector)
4584 numa_node = tx_ring->q_vector->numa_node;
4585
4586 tx_ring->tx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004587 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004588 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004589 if (!tx_ring->tx_buffer_info)
4590 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004591
4592 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08004593 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004594 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004595
Alexander Duyckde88eee2012-02-08 07:49:59 +00004596 set_dev_node(dev, numa_node);
4597 tx_ring->desc = dma_alloc_coherent(dev,
4598 tx_ring->size,
4599 &tx_ring->dma,
4600 GFP_KERNEL);
4601 set_dev_node(dev, orig_node);
4602 if (!tx_ring->desc)
4603 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
4604 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004605 if (!tx_ring->desc)
4606 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004607
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004608 tx_ring->next_to_use = 0;
4609 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004610 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004611
4612err:
4613 vfree(tx_ring->tx_buffer_info);
4614 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004615 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004616 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004617}
4618
4619/**
Alexander Duyck69888672008-09-11 20:05:39 -07004620 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
4621 * @adapter: board private structure
4622 *
4623 * If this function returns with an error, then it's possible one or
4624 * more of the rings is populated (while the rest are not). It is the
4625 * callers duty to clean those orphaned rings.
4626 *
4627 * Return 0 on success, negative on failure
4628 **/
4629static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
4630{
4631 int i, err = 0;
4632
4633 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004634 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004635 if (!err)
4636 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004637
Emil Tantilov396e7992010-07-01 20:05:12 +00004638 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004639 goto err_setup_tx;
Alexander Duyck69888672008-09-11 20:05:39 -07004640 }
4641
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004642 return 0;
4643err_setup_tx:
4644 /* rewind the index freeing the rings as we go */
4645 while (i--)
4646 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004647 return err;
4648}
4649
4650/**
Auke Kok9a799d72007-09-15 14:07:45 -07004651 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004652 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004653 *
4654 * Returns 0 on success, negative on failure
4655 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004656int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004657{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004658 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004659 int orig_node = dev_to_node(dev);
4660 int numa_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004661 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07004662
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004663 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004664
4665 if (rx_ring->q_vector)
4666 numa_node = rx_ring->q_vector->numa_node;
4667
4668 rx_ring->rx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004669 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004670 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004671 if (!rx_ring->rx_buffer_info)
4672 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004673
Auke Kok9a799d72007-09-15 14:07:45 -07004674 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004675 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
4676 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004677
Alexander Duyckde88eee2012-02-08 07:49:59 +00004678 set_dev_node(dev, numa_node);
4679 rx_ring->desc = dma_alloc_coherent(dev,
4680 rx_ring->size,
4681 &rx_ring->dma,
4682 GFP_KERNEL);
4683 set_dev_node(dev, orig_node);
4684 if (!rx_ring->desc)
4685 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
4686 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004687 if (!rx_ring->desc)
4688 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004689
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004690 rx_ring->next_to_clean = 0;
4691 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004692
4693 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004694err:
4695 vfree(rx_ring->rx_buffer_info);
4696 rx_ring->rx_buffer_info = NULL;
4697 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07004698 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004699}
4700
4701/**
Alexander Duyck69888672008-09-11 20:05:39 -07004702 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
4703 * @adapter: board private structure
4704 *
4705 * If this function returns with an error, then it's possible one or
4706 * more of the rings is populated (while the rest are not). It is the
4707 * callers duty to clean those orphaned rings.
4708 *
4709 * Return 0 on success, negative on failure
4710 **/
Alexander Duyck69888672008-09-11 20:05:39 -07004711static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
4712{
4713 int i, err = 0;
4714
4715 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004716 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004717 if (!err)
4718 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004719
Emil Tantilov396e7992010-07-01 20:05:12 +00004720 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004721 goto err_setup_rx;
Alexander Duyck69888672008-09-11 20:05:39 -07004722 }
4723
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004724#ifdef IXGBE_FCOE
4725 err = ixgbe_setup_fcoe_ddp_resources(adapter);
4726 if (!err)
4727#endif
4728 return 0;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004729err_setup_rx:
4730 /* rewind the index freeing the rings as we go */
4731 while (i--)
4732 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004733 return err;
4734}
4735
4736/**
Auke Kok9a799d72007-09-15 14:07:45 -07004737 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004738 * @tx_ring: Tx descriptor ring for a specific queue
4739 *
4740 * Free all transmit software resources
4741 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004742void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004743{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004744 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004745
4746 vfree(tx_ring->tx_buffer_info);
4747 tx_ring->tx_buffer_info = NULL;
4748
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004749 /* if not set, then don't free */
4750 if (!tx_ring->desc)
4751 return;
4752
4753 dma_free_coherent(tx_ring->dev, tx_ring->size,
4754 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004755
4756 tx_ring->desc = NULL;
4757}
4758
4759/**
4760 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
4761 * @adapter: board private structure
4762 *
4763 * Free all transmit software resources
4764 **/
4765static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
4766{
4767 int i;
4768
4769 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004770 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004771 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004772}
4773
4774/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07004775 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07004776 * @rx_ring: ring to clean the resources from
4777 *
4778 * Free all receive software resources
4779 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004780void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004781{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004782 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004783
4784 vfree(rx_ring->rx_buffer_info);
4785 rx_ring->rx_buffer_info = NULL;
4786
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004787 /* if not set, then don't free */
4788 if (!rx_ring->desc)
4789 return;
4790
4791 dma_free_coherent(rx_ring->dev, rx_ring->size,
4792 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004793
4794 rx_ring->desc = NULL;
4795}
4796
4797/**
4798 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
4799 * @adapter: board private structure
4800 *
4801 * Free all receive software resources
4802 **/
4803static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
4804{
4805 int i;
4806
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004807#ifdef IXGBE_FCOE
4808 ixgbe_free_fcoe_ddp_resources(adapter);
4809
4810#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004811 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004812 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004813 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004814}
4815
4816/**
Auke Kok9a799d72007-09-15 14:07:45 -07004817 * ixgbe_change_mtu - Change the Maximum Transfer Unit
4818 * @netdev: network interface device structure
4819 * @new_mtu: new value for maximum frame size
4820 *
4821 * Returns 0 on success, negative on failure
4822 **/
4823static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
4824{
4825 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4826 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
4827
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07004828 /* MTU < 68 is an error and causes problems on some kernels */
Alexander Duyck655309e2012-02-08 07:50:35 +00004829 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
4830 return -EINVAL;
4831
4832 /*
4833 * For 82599EB we cannot allow PF to change MTU greater than 1500
4834 * in SR-IOV mode as it may cause buffer overruns in guest VFs that
4835 * don't allocate and chain buffers correctly.
4836 */
4837 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
4838 (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
4839 (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
Greg Rosee9f98072011-01-26 01:06:07 +00004840 return -EINVAL;
Auke Kok9a799d72007-09-15 14:07:45 -07004841
Emil Tantilov396e7992010-07-01 20:05:12 +00004842 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Alexander Duyck655309e2012-02-08 07:50:35 +00004843
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004844 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07004845 netdev->mtu = new_mtu;
4846
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004847 if (netif_running(netdev))
4848 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004849
4850 return 0;
4851}
4852
4853/**
4854 * ixgbe_open - Called when a network interface is made active
4855 * @netdev: network interface device structure
4856 *
4857 * Returns 0 on success, negative value on failure
4858 *
4859 * The open entry point is called when a network interface is made
4860 * active by the system (IFF_UP). At this point all resources needed
4861 * for transmit and receive operations are allocated, the interrupt
4862 * handler is registered with the OS, the watchdog timer is started,
4863 * and the stack is notified that the interface is ready.
4864 **/
4865static int ixgbe_open(struct net_device *netdev)
4866{
4867 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4868 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07004869
Auke Kok4bebfaa2008-02-11 09:26:01 -08004870 /* disallow open during test */
4871 if (test_bit(__IXGBE_TESTING, &adapter->state))
4872 return -EBUSY;
4873
Jesse Brandeburg54386462009-04-17 20:44:27 +00004874 netif_carrier_off(netdev);
4875
Auke Kok9a799d72007-09-15 14:07:45 -07004876 /* allocate transmit descriptors */
4877 err = ixgbe_setup_all_tx_resources(adapter);
4878 if (err)
4879 goto err_setup_tx;
4880
Auke Kok9a799d72007-09-15 14:07:45 -07004881 /* allocate receive descriptors */
4882 err = ixgbe_setup_all_rx_resources(adapter);
4883 if (err)
4884 goto err_setup_rx;
4885
4886 ixgbe_configure(adapter);
4887
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004888 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004889 if (err)
4890 goto err_req_irq;
4891
Alexander Duyckac802f52012-07-12 05:52:53 +00004892 /* Notify the stack of the actual queue counts. */
4893 err = netif_set_real_num_tx_queues(netdev,
4894 adapter->num_rx_pools > 1 ? 1 :
4895 adapter->num_tx_queues);
4896 if (err)
4897 goto err_set_queues;
4898
4899
4900 err = netif_set_real_num_rx_queues(netdev,
4901 adapter->num_rx_pools > 1 ? 1 :
4902 adapter->num_rx_queues);
4903 if (err)
4904 goto err_set_queues;
4905
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004906 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004907
4908 return 0;
4909
Alexander Duyckac802f52012-07-12 05:52:53 +00004910err_set_queues:
4911 ixgbe_free_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004912err_req_irq:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004913 ixgbe_free_all_rx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004914err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004915 ixgbe_free_all_tx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004916err_setup_tx:
Auke Kok9a799d72007-09-15 14:07:45 -07004917 ixgbe_reset(adapter);
4918
4919 return err;
4920}
4921
4922/**
4923 * ixgbe_close - Disables a network interface
4924 * @netdev: network interface device structure
4925 *
4926 * Returns 0, this is not allowed to fail
4927 *
4928 * The close entry point is called when an interface is de-activated
4929 * by the OS. The hardware is still under the drivers control, but
4930 * needs to be disabled. A global MAC reset is issued to stop the
4931 * hardware, and all transmit and receive resources are freed.
4932 **/
4933static int ixgbe_close(struct net_device *netdev)
4934{
4935 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07004936
4937 ixgbe_down(adapter);
4938 ixgbe_free_irq(adapter);
4939
Alexander Duycke4911d52011-05-11 07:18:52 +00004940 ixgbe_fdir_filter_exit(adapter);
4941
Auke Kok9a799d72007-09-15 14:07:45 -07004942 ixgbe_free_all_tx_resources(adapter);
4943 ixgbe_free_all_rx_resources(adapter);
4944
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08004945 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004946
4947 return 0;
4948}
4949
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004950#ifdef CONFIG_PM
4951static int ixgbe_resume(struct pci_dev *pdev)
4952{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004953 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4954 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004955 u32 err;
4956
4957 pci_set_power_state(pdev, PCI_D0);
4958 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08004959 /*
4960 * pci_restore_state clears dev->state_saved so call
4961 * pci_save_state to restore it.
4962 */
4963 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00004964
4965 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004966 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004967 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004968 return err;
4969 }
4970 pci_set_master(pdev);
4971
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07004972 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004973
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004974 ixgbe_reset(adapter);
4975
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00004976 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
4977
Alexander Duyckac802f52012-07-12 05:52:53 +00004978 rtnl_lock();
4979 err = ixgbe_init_interrupt_scheme(adapter);
4980 if (!err && netif_running(netdev))
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004981 err = ixgbe_open(netdev);
Alexander Duyckac802f52012-07-12 05:52:53 +00004982
4983 rtnl_unlock();
4984
4985 if (err)
4986 return err;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004987
4988 netif_device_attach(netdev);
4989
4990 return 0;
4991}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004992#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00004993
4994static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004995{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004996 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4997 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004998 struct ixgbe_hw *hw = &adapter->hw;
4999 u32 ctrl, fctrl;
5000 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005001#ifdef CONFIG_PM
5002 int retval = 0;
5003#endif
5004
5005 netif_device_detach(netdev);
5006
5007 if (netif_running(netdev)) {
Don Skidmoreab6039a2012-03-17 05:51:52 +00005008 rtnl_lock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005009 ixgbe_down(adapter);
5010 ixgbe_free_irq(adapter);
5011 ixgbe_free_all_tx_resources(adapter);
5012 ixgbe_free_all_rx_resources(adapter);
Don Skidmoreab6039a2012-03-17 05:51:52 +00005013 rtnl_unlock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005014 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005015
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005016 ixgbe_clear_interrupt_scheme(adapter);
5017
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005018#ifdef CONFIG_PM
5019 retval = pci_save_state(pdev);
5020 if (retval)
5021 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005022
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005023#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005024 if (wufc) {
5025 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005026
Don Skidmorec509e752012-04-05 08:12:05 +00005027 /*
5028 * enable the optics for both mult-speed fiber and
5029 * 82599 SFP+ fiber as we can WoL.
5030 */
5031 if (hw->mac.ops.enable_tx_laser &&
5032 (hw->phy.multispeed_fiber ||
5033 (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber &&
5034 hw->mac.type == ixgbe_mac_82599EB)))
5035 hw->mac.ops.enable_tx_laser(hw);
5036
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005037 /* turn on all-multi mode if wake on multicast is enabled */
5038 if (wufc & IXGBE_WUFC_MC) {
5039 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5040 fctrl |= IXGBE_FCTRL_MPE;
5041 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5042 }
5043
5044 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5045 ctrl |= IXGBE_CTRL_GIO_DIS;
5046 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5047
5048 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5049 } else {
5050 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5051 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5052 }
5053
Alexander Duyckbd508172010-11-16 19:27:03 -08005054 switch (hw->mac.type) {
5055 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005056 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005057 break;
5058 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005059 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005060 pci_wake_from_d3(pdev, !!wufc);
5061 break;
5062 default:
5063 break;
5064 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005065
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005066 *enable_wake = !!wufc;
5067
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005068 ixgbe_release_hw_control(adapter);
5069
5070 pci_disable_device(pdev);
5071
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005072 return 0;
5073}
5074
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005075#ifdef CONFIG_PM
5076static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5077{
5078 int retval;
5079 bool wake;
5080
5081 retval = __ixgbe_shutdown(pdev, &wake);
5082 if (retval)
5083 return retval;
5084
5085 if (wake) {
5086 pci_prepare_to_sleep(pdev);
5087 } else {
5088 pci_wake_from_d3(pdev, false);
5089 pci_set_power_state(pdev, PCI_D3hot);
5090 }
5091
5092 return 0;
5093}
5094#endif /* CONFIG_PM */
5095
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005096static void ixgbe_shutdown(struct pci_dev *pdev)
5097{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005098 bool wake;
5099
5100 __ixgbe_shutdown(pdev, &wake);
5101
5102 if (system_state == SYSTEM_POWER_OFF) {
5103 pci_wake_from_d3(pdev, wake);
5104 pci_set_power_state(pdev, PCI_D3hot);
5105 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005106}
5107
5108/**
Auke Kok9a799d72007-09-15 14:07:45 -07005109 * ixgbe_update_stats - Update the board statistics counters.
5110 * @adapter: board private structure
5111 **/
5112void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5113{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005114 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005115 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005116 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005117 u64 total_mpc = 0;
5118 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005119 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5120 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005121 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005122
Don Skidmored08935c2010-06-11 13:20:29 +00005123 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5124 test_bit(__IXGBE_RESETTING, &adapter->state))
5125 return;
5126
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005127 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005128 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005129 u64 rsc_flush = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005130 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005131 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5132 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005133 }
5134 adapter->rsc_total_count = rsc_count;
5135 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005136 }
5137
Alexander Duyck5b7da512010-11-16 19:26:50 -08005138 for (i = 0; i < adapter->num_rx_queues; i++) {
5139 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5140 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5141 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5142 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005143 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005144 bytes += rx_ring->stats.bytes;
5145 packets += rx_ring->stats.packets;
5146 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005147 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005148 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5149 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005150 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005151 netdev->stats.rx_bytes = bytes;
5152 netdev->stats.rx_packets = packets;
5153
5154 bytes = 0;
5155 packets = 0;
5156 /* gather some stats to the adapter struct that are per queue */
5157 for (i = 0; i < adapter->num_tx_queues; i++) {
5158 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5159 restart_queue += tx_ring->tx_stats.restart_queue;
5160 tx_busy += tx_ring->tx_stats.tx_busy;
5161 bytes += tx_ring->stats.bytes;
5162 packets += tx_ring->stats.packets;
5163 }
5164 adapter->restart_queue = restart_queue;
5165 adapter->tx_busy = tx_busy;
5166 netdev->stats.tx_bytes = bytes;
5167 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005168
Joe Perches7ca647b2010-09-07 21:35:40 +00005169 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005170
5171 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005172 for (i = 0; i < 8; i++) {
5173 /* for packet buffers not used, the register should read 0 */
5174 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5175 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005176 hwstats->mpc[i] += mpc;
5177 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005178 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5179 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005180 switch (hw->mac.type) {
5181 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005182 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5183 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5184 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005185 hwstats->pxonrxc[i] +=
5186 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005187 break;
5188 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005189 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005190 hwstats->pxonrxc[i] +=
5191 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005192 break;
5193 default:
5194 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005195 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005196 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005197
5198 /*16 register reads */
5199 for (i = 0; i < 16; i++) {
5200 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5201 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5202 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5203 (hw->mac.type == ixgbe_mac_X540)) {
5204 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5205 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5206 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5207 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5208 }
5209 }
5210
Joe Perches7ca647b2010-09-07 21:35:40 +00005211 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005212 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005213 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005214
John Fastabendc84d3242010-11-16 19:27:12 -08005215 ixgbe_update_xoff_received(adapter);
5216
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005217 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005218 switch (hw->mac.type) {
5219 case ixgbe_mac_82598EB:
5220 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005221 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5222 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5223 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5224 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005225 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005226 /* OS2BMC stats are X540 only*/
5227 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5228 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5229 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5230 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5231 case ixgbe_mac_82599EB:
Alexander Duycka4d4f622012-03-28 08:03:32 +00005232 for (i = 0; i < 16; i++)
5233 adapter->hw_rx_no_dma_resources +=
5234 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005235 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005236 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005237 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005238 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005239 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005240 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005241 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005242 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5243 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005244#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005245 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5246 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5247 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5248 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5249 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5250 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005251 /* Add up per cpu counters for total ddp aloc fail */
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005252 if (adapter->fcoe.ddp_pool) {
5253 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5254 struct ixgbe_fcoe_ddp_pool *ddp_pool;
5255 unsigned int cpu;
5256 u64 noddp = 0, noddp_ext_buff = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005257 for_each_possible_cpu(cpu) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005258 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
5259 noddp += ddp_pool->noddp;
5260 noddp_ext_buff += ddp_pool->noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005261 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005262 hwstats->fcoe_noddp = noddp;
5263 hwstats->fcoe_noddp_ext_buff = noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005264 }
Yi Zou6d455222009-05-13 13:12:16 +00005265#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005266 break;
5267 default:
5268 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005269 }
Auke Kok9a799d72007-09-15 14:07:45 -07005270 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005271 hwstats->bprc += bprc;
5272 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005273 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005274 hwstats->mprc -= bprc;
5275 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5276 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5277 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5278 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5279 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5280 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5281 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5282 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005283 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005284 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005285 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005286 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005287 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5288 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005289 /*
5290 * 82598 errata - tx of flow control packets is included in tx counters
5291 */
5292 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005293 hwstats->gptc -= xon_off_tot;
5294 hwstats->mptc -= xon_off_tot;
5295 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5296 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5297 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5298 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5299 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5300 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5301 hwstats->ptc64 -= xon_off_tot;
5302 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5303 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5304 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5305 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5306 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5307 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005308
5309 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005310 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005311
5312 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005313 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005314 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005315 netdev->stats.rx_length_errors = hwstats->rlec;
5316 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005317 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005318}
5319
5320/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005321 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005322 * @adapter: pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005323 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005324static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005325{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005326 struct ixgbe_hw *hw = &adapter->hw;
5327 int i;
5328
Alexander Duyckd034acf2011-04-27 09:25:34 +00005329 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5330 return;
5331
5332 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5333
5334 /* if interface is down do nothing */
5335 if (test_bit(__IXGBE_DOWN, &adapter->state))
5336 return;
5337
5338 /* do nothing if we are not using signature filters */
5339 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5340 return;
5341
5342 adapter->fdir_overflow++;
5343
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005344 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5345 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005346 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005347 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005348 /* re-enable flow director interrupts */
5349 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005350 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005351 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005352 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005353 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005354}
5355
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005356/**
5357 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005358 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005359 *
5360 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005361 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005362 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005363 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005364 */
5365static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5366{
Auke Kok9a799d72007-09-15 14:07:45 -07005367 struct ixgbe_hw *hw = &adapter->hw;
5368 u64 eics = 0;
5369 int i;
5370
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005371 /* If we're down or resetting, just bail */
5372 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5373 test_bit(__IXGBE_RESETTING, &adapter->state))
5374 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005375
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005376 /* Force detection of hung controller */
5377 if (netif_carrier_ok(adapter->netdev)) {
5378 for (i = 0; i < adapter->num_tx_queues; i++)
5379 set_check_for_tx_hang(adapter->tx_ring[i]);
5380 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005381
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005382 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005383 /*
5384 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005385 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005386 * would set *both* EIMS and EICS for any bit in EIAM
5387 */
5388 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5389 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005390 } else {
5391 /* get one bit for every active tx/rx interrupt vector */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00005392 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005393 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00005394 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005395 eics |= ((u64)1 << i);
5396 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005397 }
5398
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005399 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005400 ixgbe_irq_rearm_queues(adapter, eics);
5401
Alexander Duyckfe49f042009-06-04 16:00:09 +00005402}
5403
5404/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005405 * ixgbe_watchdog_update_link - update the link status
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005406 * @adapter: pointer to the device adapter structure
5407 * @link_speed: pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005408 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005409static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005410{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005411 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005412 u32 link_speed = adapter->link_speed;
5413 bool link_up = adapter->link_up;
Alexander Duyck041441d2012-04-19 17:48:48 +00005414 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005415
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005416 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5417 return;
5418
5419 if (hw->mac.ops.check_link) {
5420 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005421 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005422 /* always assume link is up, if no check link function */
5423 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
5424 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005425 }
Alexander Duyck041441d2012-04-19 17:48:48 +00005426
5427 if (adapter->ixgbe_ieee_pfc)
5428 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
5429
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005430 if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
Alexander Duyck041441d2012-04-19 17:48:48 +00005431 hw->mac.ops.fc_enable(hw);
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005432 ixgbe_set_rx_drop_en(adapter);
5433 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005434
5435 if (link_up ||
5436 time_after(jiffies, (adapter->link_check_timeout +
5437 IXGBE_TRY_LINK_TIMEOUT))) {
5438 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5439 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
5440 IXGBE_WRITE_FLUSH(hw);
5441 }
5442
5443 adapter->link_up = link_up;
5444 adapter->link_speed = link_speed;
5445}
5446
5447/**
5448 * ixgbe_watchdog_link_is_up - update netif_carrier status and
5449 * print link up message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005450 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005451 **/
5452static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
5453{
5454 struct net_device *netdev = adapter->netdev;
5455 struct ixgbe_hw *hw = &adapter->hw;
5456 u32 link_speed = adapter->link_speed;
5457 bool flow_rx, flow_tx;
5458
5459 /* only continue if link was previously down */
5460 if (netif_carrier_ok(netdev))
5461 return;
5462
5463 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
5464
5465 switch (hw->mac.type) {
5466 case ixgbe_mac_82598EB: {
5467 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5468 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
5469 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
5470 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
5471 }
5472 break;
5473 case ixgbe_mac_X540:
5474 case ixgbe_mac_82599EB: {
5475 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
5476 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
5477 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
5478 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
5479 }
5480 break;
5481 default:
5482 flow_tx = false;
5483 flow_rx = false;
5484 break;
5485 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005486
5487#ifdef CONFIG_IXGBE_PTP
5488 ixgbe_ptp_start_cyclecounter(adapter);
5489#endif
5490
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005491 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
5492 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
5493 "10 Gbps" :
5494 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
5495 "1 Gbps" :
5496 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
5497 "100 Mbps" :
5498 "unknown speed"))),
5499 ((flow_rx && flow_tx) ? "RX/TX" :
5500 (flow_rx ? "RX" :
5501 (flow_tx ? "TX" : "None"))));
5502
5503 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005504 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005505
5506 /* ping all the active vfs to let them know link has changed */
5507 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005508}
5509
5510/**
5511 * ixgbe_watchdog_link_is_down - update netif_carrier status and
5512 * print link down message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005513 * @adapter: pointer to the adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005514 **/
Alexander Duyck581330b2012-02-08 07:51:47 +00005515static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005516{
5517 struct net_device *netdev = adapter->netdev;
5518 struct ixgbe_hw *hw = &adapter->hw;
5519
5520 adapter->link_up = false;
5521 adapter->link_speed = 0;
5522
5523 /* only continue if link was up previously */
5524 if (!netif_carrier_ok(netdev))
5525 return;
5526
5527 /* poll for SFP+ cable when link is down */
5528 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
5529 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
5530
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005531#ifdef CONFIG_IXGBE_PTP
5532 ixgbe_ptp_start_cyclecounter(adapter);
5533#endif
5534
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005535 e_info(drv, "NIC Link is Down\n");
5536 netif_carrier_off(netdev);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005537
5538 /* ping all the active vfs to let them know link has changed */
5539 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005540}
5541
5542/**
5543 * ixgbe_watchdog_flush_tx - flush queues on link down
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005544 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005545 **/
5546static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
5547{
5548 int i;
5549 int some_tx_pending = 0;
5550
5551 if (!netif_carrier_ok(adapter->netdev)) {
5552 for (i = 0; i < adapter->num_tx_queues; i++) {
5553 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5554 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
5555 some_tx_pending = 1;
5556 break;
5557 }
5558 }
5559
5560 if (some_tx_pending) {
5561 /* We've lost link, so the controller stops DMA,
5562 * but we've got queued Tx work that's never going
5563 * to get done, so reset controller to flush Tx.
5564 * (Do the reset outside of interrupt context).
5565 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005566 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005567 }
5568 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005569}
5570
Greg Rosea985b6c32010-11-18 03:02:52 +00005571static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
5572{
5573 u32 ssvpc;
5574
5575 /* Do not perform spoof check for 82598 */
5576 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
5577 return;
5578
5579 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
5580
5581 /*
5582 * ssvpc register is cleared on read, if zero then no
5583 * spoofed packets in the last interval.
5584 */
5585 if (!ssvpc)
5586 return;
5587
5588 e_warn(drv, "%d Spoofed packets detected\n", ssvpc);
5589}
5590
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005591/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005592 * ixgbe_watchdog_subtask - check and bring link up
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005593 * @adapter: pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005594 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005595static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005596{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005597 /* if interface is down do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00005598 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5599 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005600 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005601
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005602 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00005603
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005604 if (adapter->link_up)
5605 ixgbe_watchdog_link_is_up(adapter);
5606 else
5607 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005608
Greg Rosea985b6c32010-11-18 03:02:52 +00005609 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005610 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005611
5612 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005613}
5614
Alexander Duyck70864002011-04-27 09:13:56 +00005615/**
5616 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005617 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005618 **/
5619static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
5620{
5621 struct ixgbe_hw *hw = &adapter->hw;
5622 s32 err;
5623
5624 /* not searching for SFP so there is nothing to do here */
5625 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
5626 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5627 return;
5628
5629 /* someone else is in init, wait until next service event */
5630 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5631 return;
5632
5633 err = hw->phy.ops.identify_sfp(hw);
5634 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5635 goto sfp_out;
5636
5637 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
5638 /* If no cable is present, then we need to reset
5639 * the next time we find a good cable. */
5640 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
5641 }
5642
5643 /* exit on error */
5644 if (err)
5645 goto sfp_out;
5646
5647 /* exit if reset not needed */
5648 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5649 goto sfp_out;
5650
5651 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
5652
5653 /*
5654 * A module may be identified correctly, but the EEPROM may not have
5655 * support for that module. setup_sfp() will fail in that case, so
5656 * we should not allow that module to load.
5657 */
5658 if (hw->mac.type == ixgbe_mac_82598EB)
5659 err = hw->phy.ops.reset(hw);
5660 else
5661 err = hw->mac.ops.setup_sfp(hw);
5662
5663 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5664 goto sfp_out;
5665
5666 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
5667 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
5668
5669sfp_out:
5670 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5671
5672 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
5673 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
5674 e_dev_err("failed to initialize because an unsupported "
5675 "SFP+ module type was detected.\n");
5676 e_dev_err("Reload the driver after installing a "
5677 "supported module.\n");
5678 unregister_netdev(adapter->netdev);
5679 }
5680}
5681
5682/**
5683 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005684 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005685 **/
5686static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
5687{
5688 struct ixgbe_hw *hw = &adapter->hw;
5689 u32 autoneg;
5690 bool negotiation;
5691
5692 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
5693 return;
5694
5695 /* someone else is in init, wait until next service event */
5696 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5697 return;
5698
5699 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
5700
5701 autoneg = hw->phy.autoneg_advertised;
5702 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
5703 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Alexander Duyck70864002011-04-27 09:13:56 +00005704 if (hw->mac.ops.setup_link)
5705 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
5706
5707 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5708 adapter->link_check_timeout = jiffies;
5709 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5710}
5711
Greg Rose83c61fa2011-09-07 05:59:35 +00005712#ifdef CONFIG_PCI_IOV
5713static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
5714{
5715 int vf;
5716 struct ixgbe_hw *hw = &adapter->hw;
5717 struct net_device *netdev = adapter->netdev;
5718 u32 gpc;
5719 u32 ciaa, ciad;
5720
5721 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
5722 if (gpc) /* If incrementing then no need for the check below */
5723 return;
5724 /*
5725 * Check to see if a bad DMA write target from an errant or
5726 * malicious VF has caused a PCIe error. If so then we can
5727 * issue a VFLR to the offending VF(s) and then resume without
5728 * requesting a full slot reset.
5729 */
5730
5731 for (vf = 0; vf < adapter->num_vfs; vf++) {
5732 ciaa = (vf << 16) | 0x80000000;
5733 /* 32 bit read so align, we really want status at offset 6 */
5734 ciaa |= PCI_COMMAND;
5735 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5736 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
5737 ciaa &= 0x7FFFFFFF;
5738 /* disable debug mode asap after reading data */
5739 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5740 /* Get the upper 16 bits which will be the PCI status reg */
5741 ciad >>= 16;
5742 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
5743 netdev_err(netdev, "VF %d Hung DMA\n", vf);
5744 /* Issue VFLR */
5745 ciaa = (vf << 16) | 0x80000000;
5746 ciaa |= 0xA8;
5747 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5748 ciad = 0x00008000; /* VFLR */
5749 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
5750 ciaa &= 0x7FFFFFFF;
5751 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5752 }
5753 }
5754}
5755
5756#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005757/**
5758 * ixgbe_service_timer - Timer Call-back
5759 * @data: pointer to adapter cast into an unsigned long
5760 **/
5761static void ixgbe_service_timer(unsigned long data)
5762{
5763 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
5764 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00005765 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00005766
5767 /* poll faster when waiting for link */
5768 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
5769 next_event_offset = HZ / 10;
5770 else
5771 next_event_offset = HZ * 2;
5772
Greg Rose83c61fa2011-09-07 05:59:35 +00005773#ifdef CONFIG_PCI_IOV
Alexander Duyck6bb78cf2012-02-08 07:51:22 +00005774 /*
5775 * don't bother with SR-IOV VF DMA hang check if there are
5776 * no VFs or the link is down
5777 */
5778 if (!adapter->num_vfs ||
5779 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5780 goto normal_timer_service;
5781
5782 /* If we have VFs allocated then we must check for DMA hangs */
5783 ixgbe_check_for_bad_vf(adapter);
5784 next_event_offset = HZ / 50;
5785 adapter->timer_event_accumulator++;
5786
5787 if (adapter->timer_event_accumulator >= 100)
5788 adapter->timer_event_accumulator = 0;
5789 else
5790 ready = false;
5791
5792normal_timer_service:
Greg Rose83c61fa2011-09-07 05:59:35 +00005793#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005794 /* Reset the timer */
5795 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
5796
Greg Rose83c61fa2011-09-07 05:59:35 +00005797 if (ready)
5798 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005799}
5800
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005801static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
5802{
5803 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
5804 return;
5805
5806 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
5807
5808 /* If we're already down or resetting, just bail */
5809 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5810 test_bit(__IXGBE_RESETTING, &adapter->state))
5811 return;
5812
5813 ixgbe_dump(adapter);
5814 netdev_err(adapter->netdev, "Reset adapter\n");
5815 adapter->tx_timeout_count++;
5816
5817 ixgbe_reinit_locked(adapter);
5818}
5819
Alexander Duyck70864002011-04-27 09:13:56 +00005820/**
5821 * ixgbe_service_task - manages and runs subtasks
5822 * @work: pointer to work_struct containing our data
5823 **/
5824static void ixgbe_service_task(struct work_struct *work)
5825{
5826 struct ixgbe_adapter *adapter = container_of(work,
5827 struct ixgbe_adapter,
5828 service_task);
5829
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005830 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005831 ixgbe_sfp_detection_subtask(adapter);
5832 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00005833 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005834 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00005835 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005836 ixgbe_check_hang_subtask(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005837#ifdef CONFIG_IXGBE_PTP
5838 ixgbe_ptp_overflow_check(adapter);
5839#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005840
5841 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005842}
5843
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005844static int ixgbe_tso(struct ixgbe_ring *tx_ring,
5845 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005846 u8 *hdr_len)
Alexander Duyck897ab152011-05-27 05:31:47 +00005847{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005848 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005849 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005850 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07005851
Alexander Duyck897ab152011-05-27 05:31:47 +00005852 if (!skb_is_gso(skb))
5853 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005854
Alexander Duyck897ab152011-05-27 05:31:47 +00005855 if (skb_header_cloned(skb)) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00005856 int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Alexander Duyck897ab152011-05-27 05:31:47 +00005857 if (err)
5858 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00005859 }
5860
Alexander Duyck897ab152011-05-27 05:31:47 +00005861 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
5862 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
5863
Alexander Duyck244e27a2012-02-08 07:51:11 +00005864 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005865 struct iphdr *iph = ip_hdr(skb);
5866 iph->tot_len = 0;
5867 iph->check = 0;
5868 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5869 iph->daddr, 0,
5870 IPPROTO_TCP,
5871 0);
5872 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005873 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5874 IXGBE_TX_FLAGS_CSUM |
5875 IXGBE_TX_FLAGS_IPV4;
Alexander Duyck897ab152011-05-27 05:31:47 +00005876 } else if (skb_is_gso_v6(skb)) {
5877 ipv6_hdr(skb)->payload_len = 0;
5878 tcp_hdr(skb)->check =
5879 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
5880 &ipv6_hdr(skb)->daddr,
5881 0, IPPROTO_TCP, 0);
Alexander Duyck244e27a2012-02-08 07:51:11 +00005882 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5883 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck897ab152011-05-27 05:31:47 +00005884 }
5885
Alexander Duyck091a6242012-02-08 07:51:01 +00005886 /* compute header lengths */
Alexander Duyck897ab152011-05-27 05:31:47 +00005887 l4len = tcp_hdrlen(skb);
5888 *hdr_len = skb_transport_offset(skb) + l4len;
5889
Alexander Duyck091a6242012-02-08 07:51:01 +00005890 /* update gso size and bytecount with header size */
5891 first->gso_segs = skb_shinfo(skb)->gso_segs;
5892 first->bytecount += (first->gso_segs - 1) * *hdr_len;
5893
Alexander Duyck897ab152011-05-27 05:31:47 +00005894 /* mss_l4len_id: use 1 as index for TSO */
5895 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
5896 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
5897 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
5898
5899 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
5900 vlan_macip_lens = skb_network_header_len(skb);
5901 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005902 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005903
5904 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005905 mss_l4len_idx);
Alexander Duyck897ab152011-05-27 05:31:47 +00005906
5907 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00005908}
5909
Alexander Duyck244e27a2012-02-08 07:51:11 +00005910static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
5911 struct ixgbe_tx_buffer *first)
Auke Kok9a799d72007-09-15 14:07:45 -07005912{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005913 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005914 u32 vlan_macip_lens = 0;
5915 u32 mss_l4len_idx = 0;
5916 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005917
Alexander Duyck897ab152011-05-27 05:31:47 +00005918 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00005919 if (!(first->tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
5920 !(first->tx_flags & IXGBE_TX_FLAGS_TXSW))
5921 return;
Alexander Duyck897ab152011-05-27 05:31:47 +00005922 } else {
5923 u8 l4_hdr = 0;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005924 switch (first->protocol) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005925 case __constant_htons(ETH_P_IP):
5926 vlan_macip_lens |= skb_network_header_len(skb);
5927 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
5928 l4_hdr = ip_hdr(skb)->protocol;
5929 break;
5930 case __constant_htons(ETH_P_IPV6):
5931 vlan_macip_lens |= skb_network_header_len(skb);
5932 l4_hdr = ipv6_hdr(skb)->nexthdr;
5933 break;
5934 default:
5935 if (unlikely(net_ratelimit())) {
5936 dev_warn(tx_ring->dev,
5937 "partial checksum but proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005938 first->protocol);
Alexander Duyck897ab152011-05-27 05:31:47 +00005939 }
5940 break;
5941 }
Auke Kok9a799d72007-09-15 14:07:45 -07005942
Alexander Duyck897ab152011-05-27 05:31:47 +00005943 switch (l4_hdr) {
5944 case IPPROTO_TCP:
5945 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
5946 mss_l4len_idx = tcp_hdrlen(skb) <<
5947 IXGBE_ADVTXD_L4LEN_SHIFT;
5948 break;
5949 case IPPROTO_SCTP:
5950 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
5951 mss_l4len_idx = sizeof(struct sctphdr) <<
5952 IXGBE_ADVTXD_L4LEN_SHIFT;
5953 break;
5954 case IPPROTO_UDP:
5955 mss_l4len_idx = sizeof(struct udphdr) <<
5956 IXGBE_ADVTXD_L4LEN_SHIFT;
5957 break;
5958 default:
5959 if (unlikely(net_ratelimit())) {
5960 dev_warn(tx_ring->dev,
5961 "partial checksum but l4 proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005962 l4_hdr);
Alexander Duyck897ab152011-05-27 05:31:47 +00005963 }
5964 break;
5965 }
Alexander Duyck244e27a2012-02-08 07:51:11 +00005966
5967 /* update TX checksum flag */
5968 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07005969 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005970
Alexander Duyck244e27a2012-02-08 07:51:11 +00005971 /* vlan_macip_lens: MACLEN, VLAN tag */
Alexander Duyck897ab152011-05-27 05:31:47 +00005972 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005973 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005974
5975 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
5976 type_tucmd, mss_l4len_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07005977}
5978
Alexander Duyckd3d00232011-07-15 02:31:25 +00005979static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
5980{
5981 /* set type for advanced descriptor with frame checksum insertion */
5982 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
5983 IXGBE_ADVTXD_DCMD_IFCS |
5984 IXGBE_ADVTXD_DCMD_DEXT);
5985
5986 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00005987 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005988 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
5989
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005990#ifdef CONFIG_IXGBE_PTP
5991 if (tx_flags & IXGBE_TX_FLAGS_TSTAMP)
5992 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_MAC_TSTAMP);
5993#endif
5994
Alexander Duyckd3d00232011-07-15 02:31:25 +00005995 /* set segmentation enable bits for TSO/FSO */
5996#ifdef IXGBE_FCOE
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005997 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FSO))
Alexander Duyckd3d00232011-07-15 02:31:25 +00005998#else
5999 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6000#endif
6001 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
6002
6003 return cmd_type;
6004}
6005
Alexander Duyck729739b2012-02-08 07:51:06 +00006006static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
6007 u32 tx_flags, unsigned int paylen)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006008{
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006009 __le32 olinfo_status = cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006010
6011 /* enable L4 checksum for TSO and TX checksum offload */
6012 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6013 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
6014
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006015 /* enble IPv4 checksum for TSO */
6016 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6017 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006018
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006019 /* use index 1 context for TSO/FSO/FCOE */
6020#ifdef IXGBE_FCOE
6021 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FCOE))
6022#else
6023 if (tx_flags & IXGBE_TX_FLAGS_TSO)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006024#endif
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006025 olinfo_status |= cpu_to_le32(1 << IXGBE_ADVTXD_IDX_SHIFT);
6026
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006027 /*
6028 * Check Context must be set if Tx switch is enabled, which it
6029 * always is for case where virtual functions are running
6030 */
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006031#ifdef IXGBE_FCOE
6032 if (tx_flags & (IXGBE_TX_FLAGS_TXSW | IXGBE_TX_FLAGS_FCOE))
6033#else
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006034 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006035#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006036 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
6037
Alexander Duyck729739b2012-02-08 07:51:06 +00006038 tx_desc->read.olinfo_status = olinfo_status;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006039}
6040
6041#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6042 IXGBE_TXD_CMD_RS)
6043
6044static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006045 struct ixgbe_tx_buffer *first,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006046 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006047{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006048 dma_addr_t dma;
Alexander Duyck729739b2012-02-08 07:51:06 +00006049 struct sk_buff *skb = first->skb;
6050 struct ixgbe_tx_buffer *tx_buffer;
6051 union ixgbe_adv_tx_desc *tx_desc;
6052 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
Alexander Duyckd3d00232011-07-15 02:31:25 +00006053 unsigned int data_len = skb->data_len;
6054 unsigned int size = skb_headlen(skb);
Alexander Duyck729739b2012-02-08 07:51:06 +00006055 unsigned int paylen = skb->len - hdr_len;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006056 u32 tx_flags = first->tx_flags;
Alexander Duyck729739b2012-02-08 07:51:06 +00006057 __le32 cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006058 u16 i = tx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07006059
Alexander Duyck729739b2012-02-08 07:51:06 +00006060 tx_desc = IXGBE_TX_DESC(tx_ring, i);
6061
6062 ixgbe_tx_olinfo_status(tx_desc, tx_flags, paylen);
6063 cmd_type = ixgbe_tx_cmd_type(tx_flags);
6064
Alexander Duyckd3d00232011-07-15 02:31:25 +00006065#ifdef IXGBE_FCOE
6066 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006067 if (data_len < sizeof(struct fcoe_crc_eof)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006068 size -= sizeof(struct fcoe_crc_eof) - data_len;
6069 data_len = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00006070 } else {
6071 data_len -= sizeof(struct fcoe_crc_eof);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006072 }
Auke Kok9a799d72007-09-15 14:07:45 -07006073 }
6074
Alexander Duyckd3d00232011-07-15 02:31:25 +00006075#endif
Alexander Duyck729739b2012-02-08 07:51:06 +00006076 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
6077 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006078 goto dma_error;
6079
Alexander Duyck729739b2012-02-08 07:51:06 +00006080 /* record length, and DMA address */
6081 dma_unmap_len_set(first, len, size);
6082 dma_unmap_addr_set(first, dma, dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006083
Alexander Duyck729739b2012-02-08 07:51:06 +00006084 tx_desc->read.buffer_addr = cpu_to_le64(dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006085
6086 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006087 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006088 tx_desc->read.cmd_type_len =
6089 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006090
Alexander Duyckd3d00232011-07-15 02:31:25 +00006091 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00006092 tx_desc++;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006093 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006094 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006095 i = 0;
6096 }
Alexander Duyck729739b2012-02-08 07:51:06 +00006097
6098 dma += IXGBE_MAX_DATA_PER_TXD;
6099 size -= IXGBE_MAX_DATA_PER_TXD;
6100
6101 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6102 tx_desc->read.olinfo_status = 0;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006103 }
6104
Alexander Duyck729739b2012-02-08 07:51:06 +00006105 if (likely(!data_len))
6106 break;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006107
Ben Greearf43f3132012-03-06 09:42:04 +00006108 if (unlikely(skb->no_fcs))
6109 cmd_type &= ~(cpu_to_le32(IXGBE_ADVTXD_DCMD_IFCS));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006110 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006111
Alexander Duyck729739b2012-02-08 07:51:06 +00006112 i++;
6113 tx_desc++;
6114 if (i == tx_ring->count) {
6115 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
6116 i = 0;
6117 }
Auke Kok9a799d72007-09-15 14:07:45 -07006118
Alexander Duyckd3d00232011-07-15 02:31:25 +00006119#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006120 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006121#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006122 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006123#endif
6124 data_len -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006125
Alexander Duyck729739b2012-02-08 07:51:06 +00006126 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
6127 DMA_TO_DEVICE);
6128 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006129 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006130
Alexander Duyck729739b2012-02-08 07:51:06 +00006131 tx_buffer = &tx_ring->tx_buffer_info[i];
6132 dma_unmap_len_set(tx_buffer, len, size);
6133 dma_unmap_addr_set(tx_buffer, dma, dma);
6134
6135 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6136 tx_desc->read.olinfo_status = 0;
6137
6138 frag++;
Auke Kok9a799d72007-09-15 14:07:45 -07006139 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006140
Alexander Duyck729739b2012-02-08 07:51:06 +00006141 /* write last descriptor with RS and EOP bits */
6142 cmd_type |= cpu_to_le32(size) | cpu_to_le32(IXGBE_TXD_CMD);
6143 tx_desc->read.cmd_type_len = cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006144
Alexander Duyck091a6242012-02-08 07:51:01 +00006145 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Alexander Duyckb2d96e02012-02-07 08:14:33 +00006146
Alexander Duyckd3d00232011-07-15 02:31:25 +00006147 /* set the timestamp */
6148 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006149
6150 /*
Alexander Duyck729739b2012-02-08 07:51:06 +00006151 * Force memory writes to complete before letting h/w know there
6152 * are new descriptors to fetch. (Only applicable for weak-ordered
6153 * memory model archs, such as IA-64).
6154 *
6155 * We also need this memory barrier to make certain all of the
6156 * status bits have been updated before next_to_watch is written.
Auke Kok9a799d72007-09-15 14:07:45 -07006157 */
6158 wmb();
6159
Alexander Duyckd3d00232011-07-15 02:31:25 +00006160 /* set next_to_watch value indicating a packet is present */
6161 first->next_to_watch = tx_desc;
6162
Alexander Duyck729739b2012-02-08 07:51:06 +00006163 i++;
6164 if (i == tx_ring->count)
6165 i = 0;
6166
6167 tx_ring->next_to_use = i;
6168
Alexander Duyckd3d00232011-07-15 02:31:25 +00006169 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006170 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006171
6172 return;
6173dma_error:
Alexander Duyck729739b2012-02-08 07:51:06 +00006174 dev_err(tx_ring->dev, "TX DMA map failed\n");
Alexander Duyckd3d00232011-07-15 02:31:25 +00006175
6176 /* clear dma mappings for failed tx_buffer_info map */
6177 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006178 tx_buffer = &tx_ring->tx_buffer_info[i];
6179 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
6180 if (tx_buffer == first)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006181 break;
6182 if (i == 0)
6183 i = tx_ring->count;
6184 i--;
6185 }
6186
Alexander Duyckd3d00232011-07-15 02:31:25 +00006187 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006188}
6189
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006190static void ixgbe_atr(struct ixgbe_ring *ring,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006191 struct ixgbe_tx_buffer *first)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006192{
Alexander Duyck69830522011-01-06 14:29:58 +00006193 struct ixgbe_q_vector *q_vector = ring->q_vector;
6194 union ixgbe_atr_hash_dword input = { .dword = 0 };
6195 union ixgbe_atr_hash_dword common = { .dword = 0 };
6196 union {
6197 unsigned char *network;
6198 struct iphdr *ipv4;
6199 struct ipv6hdr *ipv6;
6200 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006201 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006202 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006203
Alexander Duyck69830522011-01-06 14:29:58 +00006204 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6205 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006206 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006207
Alexander Duyck69830522011-01-06 14:29:58 +00006208 /* do nothing if sampling is disabled */
6209 if (!ring->atr_sample_rate)
6210 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006211
Alexander Duyck69830522011-01-06 14:29:58 +00006212 ring->atr_count++;
6213
6214 /* snag network header to get L4 type and address */
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006215 hdr.network = skb_network_header(first->skb);
Alexander Duyck69830522011-01-06 14:29:58 +00006216
6217 /* Currently only IPv4/IPv6 with TCP is supported */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006218 if ((first->protocol != __constant_htons(ETH_P_IPV6) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006219 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
Alexander Duyck244e27a2012-02-08 07:51:11 +00006220 (first->protocol != __constant_htons(ETH_P_IP) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006221 hdr.ipv4->protocol != IPPROTO_TCP))
6222 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006223
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006224 th = tcp_hdr(first->skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006225
Alexander Duyck66f32a82011-06-29 05:43:22 +00006226 /* skip this packet since it is invalid or the socket is closing */
6227 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006228 return;
6229
6230 /* sample on all syn packets or once every atr sample count */
6231 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6232 return;
6233
6234 /* reset sample count */
6235 ring->atr_count = 0;
6236
Alexander Duyck244e27a2012-02-08 07:51:11 +00006237 vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
Alexander Duyck69830522011-01-06 14:29:58 +00006238
6239 /*
6240 * src and dst are inverted, think how the receiver sees them
6241 *
6242 * The input is broken into two sections, a non-compressed section
6243 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6244 * is XORed together and stored in the compressed dword.
6245 */
6246 input.formatted.vlan_id = vlan_id;
6247
6248 /*
6249 * since src port and flex bytes occupy the same word XOR them together
6250 * and write the value to source port portion of compressed dword
6251 */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006252 if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006253 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6254 else
Alexander Duyck244e27a2012-02-08 07:51:11 +00006255 common.port.src ^= th->dest ^ first->protocol;
Alexander Duyck69830522011-01-06 14:29:58 +00006256 common.port.dst ^= th->source;
6257
Alexander Duyck244e27a2012-02-08 07:51:11 +00006258 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck69830522011-01-06 14:29:58 +00006259 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6260 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6261 } else {
6262 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6263 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6264 hdr.ipv6->saddr.s6_addr32[1] ^
6265 hdr.ipv6->saddr.s6_addr32[2] ^
6266 hdr.ipv6->saddr.s6_addr32[3] ^
6267 hdr.ipv6->daddr.s6_addr32[0] ^
6268 hdr.ipv6->daddr.s6_addr32[1] ^
6269 hdr.ipv6->daddr.s6_addr32[2] ^
6270 hdr.ipv6->daddr.s6_addr32[3];
6271 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006272
6273 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006274 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6275 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006276}
6277
Alexander Duyck63544e92011-05-27 05:31:42 +00006278static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006279{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006280 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006281 /* Herbert's original patch had:
6282 * smp_mb__after_netif_stop_queue();
6283 * but since that doesn't exist yet, just open code it. */
6284 smp_mb();
6285
6286 /* We need to check again in a case another CPU has just
6287 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006288 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006289 return -EBUSY;
6290
6291 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006292 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006293 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006294 return 0;
6295}
6296
Alexander Duyck82d4e462011-06-11 01:44:58 +00006297static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006298{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006299 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006300 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006301 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006302}
6303
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006304static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6305{
6306 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006307 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6308 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006309#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006310 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006311
John Fastabende5b64632011-03-08 03:44:52 +00006312 if (((protocol == htons(ETH_P_FCOE)) ||
6313 (protocol == htons(ETH_P_FIP))) &&
6314 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyckc0876632012-05-10 00:01:46 +00006315 struct ixgbe_ring_feature *f;
6316
6317 f = &adapter->ring_feature[RING_F_FCOE];
6318
6319 while (txq >= f->indices)
6320 txq -= f->indices;
Alexander Duycke4b317e2012-05-05 05:30:53 +00006321 txq += adapter->ring_feature[RING_F_FCOE].offset;
Alexander Duyckc0876632012-05-10 00:01:46 +00006322
John Fastabende5b64632011-03-08 03:44:52 +00006323 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006324 }
6325#endif
6326
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006327 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6328 while (unlikely(txq >= dev->real_num_tx_queues))
6329 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006330 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006331 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006332
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006333 return skb_tx_hash(dev, skb);
6334}
6335
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006336netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006337 struct ixgbe_adapter *adapter,
6338 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006339{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006340 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006341 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006342 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006343#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6344 unsigned short f;
6345#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006346 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006347 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006348 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006349
Alexander Duycka535c302011-05-27 05:31:52 +00006350 /*
6351 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00006352 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00006353 * + 2 desc gap to keep tail from touching head,
6354 * + 1 desc for context descriptor,
6355 * otherwise try next time
6356 */
6357#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6358 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6359 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6360#else
6361 count += skb_shinfo(skb)->nr_frags;
6362#endif
6363 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6364 tx_ring->tx_stats.tx_busy++;
6365 return NETDEV_TX_BUSY;
6366 }
6367
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006368 /* record the location of the first descriptor for this packet */
6369 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
6370 first->skb = skb;
Alexander Duyck091a6242012-02-08 07:51:01 +00006371 first->bytecount = skb->len;
6372 first->gso_segs = 1;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006373
Alexander Duyck66f32a82011-06-29 05:43:22 +00006374 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00006375 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006376 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6377 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6378 /* else if it is a SW VLAN check the next protocol and store the tag */
6379 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
6380 struct vlan_hdr *vhdr, _vhdr;
6381 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
6382 if (!vhdr)
6383 goto out_drop;
6384
6385 protocol = vhdr->h_vlan_encapsulated_proto;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006386 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
6387 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006388 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006389 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006390
Jacob Kelleraa7bd462012-05-04 01:55:23 +00006391 skb_tx_timestamp(skb);
6392
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006393#ifdef CONFIG_IXGBE_PTP
6394 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
6395 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
6396 tx_flags |= IXGBE_TX_FLAGS_TSTAMP;
6397 }
6398#endif
6399
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006400#ifdef CONFIG_PCI_IOV
6401 /*
6402 * Use the l2switch_enable flag - would be false if the DMA
6403 * Tx switch had been disabled.
6404 */
6405 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6406 tx_flags |= IXGBE_TX_FLAGS_TXSW;
6407
6408#endif
John Fastabend32701dc2011-09-27 03:51:56 +00006409 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006410 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00006411 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
6412 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006413 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00006414 tx_flags |= (skb->priority & 0x7) <<
6415 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006416 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
6417 struct vlan_ethhdr *vhdr;
6418 if (skb_header_cloned(skb) &&
6419 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6420 goto out_drop;
6421 vhdr = (struct vlan_ethhdr *)skb->data;
6422 vhdr->h_vlan_TCI = htons(tx_flags >>
6423 IXGBE_TX_FLAGS_VLAN_SHIFT);
6424 } else {
6425 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6426 }
6427 }
Alexander Duycka535c302011-05-27 05:31:52 +00006428
Alexander Duyck244e27a2012-02-08 07:51:11 +00006429 /* record initial flags and protocol */
6430 first->tx_flags = tx_flags;
6431 first->protocol = protocol;
6432
Yi Zoueacd73f2009-05-13 13:11:06 +00006433#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00006434 /* setup tx offload for FCoE */
6435 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
Alexander Duycka58915c2012-05-25 06:38:18 +00006436 (tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00006437 tso = ixgbe_fso(tx_ring, first, &hdr_len);
Alexander Duyck897ab152011-05-27 05:31:47 +00006438 if (tso < 0)
6439 goto out_drop;
Auke Kok9a799d72007-09-15 14:07:45 -07006440
Alexander Duyck66f32a82011-06-29 05:43:22 +00006441 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006442 }
Auke Kok9a799d72007-09-15 14:07:45 -07006443
Auke Kok9a799d72007-09-15 14:07:45 -07006444#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006445 tso = ixgbe_tso(tx_ring, first, &hdr_len);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006446 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07006447 goto out_drop;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006448 else if (!tso)
6449 ixgbe_tx_csum(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006450
6451 /* add the ATR filter if ATR is on */
6452 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
Alexander Duyck244e27a2012-02-08 07:51:11 +00006453 ixgbe_atr(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006454
6455#ifdef IXGBE_FCOE
6456xmit_fcoe:
6457#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006458 ixgbe_tx_map(tx_ring, first, hdr_len);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006459
6460 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006461
6462 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006463
6464out_drop:
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006465 dev_kfree_skb_any(first->skb);
6466 first->skb = NULL;
6467
Alexander Duyck897ab152011-05-27 05:31:47 +00006468 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07006469}
6470
Alexander Duycka50c29d2012-02-08 07:50:40 +00006471static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
6472 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07006473{
6474 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006475 struct ixgbe_ring *tx_ring;
Auke Kok9a799d72007-09-15 14:07:45 -07006476
Alexander Duycka50c29d2012-02-08 07:50:40 +00006477 /*
6478 * The minimum packet size for olinfo paylen is 17 so pad the skb
6479 * in order to meet this minimum size requirement.
6480 */
Stephen Hemmingerf73332f2012-06-21 02:15:10 +00006481 if (unlikely(skb->len < 17)) {
6482 if (skb_pad(skb, 17 - skb->len))
Alexander Duycka50c29d2012-02-08 07:50:40 +00006483 return NETDEV_TX_OK;
6484 skb->len = 17;
6485 }
6486
Auke Kok9a799d72007-09-15 14:07:45 -07006487 tx_ring = adapter->tx_ring[skb->queue_mapping];
6488 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
6489}
6490
6491/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006492 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Auke Kok9a799d72007-09-15 14:07:45 -07006493 * @netdev: network interface device structure
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006494 * @p: pointer to an address structure
6495 *
Auke Kok9a799d72007-09-15 14:07:45 -07006496 * Returns 0 on success, negative on failure
6497 **/
6498static int ixgbe_set_mac(struct net_device *netdev, void *p)
6499{
Ben Hutchings6b73e102009-04-29 08:08:58 +00006500 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6501 struct ixgbe_hw *hw = &adapter->hw;
6502 struct sockaddr *addr = p;
6503
6504 if (!is_valid_ether_addr(addr->sa_data))
6505 return -EADDRNOTAVAIL;
6506
6507 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
6508 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
6509
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00006510 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07006511
6512 return 0;
6513}
6514
Ben Hutchings6b73e102009-04-29 08:08:58 +00006515static int
6516ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6517{
6518 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6519 struct ixgbe_hw *hw = &adapter->hw;
6520 u16 value;
6521 int rc;
6522
6523 if (prtad != hw->phy.mdio.prtad)
6524 return -EINVAL;
6525 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6526 if (!rc)
6527 rc = value;
6528 return rc;
6529}
6530
6531static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6532 u16 addr, u16 value)
6533{
6534 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6535 struct ixgbe_hw *hw = &adapter->hw;
6536
6537 if (prtad != hw->phy.mdio.prtad)
6538 return -EINVAL;
6539 return hw->phy.ops.write_reg(hw, addr, devad, value);
6540}
6541
6542static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6543{
6544 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6545
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006546 switch (cmd) {
6547#ifdef CONFIG_IXGBE_PTP
6548 case SIOCSHWTSTAMP:
6549 return ixgbe_ptp_hwtstamp_ioctl(adapter, req, cmd);
6550#endif
6551 default:
6552 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6553 }
Ben Hutchings6b73e102009-04-29 08:08:58 +00006554}
6555
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006556/**
6557 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006558 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006559 * @netdev: network interface device structure
6560 *
6561 * Returns non-zero on failure
6562 **/
6563static int ixgbe_add_sanmac_netdev(struct net_device *dev)
6564{
6565 int err = 0;
6566 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006567 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006568
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006569 if (is_valid_ether_addr(hw->mac.san_addr)) {
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006570 rtnl_lock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006571 err = dev_addr_add(dev, hw->mac.san_addr, NETDEV_HW_ADDR_T_SAN);
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006572 rtnl_unlock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006573
6574 /* update SAN MAC vmdq pool selection */
6575 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006576 }
6577 return err;
6578}
6579
6580/**
6581 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006582 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006583 * @netdev: network interface device structure
6584 *
6585 * Returns non-zero on failure
6586 **/
6587static int ixgbe_del_sanmac_netdev(struct net_device *dev)
6588{
6589 int err = 0;
6590 struct ixgbe_adapter *adapter = netdev_priv(dev);
6591 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6592
6593 if (is_valid_ether_addr(mac->san_addr)) {
6594 rtnl_lock();
6595 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6596 rtnl_unlock();
6597 }
6598 return err;
6599}
6600
Auke Kok9a799d72007-09-15 14:07:45 -07006601#ifdef CONFIG_NET_POLL_CONTROLLER
6602/*
6603 * Polling 'interrupt' - used by things like netconsole to send skbs
6604 * without having to re-enable interrupts. It's not called while
6605 * the interrupt routine is executing.
6606 */
6607static void ixgbe_netpoll(struct net_device *netdev)
6608{
6609 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006610 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07006611
Alexander Duyck1a647bd2010-01-13 01:49:13 +00006612 /* if interface is down do nothing */
6613 if (test_bit(__IXGBE_DOWN, &adapter->state))
6614 return;
6615
Auke Kok9a799d72007-09-15 14:07:45 -07006616 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006617 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00006618 for (i = 0; i < adapter->num_q_vectors; i++)
6619 ixgbe_msix_clean_rings(0, adapter->q_vector[i]);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006620 } else {
6621 ixgbe_intr(adapter->pdev->irq, netdev);
6622 }
Auke Kok9a799d72007-09-15 14:07:45 -07006623 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07006624}
Auke Kok9a799d72007-09-15 14:07:45 -07006625
Alexander Duyck581330b2012-02-08 07:51:47 +00006626#endif
Eric Dumazetde1036b2010-10-20 23:00:04 +00006627static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
6628 struct rtnl_link_stats64 *stats)
6629{
6630 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6631 int i;
6632
Eric Dumazet1a515022010-11-16 19:26:42 -08006633 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006634 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08006635 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00006636 u64 bytes, packets;
6637 unsigned int start;
6638
Eric Dumazet1a515022010-11-16 19:26:42 -08006639 if (ring) {
6640 do {
6641 start = u64_stats_fetch_begin_bh(&ring->syncp);
6642 packets = ring->stats.packets;
6643 bytes = ring->stats.bytes;
6644 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6645 stats->rx_packets += packets;
6646 stats->rx_bytes += bytes;
6647 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00006648 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00006649
6650 for (i = 0; i < adapter->num_tx_queues; i++) {
6651 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
6652 u64 bytes, packets;
6653 unsigned int start;
6654
6655 if (ring) {
6656 do {
6657 start = u64_stats_fetch_begin_bh(&ring->syncp);
6658 packets = ring->stats.packets;
6659 bytes = ring->stats.bytes;
6660 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6661 stats->tx_packets += packets;
6662 stats->tx_bytes += bytes;
6663 }
6664 }
Eric Dumazet1a515022010-11-16 19:26:42 -08006665 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006666 /* following stats updated by ixgbe_watchdog_task() */
6667 stats->multicast = netdev->stats.multicast;
6668 stats->rx_errors = netdev->stats.rx_errors;
6669 stats->rx_length_errors = netdev->stats.rx_length_errors;
6670 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
6671 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
6672 return stats;
6673}
6674
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006675#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006676/**
6677 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
6678 * @adapter: pointer to ixgbe_adapter
John Fastabend8b1c0b22011-05-03 02:26:48 +00006679 * @tc: number of traffic classes currently enabled
6680 *
6681 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
6682 * 802.1Q priority maps to a packet buffer that exists.
6683 */
6684static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
6685{
6686 struct ixgbe_hw *hw = &adapter->hw;
6687 u32 reg, rsave;
6688 int i;
6689
6690 /* 82598 have a static priority to TC mapping that can not
6691 * be changed so no validation is needed.
6692 */
6693 if (hw->mac.type == ixgbe_mac_82598EB)
6694 return;
6695
6696 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
6697 rsave = reg;
6698
6699 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
6700 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
6701
6702 /* If up2tc is out of bounds default to zero */
6703 if (up2tc > tc)
6704 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
6705 }
6706
6707 if (reg != rsave)
6708 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
6709
6710 return;
6711}
6712
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006713/**
Alexander Duyck02debdc2012-05-18 06:33:31 +00006714 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
6715 * @adapter: Pointer to adapter struct
6716 *
6717 * Populate the netdev user priority to tc map
6718 */
6719static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter)
6720{
6721 struct net_device *dev = adapter->netdev;
6722 struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg;
6723 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
6724 u8 prio;
6725
6726 for (prio = 0; prio < MAX_USER_PRIORITY; prio++) {
6727 u8 tc = 0;
6728
6729 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE)
6730 tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio);
6731 else if (ets)
6732 tc = ets->prio_tc[prio];
6733
6734 netdev_set_prio_tc_map(dev, prio, tc);
6735 }
6736}
6737
6738/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006739 * ixgbe_setup_tc - configure net_device for multiple traffic classes
John Fastabend8b1c0b22011-05-03 02:26:48 +00006740 *
6741 * @netdev: net device to configure
6742 * @tc: number of traffic classes to enable
6743 */
6744int ixgbe_setup_tc(struct net_device *dev, u8 tc)
6745{
John Fastabend8b1c0b22011-05-03 02:26:48 +00006746 struct ixgbe_adapter *adapter = netdev_priv(dev);
6747 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00006748
John Fastabend8b1c0b22011-05-03 02:26:48 +00006749 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00006750 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
Alexander Duyck581330b2012-02-08 07:51:47 +00006751 (hw->mac.type == ixgbe_mac_82598EB &&
6752 tc < MAX_TRAFFIC_CLASS))
John Fastabend8b1c0b22011-05-03 02:26:48 +00006753 return -EINVAL;
6754
6755 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006756 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00006757 * hardware is not flexible enough to do this dynamically.
6758 */
6759 if (netif_running(dev))
6760 ixgbe_close(dev);
6761 ixgbe_clear_interrupt_scheme(adapter);
6762
John Fastabende7589ea2011-07-18 22:38:36 +00006763 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006764 netdev_set_num_tc(dev, tc);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006765 ixgbe_set_prio_tc_map(adapter);
6766
John Fastabende7589ea2011-07-18 22:38:36 +00006767 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00006768
Alexander Duyck943561d2012-05-09 22:14:44 -07006769 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
6770 adapter->last_lfc_mode = adapter->hw.fc.requested_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006771 adapter->hw.fc.requested_mode = ixgbe_fc_none;
Alexander Duyck943561d2012-05-09 22:14:44 -07006772 }
John Fastabende7589ea2011-07-18 22:38:36 +00006773 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006774 netdev_reset_tc(dev);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006775
Alexander Duyck943561d2012-05-09 22:14:44 -07006776 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6777 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006778
6779 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00006780
6781 adapter->temp_dcb_cfg.pfc_mode_enable = false;
6782 adapter->dcb_cfg.pfc_mode_enable = false;
6783 }
6784
John Fastabend8b1c0b22011-05-03 02:26:48 +00006785 ixgbe_init_interrupt_scheme(adapter);
6786 ixgbe_validate_rtr(adapter, tc);
6787 if (netif_running(dev))
6788 ixgbe_open(dev);
6789
6790 return 0;
6791}
Eric Dumazetde1036b2010-10-20 23:00:04 +00006792
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006793#endif /* CONFIG_IXGBE_DCB */
Don Skidmore082757a2011-07-21 05:55:00 +00006794void ixgbe_do_reset(struct net_device *netdev)
6795{
6796 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6797
6798 if (netif_running(netdev))
6799 ixgbe_reinit_locked(adapter);
6800 else
6801 ixgbe_reset(adapter);
6802}
6803
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006804static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006805 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006806{
6807 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6808
Don Skidmore082757a2011-07-21 05:55:00 +00006809 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006810 if (!(features & NETIF_F_RXCSUM))
6811 features &= ~NETIF_F_LRO;
Don Skidmore082757a2011-07-21 05:55:00 +00006812
Alexander Duyck567d2de2012-02-11 07:18:57 +00006813 /* Turn off LRO if not RSC capable */
6814 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
6815 features &= ~NETIF_F_LRO;
Jacob Keller8e2813f2012-04-21 06:05:40 +00006816
Alexander Duyck567d2de2012-02-11 07:18:57 +00006817 return features;
Don Skidmore082757a2011-07-21 05:55:00 +00006818}
6819
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006820static int ixgbe_set_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006821 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006822{
6823 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck567d2de2012-02-11 07:18:57 +00006824 netdev_features_t changed = netdev->features ^ features;
Don Skidmore082757a2011-07-21 05:55:00 +00006825 bool need_reset = false;
6826
Don Skidmore082757a2011-07-21 05:55:00 +00006827 /* Make sure RSC matches LRO, reset if change */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006828 if (!(features & NETIF_F_LRO)) {
6829 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Don Skidmore082757a2011-07-21 05:55:00 +00006830 need_reset = true;
Alexander Duyck567d2de2012-02-11 07:18:57 +00006831 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
6832 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
6833 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
6834 if (adapter->rx_itr_setting == 1 ||
6835 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
6836 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
6837 need_reset = true;
6838 } else if ((changed ^ features) & NETIF_F_LRO) {
6839 e_info(probe, "rx-usecs set too low, "
6840 "disabling RSC\n");
Don Skidmore082757a2011-07-21 05:55:00 +00006841 }
6842 }
6843
6844 /*
6845 * Check if Flow Director n-tuple support was enabled or disabled. If
6846 * the state changed, we need to reset.
6847 */
Alexander Duyck39cb6812012-06-06 05:38:20 +00006848 switch (features & NETIF_F_NTUPLE) {
6849 case NETIF_F_NTUPLE:
Alexander Duyck567d2de2012-02-11 07:18:57 +00006850 /* turn off ATR, enable perfect filters and reset */
Alexander Duyck39cb6812012-06-06 05:38:20 +00006851 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
6852 need_reset = true;
6853
Alexander Duyck567d2de2012-02-11 07:18:57 +00006854 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
6855 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
Alexander Duyck39cb6812012-06-06 05:38:20 +00006856 break;
6857 default:
6858 /* turn off perfect filters, enable ATR and reset */
6859 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
6860 need_reset = true;
6861
6862 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
6863
6864 /* We cannot enable ATR if SR-IOV is enabled */
6865 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6866 break;
6867
6868 /* We cannot enable ATR if we have 2 or more traffic classes */
6869 if (netdev_get_num_tc(netdev) > 1)
6870 break;
6871
6872 /* We cannot enable ATR if RSS is disabled */
6873 if (adapter->ring_feature[RING_F_RSS].limit <= 1)
6874 break;
6875
6876 /* A sample rate of 0 indicates ATR disabled */
6877 if (!adapter->atr_sample_rate)
6878 break;
6879
6880 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
6881 break;
Don Skidmore082757a2011-07-21 05:55:00 +00006882 }
6883
John Fastabend146d4cc2012-05-15 05:59:26 +00006884 if (features & NETIF_F_HW_VLAN_RX)
6885 ixgbe_vlan_strip_enable(adapter);
6886 else
6887 ixgbe_vlan_strip_disable(adapter);
6888
Ben Greear3f2d1c02012-03-08 08:28:41 +00006889 if (changed & NETIF_F_RXALL)
6890 need_reset = true;
6891
Alexander Duyck567d2de2012-02-11 07:18:57 +00006892 netdev->features = features;
Don Skidmore082757a2011-07-21 05:55:00 +00006893 if (need_reset)
6894 ixgbe_do_reset(netdev);
6895
6896 return 0;
Don Skidmore082757a2011-07-21 05:55:00 +00006897}
6898
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006899static int ixgbe_ndo_fdb_add(struct ndmsg *ndm,
6900 struct net_device *dev,
6901 unsigned char *addr,
6902 u16 flags)
6903{
6904 struct ixgbe_adapter *adapter = netdev_priv(dev);
John Fastabend95447462012-05-31 12:42:26 +00006905 int err;
6906
6907 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
6908 return -EOPNOTSUPP;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006909
6910 if (ndm->ndm_state & NUD_PERMANENT) {
6911 pr_info("%s: FDB only supports static addresses\n",
6912 ixgbe_driver_name);
6913 return -EINVAL;
6914 }
6915
John Fastabend95447462012-05-31 12:42:26 +00006916 if (is_unicast_ether_addr(addr)) {
6917 u32 rar_uc_entries = IXGBE_MAX_PF_MACVLANS;
6918
6919 if (netdev_uc_count(dev) < rar_uc_entries)
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006920 err = dev_uc_add_excl(dev, addr);
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006921 else
John Fastabend95447462012-05-31 12:42:26 +00006922 err = -ENOMEM;
6923 } else if (is_multicast_ether_addr(addr)) {
6924 err = dev_mc_add_excl(dev, addr);
6925 } else {
6926 err = -EINVAL;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006927 }
6928
6929 /* Only return duplicate errors if NLM_F_EXCL is set */
6930 if (err == -EEXIST && !(flags & NLM_F_EXCL))
6931 err = 0;
6932
6933 return err;
6934}
6935
6936static int ixgbe_ndo_fdb_del(struct ndmsg *ndm,
6937 struct net_device *dev,
6938 unsigned char *addr)
6939{
6940 struct ixgbe_adapter *adapter = netdev_priv(dev);
6941 int err = -EOPNOTSUPP;
6942
6943 if (ndm->ndm_state & NUD_PERMANENT) {
6944 pr_info("%s: FDB only supports static addresses\n",
6945 ixgbe_driver_name);
6946 return -EINVAL;
6947 }
6948
6949 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
6950 if (is_unicast_ether_addr(addr))
6951 err = dev_uc_del(dev, addr);
6952 else if (is_multicast_ether_addr(addr))
6953 err = dev_mc_del(dev, addr);
6954 else
6955 err = -EINVAL;
6956 }
6957
6958 return err;
6959}
6960
6961static int ixgbe_ndo_fdb_dump(struct sk_buff *skb,
6962 struct netlink_callback *cb,
6963 struct net_device *dev,
6964 int idx)
6965{
6966 struct ixgbe_adapter *adapter = netdev_priv(dev);
6967
6968 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6969 idx = ndo_dflt_fdb_dump(skb, cb, dev, idx);
6970
6971 return idx;
6972}
6973
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006974static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00006975 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006976 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08006977 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006978 .ndo_select_queue = ixgbe_select_queue,
Alexander Duyck581330b2012-02-08 07:51:47 +00006979 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006980 .ndo_validate_addr = eth_validate_addr,
6981 .ndo_set_mac_address = ixgbe_set_mac,
6982 .ndo_change_mtu = ixgbe_change_mtu,
6983 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006984 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
6985 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00006986 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00006987 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
6988 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
6989 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Alexander Duyck581330b2012-02-08 07:51:47 +00006990 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00006991 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00006992 .ndo_get_stats64 = ixgbe_get_stats64,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006993#ifdef CONFIG_IXGBE_DCB
John Fastabend24095aa2011-02-23 05:58:03 +00006994 .ndo_setup_tc = ixgbe_setup_tc,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006995#endif
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006996#ifdef CONFIG_NET_POLL_CONTROLLER
6997 .ndo_poll_controller = ixgbe_netpoll,
6998#endif
Yi Zou332d4a72009-05-13 13:11:53 +00006999#ifdef IXGBE_FCOE
7000 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007001 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007002 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007003 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7004 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007005 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00007006 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00007007#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00007008 .ndo_set_features = ixgbe_set_features,
7009 .ndo_fix_features = ixgbe_fix_features,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007010 .ndo_fdb_add = ixgbe_ndo_fdb_add,
7011 .ndo_fdb_del = ixgbe_ndo_fdb_del,
7012 .ndo_fdb_dump = ixgbe_ndo_fdb_dump,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007013};
7014
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007015/**
Jacob Keller8e2813f2012-04-21 06:05:40 +00007016 * ixgbe_wol_supported - Check whether device supports WoL
7017 * @hw: hw specific details
7018 * @device_id: the device ID
7019 * @subdev_id: the subsystem device ID
7020 *
7021 * This function is used by probe and ethtool to determine
7022 * which devices have WoL support
7023 *
7024 **/
7025int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
7026 u16 subdevice_id)
7027{
7028 struct ixgbe_hw *hw = &adapter->hw;
7029 u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
7030 int is_wol_supported = 0;
7031
7032 switch (device_id) {
7033 case IXGBE_DEV_ID_82599_SFP:
7034 /* Only these subdevices could supports WOL */
7035 switch (subdevice_id) {
7036 case IXGBE_SUBDEV_ID_82599_560FLR:
7037 /* only support first port */
7038 if (hw->bus.func != 0)
7039 break;
7040 case IXGBE_SUBDEV_ID_82599_SFP:
Don Skidmoreb6dfd932012-07-11 07:17:42 +00007041 case IXGBE_SUBDEV_ID_82599_RNDC:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007042 is_wol_supported = 1;
7043 break;
7044 }
7045 break;
7046 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7047 /* All except this subdevice support WOL */
7048 if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
7049 is_wol_supported = 1;
7050 break;
7051 case IXGBE_DEV_ID_82599_KX4:
7052 is_wol_supported = 1;
7053 break;
7054 case IXGBE_DEV_ID_X540T:
7055 /* check eeprom to see if enabled wol */
7056 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
7057 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7058 (hw->bus.func == 0))) {
7059 is_wol_supported = 1;
7060 }
7061 break;
7062 }
7063
7064 return is_wol_supported;
7065}
7066
7067/**
Auke Kok9a799d72007-09-15 14:07:45 -07007068 * ixgbe_probe - Device Initialization Routine
7069 * @pdev: PCI device information struct
7070 * @ent: entry in ixgbe_pci_tbl
7071 *
7072 * Returns 0 on success, negative on failure
7073 *
7074 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7075 * The OS initialization, configuring of the adapter private structure,
7076 * and a hardware reset occur.
7077 **/
7078static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007079 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007080{
7081 struct net_device *netdev;
7082 struct ixgbe_adapter *adapter = NULL;
7083 struct ixgbe_hw *hw;
7084 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007085 static int cards_found;
7086 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00007087 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007088 unsigned int indices = num_possible_cpus();
John Fastabend3f4a6f02012-06-05 05:58:52 +00007089 unsigned int dcb_max = 0;
Yi Zoueacd73f2009-05-13 13:11:06 +00007090#ifdef IXGBE_FCOE
7091 u16 device_caps;
7092#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007093 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07007094
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007095 /* Catch broken hardware that put the wrong VF device ID in
7096 * the PCIe SR-IOV capability.
7097 */
7098 if (pdev->is_virtfn) {
7099 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7100 pci_name(pdev), pdev->vendor, pdev->device);
7101 return -EINVAL;
7102 }
7103
gouji-new9ce77662009-05-06 10:44:45 +00007104 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007105 if (err)
7106 return err;
7107
Nick Nunley1b507732010-04-27 13:10:27 +00007108 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7109 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007110 pci_using_dac = 1;
7111 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007112 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007113 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007114 err = dma_set_coherent_mask(&pdev->dev,
7115 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007116 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007117 dev_err(&pdev->dev,
7118 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007119 goto err_dma;
7120 }
7121 }
7122 pci_using_dac = 0;
7123 }
7124
gouji-new9ce77662009-05-06 10:44:45 +00007125 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007126 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007127 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007128 dev_err(&pdev->dev,
7129 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007130 goto err_pci_reg;
7131 }
7132
Frans Pop19d5afd2009-10-02 10:04:12 -07007133 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007134
Auke Kok9a799d72007-09-15 14:07:45 -07007135 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007136 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007137
John Fastabende901acd2011-04-26 07:26:08 +00007138#ifdef CONFIG_IXGBE_DCB
John Fastabend3f4a6f02012-06-05 05:58:52 +00007139 if (ii->mac == ixgbe_mac_82598EB)
7140 dcb_max = min_t(unsigned int, indices * MAX_TRAFFIC_CLASS,
7141 IXGBE_MAX_RSS_INDICES);
7142 else
7143 dcb_max = min_t(unsigned int, indices * MAX_TRAFFIC_CLASS,
7144 IXGBE_MAX_FDIR_INDICES);
John Fastabende901acd2011-04-26 07:26:08 +00007145#endif
7146
John Fastabendc85a2612010-02-25 23:15:21 +00007147 if (ii->mac == ixgbe_mac_82598EB)
7148 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7149 else
7150 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7151
John Fastabende901acd2011-04-26 07:26:08 +00007152#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007153 indices += min_t(unsigned int, num_possible_cpus(),
7154 IXGBE_MAX_FCOE_INDICES);
7155#endif
John Fastabend3f4a6f02012-06-05 05:58:52 +00007156 indices = max_t(unsigned int, dcb_max, indices);
John Fastabendc85a2612010-02-25 23:15:21 +00007157 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007158 if (!netdev) {
7159 err = -ENOMEM;
7160 goto err_alloc_etherdev;
7161 }
7162
Auke Kok9a799d72007-09-15 14:07:45 -07007163 SET_NETDEV_DEV(netdev, &pdev->dev);
7164
Auke Kok9a799d72007-09-15 14:07:45 -07007165 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007166 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007167
7168 adapter->netdev = netdev;
7169 adapter->pdev = pdev;
7170 hw = &adapter->hw;
7171 hw->back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00007172 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kok9a799d72007-09-15 14:07:45 -07007173
Jeff Kirsher05857982008-09-11 19:57:00 -07007174 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007175 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007176 if (!hw->hw_addr) {
7177 err = -EIO;
7178 goto err_ioremap;
7179 }
7180
7181 for (i = 1; i <= 5; i++) {
7182 if (pci_resource_len(pdev, i) == 0)
7183 continue;
7184 }
7185
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007186 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007187 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007188 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007189 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007190
Auke Kok9a799d72007-09-15 14:07:45 -07007191 adapter->bd_number = cards_found;
7192
Auke Kok9a799d72007-09-15 14:07:45 -07007193 /* Setup hw api */
7194 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007195 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007196
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007197 /* EEPROM */
7198 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7199 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7200 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7201 if (!(eec & (1 << 8)))
7202 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7203
7204 /* PHY */
7205 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007206 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007207 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7208 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7209 hw->phy.mdio.mmds = 0;
7210 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7211 hw->phy.mdio.dev = netdev;
7212 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7213 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007214
Don Skidmore8ca783a2009-05-26 20:40:47 -07007215 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007216
7217 /* setup the private structure */
7218 err = ixgbe_sw_init(adapter);
7219 if (err)
7220 goto err_sw_init;
7221
Don Skidmoree86bff02010-02-11 04:14:08 +00007222 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007223 switch (adapter->hw.mac.type) {
7224 case ixgbe_mac_82599EB:
7225 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007226 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007227 break;
7228 default:
7229 break;
7230 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007231
Don Skidmorebf069c92009-05-07 10:39:54 +00007232 /*
7233 * If there is a fan on this device and it has failed log the
7234 * failure.
7235 */
7236 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7237 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7238 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007239 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007240 }
7241
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00007242 if (allow_unsupported_sfp)
7243 hw->allow_unsupported_sfp = allow_unsupported_sfp;
7244
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007245 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007246 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007247 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007248 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007249 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7250 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007251 err = 0;
7252 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007253 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007254 "module type was detected.\n");
7255 e_dev_err("Reload the driver after installing a supported "
7256 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007257 goto err_sw_init;
7258 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007259 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007260 goto err_sw_init;
7261 }
7262
Alexander Duyck99d74482012-05-09 08:09:25 +00007263#ifdef CONFIG_PCI_IOV
7264 ixgbe_enable_sriov(adapter, ii);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007265
Alexander Duyck99d74482012-05-09 08:09:25 +00007266#endif
Emil Tantilov396e7992010-07-01 20:05:12 +00007267 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007268 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00007269 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00007270 NETIF_F_HW_VLAN_TX |
7271 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00007272 NETIF_F_HW_VLAN_FILTER |
7273 NETIF_F_TSO |
7274 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00007275 NETIF_F_RXHASH |
7276 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007277
Don Skidmore082757a2011-07-21 05:55:00 +00007278 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007279
Don Skidmore58be7662011-04-12 09:42:11 +00007280 switch (adapter->hw.mac.type) {
7281 case ixgbe_mac_82599EB:
7282 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007283 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00007284 netdev->hw_features |= NETIF_F_SCTP_CSUM |
7285 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00007286 break;
7287 default:
7288 break;
7289 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007290
Ben Greear3f2d1c02012-03-08 08:28:41 +00007291 netdev->hw_features |= NETIF_F_RXALL;
7292
Jeff Kirsherad31c402008-06-05 04:05:30 -07007293 netdev->vlan_features |= NETIF_F_TSO;
7294 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007295 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007296 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007297 netdev->vlan_features |= NETIF_F_SG;
7298
Jiri Pirko01789342011-08-16 06:29:00 +00007299 netdev->priv_flags |= IFF_UNICAST_FLT;
Ben Greearf43f3132012-03-06 09:42:04 +00007300 netdev->priv_flags |= IFF_SUPP_NOFCS;
Jiri Pirko01789342011-08-16 06:29:00 +00007301
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007302#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007303 netdev->dcbnl_ops = &dcbnl_ops;
7304#endif
7305
Yi Zoueacd73f2009-05-13 13:11:06 +00007306#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007307 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007308 if (hw->mac.ops.get_device_caps) {
7309 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007310 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7311 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007312 }
Alexander Duyck7c8ae652012-05-05 05:32:47 +00007313
7314 adapter->ring_feature[RING_F_FCOE].limit = IXGBE_FCRETA_SIZE;
7315
Alexander Duycka58915c2012-05-25 06:38:18 +00007316 netdev->features |= NETIF_F_FSO |
7317 NETIF_F_FCOE_CRC;
7318
Alexander Duyck7c8ae652012-05-05 05:32:47 +00007319 netdev->vlan_features |= NETIF_F_FSO |
7320 NETIF_F_FCOE_CRC |
7321 NETIF_F_FCOE_MTU;
Yi Zou5e09d7f2010-07-19 13:59:52 +00007322 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007323#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007324 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007325 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007326 netdev->vlan_features |= NETIF_F_HIGHDMA;
7327 }
Auke Kok9a799d72007-09-15 14:07:45 -07007328
Don Skidmore082757a2011-07-21 05:55:00 +00007329 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
7330 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007331 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007332 netdev->features |= NETIF_F_LRO;
7333
Auke Kok9a799d72007-09-15 14:07:45 -07007334 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007335 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007336 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007337 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007338 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007339 }
7340
7341 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7342 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7343
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007344 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007345 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007346 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007347 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007348 }
7349
Alexander Duyck70864002011-04-27 09:13:56 +00007350 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
Alexander Duyck581330b2012-02-08 07:51:47 +00007351 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007352
Alexander Duyck70864002011-04-27 09:13:56 +00007353 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7354 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007355
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007356 err = ixgbe_init_interrupt_scheme(adapter);
7357 if (err)
7358 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007359
Jacob Keller8e2813f2012-04-21 06:05:40 +00007360 /* WOL not supported for all devices */
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007361 adapter->wol = 0;
Jacob Keller8e2813f2012-04-21 06:05:40 +00007362 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
7363 if (ixgbe_wol_supported(adapter, pdev->device, pdev->subsystem_device))
Andy Gospodarek9417c462011-07-16 07:31:33 +00007364 adapter->wol = IXGBE_WUFC_MAG;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007365
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007366 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7367
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007368#ifdef CONFIG_IXGBE_PTP
7369 ixgbe_ptp_init(adapter);
7370#endif /* CONFIG_IXGBE_PTP*/
7371
Emil Tantilov15e52092011-09-29 05:01:29 +00007372 /* save off EEPROM version number */
7373 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
7374 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
7375
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007376 /* pick up the PCI bus settings for reporting later */
7377 hw->mac.ops.get_bus_info(hw);
7378
Auke Kok9a799d72007-09-15 14:07:45 -07007379 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007380 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007381 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7382 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007383 "Unknown"),
7384 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7385 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7386 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7387 "Unknown"),
7388 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007389
7390 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7391 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007392 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007393 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007394 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007395 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007396 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007397 else
Don Skidmore289700db2010-12-03 03:32:58 +00007398 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7399 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007400
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007401 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007402 e_dev_warn("PCI-Express bandwidth available for this card is "
7403 "not sufficient for optimal performance.\n");
7404 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7405 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007406 }
7407
Auke Kok9a799d72007-09-15 14:07:45 -07007408 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007409 err = hw->mac.ops.start_hw(hw);
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007410 if (err == IXGBE_ERR_EEPROM_VERSION) {
7411 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007412 e_dev_warn("This device is a pre-production adapter/LOM. "
7413 "Please be aware there may be issues associated "
7414 "with your hardware. If you are experiencing "
7415 "problems please contact your Intel or hardware "
7416 "representative who provided you with this "
7417 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007418 }
Auke Kok9a799d72007-09-15 14:07:45 -07007419 strcpy(netdev->name, "eth%d");
7420 err = register_netdev(netdev);
7421 if (err)
7422 goto err_register;
7423
Emil Tantilov93d3ce82011-10-19 07:59:55 +00007424 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7425 if (hw->mac.ops.disable_tx_laser &&
7426 ((hw->phy.multispeed_fiber) ||
7427 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
7428 (hw->mac.type == ixgbe_mac_82599EB))))
7429 hw->mac.ops.disable_tx_laser(hw);
7430
Jesse Brandeburg54386462009-04-17 20:44:27 +00007431 /* carrier off reporting is important to ethtool even BEFORE open */
7432 netif_carrier_off(netdev);
7433
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007434#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007435 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007436 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007437 ixgbe_setup_dca(adapter);
7438 }
7439#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007440 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007441 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007442 for (i = 0; i < adapter->num_vfs; i++)
7443 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7444 }
7445
Jacob Keller2466dd92011-09-08 03:50:54 +00007446 /* firmware requires driver version to be 0xFFFFFFFF
7447 * since os does not support feature
7448 */
Emil Tantilov9612de92011-05-07 07:40:20 +00007449 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00007450 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
7451 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00007452
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007453 /* add san mac addr to netdev */
7454 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007455
Neerav Parikhea818752012-01-04 20:23:40 +00007456 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07007457 cards_found++;
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007458
Don Skidmore12109822012-05-04 06:07:08 +00007459#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007460 if (ixgbe_sysfs_init(adapter))
7461 e_err(probe, "failed to allocate sysfs resources\n");
Don Skidmore12109822012-05-04 06:07:08 +00007462#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007463
Auke Kok9a799d72007-09-15 14:07:45 -07007464 return 0;
7465
7466err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007467 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007468 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007469err_sw_init:
Alexander Duyck99d74482012-05-09 08:09:25 +00007470 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007471 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007472 iounmap(hw->hw_addr);
7473err_ioremap:
7474 free_netdev(netdev);
7475err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007476 pci_release_selected_regions(pdev,
7477 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007478err_pci_reg:
7479err_dma:
7480 pci_disable_device(pdev);
7481 return err;
7482}
7483
7484/**
7485 * ixgbe_remove - Device Removal Routine
7486 * @pdev: PCI device information struct
7487 *
7488 * ixgbe_remove is called by the PCI subsystem to alert the driver
7489 * that it should release a PCI device. The could be caused by a
7490 * Hot-Plug event, or because the driver is going to be removed from
7491 * memory.
7492 **/
7493static void __devexit ixgbe_remove(struct pci_dev *pdev)
7494{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007495 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7496 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007497
7498 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007499 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007500
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007501#ifdef CONFIG_IXGBE_PTP
7502 ixgbe_ptp_stop(adapter);
7503#endif
7504
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007505#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007506 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7507 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7508 dca_remove_requester(&pdev->dev);
7509 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7510 }
7511
7512#endif
Don Skidmore12109822012-05-04 06:07:08 +00007513#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007514 ixgbe_sysfs_exit(adapter);
Don Skidmore12109822012-05-04 06:07:08 +00007515#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007516
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007517 /* remove the added san mac */
7518 ixgbe_del_sanmac_netdev(netdev);
7519
Donald Skidmorec4900be2008-11-20 21:11:42 -08007520 if (netdev->reg_state == NETREG_REGISTERED)
7521 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007522
Alexander Duyck92971272012-05-23 02:58:40 +00007523 ixgbe_disable_sriov(adapter);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007524
Alexander Duyck7a921c92009-05-06 10:43:28 +00007525 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007526
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007527 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007528
Alexander Duyck2b1588c2012-03-17 02:39:16 +00007529#ifdef CONFIG_DCB
7530 kfree(adapter->ixgbe_ieee_pfc);
7531 kfree(adapter->ixgbe_ieee_ets);
7532
7533#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007534 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007535 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007536 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007537
Emil Tantilov849c4542010-06-03 16:53:41 +00007538 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007539
Auke Kok9a799d72007-09-15 14:07:45 -07007540 free_netdev(netdev);
7541
Frans Pop19d5afd2009-10-02 10:04:12 -07007542 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007543
Auke Kok9a799d72007-09-15 14:07:45 -07007544 pci_disable_device(pdev);
7545}
7546
7547/**
7548 * ixgbe_io_error_detected - called when PCI error is detected
7549 * @pdev: Pointer to PCI device
7550 * @state: The current pci connection state
7551 *
7552 * This function is called after a PCI bus error affecting
7553 * this device has been detected.
7554 */
7555static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007556 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007557{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007558 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7559 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007560
Greg Rose83c61fa2011-09-07 05:59:35 +00007561#ifdef CONFIG_PCI_IOV
7562 struct pci_dev *bdev, *vfdev;
7563 u32 dw0, dw1, dw2, dw3;
7564 int vf, pos;
7565 u16 req_id, pf_func;
7566
7567 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
7568 adapter->num_vfs == 0)
7569 goto skip_bad_vf_detection;
7570
7571 bdev = pdev->bus->self;
7572 while (bdev && (bdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT))
7573 bdev = bdev->bus->self;
7574
7575 if (!bdev)
7576 goto skip_bad_vf_detection;
7577
7578 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
7579 if (!pos)
7580 goto skip_bad_vf_detection;
7581
7582 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
7583 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
7584 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
7585 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
7586
7587 req_id = dw1 >> 16;
7588 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
7589 if (!(req_id & 0x0080))
7590 goto skip_bad_vf_detection;
7591
7592 pf_func = req_id & 0x01;
7593 if ((pf_func & 1) == (pdev->devfn & 1)) {
7594 unsigned int device_id;
7595
7596 vf = (req_id & 0x7F) >> 1;
7597 e_dev_err("VF %d has caused a PCIe error\n", vf);
7598 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
7599 "%8.8x\tdw3: %8.8x\n",
7600 dw0, dw1, dw2, dw3);
7601 switch (adapter->hw.mac.type) {
7602 case ixgbe_mac_82599EB:
7603 device_id = IXGBE_82599_VF_DEVICE_ID;
7604 break;
7605 case ixgbe_mac_X540:
7606 device_id = IXGBE_X540_VF_DEVICE_ID;
7607 break;
7608 default:
7609 device_id = 0;
7610 break;
7611 }
7612
7613 /* Find the pci device of the offending VF */
Jon Mason36e90312012-07-19 21:02:09 +00007614 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, device_id, NULL);
Greg Rose83c61fa2011-09-07 05:59:35 +00007615 while (vfdev) {
7616 if (vfdev->devfn == (req_id & 0xFF))
7617 break;
Jon Mason36e90312012-07-19 21:02:09 +00007618 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Greg Rose83c61fa2011-09-07 05:59:35 +00007619 device_id, vfdev);
7620 }
7621 /*
7622 * There's a slim chance the VF could have been hot plugged,
7623 * so if it is no longer present we don't need to issue the
7624 * VFLR. Just clean up the AER in that case.
7625 */
7626 if (vfdev) {
7627 e_dev_err("Issuing VFLR to VF %d\n", vf);
7628 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
7629 }
7630
7631 pci_cleanup_aer_uncorrect_error_status(pdev);
7632 }
7633
7634 /*
7635 * Even though the error may have occurred on the other port
7636 * we still need to increment the vf error reference count for
7637 * both ports because the I/O resume function will be called
7638 * for both of them.
7639 */
7640 adapter->vferr_refcount++;
7641
7642 return PCI_ERS_RESULT_RECOVERED;
7643
7644skip_bad_vf_detection:
7645#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07007646 netif_device_detach(netdev);
7647
Breno Leitao3044b8d2009-05-06 10:44:26 +00007648 if (state == pci_channel_io_perm_failure)
7649 return PCI_ERS_RESULT_DISCONNECT;
7650
Auke Kok9a799d72007-09-15 14:07:45 -07007651 if (netif_running(netdev))
7652 ixgbe_down(adapter);
7653 pci_disable_device(pdev);
7654
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007655 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007656 return PCI_ERS_RESULT_NEED_RESET;
7657}
7658
7659/**
7660 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7661 * @pdev: Pointer to PCI device
7662 *
7663 * Restart the card from scratch, as if from a cold-boot.
7664 */
7665static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7666{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007667 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007668 pci_ers_result_t result;
7669 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007670
gouji-new9ce77662009-05-06 10:44:45 +00007671 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007672 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007673 result = PCI_ERS_RESULT_DISCONNECT;
7674 } else {
7675 pci_set_master(pdev);
7676 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007677 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007678
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007679 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007680
7681 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007682 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007683 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007684 }
Auke Kok9a799d72007-09-15 14:07:45 -07007685
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007686 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7687 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007688 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7689 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007690 /* non-fatal, continue */
7691 }
Auke Kok9a799d72007-09-15 14:07:45 -07007692
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007693 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007694}
7695
7696/**
7697 * ixgbe_io_resume - called when traffic can start flowing again.
7698 * @pdev: Pointer to PCI device
7699 *
7700 * This callback is called when the error recovery driver tells us that
7701 * its OK to resume normal operation.
7702 */
7703static void ixgbe_io_resume(struct pci_dev *pdev)
7704{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007705 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7706 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007707
Greg Rose83c61fa2011-09-07 05:59:35 +00007708#ifdef CONFIG_PCI_IOV
7709 if (adapter->vferr_refcount) {
7710 e_info(drv, "Resuming after VF err\n");
7711 adapter->vferr_refcount--;
7712 return;
7713 }
7714
7715#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00007716 if (netif_running(netdev))
7717 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007718
7719 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007720}
7721
7722static struct pci_error_handlers ixgbe_err_handler = {
7723 .error_detected = ixgbe_io_error_detected,
7724 .slot_reset = ixgbe_io_slot_reset,
7725 .resume = ixgbe_io_resume,
7726};
7727
7728static struct pci_driver ixgbe_driver = {
7729 .name = ixgbe_driver_name,
7730 .id_table = ixgbe_pci_tbl,
7731 .probe = ixgbe_probe,
7732 .remove = __devexit_p(ixgbe_remove),
7733#ifdef CONFIG_PM
7734 .suspend = ixgbe_suspend,
7735 .resume = ixgbe_resume,
7736#endif
7737 .shutdown = ixgbe_shutdown,
7738 .err_handler = &ixgbe_err_handler
7739};
7740
7741/**
7742 * ixgbe_init_module - Driver Registration Routine
7743 *
7744 * ixgbe_init_module is the first routine called when the driver is
7745 * loaded. All it does is register with the PCI subsystem.
7746 **/
7747static int __init ixgbe_init_module(void)
7748{
7749 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007750 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007751 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007752
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);
Eric Dumazet1a515022010-11-16 19:26:42 -08007775 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007776}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007777
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007778#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007779static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007780 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007781{
7782 int ret_val;
7783
7784 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007785 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007786
7787 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7788}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007789
Alexander Duyckb4533682009-03-31 21:32:42 +00007790#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007791
Auke Kok9a799d72007-09-15 14:07:45 -07007792module_exit(ixgbe_exit_module);
7793
7794/* ixgbe_main.c */