blob: 9305e9a5a7614244245962fa33ac6da140c09260 [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 Brandeburg3a5810732008-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/**
1461 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1462 * @rx_ring: rx descriptor ring packet is being transacted on
1463 * @rx_desc: pointer to the EOP Rx descriptor
1464 * @skb: pointer to current skb being fixed
1465 *
1466 * Check for corrupted packet headers caused by senders on the local L2
1467 * embedded NIC switch not setting up their Tx Descriptors right. These
1468 * should be very rare.
1469 *
1470 * Also address the case where we are pulling data in on pages only
1471 * and as such no data is present in the skb header.
1472 *
1473 * In addition if skb is not at least 60 bytes we need to pad it so that
1474 * it is large enough to qualify as a valid Ethernet frame.
1475 *
1476 * Returns true if an error was encountered and skb was freed.
1477 **/
1478static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1479 union ixgbe_adv_rx_desc *rx_desc,
1480 struct sk_buff *skb)
1481{
1482 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1483 struct net_device *netdev = rx_ring->netdev;
1484 unsigned char *va;
1485 unsigned int pull_len;
1486
1487 /* if the page was released unmap it, else just sync our portion */
1488 if (unlikely(IXGBE_CB(skb)->page_released)) {
1489 dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma,
1490 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
1491 IXGBE_CB(skb)->page_released = false;
1492 } else {
1493 dma_sync_single_range_for_cpu(rx_ring->dev,
1494 IXGBE_CB(skb)->dma,
1495 frag->page_offset,
1496 ixgbe_rx_bufsz(rx_ring),
1497 DMA_FROM_DEVICE);
1498 }
1499 IXGBE_CB(skb)->dma = 0;
1500
1501 /* verify that the packet does not have any known errors */
1502 if (unlikely(ixgbe_test_staterr(rx_desc,
1503 IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1504 !(netdev->features & NETIF_F_RXALL))) {
1505 dev_kfree_skb_any(skb);
1506 return true;
1507 }
1508
1509 /*
1510 * it is valid to use page_address instead of kmap since we are
1511 * working with pages allocated out of the lomem pool per
1512 * alloc_page(GFP_ATOMIC)
1513 */
1514 va = skb_frag_address(frag);
1515
1516 /*
1517 * we need the header to contain the greater of either ETH_HLEN or
1518 * 60 bytes if the skb->len is less than 60 for skb_pad.
1519 */
1520 pull_len = skb_frag_size(frag);
Alexander Duyck252562c2012-05-24 01:59:27 +00001521 if (pull_len > IXGBE_RX_HDR_SIZE)
1522 pull_len = ixgbe_get_headlen(va, IXGBE_RX_HDR_SIZE);
Alexander Duyckf8003262012-03-03 02:35:52 +00001523
1524 /* align pull length to size of long to optimize memcpy performance */
1525 skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1526
1527 /* update all of the pointers */
1528 skb_frag_size_sub(frag, pull_len);
1529 frag->page_offset += pull_len;
1530 skb->data_len -= pull_len;
1531 skb->tail += pull_len;
1532
1533 /*
1534 * if we sucked the frag empty then we should free it,
1535 * if there are other frags here something is screwed up in hardware
1536 */
1537 if (skb_frag_size(frag) == 0) {
1538 BUG_ON(skb_shinfo(skb)->nr_frags != 1);
1539 skb_shinfo(skb)->nr_frags = 0;
1540 __skb_frag_unref(frag);
1541 skb->truesize -= ixgbe_rx_bufsz(rx_ring);
1542 }
1543
Alexander Duyck57efd442012-06-25 21:54:46 +00001544#ifdef IXGBE_FCOE
1545 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1546 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc))
1547 return false;
1548
1549#endif
Alexander Duyckf8003262012-03-03 02:35:52 +00001550 /* if skb_pad returns an error the skb was freed */
1551 if (unlikely(skb->len < 60)) {
1552 int pad_len = 60 - skb->len;
1553
1554 if (skb_pad(skb, pad_len))
1555 return true;
1556 __skb_put(skb, pad_len);
1557 }
1558
1559 return false;
1560}
1561
1562/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001563 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1564 * @rx_ring: rx descriptor ring to store buffers on
1565 * @old_buff: donor buffer to have page reused
1566 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001567 * Synchronizes page for reuse by the adapter
Alexander Duyckf8003262012-03-03 02:35:52 +00001568 **/
1569static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1570 struct ixgbe_rx_buffer *old_buff)
1571{
1572 struct ixgbe_rx_buffer *new_buff;
1573 u16 nta = rx_ring->next_to_alloc;
Alexander Duyckf8003262012-03-03 02:35:52 +00001574
1575 new_buff = &rx_ring->rx_buffer_info[nta];
1576
1577 /* update, and store next to alloc */
1578 nta++;
1579 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1580
1581 /* transfer page from old buffer to new buffer */
1582 new_buff->page = old_buff->page;
1583 new_buff->dma = old_buff->dma;
Alexander Duyck0549ae22012-07-20 08:08:18 +00001584 new_buff->page_offset = old_buff->page_offset;
Alexander Duyckf8003262012-03-03 02:35:52 +00001585
1586 /* sync the buffer for use by the device */
1587 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001588 new_buff->page_offset,
1589 ixgbe_rx_bufsz(rx_ring),
Alexander Duyckf8003262012-03-03 02:35:52 +00001590 DMA_FROM_DEVICE);
Alexander Duyckf8003262012-03-03 02:35:52 +00001591}
1592
1593/**
1594 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1595 * @rx_ring: rx descriptor ring to transact packets on
1596 * @rx_buffer: buffer containing page to add
1597 * @rx_desc: descriptor containing length of buffer written by hardware
1598 * @skb: sk_buff to place the data into
1599 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001600 * This function will add the data contained in rx_buffer->page to the skb.
1601 * This is done either through a direct copy if the data in the buffer is
1602 * less than the skb header size, otherwise it will just attach the page as
1603 * a frag to the skb.
1604 *
1605 * The function will then update the page offset if necessary and return
1606 * true if the buffer can be reused by the adapter.
Alexander Duyckf8003262012-03-03 02:35:52 +00001607 **/
Alexander Duyck0549ae22012-07-20 08:08:18 +00001608static bool ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
Alexander Duyckf8003262012-03-03 02:35:52 +00001609 struct ixgbe_rx_buffer *rx_buffer,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001610 union ixgbe_adv_rx_desc *rx_desc,
1611 struct sk_buff *skb)
Alexander Duyckf8003262012-03-03 02:35:52 +00001612{
Alexander Duyck0549ae22012-07-20 08:08:18 +00001613 struct page *page = rx_buffer->page;
1614 unsigned int size = le16_to_cpu(rx_desc->wb.upper.length);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001615#if (PAGE_SIZE < 8192)
Alexander Duyck0549ae22012-07-20 08:08:18 +00001616 unsigned int truesize = ixgbe_rx_bufsz(rx_ring);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001617#else
1618 unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
1619 unsigned int last_offset = ixgbe_rx_pg_size(rx_ring) -
1620 ixgbe_rx_bufsz(rx_ring);
1621#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001622
1623 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
1624 rx_buffer->page_offset, size, truesize);
1625
Alexander Duyck09816fb2012-07-20 08:08:23 +00001626 /* avoid re-using remote pages */
1627 if (unlikely(page_to_nid(page) != numa_node_id()))
1628 return false;
1629
1630#if (PAGE_SIZE < 8192)
1631 /* if we are only owner of page we can reuse it */
1632 if (unlikely(page_count(page) != 1))
Alexander Duyck0549ae22012-07-20 08:08:18 +00001633 return false;
1634
1635 /* flip page offset to other buffer */
1636 rx_buffer->page_offset ^= truesize;
1637
Alexander Duyck09816fb2012-07-20 08:08:23 +00001638 /*
1639 * since we are the only owner of the page and we need to
1640 * increment it, just set the value to 2 in order to avoid
1641 * an unecessary locked operation
1642 */
1643 atomic_set(&page->_count, 2);
1644#else
1645 /* move offset up to the next cache line */
1646 rx_buffer->page_offset += truesize;
1647
1648 if (rx_buffer->page_offset > last_offset)
1649 return false;
1650
Alexander Duyck0549ae22012-07-20 08:08:18 +00001651 /* bump ref count on page before it is given to the stack */
1652 get_page(page);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001653#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001654
1655 return true;
Alexander Duyckf8003262012-03-03 02:35:52 +00001656}
1657
1658/**
1659 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
1660 * @q_vector: structure containing interrupt and ring information
1661 * @rx_ring: rx descriptor ring to transact packets on
1662 * @budget: Total limit on number of packets to process
1663 *
1664 * This function provides a "bounce buffer" approach to Rx interrupt
1665 * processing. The advantage to this is that on systems that have
1666 * expensive overhead for IOMMU access this provides a means of avoiding
1667 * it by maintaining the mapping of the page to the syste.
1668 *
1669 * Returns true if all work is completed without reaching budget
1670 **/
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001671static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001672 struct ixgbe_ring *rx_ring,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001673 int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001674{
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001675 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Ben Greear3f2d1c02012-03-08 08:28:41 +00001676#ifdef IXGBE_FCOE
Alexander Duyckf8003262012-03-03 02:35:52 +00001677 struct ixgbe_adapter *adapter = q_vector->adapter;
Yi Zou3d8fd382009-06-08 14:38:44 +00001678 int ddp_bytes = 0;
1679#endif /* IXGBE_FCOE */
Alexander Duyckf8003262012-03-03 02:35:52 +00001680 u16 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001681
Alexander Duyckf8003262012-03-03 02:35:52 +00001682 do {
1683 struct ixgbe_rx_buffer *rx_buffer;
1684 union ixgbe_adv_rx_desc *rx_desc;
1685 struct sk_buff *skb;
1686 struct page *page;
1687 u16 ntc;
Auke Kok9a799d72007-09-15 14:07:45 -07001688
Alexander Duyckf8003262012-03-03 02:35:52 +00001689 /* return some buffers to hardware, one at a time is too slow */
1690 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
1691 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1692 cleaned_count = 0;
1693 }
Auke Kok9a799d72007-09-15 14:07:45 -07001694
Alexander Duyckf8003262012-03-03 02:35:52 +00001695 ntc = rx_ring->next_to_clean;
1696 rx_desc = IXGBE_RX_DESC(rx_ring, ntc);
1697 rx_buffer = &rx_ring->rx_buffer_info[ntc];
Auke Kok9a799d72007-09-15 14:07:45 -07001698
Alexander Duyckf8003262012-03-03 02:35:52 +00001699 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD))
1700 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001701
Alexander Duyckf8003262012-03-03 02:35:52 +00001702 /*
1703 * This memory barrier is needed to keep us from reading
1704 * any other fields out of the rx_desc until we know the
1705 * RXD_STAT_DD bit is set
1706 */
1707 rmb();
Auke Kok9a799d72007-09-15 14:07:45 -07001708
Alexander Duyckf8003262012-03-03 02:35:52 +00001709 page = rx_buffer->page;
1710 prefetchw(page);
1711
1712 skb = rx_buffer->skb;
1713
1714 if (likely(!skb)) {
1715 void *page_addr = page_address(page) +
1716 rx_buffer->page_offset;
1717
1718 /* prefetch first cache line of first page */
1719 prefetch(page_addr);
1720#if L1_CACHE_BYTES < 128
1721 prefetch(page_addr + L1_CACHE_BYTES);
1722#endif
1723
1724 /* allocate a skb to store the frags */
1725 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1726 IXGBE_RX_HDR_SIZE);
1727 if (unlikely(!skb)) {
1728 rx_ring->rx_stats.alloc_rx_buff_failed++;
1729 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001730 }
1731
Alexander Duyckf8003262012-03-03 02:35:52 +00001732 /*
1733 * we will be copying header into skb->data in
1734 * pskb_may_pull so it is in our interest to prefetch
1735 * it now to avoid a possible cache miss
1736 */
1737 prefetchw(skb->data);
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001738
1739 /*
1740 * Delay unmapping of the first packet. It carries the
1741 * header information, HW may still access the header
Alexander Duyckf8003262012-03-03 02:35:52 +00001742 * after the writeback. Only unmap it when EOP is
1743 * reached
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001744 */
Alexander Duyckf8003262012-03-03 02:35:52 +00001745 IXGBE_CB(skb)->dma = rx_buffer->dma;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001746 } else {
Alexander Duyckf8003262012-03-03 02:35:52 +00001747 /* we are reusing so sync this buffer for CPU use */
1748 dma_sync_single_range_for_cpu(rx_ring->dev,
1749 rx_buffer->dma,
1750 rx_buffer->page_offset,
1751 ixgbe_rx_bufsz(rx_ring),
1752 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001753 }
1754
Alexander Duyckf8003262012-03-03 02:35:52 +00001755 /* pull page into skb */
Alexander Duyck0549ae22012-07-20 08:08:18 +00001756 if (ixgbe_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
Alexander Duyckf8003262012-03-03 02:35:52 +00001757 /* hand second half of page back to the ring */
1758 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
1759 } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) {
1760 /* the page has been released from the ring */
1761 IXGBE_CB(skb)->page_released = true;
1762 } else {
1763 /* we are not reusing the buffer so unmap it */
1764 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
1765 ixgbe_rx_pg_size(rx_ring),
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001766 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001767 }
1768
Alexander Duyckf8003262012-03-03 02:35:52 +00001769 /* clear contents of buffer_info */
1770 rx_buffer->skb = NULL;
1771 rx_buffer->dma = 0;
1772 rx_buffer->page = NULL;
1773
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001774 ixgbe_get_rsc_cnt(rx_ring, rx_desc, skb);
1775
Auke Kok9a799d72007-09-15 14:07:45 -07001776 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001777
Alexander Duyckf8003262012-03-03 02:35:52 +00001778 /* place incomplete frames back on ring for completion */
1779 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
1780 continue;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001781
Alexander Duyckf8003262012-03-03 02:35:52 +00001782 /* verify the packet layout is correct */
1783 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
1784 continue;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001785
1786 /* probably a little skewed due to removing CRC */
1787 total_rx_bytes += skb->len;
1788 total_rx_packets++;
1789
Alexander Duyck8a0da212012-01-31 02:59:49 +00001790 /* populate checksum, timestamp, VLAN, and protocol */
1791 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
1792
Yi Zou332d4a72009-05-13 13:11:53 +00001793#ifdef IXGBE_FCOE
1794 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyck57efd442012-06-25 21:54:46 +00001795 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001796 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
David S. Miller823dcd22011-08-20 10:39:12 -07001797 if (!ddp_bytes) {
1798 dev_kfree_skb_any(skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001799 continue;
David S. Miller823dcd22011-08-20 10:39:12 -07001800 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001801 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001802
Yi Zou332d4a72009-05-13 13:11:53 +00001803#endif /* IXGBE_FCOE */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001804 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001805
Alexander Duyckf8003262012-03-03 02:35:52 +00001806 /* update budget accounting */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001807 budget--;
Alexander Duyckf8003262012-03-03 02:35:52 +00001808 } while (likely(budget));
Auke Kok9a799d72007-09-15 14:07:45 -07001809
Yi Zou3d8fd382009-06-08 14:38:44 +00001810#ifdef IXGBE_FCOE
1811 /* include DDPed FCoE data */
1812 if (ddp_bytes > 0) {
1813 unsigned int mss;
1814
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001815 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001816 sizeof(struct fc_frame_header) -
1817 sizeof(struct fcoe_crc_eof);
1818 if (mss > 512)
1819 mss &= ~511;
1820 total_rx_bytes += ddp_bytes;
1821 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1822 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001823
Alexander Duyckf8003262012-03-03 02:35:52 +00001824#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001825 u64_stats_update_begin(&rx_ring->syncp);
1826 rx_ring->stats.packets += total_rx_packets;
1827 rx_ring->stats.bytes += total_rx_bytes;
1828 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001829 q_vector->rx.total_packets += total_rx_packets;
1830 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001831
Alexander Duyckf8003262012-03-03 02:35:52 +00001832 if (cleaned_count)
1833 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1834
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001835 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001836}
1837
Auke Kok9a799d72007-09-15 14:07:45 -07001838/**
1839 * ixgbe_configure_msix - Configure MSI-X hardware
1840 * @adapter: board private structure
1841 *
1842 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1843 * interrupts.
1844 **/
1845static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1846{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001847 struct ixgbe_q_vector *q_vector;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001848 int v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001849 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001850
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00001851 /* Populate MSIX to EITR Select */
1852 if (adapter->num_vfs > 32) {
1853 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
1854 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
1855 }
1856
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001857 /*
1858 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001859 * corresponding register.
1860 */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001861 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001862 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001863 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001864
Alexander Duycka5579282012-02-08 07:50:04 +00001865 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001866 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001867
Alexander Duycka5579282012-02-08 07:50:04 +00001868 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001869 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001870
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001871 if (q_vector->tx.ring && !q_vector->rx.ring) {
1872 /* tx only vector */
1873 if (adapter->tx_itr_setting == 1)
1874 q_vector->itr = IXGBE_10K_ITR;
1875 else
1876 q_vector->itr = adapter->tx_itr_setting;
1877 } else {
1878 /* rx or rx/tx vector */
1879 if (adapter->rx_itr_setting == 1)
1880 q_vector->itr = IXGBE_20K_ITR;
1881 else
1882 q_vector->itr = adapter->rx_itr_setting;
1883 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001884
Alexander Duyckfe49f042009-06-04 16:00:09 +00001885 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001886 }
1887
Alexander Duyckbd508172010-11-16 19:27:03 -08001888 switch (adapter->hw.mac.type) {
1889 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001890 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001891 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001892 break;
1893 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001894 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001895 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001896 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08001897 default:
1898 break;
1899 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001900 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001901
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001902 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001903 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001904 mask &= ~(IXGBE_EIMS_OTHER |
1905 IXGBE_EIMS_MAILBOX |
1906 IXGBE_EIMS_LSC);
1907
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001908 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001909}
1910
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001911enum latency_range {
1912 lowest_latency = 0,
1913 low_latency = 1,
1914 bulk_latency = 2,
1915 latency_invalid = 255
1916};
1917
1918/**
1919 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00001920 * @q_vector: structure containing interrupt and ring information
1921 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001922 *
1923 * Stores a new ITR value based on packets and byte
1924 * counts during the last interrupt. The advantage of per interrupt
1925 * computation is faster updates and more accurate ITR for the current
1926 * traffic pattern. Constants in this function were computed
1927 * based on theoretical maximum wire speed and thresholds were set based
1928 * on testing data as well as attempting to minimize response time
1929 * while increasing bulk throughput.
1930 * this functionality is controlled by the InterruptThrottleRate module
1931 * parameter (see ixgbe_param.c)
1932 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00001933static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
1934 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001935{
Alexander Duyckbd198052011-06-11 01:45:08 +00001936 int bytes = ring_container->total_bytes;
1937 int packets = ring_container->total_packets;
1938 u32 timepassed_us;
Alexander Duyck621bd702012-02-08 07:50:20 +00001939 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00001940 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001941
1942 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00001943 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001944
1945 /* simple throttlerate management
Alexander Duyck621bd702012-02-08 07:50:20 +00001946 * 0-10MB/s lowest (100000 ints/s)
1947 * 10-20MB/s low (20000 ints/s)
1948 * 20-1249MB/s bulk (8000 ints/s)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001949 */
1950 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001951 timepassed_us = q_vector->itr >> 2;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001952 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1953
1954 switch (itr_setting) {
1955 case lowest_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00001956 if (bytes_perint > 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00001957 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001958 break;
1959 case low_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00001960 if (bytes_perint > 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00001961 itr_setting = bulk_latency;
Alexander Duyck621bd702012-02-08 07:50:20 +00001962 else if (bytes_perint <= 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00001963 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001964 break;
1965 case bulk_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00001966 if (bytes_perint <= 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00001967 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001968 break;
1969 }
1970
Alexander Duyckbd198052011-06-11 01:45:08 +00001971 /* clear work counters since we have the values we need */
1972 ring_container->total_bytes = 0;
1973 ring_container->total_packets = 0;
1974
1975 /* write updated itr to ring container */
1976 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001977}
1978
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001979/**
1980 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001981 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001982 *
1983 * This function is made to be called by ethtool and by the driver
1984 * when it needs to update EITR registers at runtime. Hardware
1985 * specific quirks/differences are taken care of here.
1986 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001987void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001988{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001989 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001990 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001991 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00001992 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001993
Alexander Duyckbd508172010-11-16 19:27:03 -08001994 switch (adapter->hw.mac.type) {
1995 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001996 /* must write high and low 16 bits to reset counter */
1997 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001998 break;
1999 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002000 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002001 /*
2002 * set the WDIS bit to not clear the timer bits and cause an
2003 * immediate assertion of the interrupt
2004 */
2005 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08002006 break;
2007 default:
2008 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002009 }
2010 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
2011}
2012
Alexander Duyckbd198052011-06-11 01:45:08 +00002013static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002014{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002015 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00002016 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002017
Alexander Duyckbd198052011-06-11 01:45:08 +00002018 ixgbe_update_itr(q_vector, &q_vector->tx);
2019 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002020
Alexander Duyck08c88332011-06-11 01:45:03 +00002021 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002022
2023 switch (current_itr) {
2024 /* counts and packets in update_itr are dependent on these numbers */
2025 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002026 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002027 break;
2028 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002029 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002030 break;
2031 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002032 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002033 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00002034 default:
2035 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002036 }
2037
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002038 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002039 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002040 new_itr = (10 * new_itr * q_vector->itr) /
2041 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002042
Alexander Duyckbd198052011-06-11 01:45:08 +00002043 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002044 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002045
2046 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002047 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002048}
2049
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002050/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00002051 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00002052 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002053 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00002054static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002055{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002056 struct ixgbe_hw *hw = &adapter->hw;
2057 u32 eicr = adapter->interrupt_event;
2058
Alexander Duyckf0f97782011-04-22 04:08:09 +00002059 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00002060 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002061
Alexander Duyckf0f97782011-04-22 04:08:09 +00002062 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2063 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2064 return;
2065
2066 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2067
Joe Perches7ca647b2010-09-07 21:35:40 +00002068 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002069 case IXGBE_DEV_ID_82599_T3_LOM:
2070 /*
2071 * Since the warning interrupt is for both ports
2072 * we don't have to check if:
2073 * - This interrupt wasn't for our port.
2074 * - We may have missed the interrupt so always have to
2075 * check if we got a LSC
2076 */
2077 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
2078 !(eicr & IXGBE_EICR_LSC))
2079 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002080
Alexander Duyckf0f97782011-04-22 04:08:09 +00002081 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
2082 u32 autoneg;
2083 bool link_up = false;
2084
Joe Perches7ca647b2010-09-07 21:35:40 +00002085 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
2086
Alexander Duyckf0f97782011-04-22 04:08:09 +00002087 if (link_up)
2088 return;
2089 }
2090
2091 /* Check if this is not due to overtemp */
2092 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2093 return;
2094
2095 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00002096 default:
2097 if (!(eicr & IXGBE_EICR_GPI_SDP0))
2098 return;
2099 break;
2100 }
2101 e_crit(drv,
2102 "Network adapter has been stopped because it has over heated. "
2103 "Restart the computer. If the problem persists, "
2104 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00002105
2106 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002107}
2108
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002109static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2110{
2111 struct ixgbe_hw *hw = &adapter->hw;
2112
2113 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
2114 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002115 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002116 /* write to clear the interrupt */
2117 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
2118 }
2119}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002120
Jacob Keller4f51bf72011-08-20 04:49:45 +00002121static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2122{
2123 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2124 return;
2125
2126 switch (adapter->hw.mac.type) {
2127 case ixgbe_mac_82599EB:
2128 /*
2129 * Need to check link state so complete overtemp check
2130 * on service task
2131 */
2132 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
2133 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2134 adapter->interrupt_event = eicr;
2135 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2136 ixgbe_service_event_schedule(adapter);
2137 return;
2138 }
2139 return;
2140 case ixgbe_mac_X540:
2141 if (!(eicr & IXGBE_EICR_TS))
2142 return;
2143 break;
2144 default:
2145 return;
2146 }
2147
2148 e_crit(drv,
2149 "Network adapter has been stopped because it has over heated. "
2150 "Restart the computer. If the problem persists, "
2151 "power off the system and replace the adapter\n");
2152}
2153
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002154static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2155{
2156 struct ixgbe_hw *hw = &adapter->hw;
2157
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002158 if (eicr & IXGBE_EICR_GPI_SDP2) {
2159 /* Clear the interrupt */
2160 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002161 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2162 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2163 ixgbe_service_event_schedule(adapter);
2164 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002165 }
2166
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002167 if (eicr & IXGBE_EICR_GPI_SDP1) {
2168 /* Clear the interrupt */
2169 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002170 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2171 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2172 ixgbe_service_event_schedule(adapter);
2173 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002174 }
2175}
2176
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002177static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2178{
2179 struct ixgbe_hw *hw = &adapter->hw;
2180
2181 adapter->lsc_int++;
2182 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2183 adapter->link_check_timeout = jiffies;
2184 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2185 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002186 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002187 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002188 }
2189}
2190
Alexander Duyckfe49f042009-06-04 16:00:09 +00002191static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2192 u64 qmask)
2193{
2194 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002195 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002196
Alexander Duyckbd508172010-11-16 19:27:03 -08002197 switch (hw->mac.type) {
2198 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002199 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002200 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2201 break;
2202 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002203 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002204 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002205 if (mask)
2206 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002207 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002208 if (mask)
2209 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2210 break;
2211 default:
2212 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002213 }
2214 /* skip the flush */
2215}
2216
2217static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002218 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002219{
2220 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002221 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002222
Alexander Duyckbd508172010-11-16 19:27:03 -08002223 switch (hw->mac.type) {
2224 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002225 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002226 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2227 break;
2228 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002229 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002230 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002231 if (mask)
2232 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002233 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002234 if (mask)
2235 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2236 break;
2237 default:
2238 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002239 }
2240 /* skip the flush */
2241}
2242
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002243/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002244 * ixgbe_irq_enable - Enable default interrupt generation settings
2245 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002246 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002247static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2248 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002249{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002250 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002251
Alexander Duyck2c4af692011-07-15 07:29:55 +00002252 /* don't reenable LSC while waiting for link */
2253 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2254 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002255
Alexander Duyck2c4af692011-07-15 07:29:55 +00002256 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002257 switch (adapter->hw.mac.type) {
2258 case ixgbe_mac_82599EB:
2259 mask |= IXGBE_EIMS_GPI_SDP0;
2260 break;
2261 case ixgbe_mac_X540:
2262 mask |= IXGBE_EIMS_TS;
2263 break;
2264 default:
2265 break;
2266 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002267 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2268 mask |= IXGBE_EIMS_GPI_SDP1;
2269 switch (adapter->hw.mac.type) {
2270 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002271 mask |= IXGBE_EIMS_GPI_SDP1;
2272 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002273 case ixgbe_mac_X540:
2274 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002275 mask |= IXGBE_EIMS_MAILBOX;
2276 break;
2277 default:
2278 break;
2279 }
2280 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2281 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2282 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002283
Alexander Duyck2c4af692011-07-15 07:29:55 +00002284 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2285 if (queues)
2286 ixgbe_irq_enable_queues(adapter, ~0);
2287 if (flush)
2288 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002289}
2290
Alexander Duyck2c4af692011-07-15 07:29:55 +00002291static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002292{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002293 struct ixgbe_adapter *adapter = data;
2294 struct ixgbe_hw *hw = &adapter->hw;
2295 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002296
Alexander Duyck2c4af692011-07-15 07:29:55 +00002297 /*
2298 * Workaround for Silicon errata. Use clear-by-write instead
2299 * of clear-by-read. Reading with EICS will return the
2300 * interrupt causes without clearing, which later be done
2301 * with the write to EICR.
2302 */
2303 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
2304 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002305
Alexander Duyck2c4af692011-07-15 07:29:55 +00002306 if (eicr & IXGBE_EICR_LSC)
2307 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002308
Alexander Duyck2c4af692011-07-15 07:29:55 +00002309 if (eicr & IXGBE_EICR_MAILBOX)
2310 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002311
Alexander Duyck2c4af692011-07-15 07:29:55 +00002312 switch (hw->mac.type) {
2313 case ixgbe_mac_82599EB:
2314 case ixgbe_mac_X540:
2315 if (eicr & IXGBE_EICR_ECC)
2316 e_info(link, "Received unrecoverable ECC Err, please "
2317 "reboot\n");
2318 /* Handle Flow Director Full threshold interrupt */
2319 if (eicr & IXGBE_EICR_FLOW_DIR) {
2320 int reinit_count = 0;
2321 int i;
2322 for (i = 0; i < adapter->num_tx_queues; i++) {
2323 struct ixgbe_ring *ring = adapter->tx_ring[i];
2324 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2325 &ring->state))
2326 reinit_count++;
2327 }
2328 if (reinit_count) {
2329 /* no more flow director interrupts until after init */
2330 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2331 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2332 ixgbe_service_event_schedule(adapter);
2333 }
2334 }
2335 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002336 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002337 break;
2338 default:
2339 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002340 }
2341
Alexander Duyck2c4af692011-07-15 07:29:55 +00002342 ixgbe_check_fan_failure(adapter, eicr);
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002343#ifdef CONFIG_IXGBE_PTP
2344 ixgbe_ptp_check_pps_event(adapter, eicr);
2345#endif
Auke Kok9a799d72007-09-15 14:07:45 -07002346
Alexander Duyck2c4af692011-07-15 07:29:55 +00002347 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002348 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002349 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002350
Alexander Duyck2c4af692011-07-15 07:29:55 +00002351 return IRQ_HANDLED;
2352}
2353
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002354static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002355{
2356 struct ixgbe_q_vector *q_vector = data;
2357
Auke Kok9a799d72007-09-15 14:07:45 -07002358 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002359
2360 if (q_vector->rx.ring || q_vector->tx.ring)
2361 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002362
2363 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002364}
2365
Auke Kok9a799d72007-09-15 14:07:45 -07002366/**
Alexander Duyckeb01b972012-02-08 07:51:27 +00002367 * ixgbe_poll - NAPI Rx polling callback
2368 * @napi: structure for representing this polling device
2369 * @budget: how many packets driver is allowed to clean
2370 *
2371 * This function is used for legacy and MSI, NAPI mode
2372 **/
Jeff Kirsher8af3c332012-02-18 07:08:14 +00002373int ixgbe_poll(struct napi_struct *napi, int budget)
Alexander Duyckeb01b972012-02-08 07:51:27 +00002374{
2375 struct ixgbe_q_vector *q_vector =
2376 container_of(napi, struct ixgbe_q_vector, napi);
2377 struct ixgbe_adapter *adapter = q_vector->adapter;
2378 struct ixgbe_ring *ring;
2379 int per_ring_budget;
2380 bool clean_complete = true;
2381
2382#ifdef CONFIG_IXGBE_DCA
2383 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2384 ixgbe_update_dca(q_vector);
2385#endif
2386
2387 ixgbe_for_each_ring(ring, q_vector->tx)
2388 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
2389
2390 /* attempt to distribute budget to each queue fairly, but don't allow
2391 * the budget to go below 1 because we'll exit polling */
2392 if (q_vector->rx.count > 1)
2393 per_ring_budget = max(budget/q_vector->rx.count, 1);
2394 else
2395 per_ring_budget = budget;
2396
2397 ixgbe_for_each_ring(ring, q_vector->rx)
2398 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
2399 per_ring_budget);
2400
2401 /* If all work not completed, return budget and keep polling */
2402 if (!clean_complete)
2403 return budget;
2404
2405 /* all work done, exit the polling mode */
2406 napi_complete(napi);
2407 if (adapter->rx_itr_setting & 1)
2408 ixgbe_set_itr(q_vector);
2409 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2410 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
2411
2412 return 0;
2413}
2414
2415/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002416 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2417 * @adapter: board private structure
2418 *
2419 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2420 * interrupts from the kernel.
2421 **/
2422static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2423{
2424 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002425 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002426 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002427
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002428 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002429 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002430 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002431
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002432 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002433 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002434 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002435 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002436 } else if (q_vector->rx.ring) {
2437 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2438 "%s-%s-%d", netdev->name, "rx", ri++);
2439 } else if (q_vector->tx.ring) {
2440 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2441 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002442 } else {
2443 /* skip this unused q_vector */
2444 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002445 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002446 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2447 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002448 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002449 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002450 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002451 goto free_queue_irqs;
2452 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002453 /* If Flow Director is enabled, set interrupt affinity */
2454 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2455 /* assign the mask for this irq */
2456 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002457 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002458 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002459 }
2460
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002461 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002462 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002463 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002464 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002465 goto free_queue_irqs;
2466 }
2467
2468 return 0;
2469
2470free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002471 while (vector) {
2472 vector--;
2473 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2474 NULL);
2475 free_irq(adapter->msix_entries[vector].vector,
2476 adapter->q_vector[vector]);
2477 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002478 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2479 pci_disable_msix(adapter->pdev);
2480 kfree(adapter->msix_entries);
2481 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002482 return err;
2483}
2484
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002485/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002486 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002487 * @irq: interrupt number
2488 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002489 **/
2490static irqreturn_t ixgbe_intr(int irq, void *data)
2491{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002492 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002493 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002494 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002495 u32 eicr;
2496
Don Skidmore54037502009-02-21 15:42:56 -08002497 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002498 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002499 * before the read of EICR.
2500 */
2501 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2502
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002503 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002504 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002505 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002506 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002507 /*
2508 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002509 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002510 * have disabled interrupts due to EIAM
2511 * finish the workaround of silicon errata on 82598. Unmask
2512 * the interrupt that we masked before the EICR read.
2513 */
2514 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2515 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002516 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002517 }
Auke Kok9a799d72007-09-15 14:07:45 -07002518
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002519 if (eicr & IXGBE_EICR_LSC)
2520 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002521
Alexander Duyckbd508172010-11-16 19:27:03 -08002522 switch (hw->mac.type) {
2523 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002524 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002525 /* Fall through */
2526 case ixgbe_mac_X540:
2527 if (eicr & IXGBE_EICR_ECC)
2528 e_info(link, "Received unrecoverable ECC err, please "
2529 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002530 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002531 break;
2532 default:
2533 break;
2534 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002535
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002536 ixgbe_check_fan_failure(adapter, eicr);
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002537#ifdef CONFIG_IXGBE_PTP
2538 ixgbe_ptp_check_pps_event(adapter, eicr);
2539#endif
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002540
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00002541 /* would disable interrupts here but EIAM disabled it */
2542 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002543
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002544 /*
2545 * re-enable link(maybe) and non-queue interrupts, no flush.
2546 * ixgbe_poll will re-enable the queue interrupts
2547 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002548 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2549 ixgbe_irq_enable(adapter, false, false);
2550
Auke Kok9a799d72007-09-15 14:07:45 -07002551 return IRQ_HANDLED;
2552}
2553
2554/**
2555 * ixgbe_request_irq - initialize interrupts
2556 * @adapter: board private structure
2557 *
2558 * Attempts to configure interrupts using the best available
2559 * capabilities of the hardware and kernel.
2560 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002561static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002562{
2563 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002564 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002565
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002566 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002567 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002568 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002569 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002570 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002571 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002572 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002573 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002574
Alexander Duyckde88eee2012-02-08 07:49:59 +00002575 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002576 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002577
Auke Kok9a799d72007-09-15 14:07:45 -07002578 return err;
2579}
2580
2581static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2582{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002583 int vector;
Auke Kok9a799d72007-09-15 14:07:45 -07002584
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002585 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002586 free_irq(adapter->pdev->irq, adapter);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002587 return;
Auke Kok9a799d72007-09-15 14:07:45 -07002588 }
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002589
2590 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
2591 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
2592 struct msix_entry *entry = &adapter->msix_entries[vector];
2593
2594 /* free only the irqs that were actually requested */
2595 if (!q_vector->rx.ring && !q_vector->tx.ring)
2596 continue;
2597
2598 /* clear the affinity_mask in the IRQ descriptor */
2599 irq_set_affinity_hint(entry->vector, NULL);
2600
2601 free_irq(entry->vector, q_vector);
2602 }
2603
2604 free_irq(adapter->msix_entries[vector++].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002605}
2606
2607/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002608 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2609 * @adapter: board private structure
2610 **/
2611static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2612{
Alexander Duyckbd508172010-11-16 19:27:03 -08002613 switch (adapter->hw.mac.type) {
2614 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002615 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002616 break;
2617 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002618 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002619 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2620 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002621 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002622 break;
2623 default:
2624 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002625 }
2626 IXGBE_WRITE_FLUSH(&adapter->hw);
2627 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002628 int vector;
2629
2630 for (vector = 0; vector < adapter->num_q_vectors; vector++)
2631 synchronize_irq(adapter->msix_entries[vector].vector);
2632
2633 synchronize_irq(adapter->msix_entries[vector++].vector);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002634 } else {
2635 synchronize_irq(adapter->pdev->irq);
2636 }
2637}
2638
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002639/**
Auke Kok9a799d72007-09-15 14:07:45 -07002640 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2641 *
2642 **/
2643static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2644{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002645 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002646
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002647 /* rx/tx vector */
2648 if (adapter->rx_itr_setting == 1)
2649 q_vector->itr = IXGBE_20K_ITR;
2650 else
2651 q_vector->itr = adapter->rx_itr_setting;
2652
2653 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002654
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002655 ixgbe_set_ivar(adapter, 0, 0, 0);
2656 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002657
Emil Tantilov396e7992010-07-01 20:05:12 +00002658 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002659}
2660
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002661/**
2662 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2663 * @adapter: board private structure
2664 * @ring: structure containing ring specific data
2665 *
2666 * Configure the Tx descriptor ring after a reset.
2667 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002668void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2669 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002670{
2671 struct ixgbe_hw *hw = &adapter->hw;
2672 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002673 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002674 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002675 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002676
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002677 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002678 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002679 IXGBE_WRITE_FLUSH(hw);
2680
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002681 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002682 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002683 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2684 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2685 ring->count * sizeof(union ixgbe_adv_tx_desc));
2686 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2687 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002688 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002689
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002690 /*
2691 * set WTHRESH to encourage burst writeback, it should not be set
2692 * higher than 1 when ITR is 0 as it could cause false TX hangs
2693 *
2694 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2695 * to or less than the number of on chip descriptors, which is
2696 * currently 40.
2697 */
Alexander Duycke954b372012-02-08 07:49:38 +00002698 if (!ring->q_vector || (ring->q_vector->itr < 8))
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002699 txdctl |= (1 << 16); /* WTHRESH = 1 */
2700 else
2701 txdctl |= (8 << 16); /* WTHRESH = 8 */
2702
Alexander Duycke954b372012-02-08 07:49:38 +00002703 /*
2704 * Setting PTHRESH to 32 both improves performance
2705 * and avoids a TX hang with DFP enabled
2706 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002707 txdctl |= (1 << 8) | /* HTHRESH = 1 */
2708 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002709
2710 /* reinitialize flowdirector state */
Alexander Duyck39cb6812012-06-06 05:38:20 +00002711 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002712 ring->atr_sample_rate = adapter->atr_sample_rate;
2713 ring->atr_count = 0;
2714 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2715 } else {
2716 ring->atr_sample_rate = 0;
2717 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002718
John Fastabendc84d3242010-11-16 19:27:12 -08002719 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2720
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002721 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002722 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2723
2724 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2725 if (hw->mac.type == ixgbe_mac_82598EB &&
2726 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2727 return;
2728
2729 /* poll to verify queue is enabled */
2730 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002731 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002732 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2733 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2734 if (!wait_loop)
2735 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002736}
2737
Alexander Duyck120ff942010-08-19 13:34:50 +00002738static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2739{
2740 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002741 u32 rttdcs, mtqc;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002742 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002743
2744 if (hw->mac.type == ixgbe_mac_82598EB)
2745 return;
2746
2747 /* disable the arbiter while setting MTQC */
2748 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2749 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2750 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2751
2752 /* set transmit pool layout */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002753 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2754 mtqc = IXGBE_MTQC_VT_ENA;
2755 if (tcs > 4)
2756 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2757 else if (tcs > 1)
2758 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2759 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
2760 mtqc |= IXGBE_MTQC_32VF;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002761 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002762 mtqc |= IXGBE_MTQC_64VF;
2763 } else {
2764 if (tcs > 4)
2765 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2766 else if (tcs > 1)
2767 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2768 else
2769 mtqc = IXGBE_MTQC_64Q_1PB;
2770 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00002771
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002772 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
John Fastabend8b1c0b22011-05-03 02:26:48 +00002773
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002774 /* Enable Security TX Buffer IFG for multiple pb */
2775 if (tcs) {
2776 u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2777 sectx |= IXGBE_SECTX_DCB;
2778 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx);
Alexander Duyck120ff942010-08-19 13:34:50 +00002779 }
2780
2781 /* re-enable the arbiter */
2782 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2783 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2784}
2785
Auke Kok9a799d72007-09-15 14:07:45 -07002786/**
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07002787 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002788 * @adapter: board private structure
2789 *
2790 * Configure the Tx unit of the MAC after a reset.
2791 **/
2792static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2793{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002794 struct ixgbe_hw *hw = &adapter->hw;
2795 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002796 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002797
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002798 ixgbe_setup_mtqc(adapter);
2799
2800 if (hw->mac.type != ixgbe_mac_82598EB) {
2801 /* DMATXCTL.EN must be before Tx queues are enabled */
2802 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2803 dmatxctl |= IXGBE_DMATXCTL_TE;
2804 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2805 }
2806
Auke Kok9a799d72007-09-15 14:07:45 -07002807 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002808 for (i = 0; i < adapter->num_tx_queues; i++)
2809 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002810}
2811
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00002812static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
2813 struct ixgbe_ring *ring)
2814{
2815 struct ixgbe_hw *hw = &adapter->hw;
2816 u8 reg_idx = ring->reg_idx;
2817 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2818
2819 srrctl |= IXGBE_SRRCTL_DROP_EN;
2820
2821 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2822}
2823
2824static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
2825 struct ixgbe_ring *ring)
2826{
2827 struct ixgbe_hw *hw = &adapter->hw;
2828 u8 reg_idx = ring->reg_idx;
2829 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2830
2831 srrctl &= ~IXGBE_SRRCTL_DROP_EN;
2832
2833 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2834}
2835
2836#ifdef CONFIG_IXGBE_DCB
2837void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2838#else
2839static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2840#endif
2841{
2842 int i;
2843 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
2844
2845 if (adapter->ixgbe_ieee_pfc)
2846 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
2847
2848 /*
2849 * We should set the drop enable bit if:
2850 * SR-IOV is enabled
2851 * or
2852 * Number of Rx queues > 1 and flow control is disabled
2853 *
2854 * This allows us to avoid head of line blocking for security
2855 * and performance reasons.
2856 */
2857 if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
2858 !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
2859 for (i = 0; i < adapter->num_rx_queues; i++)
2860 ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
2861 } else {
2862 for (i = 0; i < adapter->num_rx_queues; i++)
2863 ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
2864 }
2865}
2866
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002867#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002868
Yi Zoua6616b42009-08-06 13:05:23 +00002869static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002870 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002871{
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002872 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002873 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002874 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002875
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002876 if (hw->mac.type == ixgbe_mac_82598EB) {
2877 u16 mask = adapter->ring_feature[RING_F_RSS].mask;
2878
2879 /*
2880 * if VMDq is not active we must program one srrctl register
2881 * per RSS queue since we have enabled RDRXCTL.MVMEN
2882 */
2883 reg_idx &= mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002884 }
2885
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002886 /* configure header buffer length, needed for RSC */
2887 srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002888
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002889 /* configure the packet buffer length */
Alexander Duyckf8003262012-03-03 02:35:52 +00002890 srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002891
2892 /* configure descriptor type */
Alexander Duyckf8003262012-03-03 02:35:52 +00002893 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002894
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002895 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002896}
2897
Alexander Duyck05abb122010-08-19 13:35:41 +00002898static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002899{
Alexander Duyck05abb122010-08-19 13:35:41 +00002900 struct ixgbe_hw *hw = &adapter->hw;
2901 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002902 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2903 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002904 u32 mrqc = 0, reta = 0;
2905 u32 rxcsum;
2906 int i, j;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002907 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend86b4db32011-04-26 07:26:19 +00002908
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002909 /*
2910 * Program table for at least 2 queues w/ SR-IOV so that VFs can
2911 * make full use of any rings they may have. We will use the
2912 * PSRTYPE register to control how many rings we use within the PF.
2913 */
2914 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 2))
2915 rss_i = 2;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002916
Alexander Duyck05abb122010-08-19 13:35:41 +00002917 /* Fill out hash function seeds */
2918 for (i = 0; i < 10; i++)
2919 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002920
Alexander Duyck05abb122010-08-19 13:35:41 +00002921 /* Fill out redirection table */
2922 for (i = 0, j = 0; i < 128; i++, j++) {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002923 if (j == rss_i)
Alexander Duyck05abb122010-08-19 13:35:41 +00002924 j = 0;
2925 /* reta = 4-byte sliding window of
2926 * 0x00..(indices-1)(indices-1)00..etc. */
2927 reta = (reta << 8) | (j * 0x11);
2928 if ((i & 3) == 3)
2929 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2930 }
2931
2932 /* Disable indicating checksum in descriptor, enables RSS hash */
2933 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2934 rxcsum |= IXGBE_RXCSUM_PCSD;
2935 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2936
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002937 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00002938 if (adapter->ring_feature[RING_F_RSS].mask)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002939 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002940 } else {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002941 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00002942
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002943 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2944 if (tcs > 4)
2945 mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */
2946 else if (tcs > 1)
2947 mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */
2948 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
2949 mrqc = IXGBE_MRQC_VMDQRSS32EN;
2950 else
2951 mrqc = IXGBE_MRQC_VMDQRSS64EN;
2952 } else {
2953 if (tcs > 4)
2954 mrqc = IXGBE_MRQC_RTRSS8TCEN;
2955 else if (tcs > 1)
John Fastabend8b1c0b22011-05-03 02:26:48 +00002956 mrqc = IXGBE_MRQC_RTRSS4TCEN;
2957 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002958 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002959 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002960 }
2961
Alexander Duyck05abb122010-08-19 13:35:41 +00002962 /* Perform hash on these packet types */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002963 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4 |
2964 IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
2965 IXGBE_MRQC_RSS_FIELD_IPV6 |
2966 IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
Alexander Duyck05abb122010-08-19 13:35:41 +00002967
Alexander Duyckef6afc02012-02-08 07:51:53 +00002968 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
2969 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
2970 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2971 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
2972
Alexander Duyck05abb122010-08-19 13:35:41 +00002973 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002974}
2975
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002976/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002977 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2978 * @adapter: address of board private structure
2979 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002980 **/
Don Skidmore082757a2011-07-21 05:55:00 +00002981static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00002982 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002983{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002984 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002985 u32 rscctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002986 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002987
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002988 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002989 return;
2990
Alexander Duyck73670962010-08-19 13:38:34 +00002991 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002992 rscctrl |= IXGBE_RSCCTL_RSCEN;
2993 /*
2994 * we must limit the number of descriptors so that the
2995 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00002996 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002997 */
Alexander Duyckf8003262012-03-03 02:35:52 +00002998 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck73670962010-08-19 13:38:34 +00002999 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003000}
3001
Alexander Duyck9e10e042010-08-19 13:40:06 +00003002#define IXGBE_MAX_RX_DESC_POLL 10
3003static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3004 struct ixgbe_ring *ring)
3005{
3006 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003007 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3008 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003009 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003010
3011 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3012 if (hw->mac.type == ixgbe_mac_82598EB &&
3013 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3014 return;
3015
3016 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003017 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003018 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3019 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3020
3021 if (!wait_loop) {
3022 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3023 "the polling period\n", reg_idx);
3024 }
3025}
3026
Yi Zou2d39d572011-01-06 14:29:56 +00003027void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3028 struct ixgbe_ring *ring)
3029{
3030 struct ixgbe_hw *hw = &adapter->hw;
3031 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3032 u32 rxdctl;
3033 u8 reg_idx = ring->reg_idx;
3034
3035 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3036 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3037
3038 /* write value back with RXDCTL.ENABLE bit cleared */
3039 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3040
3041 if (hw->mac.type == ixgbe_mac_82598EB &&
3042 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3043 return;
3044
3045 /* the hardware may take up to 100us to really disable the rx queue */
3046 do {
3047 udelay(10);
3048 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3049 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3050
3051 if (!wait_loop) {
3052 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3053 "the polling period\n", reg_idx);
3054 }
3055}
3056
Alexander Duyck84418e32010-08-19 13:40:54 +00003057void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3058 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003059{
3060 struct ixgbe_hw *hw = &adapter->hw;
3061 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003062 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003063 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003064
Alexander Duyck9e10e042010-08-19 13:40:06 +00003065 /* disable queue to avoid issues while updating state */
3066 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003067 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003068
Alexander Duyckacd37172010-08-19 13:36:05 +00003069 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3070 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3071 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3072 ring->count * sizeof(union ixgbe_adv_rx_desc));
3073 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3074 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08003075 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003076
3077 ixgbe_configure_srrctl(adapter, ring);
3078 ixgbe_configure_rscctl(adapter, ring);
3079
Greg Rosee9f98072011-01-26 01:06:07 +00003080 /* If operating in IOV mode set RLPML for X540 */
3081 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
3082 hw->mac.type == ixgbe_mac_X540) {
3083 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
3084 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
3085 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
3086 }
3087
Alexander Duyck9e10e042010-08-19 13:40:06 +00003088 if (hw->mac.type == ixgbe_mac_82598EB) {
3089 /*
3090 * enable cache line friendly hardware writes:
3091 * PTHRESH=32 descriptors (half the internal cache),
3092 * this also removes ugly rx_no_buffer_count increment
3093 * HTHRESH=4 descriptors (to minimize latency on fetch)
3094 * WTHRESH=8 burst writeback up to two cache lines
3095 */
3096 rxdctl &= ~0x3FFFFF;
3097 rxdctl |= 0x080420;
3098 }
3099
3100 /* enable receive descriptor ring */
3101 rxdctl |= IXGBE_RXDCTL_ENABLE;
3102 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3103
3104 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003105 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003106}
3107
Alexander Duyck48654522010-08-19 13:36:27 +00003108static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3109{
3110 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003111 int rss_i = adapter->ring_feature[RING_F_RSS].indices;
Alexander Duyck48654522010-08-19 13:36:27 +00003112 int p;
3113
3114 /* PSRTYPE must be initialized in non 82598 adapters */
3115 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003116 IXGBE_PSRTYPE_UDPHDR |
3117 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003118 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003119 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003120
3121 if (hw->mac.type == ixgbe_mac_82598EB)
3122 return;
3123
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003124 if (rss_i > 3)
3125 psrtype |= 2 << 29;
3126 else if (rss_i > 1)
3127 psrtype |= 1 << 29;
Alexander Duyck48654522010-08-19 13:36:27 +00003128
3129 for (p = 0; p < adapter->num_rx_pools; p++)
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003130 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(p)),
Alexander Duyck48654522010-08-19 13:36:27 +00003131 psrtype);
3132}
3133
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003134static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3135{
3136 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003137 u32 reg_offset, vf_shift;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003138 u32 gcr_ext, vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003139 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003140
3141 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3142 return;
3143
3144 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003145 vmdctl |= IXGBE_VMD_CTL_VMDQ_EN;
3146 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003147 vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003148 vmdctl |= IXGBE_VT_CTL_REPLEN;
3149 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003150
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003151 vf_shift = VMDQ_P(0) % 32;
3152 reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003153
3154 /* Enable only the PF's pool for Tx/Rx */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003155 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (~0) << vf_shift);
3156 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1);
3157 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (~0) << vf_shift);
3158 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003159 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3160
3161 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003162 hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0));
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003163
3164 /*
3165 * Set up VF register offsets for selected VT Mode,
3166 * i.e. 32 or 64 VFs for SR-IOV
3167 */
Alexander Duyck73079ea2012-07-14 06:48:49 +00003168 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3169 case IXGBE_82599_VMDQ_8Q_MASK:
3170 gcr_ext = IXGBE_GCR_EXT_VT_MODE_16;
3171 break;
3172 case IXGBE_82599_VMDQ_4Q_MASK:
3173 gcr_ext = IXGBE_GCR_EXT_VT_MODE_32;
3174 break;
3175 default:
3176 gcr_ext = IXGBE_GCR_EXT_VT_MODE_64;
3177 break;
3178 }
3179
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003180 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3181
3182 /* enable Tx loopback for VF/PF communication */
3183 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003184
Greg Rosea985b6c32010-11-18 03:02:52 +00003185 /* Enable MAC Anti-Spoofing */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003186 hw->mac.ops.set_mac_anti_spoofing(hw, (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003187 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00003188 /* For VFs that have spoof checking turned off */
3189 for (i = 0; i < adapter->num_vfs; i++) {
3190 if (!adapter->vfinfo[i].spoofchk_enabled)
3191 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
3192 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003193}
3194
Alexander Duyck477de6e2010-08-19 13:38:11 +00003195static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003196{
Auke Kok9a799d72007-09-15 14:07:45 -07003197 struct ixgbe_hw *hw = &adapter->hw;
3198 struct net_device *netdev = adapter->netdev;
3199 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003200 struct ixgbe_ring *rx_ring;
3201 int i;
3202 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003203
Alexander Duyck477de6e2010-08-19 13:38:11 +00003204#ifdef IXGBE_FCOE
3205 /* adjust max frame to be able to do baby jumbo for FCoE */
3206 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3207 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3208 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3209
3210#endif /* IXGBE_FCOE */
3211 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3212 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3213 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3214 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3215
3216 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003217 }
3218
Alexander Duyck919e78a2011-08-26 09:52:38 +00003219 /* MHADD will allow an extra 4 bytes past for vlan tagged frames */
3220 max_frame += VLAN_HLEN;
3221
Auke Kok9a799d72007-09-15 14:07:45 -07003222 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003223 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3224 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003225 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3226
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003227 /*
3228 * Setup the HW Rx Head and Tail Descriptor Pointers and
3229 * the Base and Length of the Rx Descriptor Ring
3230 */
Auke Kok9a799d72007-09-15 14:07:45 -07003231 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003232 rx_ring = adapter->rx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003233 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3234 set_ring_rsc_enabled(rx_ring);
3235 else
3236 clear_ring_rsc_enabled(rx_ring);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003237 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003238}
3239
Alexander Duyck73670962010-08-19 13:38:34 +00003240static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3241{
3242 struct ixgbe_hw *hw = &adapter->hw;
3243 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3244
3245 switch (hw->mac.type) {
3246 case ixgbe_mac_82598EB:
3247 /*
3248 * For VMDq support of different descriptor types or
3249 * buffer sizes through the use of multiple SRRCTL
3250 * registers, RDRXCTL.MVMEN must be set to 1
3251 *
3252 * also, the manual doesn't mention it clearly but DCA hints
3253 * will only use queue 0's tags unless this bit is set. Side
3254 * effects of setting this bit are only that SRRCTL must be
3255 * fully programmed [0..15]
3256 */
3257 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3258 break;
3259 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003260 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003261 /* Disable RSC for ACK packets */
3262 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3263 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3264 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3265 /* hardware requires some bits to be set by default */
3266 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3267 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3268 break;
3269 default:
3270 /* We should do nothing since we don't know this hardware */
3271 return;
3272 }
3273
3274 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3275}
3276
Alexander Duyck477de6e2010-08-19 13:38:11 +00003277/**
3278 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3279 * @adapter: board private structure
3280 *
3281 * Configure the Rx unit of the MAC after a reset.
3282 **/
3283static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3284{
3285 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003286 int i;
3287 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003288
3289 /* disable receives while setting up the descriptors */
3290 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3291 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3292
3293 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003294 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003295
Alexander Duyck9e10e042010-08-19 13:40:06 +00003296 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003297 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003298
Alexander Duyck477de6e2010-08-19 13:38:11 +00003299 /* set_rx_buffer_len must be called before ring initialization */
3300 ixgbe_set_rx_buffer_len(adapter);
3301
3302 /*
3303 * Setup the HW Rx Head and Tail Descriptor Pointers and
3304 * the Base and Length of the Rx Descriptor Ring
3305 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003306 for (i = 0; i < adapter->num_rx_queues; i++)
3307 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003308
Alexander Duyck9e10e042010-08-19 13:40:06 +00003309 /* disable drop enable for 82598 parts */
3310 if (hw->mac.type == ixgbe_mac_82598EB)
3311 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3312
3313 /* enable all receives */
3314 rxctrl |= IXGBE_RXCTRL_RXEN;
3315 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003316}
3317
Jiri Pirko8e586132011-12-08 19:52:37 -05003318static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003319{
3320 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003321 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003322
3323 /* add VID to filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003324 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003325 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003326
3327 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003328}
3329
Jiri Pirko8e586132011-12-08 19:52:37 -05003330static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003331{
3332 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003333 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003334
Auke Kok9a799d72007-09-15 14:07:45 -07003335 /* remove VID from filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003336 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003337 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003338
3339 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003340}
3341
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003342/**
3343 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3344 * @adapter: driver data
3345 */
3346static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3347{
3348 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003349 u32 vlnctrl;
3350
3351 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3352 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3353 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3354}
3355
3356/**
3357 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3358 * @adapter: driver data
3359 */
3360static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3361{
3362 struct ixgbe_hw *hw = &adapter->hw;
3363 u32 vlnctrl;
3364
3365 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3366 vlnctrl |= IXGBE_VLNCTRL_VFE;
3367 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3368 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3369}
3370
3371/**
3372 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3373 * @adapter: driver data
3374 */
3375static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3376{
3377 struct ixgbe_hw *hw = &adapter->hw;
3378 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003379 int i, j;
3380
3381 switch (hw->mac.type) {
3382 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003383 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3384 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003385 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3386 break;
3387 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003388 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003389 for (i = 0; i < adapter->num_rx_queues; i++) {
3390 j = adapter->rx_ring[i]->reg_idx;
3391 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3392 vlnctrl &= ~IXGBE_RXDCTL_VME;
3393 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3394 }
3395 break;
3396 default:
3397 break;
3398 }
3399}
3400
3401/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003402 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003403 * @adapter: driver data
3404 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003405static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003406{
3407 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003408 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003409 int i, j;
3410
3411 switch (hw->mac.type) {
3412 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003413 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3414 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003415 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3416 break;
3417 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003418 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003419 for (i = 0; i < adapter->num_rx_queues; i++) {
3420 j = adapter->rx_ring[i]->reg_idx;
3421 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3422 vlnctrl |= IXGBE_RXDCTL_VME;
3423 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3424 }
3425 break;
3426 default:
3427 break;
3428 }
3429}
3430
Auke Kok9a799d72007-09-15 14:07:45 -07003431static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3432{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003433 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003434
Jesse Grossf62bbb52010-10-20 13:56:10 +00003435 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3436
3437 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3438 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003439}
3440
3441/**
Alexander Duyck28500622010-06-15 09:25:48 +00003442 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3443 * @netdev: network interface device structure
3444 *
3445 * Writes unicast address list to the RAR table.
3446 * Returns: -ENOMEM on failure/insufficient address space
3447 * 0 on no addresses written
3448 * X on writing X addresses to the RAR table
3449 **/
3450static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3451{
3452 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3453 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend95447462012-05-31 12:42:26 +00003454 unsigned int rar_entries = hw->mac.num_rar_entries - 1;
Alexander Duyck28500622010-06-15 09:25:48 +00003455 int count = 0;
3456
John Fastabend95447462012-05-31 12:42:26 +00003457 /* In SR-IOV mode significantly less RAR entries are available */
3458 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3459 rar_entries = IXGBE_MAX_PF_MACVLANS - 1;
3460
Alexander Duyck28500622010-06-15 09:25:48 +00003461 /* return ENOMEM indicating insufficient memory for addresses */
3462 if (netdev_uc_count(netdev) > rar_entries)
3463 return -ENOMEM;
3464
John Fastabend95447462012-05-31 12:42:26 +00003465 if (!netdev_uc_empty(netdev)) {
Alexander Duyck28500622010-06-15 09:25:48 +00003466 struct netdev_hw_addr *ha;
3467 /* return error if we do not support writing to RAR table */
3468 if (!hw->mac.ops.set_rar)
3469 return -ENOMEM;
3470
3471 netdev_for_each_uc_addr(ha, netdev) {
3472 if (!rar_entries)
3473 break;
3474 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003475 VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck28500622010-06-15 09:25:48 +00003476 count++;
3477 }
3478 }
3479 /* write the addresses in reverse order to avoid write combining */
3480 for (; rar_entries > 0 ; rar_entries--)
3481 hw->mac.ops.clear_rar(hw, rar_entries);
3482
3483 return count;
3484}
3485
3486/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003487 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003488 * @netdev: network interface device structure
3489 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003490 * The set_rx_method entry point is called whenever the unicast/multicast
3491 * address list or the network interface flags are updated. This routine is
3492 * responsible for configuring the hardware for proper unicast, multicast and
3493 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003494 **/
Greg Rose7f870472010-01-09 02:25:29 +00003495void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003496{
3497 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3498 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003499 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3500 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003501
3502 /* Check for Promiscuous and All Multicast modes */
3503
3504 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3505
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003506 /* set all bits that we expect to always be set */
Ben Greear3f2d1c02012-03-08 08:28:41 +00003507 fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003508 fctrl |= IXGBE_FCTRL_BAM;
3509 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3510 fctrl |= IXGBE_FCTRL_PMCF;
3511
Alexander Duyck28500622010-06-15 09:25:48 +00003512 /* clear the bits we are changing the status of */
3513 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3514
Auke Kok9a799d72007-09-15 14:07:45 -07003515 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003516 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003517 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003518 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003519 /* don't hardware filter vlans in promisc mode */
3520 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003521 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003522 if (netdev->flags & IFF_ALLMULTI) {
3523 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003524 vmolr |= IXGBE_VMOLR_MPE;
3525 } else {
3526 /*
3527 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003528 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003529 * that we can at least receive multicast traffic
3530 */
3531 hw->mac.ops.update_mc_addr_list(hw, netdev);
3532 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003533 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003534 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003535 hw->addr_ctrl.user_set_promisc = false;
John Fastabend9dcb3732012-04-15 06:44:25 +00003536 }
3537
3538 /*
3539 * Write addresses to available RAR registers, if there is not
3540 * sufficient space to store all the addresses then enable
3541 * unicast promiscuous mode
3542 */
3543 count = ixgbe_write_uc_addr_list(netdev);
3544 if (count < 0) {
3545 fctrl |= IXGBE_FCTRL_UPE;
3546 vmolr |= IXGBE_VMOLR_ROPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003547 }
3548
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003549 if (adapter->num_vfs)
Alexander Duyck28500622010-06-15 09:25:48 +00003550 ixgbe_restore_vf_multicasts(adapter);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003551
3552 if (hw->mac.type != ixgbe_mac_82598EB) {
3553 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) &
Alexander Duyck28500622010-06-15 09:25:48 +00003554 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3555 IXGBE_VMOLR_ROPE);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003556 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003557 }
3558
Ben Greear3f2d1c02012-03-08 08:28:41 +00003559 /* This is useful for sniffing bad packets. */
3560 if (adapter->netdev->features & NETIF_F_RXALL) {
3561 /* UPE and MPE will be handled by normal PROMISC logic
3562 * in e1000e_set_rx_mode */
3563 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
3564 IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
3565 IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
3566
3567 fctrl &= ~(IXGBE_FCTRL_DPF);
3568 /* NOTE: VLAN filtering is disabled by setting PROMISC */
3569 }
3570
Auke Kok9a799d72007-09-15 14:07:45 -07003571 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003572
3573 if (netdev->features & NETIF_F_HW_VLAN_RX)
3574 ixgbe_vlan_strip_enable(adapter);
3575 else
3576 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003577}
3578
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003579static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3580{
3581 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003582
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003583 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3584 napi_enable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003585}
3586
3587static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3588{
3589 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003590
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003591 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3592 napi_disable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003593}
3594
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003595#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003596/**
Alexander Duyck2f90b862008-11-20 20:52:10 -08003597 * ixgbe_configure_dcb - Configure DCB hardware
3598 * @adapter: ixgbe adapter struct
3599 *
3600 * This is called by the driver on open to configure the DCB hardware.
3601 * This is also called by the gennetlink interface when reconfiguring
3602 * the DCB state.
3603 */
3604static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3605{
3606 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend98063072010-10-28 00:59:57 +00003607 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003608
Alexander Duyck67ebd792010-08-19 13:34:04 +00003609 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3610 if (hw->mac.type == ixgbe_mac_82598EB)
3611 netif_set_gso_max_size(adapter->netdev, 65536);
3612 return;
3613 }
3614
3615 if (hw->mac.type == ixgbe_mac_82598EB)
3616 netif_set_gso_max_size(adapter->netdev, 32768);
3617
Alexander Duyck2f90b862008-11-20 20:52:10 -08003618 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003619
John Fastabendb1208182011-10-15 05:00:10 +00003620#ifdef IXGBE_FCOE
3621 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3622 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3623#endif
3624
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003625 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003626 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003627 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3628 DCB_TX_CONFIG);
3629 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3630 DCB_RX_CONFIG);
3631 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003632 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3633 ixgbe_dcb_hw_ets(&adapter->hw,
3634 adapter->ixgbe_ieee_ets,
3635 max_frame);
3636 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3637 adapter->ixgbe_ieee_pfc->pfc_en,
3638 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003639 }
John Fastabend8187cd42011-02-23 05:58:08 +00003640
3641 /* Enable RSS Hash per TC */
3642 if (hw->mac.type != ixgbe_mac_82598EB) {
Alexander Duyck4ae63732012-06-22 06:46:33 +00003643 u32 msb = 0;
3644 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003645
Alexander Duyckd411a932012-06-30 00:14:01 +00003646 while (rss_i) {
3647 msb++;
3648 rss_i >>= 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003649 }
Alexander Duyckd411a932012-06-30 00:14:01 +00003650
Alexander Duyck4ae63732012-06-22 06:46:33 +00003651 /* write msb to all 8 TCs in one write */
3652 IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111);
John Fastabend8187cd42011-02-23 05:58:08 +00003653 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003654}
John Fastabend9da712d2011-08-23 03:14:22 +00003655#endif
3656
3657/* Additional bittime to account for IXGBE framing */
3658#define IXGBE_ETH_FRAMING 20
3659
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003660/**
John Fastabend9da712d2011-08-23 03:14:22 +00003661 * ixgbe_hpbthresh - calculate high water mark for flow control
3662 *
3663 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003664 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00003665 */
3666static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
3667{
3668 struct ixgbe_hw *hw = &adapter->hw;
3669 struct net_device *dev = adapter->netdev;
3670 int link, tc, kb, marker;
3671 u32 dv_id, rx_pba;
3672
3673 /* Calculate max LAN frame size */
3674 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
3675
3676#ifdef IXGBE_FCOE
3677 /* FCoE traffic class uses FCOE jumbo frames */
Alexander Duyck800bd602012-06-02 00:11:02 +00003678 if ((dev->features & NETIF_F_FCOE_MTU) &&
3679 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
3680 (pb == ixgbe_fcoe_get_tc(adapter)))
3681 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003682
3683#endif
John Fastabend9da712d2011-08-23 03:14:22 +00003684 /* Calculate delay value for device */
3685 switch (hw->mac.type) {
3686 case ixgbe_mac_X540:
3687 dv_id = IXGBE_DV_X540(link, tc);
3688 break;
3689 default:
3690 dv_id = IXGBE_DV(link, tc);
3691 break;
3692 }
3693
3694 /* Loopback switch introduces additional latency */
3695 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3696 dv_id += IXGBE_B2BT(tc);
3697
3698 /* Delay value is calculated in bit times convert to KB */
3699 kb = IXGBE_BT2KB(dv_id);
3700 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
3701
3702 marker = rx_pba - kb;
3703
3704 /* It is possible that the packet buffer is not large enough
3705 * to provide required headroom. In this case throw an error
3706 * to user and a do the best we can.
3707 */
3708 if (marker < 0) {
3709 e_warn(drv, "Packet Buffer(%i) can not provide enough"
3710 "headroom to support flow control."
3711 "Decrease MTU or number of traffic classes\n", pb);
3712 marker = tc + 1;
3713 }
3714
3715 return marker;
3716}
3717
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003718/**
John Fastabend9da712d2011-08-23 03:14:22 +00003719 * ixgbe_lpbthresh - calculate low water mark for 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_lpbthresh(struct ixgbe_adapter *adapter)
3725{
3726 struct ixgbe_hw *hw = &adapter->hw;
3727 struct net_device *dev = adapter->netdev;
3728 int tc;
3729 u32 dv_id;
3730
3731 /* Calculate max LAN frame size */
3732 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3733
3734 /* Calculate delay value for device */
3735 switch (hw->mac.type) {
3736 case ixgbe_mac_X540:
3737 dv_id = IXGBE_LOW_DV_X540(tc);
3738 break;
3739 default:
3740 dv_id = IXGBE_LOW_DV(tc);
3741 break;
3742 }
3743
3744 /* Delay value is calculated in bit times convert to KB */
3745 return IXGBE_BT2KB(dv_id);
3746}
3747
3748/*
3749 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3750 */
3751static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
3752{
3753 struct ixgbe_hw *hw = &adapter->hw;
3754 int num_tc = netdev_get_num_tc(adapter->netdev);
3755 int i;
3756
3757 if (!num_tc)
3758 num_tc = 1;
3759
3760 hw->fc.low_water = ixgbe_lpbthresh(adapter);
3761
3762 for (i = 0; i < num_tc; i++) {
3763 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
3764
3765 /* Low water marks must not be larger than high water marks */
3766 if (hw->fc.low_water > hw->fc.high_water[i])
3767 hw->fc.low_water = 0;
3768 }
3769}
John Fastabend80605c652011-05-02 12:34:10 +00003770
3771static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3772{
John Fastabend80605c652011-05-02 12:34:10 +00003773 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00003774 int hdrm;
3775 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00003776
3777 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3778 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00003779 hdrm = 32 << adapter->fdir_pballoc;
3780 else
3781 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00003782
Alexander Duyckf7e10272011-07-21 00:40:35 +00003783 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00003784 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00003785}
3786
Alexander Duycke4911d52011-05-11 07:18:52 +00003787static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3788{
3789 struct ixgbe_hw *hw = &adapter->hw;
3790 struct hlist_node *node, *node2;
3791 struct ixgbe_fdir_filter *filter;
3792
3793 spin_lock(&adapter->fdir_perfect_lock);
3794
3795 if (!hlist_empty(&adapter->fdir_filter_list))
3796 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3797
3798 hlist_for_each_entry_safe(filter, node, node2,
3799 &adapter->fdir_filter_list, fdir_node) {
3800 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003801 &filter->filter,
3802 filter->sw_idx,
3803 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3804 IXGBE_FDIR_DROP_QUEUE :
3805 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003806 }
3807
3808 spin_unlock(&adapter->fdir_perfect_lock);
3809}
3810
Auke Kok9a799d72007-09-15 14:07:45 -07003811static void ixgbe_configure(struct ixgbe_adapter *adapter)
3812{
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003813 struct ixgbe_hw *hw = &adapter->hw;
3814
John Fastabend80605c652011-05-02 12:34:10 +00003815 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003816#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003817 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003818#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003819
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003820 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003821 ixgbe_restore_vlan(adapter);
3822
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003823 switch (hw->mac.type) {
3824 case ixgbe_mac_82599EB:
3825 case ixgbe_mac_X540:
3826 hw->mac.ops.disable_rx_buff(hw);
3827 break;
3828 default:
3829 break;
3830 }
3831
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003832 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003833 ixgbe_init_fdir_signature_82599(&adapter->hw,
3834 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003835 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3836 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3837 adapter->fdir_pballoc);
3838 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003839 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003840
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003841 switch (hw->mac.type) {
3842 case ixgbe_mac_82599EB:
3843 case ixgbe_mac_X540:
3844 hw->mac.ops.enable_rx_buff(hw);
3845 break;
3846 default:
3847 break;
3848 }
3849
Alexander Duyck933d41f2010-09-07 21:34:29 +00003850 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003851
Alexander Duyck7c8ae652012-05-05 05:32:47 +00003852#ifdef IXGBE_FCOE
3853 /* configure FCoE L2 filters, redirection table, and Rx control */
3854 ixgbe_configure_fcoe(adapter);
3855
3856#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07003857 ixgbe_configure_tx(adapter);
3858 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003859}
3860
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003861static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3862{
3863 switch (hw->phy.type) {
3864 case ixgbe_phy_sfp_avago:
3865 case ixgbe_phy_sfp_ftl:
3866 case ixgbe_phy_sfp_intel:
3867 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003868 case ixgbe_phy_sfp_passive_tyco:
3869 case ixgbe_phy_sfp_passive_unknown:
3870 case ixgbe_phy_sfp_active_unknown:
3871 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003872 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00003873 case ixgbe_phy_nl:
3874 if (hw->mac.type == ixgbe_mac_82598EB)
3875 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003876 default:
3877 return false;
3878 }
3879}
3880
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003881/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003882 * ixgbe_sfp_link_config - set up SFP+ link
3883 * @adapter: pointer to private adapter struct
3884 **/
3885static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3886{
Alexander Duyck70864002011-04-27 09:13:56 +00003887 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003888 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00003889 * is that an SFP was inserted/removed after the reset
3890 * but before SFP detection was enabled. As such the best
3891 * solution is to just start searching as soon as we start
3892 */
3893 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3894 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003895
Alexander Duyck70864002011-04-27 09:13:56 +00003896 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003897}
3898
3899/**
3900 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003901 * @hw: pointer to private hardware struct
3902 *
3903 * Returns 0 on success, negative on failure
3904 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003905static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003906{
3907 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003908 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003909 u32 ret = IXGBE_ERR_LINK_SETUP;
3910
3911 if (hw->mac.ops.check_link)
3912 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3913
3914 if (ret)
3915 goto link_cfg_out;
3916
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003917 autoneg = hw->phy.autoneg_advertised;
3918 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003919 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3920 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003921 if (ret)
3922 goto link_cfg_out;
3923
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003924 if (hw->mac.ops.setup_link)
3925 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003926link_cfg_out:
3927 return ret;
3928}
3929
Alexander Duycka34bcff2010-08-19 13:39:20 +00003930static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003931{
Auke Kok9a799d72007-09-15 14:07:45 -07003932 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003933 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003934
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003935 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003936 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3937 IXGBE_GPIE_OCD;
3938 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003939 /*
3940 * use EIAM to auto-mask when MSI-X interrupt is asserted
3941 * this saves a register write for every interrupt
3942 */
3943 switch (hw->mac.type) {
3944 case ixgbe_mac_82598EB:
3945 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3946 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003947 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003948 case ixgbe_mac_X540:
3949 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003950 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3951 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3952 break;
3953 }
3954 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003955 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3956 * specifically only auto mask tx and rx interrupts */
3957 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003958 }
3959
Alexander Duycka34bcff2010-08-19 13:39:20 +00003960 /* XXX: to interrupt immediately for EICS writes, enable this */
3961 /* gpie |= IXGBE_GPIE_EIMEN; */
3962
3963 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3964 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
Alexander Duyck73079ea2012-07-14 06:48:49 +00003965
3966 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3967 case IXGBE_82599_VMDQ_8Q_MASK:
3968 gpie |= IXGBE_GPIE_VTMODE_16;
3969 break;
3970 case IXGBE_82599_VMDQ_4Q_MASK:
3971 gpie |= IXGBE_GPIE_VTMODE_32;
3972 break;
3973 default:
3974 gpie |= IXGBE_GPIE_VTMODE_64;
3975 break;
3976 }
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003977 }
3978
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003979 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00003980 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
3981 switch (adapter->hw.mac.type) {
3982 case ixgbe_mac_82599EB:
3983 gpie |= IXGBE_SDP0_GPIEN;
3984 break;
3985 case ixgbe_mac_X540:
3986 gpie |= IXGBE_EIMS_TS;
3987 break;
3988 default:
3989 break;
3990 }
3991 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003992
Alexander Duycka34bcff2010-08-19 13:39:20 +00003993 /* Enable fan failure interrupt */
3994 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003995 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003996
Don Skidmore2698b202011-04-13 07:01:52 +00003997 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003998 gpie |= IXGBE_SDP1_GPIEN;
3999 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00004000 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00004001
4002 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
4003}
4004
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004005static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00004006{
4007 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004008 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004009 u32 ctrl_ext;
4010
4011 ixgbe_get_hw_control(adapter);
4012 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004013
Auke Kok9a799d72007-09-15 14:07:45 -07004014 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4015 ixgbe_configure_msix(adapter);
4016 else
4017 ixgbe_configure_msi_and_legacy(adapter);
4018
Don Skidmorec6ecf392010-12-03 03:31:51 +00004019 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
4020 if (hw->mac.ops.enable_tx_laser &&
4021 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004022 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004023 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00004024 hw->mac.ops.enable_tx_laser(hw);
4025
Auke Kok9a799d72007-09-15 14:07:45 -07004026 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004027 ixgbe_napi_enable_all(adapter);
4028
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08004029 if (ixgbe_is_sfp(hw)) {
4030 ixgbe_sfp_link_config(adapter);
4031 } else {
4032 err = ixgbe_non_sfp_link_config(hw);
4033 if (err)
4034 e_err(probe, "link_config FAILED %d\n", err);
4035 }
4036
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004037 /* clear any pending interrupts, may auto mask */
4038 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00004039 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07004040
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004041 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00004042 * If this adapter has a fan, check to see if we had a failure
4043 * before we enabled the interrupt.
4044 */
4045 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
4046 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
4047 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00004048 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00004049 }
4050
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004051 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00004052 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004053
Auke Kok9a799d72007-09-15 14:07:45 -07004054 /* bring the link up in the watchdog, this could race with our first
4055 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004056 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
4057 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00004058 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00004059
4060 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
4061 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
4062 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
4063 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07004064}
4065
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004066void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
4067{
4068 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00004069 /* put off any impending NetWatchDogTimeout */
4070 adapter->netdev->trans_start = jiffies;
4071
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004072 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00004073 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004074 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00004075 /*
4076 * If SR-IOV enabled then wait a bit before bringing the adapter
4077 * back up to give the VFs time to respond to the reset. The
4078 * two second wait is based upon the watchdog timer cycle in
4079 * the VF driver.
4080 */
4081 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4082 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004083 ixgbe_up(adapter);
4084 clear_bit(__IXGBE_RESETTING, &adapter->state);
4085}
4086
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004087void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004088{
4089 /* hardware has been reset, we need to reload some things */
4090 ixgbe_configure(adapter);
4091
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004092 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004093}
4094
4095void ixgbe_reset(struct ixgbe_adapter *adapter)
4096{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004097 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004098 int err;
4099
Alexander Duyck70864002011-04-27 09:13:56 +00004100 /* lock SFP init bit to prevent race conditions with the watchdog */
4101 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4102 usleep_range(1000, 2000);
4103
4104 /* clear all SFP and link config related flags while holding SFP_INIT */
4105 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4106 IXGBE_FLAG2_SFP_NEEDS_RESET);
4107 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4108
Don Skidmore8ca783a2009-05-26 20:40:47 -07004109 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004110 switch (err) {
4111 case 0:
4112 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004113 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004114 break;
4115 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004116 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004117 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004118 case IXGBE_ERR_EEPROM_VERSION:
4119 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004120 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004121 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00004122 "your hardware. If you are experiencing problems "
4123 "please contact your Intel or hardware "
4124 "representative who provided you with this "
4125 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004126 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004127 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004128 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004129 }
Auke Kok9a799d72007-09-15 14:07:45 -07004130
Alexander Duyck70864002011-04-27 09:13:56 +00004131 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4132
Auke Kok9a799d72007-09-15 14:07:45 -07004133 /* reprogram the RAR[0] in case user changed it. */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004134 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00004135
4136 /* update SAN MAC vmdq pool selection */
4137 if (hw->mac.san_mac_rar_index)
4138 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
Auke Kok9a799d72007-09-15 14:07:45 -07004139}
4140
Auke Kok9a799d72007-09-15 14:07:45 -07004141/**
4142 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004143 * @rx_ring: ring to free buffers from
4144 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004145static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004146{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004147 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004148 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004149 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004150
Alexander Duyck84418e32010-08-19 13:40:54 +00004151 /* ring already cleared, nothing to do */
4152 if (!rx_ring->rx_buffer_info)
4153 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004154
Alexander Duyck84418e32010-08-19 13:40:54 +00004155 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004156 for (i = 0; i < rx_ring->count; i++) {
Alexander Duyckf8003262012-03-03 02:35:52 +00004157 struct ixgbe_rx_buffer *rx_buffer;
Auke Kok9a799d72007-09-15 14:07:45 -07004158
Alexander Duyckf8003262012-03-03 02:35:52 +00004159 rx_buffer = &rx_ring->rx_buffer_info[i];
4160 if (rx_buffer->skb) {
4161 struct sk_buff *skb = rx_buffer->skb;
4162 if (IXGBE_CB(skb)->page_released) {
4163 dma_unmap_page(dev,
4164 IXGBE_CB(skb)->dma,
4165 ixgbe_rx_bufsz(rx_ring),
4166 DMA_FROM_DEVICE);
4167 IXGBE_CB(skb)->page_released = false;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00004168 }
4169 dev_kfree_skb(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07004170 }
Alexander Duyckf8003262012-03-03 02:35:52 +00004171 rx_buffer->skb = NULL;
4172 if (rx_buffer->dma)
4173 dma_unmap_page(dev, rx_buffer->dma,
4174 ixgbe_rx_pg_size(rx_ring),
4175 DMA_FROM_DEVICE);
4176 rx_buffer->dma = 0;
4177 if (rx_buffer->page)
Alexander Duyckdd411ec2012-04-06 04:24:50 +00004178 __free_pages(rx_buffer->page,
4179 ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00004180 rx_buffer->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07004181 }
4182
4183 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4184 memset(rx_ring->rx_buffer_info, 0, size);
4185
4186 /* Zero out the descriptor ring */
4187 memset(rx_ring->desc, 0, rx_ring->size);
4188
Alexander Duyckf8003262012-03-03 02:35:52 +00004189 rx_ring->next_to_alloc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004190 rx_ring->next_to_clean = 0;
4191 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004192}
4193
4194/**
4195 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004196 * @tx_ring: ring to be cleaned
4197 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004198static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004199{
4200 struct ixgbe_tx_buffer *tx_buffer_info;
4201 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004202 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004203
Alexander Duyck84418e32010-08-19 13:40:54 +00004204 /* ring already cleared, nothing to do */
4205 if (!tx_ring->tx_buffer_info)
4206 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004207
Alexander Duyck84418e32010-08-19 13:40:54 +00004208 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004209 for (i = 0; i < tx_ring->count; i++) {
4210 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004211 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004212 }
4213
John Fastabenddad8a3b2012-04-23 12:22:39 +00004214 netdev_tx_reset_queue(txring_txq(tx_ring));
4215
Auke Kok9a799d72007-09-15 14:07:45 -07004216 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4217 memset(tx_ring->tx_buffer_info, 0, size);
4218
4219 /* Zero out the descriptor ring */
4220 memset(tx_ring->desc, 0, tx_ring->size);
4221
4222 tx_ring->next_to_use = 0;
4223 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004224}
4225
4226/**
Auke Kok9a799d72007-09-15 14:07:45 -07004227 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4228 * @adapter: board private structure
4229 **/
4230static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4231{
4232 int i;
4233
4234 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004235 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004236}
4237
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004238/**
4239 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4240 * @adapter: board private structure
4241 **/
4242static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4243{
4244 int i;
4245
4246 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004247 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004248}
4249
Alexander Duycke4911d52011-05-11 07:18:52 +00004250static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4251{
4252 struct hlist_node *node, *node2;
4253 struct ixgbe_fdir_filter *filter;
4254
4255 spin_lock(&adapter->fdir_perfect_lock);
4256
4257 hlist_for_each_entry_safe(filter, node, node2,
4258 &adapter->fdir_filter_list, fdir_node) {
4259 hlist_del(&filter->fdir_node);
4260 kfree(filter);
4261 }
4262 adapter->fdir_filter_count = 0;
4263
4264 spin_unlock(&adapter->fdir_perfect_lock);
4265}
4266
Auke Kok9a799d72007-09-15 14:07:45 -07004267void ixgbe_down(struct ixgbe_adapter *adapter)
4268{
4269 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004270 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004271 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004272 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004273
4274 /* signal that we are down to the interrupt handler */
4275 set_bit(__IXGBE_DOWN, &adapter->state);
4276
4277 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004278 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4279 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004280
Yi Zou2d39d572011-01-06 14:29:56 +00004281 /* disable all enabled rx queues */
4282 for (i = 0; i < adapter->num_rx_queues; i++)
4283 /* this call also flushes the previous write */
4284 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4285
Don Skidmore032b4322011-03-18 09:32:53 +00004286 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004287
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004288 netif_tx_stop_all_queues(netdev);
4289
Alexander Duyck70864002011-04-27 09:13:56 +00004290 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004291 netif_carrier_off(netdev);
4292 netif_tx_disable(netdev);
4293
4294 ixgbe_irq_disable(adapter);
4295
4296 ixgbe_napi_disable_all(adapter);
4297
Alexander Duyckd034acf2011-04-27 09:25:34 +00004298 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4299 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004300 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4301
4302 del_timer_sync(&adapter->service_timer);
4303
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004304 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004305 /* Clear EITR Select mapping */
4306 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4307
4308 /* Mark all the VFs as inactive */
4309 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004310 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004311
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004312 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004313 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004314
Auke Kok9a799d72007-09-15 14:07:45 -07004315 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004316 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004317 }
4318
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004319 /* disable transmits in the hardware now that interrupts are off */
4320 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004321 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004322 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004323 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004324
4325 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004326 switch (hw->mac.type) {
4327 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004328 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004329 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004330 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4331 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004332 break;
4333 default:
4334 break;
4335 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004336
Paul Larson6f4a0e42008-06-24 17:00:56 -07004337 if (!pci_channel_offline(adapter->pdev))
4338 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004339
4340 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4341 if (hw->mac.ops.disable_tx_laser &&
4342 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004343 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004344 (hw->mac.type == ixgbe_mac_82599EB))))
4345 hw->mac.ops.disable_tx_laser(hw);
4346
Auke Kok9a799d72007-09-15 14:07:45 -07004347 ixgbe_clean_all_tx_rings(adapter);
4348 ixgbe_clean_all_rx_rings(adapter);
4349
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004350#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004351 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004352 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004353#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004354}
4355
Auke Kok9a799d72007-09-15 14:07:45 -07004356/**
Auke Kok9a799d72007-09-15 14:07:45 -07004357 * ixgbe_tx_timeout - Respond to a Tx Hang
4358 * @netdev: network interface device structure
4359 **/
4360static void ixgbe_tx_timeout(struct net_device *netdev)
4361{
4362 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4363
4364 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004365 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004366}
4367
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004368/**
Auke Kok9a799d72007-09-15 14:07:45 -07004369 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4370 * @adapter: board private structure to initialize
4371 *
4372 * ixgbe_sw_init initializes the Adapter private data structure.
4373 * Fields are initialized based on PCI device information and
4374 * OS network device settings (MTU size).
4375 **/
4376static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
4377{
4378 struct ixgbe_hw *hw = &adapter->hw;
4379 struct pci_dev *pdev = adapter->pdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004380 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004381#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004382 int j;
4383 struct tc_configuration *tc;
4384#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004385
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004386 /* PCI config space info */
4387
4388 hw->vendor_id = pdev->vendor;
4389 hw->device_id = pdev->device;
4390 hw->revision_id = pdev->revision;
4391 hw->subsystem_vendor_id = pdev->subsystem_vendor;
4392 hw->subsystem_device_id = pdev->subsystem_device;
4393
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004394 /* Set capability flags */
Jesse Brandeburg3ed69d72012-02-10 10:20:02 +00004395 rss = min_t(int, IXGBE_MAX_RSS_INDICES, num_online_cpus());
Alexander Duyckc0876632012-05-10 00:01:46 +00004396 adapter->ring_feature[RING_F_RSS].limit = rss;
Alexander Duyckbd508172010-11-16 19:27:03 -08004397 switch (hw->mac.type) {
4398 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00004399 if (hw->device_id == IXGBE_DEV_ID_82598AT)
4400 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004401 adapter->max_q_vectors = MAX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08004402 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08004403 case ixgbe_mac_X540:
Jacob Keller4f51bf72011-08-20 04:49:45 +00004404 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
4405 case ixgbe_mac_82599EB:
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004406 adapter->max_q_vectors = MAX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00004407 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
4408 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004409 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
4410 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00004411 /* Flow Director hash filters enabled */
Alexander Duyck45b9f502011-01-06 14:29:59 +00004412 adapter->atr_sample_rate = 20;
Alexander Duyckc0876632012-05-10 00:01:46 +00004413 adapter->ring_feature[RING_F_FDIR].limit =
Joe Perchese8e9f692010-09-07 21:34:53 +00004414 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00004415 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00004416#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00004417 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
4418 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
Yi Zou61a0f422009-12-03 11:32:22 +00004419#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00004420 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00004421 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00004422#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00004423#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08004424 break;
4425 default:
4426 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00004427 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004428
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004429#ifdef IXGBE_FCOE
4430 /* FCoE support exists, always init the FCoE lock */
4431 spin_lock_init(&adapter->fcoe.lock);
4432
4433#endif
Alexander Duyck1fc5f032011-06-02 04:28:39 +00004434 /* n-tuple support exists, always init our spinlock */
4435 spin_lock_init(&adapter->fdir_perfect_lock);
4436
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004437#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00004438 switch (hw->mac.type) {
4439 case ixgbe_mac_X540:
4440 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
4441 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
4442 break;
4443 default:
4444 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
4445 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
4446 break;
4447 }
4448
Alexander Duyck2f90b862008-11-20 20:52:10 -08004449 /* Configure DCB traffic classes */
4450 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
4451 tc = &adapter->dcb_cfg.tc_config[j];
4452 tc->path[DCB_TX_CONFIG].bwg_id = 0;
4453 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
4454 tc->path[DCB_RX_CONFIG].bwg_id = 0;
4455 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
4456 tc->dcb_pfc = pfc_disabled;
4457 }
John Fastabend4de2a022011-09-27 03:52:01 +00004458
4459 /* Initialize default user to priority mapping, UPx->TC0 */
4460 tc = &adapter->dcb_cfg.tc_config[0];
4461 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
4462 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
4463
Alexander Duyck2f90b862008-11-20 20:52:10 -08004464 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
4465 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00004466 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004467 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00004468 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
John Fastabendf525c6d22012-04-18 22:42:27 +00004469 memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg,
4470 sizeof(adapter->temp_dcb_cfg));
Alexander Duyck2f90b862008-11-20 20:52:10 -08004471
4472#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004473
4474 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00004475 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00004476 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
John Fastabend9da712d2011-08-23 03:14:22 +00004477 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07004478 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
4479 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00004480 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07004481
Alexander Duyck99d74482012-05-09 08:09:25 +00004482#ifdef CONFIG_PCI_IOV
4483 /* assign number of SR-IOV VFs */
4484 if (hw->mac.type != ixgbe_mac_82598EB)
4485 adapter->num_vfs = (max_vfs > 63) ? 0 : max_vfs;
4486
4487#endif
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004488 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004489 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004490 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004491
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004492 /* set default ring sizes */
4493 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
4494 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
4495
Alexander Duyckbd198052011-06-11 01:45:08 +00004496 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00004497 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00004498
Auke Kok9a799d72007-09-15 14:07:45 -07004499 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004500 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004501 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07004502 return -EIO;
4503 }
4504
Auke Kok9a799d72007-09-15 14:07:45 -07004505 set_bit(__IXGBE_DOWN, &adapter->state);
4506
4507 return 0;
4508}
4509
4510/**
4511 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07004512 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004513 *
4514 * Return 0 on success, negative on failure
4515 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004516int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004517{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004518 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004519 int orig_node = dev_to_node(dev);
4520 int numa_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07004521 int size;
4522
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07004523 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004524
4525 if (tx_ring->q_vector)
4526 numa_node = tx_ring->q_vector->numa_node;
4527
4528 tx_ring->tx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004529 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004530 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004531 if (!tx_ring->tx_buffer_info)
4532 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004533
4534 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08004535 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07004536 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004537
Alexander Duyckde88eee2012-02-08 07:49:59 +00004538 set_dev_node(dev, numa_node);
4539 tx_ring->desc = dma_alloc_coherent(dev,
4540 tx_ring->size,
4541 &tx_ring->dma,
4542 GFP_KERNEL);
4543 set_dev_node(dev, orig_node);
4544 if (!tx_ring->desc)
4545 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
4546 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004547 if (!tx_ring->desc)
4548 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004549
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07004550 tx_ring->next_to_use = 0;
4551 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004552 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004553
4554err:
4555 vfree(tx_ring->tx_buffer_info);
4556 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004557 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004558 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004559}
4560
4561/**
Alexander Duyck69888672008-09-11 20:05:39 -07004562 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
4563 * @adapter: board private structure
4564 *
4565 * If this function returns with an error, then it's possible one or
4566 * more of the rings is populated (while the rest are not). It is the
4567 * callers duty to clean those orphaned rings.
4568 *
4569 * Return 0 on success, negative on failure
4570 **/
4571static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
4572{
4573 int i, err = 0;
4574
4575 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004576 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004577 if (!err)
4578 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004579
Emil Tantilov396e7992010-07-01 20:05:12 +00004580 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004581 goto err_setup_tx;
Alexander Duyck69888672008-09-11 20:05:39 -07004582 }
4583
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004584 return 0;
4585err_setup_tx:
4586 /* rewind the index freeing the rings as we go */
4587 while (i--)
4588 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004589 return err;
4590}
4591
4592/**
Auke Kok9a799d72007-09-15 14:07:45 -07004593 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07004594 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004595 *
4596 * Returns 0 on success, negative on failure
4597 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004598int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004599{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004600 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004601 int orig_node = dev_to_node(dev);
4602 int numa_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004603 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07004604
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07004605 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004606
4607 if (rx_ring->q_vector)
4608 numa_node = rx_ring->q_vector->numa_node;
4609
4610 rx_ring->rx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004611 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004612 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004613 if (!rx_ring->rx_buffer_info)
4614 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004615
Auke Kok9a799d72007-09-15 14:07:45 -07004616 /* Round up to nearest 4K */
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07004617 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
4618 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004619
Alexander Duyckde88eee2012-02-08 07:49:59 +00004620 set_dev_node(dev, numa_node);
4621 rx_ring->desc = dma_alloc_coherent(dev,
4622 rx_ring->size,
4623 &rx_ring->dma,
4624 GFP_KERNEL);
4625 set_dev_node(dev, orig_node);
4626 if (!rx_ring->desc)
4627 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
4628 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004629 if (!rx_ring->desc)
4630 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004631
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07004632 rx_ring->next_to_clean = 0;
4633 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004634
4635 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004636err:
4637 vfree(rx_ring->rx_buffer_info);
4638 rx_ring->rx_buffer_info = NULL;
4639 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07004640 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004641}
4642
4643/**
Alexander Duyck69888672008-09-11 20:05:39 -07004644 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
4645 * @adapter: board private structure
4646 *
4647 * If this function returns with an error, then it's possible one or
4648 * more of the rings is populated (while the rest are not). It is the
4649 * callers duty to clean those orphaned rings.
4650 *
4651 * Return 0 on success, negative on failure
4652 **/
Alexander Duyck69888672008-09-11 20:05:39 -07004653static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
4654{
4655 int i, err = 0;
4656
4657 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004658 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004659 if (!err)
4660 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004661
Emil Tantilov396e7992010-07-01 20:05:12 +00004662 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004663 goto err_setup_rx;
Alexander Duyck69888672008-09-11 20:05:39 -07004664 }
4665
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004666#ifdef IXGBE_FCOE
4667 err = ixgbe_setup_fcoe_ddp_resources(adapter);
4668 if (!err)
4669#endif
4670 return 0;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004671err_setup_rx:
4672 /* rewind the index freeing the rings as we go */
4673 while (i--)
4674 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004675 return err;
4676}
4677
4678/**
Auke Kok9a799d72007-09-15 14:07:45 -07004679 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004680 * @tx_ring: Tx descriptor ring for a specific queue
4681 *
4682 * Free all transmit software resources
4683 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004684void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004685{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004686 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004687
4688 vfree(tx_ring->tx_buffer_info);
4689 tx_ring->tx_buffer_info = NULL;
4690
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004691 /* if not set, then don't free */
4692 if (!tx_ring->desc)
4693 return;
4694
4695 dma_free_coherent(tx_ring->dev, tx_ring->size,
4696 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004697
4698 tx_ring->desc = NULL;
4699}
4700
4701/**
4702 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
4703 * @adapter: board private structure
4704 *
4705 * Free all transmit software resources
4706 **/
4707static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
4708{
4709 int i;
4710
4711 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004712 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004713 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004714}
4715
4716/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07004717 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07004718 * @rx_ring: ring to clean the resources from
4719 *
4720 * Free all receive software resources
4721 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004722void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004723{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004724 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004725
4726 vfree(rx_ring->rx_buffer_info);
4727 rx_ring->rx_buffer_info = NULL;
4728
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004729 /* if not set, then don't free */
4730 if (!rx_ring->desc)
4731 return;
4732
4733 dma_free_coherent(rx_ring->dev, rx_ring->size,
4734 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004735
4736 rx_ring->desc = NULL;
4737}
4738
4739/**
4740 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
4741 * @adapter: board private structure
4742 *
4743 * Free all receive software resources
4744 **/
4745static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
4746{
4747 int i;
4748
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004749#ifdef IXGBE_FCOE
4750 ixgbe_free_fcoe_ddp_resources(adapter);
4751
4752#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004753 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004754 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004755 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004756}
4757
4758/**
Auke Kok9a799d72007-09-15 14:07:45 -07004759 * ixgbe_change_mtu - Change the Maximum Transfer Unit
4760 * @netdev: network interface device structure
4761 * @new_mtu: new value for maximum frame size
4762 *
4763 * Returns 0 on success, negative on failure
4764 **/
4765static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
4766{
4767 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4768 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
4769
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07004770 /* MTU < 68 is an error and causes problems on some kernels */
Alexander Duyck655309e2012-02-08 07:50:35 +00004771 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
4772 return -EINVAL;
4773
4774 /*
4775 * For 82599EB we cannot allow PF to change MTU greater than 1500
4776 * in SR-IOV mode as it may cause buffer overruns in guest VFs that
4777 * don't allocate and chain buffers correctly.
4778 */
4779 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
4780 (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
4781 (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
Greg Rosee9f98072011-01-26 01:06:07 +00004782 return -EINVAL;
Auke Kok9a799d72007-09-15 14:07:45 -07004783
Emil Tantilov396e7992010-07-01 20:05:12 +00004784 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Alexander Duyck655309e2012-02-08 07:50:35 +00004785
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004786 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07004787 netdev->mtu = new_mtu;
4788
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004789 if (netif_running(netdev))
4790 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004791
4792 return 0;
4793}
4794
4795/**
4796 * ixgbe_open - Called when a network interface is made active
4797 * @netdev: network interface device structure
4798 *
4799 * Returns 0 on success, negative value on failure
4800 *
4801 * The open entry point is called when a network interface is made
4802 * active by the system (IFF_UP). At this point all resources needed
4803 * for transmit and receive operations are allocated, the interrupt
4804 * handler is registered with the OS, the watchdog timer is started,
4805 * and the stack is notified that the interface is ready.
4806 **/
4807static int ixgbe_open(struct net_device *netdev)
4808{
4809 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4810 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07004811
Auke Kok4bebfaa2008-02-11 09:26:01 -08004812 /* disallow open during test */
4813 if (test_bit(__IXGBE_TESTING, &adapter->state))
4814 return -EBUSY;
4815
Jesse Brandeburg54386462009-04-17 20:44:27 +00004816 netif_carrier_off(netdev);
4817
Auke Kok9a799d72007-09-15 14:07:45 -07004818 /* allocate transmit descriptors */
4819 err = ixgbe_setup_all_tx_resources(adapter);
4820 if (err)
4821 goto err_setup_tx;
4822
Auke Kok9a799d72007-09-15 14:07:45 -07004823 /* allocate receive descriptors */
4824 err = ixgbe_setup_all_rx_resources(adapter);
4825 if (err)
4826 goto err_setup_rx;
4827
4828 ixgbe_configure(adapter);
4829
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004830 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004831 if (err)
4832 goto err_req_irq;
4833
Alexander Duyckac802f52012-07-12 05:52:53 +00004834 /* Notify the stack of the actual queue counts. */
4835 err = netif_set_real_num_tx_queues(netdev,
4836 adapter->num_rx_pools > 1 ? 1 :
4837 adapter->num_tx_queues);
4838 if (err)
4839 goto err_set_queues;
4840
4841
4842 err = netif_set_real_num_rx_queues(netdev,
4843 adapter->num_rx_pools > 1 ? 1 :
4844 adapter->num_rx_queues);
4845 if (err)
4846 goto err_set_queues;
4847
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004848 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004849
4850 return 0;
4851
Alexander Duyckac802f52012-07-12 05:52:53 +00004852err_set_queues:
4853 ixgbe_free_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004854err_req_irq:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004855 ixgbe_free_all_rx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004856err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004857 ixgbe_free_all_tx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004858err_setup_tx:
Auke Kok9a799d72007-09-15 14:07:45 -07004859 ixgbe_reset(adapter);
4860
4861 return err;
4862}
4863
4864/**
4865 * ixgbe_close - Disables a network interface
4866 * @netdev: network interface device structure
4867 *
4868 * Returns 0, this is not allowed to fail
4869 *
4870 * The close entry point is called when an interface is de-activated
4871 * by the OS. The hardware is still under the drivers control, but
4872 * needs to be disabled. A global MAC reset is issued to stop the
4873 * hardware, and all transmit and receive resources are freed.
4874 **/
4875static int ixgbe_close(struct net_device *netdev)
4876{
4877 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07004878
4879 ixgbe_down(adapter);
4880 ixgbe_free_irq(adapter);
4881
Alexander Duycke4911d52011-05-11 07:18:52 +00004882 ixgbe_fdir_filter_exit(adapter);
4883
Auke Kok9a799d72007-09-15 14:07:45 -07004884 ixgbe_free_all_tx_resources(adapter);
4885 ixgbe_free_all_rx_resources(adapter);
4886
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08004887 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004888
4889 return 0;
4890}
4891
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004892#ifdef CONFIG_PM
4893static int ixgbe_resume(struct pci_dev *pdev)
4894{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004895 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4896 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004897 u32 err;
4898
4899 pci_set_power_state(pdev, PCI_D0);
4900 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08004901 /*
4902 * pci_restore_state clears dev->state_saved so call
4903 * pci_save_state to restore it.
4904 */
4905 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00004906
4907 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004908 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004909 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004910 return err;
4911 }
4912 pci_set_master(pdev);
4913
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07004914 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004915
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004916 ixgbe_reset(adapter);
4917
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00004918 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
4919
Alexander Duyckac802f52012-07-12 05:52:53 +00004920 rtnl_lock();
4921 err = ixgbe_init_interrupt_scheme(adapter);
4922 if (!err && netif_running(netdev))
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004923 err = ixgbe_open(netdev);
Alexander Duyckac802f52012-07-12 05:52:53 +00004924
4925 rtnl_unlock();
4926
4927 if (err)
4928 return err;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004929
4930 netif_device_attach(netdev);
4931
4932 return 0;
4933}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004934#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00004935
4936static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004937{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004938 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4939 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004940 struct ixgbe_hw *hw = &adapter->hw;
4941 u32 ctrl, fctrl;
4942 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004943#ifdef CONFIG_PM
4944 int retval = 0;
4945#endif
4946
4947 netif_device_detach(netdev);
4948
4949 if (netif_running(netdev)) {
Don Skidmoreab6039a2012-03-17 05:51:52 +00004950 rtnl_lock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004951 ixgbe_down(adapter);
4952 ixgbe_free_irq(adapter);
4953 ixgbe_free_all_tx_resources(adapter);
4954 ixgbe_free_all_rx_resources(adapter);
Don Skidmoreab6039a2012-03-17 05:51:52 +00004955 rtnl_unlock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004956 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004957
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08004958 ixgbe_clear_interrupt_scheme(adapter);
4959
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004960#ifdef CONFIG_PM
4961 retval = pci_save_state(pdev);
4962 if (retval)
4963 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004964
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004965#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004966 if (wufc) {
4967 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004968
Don Skidmorec509e752012-04-05 08:12:05 +00004969 /*
4970 * enable the optics for both mult-speed fiber and
4971 * 82599 SFP+ fiber as we can WoL.
4972 */
4973 if (hw->mac.ops.enable_tx_laser &&
4974 (hw->phy.multispeed_fiber ||
4975 (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber &&
4976 hw->mac.type == ixgbe_mac_82599EB)))
4977 hw->mac.ops.enable_tx_laser(hw);
4978
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004979 /* turn on all-multi mode if wake on multicast is enabled */
4980 if (wufc & IXGBE_WUFC_MC) {
4981 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4982 fctrl |= IXGBE_FCTRL_MPE;
4983 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4984 }
4985
4986 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
4987 ctrl |= IXGBE_CTRL_GIO_DIS;
4988 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
4989
4990 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
4991 } else {
4992 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
4993 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
4994 }
4995
Alexander Duyckbd508172010-11-16 19:27:03 -08004996 switch (hw->mac.type) {
4997 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07004998 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08004999 break;
5000 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005001 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005002 pci_wake_from_d3(pdev, !!wufc);
5003 break;
5004 default:
5005 break;
5006 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005007
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005008 *enable_wake = !!wufc;
5009
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005010 ixgbe_release_hw_control(adapter);
5011
5012 pci_disable_device(pdev);
5013
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005014 return 0;
5015}
5016
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005017#ifdef CONFIG_PM
5018static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5019{
5020 int retval;
5021 bool wake;
5022
5023 retval = __ixgbe_shutdown(pdev, &wake);
5024 if (retval)
5025 return retval;
5026
5027 if (wake) {
5028 pci_prepare_to_sleep(pdev);
5029 } else {
5030 pci_wake_from_d3(pdev, false);
5031 pci_set_power_state(pdev, PCI_D3hot);
5032 }
5033
5034 return 0;
5035}
5036#endif /* CONFIG_PM */
5037
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005038static void ixgbe_shutdown(struct pci_dev *pdev)
5039{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005040 bool wake;
5041
5042 __ixgbe_shutdown(pdev, &wake);
5043
5044 if (system_state == SYSTEM_POWER_OFF) {
5045 pci_wake_from_d3(pdev, wake);
5046 pci_set_power_state(pdev, PCI_D3hot);
5047 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005048}
5049
5050/**
Auke Kok9a799d72007-09-15 14:07:45 -07005051 * ixgbe_update_stats - Update the board statistics counters.
5052 * @adapter: board private structure
5053 **/
5054void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5055{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005056 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005057 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005058 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005059 u64 total_mpc = 0;
5060 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005061 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5062 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005063 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005064
Don Skidmored08935c2010-06-11 13:20:29 +00005065 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5066 test_bit(__IXGBE_RESETTING, &adapter->state))
5067 return;
5068
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005069 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005070 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005071 u64 rsc_flush = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005072 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005073 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5074 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005075 }
5076 adapter->rsc_total_count = rsc_count;
5077 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005078 }
5079
Alexander Duyck5b7da512010-11-16 19:26:50 -08005080 for (i = 0; i < adapter->num_rx_queues; i++) {
5081 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5082 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5083 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5084 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005085 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005086 bytes += rx_ring->stats.bytes;
5087 packets += rx_ring->stats.packets;
5088 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005089 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005090 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5091 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005092 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005093 netdev->stats.rx_bytes = bytes;
5094 netdev->stats.rx_packets = packets;
5095
5096 bytes = 0;
5097 packets = 0;
5098 /* gather some stats to the adapter struct that are per queue */
5099 for (i = 0; i < adapter->num_tx_queues; i++) {
5100 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5101 restart_queue += tx_ring->tx_stats.restart_queue;
5102 tx_busy += tx_ring->tx_stats.tx_busy;
5103 bytes += tx_ring->stats.bytes;
5104 packets += tx_ring->stats.packets;
5105 }
5106 adapter->restart_queue = restart_queue;
5107 adapter->tx_busy = tx_busy;
5108 netdev->stats.tx_bytes = bytes;
5109 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005110
Joe Perches7ca647b2010-09-07 21:35:40 +00005111 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005112
5113 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005114 for (i = 0; i < 8; i++) {
5115 /* for packet buffers not used, the register should read 0 */
5116 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5117 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005118 hwstats->mpc[i] += mpc;
5119 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005120 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5121 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005122 switch (hw->mac.type) {
5123 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005124 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5125 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5126 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005127 hwstats->pxonrxc[i] +=
5128 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005129 break;
5130 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005131 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005132 hwstats->pxonrxc[i] +=
5133 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005134 break;
5135 default:
5136 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005137 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005138 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005139
5140 /*16 register reads */
5141 for (i = 0; i < 16; i++) {
5142 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5143 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5144 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5145 (hw->mac.type == ixgbe_mac_X540)) {
5146 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5147 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5148 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5149 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5150 }
5151 }
5152
Joe Perches7ca647b2010-09-07 21:35:40 +00005153 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005154 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005155 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005156
John Fastabendc84d3242010-11-16 19:27:12 -08005157 ixgbe_update_xoff_received(adapter);
5158
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005159 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005160 switch (hw->mac.type) {
5161 case ixgbe_mac_82598EB:
5162 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005163 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5164 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5165 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5166 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005167 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005168 /* OS2BMC stats are X540 only*/
5169 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5170 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5171 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5172 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5173 case ixgbe_mac_82599EB:
Alexander Duycka4d4f622012-03-28 08:03:32 +00005174 for (i = 0; i < 16; i++)
5175 adapter->hw_rx_no_dma_resources +=
5176 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005177 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005178 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005179 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005180 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005181 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005182 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005183 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005184 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5185 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005186#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005187 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5188 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5189 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5190 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5191 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5192 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005193 /* Add up per cpu counters for total ddp aloc fail */
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005194 if (adapter->fcoe.ddp_pool) {
5195 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5196 struct ixgbe_fcoe_ddp_pool *ddp_pool;
5197 unsigned int cpu;
5198 u64 noddp = 0, noddp_ext_buff = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005199 for_each_possible_cpu(cpu) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005200 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
5201 noddp += ddp_pool->noddp;
5202 noddp_ext_buff += ddp_pool->noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005203 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005204 hwstats->fcoe_noddp = noddp;
5205 hwstats->fcoe_noddp_ext_buff = noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005206 }
Yi Zou6d455222009-05-13 13:12:16 +00005207#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005208 break;
5209 default:
5210 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005211 }
Auke Kok9a799d72007-09-15 14:07:45 -07005212 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005213 hwstats->bprc += bprc;
5214 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005215 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005216 hwstats->mprc -= bprc;
5217 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5218 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5219 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5220 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5221 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5222 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5223 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5224 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005225 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005226 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005227 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005228 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005229 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5230 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005231 /*
5232 * 82598 errata - tx of flow control packets is included in tx counters
5233 */
5234 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005235 hwstats->gptc -= xon_off_tot;
5236 hwstats->mptc -= xon_off_tot;
5237 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5238 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5239 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5240 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5241 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5242 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5243 hwstats->ptc64 -= xon_off_tot;
5244 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5245 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5246 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5247 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5248 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5249 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005250
5251 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005252 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005253
5254 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005255 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005256 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005257 netdev->stats.rx_length_errors = hwstats->rlec;
5258 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005259 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005260}
5261
5262/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005263 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005264 * @adapter: pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005265 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005266static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005267{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005268 struct ixgbe_hw *hw = &adapter->hw;
5269 int i;
5270
Alexander Duyckd034acf2011-04-27 09:25:34 +00005271 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5272 return;
5273
5274 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5275
5276 /* if interface is down do nothing */
5277 if (test_bit(__IXGBE_DOWN, &adapter->state))
5278 return;
5279
5280 /* do nothing if we are not using signature filters */
5281 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5282 return;
5283
5284 adapter->fdir_overflow++;
5285
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005286 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5287 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005288 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005289 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005290 /* re-enable flow director interrupts */
5291 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005292 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005293 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005294 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005295 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005296}
5297
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005298/**
5299 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005300 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005301 *
5302 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005303 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005304 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005305 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005306 */
5307static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5308{
Auke Kok9a799d72007-09-15 14:07:45 -07005309 struct ixgbe_hw *hw = &adapter->hw;
5310 u64 eics = 0;
5311 int i;
5312
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005313 /* If we're down or resetting, just bail */
5314 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5315 test_bit(__IXGBE_RESETTING, &adapter->state))
5316 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005317
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005318 /* Force detection of hung controller */
5319 if (netif_carrier_ok(adapter->netdev)) {
5320 for (i = 0; i < adapter->num_tx_queues; i++)
5321 set_check_for_tx_hang(adapter->tx_ring[i]);
5322 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005323
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005324 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005325 /*
5326 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005327 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005328 * would set *both* EIMS and EICS for any bit in EIAM
5329 */
5330 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5331 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005332 } else {
5333 /* get one bit for every active tx/rx interrupt vector */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00005334 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005335 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00005336 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005337 eics |= ((u64)1 << i);
5338 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005339 }
5340
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005341 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005342 ixgbe_irq_rearm_queues(adapter, eics);
5343
Alexander Duyckfe49f042009-06-04 16:00:09 +00005344}
5345
5346/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005347 * ixgbe_watchdog_update_link - update the link status
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005348 * @adapter: pointer to the device adapter structure
5349 * @link_speed: pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005350 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005351static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005352{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005353 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005354 u32 link_speed = adapter->link_speed;
5355 bool link_up = adapter->link_up;
Alexander Duyck041441d2012-04-19 17:48:48 +00005356 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005357
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005358 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5359 return;
5360
5361 if (hw->mac.ops.check_link) {
5362 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005363 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005364 /* always assume link is up, if no check link function */
5365 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
5366 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005367 }
Alexander Duyck041441d2012-04-19 17:48:48 +00005368
5369 if (adapter->ixgbe_ieee_pfc)
5370 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
5371
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005372 if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
Alexander Duyck041441d2012-04-19 17:48:48 +00005373 hw->mac.ops.fc_enable(hw);
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005374 ixgbe_set_rx_drop_en(adapter);
5375 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005376
5377 if (link_up ||
5378 time_after(jiffies, (adapter->link_check_timeout +
5379 IXGBE_TRY_LINK_TIMEOUT))) {
5380 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5381 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
5382 IXGBE_WRITE_FLUSH(hw);
5383 }
5384
5385 adapter->link_up = link_up;
5386 adapter->link_speed = link_speed;
5387}
5388
5389/**
5390 * ixgbe_watchdog_link_is_up - update netif_carrier status and
5391 * print link up message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005392 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005393 **/
5394static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
5395{
5396 struct net_device *netdev = adapter->netdev;
5397 struct ixgbe_hw *hw = &adapter->hw;
5398 u32 link_speed = adapter->link_speed;
5399 bool flow_rx, flow_tx;
5400
5401 /* only continue if link was previously down */
5402 if (netif_carrier_ok(netdev))
5403 return;
5404
5405 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
5406
5407 switch (hw->mac.type) {
5408 case ixgbe_mac_82598EB: {
5409 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5410 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
5411 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
5412 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
5413 }
5414 break;
5415 case ixgbe_mac_X540:
5416 case ixgbe_mac_82599EB: {
5417 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
5418 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
5419 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
5420 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
5421 }
5422 break;
5423 default:
5424 flow_tx = false;
5425 flow_rx = false;
5426 break;
5427 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005428
5429#ifdef CONFIG_IXGBE_PTP
5430 ixgbe_ptp_start_cyclecounter(adapter);
5431#endif
5432
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005433 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
5434 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
5435 "10 Gbps" :
5436 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
5437 "1 Gbps" :
5438 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
5439 "100 Mbps" :
5440 "unknown speed"))),
5441 ((flow_rx && flow_tx) ? "RX/TX" :
5442 (flow_rx ? "RX" :
5443 (flow_tx ? "TX" : "None"))));
5444
5445 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005446 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005447
5448 /* ping all the active vfs to let them know link has changed */
5449 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005450}
5451
5452/**
5453 * ixgbe_watchdog_link_is_down - update netif_carrier status and
5454 * print link down message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005455 * @adapter: pointer to the adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005456 **/
Alexander Duyck581330b2012-02-08 07:51:47 +00005457static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005458{
5459 struct net_device *netdev = adapter->netdev;
5460 struct ixgbe_hw *hw = &adapter->hw;
5461
5462 adapter->link_up = false;
5463 adapter->link_speed = 0;
5464
5465 /* only continue if link was up previously */
5466 if (!netif_carrier_ok(netdev))
5467 return;
5468
5469 /* poll for SFP+ cable when link is down */
5470 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
5471 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
5472
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005473#ifdef CONFIG_IXGBE_PTP
5474 ixgbe_ptp_start_cyclecounter(adapter);
5475#endif
5476
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005477 e_info(drv, "NIC Link is Down\n");
5478 netif_carrier_off(netdev);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005479
5480 /* ping all the active vfs to let them know link has changed */
5481 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005482}
5483
5484/**
5485 * ixgbe_watchdog_flush_tx - flush queues on link down
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005486 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005487 **/
5488static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
5489{
5490 int i;
5491 int some_tx_pending = 0;
5492
5493 if (!netif_carrier_ok(adapter->netdev)) {
5494 for (i = 0; i < adapter->num_tx_queues; i++) {
5495 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5496 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
5497 some_tx_pending = 1;
5498 break;
5499 }
5500 }
5501
5502 if (some_tx_pending) {
5503 /* We've lost link, so the controller stops DMA,
5504 * but we've got queued Tx work that's never going
5505 * to get done, so reset controller to flush Tx.
5506 * (Do the reset outside of interrupt context).
5507 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005508 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005509 }
5510 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005511}
5512
Greg Rosea985b6c32010-11-18 03:02:52 +00005513static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
5514{
5515 u32 ssvpc;
5516
5517 /* Do not perform spoof check for 82598 */
5518 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
5519 return;
5520
5521 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
5522
5523 /*
5524 * ssvpc register is cleared on read, if zero then no
5525 * spoofed packets in the last interval.
5526 */
5527 if (!ssvpc)
5528 return;
5529
5530 e_warn(drv, "%d Spoofed packets detected\n", ssvpc);
5531}
5532
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005533/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005534 * ixgbe_watchdog_subtask - check and bring link up
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005535 * @adapter: pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005536 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005537static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005538{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005539 /* if interface is down do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00005540 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5541 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005542 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005543
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005544 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00005545
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005546 if (adapter->link_up)
5547 ixgbe_watchdog_link_is_up(adapter);
5548 else
5549 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005550
Greg Rosea985b6c32010-11-18 03:02:52 +00005551 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005552 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005553
5554 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005555}
5556
Alexander Duyck70864002011-04-27 09:13:56 +00005557/**
5558 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005559 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005560 **/
5561static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
5562{
5563 struct ixgbe_hw *hw = &adapter->hw;
5564 s32 err;
5565
5566 /* not searching for SFP so there is nothing to do here */
5567 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
5568 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5569 return;
5570
5571 /* someone else is in init, wait until next service event */
5572 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5573 return;
5574
5575 err = hw->phy.ops.identify_sfp(hw);
5576 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5577 goto sfp_out;
5578
5579 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
5580 /* If no cable is present, then we need to reset
5581 * the next time we find a good cable. */
5582 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
5583 }
5584
5585 /* exit on error */
5586 if (err)
5587 goto sfp_out;
5588
5589 /* exit if reset not needed */
5590 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5591 goto sfp_out;
5592
5593 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
5594
5595 /*
5596 * A module may be identified correctly, but the EEPROM may not have
5597 * support for that module. setup_sfp() will fail in that case, so
5598 * we should not allow that module to load.
5599 */
5600 if (hw->mac.type == ixgbe_mac_82598EB)
5601 err = hw->phy.ops.reset(hw);
5602 else
5603 err = hw->mac.ops.setup_sfp(hw);
5604
5605 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5606 goto sfp_out;
5607
5608 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
5609 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
5610
5611sfp_out:
5612 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5613
5614 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
5615 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
5616 e_dev_err("failed to initialize because an unsupported "
5617 "SFP+ module type was detected.\n");
5618 e_dev_err("Reload the driver after installing a "
5619 "supported module.\n");
5620 unregister_netdev(adapter->netdev);
5621 }
5622}
5623
5624/**
5625 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005626 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005627 **/
5628static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
5629{
5630 struct ixgbe_hw *hw = &adapter->hw;
5631 u32 autoneg;
5632 bool negotiation;
5633
5634 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
5635 return;
5636
5637 /* someone else is in init, wait until next service event */
5638 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5639 return;
5640
5641 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
5642
5643 autoneg = hw->phy.autoneg_advertised;
5644 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
5645 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Alexander Duyck70864002011-04-27 09:13:56 +00005646 if (hw->mac.ops.setup_link)
5647 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
5648
5649 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5650 adapter->link_check_timeout = jiffies;
5651 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5652}
5653
Greg Rose83c61fa2011-09-07 05:59:35 +00005654#ifdef CONFIG_PCI_IOV
5655static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
5656{
5657 int vf;
5658 struct ixgbe_hw *hw = &adapter->hw;
5659 struct net_device *netdev = adapter->netdev;
5660 u32 gpc;
5661 u32 ciaa, ciad;
5662
5663 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
5664 if (gpc) /* If incrementing then no need for the check below */
5665 return;
5666 /*
5667 * Check to see if a bad DMA write target from an errant or
5668 * malicious VF has caused a PCIe error. If so then we can
5669 * issue a VFLR to the offending VF(s) and then resume without
5670 * requesting a full slot reset.
5671 */
5672
5673 for (vf = 0; vf < adapter->num_vfs; vf++) {
5674 ciaa = (vf << 16) | 0x80000000;
5675 /* 32 bit read so align, we really want status at offset 6 */
5676 ciaa |= PCI_COMMAND;
5677 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5678 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
5679 ciaa &= 0x7FFFFFFF;
5680 /* disable debug mode asap after reading data */
5681 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5682 /* Get the upper 16 bits which will be the PCI status reg */
5683 ciad >>= 16;
5684 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
5685 netdev_err(netdev, "VF %d Hung DMA\n", vf);
5686 /* Issue VFLR */
5687 ciaa = (vf << 16) | 0x80000000;
5688 ciaa |= 0xA8;
5689 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5690 ciad = 0x00008000; /* VFLR */
5691 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
5692 ciaa &= 0x7FFFFFFF;
5693 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5694 }
5695 }
5696}
5697
5698#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005699/**
5700 * ixgbe_service_timer - Timer Call-back
5701 * @data: pointer to adapter cast into an unsigned long
5702 **/
5703static void ixgbe_service_timer(unsigned long data)
5704{
5705 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
5706 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00005707 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00005708
5709 /* poll faster when waiting for link */
5710 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
5711 next_event_offset = HZ / 10;
5712 else
5713 next_event_offset = HZ * 2;
5714
Greg Rose83c61fa2011-09-07 05:59:35 +00005715#ifdef CONFIG_PCI_IOV
Alexander Duyck6bb78cf2012-02-08 07:51:22 +00005716 /*
5717 * don't bother with SR-IOV VF DMA hang check if there are
5718 * no VFs or the link is down
5719 */
5720 if (!adapter->num_vfs ||
5721 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5722 goto normal_timer_service;
5723
5724 /* If we have VFs allocated then we must check for DMA hangs */
5725 ixgbe_check_for_bad_vf(adapter);
5726 next_event_offset = HZ / 50;
5727 adapter->timer_event_accumulator++;
5728
5729 if (adapter->timer_event_accumulator >= 100)
5730 adapter->timer_event_accumulator = 0;
5731 else
5732 ready = false;
5733
5734normal_timer_service:
Greg Rose83c61fa2011-09-07 05:59:35 +00005735#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005736 /* Reset the timer */
5737 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
5738
Greg Rose83c61fa2011-09-07 05:59:35 +00005739 if (ready)
5740 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005741}
5742
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005743static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
5744{
5745 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
5746 return;
5747
5748 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
5749
5750 /* If we're already down or resetting, just bail */
5751 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5752 test_bit(__IXGBE_RESETTING, &adapter->state))
5753 return;
5754
5755 ixgbe_dump(adapter);
5756 netdev_err(adapter->netdev, "Reset adapter\n");
5757 adapter->tx_timeout_count++;
5758
5759 ixgbe_reinit_locked(adapter);
5760}
5761
Alexander Duyck70864002011-04-27 09:13:56 +00005762/**
5763 * ixgbe_service_task - manages and runs subtasks
5764 * @work: pointer to work_struct containing our data
5765 **/
5766static void ixgbe_service_task(struct work_struct *work)
5767{
5768 struct ixgbe_adapter *adapter = container_of(work,
5769 struct ixgbe_adapter,
5770 service_task);
5771
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005772 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005773 ixgbe_sfp_detection_subtask(adapter);
5774 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00005775 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005776 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00005777 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005778 ixgbe_check_hang_subtask(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005779#ifdef CONFIG_IXGBE_PTP
5780 ixgbe_ptp_overflow_check(adapter);
5781#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005782
5783 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005784}
5785
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005786static int ixgbe_tso(struct ixgbe_ring *tx_ring,
5787 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005788 u8 *hdr_len)
Alexander Duyck897ab152011-05-27 05:31:47 +00005789{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005790 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005791 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005792 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07005793
Alexander Duyck897ab152011-05-27 05:31:47 +00005794 if (!skb_is_gso(skb))
5795 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005796
Alexander Duyck897ab152011-05-27 05:31:47 +00005797 if (skb_header_cloned(skb)) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00005798 int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Alexander Duyck897ab152011-05-27 05:31:47 +00005799 if (err)
5800 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00005801 }
5802
Alexander Duyck897ab152011-05-27 05:31:47 +00005803 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
5804 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
5805
Alexander Duyck244e27a2012-02-08 07:51:11 +00005806 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005807 struct iphdr *iph = ip_hdr(skb);
5808 iph->tot_len = 0;
5809 iph->check = 0;
5810 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5811 iph->daddr, 0,
5812 IPPROTO_TCP,
5813 0);
5814 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005815 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5816 IXGBE_TX_FLAGS_CSUM |
5817 IXGBE_TX_FLAGS_IPV4;
Alexander Duyck897ab152011-05-27 05:31:47 +00005818 } else if (skb_is_gso_v6(skb)) {
5819 ipv6_hdr(skb)->payload_len = 0;
5820 tcp_hdr(skb)->check =
5821 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
5822 &ipv6_hdr(skb)->daddr,
5823 0, IPPROTO_TCP, 0);
Alexander Duyck244e27a2012-02-08 07:51:11 +00005824 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5825 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck897ab152011-05-27 05:31:47 +00005826 }
5827
Alexander Duyck091a6242012-02-08 07:51:01 +00005828 /* compute header lengths */
Alexander Duyck897ab152011-05-27 05:31:47 +00005829 l4len = tcp_hdrlen(skb);
5830 *hdr_len = skb_transport_offset(skb) + l4len;
5831
Alexander Duyck091a6242012-02-08 07:51:01 +00005832 /* update gso size and bytecount with header size */
5833 first->gso_segs = skb_shinfo(skb)->gso_segs;
5834 first->bytecount += (first->gso_segs - 1) * *hdr_len;
5835
Alexander Duyck897ab152011-05-27 05:31:47 +00005836 /* mss_l4len_id: use 1 as index for TSO */
5837 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
5838 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
5839 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
5840
5841 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
5842 vlan_macip_lens = skb_network_header_len(skb);
5843 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005844 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005845
5846 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005847 mss_l4len_idx);
Alexander Duyck897ab152011-05-27 05:31:47 +00005848
5849 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00005850}
5851
Alexander Duyck244e27a2012-02-08 07:51:11 +00005852static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
5853 struct ixgbe_tx_buffer *first)
Auke Kok9a799d72007-09-15 14:07:45 -07005854{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005855 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005856 u32 vlan_macip_lens = 0;
5857 u32 mss_l4len_idx = 0;
5858 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005859
Alexander Duyck897ab152011-05-27 05:31:47 +00005860 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00005861 if (!(first->tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
5862 !(first->tx_flags & IXGBE_TX_FLAGS_TXSW))
5863 return;
Alexander Duyck897ab152011-05-27 05:31:47 +00005864 } else {
5865 u8 l4_hdr = 0;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005866 switch (first->protocol) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005867 case __constant_htons(ETH_P_IP):
5868 vlan_macip_lens |= skb_network_header_len(skb);
5869 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
5870 l4_hdr = ip_hdr(skb)->protocol;
5871 break;
5872 case __constant_htons(ETH_P_IPV6):
5873 vlan_macip_lens |= skb_network_header_len(skb);
5874 l4_hdr = ipv6_hdr(skb)->nexthdr;
5875 break;
5876 default:
5877 if (unlikely(net_ratelimit())) {
5878 dev_warn(tx_ring->dev,
5879 "partial checksum but proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005880 first->protocol);
Alexander Duyck897ab152011-05-27 05:31:47 +00005881 }
5882 break;
5883 }
Auke Kok9a799d72007-09-15 14:07:45 -07005884
Alexander Duyck897ab152011-05-27 05:31:47 +00005885 switch (l4_hdr) {
5886 case IPPROTO_TCP:
5887 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
5888 mss_l4len_idx = tcp_hdrlen(skb) <<
5889 IXGBE_ADVTXD_L4LEN_SHIFT;
5890 break;
5891 case IPPROTO_SCTP:
5892 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
5893 mss_l4len_idx = sizeof(struct sctphdr) <<
5894 IXGBE_ADVTXD_L4LEN_SHIFT;
5895 break;
5896 case IPPROTO_UDP:
5897 mss_l4len_idx = sizeof(struct udphdr) <<
5898 IXGBE_ADVTXD_L4LEN_SHIFT;
5899 break;
5900 default:
5901 if (unlikely(net_ratelimit())) {
5902 dev_warn(tx_ring->dev,
5903 "partial checksum but l4 proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005904 l4_hdr);
Alexander Duyck897ab152011-05-27 05:31:47 +00005905 }
5906 break;
5907 }
Alexander Duyck244e27a2012-02-08 07:51:11 +00005908
5909 /* update TX checksum flag */
5910 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07005911 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005912
Alexander Duyck244e27a2012-02-08 07:51:11 +00005913 /* vlan_macip_lens: MACLEN, VLAN tag */
Alexander Duyck897ab152011-05-27 05:31:47 +00005914 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005915 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005916
5917 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
5918 type_tucmd, mss_l4len_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07005919}
5920
Alexander Duyckd3d00232011-07-15 02:31:25 +00005921static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
5922{
5923 /* set type for advanced descriptor with frame checksum insertion */
5924 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
5925 IXGBE_ADVTXD_DCMD_IFCS |
5926 IXGBE_ADVTXD_DCMD_DEXT);
5927
5928 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00005929 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005930 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
5931
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005932#ifdef CONFIG_IXGBE_PTP
5933 if (tx_flags & IXGBE_TX_FLAGS_TSTAMP)
5934 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_MAC_TSTAMP);
5935#endif
5936
Alexander Duyckd3d00232011-07-15 02:31:25 +00005937 /* set segmentation enable bits for TSO/FSO */
5938#ifdef IXGBE_FCOE
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005939 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FSO))
Alexander Duyckd3d00232011-07-15 02:31:25 +00005940#else
5941 if (tx_flags & IXGBE_TX_FLAGS_TSO)
5942#endif
5943 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
5944
5945 return cmd_type;
5946}
5947
Alexander Duyck729739b2012-02-08 07:51:06 +00005948static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
5949 u32 tx_flags, unsigned int paylen)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005950{
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005951 __le32 olinfo_status = cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005952
5953 /* enable L4 checksum for TSO and TX checksum offload */
5954 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
5955 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
5956
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005957 /* enble IPv4 checksum for TSO */
5958 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
5959 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005960
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005961 /* use index 1 context for TSO/FSO/FCOE */
5962#ifdef IXGBE_FCOE
5963 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FCOE))
5964#else
5965 if (tx_flags & IXGBE_TX_FLAGS_TSO)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005966#endif
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005967 olinfo_status |= cpu_to_le32(1 << IXGBE_ADVTXD_IDX_SHIFT);
5968
Alexander Duyck7f9643f2011-06-29 05:43:27 +00005969 /*
5970 * Check Context must be set if Tx switch is enabled, which it
5971 * always is for case where virtual functions are running
5972 */
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005973#ifdef IXGBE_FCOE
5974 if (tx_flags & (IXGBE_TX_FLAGS_TXSW | IXGBE_TX_FLAGS_FCOE))
5975#else
Alexander Duyck7f9643f2011-06-29 05:43:27 +00005976 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005977#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00005978 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
5979
Alexander Duyck729739b2012-02-08 07:51:06 +00005980 tx_desc->read.olinfo_status = olinfo_status;
Alexander Duyckd3d00232011-07-15 02:31:25 +00005981}
5982
5983#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
5984 IXGBE_TXD_CMD_RS)
5985
5986static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
Alexander Duyckd3d00232011-07-15 02:31:25 +00005987 struct ixgbe_tx_buffer *first,
Alexander Duyckd3d00232011-07-15 02:31:25 +00005988 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07005989{
Alexander Duyckd3d00232011-07-15 02:31:25 +00005990 dma_addr_t dma;
Alexander Duyck729739b2012-02-08 07:51:06 +00005991 struct sk_buff *skb = first->skb;
5992 struct ixgbe_tx_buffer *tx_buffer;
5993 union ixgbe_adv_tx_desc *tx_desc;
5994 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
Alexander Duyckd3d00232011-07-15 02:31:25 +00005995 unsigned int data_len = skb->data_len;
5996 unsigned int size = skb_headlen(skb);
Alexander Duyck729739b2012-02-08 07:51:06 +00005997 unsigned int paylen = skb->len - hdr_len;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005998 u32 tx_flags = first->tx_flags;
Alexander Duyck729739b2012-02-08 07:51:06 +00005999 __le32 cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006000 u16 i = tx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07006001
Alexander Duyck729739b2012-02-08 07:51:06 +00006002 tx_desc = IXGBE_TX_DESC(tx_ring, i);
6003
6004 ixgbe_tx_olinfo_status(tx_desc, tx_flags, paylen);
6005 cmd_type = ixgbe_tx_cmd_type(tx_flags);
6006
Alexander Duyckd3d00232011-07-15 02:31:25 +00006007#ifdef IXGBE_FCOE
6008 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006009 if (data_len < sizeof(struct fcoe_crc_eof)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006010 size -= sizeof(struct fcoe_crc_eof) - data_len;
6011 data_len = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00006012 } else {
6013 data_len -= sizeof(struct fcoe_crc_eof);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006014 }
Auke Kok9a799d72007-09-15 14:07:45 -07006015 }
6016
Alexander Duyckd3d00232011-07-15 02:31:25 +00006017#endif
Alexander Duyck729739b2012-02-08 07:51:06 +00006018 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
6019 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006020 goto dma_error;
6021
Alexander Duyck729739b2012-02-08 07:51:06 +00006022 /* record length, and DMA address */
6023 dma_unmap_len_set(first, len, size);
6024 dma_unmap_addr_set(first, dma, dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006025
Alexander Duyck729739b2012-02-08 07:51:06 +00006026 tx_desc->read.buffer_addr = cpu_to_le64(dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006027
6028 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006029 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006030 tx_desc->read.cmd_type_len =
6031 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006032
Alexander Duyckd3d00232011-07-15 02:31:25 +00006033 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00006034 tx_desc++;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006035 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006036 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006037 i = 0;
6038 }
Alexander Duyck729739b2012-02-08 07:51:06 +00006039
6040 dma += IXGBE_MAX_DATA_PER_TXD;
6041 size -= IXGBE_MAX_DATA_PER_TXD;
6042
6043 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6044 tx_desc->read.olinfo_status = 0;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006045 }
6046
Alexander Duyck729739b2012-02-08 07:51:06 +00006047 if (likely(!data_len))
6048 break;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006049
Ben Greearf43f3132012-03-06 09:42:04 +00006050 if (unlikely(skb->no_fcs))
6051 cmd_type &= ~(cpu_to_le32(IXGBE_ADVTXD_DCMD_IFCS));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006052 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006053
Alexander Duyck729739b2012-02-08 07:51:06 +00006054 i++;
6055 tx_desc++;
6056 if (i == tx_ring->count) {
6057 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
6058 i = 0;
6059 }
Auke Kok9a799d72007-09-15 14:07:45 -07006060
Alexander Duyckd3d00232011-07-15 02:31:25 +00006061#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006062 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006063#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006064 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006065#endif
6066 data_len -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006067
Alexander Duyck729739b2012-02-08 07:51:06 +00006068 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
6069 DMA_TO_DEVICE);
6070 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006071 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006072
Alexander Duyck729739b2012-02-08 07:51:06 +00006073 tx_buffer = &tx_ring->tx_buffer_info[i];
6074 dma_unmap_len_set(tx_buffer, len, size);
6075 dma_unmap_addr_set(tx_buffer, dma, dma);
6076
6077 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6078 tx_desc->read.olinfo_status = 0;
6079
6080 frag++;
Auke Kok9a799d72007-09-15 14:07:45 -07006081 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006082
Alexander Duyck729739b2012-02-08 07:51:06 +00006083 /* write last descriptor with RS and EOP bits */
6084 cmd_type |= cpu_to_le32(size) | cpu_to_le32(IXGBE_TXD_CMD);
6085 tx_desc->read.cmd_type_len = cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006086
Alexander Duyck091a6242012-02-08 07:51:01 +00006087 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Alexander Duyckb2d96e02012-02-07 08:14:33 +00006088
Alexander Duyckd3d00232011-07-15 02:31:25 +00006089 /* set the timestamp */
6090 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006091
6092 /*
Alexander Duyck729739b2012-02-08 07:51:06 +00006093 * Force memory writes to complete before letting h/w know there
6094 * are new descriptors to fetch. (Only applicable for weak-ordered
6095 * memory model archs, such as IA-64).
6096 *
6097 * We also need this memory barrier to make certain all of the
6098 * status bits have been updated before next_to_watch is written.
Auke Kok9a799d72007-09-15 14:07:45 -07006099 */
6100 wmb();
6101
Alexander Duyckd3d00232011-07-15 02:31:25 +00006102 /* set next_to_watch value indicating a packet is present */
6103 first->next_to_watch = tx_desc;
6104
Alexander Duyck729739b2012-02-08 07:51:06 +00006105 i++;
6106 if (i == tx_ring->count)
6107 i = 0;
6108
6109 tx_ring->next_to_use = i;
6110
Alexander Duyckd3d00232011-07-15 02:31:25 +00006111 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006112 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006113
6114 return;
6115dma_error:
Alexander Duyck729739b2012-02-08 07:51:06 +00006116 dev_err(tx_ring->dev, "TX DMA map failed\n");
Alexander Duyckd3d00232011-07-15 02:31:25 +00006117
6118 /* clear dma mappings for failed tx_buffer_info map */
6119 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006120 tx_buffer = &tx_ring->tx_buffer_info[i];
6121 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
6122 if (tx_buffer == first)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006123 break;
6124 if (i == 0)
6125 i = tx_ring->count;
6126 i--;
6127 }
6128
Alexander Duyckd3d00232011-07-15 02:31:25 +00006129 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006130}
6131
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006132static void ixgbe_atr(struct ixgbe_ring *ring,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006133 struct ixgbe_tx_buffer *first)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006134{
Alexander Duyck69830522011-01-06 14:29:58 +00006135 struct ixgbe_q_vector *q_vector = ring->q_vector;
6136 union ixgbe_atr_hash_dword input = { .dword = 0 };
6137 union ixgbe_atr_hash_dword common = { .dword = 0 };
6138 union {
6139 unsigned char *network;
6140 struct iphdr *ipv4;
6141 struct ipv6hdr *ipv6;
6142 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006143 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006144 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006145
Alexander Duyck69830522011-01-06 14:29:58 +00006146 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6147 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006148 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006149
Alexander Duyck69830522011-01-06 14:29:58 +00006150 /* do nothing if sampling is disabled */
6151 if (!ring->atr_sample_rate)
6152 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006153
Alexander Duyck69830522011-01-06 14:29:58 +00006154 ring->atr_count++;
6155
6156 /* snag network header to get L4 type and address */
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006157 hdr.network = skb_network_header(first->skb);
Alexander Duyck69830522011-01-06 14:29:58 +00006158
6159 /* Currently only IPv4/IPv6 with TCP is supported */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006160 if ((first->protocol != __constant_htons(ETH_P_IPV6) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006161 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
Alexander Duyck244e27a2012-02-08 07:51:11 +00006162 (first->protocol != __constant_htons(ETH_P_IP) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006163 hdr.ipv4->protocol != IPPROTO_TCP))
6164 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006165
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006166 th = tcp_hdr(first->skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006167
Alexander Duyck66f32a82011-06-29 05:43:22 +00006168 /* skip this packet since it is invalid or the socket is closing */
6169 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006170 return;
6171
6172 /* sample on all syn packets or once every atr sample count */
6173 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6174 return;
6175
6176 /* reset sample count */
6177 ring->atr_count = 0;
6178
Alexander Duyck244e27a2012-02-08 07:51:11 +00006179 vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
Alexander Duyck69830522011-01-06 14:29:58 +00006180
6181 /*
6182 * src and dst are inverted, think how the receiver sees them
6183 *
6184 * The input is broken into two sections, a non-compressed section
6185 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6186 * is XORed together and stored in the compressed dword.
6187 */
6188 input.formatted.vlan_id = vlan_id;
6189
6190 /*
6191 * since src port and flex bytes occupy the same word XOR them together
6192 * and write the value to source port portion of compressed dword
6193 */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006194 if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006195 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6196 else
Alexander Duyck244e27a2012-02-08 07:51:11 +00006197 common.port.src ^= th->dest ^ first->protocol;
Alexander Duyck69830522011-01-06 14:29:58 +00006198 common.port.dst ^= th->source;
6199
Alexander Duyck244e27a2012-02-08 07:51:11 +00006200 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck69830522011-01-06 14:29:58 +00006201 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6202 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6203 } else {
6204 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6205 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6206 hdr.ipv6->saddr.s6_addr32[1] ^
6207 hdr.ipv6->saddr.s6_addr32[2] ^
6208 hdr.ipv6->saddr.s6_addr32[3] ^
6209 hdr.ipv6->daddr.s6_addr32[0] ^
6210 hdr.ipv6->daddr.s6_addr32[1] ^
6211 hdr.ipv6->daddr.s6_addr32[2] ^
6212 hdr.ipv6->daddr.s6_addr32[3];
6213 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006214
6215 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006216 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6217 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006218}
6219
Alexander Duyck63544e92011-05-27 05:31:42 +00006220static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006221{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006222 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006223 /* Herbert's original patch had:
6224 * smp_mb__after_netif_stop_queue();
6225 * but since that doesn't exist yet, just open code it. */
6226 smp_mb();
6227
6228 /* We need to check again in a case another CPU has just
6229 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006230 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006231 return -EBUSY;
6232
6233 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006234 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006235 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006236 return 0;
6237}
6238
Alexander Duyck82d4e462011-06-11 01:44:58 +00006239static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006240{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006241 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006242 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006243 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006244}
6245
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006246static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6247{
6248 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006249 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6250 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006251#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006252 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006253
John Fastabende5b64632011-03-08 03:44:52 +00006254 if (((protocol == htons(ETH_P_FCOE)) ||
6255 (protocol == htons(ETH_P_FIP))) &&
6256 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyckc0876632012-05-10 00:01:46 +00006257 struct ixgbe_ring_feature *f;
6258
6259 f = &adapter->ring_feature[RING_F_FCOE];
6260
6261 while (txq >= f->indices)
6262 txq -= f->indices;
Alexander Duycke4b317e2012-05-05 05:30:53 +00006263 txq += adapter->ring_feature[RING_F_FCOE].offset;
Alexander Duyckc0876632012-05-10 00:01:46 +00006264
John Fastabende5b64632011-03-08 03:44:52 +00006265 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006266 }
6267#endif
6268
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006269 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6270 while (unlikely(txq >= dev->real_num_tx_queues))
6271 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006272 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006273 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006274
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006275 return skb_tx_hash(dev, skb);
6276}
6277
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006278netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006279 struct ixgbe_adapter *adapter,
6280 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006281{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006282 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006283 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006284 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006285#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6286 unsigned short f;
6287#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006288 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006289 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006290 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006291
Alexander Duycka535c302011-05-27 05:31:52 +00006292 /*
6293 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00006294 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00006295 * + 2 desc gap to keep tail from touching head,
6296 * + 1 desc for context descriptor,
6297 * otherwise try next time
6298 */
6299#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6300 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6301 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6302#else
6303 count += skb_shinfo(skb)->nr_frags;
6304#endif
6305 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6306 tx_ring->tx_stats.tx_busy++;
6307 return NETDEV_TX_BUSY;
6308 }
6309
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006310 /* record the location of the first descriptor for this packet */
6311 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
6312 first->skb = skb;
Alexander Duyck091a6242012-02-08 07:51:01 +00006313 first->bytecount = skb->len;
6314 first->gso_segs = 1;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006315
Alexander Duyck66f32a82011-06-29 05:43:22 +00006316 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00006317 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006318 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6319 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6320 /* else if it is a SW VLAN check the next protocol and store the tag */
6321 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
6322 struct vlan_hdr *vhdr, _vhdr;
6323 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
6324 if (!vhdr)
6325 goto out_drop;
6326
6327 protocol = vhdr->h_vlan_encapsulated_proto;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006328 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
6329 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006330 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006331 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006332
Jacob Kelleraa7bd462012-05-04 01:55:23 +00006333 skb_tx_timestamp(skb);
6334
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006335#ifdef CONFIG_IXGBE_PTP
6336 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
6337 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
6338 tx_flags |= IXGBE_TX_FLAGS_TSTAMP;
6339 }
6340#endif
6341
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006342#ifdef CONFIG_PCI_IOV
6343 /*
6344 * Use the l2switch_enable flag - would be false if the DMA
6345 * Tx switch had been disabled.
6346 */
6347 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6348 tx_flags |= IXGBE_TX_FLAGS_TXSW;
6349
6350#endif
John Fastabend32701dc2011-09-27 03:51:56 +00006351 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006352 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00006353 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
6354 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006355 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00006356 tx_flags |= (skb->priority & 0x7) <<
6357 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006358 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
6359 struct vlan_ethhdr *vhdr;
6360 if (skb_header_cloned(skb) &&
6361 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6362 goto out_drop;
6363 vhdr = (struct vlan_ethhdr *)skb->data;
6364 vhdr->h_vlan_TCI = htons(tx_flags >>
6365 IXGBE_TX_FLAGS_VLAN_SHIFT);
6366 } else {
6367 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6368 }
6369 }
Alexander Duycka535c302011-05-27 05:31:52 +00006370
Alexander Duyck244e27a2012-02-08 07:51:11 +00006371 /* record initial flags and protocol */
6372 first->tx_flags = tx_flags;
6373 first->protocol = protocol;
6374
Yi Zoueacd73f2009-05-13 13:11:06 +00006375#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00006376 /* setup tx offload for FCoE */
6377 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
Alexander Duycka58915c2012-05-25 06:38:18 +00006378 (tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00006379 tso = ixgbe_fso(tx_ring, first, &hdr_len);
Alexander Duyck897ab152011-05-27 05:31:47 +00006380 if (tso < 0)
6381 goto out_drop;
Auke Kok9a799d72007-09-15 14:07:45 -07006382
Alexander Duyck66f32a82011-06-29 05:43:22 +00006383 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006384 }
Auke Kok9a799d72007-09-15 14:07:45 -07006385
Auke Kok9a799d72007-09-15 14:07:45 -07006386#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006387 tso = ixgbe_tso(tx_ring, first, &hdr_len);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006388 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07006389 goto out_drop;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006390 else if (!tso)
6391 ixgbe_tx_csum(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006392
6393 /* add the ATR filter if ATR is on */
6394 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
Alexander Duyck244e27a2012-02-08 07:51:11 +00006395 ixgbe_atr(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006396
6397#ifdef IXGBE_FCOE
6398xmit_fcoe:
6399#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006400 ixgbe_tx_map(tx_ring, first, hdr_len);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006401
6402 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006403
6404 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006405
6406out_drop:
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006407 dev_kfree_skb_any(first->skb);
6408 first->skb = NULL;
6409
Alexander Duyck897ab152011-05-27 05:31:47 +00006410 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07006411}
6412
Alexander Duycka50c29d2012-02-08 07:50:40 +00006413static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
6414 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07006415{
6416 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006417 struct ixgbe_ring *tx_ring;
Auke Kok9a799d72007-09-15 14:07:45 -07006418
Alexander Duycka50c29d2012-02-08 07:50:40 +00006419 /*
6420 * The minimum packet size for olinfo paylen is 17 so pad the skb
6421 * in order to meet this minimum size requirement.
6422 */
Stephen Hemmingerf73332f2012-06-21 02:15:10 +00006423 if (unlikely(skb->len < 17)) {
6424 if (skb_pad(skb, 17 - skb->len))
Alexander Duycka50c29d2012-02-08 07:50:40 +00006425 return NETDEV_TX_OK;
6426 skb->len = 17;
6427 }
6428
Auke Kok9a799d72007-09-15 14:07:45 -07006429 tx_ring = adapter->tx_ring[skb->queue_mapping];
6430 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
6431}
6432
6433/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006434 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Auke Kok9a799d72007-09-15 14:07:45 -07006435 * @netdev: network interface device structure
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006436 * @p: pointer to an address structure
6437 *
Auke Kok9a799d72007-09-15 14:07:45 -07006438 * Returns 0 on success, negative on failure
6439 **/
6440static int ixgbe_set_mac(struct net_device *netdev, void *p)
6441{
Ben Hutchings6b73e102009-04-29 08:08:58 +00006442 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6443 struct ixgbe_hw *hw = &adapter->hw;
6444 struct sockaddr *addr = p;
6445
6446 if (!is_valid_ether_addr(addr->sa_data))
6447 return -EADDRNOTAVAIL;
6448
6449 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
6450 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
6451
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00006452 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07006453
6454 return 0;
6455}
6456
Ben Hutchings6b73e102009-04-29 08:08:58 +00006457static int
6458ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6459{
6460 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6461 struct ixgbe_hw *hw = &adapter->hw;
6462 u16 value;
6463 int rc;
6464
6465 if (prtad != hw->phy.mdio.prtad)
6466 return -EINVAL;
6467 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6468 if (!rc)
6469 rc = value;
6470 return rc;
6471}
6472
6473static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6474 u16 addr, u16 value)
6475{
6476 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6477 struct ixgbe_hw *hw = &adapter->hw;
6478
6479 if (prtad != hw->phy.mdio.prtad)
6480 return -EINVAL;
6481 return hw->phy.ops.write_reg(hw, addr, devad, value);
6482}
6483
6484static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6485{
6486 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6487
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006488 switch (cmd) {
6489#ifdef CONFIG_IXGBE_PTP
6490 case SIOCSHWTSTAMP:
6491 return ixgbe_ptp_hwtstamp_ioctl(adapter, req, cmd);
6492#endif
6493 default:
6494 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6495 }
Ben Hutchings6b73e102009-04-29 08:08:58 +00006496}
6497
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006498/**
6499 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006500 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006501 * @netdev: network interface device structure
6502 *
6503 * Returns non-zero on failure
6504 **/
6505static int ixgbe_add_sanmac_netdev(struct net_device *dev)
6506{
6507 int err = 0;
6508 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006509 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006510
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006511 if (is_valid_ether_addr(hw->mac.san_addr)) {
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006512 rtnl_lock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006513 err = dev_addr_add(dev, hw->mac.san_addr, NETDEV_HW_ADDR_T_SAN);
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006514 rtnl_unlock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006515
6516 /* update SAN MAC vmdq pool selection */
6517 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006518 }
6519 return err;
6520}
6521
6522/**
6523 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006524 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006525 * @netdev: network interface device structure
6526 *
6527 * Returns non-zero on failure
6528 **/
6529static int ixgbe_del_sanmac_netdev(struct net_device *dev)
6530{
6531 int err = 0;
6532 struct ixgbe_adapter *adapter = netdev_priv(dev);
6533 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6534
6535 if (is_valid_ether_addr(mac->san_addr)) {
6536 rtnl_lock();
6537 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6538 rtnl_unlock();
6539 }
6540 return err;
6541}
6542
Auke Kok9a799d72007-09-15 14:07:45 -07006543#ifdef CONFIG_NET_POLL_CONTROLLER
6544/*
6545 * Polling 'interrupt' - used by things like netconsole to send skbs
6546 * without having to re-enable interrupts. It's not called while
6547 * the interrupt routine is executing.
6548 */
6549static void ixgbe_netpoll(struct net_device *netdev)
6550{
6551 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006552 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07006553
Alexander Duyck1a647bd2010-01-13 01:49:13 +00006554 /* if interface is down do nothing */
6555 if (test_bit(__IXGBE_DOWN, &adapter->state))
6556 return;
6557
Auke Kok9a799d72007-09-15 14:07:45 -07006558 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006559 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00006560 for (i = 0; i < adapter->num_q_vectors; i++)
6561 ixgbe_msix_clean_rings(0, adapter->q_vector[i]);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006562 } else {
6563 ixgbe_intr(adapter->pdev->irq, netdev);
6564 }
Auke Kok9a799d72007-09-15 14:07:45 -07006565 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07006566}
Auke Kok9a799d72007-09-15 14:07:45 -07006567
Alexander Duyck581330b2012-02-08 07:51:47 +00006568#endif
Eric Dumazetde1036b2010-10-20 23:00:04 +00006569static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
6570 struct rtnl_link_stats64 *stats)
6571{
6572 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6573 int i;
6574
Eric Dumazet1a515022010-11-16 19:26:42 -08006575 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006576 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08006577 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00006578 u64 bytes, packets;
6579 unsigned int start;
6580
Eric Dumazet1a515022010-11-16 19:26:42 -08006581 if (ring) {
6582 do {
6583 start = u64_stats_fetch_begin_bh(&ring->syncp);
6584 packets = ring->stats.packets;
6585 bytes = ring->stats.bytes;
6586 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6587 stats->rx_packets += packets;
6588 stats->rx_bytes += bytes;
6589 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00006590 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00006591
6592 for (i = 0; i < adapter->num_tx_queues; i++) {
6593 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
6594 u64 bytes, packets;
6595 unsigned int start;
6596
6597 if (ring) {
6598 do {
6599 start = u64_stats_fetch_begin_bh(&ring->syncp);
6600 packets = ring->stats.packets;
6601 bytes = ring->stats.bytes;
6602 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6603 stats->tx_packets += packets;
6604 stats->tx_bytes += bytes;
6605 }
6606 }
Eric Dumazet1a515022010-11-16 19:26:42 -08006607 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006608 /* following stats updated by ixgbe_watchdog_task() */
6609 stats->multicast = netdev->stats.multicast;
6610 stats->rx_errors = netdev->stats.rx_errors;
6611 stats->rx_length_errors = netdev->stats.rx_length_errors;
6612 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
6613 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
6614 return stats;
6615}
6616
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006617#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006618/**
6619 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
6620 * @adapter: pointer to ixgbe_adapter
John Fastabend8b1c0b22011-05-03 02:26:48 +00006621 * @tc: number of traffic classes currently enabled
6622 *
6623 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
6624 * 802.1Q priority maps to a packet buffer that exists.
6625 */
6626static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
6627{
6628 struct ixgbe_hw *hw = &adapter->hw;
6629 u32 reg, rsave;
6630 int i;
6631
6632 /* 82598 have a static priority to TC mapping that can not
6633 * be changed so no validation is needed.
6634 */
6635 if (hw->mac.type == ixgbe_mac_82598EB)
6636 return;
6637
6638 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
6639 rsave = reg;
6640
6641 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
6642 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
6643
6644 /* If up2tc is out of bounds default to zero */
6645 if (up2tc > tc)
6646 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
6647 }
6648
6649 if (reg != rsave)
6650 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
6651
6652 return;
6653}
6654
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006655/**
Alexander Duyck02debdc2012-05-18 06:33:31 +00006656 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
6657 * @adapter: Pointer to adapter struct
6658 *
6659 * Populate the netdev user priority to tc map
6660 */
6661static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter)
6662{
6663 struct net_device *dev = adapter->netdev;
6664 struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg;
6665 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
6666 u8 prio;
6667
6668 for (prio = 0; prio < MAX_USER_PRIORITY; prio++) {
6669 u8 tc = 0;
6670
6671 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE)
6672 tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio);
6673 else if (ets)
6674 tc = ets->prio_tc[prio];
6675
6676 netdev_set_prio_tc_map(dev, prio, tc);
6677 }
6678}
6679
6680/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006681 * ixgbe_setup_tc - configure net_device for multiple traffic classes
John Fastabend8b1c0b22011-05-03 02:26:48 +00006682 *
6683 * @netdev: net device to configure
6684 * @tc: number of traffic classes to enable
6685 */
6686int ixgbe_setup_tc(struct net_device *dev, u8 tc)
6687{
John Fastabend8b1c0b22011-05-03 02:26:48 +00006688 struct ixgbe_adapter *adapter = netdev_priv(dev);
6689 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00006690
John Fastabend8b1c0b22011-05-03 02:26:48 +00006691 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00006692 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
Alexander Duyck581330b2012-02-08 07:51:47 +00006693 (hw->mac.type == ixgbe_mac_82598EB &&
6694 tc < MAX_TRAFFIC_CLASS))
John Fastabend8b1c0b22011-05-03 02:26:48 +00006695 return -EINVAL;
6696
6697 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006698 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00006699 * hardware is not flexible enough to do this dynamically.
6700 */
6701 if (netif_running(dev))
6702 ixgbe_close(dev);
6703 ixgbe_clear_interrupt_scheme(adapter);
6704
John Fastabende7589ea2011-07-18 22:38:36 +00006705 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006706 netdev_set_num_tc(dev, tc);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006707 ixgbe_set_prio_tc_map(adapter);
6708
John Fastabende7589ea2011-07-18 22:38:36 +00006709 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00006710
Alexander Duyck943561d2012-05-09 22:14:44 -07006711 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
6712 adapter->last_lfc_mode = adapter->hw.fc.requested_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006713 adapter->hw.fc.requested_mode = ixgbe_fc_none;
Alexander Duyck943561d2012-05-09 22:14:44 -07006714 }
John Fastabende7589ea2011-07-18 22:38:36 +00006715 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006716 netdev_reset_tc(dev);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006717
Alexander Duyck943561d2012-05-09 22:14:44 -07006718 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6719 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006720
6721 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00006722
6723 adapter->temp_dcb_cfg.pfc_mode_enable = false;
6724 adapter->dcb_cfg.pfc_mode_enable = false;
6725 }
6726
John Fastabend8b1c0b22011-05-03 02:26:48 +00006727 ixgbe_init_interrupt_scheme(adapter);
6728 ixgbe_validate_rtr(adapter, tc);
6729 if (netif_running(dev))
6730 ixgbe_open(dev);
6731
6732 return 0;
6733}
Eric Dumazetde1036b2010-10-20 23:00:04 +00006734
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006735#endif /* CONFIG_IXGBE_DCB */
Don Skidmore082757a2011-07-21 05:55:00 +00006736void ixgbe_do_reset(struct net_device *netdev)
6737{
6738 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6739
6740 if (netif_running(netdev))
6741 ixgbe_reinit_locked(adapter);
6742 else
6743 ixgbe_reset(adapter);
6744}
6745
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006746static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006747 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006748{
6749 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6750
Don Skidmore082757a2011-07-21 05:55:00 +00006751 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006752 if (!(features & NETIF_F_RXCSUM))
6753 features &= ~NETIF_F_LRO;
Don Skidmore082757a2011-07-21 05:55:00 +00006754
Alexander Duyck567d2de2012-02-11 07:18:57 +00006755 /* Turn off LRO if not RSC capable */
6756 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
6757 features &= ~NETIF_F_LRO;
Jacob Keller8e2813f2012-04-21 06:05:40 +00006758
Alexander Duyck567d2de2012-02-11 07:18:57 +00006759 return features;
Don Skidmore082757a2011-07-21 05:55:00 +00006760}
6761
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006762static int ixgbe_set_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006763 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006764{
6765 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck567d2de2012-02-11 07:18:57 +00006766 netdev_features_t changed = netdev->features ^ features;
Don Skidmore082757a2011-07-21 05:55:00 +00006767 bool need_reset = false;
6768
Don Skidmore082757a2011-07-21 05:55:00 +00006769 /* Make sure RSC matches LRO, reset if change */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006770 if (!(features & NETIF_F_LRO)) {
6771 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Don Skidmore082757a2011-07-21 05:55:00 +00006772 need_reset = true;
Alexander Duyck567d2de2012-02-11 07:18:57 +00006773 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
6774 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
6775 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
6776 if (adapter->rx_itr_setting == 1 ||
6777 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
6778 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
6779 need_reset = true;
6780 } else if ((changed ^ features) & NETIF_F_LRO) {
6781 e_info(probe, "rx-usecs set too low, "
6782 "disabling RSC\n");
Don Skidmore082757a2011-07-21 05:55:00 +00006783 }
6784 }
6785
6786 /*
6787 * Check if Flow Director n-tuple support was enabled or disabled. If
6788 * the state changed, we need to reset.
6789 */
Alexander Duyck39cb6812012-06-06 05:38:20 +00006790 switch (features & NETIF_F_NTUPLE) {
6791 case NETIF_F_NTUPLE:
Alexander Duyck567d2de2012-02-11 07:18:57 +00006792 /* turn off ATR, enable perfect filters and reset */
Alexander Duyck39cb6812012-06-06 05:38:20 +00006793 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
6794 need_reset = true;
6795
Alexander Duyck567d2de2012-02-11 07:18:57 +00006796 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
6797 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
Alexander Duyck39cb6812012-06-06 05:38:20 +00006798 break;
6799 default:
6800 /* turn off perfect filters, enable ATR and reset */
6801 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
6802 need_reset = true;
6803
6804 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
6805
6806 /* We cannot enable ATR if SR-IOV is enabled */
6807 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6808 break;
6809
6810 /* We cannot enable ATR if we have 2 or more traffic classes */
6811 if (netdev_get_num_tc(netdev) > 1)
6812 break;
6813
6814 /* We cannot enable ATR if RSS is disabled */
6815 if (adapter->ring_feature[RING_F_RSS].limit <= 1)
6816 break;
6817
6818 /* A sample rate of 0 indicates ATR disabled */
6819 if (!adapter->atr_sample_rate)
6820 break;
6821
6822 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
6823 break;
Don Skidmore082757a2011-07-21 05:55:00 +00006824 }
6825
John Fastabend146d4cc2012-05-15 05:59:26 +00006826 if (features & NETIF_F_HW_VLAN_RX)
6827 ixgbe_vlan_strip_enable(adapter);
6828 else
6829 ixgbe_vlan_strip_disable(adapter);
6830
Ben Greear3f2d1c02012-03-08 08:28:41 +00006831 if (changed & NETIF_F_RXALL)
6832 need_reset = true;
6833
Alexander Duyck567d2de2012-02-11 07:18:57 +00006834 netdev->features = features;
Don Skidmore082757a2011-07-21 05:55:00 +00006835 if (need_reset)
6836 ixgbe_do_reset(netdev);
6837
6838 return 0;
Don Skidmore082757a2011-07-21 05:55:00 +00006839}
6840
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006841static int ixgbe_ndo_fdb_add(struct ndmsg *ndm,
6842 struct net_device *dev,
6843 unsigned char *addr,
6844 u16 flags)
6845{
6846 struct ixgbe_adapter *adapter = netdev_priv(dev);
John Fastabend95447462012-05-31 12:42:26 +00006847 int err;
6848
6849 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
6850 return -EOPNOTSUPP;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006851
6852 if (ndm->ndm_state & NUD_PERMANENT) {
6853 pr_info("%s: FDB only supports static addresses\n",
6854 ixgbe_driver_name);
6855 return -EINVAL;
6856 }
6857
John Fastabend95447462012-05-31 12:42:26 +00006858 if (is_unicast_ether_addr(addr)) {
6859 u32 rar_uc_entries = IXGBE_MAX_PF_MACVLANS;
6860
6861 if (netdev_uc_count(dev) < rar_uc_entries)
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006862 err = dev_uc_add_excl(dev, addr);
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006863 else
John Fastabend95447462012-05-31 12:42:26 +00006864 err = -ENOMEM;
6865 } else if (is_multicast_ether_addr(addr)) {
6866 err = dev_mc_add_excl(dev, addr);
6867 } else {
6868 err = -EINVAL;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006869 }
6870
6871 /* Only return duplicate errors if NLM_F_EXCL is set */
6872 if (err == -EEXIST && !(flags & NLM_F_EXCL))
6873 err = 0;
6874
6875 return err;
6876}
6877
6878static int ixgbe_ndo_fdb_del(struct ndmsg *ndm,
6879 struct net_device *dev,
6880 unsigned char *addr)
6881{
6882 struct ixgbe_adapter *adapter = netdev_priv(dev);
6883 int err = -EOPNOTSUPP;
6884
6885 if (ndm->ndm_state & NUD_PERMANENT) {
6886 pr_info("%s: FDB only supports static addresses\n",
6887 ixgbe_driver_name);
6888 return -EINVAL;
6889 }
6890
6891 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
6892 if (is_unicast_ether_addr(addr))
6893 err = dev_uc_del(dev, addr);
6894 else if (is_multicast_ether_addr(addr))
6895 err = dev_mc_del(dev, addr);
6896 else
6897 err = -EINVAL;
6898 }
6899
6900 return err;
6901}
6902
6903static int ixgbe_ndo_fdb_dump(struct sk_buff *skb,
6904 struct netlink_callback *cb,
6905 struct net_device *dev,
6906 int idx)
6907{
6908 struct ixgbe_adapter *adapter = netdev_priv(dev);
6909
6910 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6911 idx = ndo_dflt_fdb_dump(skb, cb, dev, idx);
6912
6913 return idx;
6914}
6915
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006916static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00006917 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006918 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08006919 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006920 .ndo_select_queue = ixgbe_select_queue,
Alexander Duyck581330b2012-02-08 07:51:47 +00006921 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006922 .ndo_validate_addr = eth_validate_addr,
6923 .ndo_set_mac_address = ixgbe_set_mac,
6924 .ndo_change_mtu = ixgbe_change_mtu,
6925 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006926 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
6927 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00006928 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00006929 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
6930 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
6931 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Alexander Duyck581330b2012-02-08 07:51:47 +00006932 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00006933 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00006934 .ndo_get_stats64 = ixgbe_get_stats64,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006935#ifdef CONFIG_IXGBE_DCB
John Fastabend24095aa2011-02-23 05:58:03 +00006936 .ndo_setup_tc = ixgbe_setup_tc,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006937#endif
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006938#ifdef CONFIG_NET_POLL_CONTROLLER
6939 .ndo_poll_controller = ixgbe_netpoll,
6940#endif
Yi Zou332d4a72009-05-13 13:11:53 +00006941#ifdef IXGBE_FCOE
6942 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00006943 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00006944 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00006945 .ndo_fcoe_enable = ixgbe_fcoe_enable,
6946 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00006947 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00006948 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00006949#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00006950 .ndo_set_features = ixgbe_set_features,
6951 .ndo_fix_features = ixgbe_fix_features,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006952 .ndo_fdb_add = ixgbe_ndo_fdb_add,
6953 .ndo_fdb_del = ixgbe_ndo_fdb_del,
6954 .ndo_fdb_dump = ixgbe_ndo_fdb_dump,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006955};
6956
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006957/**
Jacob Keller8e2813f2012-04-21 06:05:40 +00006958 * ixgbe_wol_supported - Check whether device supports WoL
6959 * @hw: hw specific details
6960 * @device_id: the device ID
6961 * @subdev_id: the subsystem device ID
6962 *
6963 * This function is used by probe and ethtool to determine
6964 * which devices have WoL support
6965 *
6966 **/
6967int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
6968 u16 subdevice_id)
6969{
6970 struct ixgbe_hw *hw = &adapter->hw;
6971 u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
6972 int is_wol_supported = 0;
6973
6974 switch (device_id) {
6975 case IXGBE_DEV_ID_82599_SFP:
6976 /* Only these subdevices could supports WOL */
6977 switch (subdevice_id) {
6978 case IXGBE_SUBDEV_ID_82599_560FLR:
6979 /* only support first port */
6980 if (hw->bus.func != 0)
6981 break;
6982 case IXGBE_SUBDEV_ID_82599_SFP:
Don Skidmoreb6dfd932012-07-11 07:17:42 +00006983 case IXGBE_SUBDEV_ID_82599_RNDC:
Jacob Keller8e2813f2012-04-21 06:05:40 +00006984 is_wol_supported = 1;
6985 break;
6986 }
6987 break;
6988 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
6989 /* All except this subdevice support WOL */
6990 if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
6991 is_wol_supported = 1;
6992 break;
6993 case IXGBE_DEV_ID_82599_KX4:
6994 is_wol_supported = 1;
6995 break;
6996 case IXGBE_DEV_ID_X540T:
6997 /* check eeprom to see if enabled wol */
6998 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
6999 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7000 (hw->bus.func == 0))) {
7001 is_wol_supported = 1;
7002 }
7003 break;
7004 }
7005
7006 return is_wol_supported;
7007}
7008
7009/**
Auke Kok9a799d72007-09-15 14:07:45 -07007010 * ixgbe_probe - Device Initialization Routine
7011 * @pdev: PCI device information struct
7012 * @ent: entry in ixgbe_pci_tbl
7013 *
7014 * Returns 0 on success, negative on failure
7015 *
7016 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7017 * The OS initialization, configuring of the adapter private structure,
7018 * and a hardware reset occur.
7019 **/
7020static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007021 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007022{
7023 struct net_device *netdev;
7024 struct ixgbe_adapter *adapter = NULL;
7025 struct ixgbe_hw *hw;
7026 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007027 static int cards_found;
7028 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00007029 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007030 unsigned int indices = num_possible_cpus();
John Fastabend3f4a6f02012-06-05 05:58:52 +00007031 unsigned int dcb_max = 0;
Yi Zoueacd73f2009-05-13 13:11:06 +00007032#ifdef IXGBE_FCOE
7033 u16 device_caps;
7034#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007035 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07007036
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007037 /* Catch broken hardware that put the wrong VF device ID in
7038 * the PCIe SR-IOV capability.
7039 */
7040 if (pdev->is_virtfn) {
7041 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7042 pci_name(pdev), pdev->vendor, pdev->device);
7043 return -EINVAL;
7044 }
7045
gouji-new9ce77662009-05-06 10:44:45 +00007046 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007047 if (err)
7048 return err;
7049
Nick Nunley1b507732010-04-27 13:10:27 +00007050 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7051 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007052 pci_using_dac = 1;
7053 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007054 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007055 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007056 err = dma_set_coherent_mask(&pdev->dev,
7057 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007058 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007059 dev_err(&pdev->dev,
7060 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007061 goto err_dma;
7062 }
7063 }
7064 pci_using_dac = 0;
7065 }
7066
gouji-new9ce77662009-05-06 10:44:45 +00007067 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007068 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007069 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007070 dev_err(&pdev->dev,
7071 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007072 goto err_pci_reg;
7073 }
7074
Frans Pop19d5afd2009-10-02 10:04:12 -07007075 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007076
Auke Kok9a799d72007-09-15 14:07:45 -07007077 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007078 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007079
John Fastabende901acd2011-04-26 07:26:08 +00007080#ifdef CONFIG_IXGBE_DCB
John Fastabend3f4a6f02012-06-05 05:58:52 +00007081 if (ii->mac == ixgbe_mac_82598EB)
7082 dcb_max = min_t(unsigned int, indices * MAX_TRAFFIC_CLASS,
7083 IXGBE_MAX_RSS_INDICES);
7084 else
7085 dcb_max = min_t(unsigned int, indices * MAX_TRAFFIC_CLASS,
7086 IXGBE_MAX_FDIR_INDICES);
John Fastabende901acd2011-04-26 07:26:08 +00007087#endif
7088
John Fastabendc85a2612010-02-25 23:15:21 +00007089 if (ii->mac == ixgbe_mac_82598EB)
7090 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7091 else
7092 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7093
John Fastabende901acd2011-04-26 07:26:08 +00007094#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007095 indices += min_t(unsigned int, num_possible_cpus(),
7096 IXGBE_MAX_FCOE_INDICES);
7097#endif
John Fastabend3f4a6f02012-06-05 05:58:52 +00007098 indices = max_t(unsigned int, dcb_max, indices);
John Fastabendc85a2612010-02-25 23:15:21 +00007099 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007100 if (!netdev) {
7101 err = -ENOMEM;
7102 goto err_alloc_etherdev;
7103 }
7104
Auke Kok9a799d72007-09-15 14:07:45 -07007105 SET_NETDEV_DEV(netdev, &pdev->dev);
7106
Auke Kok9a799d72007-09-15 14:07:45 -07007107 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007108 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007109
7110 adapter->netdev = netdev;
7111 adapter->pdev = pdev;
7112 hw = &adapter->hw;
7113 hw->back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00007114 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kok9a799d72007-09-15 14:07:45 -07007115
Jeff Kirsher05857982008-09-11 19:57:00 -07007116 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007117 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007118 if (!hw->hw_addr) {
7119 err = -EIO;
7120 goto err_ioremap;
7121 }
7122
7123 for (i = 1; i <= 5; i++) {
7124 if (pci_resource_len(pdev, i) == 0)
7125 continue;
7126 }
7127
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007128 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007129 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007130 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007131 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007132
Auke Kok9a799d72007-09-15 14:07:45 -07007133 adapter->bd_number = cards_found;
7134
Auke Kok9a799d72007-09-15 14:07:45 -07007135 /* Setup hw api */
7136 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007137 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007138
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007139 /* EEPROM */
7140 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7141 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7142 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7143 if (!(eec & (1 << 8)))
7144 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7145
7146 /* PHY */
7147 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007148 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007149 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7150 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7151 hw->phy.mdio.mmds = 0;
7152 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7153 hw->phy.mdio.dev = netdev;
7154 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7155 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007156
Don Skidmore8ca783a2009-05-26 20:40:47 -07007157 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007158
7159 /* setup the private structure */
7160 err = ixgbe_sw_init(adapter);
7161 if (err)
7162 goto err_sw_init;
7163
Don Skidmoree86bff02010-02-11 04:14:08 +00007164 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007165 switch (adapter->hw.mac.type) {
7166 case ixgbe_mac_82599EB:
7167 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007168 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007169 break;
7170 default:
7171 break;
7172 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007173
Don Skidmorebf069c92009-05-07 10:39:54 +00007174 /*
7175 * If there is a fan on this device and it has failed log the
7176 * failure.
7177 */
7178 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7179 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7180 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007181 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007182 }
7183
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00007184 if (allow_unsupported_sfp)
7185 hw->allow_unsupported_sfp = allow_unsupported_sfp;
7186
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007187 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007188 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007189 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007190 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007191 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7192 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007193 err = 0;
7194 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007195 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007196 "module type was detected.\n");
7197 e_dev_err("Reload the driver after installing a supported "
7198 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007199 goto err_sw_init;
7200 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007201 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007202 goto err_sw_init;
7203 }
7204
Alexander Duyck99d74482012-05-09 08:09:25 +00007205#ifdef CONFIG_PCI_IOV
7206 ixgbe_enable_sriov(adapter, ii);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007207
Alexander Duyck99d74482012-05-09 08:09:25 +00007208#endif
Emil Tantilov396e7992010-07-01 20:05:12 +00007209 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007210 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00007211 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00007212 NETIF_F_HW_VLAN_TX |
7213 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00007214 NETIF_F_HW_VLAN_FILTER |
7215 NETIF_F_TSO |
7216 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00007217 NETIF_F_RXHASH |
7218 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007219
Don Skidmore082757a2011-07-21 05:55:00 +00007220 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007221
Don Skidmore58be7662011-04-12 09:42:11 +00007222 switch (adapter->hw.mac.type) {
7223 case ixgbe_mac_82599EB:
7224 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007225 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00007226 netdev->hw_features |= NETIF_F_SCTP_CSUM |
7227 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00007228 break;
7229 default:
7230 break;
7231 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007232
Ben Greear3f2d1c02012-03-08 08:28:41 +00007233 netdev->hw_features |= NETIF_F_RXALL;
7234
Jeff Kirsherad31c402008-06-05 04:05:30 -07007235 netdev->vlan_features |= NETIF_F_TSO;
7236 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007237 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007238 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007239 netdev->vlan_features |= NETIF_F_SG;
7240
Jiri Pirko01789342011-08-16 06:29:00 +00007241 netdev->priv_flags |= IFF_UNICAST_FLT;
Ben Greearf43f3132012-03-06 09:42:04 +00007242 netdev->priv_flags |= IFF_SUPP_NOFCS;
Jiri Pirko01789342011-08-16 06:29:00 +00007243
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007244#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007245 netdev->dcbnl_ops = &dcbnl_ops;
7246#endif
7247
Yi Zoueacd73f2009-05-13 13:11:06 +00007248#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007249 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007250 if (hw->mac.ops.get_device_caps) {
7251 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007252 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7253 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007254 }
Alexander Duyck7c8ae652012-05-05 05:32:47 +00007255
7256 adapter->ring_feature[RING_F_FCOE].limit = IXGBE_FCRETA_SIZE;
7257
Alexander Duycka58915c2012-05-25 06:38:18 +00007258 netdev->features |= NETIF_F_FSO |
7259 NETIF_F_FCOE_CRC;
7260
Alexander Duyck7c8ae652012-05-05 05:32:47 +00007261 netdev->vlan_features |= NETIF_F_FSO |
7262 NETIF_F_FCOE_CRC |
7263 NETIF_F_FCOE_MTU;
Yi Zou5e09d7f2010-07-19 13:59:52 +00007264 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007265#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007266 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007267 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007268 netdev->vlan_features |= NETIF_F_HIGHDMA;
7269 }
Auke Kok9a799d72007-09-15 14:07:45 -07007270
Don Skidmore082757a2011-07-21 05:55:00 +00007271 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
7272 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007273 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007274 netdev->features |= NETIF_F_LRO;
7275
Auke Kok9a799d72007-09-15 14:07:45 -07007276 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007277 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007278 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007279 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007280 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007281 }
7282
7283 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7284 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7285
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007286 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007287 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007288 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007289 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007290 }
7291
Alexander Duyck70864002011-04-27 09:13:56 +00007292 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
Alexander Duyck581330b2012-02-08 07:51:47 +00007293 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007294
Alexander Duyck70864002011-04-27 09:13:56 +00007295 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7296 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007297
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007298 err = ixgbe_init_interrupt_scheme(adapter);
7299 if (err)
7300 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007301
Jacob Keller8e2813f2012-04-21 06:05:40 +00007302 /* WOL not supported for all devices */
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007303 adapter->wol = 0;
Jacob Keller8e2813f2012-04-21 06:05:40 +00007304 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
7305 if (ixgbe_wol_supported(adapter, pdev->device, pdev->subsystem_device))
Andy Gospodarek9417c462011-07-16 07:31:33 +00007306 adapter->wol = IXGBE_WUFC_MAG;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007307
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007308 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7309
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007310#ifdef CONFIG_IXGBE_PTP
7311 ixgbe_ptp_init(adapter);
7312#endif /* CONFIG_IXGBE_PTP*/
7313
Emil Tantilov15e52092011-09-29 05:01:29 +00007314 /* save off EEPROM version number */
7315 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
7316 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
7317
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007318 /* pick up the PCI bus settings for reporting later */
7319 hw->mac.ops.get_bus_info(hw);
7320
Auke Kok9a799d72007-09-15 14:07:45 -07007321 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007322 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007323 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7324 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007325 "Unknown"),
7326 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7327 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7328 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7329 "Unknown"),
7330 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007331
7332 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7333 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007334 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007335 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007336 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007337 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007338 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007339 else
Don Skidmore289700db2010-12-03 03:32:58 +00007340 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7341 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007342
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007343 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007344 e_dev_warn("PCI-Express bandwidth available for this card is "
7345 "not sufficient for optimal performance.\n");
7346 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7347 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007348 }
7349
Auke Kok9a799d72007-09-15 14:07:45 -07007350 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007351 err = hw->mac.ops.start_hw(hw);
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007352 if (err == IXGBE_ERR_EEPROM_VERSION) {
7353 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007354 e_dev_warn("This device is a pre-production adapter/LOM. "
7355 "Please be aware there may be issues associated "
7356 "with your hardware. If you are experiencing "
7357 "problems please contact your Intel or hardware "
7358 "representative who provided you with this "
7359 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007360 }
Auke Kok9a799d72007-09-15 14:07:45 -07007361 strcpy(netdev->name, "eth%d");
7362 err = register_netdev(netdev);
7363 if (err)
7364 goto err_register;
7365
Emil Tantilov93d3ce82011-10-19 07:59:55 +00007366 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7367 if (hw->mac.ops.disable_tx_laser &&
7368 ((hw->phy.multispeed_fiber) ||
7369 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
7370 (hw->mac.type == ixgbe_mac_82599EB))))
7371 hw->mac.ops.disable_tx_laser(hw);
7372
Jesse Brandeburg54386462009-04-17 20:44:27 +00007373 /* carrier off reporting is important to ethtool even BEFORE open */
7374 netif_carrier_off(netdev);
7375
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007376#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007377 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007378 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007379 ixgbe_setup_dca(adapter);
7380 }
7381#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007382 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007383 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007384 for (i = 0; i < adapter->num_vfs; i++)
7385 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7386 }
7387
Jacob Keller2466dd92011-09-08 03:50:54 +00007388 /* firmware requires driver version to be 0xFFFFFFFF
7389 * since os does not support feature
7390 */
Emil Tantilov9612de92011-05-07 07:40:20 +00007391 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00007392 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
7393 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00007394
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007395 /* add san mac addr to netdev */
7396 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007397
Neerav Parikhea818752012-01-04 20:23:40 +00007398 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07007399 cards_found++;
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007400
Don Skidmore12109822012-05-04 06:07:08 +00007401#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007402 if (ixgbe_sysfs_init(adapter))
7403 e_err(probe, "failed to allocate sysfs resources\n");
Don Skidmore12109822012-05-04 06:07:08 +00007404#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007405
Auke Kok9a799d72007-09-15 14:07:45 -07007406 return 0;
7407
7408err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007409 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007410 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007411err_sw_init:
Alexander Duyck99d74482012-05-09 08:09:25 +00007412 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007413 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007414 iounmap(hw->hw_addr);
7415err_ioremap:
7416 free_netdev(netdev);
7417err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007418 pci_release_selected_regions(pdev,
7419 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007420err_pci_reg:
7421err_dma:
7422 pci_disable_device(pdev);
7423 return err;
7424}
7425
7426/**
7427 * ixgbe_remove - Device Removal Routine
7428 * @pdev: PCI device information struct
7429 *
7430 * ixgbe_remove is called by the PCI subsystem to alert the driver
7431 * that it should release a PCI device. The could be caused by a
7432 * Hot-Plug event, or because the driver is going to be removed from
7433 * memory.
7434 **/
7435static void __devexit ixgbe_remove(struct pci_dev *pdev)
7436{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007437 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7438 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007439
7440 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007441 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007442
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007443#ifdef CONFIG_IXGBE_PTP
7444 ixgbe_ptp_stop(adapter);
7445#endif
7446
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007447#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007448 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7449 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7450 dca_remove_requester(&pdev->dev);
7451 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7452 }
7453
7454#endif
Don Skidmore12109822012-05-04 06:07:08 +00007455#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007456 ixgbe_sysfs_exit(adapter);
Don Skidmore12109822012-05-04 06:07:08 +00007457#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007458
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007459 /* remove the added san mac */
7460 ixgbe_del_sanmac_netdev(netdev);
7461
Donald Skidmorec4900be2008-11-20 21:11:42 -08007462 if (netdev->reg_state == NETREG_REGISTERED)
7463 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007464
Alexander Duyck92971272012-05-23 02:58:40 +00007465 ixgbe_disable_sriov(adapter);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007466
Alexander Duyck7a921c92009-05-06 10:43:28 +00007467 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007468
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007469 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007470
Alexander Duyck2b1588c2012-03-17 02:39:16 +00007471#ifdef CONFIG_DCB
7472 kfree(adapter->ixgbe_ieee_pfc);
7473 kfree(adapter->ixgbe_ieee_ets);
7474
7475#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007476 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007477 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007478 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007479
Emil Tantilov849c4542010-06-03 16:53:41 +00007480 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007481
Auke Kok9a799d72007-09-15 14:07:45 -07007482 free_netdev(netdev);
7483
Frans Pop19d5afd2009-10-02 10:04:12 -07007484 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007485
Auke Kok9a799d72007-09-15 14:07:45 -07007486 pci_disable_device(pdev);
7487}
7488
7489/**
7490 * ixgbe_io_error_detected - called when PCI error is detected
7491 * @pdev: Pointer to PCI device
7492 * @state: The current pci connection state
7493 *
7494 * This function is called after a PCI bus error affecting
7495 * this device has been detected.
7496 */
7497static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007498 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007499{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007500 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7501 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007502
Greg Rose83c61fa2011-09-07 05:59:35 +00007503#ifdef CONFIG_PCI_IOV
7504 struct pci_dev *bdev, *vfdev;
7505 u32 dw0, dw1, dw2, dw3;
7506 int vf, pos;
7507 u16 req_id, pf_func;
7508
7509 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
7510 adapter->num_vfs == 0)
7511 goto skip_bad_vf_detection;
7512
7513 bdev = pdev->bus->self;
7514 while (bdev && (bdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT))
7515 bdev = bdev->bus->self;
7516
7517 if (!bdev)
7518 goto skip_bad_vf_detection;
7519
7520 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
7521 if (!pos)
7522 goto skip_bad_vf_detection;
7523
7524 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
7525 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
7526 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
7527 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
7528
7529 req_id = dw1 >> 16;
7530 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
7531 if (!(req_id & 0x0080))
7532 goto skip_bad_vf_detection;
7533
7534 pf_func = req_id & 0x01;
7535 if ((pf_func & 1) == (pdev->devfn & 1)) {
7536 unsigned int device_id;
7537
7538 vf = (req_id & 0x7F) >> 1;
7539 e_dev_err("VF %d has caused a PCIe error\n", vf);
7540 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
7541 "%8.8x\tdw3: %8.8x\n",
7542 dw0, dw1, dw2, dw3);
7543 switch (adapter->hw.mac.type) {
7544 case ixgbe_mac_82599EB:
7545 device_id = IXGBE_82599_VF_DEVICE_ID;
7546 break;
7547 case ixgbe_mac_X540:
7548 device_id = IXGBE_X540_VF_DEVICE_ID;
7549 break;
7550 default:
7551 device_id = 0;
7552 break;
7553 }
7554
7555 /* Find the pci device of the offending VF */
Jon Mason36e90312012-07-19 21:02:09 +00007556 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, device_id, NULL);
Greg Rose83c61fa2011-09-07 05:59:35 +00007557 while (vfdev) {
7558 if (vfdev->devfn == (req_id & 0xFF))
7559 break;
Jon Mason36e90312012-07-19 21:02:09 +00007560 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Greg Rose83c61fa2011-09-07 05:59:35 +00007561 device_id, vfdev);
7562 }
7563 /*
7564 * There's a slim chance the VF could have been hot plugged,
7565 * so if it is no longer present we don't need to issue the
7566 * VFLR. Just clean up the AER in that case.
7567 */
7568 if (vfdev) {
7569 e_dev_err("Issuing VFLR to VF %d\n", vf);
7570 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
7571 }
7572
7573 pci_cleanup_aer_uncorrect_error_status(pdev);
7574 }
7575
7576 /*
7577 * Even though the error may have occurred on the other port
7578 * we still need to increment the vf error reference count for
7579 * both ports because the I/O resume function will be called
7580 * for both of them.
7581 */
7582 adapter->vferr_refcount++;
7583
7584 return PCI_ERS_RESULT_RECOVERED;
7585
7586skip_bad_vf_detection:
7587#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07007588 netif_device_detach(netdev);
7589
Breno Leitao3044b8d2009-05-06 10:44:26 +00007590 if (state == pci_channel_io_perm_failure)
7591 return PCI_ERS_RESULT_DISCONNECT;
7592
Auke Kok9a799d72007-09-15 14:07:45 -07007593 if (netif_running(netdev))
7594 ixgbe_down(adapter);
7595 pci_disable_device(pdev);
7596
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007597 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007598 return PCI_ERS_RESULT_NEED_RESET;
7599}
7600
7601/**
7602 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7603 * @pdev: Pointer to PCI device
7604 *
7605 * Restart the card from scratch, as if from a cold-boot.
7606 */
7607static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7608{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007609 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007610 pci_ers_result_t result;
7611 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007612
gouji-new9ce77662009-05-06 10:44:45 +00007613 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007614 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007615 result = PCI_ERS_RESULT_DISCONNECT;
7616 } else {
7617 pci_set_master(pdev);
7618 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007619 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007620
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007621 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007622
7623 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007624 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007625 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007626 }
Auke Kok9a799d72007-09-15 14:07:45 -07007627
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007628 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7629 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007630 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7631 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007632 /* non-fatal, continue */
7633 }
Auke Kok9a799d72007-09-15 14:07:45 -07007634
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007635 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007636}
7637
7638/**
7639 * ixgbe_io_resume - called when traffic can start flowing again.
7640 * @pdev: Pointer to PCI device
7641 *
7642 * This callback is called when the error recovery driver tells us that
7643 * its OK to resume normal operation.
7644 */
7645static void ixgbe_io_resume(struct pci_dev *pdev)
7646{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007647 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7648 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007649
Greg Rose83c61fa2011-09-07 05:59:35 +00007650#ifdef CONFIG_PCI_IOV
7651 if (adapter->vferr_refcount) {
7652 e_info(drv, "Resuming after VF err\n");
7653 adapter->vferr_refcount--;
7654 return;
7655 }
7656
7657#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00007658 if (netif_running(netdev))
7659 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007660
7661 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007662}
7663
7664static struct pci_error_handlers ixgbe_err_handler = {
7665 .error_detected = ixgbe_io_error_detected,
7666 .slot_reset = ixgbe_io_slot_reset,
7667 .resume = ixgbe_io_resume,
7668};
7669
7670static struct pci_driver ixgbe_driver = {
7671 .name = ixgbe_driver_name,
7672 .id_table = ixgbe_pci_tbl,
7673 .probe = ixgbe_probe,
7674 .remove = __devexit_p(ixgbe_remove),
7675#ifdef CONFIG_PM
7676 .suspend = ixgbe_suspend,
7677 .resume = ixgbe_resume,
7678#endif
7679 .shutdown = ixgbe_shutdown,
7680 .err_handler = &ixgbe_err_handler
7681};
7682
7683/**
7684 * ixgbe_init_module - Driver Registration Routine
7685 *
7686 * ixgbe_init_module is the first routine called when the driver is
7687 * loaded. All it does is register with the PCI subsystem.
7688 **/
7689static int __init ixgbe_init_module(void)
7690{
7691 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007692 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007693 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007694
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007695#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007696 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007697#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007698
Auke Kok9a799d72007-09-15 14:07:45 -07007699 ret = pci_register_driver(&ixgbe_driver);
7700 return ret;
7701}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007702
Auke Kok9a799d72007-09-15 14:07:45 -07007703module_init(ixgbe_init_module);
7704
7705/**
7706 * ixgbe_exit_module - Driver Exit Cleanup Routine
7707 *
7708 * ixgbe_exit_module is called just before the driver is removed
7709 * from memory.
7710 **/
7711static void __exit ixgbe_exit_module(void)
7712{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007713#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007714 dca_unregister_notify(&dca_notifier);
7715#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007716 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08007717 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007718}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007719
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007720#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007721static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007722 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007723{
7724 int ret_val;
7725
7726 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007727 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007728
7729 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7730}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007731
Alexander Duyckb4533682009-03-31 21:32:42 +00007732#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007733
Auke Kok9a799d72007-09-15 14:07:45 -07007734module_exit(ixgbe_exit_module);
7735
7736/* ixgbe_main.c */