blob: 398fc223cab967409f4d620d5e47f4c92d31a420 [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 Skidmore19d478b2011-10-07 03:53:51 +000066#define MIN 6
67#define BUILD 7
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,
136 "Maximum number of virtual functions to allocate per physical function");
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
Auke Kok9a799d72007-09-15 14:07:45 -0700144MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
145MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
146MODULE_LICENSE("GPL");
147MODULE_VERSION(DRV_VERSION);
148
149#define DEFAULT_DEBUG_LEVEL_SHIFT 3
150
Alexander Duyck70864002011-04-27 09:13:56 +0000151static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
152{
153 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
154 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
155 schedule_work(&adapter->service_task);
156}
157
158static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
159{
160 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
161
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000162 /* flush memory to make sure state is correct before next watchdog */
Alexander Duyck70864002011-04-27 09:13:56 +0000163 smp_mb__before_clear_bit();
164 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
165}
166
Taku Izumidcd79ae2010-04-27 14:39:53 +0000167struct ixgbe_reg_info {
168 u32 ofs;
169 char *name;
170};
171
172static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
173
174 /* General Registers */
175 {IXGBE_CTRL, "CTRL"},
176 {IXGBE_STATUS, "STATUS"},
177 {IXGBE_CTRL_EXT, "CTRL_EXT"},
178
179 /* Interrupt Registers */
180 {IXGBE_EICR, "EICR"},
181
182 /* RX Registers */
183 {IXGBE_SRRCTL(0), "SRRCTL"},
184 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
185 {IXGBE_RDLEN(0), "RDLEN"},
186 {IXGBE_RDH(0), "RDH"},
187 {IXGBE_RDT(0), "RDT"},
188 {IXGBE_RXDCTL(0), "RXDCTL"},
189 {IXGBE_RDBAL(0), "RDBAL"},
190 {IXGBE_RDBAH(0), "RDBAH"},
191
192 /* TX Registers */
193 {IXGBE_TDBAL(0), "TDBAL"},
194 {IXGBE_TDBAH(0), "TDBAH"},
195 {IXGBE_TDLEN(0), "TDLEN"},
196 {IXGBE_TDH(0), "TDH"},
197 {IXGBE_TDT(0), "TDT"},
198 {IXGBE_TXDCTL(0), "TXDCTL"},
199
200 /* List Terminator */
201 {}
202};
203
204
205/*
206 * ixgbe_regdump - register printout routine
207 */
208static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
209{
210 int i = 0, j = 0;
211 char rname[16];
212 u32 regs[64];
213
214 switch (reginfo->ofs) {
215 case IXGBE_SRRCTL(0):
216 for (i = 0; i < 64; i++)
217 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
218 break;
219 case IXGBE_DCA_RXCTRL(0):
220 for (i = 0; i < 64; i++)
221 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
222 break;
223 case IXGBE_RDLEN(0):
224 for (i = 0; i < 64; i++)
225 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
226 break;
227 case IXGBE_RDH(0):
228 for (i = 0; i < 64; i++)
229 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
230 break;
231 case IXGBE_RDT(0):
232 for (i = 0; i < 64; i++)
233 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
234 break;
235 case IXGBE_RXDCTL(0):
236 for (i = 0; i < 64; i++)
237 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
238 break;
239 case IXGBE_RDBAL(0):
240 for (i = 0; i < 64; i++)
241 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
242 break;
243 case IXGBE_RDBAH(0):
244 for (i = 0; i < 64; i++)
245 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
246 break;
247 case IXGBE_TDBAL(0):
248 for (i = 0; i < 64; i++)
249 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
250 break;
251 case IXGBE_TDBAH(0):
252 for (i = 0; i < 64; i++)
253 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
254 break;
255 case IXGBE_TDLEN(0):
256 for (i = 0; i < 64; i++)
257 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
258 break;
259 case IXGBE_TDH(0):
260 for (i = 0; i < 64; i++)
261 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
262 break;
263 case IXGBE_TDT(0):
264 for (i = 0; i < 64; i++)
265 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
266 break;
267 case IXGBE_TXDCTL(0):
268 for (i = 0; i < 64; i++)
269 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
270 break;
271 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000272 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000273 IXGBE_READ_REG(hw, reginfo->ofs));
274 return;
275 }
276
277 for (i = 0; i < 8; i++) {
278 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000279 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000280 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000281 pr_cont(" %08x", regs[i*8+j]);
282 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000283 }
284
285}
286
287/*
288 * ixgbe_dump - Print registers, tx-rings and rx-rings
289 */
290static void ixgbe_dump(struct ixgbe_adapter *adapter)
291{
292 struct net_device *netdev = adapter->netdev;
293 struct ixgbe_hw *hw = &adapter->hw;
294 struct ixgbe_reg_info *reginfo;
295 int n = 0;
296 struct ixgbe_ring *tx_ring;
Alexander Duyck729739b2012-02-08 07:51:06 +0000297 struct ixgbe_tx_buffer *tx_buffer;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000298 union ixgbe_adv_tx_desc *tx_desc;
299 struct my_u0 { u64 a; u64 b; } *u0;
300 struct ixgbe_ring *rx_ring;
301 union ixgbe_adv_rx_desc *rx_desc;
302 struct ixgbe_rx_buffer *rx_buffer_info;
303 u32 staterr;
304 int i = 0;
305
306 if (!netif_msg_hw(adapter))
307 return;
308
309 /* Print netdevice Info */
310 if (netdev) {
311 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000312 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000313 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000314 pr_info("%-15s %016lX %016lX %016lX\n",
315 netdev->name,
316 netdev->state,
317 netdev->trans_start,
318 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000319 }
320
321 /* Print Registers */
322 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000323 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000324 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
325 reginfo->name; reginfo++) {
326 ixgbe_regdump(hw, reginfo);
327 }
328
329 /* Print TX Ring Summary */
330 if (!netdev || !netif_running(netdev))
331 goto exit;
332
333 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000334 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000335 for (n = 0; n < adapter->num_tx_queues; n++) {
336 tx_ring = adapter->tx_ring[n];
Alexander Duyck729739b2012-02-08 07:51:06 +0000337 tx_buffer = &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Alexander Duyckd3d00232011-07-15 02:31:25 +0000338 pr_info(" %5d %5X %5X %016llX %04X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000339 n, tx_ring->next_to_use, tx_ring->next_to_clean,
Alexander Duyck729739b2012-02-08 07:51:06 +0000340 (u64)dma_unmap_addr(tx_buffer, dma),
341 dma_unmap_len(tx_buffer, len),
342 tx_buffer->next_to_watch,
343 (u64)tx_buffer->time_stamp);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000344 }
345
346 /* Print TX Rings */
347 if (!netif_msg_tx_done(adapter))
348 goto rx_ring_summary;
349
350 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
351
352 /* Transmit Descriptor Formats
353 *
354 * Advanced Transmit Descriptor
355 * +--------------------------------------------------------------+
356 * 0 | Buffer Address [63:0] |
357 * +--------------------------------------------------------------+
358 * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
359 * +--------------------------------------------------------------+
360 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
361 */
362
363 for (n = 0; n < adapter->num_tx_queues; n++) {
364 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000365 pr_info("------------------------------------\n");
366 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
367 pr_info("------------------------------------\n");
368 pr_info("T [desc] [address 63:0 ] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000369 "[PlPOIdStDDt Ln] [bi->dma ] "
370 "leng ntw timestamp bi->skb\n");
371
372 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duycke4f74022012-01-31 02:59:44 +0000373 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000374 tx_buffer = &tx_ring->tx_buffer_info[i];
Taku Izumidcd79ae2010-04-27 14:39:53 +0000375 u0 = (struct my_u0 *)tx_desc;
Joe Perchesc7689572010-09-07 21:35:17 +0000376 pr_info("T [0x%03X] %016llX %016llX %016llX"
Alexander Duyckd3d00232011-07-15 02:31:25 +0000377 " %04X %p %016llX %p", i,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000378 le64_to_cpu(u0->a),
379 le64_to_cpu(u0->b),
Alexander Duyck729739b2012-02-08 07:51:06 +0000380 (u64)dma_unmap_addr(tx_buffer, dma),
381 dma_unmap_len(tx_buffer, len),
382 tx_buffer->next_to_watch,
383 (u64)tx_buffer->time_stamp,
384 tx_buffer->skb);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000385 if (i == tx_ring->next_to_use &&
386 i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000387 pr_cont(" NTC/U\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000388 else if (i == tx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000389 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000390 else if (i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000391 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000392 else
Joe Perchesc7689572010-09-07 21:35:17 +0000393 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000394
395 if (netif_msg_pktdata(adapter) &&
Alexander Duyck729739b2012-02-08 07:51:06 +0000396 dma_unmap_len(tx_buffer, len) != 0)
Taku Izumidcd79ae2010-04-27 14:39:53 +0000397 print_hex_dump(KERN_INFO, "",
398 DUMP_PREFIX_ADDRESS, 16, 1,
Alexander Duyck729739b2012-02-08 07:51:06 +0000399 phys_to_virt(dma_unmap_addr(tx_buffer,
400 dma)),
401 dma_unmap_len(tx_buffer, len),
402 true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000403 }
404 }
405
406 /* Print RX Rings Summary */
407rx_ring_summary:
408 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000409 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000410 for (n = 0; n < adapter->num_rx_queues; n++) {
411 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000412 pr_info("%5d %5X %5X\n",
413 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000414 }
415
416 /* Print RX Rings */
417 if (!netif_msg_rx_status(adapter))
418 goto exit;
419
420 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
421
422 /* Advanced Receive Descriptor (Read) Format
423 * 63 1 0
424 * +-----------------------------------------------------+
425 * 0 | Packet Buffer Address [63:1] |A0/NSE|
426 * +----------------------------------------------+------+
427 * 8 | Header Buffer Address [63:1] | DD |
428 * +-----------------------------------------------------+
429 *
430 *
431 * Advanced Receive Descriptor (Write-Back) Format
432 *
433 * 63 48 47 32 31 30 21 20 16 15 4 3 0
434 * +------------------------------------------------------+
435 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
436 * | Checksum Ident | | | | Type | Type |
437 * +------------------------------------------------------+
438 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
439 * +------------------------------------------------------+
440 * 63 48 47 32 31 20 19 0
441 */
442 for (n = 0; n < adapter->num_rx_queues; n++) {
443 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000444 pr_info("------------------------------------\n");
445 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
446 pr_info("------------------------------------\n");
447 pr_info("R [desc] [ PktBuf A0] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000448 "[ HeadBuf DD] [bi->dma ] [bi->skb] "
449 "<-- Adv Rx Read format\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000450 pr_info("RWB[desc] [PcsmIpSHl PtRs] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000451 "[vl er S cks ln] ---------------- [bi->skb] "
452 "<-- Adv Rx Write-Back format\n");
453
454 for (i = 0; i < rx_ring->count; i++) {
455 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000456 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000457 u0 = (struct my_u0 *)rx_desc;
458 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
459 if (staterr & IXGBE_RXD_STAT_DD) {
460 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000461 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000462 "%016llX ---------------- %p", i,
463 le64_to_cpu(u0->a),
464 le64_to_cpu(u0->b),
465 rx_buffer_info->skb);
466 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000467 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000468 "%016llX %016llX %p", i,
469 le64_to_cpu(u0->a),
470 le64_to_cpu(u0->b),
471 (u64)rx_buffer_info->dma,
472 rx_buffer_info->skb);
473
474 if (netif_msg_pktdata(adapter)) {
475 print_hex_dump(KERN_INFO, "",
476 DUMP_PREFIX_ADDRESS, 16, 1,
477 phys_to_virt(rx_buffer_info->dma),
Alexander Duyckf8003262012-03-03 02:35:52 +0000478 ixgbe_rx_bufsz(rx_ring), true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000479 }
480 }
481
482 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000483 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000484 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000485 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000486 else
Joe Perchesc7689572010-09-07 21:35:17 +0000487 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000488
489 }
490 }
491
492exit:
493 return;
494}
495
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800496static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
497{
498 u32 ctrl_ext;
499
500 /* Let firmware take over control of h/w */
501 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
502 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000503 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800504}
505
506static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
507{
508 u32 ctrl_ext;
509
510 /* Let firmware know the driver has taken over */
511 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
512 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000513 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800514}
Auke Kok9a799d72007-09-15 14:07:45 -0700515
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000516/*
517 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
518 * @adapter: pointer to adapter struct
519 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
520 * @queue: queue to map the corresponding interrupt to
521 * @msix_vector: the vector to map to the corresponding queue
522 *
523 */
524static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000525 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700526{
527 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000528 struct ixgbe_hw *hw = &adapter->hw;
529 switch (hw->mac.type) {
530 case ixgbe_mac_82598EB:
531 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
532 if (direction == -1)
533 direction = 0;
534 index = (((direction * 64) + queue) >> 2) & 0x1F;
535 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
536 ivar &= ~(0xFF << (8 * (queue & 0x3)));
537 ivar |= (msix_vector << (8 * (queue & 0x3)));
538 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
539 break;
540 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800541 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000542 if (direction == -1) {
543 /* other causes */
544 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
545 index = ((queue & 1) * 8);
546 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
547 ivar &= ~(0xFF << index);
548 ivar |= (msix_vector << index);
549 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
550 break;
551 } else {
552 /* tx or rx causes */
553 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
554 index = ((16 * (queue & 1)) + (8 * direction));
555 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
556 ivar &= ~(0xFF << index);
557 ivar |= (msix_vector << index);
558 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
559 break;
560 }
561 default:
562 break;
563 }
Auke Kok9a799d72007-09-15 14:07:45 -0700564}
565
Alexander Duyckfe49f042009-06-04 16:00:09 +0000566static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000567 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000568{
569 u32 mask;
570
Alexander Duyckbd508172010-11-16 19:27:03 -0800571 switch (adapter->hw.mac.type) {
572 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000573 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
574 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800575 break;
576 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800577 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000578 mask = (qmask & 0xFFFFFFFF);
579 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
580 mask = (qmask >> 32);
581 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800582 break;
583 default:
584 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000585 }
586}
587
Alexander Duyck729739b2012-02-08 07:51:06 +0000588void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *ring,
589 struct ixgbe_tx_buffer *tx_buffer)
Alexander Duyckd3d00232011-07-15 02:31:25 +0000590{
Alexander Duyck729739b2012-02-08 07:51:06 +0000591 if (tx_buffer->skb) {
592 dev_kfree_skb_any(tx_buffer->skb);
593 if (dma_unmap_len(tx_buffer, len))
Alexander Duyckd3d00232011-07-15 02:31:25 +0000594 dma_unmap_single(ring->dev,
Alexander Duyck729739b2012-02-08 07:51:06 +0000595 dma_unmap_addr(tx_buffer, dma),
596 dma_unmap_len(tx_buffer, len),
597 DMA_TO_DEVICE);
598 } else if (dma_unmap_len(tx_buffer, len)) {
599 dma_unmap_page(ring->dev,
600 dma_unmap_addr(tx_buffer, dma),
601 dma_unmap_len(tx_buffer, len),
602 DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000603 }
Alexander Duyck729739b2012-02-08 07:51:06 +0000604 tx_buffer->next_to_watch = NULL;
605 tx_buffer->skb = NULL;
606 dma_unmap_len_set(tx_buffer, len, 0);
607 /* tx_buffer must be completely set up in the transmit path */
Auke Kok9a799d72007-09-15 14:07:45 -0700608}
609
John Fastabendc84d3242010-11-16 19:27:12 -0800610static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700611{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700612 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800613 struct ixgbe_hw_stats *hwstats = &adapter->stats;
614 u32 data = 0;
615 u32 xoff[8] = {0};
616 int i;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700617
John Fastabendc84d3242010-11-16 19:27:12 -0800618 if ((hw->fc.current_mode == ixgbe_fc_full) ||
619 (hw->fc.current_mode == ixgbe_fc_rx_pause)) {
620 switch (hw->mac.type) {
621 case ixgbe_mac_82598EB:
622 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
623 break;
624 default:
625 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
626 }
627 hwstats->lxoffrxc += data;
628
629 /* refill credits (no tx hang) if we received xoff */
630 if (!data)
631 return;
632
633 for (i = 0; i < adapter->num_tx_queues; i++)
634 clear_bit(__IXGBE_HANG_CHECK_ARMED,
635 &adapter->tx_ring[i]->state);
636 return;
637 } else if (!(adapter->dcb_cfg.pfc_mode_enable))
638 return;
639
640 /* update stats for each tc, only valid with PFC enabled */
641 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
642 switch (hw->mac.type) {
643 case ixgbe_mac_82598EB:
644 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
645 break;
646 default:
647 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
648 }
649 hwstats->pxoffrxc[i] += xoff[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700650 }
651
John Fastabendc84d3242010-11-16 19:27:12 -0800652 /* disarm tx queues that have received xoff frames */
653 for (i = 0; i < adapter->num_tx_queues; i++) {
654 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendfb5475f2011-04-26 07:26:36 +0000655 u8 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800656
657 if (xoff[tc])
658 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
659 }
660}
661
662static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
663{
Alexander Duyck7d7ce682012-02-08 07:50:51 +0000664 return ring->stats.packets;
John Fastabendc84d3242010-11-16 19:27:12 -0800665}
666
667static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
668{
669 struct ixgbe_adapter *adapter = netdev_priv(ring->netdev);
670 struct ixgbe_hw *hw = &adapter->hw;
671
672 u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
673 u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
674
675 if (head != tail)
676 return (head < tail) ?
677 tail - head : (tail + ring->count - head);
678
679 return 0;
680}
681
682static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
683{
684 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
685 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
686 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
687 bool ret = false;
688
689 clear_check_for_tx_hang(tx_ring);
690
691 /*
692 * Check for a hung queue, but be thorough. This verifies
693 * that a transmit has been completed since the previous
694 * check AND there is at least one packet pending. The
695 * ARMED bit is set to indicate a potential hang. The
696 * bit is cleared if a pause frame is received to remove
697 * false hang detection due to PFC or 802.3x frames. By
698 * requiring this to fail twice we avoid races with
699 * pfc clearing the ARMED bit and conditions where we
700 * run the check_tx_hang logic with a transmit completion
701 * pending but without time to complete it yet.
702 */
703 if ((tx_done_old == tx_done) && tx_pending) {
704 /* make sure it is true for two checks in a row */
705 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
706 &tx_ring->state);
707 } else {
708 /* update completed stats and continue */
709 tx_ring->tx_stats.tx_done_old = tx_done;
710 /* reset the countdown */
711 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
712 }
713
714 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700715}
716
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000717/**
718 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
719 * @adapter: driver private struct
720 **/
721static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
722{
723
724 /* Do the reset outside of interrupt context */
725 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
726 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
727 ixgbe_service_event_schedule(adapter);
728 }
729}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700730
Auke Kok9a799d72007-09-15 14:07:45 -0700731/**
732 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000733 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700734 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700735 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000736static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000737 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700738{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000739 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000740 struct ixgbe_tx_buffer *tx_buffer;
741 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700742 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +0000743 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyck729739b2012-02-08 07:51:06 +0000744 unsigned int i = tx_ring->next_to_clean;
745
746 if (test_bit(__IXGBE_DOWN, &adapter->state))
747 return true;
Auke Kok9a799d72007-09-15 14:07:45 -0700748
Alexander Duyckd3d00232011-07-15 02:31:25 +0000749 tx_buffer = &tx_ring->tx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000750 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000751 i -= tx_ring->count;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800752
Alexander Duyck729739b2012-02-08 07:51:06 +0000753 do {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000754 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -0700755
Alexander Duyckd3d00232011-07-15 02:31:25 +0000756 /* if next_to_watch is not set then there is no work pending */
757 if (!eop_desc)
758 break;
759
Alexander Duyck7f83a9e2012-02-08 07:49:23 +0000760 /* prevent any other reads prior to eop_desc */
761 rmb();
762
Alexander Duyckd3d00232011-07-15 02:31:25 +0000763 /* if DD is not set pending work has not been completed */
764 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
765 break;
766
Alexander Duyckd3d00232011-07-15 02:31:25 +0000767 /* clear next_to_watch to prevent false hangs */
768 tx_buffer->next_to_watch = NULL;
769
Alexander Duyck091a6242012-02-08 07:51:01 +0000770 /* update the statistics for this packet */
771 total_bytes += tx_buffer->bytecount;
772 total_packets += tx_buffer->gso_segs;
773
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000774 /* free the skb */
775 dev_kfree_skb_any(tx_buffer->skb);
776
Alexander Duyck729739b2012-02-08 07:51:06 +0000777 /* unmap skb header data */
778 dma_unmap_single(tx_ring->dev,
779 dma_unmap_addr(tx_buffer, dma),
780 dma_unmap_len(tx_buffer, len),
781 DMA_TO_DEVICE);
782
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000783 /* clear tx_buffer data */
784 tx_buffer->skb = NULL;
Alexander Duyck729739b2012-02-08 07:51:06 +0000785 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000786
Alexander Duyck729739b2012-02-08 07:51:06 +0000787 /* unmap remaining buffers */
788 while (tx_desc != eop_desc) {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000789 tx_buffer++;
790 tx_desc++;
791 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +0000792 if (unlikely(!i)) {
793 i -= tx_ring->count;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000794 tx_buffer = tx_ring->tx_buffer_info;
Alexander Duycke4f74022012-01-31 02:59:44 +0000795 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000796 }
797
Alexander Duyck729739b2012-02-08 07:51:06 +0000798 /* unmap any remaining paged data */
799 if (dma_unmap_len(tx_buffer, len)) {
800 dma_unmap_page(tx_ring->dev,
801 dma_unmap_addr(tx_buffer, dma),
802 dma_unmap_len(tx_buffer, len),
803 DMA_TO_DEVICE);
804 dma_unmap_len_set(tx_buffer, len, 0);
805 }
806 }
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800807
Alexander Duyck729739b2012-02-08 07:51:06 +0000808 /* move us one more past the eop_desc for start of next pkt */
809 tx_buffer++;
810 tx_desc++;
811 i++;
812 if (unlikely(!i)) {
813 i -= tx_ring->count;
814 tx_buffer = tx_ring->tx_buffer_info;
815 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
816 }
817
818 /* issue prefetch for next Tx descriptor */
819 prefetch(tx_desc);
820
821 /* update budget accounting */
822 budget--;
823 } while (likely(budget));
824
825 i += tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -0700826 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000827 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -0800828 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +0000829 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000830 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +0000831 q_vector->tx.total_bytes += total_bytes;
832 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -0800833
John Fastabendc84d3242010-11-16 19:27:12 -0800834 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -0800835 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -0800836 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800837 e_err(drv, "Detected Tx Unit Hang\n"
838 " Tx Queue <%d>\n"
839 " TDH, TDT <%x>, <%x>\n"
840 " next_to_use <%x>\n"
841 " next_to_clean <%x>\n"
842 "tx_buffer_info[next_to_clean]\n"
843 " time_stamp <%lx>\n"
844 " jiffies <%lx>\n",
845 tx_ring->queue_index,
846 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
847 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +0000848 tx_ring->next_to_use, i,
849 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -0800850
851 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
852
853 e_info(probe,
854 "tx hang %d detected on queue %d, resetting adapter\n",
855 adapter->tx_timeout_count + 1, tx_ring->queue_index);
856
857 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000858 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -0800859
860 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +0000861 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -0800862 }
Auke Kok9a799d72007-09-15 14:07:45 -0700863
Alexander Duyckb2d96e02012-02-07 08:14:33 +0000864 netdev_tx_completed_queue(txring_txq(tx_ring),
865 total_packets, total_bytes);
866
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800867#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +0000868 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +0000869 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800870 /* Make sure that anybody stopping the queue after this
871 * sees the new next_to_clean.
872 */
873 smp_mb();
Alexander Duyck729739b2012-02-08 07:51:06 +0000874 if (__netif_subqueue_stopped(tx_ring->netdev,
875 tx_ring->queue_index)
876 && !test_bit(__IXGBE_DOWN, &adapter->state)) {
877 netif_wake_subqueue(tx_ring->netdev,
878 tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800879 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800880 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800881 }
Auke Kok9a799d72007-09-15 14:07:45 -0700882
Alexander Duyck59224552011-08-31 00:01:06 +0000883 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -0700884}
885
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400886#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800887static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800888 struct ixgbe_ring *tx_ring,
889 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800890{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000891 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000892 u32 txctrl = dca3_get_tag(tx_ring->dev, cpu);
893 u16 reg_offset;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800894
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800895 switch (hw->mac.type) {
896 case ixgbe_mac_82598EB:
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000897 reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800898 break;
899 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800900 case ixgbe_mac_X540:
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000901 reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx);
902 txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599;
903 break;
904 default:
905 /* for unknown hardware do not write register */
906 return;
907 }
908
909 /*
910 * We can enable relaxed ordering for reads, but not writes when
911 * DCA is enabled. This is due to a known issue in some chipsets
912 * which will cause the DCA tag to be cleared.
913 */
914 txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN |
915 IXGBE_DCA_TXCTRL_DATA_RRO_EN |
916 IXGBE_DCA_TXCTRL_DESC_DCA_EN;
917
918 IXGBE_WRITE_REG(hw, reg_offset, txctrl);
919}
920
921static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
922 struct ixgbe_ring *rx_ring,
923 int cpu)
924{
925 struct ixgbe_hw *hw = &adapter->hw;
926 u32 rxctrl = dca3_get_tag(rx_ring->dev, cpu);
927 u8 reg_idx = rx_ring->reg_idx;
928
929
930 switch (hw->mac.type) {
931 case ixgbe_mac_82599EB:
932 case ixgbe_mac_X540:
933 rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800934 break;
935 default:
936 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800937 }
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000938
939 /*
940 * We can enable relaxed ordering for reads, but not writes when
941 * DCA is enabled. This is due to a known issue in some chipsets
942 * which will cause the DCA tag to be cleared.
943 */
944 rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN |
945 IXGBE_DCA_RXCTRL_DATA_DCA_EN |
946 IXGBE_DCA_RXCTRL_DESC_DCA_EN;
947
948 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800949}
950
951static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
952{
953 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000954 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800955 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800956
957 if (q_vector->cpu == cpu)
958 goto out_no_update;
959
Alexander Duycka5579282012-02-08 07:50:04 +0000960 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000961 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800962
Alexander Duycka5579282012-02-08 07:50:04 +0000963 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000964 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800965
966 q_vector->cpu = cpu;
967out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800968 put_cpu();
969}
970
971static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
972{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800973 int num_q_vectors;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800974 int i;
975
976 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
977 return;
978
Alexander Duycke35ec122009-05-21 13:07:12 +0000979 /* always use CB2 mode, difference is masked in the CB driver */
980 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
981
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800982 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
983 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
984 else
985 num_q_vectors = 1;
986
987 for (i = 0; i < num_q_vectors; i++) {
988 adapter->q_vector[i]->cpu = -1;
989 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800990 }
991}
992
993static int __ixgbe_notify_dca(struct device *dev, void *data)
994{
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800995 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800996 unsigned long event = *(unsigned long *)data;
997
Don Skidmore2a72c312011-07-20 02:27:05 +0000998 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800999 return 0;
1000
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001001 switch (event) {
1002 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001003 /* if we're already enabled, don't do it again */
1004 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1005 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001006 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001007 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001008 ixgbe_setup_dca(adapter);
1009 break;
1010 }
1011 /* Fall Through since DCA is disabled. */
1012 case DCA_PROVIDER_REMOVE:
1013 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1014 dca_remove_requester(dev);
1015 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1016 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
1017 }
1018 break;
1019 }
1020
Denis V. Lunev652f0932008-03-27 14:39:17 +03001021 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001022}
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001023
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001024#endif /* CONFIG_IXGBE_DCA */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001025static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
1026 union ixgbe_adv_rx_desc *rx_desc,
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001027 struct sk_buff *skb)
1028{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001029 if (ring->netdev->features & NETIF_F_RXHASH)
1030 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001031}
1032
Alexander Duyckf8003262012-03-03 02:35:52 +00001033#ifdef IXGBE_FCOE
Auke Kok9a799d72007-09-15 14:07:45 -07001034/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001035 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
1036 * @adapter: address of board private structure
1037 * @rx_desc: advanced rx descriptor
1038 *
1039 * Returns : true if it is FCoE pkt
1040 */
1041static inline bool ixgbe_rx_is_fcoe(struct ixgbe_adapter *adapter,
1042 union ixgbe_adv_rx_desc *rx_desc)
1043{
1044 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1045
1046 return (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
1047 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1048 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1049 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1050}
1051
Alexander Duyckf8003262012-03-03 02:35:52 +00001052#endif /* IXGBE_FCOE */
Alexander Duyckff886df2011-06-11 01:45:13 +00001053/**
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001054 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
Alexander Duyck8a0da212012-01-31 02:59:49 +00001055 * @ring: structure containing ring specific data
1056 * @rx_desc: current Rx descriptor being processed
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001057 * @skb: skb currently being received and modified
1058 **/
Alexander Duyck8a0da212012-01-31 02:59:49 +00001059static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001060 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001061 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001062{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001063 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001064
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001065 /* Rx csum disabled */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001066 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Auke Kok9a799d72007-09-15 14:07:45 -07001067 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001068
1069 /* if IP and error */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001070 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1071 ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001072 ring->rx_stats.csum_err++;
Auke Kok9a799d72007-09-15 14:07:45 -07001073 return;
1074 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001075
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001076 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001077 return;
1078
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001079 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Alexander Duyckf8003262012-03-03 02:35:52 +00001080 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
Don Skidmore8bae1b22009-07-23 18:00:39 +00001081
1082 /*
1083 * 82599 errata, UDP frames with a 0 checksum can be marked as
1084 * checksum errors.
1085 */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001086 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1087 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
Don Skidmore8bae1b22009-07-23 18:00:39 +00001088 return;
1089
Alexander Duyck8a0da212012-01-31 02:59:49 +00001090 ring->rx_stats.csum_err++;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001091 return;
1092 }
1093
Auke Kok9a799d72007-09-15 14:07:45 -07001094 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001095 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001096}
1097
Alexander Duyck84ea2592010-11-16 19:26:49 -08001098static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001099{
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001100 rx_ring->next_to_use = val;
Alexander Duyckf8003262012-03-03 02:35:52 +00001101
1102 /* update next to alloc since we have filled the ring */
1103 rx_ring->next_to_alloc = val;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001104 /*
1105 * Force memory writes to complete before letting h/w
1106 * know there are new descriptors to fetch. (Only
1107 * applicable for weak-ordered memory model archs,
1108 * such as IA-64).
1109 */
1110 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001111 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001112}
1113
Alexander Duyckf990b792012-01-31 02:59:34 +00001114static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1115 struct ixgbe_rx_buffer *bi)
1116{
1117 struct page *page = bi->page;
Alexander Duyckf8003262012-03-03 02:35:52 +00001118 dma_addr_t dma = bi->dma;
Alexander Duyckf990b792012-01-31 02:59:34 +00001119
Alexander Duyckf8003262012-03-03 02:35:52 +00001120 /* since we are recycling buffers we should seldom need to alloc */
1121 if (likely(dma))
Alexander Duyckf990b792012-01-31 02:59:34 +00001122 return true;
1123
Alexander Duyckf8003262012-03-03 02:35:52 +00001124 /* alloc new page for storage */
1125 if (likely(!page)) {
1126 page = alloc_pages(GFP_ATOMIC | __GFP_COLD,
1127 ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf990b792012-01-31 02:59:34 +00001128 if (unlikely(!page)) {
1129 rx_ring->rx_stats.alloc_rx_page_failed++;
1130 return false;
1131 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001132 bi->page = page;
Alexander Duyckf990b792012-01-31 02:59:34 +00001133 }
1134
Alexander Duyckf8003262012-03-03 02:35:52 +00001135 /* map page for use */
1136 dma = dma_map_page(rx_ring->dev, page, 0,
1137 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
Alexander Duyckf990b792012-01-31 02:59:34 +00001138
Alexander Duyckf8003262012-03-03 02:35:52 +00001139 /*
1140 * if mapping failed free memory back to system since
1141 * there isn't much point in holding memory we can't use
1142 */
1143 if (dma_mapping_error(rx_ring->dev, dma)) {
1144 put_page(page);
1145 bi->page = NULL;
1146
Alexander Duyckf990b792012-01-31 02:59:34 +00001147 rx_ring->rx_stats.alloc_rx_page_failed++;
1148 return false;
1149 }
1150
Alexander Duyckf8003262012-03-03 02:35:52 +00001151 bi->dma = dma;
1152 bi->page_offset ^= ixgbe_rx_bufsz(rx_ring);
1153
Alexander Duyckf990b792012-01-31 02:59:34 +00001154 return true;
1155}
1156
Auke Kok9a799d72007-09-15 14:07:45 -07001157/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001158 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001159 * @rx_ring: ring to place buffers on
1160 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001161 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001162void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001163{
Auke Kok9a799d72007-09-15 14:07:45 -07001164 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001165 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001166 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001167
Alexander Duyckf8003262012-03-03 02:35:52 +00001168 /* nothing to do */
1169 if (!cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001170 return;
1171
Alexander Duycke4f74022012-01-31 02:59:44 +00001172 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Alexander Duyckf990b792012-01-31 02:59:34 +00001173 bi = &rx_ring->rx_buffer_info[i];
1174 i -= rx_ring->count;
1175
Alexander Duyckf8003262012-03-03 02:35:52 +00001176 do {
1177 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
Alexander Duyckf990b792012-01-31 02:59:34 +00001178 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001179
Alexander Duyckf8003262012-03-03 02:35:52 +00001180 /*
1181 * Refresh the desc even if buffer_addrs didn't change
1182 * because each write-back erases this info.
1183 */
1184 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
Auke Kok9a799d72007-09-15 14:07:45 -07001185
Alexander Duyckf990b792012-01-31 02:59:34 +00001186 rx_desc++;
1187 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001188 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001189 if (unlikely(!i)) {
Alexander Duycke4f74022012-01-31 02:59:44 +00001190 rx_desc = IXGBE_RX_DESC(rx_ring, 0);
Alexander Duyckf990b792012-01-31 02:59:34 +00001191 bi = rx_ring->rx_buffer_info;
1192 i -= rx_ring->count;
1193 }
1194
1195 /* clear the hdr_addr for the next_to_use descriptor */
1196 rx_desc->read.hdr_addr = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001197
1198 cleaned_count--;
1199 } while (cleaned_count);
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001200
Alexander Duyckf990b792012-01-31 02:59:34 +00001201 i += rx_ring->count;
1202
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001203 if (rx_ring->next_to_use != i)
Alexander Duyck84ea2592010-11-16 19:26:49 -08001204 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001205}
1206
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001207/**
1208 * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE
1209 * @data: pointer to the start of the headers
1210 * @max_len: total length of section to find headers in
1211 *
1212 * This function is meant to determine the length of headers that will
1213 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1214 * motivation of doing this is to only perform one pull for IPv4 TCP
1215 * packets so that we can do basic things like calculating the gso_size
1216 * based on the average data per packet.
1217 **/
1218static unsigned int ixgbe_get_headlen(unsigned char *data,
1219 unsigned int max_len)
1220{
1221 union {
1222 unsigned char *network;
1223 /* l2 headers */
1224 struct ethhdr *eth;
1225 struct vlan_hdr *vlan;
1226 /* l3 headers */
1227 struct iphdr *ipv4;
1228 } hdr;
1229 __be16 protocol;
1230 u8 nexthdr = 0; /* default to not TCP */
1231 u8 hlen;
1232
1233 /* this should never happen, but better safe than sorry */
1234 if (max_len < ETH_HLEN)
1235 return max_len;
1236
1237 /* initialize network frame pointer */
1238 hdr.network = data;
1239
1240 /* set first protocol and move network header forward */
1241 protocol = hdr.eth->h_proto;
1242 hdr.network += ETH_HLEN;
1243
1244 /* handle any vlan tag if present */
1245 if (protocol == __constant_htons(ETH_P_8021Q)) {
1246 if ((hdr.network - data) > (max_len - VLAN_HLEN))
1247 return max_len;
1248
1249 protocol = hdr.vlan->h_vlan_encapsulated_proto;
1250 hdr.network += VLAN_HLEN;
1251 }
1252
1253 /* handle L3 protocols */
1254 if (protocol == __constant_htons(ETH_P_IP)) {
1255 if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
1256 return max_len;
1257
1258 /* access ihl as a u8 to avoid unaligned access on ia64 */
1259 hlen = (hdr.network[0] & 0x0F) << 2;
1260
1261 /* verify hlen meets minimum size requirements */
1262 if (hlen < sizeof(struct iphdr))
1263 return hdr.network - data;
1264
1265 /* record next protocol */
1266 nexthdr = hdr.ipv4->protocol;
1267 hdr.network += hlen;
Alexander Duyckf8003262012-03-03 02:35:52 +00001268#ifdef IXGBE_FCOE
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001269 } else if (protocol == __constant_htons(ETH_P_FCOE)) {
1270 if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN))
1271 return max_len;
1272 hdr.network += FCOE_HEADER_LEN;
1273#endif
1274 } else {
1275 return hdr.network - data;
1276 }
1277
1278 /* finally sort out TCP */
1279 if (nexthdr == IPPROTO_TCP) {
1280 if ((hdr.network - data) > (max_len - sizeof(struct tcphdr)))
1281 return max_len;
1282
1283 /* access doff as a u8 to avoid unaligned access on ia64 */
1284 hlen = (hdr.network[12] & 0xF0) >> 2;
1285
1286 /* verify hlen meets minimum size requirements */
1287 if (hlen < sizeof(struct tcphdr))
1288 return hdr.network - data;
1289
1290 hdr.network += hlen;
1291 }
1292
1293 /*
1294 * If everything has gone correctly hdr.network should be the
1295 * data section of the packet and will be the end of the header.
1296 * If not then it probably represents the end of the last recognized
1297 * header.
1298 */
1299 if ((hdr.network - data) < max_len)
1300 return hdr.network - data;
1301 else
1302 return max_len;
1303}
1304
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001305static void ixgbe_get_rsc_cnt(struct ixgbe_ring *rx_ring,
1306 union ixgbe_adv_rx_desc *rx_desc,
1307 struct sk_buff *skb)
1308{
1309 __le32 rsc_enabled;
1310 u32 rsc_cnt;
1311
1312 if (!ring_is_rsc_enabled(rx_ring))
1313 return;
1314
1315 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1316 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1317
1318 /* If this is an RSC frame rsc_cnt should be non-zero */
1319 if (!rsc_enabled)
1320 return;
1321
1322 rsc_cnt = le32_to_cpu(rsc_enabled);
1323 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1324
1325 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
Alexander Duyckaa801752010-11-16 19:27:02 -08001326}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001327
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001328static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1329 struct sk_buff *skb)
1330{
Alexander Duyckf8003262012-03-03 02:35:52 +00001331 u16 hdr_len = skb_headlen(skb);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001332
1333 /* set gso_size to avoid messing up TCP MSS */
1334 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1335 IXGBE_CB(skb)->append_cnt);
1336}
1337
1338static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1339 struct sk_buff *skb)
1340{
1341 /* if append_cnt is 0 then frame is not RSC */
1342 if (!IXGBE_CB(skb)->append_cnt)
1343 return;
1344
1345 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1346 rx_ring->rx_stats.rsc_flush++;
1347
1348 ixgbe_set_rsc_gso_size(rx_ring, skb);
1349
1350 /* gso_size is computed using append_cnt so always clear it last */
1351 IXGBE_CB(skb)->append_cnt = 0;
1352}
1353
Alexander Duyck8a0da212012-01-31 02:59:49 +00001354/**
1355 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1356 * @rx_ring: rx descriptor ring packet is being transacted on
1357 * @rx_desc: pointer to the EOP Rx descriptor
1358 * @skb: pointer to current skb being populated
1359 *
1360 * This function checks the ring, descriptor, and packet information in
1361 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1362 * other fields within the skb.
1363 **/
1364static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1365 union ixgbe_adv_rx_desc *rx_desc,
1366 struct sk_buff *skb)
1367{
1368 ixgbe_update_rsc_stats(rx_ring, skb);
1369
1370 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1371
1372 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1373
1374 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
1375 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
1376 __vlan_hwaccel_put_tag(skb, vid);
1377 }
1378
1379 skb_record_rx_queue(skb, rx_ring->queue_index);
1380
1381 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
1382}
1383
1384static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1385 struct sk_buff *skb)
1386{
1387 struct ixgbe_adapter *adapter = q_vector->adapter;
1388
1389 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1390 napi_gro_receive(&q_vector->napi, skb);
1391 else
1392 netif_rx(skb);
Alexander Duyckf8212f92009-04-27 22:42:37 +00001393}
1394
Alexander Duyckf8003262012-03-03 02:35:52 +00001395/**
1396 * ixgbe_is_non_eop - process handling of non-EOP buffers
1397 * @rx_ring: Rx ring being processed
1398 * @rx_desc: Rx descriptor for current buffer
1399 * @skb: Current socket buffer containing buffer in progress
1400 *
1401 * This function updates next to clean. If the buffer is an EOP buffer
1402 * this function exits returning false, otherwise it will place the
1403 * sk_buff in the next buffer to be chained and return true indicating
1404 * that this is in fact a non-EOP buffer.
1405 **/
1406static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring,
1407 union ixgbe_adv_rx_desc *rx_desc,
1408 struct sk_buff *skb)
1409{
1410 u32 ntc = rx_ring->next_to_clean + 1;
1411
1412 /* fetch, update, and store next to clean */
1413 ntc = (ntc < rx_ring->count) ? ntc : 0;
1414 rx_ring->next_to_clean = ntc;
1415
1416 prefetch(IXGBE_RX_DESC(rx_ring, ntc));
1417
1418 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1419 return false;
1420
1421 /* append_cnt indicates packet is RSC, if so fetch nextp */
1422 if (IXGBE_CB(skb)->append_cnt) {
1423 ntc = le32_to_cpu(rx_desc->wb.upper.status_error);
1424 ntc &= IXGBE_RXDADV_NEXTP_MASK;
1425 ntc >>= IXGBE_RXDADV_NEXTP_SHIFT;
1426 }
1427
1428 /* place skb in next buffer to be received */
1429 rx_ring->rx_buffer_info[ntc].skb = skb;
1430 rx_ring->rx_stats.non_eop_descs++;
1431
1432 return true;
1433}
1434
1435/**
1436 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1437 * @rx_ring: rx descriptor ring packet is being transacted on
1438 * @rx_desc: pointer to the EOP Rx descriptor
1439 * @skb: pointer to current skb being fixed
1440 *
1441 * Check for corrupted packet headers caused by senders on the local L2
1442 * embedded NIC switch not setting up their Tx Descriptors right. These
1443 * should be very rare.
1444 *
1445 * Also address the case where we are pulling data in on pages only
1446 * and as such no data is present in the skb header.
1447 *
1448 * In addition if skb is not at least 60 bytes we need to pad it so that
1449 * it is large enough to qualify as a valid Ethernet frame.
1450 *
1451 * Returns true if an error was encountered and skb was freed.
1452 **/
1453static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1454 union ixgbe_adv_rx_desc *rx_desc,
1455 struct sk_buff *skb)
1456{
1457 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1458 struct net_device *netdev = rx_ring->netdev;
1459 unsigned char *va;
1460 unsigned int pull_len;
1461
1462 /* if the page was released unmap it, else just sync our portion */
1463 if (unlikely(IXGBE_CB(skb)->page_released)) {
1464 dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma,
1465 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
1466 IXGBE_CB(skb)->page_released = false;
1467 } else {
1468 dma_sync_single_range_for_cpu(rx_ring->dev,
1469 IXGBE_CB(skb)->dma,
1470 frag->page_offset,
1471 ixgbe_rx_bufsz(rx_ring),
1472 DMA_FROM_DEVICE);
1473 }
1474 IXGBE_CB(skb)->dma = 0;
1475
1476 /* verify that the packet does not have any known errors */
1477 if (unlikely(ixgbe_test_staterr(rx_desc,
1478 IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1479 !(netdev->features & NETIF_F_RXALL))) {
1480 dev_kfree_skb_any(skb);
1481 return true;
1482 }
1483
1484 /*
1485 * it is valid to use page_address instead of kmap since we are
1486 * working with pages allocated out of the lomem pool per
1487 * alloc_page(GFP_ATOMIC)
1488 */
1489 va = skb_frag_address(frag);
1490
1491 /*
1492 * we need the header to contain the greater of either ETH_HLEN or
1493 * 60 bytes if the skb->len is less than 60 for skb_pad.
1494 */
1495 pull_len = skb_frag_size(frag);
1496 if (pull_len > 256)
1497 pull_len = ixgbe_get_headlen(va, pull_len);
1498
1499 /* align pull length to size of long to optimize memcpy performance */
1500 skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1501
1502 /* update all of the pointers */
1503 skb_frag_size_sub(frag, pull_len);
1504 frag->page_offset += pull_len;
1505 skb->data_len -= pull_len;
1506 skb->tail += pull_len;
1507
1508 /*
1509 * if we sucked the frag empty then we should free it,
1510 * if there are other frags here something is screwed up in hardware
1511 */
1512 if (skb_frag_size(frag) == 0) {
1513 BUG_ON(skb_shinfo(skb)->nr_frags != 1);
1514 skb_shinfo(skb)->nr_frags = 0;
1515 __skb_frag_unref(frag);
1516 skb->truesize -= ixgbe_rx_bufsz(rx_ring);
1517 }
1518
1519 /* if skb_pad returns an error the skb was freed */
1520 if (unlikely(skb->len < 60)) {
1521 int pad_len = 60 - skb->len;
1522
1523 if (skb_pad(skb, pad_len))
1524 return true;
1525 __skb_put(skb, pad_len);
1526 }
1527
1528 return false;
1529}
1530
1531/**
1532 * ixgbe_can_reuse_page - determine if we can reuse a page
1533 * @rx_buffer: pointer to rx_buffer containing the page we want to reuse
1534 *
1535 * Returns true if page can be reused in another Rx buffer
1536 **/
1537static inline bool ixgbe_can_reuse_page(struct ixgbe_rx_buffer *rx_buffer)
1538{
1539 struct page *page = rx_buffer->page;
1540
1541 /* if we are only owner of page and it is local we can reuse it */
1542 return likely(page_count(page) == 1) &&
1543 likely(page_to_nid(page) == numa_node_id());
1544}
1545
1546/**
1547 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1548 * @rx_ring: rx descriptor ring to store buffers on
1549 * @old_buff: donor buffer to have page reused
1550 *
1551 * Syncronizes page for reuse by the adapter
1552 **/
1553static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1554 struct ixgbe_rx_buffer *old_buff)
1555{
1556 struct ixgbe_rx_buffer *new_buff;
1557 u16 nta = rx_ring->next_to_alloc;
1558 u16 bufsz = ixgbe_rx_bufsz(rx_ring);
1559
1560 new_buff = &rx_ring->rx_buffer_info[nta];
1561
1562 /* update, and store next to alloc */
1563 nta++;
1564 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1565
1566 /* transfer page from old buffer to new buffer */
1567 new_buff->page = old_buff->page;
1568 new_buff->dma = old_buff->dma;
1569
1570 /* flip page offset to other buffer and store to new_buff */
1571 new_buff->page_offset = old_buff->page_offset ^ bufsz;
1572
1573 /* sync the buffer for use by the device */
1574 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
1575 new_buff->page_offset, bufsz,
1576 DMA_FROM_DEVICE);
1577
1578 /* bump ref count on page before it is given to the stack */
1579 get_page(new_buff->page);
1580}
1581
1582/**
1583 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1584 * @rx_ring: rx descriptor ring to transact packets on
1585 * @rx_buffer: buffer containing page to add
1586 * @rx_desc: descriptor containing length of buffer written by hardware
1587 * @skb: sk_buff to place the data into
1588 *
1589 * This function is based on skb_add_rx_frag. I would have used that
1590 * function however it doesn't handle the truesize case correctly since we
1591 * are allocating more memory than might be used for a single receive.
1592 **/
1593static void ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
1594 struct ixgbe_rx_buffer *rx_buffer,
1595 struct sk_buff *skb, int size)
1596{
1597 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
1598 rx_buffer->page, rx_buffer->page_offset,
1599 size);
1600 skb->len += size;
1601 skb->data_len += size;
1602 skb->truesize += ixgbe_rx_bufsz(rx_ring);
1603}
1604
1605/**
1606 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
1607 * @q_vector: structure containing interrupt and ring information
1608 * @rx_ring: rx descriptor ring to transact packets on
1609 * @budget: Total limit on number of packets to process
1610 *
1611 * This function provides a "bounce buffer" approach to Rx interrupt
1612 * processing. The advantage to this is that on systems that have
1613 * expensive overhead for IOMMU access this provides a means of avoiding
1614 * it by maintaining the mapping of the page to the syste.
1615 *
1616 * Returns true if all work is completed without reaching budget
1617 **/
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001618static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001619 struct ixgbe_ring *rx_ring,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001620 int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001621{
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001622 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Ben Greear3f2d1c02012-03-08 08:28:41 +00001623#ifdef IXGBE_FCOE
Alexander Duyckf8003262012-03-03 02:35:52 +00001624 struct ixgbe_adapter *adapter = q_vector->adapter;
Yi Zou3d8fd382009-06-08 14:38:44 +00001625 int ddp_bytes = 0;
1626#endif /* IXGBE_FCOE */
Alexander Duyckf8003262012-03-03 02:35:52 +00001627 u16 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001628
Alexander Duyckf8003262012-03-03 02:35:52 +00001629 do {
1630 struct ixgbe_rx_buffer *rx_buffer;
1631 union ixgbe_adv_rx_desc *rx_desc;
1632 struct sk_buff *skb;
1633 struct page *page;
1634 u16 ntc;
Auke Kok9a799d72007-09-15 14:07:45 -07001635
Alexander Duyckf8003262012-03-03 02:35:52 +00001636 /* return some buffers to hardware, one at a time is too slow */
1637 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
1638 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1639 cleaned_count = 0;
1640 }
Auke Kok9a799d72007-09-15 14:07:45 -07001641
Alexander Duyckf8003262012-03-03 02:35:52 +00001642 ntc = rx_ring->next_to_clean;
1643 rx_desc = IXGBE_RX_DESC(rx_ring, ntc);
1644 rx_buffer = &rx_ring->rx_buffer_info[ntc];
Auke Kok9a799d72007-09-15 14:07:45 -07001645
Alexander Duyckf8003262012-03-03 02:35:52 +00001646 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD))
1647 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001648
Alexander Duyckf8003262012-03-03 02:35:52 +00001649 /*
1650 * This memory barrier is needed to keep us from reading
1651 * any other fields out of the rx_desc until we know the
1652 * RXD_STAT_DD bit is set
1653 */
1654 rmb();
Auke Kok9a799d72007-09-15 14:07:45 -07001655
Alexander Duyckf8003262012-03-03 02:35:52 +00001656 page = rx_buffer->page;
1657 prefetchw(page);
1658
1659 skb = rx_buffer->skb;
1660
1661 if (likely(!skb)) {
1662 void *page_addr = page_address(page) +
1663 rx_buffer->page_offset;
1664
1665 /* prefetch first cache line of first page */
1666 prefetch(page_addr);
1667#if L1_CACHE_BYTES < 128
1668 prefetch(page_addr + L1_CACHE_BYTES);
1669#endif
1670
1671 /* allocate a skb to store the frags */
1672 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1673 IXGBE_RX_HDR_SIZE);
1674 if (unlikely(!skb)) {
1675 rx_ring->rx_stats.alloc_rx_buff_failed++;
1676 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001677 }
1678
Alexander Duyckf8003262012-03-03 02:35:52 +00001679 /*
1680 * we will be copying header into skb->data in
1681 * pskb_may_pull so it is in our interest to prefetch
1682 * it now to avoid a possible cache miss
1683 */
1684 prefetchw(skb->data);
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001685
1686 /*
1687 * Delay unmapping of the first packet. It carries the
1688 * header information, HW may still access the header
Alexander Duyckf8003262012-03-03 02:35:52 +00001689 * after the writeback. Only unmap it when EOP is
1690 * reached
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001691 */
Alexander Duyckf8003262012-03-03 02:35:52 +00001692 IXGBE_CB(skb)->dma = rx_buffer->dma;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001693 } else {
Alexander Duyckf8003262012-03-03 02:35:52 +00001694 /* we are reusing so sync this buffer for CPU use */
1695 dma_sync_single_range_for_cpu(rx_ring->dev,
1696 rx_buffer->dma,
1697 rx_buffer->page_offset,
1698 ixgbe_rx_bufsz(rx_ring),
1699 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001700 }
1701
Alexander Duyckf8003262012-03-03 02:35:52 +00001702 /* pull page into skb */
1703 ixgbe_add_rx_frag(rx_ring, rx_buffer, skb,
1704 le16_to_cpu(rx_desc->wb.upper.length));
1705
1706 if (ixgbe_can_reuse_page(rx_buffer)) {
1707 /* hand second half of page back to the ring */
1708 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
1709 } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) {
1710 /* the page has been released from the ring */
1711 IXGBE_CB(skb)->page_released = true;
1712 } else {
1713 /* we are not reusing the buffer so unmap it */
1714 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
1715 ixgbe_rx_pg_size(rx_ring),
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001716 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001717 }
1718
Alexander Duyckf8003262012-03-03 02:35:52 +00001719 /* clear contents of buffer_info */
1720 rx_buffer->skb = NULL;
1721 rx_buffer->dma = 0;
1722 rx_buffer->page = NULL;
1723
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001724 ixgbe_get_rsc_cnt(rx_ring, rx_desc, skb);
1725
Auke Kok9a799d72007-09-15 14:07:45 -07001726 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001727
Alexander Duyckf8003262012-03-03 02:35:52 +00001728 /* place incomplete frames back on ring for completion */
1729 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
1730 continue;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001731
Alexander Duyckf8003262012-03-03 02:35:52 +00001732 /* verify the packet layout is correct */
1733 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
1734 continue;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001735
1736 /* probably a little skewed due to removing CRC */
1737 total_rx_bytes += skb->len;
1738 total_rx_packets++;
1739
Alexander Duyck8a0da212012-01-31 02:59:49 +00001740 /* populate checksum, timestamp, VLAN, and protocol */
1741 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
1742
Yi Zou332d4a72009-05-13 13:11:53 +00001743#ifdef IXGBE_FCOE
1744 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyckff886df2011-06-11 01:45:13 +00001745 if (ixgbe_rx_is_fcoe(adapter, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001746 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
David S. Miller823dcd22011-08-20 10:39:12 -07001747 if (!ddp_bytes) {
1748 dev_kfree_skb_any(skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001749 continue;
David S. Miller823dcd22011-08-20 10:39:12 -07001750 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001751 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001752
Yi Zou332d4a72009-05-13 13:11:53 +00001753#endif /* IXGBE_FCOE */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001754 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001755
Alexander Duyckf8003262012-03-03 02:35:52 +00001756 /* update budget accounting */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001757 budget--;
Alexander Duyckf8003262012-03-03 02:35:52 +00001758 } while (likely(budget));
Auke Kok9a799d72007-09-15 14:07:45 -07001759
Yi Zou3d8fd382009-06-08 14:38:44 +00001760#ifdef IXGBE_FCOE
1761 /* include DDPed FCoE data */
1762 if (ddp_bytes > 0) {
1763 unsigned int mss;
1764
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001765 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001766 sizeof(struct fc_frame_header) -
1767 sizeof(struct fcoe_crc_eof);
1768 if (mss > 512)
1769 mss &= ~511;
1770 total_rx_bytes += ddp_bytes;
1771 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1772 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001773
Alexander Duyckf8003262012-03-03 02:35:52 +00001774#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001775 u64_stats_update_begin(&rx_ring->syncp);
1776 rx_ring->stats.packets += total_rx_packets;
1777 rx_ring->stats.bytes += total_rx_bytes;
1778 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001779 q_vector->rx.total_packets += total_rx_packets;
1780 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001781
Alexander Duyckf8003262012-03-03 02:35:52 +00001782 if (cleaned_count)
1783 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1784
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001785 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001786}
1787
Auke Kok9a799d72007-09-15 14:07:45 -07001788/**
1789 * ixgbe_configure_msix - Configure MSI-X hardware
1790 * @adapter: board private structure
1791 *
1792 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1793 * interrupts.
1794 **/
1795static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1796{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001797 struct ixgbe_q_vector *q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001798 int q_vectors, v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001799 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001800
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001801 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1802
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00001803 /* Populate MSIX to EITR Select */
1804 if (adapter->num_vfs > 32) {
1805 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
1806 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
1807 }
1808
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001809 /*
1810 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001811 * corresponding register.
1812 */
1813 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001814 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001815 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001816
Alexander Duycka5579282012-02-08 07:50:04 +00001817 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001818 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001819
Alexander Duycka5579282012-02-08 07:50:04 +00001820 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001821 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001822
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001823 if (q_vector->tx.ring && !q_vector->rx.ring) {
1824 /* tx only vector */
1825 if (adapter->tx_itr_setting == 1)
1826 q_vector->itr = IXGBE_10K_ITR;
1827 else
1828 q_vector->itr = adapter->tx_itr_setting;
1829 } else {
1830 /* rx or rx/tx vector */
1831 if (adapter->rx_itr_setting == 1)
1832 q_vector->itr = IXGBE_20K_ITR;
1833 else
1834 q_vector->itr = adapter->rx_itr_setting;
1835 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001836
Alexander Duyckfe49f042009-06-04 16:00:09 +00001837 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001838 }
1839
Alexander Duyckbd508172010-11-16 19:27:03 -08001840 switch (adapter->hw.mac.type) {
1841 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001842 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001843 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001844 break;
1845 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001846 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001847 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001848 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08001849 default:
1850 break;
1851 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001852 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001853
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001854 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001855 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001856 mask &= ~(IXGBE_EIMS_OTHER |
1857 IXGBE_EIMS_MAILBOX |
1858 IXGBE_EIMS_LSC);
1859
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001860 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001861}
1862
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001863enum latency_range {
1864 lowest_latency = 0,
1865 low_latency = 1,
1866 bulk_latency = 2,
1867 latency_invalid = 255
1868};
1869
1870/**
1871 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00001872 * @q_vector: structure containing interrupt and ring information
1873 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001874 *
1875 * Stores a new ITR value based on packets and byte
1876 * counts during the last interrupt. The advantage of per interrupt
1877 * computation is faster updates and more accurate ITR for the current
1878 * traffic pattern. Constants in this function were computed
1879 * based on theoretical maximum wire speed and thresholds were set based
1880 * on testing data as well as attempting to minimize response time
1881 * while increasing bulk throughput.
1882 * this functionality is controlled by the InterruptThrottleRate module
1883 * parameter (see ixgbe_param.c)
1884 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00001885static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
1886 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001887{
Alexander Duyckbd198052011-06-11 01:45:08 +00001888 int bytes = ring_container->total_bytes;
1889 int packets = ring_container->total_packets;
1890 u32 timepassed_us;
Alexander Duyck621bd702012-02-08 07:50:20 +00001891 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00001892 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001893
1894 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00001895 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001896
1897 /* simple throttlerate management
Alexander Duyck621bd702012-02-08 07:50:20 +00001898 * 0-10MB/s lowest (100000 ints/s)
1899 * 10-20MB/s low (20000 ints/s)
1900 * 20-1249MB/s bulk (8000 ints/s)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001901 */
1902 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001903 timepassed_us = q_vector->itr >> 2;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001904 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1905
1906 switch (itr_setting) {
1907 case lowest_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00001908 if (bytes_perint > 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00001909 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001910 break;
1911 case low_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00001912 if (bytes_perint > 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00001913 itr_setting = bulk_latency;
Alexander Duyck621bd702012-02-08 07:50:20 +00001914 else if (bytes_perint <= 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00001915 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001916 break;
1917 case bulk_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00001918 if (bytes_perint <= 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00001919 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001920 break;
1921 }
1922
Alexander Duyckbd198052011-06-11 01:45:08 +00001923 /* clear work counters since we have the values we need */
1924 ring_container->total_bytes = 0;
1925 ring_container->total_packets = 0;
1926
1927 /* write updated itr to ring container */
1928 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001929}
1930
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001931/**
1932 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001933 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001934 *
1935 * This function is made to be called by ethtool and by the driver
1936 * when it needs to update EITR registers at runtime. Hardware
1937 * specific quirks/differences are taken care of here.
1938 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001939void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001940{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001941 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001942 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001943 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00001944 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001945
Alexander Duyckbd508172010-11-16 19:27:03 -08001946 switch (adapter->hw.mac.type) {
1947 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001948 /* must write high and low 16 bits to reset counter */
1949 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001950 break;
1951 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001952 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001953 /*
1954 * set the WDIS bit to not clear the timer bits and cause an
1955 * immediate assertion of the interrupt
1956 */
1957 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08001958 break;
1959 default:
1960 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001961 }
1962 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
1963}
1964
Alexander Duyckbd198052011-06-11 01:45:08 +00001965static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001966{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001967 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00001968 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001969
Alexander Duyckbd198052011-06-11 01:45:08 +00001970 ixgbe_update_itr(q_vector, &q_vector->tx);
1971 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001972
Alexander Duyck08c88332011-06-11 01:45:03 +00001973 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001974
1975 switch (current_itr) {
1976 /* counts and packets in update_itr are dependent on these numbers */
1977 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001978 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001979 break;
1980 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001981 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001982 break;
1983 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001984 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001985 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00001986 default:
1987 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001988 }
1989
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001990 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00001991 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001992 new_itr = (10 * new_itr * q_vector->itr) /
1993 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001994
Alexander Duyckbd198052011-06-11 01:45:08 +00001995 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00001996 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001997
1998 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001999 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002000}
2001
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002002/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00002003 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00002004 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002005 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00002006static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002007{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002008 struct ixgbe_hw *hw = &adapter->hw;
2009 u32 eicr = adapter->interrupt_event;
2010
Alexander Duyckf0f97782011-04-22 04:08:09 +00002011 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00002012 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002013
Alexander Duyckf0f97782011-04-22 04:08:09 +00002014 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2015 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2016 return;
2017
2018 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2019
Joe Perches7ca647b2010-09-07 21:35:40 +00002020 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002021 case IXGBE_DEV_ID_82599_T3_LOM:
2022 /*
2023 * Since the warning interrupt is for both ports
2024 * we don't have to check if:
2025 * - This interrupt wasn't for our port.
2026 * - We may have missed the interrupt so always have to
2027 * check if we got a LSC
2028 */
2029 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
2030 !(eicr & IXGBE_EICR_LSC))
2031 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002032
Alexander Duyckf0f97782011-04-22 04:08:09 +00002033 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
2034 u32 autoneg;
2035 bool link_up = false;
2036
Joe Perches7ca647b2010-09-07 21:35:40 +00002037 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
2038
Alexander Duyckf0f97782011-04-22 04:08:09 +00002039 if (link_up)
2040 return;
2041 }
2042
2043 /* Check if this is not due to overtemp */
2044 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2045 return;
2046
2047 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00002048 default:
2049 if (!(eicr & IXGBE_EICR_GPI_SDP0))
2050 return;
2051 break;
2052 }
2053 e_crit(drv,
2054 "Network adapter has been stopped because it has over heated. "
2055 "Restart the computer. If the problem persists, "
2056 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00002057
2058 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002059}
2060
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002061static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2062{
2063 struct ixgbe_hw *hw = &adapter->hw;
2064
2065 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
2066 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002067 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002068 /* write to clear the interrupt */
2069 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
2070 }
2071}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002072
Jacob Keller4f51bf72011-08-20 04:49:45 +00002073static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2074{
2075 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2076 return;
2077
2078 switch (adapter->hw.mac.type) {
2079 case ixgbe_mac_82599EB:
2080 /*
2081 * Need to check link state so complete overtemp check
2082 * on service task
2083 */
2084 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
2085 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2086 adapter->interrupt_event = eicr;
2087 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2088 ixgbe_service_event_schedule(adapter);
2089 return;
2090 }
2091 return;
2092 case ixgbe_mac_X540:
2093 if (!(eicr & IXGBE_EICR_TS))
2094 return;
2095 break;
2096 default:
2097 return;
2098 }
2099
2100 e_crit(drv,
2101 "Network adapter has been stopped because it has over heated. "
2102 "Restart the computer. If the problem persists, "
2103 "power off the system and replace the adapter\n");
2104}
2105
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002106static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2107{
2108 struct ixgbe_hw *hw = &adapter->hw;
2109
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002110 if (eicr & IXGBE_EICR_GPI_SDP2) {
2111 /* Clear the interrupt */
2112 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002113 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2114 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2115 ixgbe_service_event_schedule(adapter);
2116 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002117 }
2118
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002119 if (eicr & IXGBE_EICR_GPI_SDP1) {
2120 /* Clear the interrupt */
2121 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002122 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2123 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2124 ixgbe_service_event_schedule(adapter);
2125 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002126 }
2127}
2128
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002129static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2130{
2131 struct ixgbe_hw *hw = &adapter->hw;
2132
2133 adapter->lsc_int++;
2134 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2135 adapter->link_check_timeout = jiffies;
2136 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2137 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002138 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002139 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002140 }
2141}
2142
Alexander Duyckfe49f042009-06-04 16:00:09 +00002143static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2144 u64 qmask)
2145{
2146 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002147 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002148
Alexander Duyckbd508172010-11-16 19:27:03 -08002149 switch (hw->mac.type) {
2150 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002151 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002152 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2153 break;
2154 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002155 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002156 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002157 if (mask)
2158 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002159 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002160 if (mask)
2161 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2162 break;
2163 default:
2164 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002165 }
2166 /* skip the flush */
2167}
2168
2169static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002170 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002171{
2172 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002173 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002174
Alexander Duyckbd508172010-11-16 19:27:03 -08002175 switch (hw->mac.type) {
2176 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002177 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002178 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2179 break;
2180 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002181 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002182 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002183 if (mask)
2184 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002185 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002186 if (mask)
2187 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2188 break;
2189 default:
2190 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002191 }
2192 /* skip the flush */
2193}
2194
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002195/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002196 * ixgbe_irq_enable - Enable default interrupt generation settings
2197 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002198 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002199static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2200 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002201{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002202 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002203
Alexander Duyck2c4af692011-07-15 07:29:55 +00002204 /* don't reenable LSC while waiting for link */
2205 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2206 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002207
Alexander Duyck2c4af692011-07-15 07:29:55 +00002208 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002209 switch (adapter->hw.mac.type) {
2210 case ixgbe_mac_82599EB:
2211 mask |= IXGBE_EIMS_GPI_SDP0;
2212 break;
2213 case ixgbe_mac_X540:
2214 mask |= IXGBE_EIMS_TS;
2215 break;
2216 default:
2217 break;
2218 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002219 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2220 mask |= IXGBE_EIMS_GPI_SDP1;
2221 switch (adapter->hw.mac.type) {
2222 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002223 mask |= IXGBE_EIMS_GPI_SDP1;
2224 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002225 case ixgbe_mac_X540:
2226 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002227 mask |= IXGBE_EIMS_MAILBOX;
2228 break;
2229 default:
2230 break;
2231 }
2232 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2233 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2234 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002235
Alexander Duyck2c4af692011-07-15 07:29:55 +00002236 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2237 if (queues)
2238 ixgbe_irq_enable_queues(adapter, ~0);
2239 if (flush)
2240 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002241}
2242
Alexander Duyck2c4af692011-07-15 07:29:55 +00002243static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002244{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002245 struct ixgbe_adapter *adapter = data;
2246 struct ixgbe_hw *hw = &adapter->hw;
2247 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002248
Alexander Duyck2c4af692011-07-15 07:29:55 +00002249 /*
2250 * Workaround for Silicon errata. Use clear-by-write instead
2251 * of clear-by-read. Reading with EICS will return the
2252 * interrupt causes without clearing, which later be done
2253 * with the write to EICR.
2254 */
2255 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
2256 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002257
Alexander Duyck2c4af692011-07-15 07:29:55 +00002258 if (eicr & IXGBE_EICR_LSC)
2259 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002260
Alexander Duyck2c4af692011-07-15 07:29:55 +00002261 if (eicr & IXGBE_EICR_MAILBOX)
2262 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002263
Alexander Duyck2c4af692011-07-15 07:29:55 +00002264 switch (hw->mac.type) {
2265 case ixgbe_mac_82599EB:
2266 case ixgbe_mac_X540:
2267 if (eicr & IXGBE_EICR_ECC)
2268 e_info(link, "Received unrecoverable ECC Err, please "
2269 "reboot\n");
2270 /* Handle Flow Director Full threshold interrupt */
2271 if (eicr & IXGBE_EICR_FLOW_DIR) {
2272 int reinit_count = 0;
2273 int i;
2274 for (i = 0; i < adapter->num_tx_queues; i++) {
2275 struct ixgbe_ring *ring = adapter->tx_ring[i];
2276 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2277 &ring->state))
2278 reinit_count++;
2279 }
2280 if (reinit_count) {
2281 /* no more flow director interrupts until after init */
2282 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2283 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2284 ixgbe_service_event_schedule(adapter);
2285 }
2286 }
2287 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002288 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002289 break;
2290 default:
2291 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002292 }
2293
Alexander Duyck2c4af692011-07-15 07:29:55 +00002294 ixgbe_check_fan_failure(adapter, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07002295
Alexander Duyck2c4af692011-07-15 07:29:55 +00002296 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002297 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002298 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002299
Alexander Duyck2c4af692011-07-15 07:29:55 +00002300 return IRQ_HANDLED;
2301}
2302
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002303static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002304{
2305 struct ixgbe_q_vector *q_vector = data;
2306
Auke Kok9a799d72007-09-15 14:07:45 -07002307 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002308
2309 if (q_vector->rx.ring || q_vector->tx.ring)
2310 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002311
2312 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002313}
2314
Auke Kok9a799d72007-09-15 14:07:45 -07002315/**
Alexander Duyckeb01b972012-02-08 07:51:27 +00002316 * ixgbe_poll - NAPI Rx polling callback
2317 * @napi: structure for representing this polling device
2318 * @budget: how many packets driver is allowed to clean
2319 *
2320 * This function is used for legacy and MSI, NAPI mode
2321 **/
Jeff Kirsher8af3c332012-02-18 07:08:14 +00002322int ixgbe_poll(struct napi_struct *napi, int budget)
Alexander Duyckeb01b972012-02-08 07:51:27 +00002323{
2324 struct ixgbe_q_vector *q_vector =
2325 container_of(napi, struct ixgbe_q_vector, napi);
2326 struct ixgbe_adapter *adapter = q_vector->adapter;
2327 struct ixgbe_ring *ring;
2328 int per_ring_budget;
2329 bool clean_complete = true;
2330
2331#ifdef CONFIG_IXGBE_DCA
2332 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2333 ixgbe_update_dca(q_vector);
2334#endif
2335
2336 ixgbe_for_each_ring(ring, q_vector->tx)
2337 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
2338
2339 /* attempt to distribute budget to each queue fairly, but don't allow
2340 * the budget to go below 1 because we'll exit polling */
2341 if (q_vector->rx.count > 1)
2342 per_ring_budget = max(budget/q_vector->rx.count, 1);
2343 else
2344 per_ring_budget = budget;
2345
2346 ixgbe_for_each_ring(ring, q_vector->rx)
2347 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
2348 per_ring_budget);
2349
2350 /* If all work not completed, return budget and keep polling */
2351 if (!clean_complete)
2352 return budget;
2353
2354 /* all work done, exit the polling mode */
2355 napi_complete(napi);
2356 if (adapter->rx_itr_setting & 1)
2357 ixgbe_set_itr(q_vector);
2358 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2359 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
2360
2361 return 0;
2362}
2363
2364/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002365 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2366 * @adapter: board private structure
2367 *
2368 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2369 * interrupts from the kernel.
2370 **/
2371static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2372{
2373 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002374 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2375 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002376 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002377
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002378 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002379 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002380 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002381
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002382 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002383 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002384 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002385 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002386 } else if (q_vector->rx.ring) {
2387 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2388 "%s-%s-%d", netdev->name, "rx", ri++);
2389 } else if (q_vector->tx.ring) {
2390 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2391 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002392 } else {
2393 /* skip this unused q_vector */
2394 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002395 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002396 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2397 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002398 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002399 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002400 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002401 goto free_queue_irqs;
2402 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002403 /* If Flow Director is enabled, set interrupt affinity */
2404 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2405 /* assign the mask for this irq */
2406 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002407 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002408 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002409 }
2410
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002411 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002412 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002413 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002414 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002415 goto free_queue_irqs;
2416 }
2417
2418 return 0;
2419
2420free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002421 while (vector) {
2422 vector--;
2423 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2424 NULL);
2425 free_irq(adapter->msix_entries[vector].vector,
2426 adapter->q_vector[vector]);
2427 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002428 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2429 pci_disable_msix(adapter->pdev);
2430 kfree(adapter->msix_entries);
2431 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002432 return err;
2433}
2434
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002435/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002436 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002437 * @irq: interrupt number
2438 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002439 **/
2440static irqreturn_t ixgbe_intr(int irq, void *data)
2441{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002442 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002443 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002444 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002445 u32 eicr;
2446
Don Skidmore54037502009-02-21 15:42:56 -08002447 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002448 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002449 * before the read of EICR.
2450 */
2451 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2452
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002453 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002454 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002455 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002456 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002457 /*
2458 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002459 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002460 * have disabled interrupts due to EIAM
2461 * finish the workaround of silicon errata on 82598. Unmask
2462 * the interrupt that we masked before the EICR read.
2463 */
2464 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2465 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002466 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002467 }
Auke Kok9a799d72007-09-15 14:07:45 -07002468
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002469 if (eicr & IXGBE_EICR_LSC)
2470 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002471
Alexander Duyckbd508172010-11-16 19:27:03 -08002472 switch (hw->mac.type) {
2473 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002474 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002475 /* Fall through */
2476 case ixgbe_mac_X540:
2477 if (eicr & IXGBE_EICR_ECC)
2478 e_info(link, "Received unrecoverable ECC err, please "
2479 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002480 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002481 break;
2482 default:
2483 break;
2484 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002485
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002486 ixgbe_check_fan_failure(adapter, eicr);
2487
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00002488 /* would disable interrupts here but EIAM disabled it */
2489 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002490
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002491 /*
2492 * re-enable link(maybe) and non-queue interrupts, no flush.
2493 * ixgbe_poll will re-enable the queue interrupts
2494 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002495 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2496 ixgbe_irq_enable(adapter, false, false);
2497
Auke Kok9a799d72007-09-15 14:07:45 -07002498 return IRQ_HANDLED;
2499}
2500
2501/**
2502 * ixgbe_request_irq - initialize interrupts
2503 * @adapter: board private structure
2504 *
2505 * Attempts to configure interrupts using the best available
2506 * capabilities of the hardware and kernel.
2507 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002508static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002509{
2510 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002511 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002512
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002513 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002514 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002515 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002516 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002517 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002518 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002519 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002520 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002521
Alexander Duyckde88eee2012-02-08 07:49:59 +00002522 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002523 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002524
Auke Kok9a799d72007-09-15 14:07:45 -07002525 return err;
2526}
2527
2528static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2529{
Auke Kok9a799d72007-09-15 14:07:45 -07002530 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002531 int i, q_vectors;
Auke Kok9a799d72007-09-15 14:07:45 -07002532
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002533 q_vectors = adapter->num_msix_vectors;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002534 i = q_vectors - 1;
Alexander Duycka65151ba22011-05-27 05:31:32 +00002535 free_irq(adapter->msix_entries[i].vector, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002536 i--;
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002537
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002538 for (; i >= 0; i--) {
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002539 /* free only the irqs that were actually requested */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002540 if (!adapter->q_vector[i]->rx.ring &&
2541 !adapter->q_vector[i]->tx.ring)
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002542 continue;
2543
Alexander Duyck207867f2011-07-15 03:05:37 +00002544 /* clear the affinity_mask in the IRQ descriptor */
2545 irq_set_affinity_hint(adapter->msix_entries[i].vector,
2546 NULL);
2547
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002548 free_irq(adapter->msix_entries[i].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002549 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002550 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002551 } else {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002552 free_irq(adapter->pdev->irq, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002553 }
2554}
2555
2556/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002557 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2558 * @adapter: board private structure
2559 **/
2560static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2561{
Alexander Duyckbd508172010-11-16 19:27:03 -08002562 switch (adapter->hw.mac.type) {
2563 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002564 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002565 break;
2566 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002567 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002568 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2569 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002570 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002571 break;
2572 default:
2573 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002574 }
2575 IXGBE_WRITE_FLUSH(&adapter->hw);
2576 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2577 int i;
2578 for (i = 0; i < adapter->num_msix_vectors; i++)
2579 synchronize_irq(adapter->msix_entries[i].vector);
2580 } else {
2581 synchronize_irq(adapter->pdev->irq);
2582 }
2583}
2584
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002585/**
Auke Kok9a799d72007-09-15 14:07:45 -07002586 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2587 *
2588 **/
2589static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2590{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002591 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002592
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002593 /* rx/tx vector */
2594 if (adapter->rx_itr_setting == 1)
2595 q_vector->itr = IXGBE_20K_ITR;
2596 else
2597 q_vector->itr = adapter->rx_itr_setting;
2598
2599 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002600
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002601 ixgbe_set_ivar(adapter, 0, 0, 0);
2602 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002603
Emil Tantilov396e7992010-07-01 20:05:12 +00002604 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002605}
2606
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002607/**
2608 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2609 * @adapter: board private structure
2610 * @ring: structure containing ring specific data
2611 *
2612 * Configure the Tx descriptor ring after a reset.
2613 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002614void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2615 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002616{
2617 struct ixgbe_hw *hw = &adapter->hw;
2618 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002619 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002620 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002621 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002622
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002623 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002624 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002625 IXGBE_WRITE_FLUSH(hw);
2626
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002627 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002628 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002629 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2630 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2631 ring->count * sizeof(union ixgbe_adv_tx_desc));
2632 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2633 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002634 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002635
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002636 /*
2637 * set WTHRESH to encourage burst writeback, it should not be set
2638 * higher than 1 when ITR is 0 as it could cause false TX hangs
2639 *
2640 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2641 * to or less than the number of on chip descriptors, which is
2642 * currently 40.
2643 */
Alexander Duycke954b372012-02-08 07:49:38 +00002644 if (!ring->q_vector || (ring->q_vector->itr < 8))
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002645 txdctl |= (1 << 16); /* WTHRESH = 1 */
2646 else
2647 txdctl |= (8 << 16); /* WTHRESH = 8 */
2648
Alexander Duycke954b372012-02-08 07:49:38 +00002649 /*
2650 * Setting PTHRESH to 32 both improves performance
2651 * and avoids a TX hang with DFP enabled
2652 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002653 txdctl |= (1 << 8) | /* HTHRESH = 1 */
2654 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002655
2656 /* reinitialize flowdirector state */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002657 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2658 adapter->atr_sample_rate) {
2659 ring->atr_sample_rate = adapter->atr_sample_rate;
2660 ring->atr_count = 0;
2661 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2662 } else {
2663 ring->atr_sample_rate = 0;
2664 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002665
John Fastabendc84d3242010-11-16 19:27:12 -08002666 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2667
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002668 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002669 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2670
Alexander Duyckb2d96e02012-02-07 08:14:33 +00002671 netdev_tx_reset_queue(txring_txq(ring));
2672
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002673 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2674 if (hw->mac.type == ixgbe_mac_82598EB &&
2675 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2676 return;
2677
2678 /* poll to verify queue is enabled */
2679 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002680 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002681 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2682 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2683 if (!wait_loop)
2684 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002685}
2686
Alexander Duyck120ff942010-08-19 13:34:50 +00002687static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2688{
2689 struct ixgbe_hw *hw = &adapter->hw;
2690 u32 rttdcs;
John Fastabend72a32f12011-04-26 07:25:58 +00002691 u32 reg;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002692 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002693
2694 if (hw->mac.type == ixgbe_mac_82598EB)
2695 return;
2696
2697 /* disable the arbiter while setting MTQC */
2698 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2699 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2700 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2701
2702 /* set transmit pool layout */
John Fastabend8b1c0b22011-05-03 02:26:48 +00002703 switch (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Alexander Duyck120ff942010-08-19 13:34:50 +00002704 case (IXGBE_FLAG_SRIOV_ENABLED):
2705 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2706 (IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF));
2707 break;
Alexander Duyck120ff942010-08-19 13:34:50 +00002708 default:
John Fastabend8b1c0b22011-05-03 02:26:48 +00002709 if (!tcs)
2710 reg = IXGBE_MTQC_64Q_1PB;
2711 else if (tcs <= 4)
2712 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2713 else
2714 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2715
2716 IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
2717
2718 /* Enable Security TX Buffer IFG for multiple pb */
2719 if (tcs) {
2720 reg = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2721 reg |= IXGBE_SECTX_DCB;
2722 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, reg);
2723 }
Alexander Duyck120ff942010-08-19 13:34:50 +00002724 break;
2725 }
2726
2727 /* re-enable the arbiter */
2728 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2729 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2730}
2731
Auke Kok9a799d72007-09-15 14:07:45 -07002732/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002733 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002734 * @adapter: board private structure
2735 *
2736 * Configure the Tx unit of the MAC after a reset.
2737 **/
2738static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2739{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002740 struct ixgbe_hw *hw = &adapter->hw;
2741 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002742 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002743
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002744 ixgbe_setup_mtqc(adapter);
2745
2746 if (hw->mac.type != ixgbe_mac_82598EB) {
2747 /* DMATXCTL.EN must be before Tx queues are enabled */
2748 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2749 dmatxctl |= IXGBE_DMATXCTL_TE;
2750 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2751 }
2752
Auke Kok9a799d72007-09-15 14:07:45 -07002753 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002754 for (i = 0; i < adapter->num_tx_queues; i++)
2755 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002756}
2757
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002758#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002759
Yi Zoua6616b42009-08-06 13:05:23 +00002760static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002761 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002762{
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002763 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002764 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002765
Alexander Duyckbd508172010-11-16 19:27:03 -08002766 switch (adapter->hw.mac.type) {
2767 case ixgbe_mac_82598EB: {
2768 struct ixgbe_ring_feature *feature = adapter->ring_feature;
2769 const int mask = feature[RING_F_RSS].mask;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002770 reg_idx = reg_idx & mask;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002771 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002772 break;
2773 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002774 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08002775 default:
2776 break;
2777 }
2778
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002779 srrctl = IXGBE_READ_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx));
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002780
2781 srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
2782 srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002783 if (adapter->num_vfs)
2784 srrctl |= IXGBE_SRRCTL_DROP_EN;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002785
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002786 srrctl |= (IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
2787 IXGBE_SRRCTL_BSIZEHDR_MASK;
2788
Alexander Duyckf8003262012-03-03 02:35:52 +00002789#if PAGE_SIZE > IXGBE_MAX_RXBUFFER
2790 srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002791#else
Alexander Duyckf8003262012-03-03 02:35:52 +00002792 srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002793#endif
Alexander Duyckf8003262012-03-03 02:35:52 +00002794 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002795
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002796 IXGBE_WRITE_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002797}
2798
Alexander Duyck05abb122010-08-19 13:35:41 +00002799static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002800{
Alexander Duyck05abb122010-08-19 13:35:41 +00002801 struct ixgbe_hw *hw = &adapter->hw;
2802 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002803 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2804 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002805 u32 mrqc = 0, reta = 0;
2806 u32 rxcsum;
2807 int i, j;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002808 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend86b4db32011-04-26 07:26:19 +00002809 int maxq = adapter->ring_feature[RING_F_RSS].indices;
2810
2811 if (tcs)
2812 maxq = min(maxq, adapter->num_tx_queues / tcs);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002813
Alexander Duyck05abb122010-08-19 13:35:41 +00002814 /* Fill out hash function seeds */
2815 for (i = 0; i < 10; i++)
2816 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002817
Alexander Duyck05abb122010-08-19 13:35:41 +00002818 /* Fill out redirection table */
2819 for (i = 0, j = 0; i < 128; i++, j++) {
John Fastabend86b4db32011-04-26 07:26:19 +00002820 if (j == maxq)
Alexander Duyck05abb122010-08-19 13:35:41 +00002821 j = 0;
2822 /* reta = 4-byte sliding window of
2823 * 0x00..(indices-1)(indices-1)00..etc. */
2824 reta = (reta << 8) | (j * 0x11);
2825 if ((i & 3) == 3)
2826 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2827 }
2828
2829 /* Disable indicating checksum in descriptor, enables RSS hash */
2830 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2831 rxcsum |= IXGBE_RXCSUM_PCSD;
2832 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2833
John Fastabend8b1c0b22011-05-03 02:26:48 +00002834 if (adapter->hw.mac.type == ixgbe_mac_82598EB &&
2835 (adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002836 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002837 } else {
2838 int mask = adapter->flags & (IXGBE_FLAG_RSS_ENABLED
2839 | IXGBE_FLAG_SRIOV_ENABLED);
2840
2841 switch (mask) {
2842 case (IXGBE_FLAG_RSS_ENABLED):
2843 if (!tcs)
2844 mrqc = IXGBE_MRQC_RSSEN;
2845 else if (tcs <= 4)
2846 mrqc = IXGBE_MRQC_RTRSS4TCEN;
2847 else
2848 mrqc = IXGBE_MRQC_RTRSS8TCEN;
2849 break;
2850 case (IXGBE_FLAG_SRIOV_ENABLED):
2851 mrqc = IXGBE_MRQC_VMDQEN;
2852 break;
2853 default:
2854 break;
2855 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002856 }
2857
Alexander Duyck05abb122010-08-19 13:35:41 +00002858 /* Perform hash on these packet types */
2859 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2860 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2861 | IXGBE_MRQC_RSS_FIELD_IPV6
2862 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2863
Alexander Duyckef6afc02012-02-08 07:51:53 +00002864 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
2865 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
2866 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2867 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
2868
Alexander Duyck05abb122010-08-19 13:35:41 +00002869 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002870}
2871
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002872/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002873 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2874 * @adapter: address of board private structure
2875 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002876 **/
Don Skidmore082757a2011-07-21 05:55:00 +00002877static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00002878 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002879{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002880 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002881 u32 rscctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002882 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002883
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002884 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002885 return;
2886
Alexander Duyck73670962010-08-19 13:38:34 +00002887 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002888 rscctrl |= IXGBE_RSCCTL_RSCEN;
2889 /*
2890 * we must limit the number of descriptors so that the
2891 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00002892 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002893 */
Alexander Duyckf8003262012-03-03 02:35:52 +00002894#if (PAGE_SIZE <= 8192)
2895 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2896#elif (PAGE_SIZE <= 16384)
2897 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002898#else
Alexander Duyckf8003262012-03-03 02:35:52 +00002899 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002900#endif
Alexander Duyck73670962010-08-19 13:38:34 +00002901 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002902}
2903
Alexander Duyck9e10e042010-08-19 13:40:06 +00002904/**
2905 * ixgbe_set_uta - Set unicast filter table address
2906 * @adapter: board private structure
2907 *
2908 * The unicast table address is a register array of 32-bit registers.
2909 * The table is meant to be used in a way similar to how the MTA is used
2910 * however due to certain limitations in the hardware it is necessary to
2911 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscuous
2912 * enable bit to allow vlan tag stripping when promiscuous mode is enabled
2913 **/
2914static void ixgbe_set_uta(struct ixgbe_adapter *adapter)
2915{
2916 struct ixgbe_hw *hw = &adapter->hw;
2917 int i;
2918
2919 /* The UTA table only exists on 82599 hardware and newer */
2920 if (hw->mac.type < ixgbe_mac_82599EB)
2921 return;
2922
2923 /* we only need to do this if VMDq is enabled */
2924 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2925 return;
2926
2927 for (i = 0; i < 128; i++)
2928 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
2929}
2930
2931#define IXGBE_MAX_RX_DESC_POLL 10
2932static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
2933 struct ixgbe_ring *ring)
2934{
2935 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002936 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2937 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002938 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002939
2940 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2941 if (hw->mac.type == ixgbe_mac_82598EB &&
2942 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2943 return;
2944
2945 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002946 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002947 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2948 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
2949
2950 if (!wait_loop) {
2951 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
2952 "the polling period\n", reg_idx);
2953 }
2954}
2955
Yi Zou2d39d572011-01-06 14:29:56 +00002956void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
2957 struct ixgbe_ring *ring)
2958{
2959 struct ixgbe_hw *hw = &adapter->hw;
2960 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2961 u32 rxdctl;
2962 u8 reg_idx = ring->reg_idx;
2963
2964 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2965 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
2966
2967 /* write value back with RXDCTL.ENABLE bit cleared */
2968 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2969
2970 if (hw->mac.type == ixgbe_mac_82598EB &&
2971 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2972 return;
2973
2974 /* the hardware may take up to 100us to really disable the rx queue */
2975 do {
2976 udelay(10);
2977 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2978 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
2979
2980 if (!wait_loop) {
2981 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
2982 "the polling period\n", reg_idx);
2983 }
2984}
2985
Alexander Duyck84418e32010-08-19 13:40:54 +00002986void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
2987 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00002988{
2989 struct ixgbe_hw *hw = &adapter->hw;
2990 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002991 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002992 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00002993
Alexander Duyck9e10e042010-08-19 13:40:06 +00002994 /* disable queue to avoid issues while updating state */
2995 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00002996 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002997
Alexander Duyckacd37172010-08-19 13:36:05 +00002998 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
2999 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3000 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3001 ring->count * sizeof(union ixgbe_adv_rx_desc));
3002 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3003 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08003004 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003005
3006 ixgbe_configure_srrctl(adapter, ring);
3007 ixgbe_configure_rscctl(adapter, ring);
3008
Greg Rosee9f98072011-01-26 01:06:07 +00003009 /* If operating in IOV mode set RLPML for X540 */
3010 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
3011 hw->mac.type == ixgbe_mac_X540) {
3012 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
3013 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
3014 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
3015 }
3016
Alexander Duyck9e10e042010-08-19 13:40:06 +00003017 if (hw->mac.type == ixgbe_mac_82598EB) {
3018 /*
3019 * enable cache line friendly hardware writes:
3020 * PTHRESH=32 descriptors (half the internal cache),
3021 * this also removes ugly rx_no_buffer_count increment
3022 * HTHRESH=4 descriptors (to minimize latency on fetch)
3023 * WTHRESH=8 burst writeback up to two cache lines
3024 */
3025 rxdctl &= ~0x3FFFFF;
3026 rxdctl |= 0x080420;
3027 }
3028
3029 /* enable receive descriptor ring */
3030 rxdctl |= IXGBE_RXDCTL_ENABLE;
3031 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3032
3033 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003034 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003035}
3036
Alexander Duyck48654522010-08-19 13:36:27 +00003037static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3038{
3039 struct ixgbe_hw *hw = &adapter->hw;
3040 int p;
3041
3042 /* PSRTYPE must be initialized in non 82598 adapters */
3043 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003044 IXGBE_PSRTYPE_UDPHDR |
3045 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003046 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003047 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003048
3049 if (hw->mac.type == ixgbe_mac_82598EB)
3050 return;
3051
3052 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED)
3053 psrtype |= (adapter->num_rx_queues_per_pool << 29);
3054
3055 for (p = 0; p < adapter->num_rx_pools; p++)
3056 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(adapter->num_vfs + p),
3057 psrtype);
3058}
3059
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003060static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3061{
3062 struct ixgbe_hw *hw = &adapter->hw;
3063 u32 gcr_ext;
3064 u32 vt_reg_bits;
3065 u32 reg_offset, vf_shift;
3066 u32 vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003067 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003068
3069 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3070 return;
3071
3072 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
3073 vt_reg_bits = IXGBE_VMD_CTL_VMDQ_EN | IXGBE_VT_CTL_REPLEN;
3074 vt_reg_bits |= (adapter->num_vfs << IXGBE_VT_CTL_POOL_SHIFT);
3075 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl | vt_reg_bits);
3076
3077 vf_shift = adapter->num_vfs % 32;
Greg Rose4cd69232012-01-25 07:59:37 +00003078 reg_offset = (adapter->num_vfs >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003079
3080 /* Enable only the PF's pool for Tx/Rx */
3081 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (1 << vf_shift));
3082 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), 0);
3083 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (1 << vf_shift));
3084 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), 0);
3085 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3086
3087 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
3088 hw->mac.ops.set_vmdq(hw, 0, adapter->num_vfs);
3089
3090 /*
3091 * Set up VF register offsets for selected VT Mode,
3092 * i.e. 32 or 64 VFs for SR-IOV
3093 */
3094 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
3095 gcr_ext |= IXGBE_GCR_EXT_MSIX_EN;
3096 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
3097 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3098
3099 /* enable Tx loopback for VF/PF communication */
3100 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Greg Rosea985b6c32010-11-18 03:02:52 +00003101 /* Enable MAC Anti-Spoofing */
Greg Rosea1cbb15c2011-05-13 01:33:48 +00003102 hw->mac.ops.set_mac_anti_spoofing(hw,
Greg Rosede4c7f62011-09-29 05:57:33 +00003103 (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003104 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00003105 /* For VFs that have spoof checking turned off */
3106 for (i = 0; i < adapter->num_vfs; i++) {
3107 if (!adapter->vfinfo[i].spoofchk_enabled)
3108 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
3109 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003110}
3111
Alexander Duyck477de6e2010-08-19 13:38:11 +00003112static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003113{
Auke Kok9a799d72007-09-15 14:07:45 -07003114 struct ixgbe_hw *hw = &adapter->hw;
3115 struct net_device *netdev = adapter->netdev;
3116 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003117 struct ixgbe_ring *rx_ring;
3118 int i;
3119 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003120
Alexander Duyck477de6e2010-08-19 13:38:11 +00003121#ifdef IXGBE_FCOE
3122 /* adjust max frame to be able to do baby jumbo for FCoE */
3123 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3124 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3125 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3126
3127#endif /* IXGBE_FCOE */
3128 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3129 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3130 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3131 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3132
3133 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003134 }
3135
Alexander Duyck919e78a2011-08-26 09:52:38 +00003136 /* MHADD will allow an extra 4 bytes past for vlan tagged frames */
3137 max_frame += VLAN_HLEN;
3138
Auke Kok9a799d72007-09-15 14:07:45 -07003139 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003140 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3141 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003142 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3143
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003144 /*
3145 * Setup the HW Rx Head and Tail Descriptor Pointers and
3146 * the Base and Length of the Rx Descriptor Ring
3147 */
Auke Kok9a799d72007-09-15 14:07:45 -07003148 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003149 rx_ring = adapter->rx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003150 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3151 set_ring_rsc_enabled(rx_ring);
3152 else
3153 clear_ring_rsc_enabled(rx_ring);
Yi Zou63f39bd2009-05-17 12:34:35 +00003154#ifdef IXGBE_FCOE
Joe Perchese8e9f692010-09-07 21:34:53 +00003155 if (netdev->features & NETIF_F_FCOE_MTU) {
Yi Zou63f39bd2009-05-17 12:34:35 +00003156 struct ixgbe_ring_feature *f;
3157 f = &adapter->ring_feature[RING_F_FCOE];
Alexander Duyckf8003262012-03-03 02:35:52 +00003158 if ((i >= f->mask) && (i < f->mask + f->indices))
3159 set_bit(__IXGBE_RX_FCOE_BUFSZ, &rx_ring->state);
Yi Zou63f39bd2009-05-17 12:34:35 +00003160 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003161#endif /* IXGBE_FCOE */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003162 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003163}
3164
Alexander Duyck73670962010-08-19 13:38:34 +00003165static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3166{
3167 struct ixgbe_hw *hw = &adapter->hw;
3168 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3169
3170 switch (hw->mac.type) {
3171 case ixgbe_mac_82598EB:
3172 /*
3173 * For VMDq support of different descriptor types or
3174 * buffer sizes through the use of multiple SRRCTL
3175 * registers, RDRXCTL.MVMEN must be set to 1
3176 *
3177 * also, the manual doesn't mention it clearly but DCA hints
3178 * will only use queue 0's tags unless this bit is set. Side
3179 * effects of setting this bit are only that SRRCTL must be
3180 * fully programmed [0..15]
3181 */
3182 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3183 break;
3184 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003185 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003186 /* Disable RSC for ACK packets */
3187 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3188 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3189 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3190 /* hardware requires some bits to be set by default */
3191 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3192 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3193 break;
3194 default:
3195 /* We should do nothing since we don't know this hardware */
3196 return;
3197 }
3198
3199 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3200}
3201
Alexander Duyck477de6e2010-08-19 13:38:11 +00003202/**
3203 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3204 * @adapter: board private structure
3205 *
3206 * Configure the Rx unit of the MAC after a reset.
3207 **/
3208static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3209{
3210 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003211 int i;
3212 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003213
3214 /* disable receives while setting up the descriptors */
3215 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3216 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3217
3218 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003219 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003220
Alexander Duyck9e10e042010-08-19 13:40:06 +00003221 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003222 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003223
Alexander Duyck9e10e042010-08-19 13:40:06 +00003224 ixgbe_set_uta(adapter);
3225
Alexander Duyck477de6e2010-08-19 13:38:11 +00003226 /* set_rx_buffer_len must be called before ring initialization */
3227 ixgbe_set_rx_buffer_len(adapter);
3228
3229 /*
3230 * Setup the HW Rx Head and Tail Descriptor Pointers and
3231 * the Base and Length of the Rx Descriptor Ring
3232 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003233 for (i = 0; i < adapter->num_rx_queues; i++)
3234 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003235
Alexander Duyck9e10e042010-08-19 13:40:06 +00003236 /* disable drop enable for 82598 parts */
3237 if (hw->mac.type == ixgbe_mac_82598EB)
3238 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3239
3240 /* enable all receives */
3241 rxctrl |= IXGBE_RXCTRL_RXEN;
3242 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003243}
3244
Jiri Pirko8e586132011-12-08 19:52:37 -05003245static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003246{
3247 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003248 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003249 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003250
3251 /* add VID to filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003252 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003253 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003254
3255 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003256}
3257
Jiri Pirko8e586132011-12-08 19:52:37 -05003258static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003259{
3260 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003261 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003262 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003263
Auke Kok9a799d72007-09-15 14:07:45 -07003264 /* remove VID from filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003265 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003266 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003267
3268 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003269}
3270
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003271/**
3272 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3273 * @adapter: driver data
3274 */
3275static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3276{
3277 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003278 u32 vlnctrl;
3279
3280 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3281 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3282 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3283}
3284
3285/**
3286 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3287 * @adapter: driver data
3288 */
3289static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3290{
3291 struct ixgbe_hw *hw = &adapter->hw;
3292 u32 vlnctrl;
3293
3294 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3295 vlnctrl |= IXGBE_VLNCTRL_VFE;
3296 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3297 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3298}
3299
3300/**
3301 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3302 * @adapter: driver data
3303 */
3304static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3305{
3306 struct ixgbe_hw *hw = &adapter->hw;
3307 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003308 int i, j;
3309
3310 switch (hw->mac.type) {
3311 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003312 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3313 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003314 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3315 break;
3316 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003317 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003318 for (i = 0; i < adapter->num_rx_queues; i++) {
3319 j = adapter->rx_ring[i]->reg_idx;
3320 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3321 vlnctrl &= ~IXGBE_RXDCTL_VME;
3322 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3323 }
3324 break;
3325 default:
3326 break;
3327 }
3328}
3329
3330/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003331 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003332 * @adapter: driver data
3333 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003334static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003335{
3336 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003337 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003338 int i, j;
3339
3340 switch (hw->mac.type) {
3341 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003342 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3343 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003344 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3345 break;
3346 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003347 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003348 for (i = 0; i < adapter->num_rx_queues; i++) {
3349 j = adapter->rx_ring[i]->reg_idx;
3350 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3351 vlnctrl |= IXGBE_RXDCTL_VME;
3352 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3353 }
3354 break;
3355 default:
3356 break;
3357 }
3358}
3359
Auke Kok9a799d72007-09-15 14:07:45 -07003360static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3361{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003362 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003363
Jesse Grossf62bbb52010-10-20 13:56:10 +00003364 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3365
3366 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3367 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003368}
3369
3370/**
Alexander Duyck28500622010-06-15 09:25:48 +00003371 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3372 * @netdev: network interface device structure
3373 *
3374 * Writes unicast address list to the RAR table.
3375 * Returns: -ENOMEM on failure/insufficient address space
3376 * 0 on no addresses written
3377 * X on writing X addresses to the RAR table
3378 **/
3379static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3380{
3381 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3382 struct ixgbe_hw *hw = &adapter->hw;
3383 unsigned int vfn = adapter->num_vfs;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00003384 unsigned int rar_entries = IXGBE_MAX_PF_MACVLANS;
Alexander Duyck28500622010-06-15 09:25:48 +00003385 int count = 0;
3386
3387 /* return ENOMEM indicating insufficient memory for addresses */
3388 if (netdev_uc_count(netdev) > rar_entries)
3389 return -ENOMEM;
3390
3391 if (!netdev_uc_empty(netdev) && rar_entries) {
3392 struct netdev_hw_addr *ha;
3393 /* return error if we do not support writing to RAR table */
3394 if (!hw->mac.ops.set_rar)
3395 return -ENOMEM;
3396
3397 netdev_for_each_uc_addr(ha, netdev) {
3398 if (!rar_entries)
3399 break;
3400 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
3401 vfn, IXGBE_RAH_AV);
3402 count++;
3403 }
3404 }
3405 /* write the addresses in reverse order to avoid write combining */
3406 for (; rar_entries > 0 ; rar_entries--)
3407 hw->mac.ops.clear_rar(hw, rar_entries);
3408
3409 return count;
3410}
3411
3412/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003413 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003414 * @netdev: network interface device structure
3415 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003416 * The set_rx_method entry point is called whenever the unicast/multicast
3417 * address list or the network interface flags are updated. This routine is
3418 * responsible for configuring the hardware for proper unicast, multicast and
3419 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003420 **/
Greg Rose7f870472010-01-09 02:25:29 +00003421void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003422{
3423 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3424 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003425 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3426 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003427
3428 /* Check for Promiscuous and All Multicast modes */
3429
3430 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3431
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003432 /* set all bits that we expect to always be set */
Ben Greear3f2d1c02012-03-08 08:28:41 +00003433 fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003434 fctrl |= IXGBE_FCTRL_BAM;
3435 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3436 fctrl |= IXGBE_FCTRL_PMCF;
3437
Alexander Duyck28500622010-06-15 09:25:48 +00003438 /* clear the bits we are changing the status of */
3439 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3440
Auke Kok9a799d72007-09-15 14:07:45 -07003441 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003442 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003443 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003444 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003445 /* don't hardware filter vlans in promisc mode */
3446 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003447 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003448 if (netdev->flags & IFF_ALLMULTI) {
3449 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003450 vmolr |= IXGBE_VMOLR_MPE;
3451 } else {
3452 /*
3453 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003454 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003455 * that we can at least receive multicast traffic
3456 */
3457 hw->mac.ops.update_mc_addr_list(hw, netdev);
3458 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003459 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003460 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003461 hw->addr_ctrl.user_set_promisc = false;
Alexander Duyck28500622010-06-15 09:25:48 +00003462 /*
3463 * Write addresses to available RAR registers, if there is not
3464 * sufficient space to store all the addresses then enable
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003465 * unicast promiscuous mode
Alexander Duyck28500622010-06-15 09:25:48 +00003466 */
3467 count = ixgbe_write_uc_addr_list(netdev);
3468 if (count < 0) {
3469 fctrl |= IXGBE_FCTRL_UPE;
3470 vmolr |= IXGBE_VMOLR_ROPE;
3471 }
3472 }
3473
3474 if (adapter->num_vfs) {
3475 ixgbe_restore_vf_multicasts(adapter);
3476 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(adapter->num_vfs)) &
3477 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3478 IXGBE_VMOLR_ROPE);
3479 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(adapter->num_vfs), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003480 }
3481
Ben Greear3f2d1c02012-03-08 08:28:41 +00003482 /* This is useful for sniffing bad packets. */
3483 if (adapter->netdev->features & NETIF_F_RXALL) {
3484 /* UPE and MPE will be handled by normal PROMISC logic
3485 * in e1000e_set_rx_mode */
3486 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
3487 IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
3488 IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
3489
3490 fctrl &= ~(IXGBE_FCTRL_DPF);
3491 /* NOTE: VLAN filtering is disabled by setting PROMISC */
3492 }
3493
Auke Kok9a799d72007-09-15 14:07:45 -07003494 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003495
3496 if (netdev->features & NETIF_F_HW_VLAN_RX)
3497 ixgbe_vlan_strip_enable(adapter);
3498 else
3499 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003500}
3501
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003502static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3503{
3504 int q_idx;
3505 struct ixgbe_q_vector *q_vector;
3506 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3507
3508 /* legacy and MSI only use one vector */
3509 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3510 q_vectors = 1;
3511
3512 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003513 q_vector = adapter->q_vector[q_idx];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00003514 napi_enable(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003515 }
3516}
3517
3518static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3519{
3520 int q_idx;
3521 struct ixgbe_q_vector *q_vector;
3522 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3523
3524 /* legacy and MSI only use one vector */
3525 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3526 q_vectors = 1;
3527
3528 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003529 q_vector = adapter->q_vector[q_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003530 napi_disable(&q_vector->napi);
3531 }
3532}
3533
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003534#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08003535/*
3536 * ixgbe_configure_dcb - Configure DCB hardware
3537 * @adapter: ixgbe adapter struct
3538 *
3539 * This is called by the driver on open to configure the DCB hardware.
3540 * This is also called by the gennetlink interface when reconfiguring
3541 * the DCB state.
3542 */
3543static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3544{
3545 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend9806307a2010-10-28 00:59:57 +00003546 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003547
Alexander Duyck67ebd792010-08-19 13:34:04 +00003548 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3549 if (hw->mac.type == ixgbe_mac_82598EB)
3550 netif_set_gso_max_size(adapter->netdev, 65536);
3551 return;
3552 }
3553
3554 if (hw->mac.type == ixgbe_mac_82598EB)
3555 netif_set_gso_max_size(adapter->netdev, 32768);
3556
Alexander Duyck2f90b862008-11-20 20:52:10 -08003557
Alexander Duyck2f90b862008-11-20 20:52:10 -08003558 /* Enable VLAN tag insert/strip */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003559 adapter->netdev->features |= NETIF_F_HW_VLAN_RX;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003560
Alexander Duyck2f90b862008-11-20 20:52:10 -08003561 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003562
John Fastabendb1208182011-10-15 05:00:10 +00003563#ifdef IXGBE_FCOE
3564 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3565 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3566#endif
3567
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003568 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003569 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003570 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3571 DCB_TX_CONFIG);
3572 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3573 DCB_RX_CONFIG);
3574 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003575 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3576 ixgbe_dcb_hw_ets(&adapter->hw,
3577 adapter->ixgbe_ieee_ets,
3578 max_frame);
3579 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3580 adapter->ixgbe_ieee_pfc->pfc_en,
3581 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003582 }
John Fastabend8187cd42011-02-23 05:58:08 +00003583
3584 /* Enable RSS Hash per TC */
3585 if (hw->mac.type != ixgbe_mac_82598EB) {
3586 int i;
3587 u32 reg = 0;
3588
3589 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
3590 u8 msb = 0;
3591 u8 cnt = adapter->netdev->tc_to_txq[i].count;
3592
3593 while (cnt >>= 1)
3594 msb++;
3595
3596 reg |= msb << IXGBE_RQTC_SHIFT_TC(i);
3597 }
3598 IXGBE_WRITE_REG(hw, IXGBE_RQTC, reg);
3599 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003600}
John Fastabend9da712d2011-08-23 03:14:22 +00003601#endif
3602
3603/* Additional bittime to account for IXGBE framing */
3604#define IXGBE_ETH_FRAMING 20
3605
3606/*
3607 * ixgbe_hpbthresh - calculate high water mark for flow control
3608 *
3609 * @adapter: board private structure to calculate for
3610 * @pb - packet buffer to calculate
3611 */
3612static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
3613{
3614 struct ixgbe_hw *hw = &adapter->hw;
3615 struct net_device *dev = adapter->netdev;
3616 int link, tc, kb, marker;
3617 u32 dv_id, rx_pba;
3618
3619 /* Calculate max LAN frame size */
3620 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
3621
3622#ifdef IXGBE_FCOE
3623 /* FCoE traffic class uses FCOE jumbo frames */
3624 if (dev->features & NETIF_F_FCOE_MTU) {
3625 int fcoe_pb = 0;
3626
3627#ifdef CONFIG_IXGBE_DCB
3628 fcoe_pb = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003629
3630#endif
John Fastabend9da712d2011-08-23 03:14:22 +00003631 if (fcoe_pb == pb && tc < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3632 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3633 }
3634#endif
3635
3636 /* Calculate delay value for device */
3637 switch (hw->mac.type) {
3638 case ixgbe_mac_X540:
3639 dv_id = IXGBE_DV_X540(link, tc);
3640 break;
3641 default:
3642 dv_id = IXGBE_DV(link, tc);
3643 break;
3644 }
3645
3646 /* Loopback switch introduces additional latency */
3647 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3648 dv_id += IXGBE_B2BT(tc);
3649
3650 /* Delay value is calculated in bit times convert to KB */
3651 kb = IXGBE_BT2KB(dv_id);
3652 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
3653
3654 marker = rx_pba - kb;
3655
3656 /* It is possible that the packet buffer is not large enough
3657 * to provide required headroom. In this case throw an error
3658 * to user and a do the best we can.
3659 */
3660 if (marker < 0) {
3661 e_warn(drv, "Packet Buffer(%i) can not provide enough"
3662 "headroom to support flow control."
3663 "Decrease MTU or number of traffic classes\n", pb);
3664 marker = tc + 1;
3665 }
3666
3667 return marker;
3668}
3669
3670/*
3671 * ixgbe_lpbthresh - calculate low water mark for for flow control
3672 *
3673 * @adapter: board private structure to calculate for
3674 * @pb - packet buffer to calculate
3675 */
3676static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
3677{
3678 struct ixgbe_hw *hw = &adapter->hw;
3679 struct net_device *dev = adapter->netdev;
3680 int tc;
3681 u32 dv_id;
3682
3683 /* Calculate max LAN frame size */
3684 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3685
3686 /* Calculate delay value for device */
3687 switch (hw->mac.type) {
3688 case ixgbe_mac_X540:
3689 dv_id = IXGBE_LOW_DV_X540(tc);
3690 break;
3691 default:
3692 dv_id = IXGBE_LOW_DV(tc);
3693 break;
3694 }
3695
3696 /* Delay value is calculated in bit times convert to KB */
3697 return IXGBE_BT2KB(dv_id);
3698}
3699
3700/*
3701 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3702 */
3703static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
3704{
3705 struct ixgbe_hw *hw = &adapter->hw;
3706 int num_tc = netdev_get_num_tc(adapter->netdev);
3707 int i;
3708
3709 if (!num_tc)
3710 num_tc = 1;
3711
3712 hw->fc.low_water = ixgbe_lpbthresh(adapter);
3713
3714 for (i = 0; i < num_tc; i++) {
3715 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
3716
3717 /* Low water marks must not be larger than high water marks */
3718 if (hw->fc.low_water > hw->fc.high_water[i])
3719 hw->fc.low_water = 0;
3720 }
3721}
John Fastabend80605c652011-05-02 12:34:10 +00003722
3723static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3724{
John Fastabend80605c652011-05-02 12:34:10 +00003725 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00003726 int hdrm;
3727 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00003728
3729 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3730 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00003731 hdrm = 32 << adapter->fdir_pballoc;
3732 else
3733 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00003734
Alexander Duyckf7e10272011-07-21 00:40:35 +00003735 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00003736 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00003737}
3738
Alexander Duycke4911d52011-05-11 07:18:52 +00003739static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3740{
3741 struct ixgbe_hw *hw = &adapter->hw;
3742 struct hlist_node *node, *node2;
3743 struct ixgbe_fdir_filter *filter;
3744
3745 spin_lock(&adapter->fdir_perfect_lock);
3746
3747 if (!hlist_empty(&adapter->fdir_filter_list))
3748 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3749
3750 hlist_for_each_entry_safe(filter, node, node2,
3751 &adapter->fdir_filter_list, fdir_node) {
3752 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003753 &filter->filter,
3754 filter->sw_idx,
3755 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3756 IXGBE_FDIR_DROP_QUEUE :
3757 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003758 }
3759
3760 spin_unlock(&adapter->fdir_perfect_lock);
3761}
3762
Auke Kok9a799d72007-09-15 14:07:45 -07003763static void ixgbe_configure(struct ixgbe_adapter *adapter)
3764{
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003765 struct ixgbe_hw *hw = &adapter->hw;
3766
John Fastabend80605c652011-05-02 12:34:10 +00003767 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003768#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003769 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003770#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003771
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003772 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003773 ixgbe_restore_vlan(adapter);
3774
Yi Zoueacd73f2009-05-13 13:11:06 +00003775#ifdef IXGBE_FCOE
3776 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
3777 ixgbe_configure_fcoe(adapter);
3778
3779#endif /* IXGBE_FCOE */
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003780
3781 switch (hw->mac.type) {
3782 case ixgbe_mac_82599EB:
3783 case ixgbe_mac_X540:
3784 hw->mac.ops.disable_rx_buff(hw);
3785 break;
3786 default:
3787 break;
3788 }
3789
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003790 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003791 ixgbe_init_fdir_signature_82599(&adapter->hw,
3792 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003793 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3794 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3795 adapter->fdir_pballoc);
3796 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003797 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003798
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003799 switch (hw->mac.type) {
3800 case ixgbe_mac_82599EB:
3801 case ixgbe_mac_X540:
3802 hw->mac.ops.enable_rx_buff(hw);
3803 break;
3804 default:
3805 break;
3806 }
3807
Alexander Duyck933d41f2010-09-07 21:34:29 +00003808 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003809
Auke Kok9a799d72007-09-15 14:07:45 -07003810 ixgbe_configure_tx(adapter);
3811 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003812}
3813
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003814static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3815{
3816 switch (hw->phy.type) {
3817 case ixgbe_phy_sfp_avago:
3818 case ixgbe_phy_sfp_ftl:
3819 case ixgbe_phy_sfp_intel:
3820 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003821 case ixgbe_phy_sfp_passive_tyco:
3822 case ixgbe_phy_sfp_passive_unknown:
3823 case ixgbe_phy_sfp_active_unknown:
3824 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003825 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00003826 case ixgbe_phy_nl:
3827 if (hw->mac.type == ixgbe_mac_82598EB)
3828 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003829 default:
3830 return false;
3831 }
3832}
3833
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003834/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003835 * ixgbe_sfp_link_config - set up SFP+ link
3836 * @adapter: pointer to private adapter struct
3837 **/
3838static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3839{
Alexander Duyck70864002011-04-27 09:13:56 +00003840 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003841 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00003842 * is that an SFP was inserted/removed after the reset
3843 * but before SFP detection was enabled. As such the best
3844 * solution is to just start searching as soon as we start
3845 */
3846 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3847 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003848
Alexander Duyck70864002011-04-27 09:13:56 +00003849 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003850}
3851
3852/**
3853 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003854 * @hw: pointer to private hardware struct
3855 *
3856 * Returns 0 on success, negative on failure
3857 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003858static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003859{
3860 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003861 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003862 u32 ret = IXGBE_ERR_LINK_SETUP;
3863
3864 if (hw->mac.ops.check_link)
3865 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3866
3867 if (ret)
3868 goto link_cfg_out;
3869
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003870 autoneg = hw->phy.autoneg_advertised;
3871 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003872 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3873 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003874 if (ret)
3875 goto link_cfg_out;
3876
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003877 if (hw->mac.ops.setup_link)
3878 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003879link_cfg_out:
3880 return ret;
3881}
3882
Alexander Duycka34bcff2010-08-19 13:39:20 +00003883static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003884{
Auke Kok9a799d72007-09-15 14:07:45 -07003885 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003886 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003887
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003888 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003889 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3890 IXGBE_GPIE_OCD;
3891 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003892 /*
3893 * use EIAM to auto-mask when MSI-X interrupt is asserted
3894 * this saves a register write for every interrupt
3895 */
3896 switch (hw->mac.type) {
3897 case ixgbe_mac_82598EB:
3898 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3899 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003900 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003901 case ixgbe_mac_X540:
3902 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003903 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3904 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3905 break;
3906 }
3907 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003908 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3909 * specifically only auto mask tx and rx interrupts */
3910 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003911 }
3912
Alexander Duycka34bcff2010-08-19 13:39:20 +00003913 /* XXX: to interrupt immediately for EICS writes, enable this */
3914 /* gpie |= IXGBE_GPIE_EIMEN; */
3915
3916 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3917 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
3918 gpie |= IXGBE_GPIE_VTMODE_64;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003919 }
3920
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003921 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00003922 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
3923 switch (adapter->hw.mac.type) {
3924 case ixgbe_mac_82599EB:
3925 gpie |= IXGBE_SDP0_GPIEN;
3926 break;
3927 case ixgbe_mac_X540:
3928 gpie |= IXGBE_EIMS_TS;
3929 break;
3930 default:
3931 break;
3932 }
3933 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003934
Alexander Duycka34bcff2010-08-19 13:39:20 +00003935 /* Enable fan failure interrupt */
3936 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003937 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003938
Don Skidmore2698b202011-04-13 07:01:52 +00003939 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003940 gpie |= IXGBE_SDP1_GPIEN;
3941 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00003942 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00003943
3944 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3945}
3946
Alexander Duyckc7ccde02011-07-21 00:40:40 +00003947static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00003948{
3949 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003950 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003951 u32 ctrl_ext;
3952
3953 ixgbe_get_hw_control(adapter);
3954 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003955
Auke Kok9a799d72007-09-15 14:07:45 -07003956 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
3957 ixgbe_configure_msix(adapter);
3958 else
3959 ixgbe_configure_msi_and_legacy(adapter);
3960
Don Skidmorec6ecf392010-12-03 03:31:51 +00003961 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
3962 if (hw->mac.ops.enable_tx_laser &&
3963 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00003964 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00003965 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00003966 hw->mac.ops.enable_tx_laser(hw);
3967
Auke Kok9a799d72007-09-15 14:07:45 -07003968 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003969 ixgbe_napi_enable_all(adapter);
3970
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003971 if (ixgbe_is_sfp(hw)) {
3972 ixgbe_sfp_link_config(adapter);
3973 } else {
3974 err = ixgbe_non_sfp_link_config(hw);
3975 if (err)
3976 e_err(probe, "link_config FAILED %d\n", err);
3977 }
3978
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003979 /* clear any pending interrupts, may auto mask */
3980 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003981 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07003982
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003983 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00003984 * If this adapter has a fan, check to see if we had a failure
3985 * before we enabled the interrupt.
3986 */
3987 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
3988 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3989 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00003990 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00003991 }
3992
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003993 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003994 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003995
Auke Kok9a799d72007-09-15 14:07:45 -07003996 /* bring the link up in the watchdog, this could race with our first
3997 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003998 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3999 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00004000 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00004001
4002 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
4003 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
4004 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
4005 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07004006}
4007
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004008void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
4009{
4010 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00004011 /* put off any impending NetWatchDogTimeout */
4012 adapter->netdev->trans_start = jiffies;
4013
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004014 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00004015 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004016 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00004017 /*
4018 * If SR-IOV enabled then wait a bit before bringing the adapter
4019 * back up to give the VFs time to respond to the reset. The
4020 * two second wait is based upon the watchdog timer cycle in
4021 * the VF driver.
4022 */
4023 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4024 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004025 ixgbe_up(adapter);
4026 clear_bit(__IXGBE_RESETTING, &adapter->state);
4027}
4028
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004029void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004030{
4031 /* hardware has been reset, we need to reload some things */
4032 ixgbe_configure(adapter);
4033
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004034 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004035}
4036
4037void ixgbe_reset(struct ixgbe_adapter *adapter)
4038{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004039 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004040 int err;
4041
Alexander Duyck70864002011-04-27 09:13:56 +00004042 /* lock SFP init bit to prevent race conditions with the watchdog */
4043 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4044 usleep_range(1000, 2000);
4045
4046 /* clear all SFP and link config related flags while holding SFP_INIT */
4047 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4048 IXGBE_FLAG2_SFP_NEEDS_RESET);
4049 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4050
Don Skidmore8ca783a2009-05-26 20:40:47 -07004051 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004052 switch (err) {
4053 case 0:
4054 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004055 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004056 break;
4057 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004058 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004059 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004060 case IXGBE_ERR_EEPROM_VERSION:
4061 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004062 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004063 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00004064 "your hardware. If you are experiencing problems "
4065 "please contact your Intel or hardware "
4066 "representative who provided you with this "
4067 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004068 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004069 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004070 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004071 }
Auke Kok9a799d72007-09-15 14:07:45 -07004072
Alexander Duyck70864002011-04-27 09:13:56 +00004073 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4074
Auke Kok9a799d72007-09-15 14:07:45 -07004075 /* reprogram the RAR[0] in case user changed it. */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004076 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
4077 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07004078}
4079
Auke Kok9a799d72007-09-15 14:07:45 -07004080/**
Alexander Duyckf8003262012-03-03 02:35:52 +00004081 * ixgbe_init_rx_page_offset - initialize page offset values for Rx buffers
4082 * @rx_ring: ring to setup
4083 *
4084 * On many IA platforms the L1 cache has a critical stride of 4K, this
4085 * results in each receive buffer starting in the same cache set. To help
4086 * reduce the pressure on this cache set we can interleave the offsets so
4087 * that only every other buffer will be in the same cache set.
4088 **/
4089static void ixgbe_init_rx_page_offset(struct ixgbe_ring *rx_ring)
4090{
4091 struct ixgbe_rx_buffer *rx_buffer = rx_ring->rx_buffer_info;
4092 u16 i;
4093
4094 for (i = 0; i < rx_ring->count; i += 2) {
4095 rx_buffer[0].page_offset = 0;
4096 rx_buffer[1].page_offset = ixgbe_rx_bufsz(rx_ring);
4097 rx_buffer = &rx_buffer[2];
4098 }
4099}
4100
4101/**
Auke Kok9a799d72007-09-15 14:07:45 -07004102 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004103 * @rx_ring: ring to free buffers from
4104 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004105static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004106{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004107 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004108 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004109 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004110
Alexander Duyck84418e32010-08-19 13:40:54 +00004111 /* ring already cleared, nothing to do */
4112 if (!rx_ring->rx_buffer_info)
4113 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004114
Alexander Duyck84418e32010-08-19 13:40:54 +00004115 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004116 for (i = 0; i < rx_ring->count; i++) {
Alexander Duyckf8003262012-03-03 02:35:52 +00004117 struct ixgbe_rx_buffer *rx_buffer;
Auke Kok9a799d72007-09-15 14:07:45 -07004118
Alexander Duyckf8003262012-03-03 02:35:52 +00004119 rx_buffer = &rx_ring->rx_buffer_info[i];
4120 if (rx_buffer->skb) {
4121 struct sk_buff *skb = rx_buffer->skb;
4122 if (IXGBE_CB(skb)->page_released) {
4123 dma_unmap_page(dev,
4124 IXGBE_CB(skb)->dma,
4125 ixgbe_rx_bufsz(rx_ring),
4126 DMA_FROM_DEVICE);
4127 IXGBE_CB(skb)->page_released = false;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00004128 }
4129 dev_kfree_skb(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07004130 }
Alexander Duyckf8003262012-03-03 02:35:52 +00004131 rx_buffer->skb = NULL;
4132 if (rx_buffer->dma)
4133 dma_unmap_page(dev, rx_buffer->dma,
4134 ixgbe_rx_pg_size(rx_ring),
4135 DMA_FROM_DEVICE);
4136 rx_buffer->dma = 0;
4137 if (rx_buffer->page)
4138 put_page(rx_buffer->page);
4139 rx_buffer->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07004140 }
4141
4142 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4143 memset(rx_ring->rx_buffer_info, 0, size);
4144
Alexander Duyckf8003262012-03-03 02:35:52 +00004145 ixgbe_init_rx_page_offset(rx_ring);
4146
Auke Kok9a799d72007-09-15 14:07:45 -07004147 /* Zero out the descriptor ring */
4148 memset(rx_ring->desc, 0, rx_ring->size);
4149
Alexander Duyckf8003262012-03-03 02:35:52 +00004150 rx_ring->next_to_alloc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004151 rx_ring->next_to_clean = 0;
4152 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004153}
4154
4155/**
4156 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004157 * @tx_ring: ring to be cleaned
4158 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004159static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004160{
4161 struct ixgbe_tx_buffer *tx_buffer_info;
4162 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004163 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004164
Alexander Duyck84418e32010-08-19 13:40:54 +00004165 /* ring already cleared, nothing to do */
4166 if (!tx_ring->tx_buffer_info)
4167 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004168
Alexander Duyck84418e32010-08-19 13:40:54 +00004169 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004170 for (i = 0; i < tx_ring->count; i++) {
4171 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004172 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004173 }
4174
4175 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4176 memset(tx_ring->tx_buffer_info, 0, size);
4177
4178 /* Zero out the descriptor ring */
4179 memset(tx_ring->desc, 0, tx_ring->size);
4180
4181 tx_ring->next_to_use = 0;
4182 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004183}
4184
4185/**
Auke Kok9a799d72007-09-15 14:07:45 -07004186 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4187 * @adapter: board private structure
4188 **/
4189static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4190{
4191 int i;
4192
4193 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004194 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004195}
4196
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004197/**
4198 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4199 * @adapter: board private structure
4200 **/
4201static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4202{
4203 int i;
4204
4205 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004206 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004207}
4208
Alexander Duycke4911d52011-05-11 07:18:52 +00004209static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4210{
4211 struct hlist_node *node, *node2;
4212 struct ixgbe_fdir_filter *filter;
4213
4214 spin_lock(&adapter->fdir_perfect_lock);
4215
4216 hlist_for_each_entry_safe(filter, node, node2,
4217 &adapter->fdir_filter_list, fdir_node) {
4218 hlist_del(&filter->fdir_node);
4219 kfree(filter);
4220 }
4221 adapter->fdir_filter_count = 0;
4222
4223 spin_unlock(&adapter->fdir_perfect_lock);
4224}
4225
Auke Kok9a799d72007-09-15 14:07:45 -07004226void ixgbe_down(struct ixgbe_adapter *adapter)
4227{
4228 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004229 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004230 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004231 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004232
4233 /* signal that we are down to the interrupt handler */
4234 set_bit(__IXGBE_DOWN, &adapter->state);
4235
4236 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004237 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4238 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004239
Yi Zou2d39d572011-01-06 14:29:56 +00004240 /* disable all enabled rx queues */
4241 for (i = 0; i < adapter->num_rx_queues; i++)
4242 /* this call also flushes the previous write */
4243 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4244
Don Skidmore032b4322011-03-18 09:32:53 +00004245 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004246
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004247 netif_tx_stop_all_queues(netdev);
4248
Alexander Duyck70864002011-04-27 09:13:56 +00004249 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004250 netif_carrier_off(netdev);
4251 netif_tx_disable(netdev);
4252
4253 ixgbe_irq_disable(adapter);
4254
4255 ixgbe_napi_disable_all(adapter);
4256
Alexander Duyckd034acf2011-04-27 09:25:34 +00004257 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4258 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004259 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4260
4261 del_timer_sync(&adapter->service_timer);
4262
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004263 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004264 /* Clear EITR Select mapping */
4265 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4266
4267 /* Mark all the VFs as inactive */
4268 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004269 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004270
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004271 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004272 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004273
Auke Kok9a799d72007-09-15 14:07:45 -07004274 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004275 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004276 }
4277
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004278 /* disable transmits in the hardware now that interrupts are off */
4279 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004280 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004281 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004282 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004283
4284 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004285 switch (hw->mac.type) {
4286 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004287 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004288 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004289 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4290 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004291 break;
4292 default:
4293 break;
4294 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004295
Paul Larson6f4a0e42008-06-24 17:00:56 -07004296 if (!pci_channel_offline(adapter->pdev))
4297 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004298
4299 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4300 if (hw->mac.ops.disable_tx_laser &&
4301 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004302 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004303 (hw->mac.type == ixgbe_mac_82599EB))))
4304 hw->mac.ops.disable_tx_laser(hw);
4305
Auke Kok9a799d72007-09-15 14:07:45 -07004306 ixgbe_clean_all_tx_rings(adapter);
4307 ixgbe_clean_all_rx_rings(adapter);
4308
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004309#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004310 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004311 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004312#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004313}
4314
Auke Kok9a799d72007-09-15 14:07:45 -07004315/**
Auke Kok9a799d72007-09-15 14:07:45 -07004316 * ixgbe_tx_timeout - Respond to a Tx Hang
4317 * @netdev: network interface device structure
4318 **/
4319static void ixgbe_tx_timeout(struct net_device *netdev)
4320{
4321 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4322
4323 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004324 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004325}
4326
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004327/**
Auke Kok9a799d72007-09-15 14:07:45 -07004328 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4329 * @adapter: board private structure to initialize
4330 *
4331 * ixgbe_sw_init initializes the Adapter private data structure.
4332 * Fields are initialized based on PCI device information and
4333 * OS network device settings (MTU size).
4334 **/
4335static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
4336{
4337 struct ixgbe_hw *hw = &adapter->hw;
4338 struct pci_dev *pdev = adapter->pdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004339 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004340#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004341 int j;
4342 struct tc_configuration *tc;
4343#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004344
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004345 /* PCI config space info */
4346
4347 hw->vendor_id = pdev->vendor;
4348 hw->device_id = pdev->device;
4349 hw->revision_id = pdev->revision;
4350 hw->subsystem_vendor_id = pdev->subsystem_vendor;
4351 hw->subsystem_device_id = pdev->subsystem_device;
4352
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004353 /* Set capability flags */
Jesse Brandeburg3ed69d72012-02-10 10:20:02 +00004354 rss = min_t(int, IXGBE_MAX_RSS_INDICES, num_online_cpus());
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004355 adapter->ring_feature[RING_F_RSS].indices = rss;
4356 adapter->flags |= IXGBE_FLAG_RSS_ENABLED;
Alexander Duyckbd508172010-11-16 19:27:03 -08004357 switch (hw->mac.type) {
4358 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00004359 if (hw->device_id == IXGBE_DEV_ID_82598AT)
4360 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004361 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08004362 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08004363 case ixgbe_mac_X540:
Jacob Keller4f51bf72011-08-20 04:49:45 +00004364 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
4365 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004366 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00004367 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
4368 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004369 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
4370 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00004371 /* Flow Director hash filters enabled */
4372 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
4373 adapter->atr_sample_rate = 20;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004374 adapter->ring_feature[RING_F_FDIR].indices =
Joe Perchese8e9f692010-09-07 21:34:53 +00004375 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00004376 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00004377#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00004378 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
4379 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
4380 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou61a0f422009-12-03 11:32:22 +00004381#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00004382 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00004383 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00004384#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00004385#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08004386 break;
4387 default:
4388 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00004389 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004390
Alexander Duyck1fc5f032011-06-02 04:28:39 +00004391 /* n-tuple support exists, always init our spinlock */
4392 spin_lock_init(&adapter->fdir_perfect_lock);
4393
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004394#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00004395 switch (hw->mac.type) {
4396 case ixgbe_mac_X540:
4397 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
4398 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
4399 break;
4400 default:
4401 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
4402 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
4403 break;
4404 }
4405
Alexander Duyck2f90b862008-11-20 20:52:10 -08004406 /* Configure DCB traffic classes */
4407 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
4408 tc = &adapter->dcb_cfg.tc_config[j];
4409 tc->path[DCB_TX_CONFIG].bwg_id = 0;
4410 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
4411 tc->path[DCB_RX_CONFIG].bwg_id = 0;
4412 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
4413 tc->dcb_pfc = pfc_disabled;
4414 }
John Fastabend4de2a022011-09-27 03:52:01 +00004415
4416 /* Initialize default user to priority mapping, UPx->TC0 */
4417 tc = &adapter->dcb_cfg.tc_config[0];
4418 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
4419 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
4420
Alexander Duyck2f90b862008-11-20 20:52:10 -08004421 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
4422 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00004423 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004424 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00004425 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004426 ixgbe_copy_dcb_cfg(&adapter->dcb_cfg, &adapter->temp_dcb_cfg,
John Fastabende5b64632011-03-08 03:44:52 +00004427 MAX_TRAFFIC_CLASS);
Alexander Duyck2f90b862008-11-20 20:52:10 -08004428
4429#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004430
4431 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00004432 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00004433 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00004434#ifdef CONFIG_DCB
4435 adapter->last_lfc_mode = hw->fc.current_mode;
4436#endif
John Fastabend9da712d2011-08-23 03:14:22 +00004437 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07004438 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
4439 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00004440 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07004441
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004442 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004443 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004444 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004445
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004446 /* set default ring sizes */
4447 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
4448 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
4449
Alexander Duyckbd198052011-06-11 01:45:08 +00004450 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00004451 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00004452
Auke Kok9a799d72007-09-15 14:07:45 -07004453 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004454 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004455 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07004456 return -EIO;
4457 }
4458
Auke Kok9a799d72007-09-15 14:07:45 -07004459 set_bit(__IXGBE_DOWN, &adapter->state);
4460
4461 return 0;
4462}
4463
4464/**
4465 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004466 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004467 *
4468 * Return 0 on success, negative on failure
4469 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004470int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004471{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004472 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004473 int orig_node = dev_to_node(dev);
4474 int numa_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07004475 int size;
4476
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004477 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004478
4479 if (tx_ring->q_vector)
4480 numa_node = tx_ring->q_vector->numa_node;
4481
4482 tx_ring->tx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004483 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004484 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004485 if (!tx_ring->tx_buffer_info)
4486 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004487
4488 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08004489 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004490 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004491
Alexander Duyckde88eee2012-02-08 07:49:59 +00004492 set_dev_node(dev, numa_node);
4493 tx_ring->desc = dma_alloc_coherent(dev,
4494 tx_ring->size,
4495 &tx_ring->dma,
4496 GFP_KERNEL);
4497 set_dev_node(dev, orig_node);
4498 if (!tx_ring->desc)
4499 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
4500 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004501 if (!tx_ring->desc)
4502 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004503
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004504 tx_ring->next_to_use = 0;
4505 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004506 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004507
4508err:
4509 vfree(tx_ring->tx_buffer_info);
4510 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004511 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004512 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004513}
4514
4515/**
Alexander Duyck69888672008-09-11 20:05:39 -07004516 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
4517 * @adapter: board private structure
4518 *
4519 * If this function returns with an error, then it's possible one or
4520 * more of the rings is populated (while the rest are not). It is the
4521 * callers duty to clean those orphaned rings.
4522 *
4523 * Return 0 on success, negative on failure
4524 **/
4525static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
4526{
4527 int i, err = 0;
4528
4529 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004530 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004531 if (!err)
4532 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00004533 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07004534 break;
4535 }
4536
4537 return err;
4538}
4539
4540/**
Auke Kok9a799d72007-09-15 14:07:45 -07004541 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004542 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004543 *
4544 * Returns 0 on success, negative on failure
4545 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004546int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004547{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004548 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004549 int orig_node = dev_to_node(dev);
4550 int numa_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004551 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07004552
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004553 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004554
4555 if (rx_ring->q_vector)
4556 numa_node = rx_ring->q_vector->numa_node;
4557
4558 rx_ring->rx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004559 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004560 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004561 if (!rx_ring->rx_buffer_info)
4562 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004563
Auke Kok9a799d72007-09-15 14:07:45 -07004564 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004565 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
4566 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004567
Alexander Duyckde88eee2012-02-08 07:49:59 +00004568 set_dev_node(dev, numa_node);
4569 rx_ring->desc = dma_alloc_coherent(dev,
4570 rx_ring->size,
4571 &rx_ring->dma,
4572 GFP_KERNEL);
4573 set_dev_node(dev, orig_node);
4574 if (!rx_ring->desc)
4575 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
4576 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004577 if (!rx_ring->desc)
4578 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004579
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004580 rx_ring->next_to_clean = 0;
4581 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004582
Alexander Duyckf8003262012-03-03 02:35:52 +00004583 ixgbe_init_rx_page_offset(rx_ring);
4584
Auke Kok9a799d72007-09-15 14:07:45 -07004585 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004586err:
4587 vfree(rx_ring->rx_buffer_info);
4588 rx_ring->rx_buffer_info = NULL;
4589 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07004590 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004591}
4592
4593/**
Alexander Duyck69888672008-09-11 20:05:39 -07004594 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
4595 * @adapter: board private structure
4596 *
4597 * If this function returns with an error, then it's possible one or
4598 * more of the rings is populated (while the rest are not). It is the
4599 * callers duty to clean those orphaned rings.
4600 *
4601 * Return 0 on success, negative on failure
4602 **/
Alexander Duyck69888672008-09-11 20:05:39 -07004603static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
4604{
4605 int i, err = 0;
4606
4607 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004608 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004609 if (!err)
4610 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00004611 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07004612 break;
4613 }
4614
4615 return err;
4616}
4617
4618/**
Auke Kok9a799d72007-09-15 14:07:45 -07004619 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004620 * @tx_ring: Tx descriptor ring for a specific queue
4621 *
4622 * Free all transmit software resources
4623 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004624void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004625{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004626 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004627
4628 vfree(tx_ring->tx_buffer_info);
4629 tx_ring->tx_buffer_info = NULL;
4630
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004631 /* if not set, then don't free */
4632 if (!tx_ring->desc)
4633 return;
4634
4635 dma_free_coherent(tx_ring->dev, tx_ring->size,
4636 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004637
4638 tx_ring->desc = NULL;
4639}
4640
4641/**
4642 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
4643 * @adapter: board private structure
4644 *
4645 * Free all transmit software resources
4646 **/
4647static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
4648{
4649 int i;
4650
4651 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004652 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004653 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004654}
4655
4656/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07004657 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07004658 * @rx_ring: ring to clean the resources from
4659 *
4660 * Free all receive software resources
4661 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004662void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004663{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004664 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004665
4666 vfree(rx_ring->rx_buffer_info);
4667 rx_ring->rx_buffer_info = NULL;
4668
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004669 /* if not set, then don't free */
4670 if (!rx_ring->desc)
4671 return;
4672
4673 dma_free_coherent(rx_ring->dev, rx_ring->size,
4674 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004675
4676 rx_ring->desc = NULL;
4677}
4678
4679/**
4680 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
4681 * @adapter: board private structure
4682 *
4683 * Free all receive software resources
4684 **/
4685static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
4686{
4687 int i;
4688
4689 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004690 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004691 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004692}
4693
4694/**
Auke Kok9a799d72007-09-15 14:07:45 -07004695 * ixgbe_change_mtu - Change the Maximum Transfer Unit
4696 * @netdev: network interface device structure
4697 * @new_mtu: new value for maximum frame size
4698 *
4699 * Returns 0 on success, negative on failure
4700 **/
4701static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
4702{
4703 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4704 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
4705
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07004706 /* MTU < 68 is an error and causes problems on some kernels */
Alexander Duyck655309e2012-02-08 07:50:35 +00004707 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
4708 return -EINVAL;
4709
4710 /*
4711 * For 82599EB we cannot allow PF to change MTU greater than 1500
4712 * in SR-IOV mode as it may cause buffer overruns in guest VFs that
4713 * don't allocate and chain buffers correctly.
4714 */
4715 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
4716 (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
4717 (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
Greg Rosee9f98072011-01-26 01:06:07 +00004718 return -EINVAL;
Auke Kok9a799d72007-09-15 14:07:45 -07004719
Emil Tantilov396e7992010-07-01 20:05:12 +00004720 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Alexander Duyck655309e2012-02-08 07:50:35 +00004721
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004722 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07004723 netdev->mtu = new_mtu;
4724
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004725 if (netif_running(netdev))
4726 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004727
4728 return 0;
4729}
4730
4731/**
4732 * ixgbe_open - Called when a network interface is made active
4733 * @netdev: network interface device structure
4734 *
4735 * Returns 0 on success, negative value on failure
4736 *
4737 * The open entry point is called when a network interface is made
4738 * active by the system (IFF_UP). At this point all resources needed
4739 * for transmit and receive operations are allocated, the interrupt
4740 * handler is registered with the OS, the watchdog timer is started,
4741 * and the stack is notified that the interface is ready.
4742 **/
4743static int ixgbe_open(struct net_device *netdev)
4744{
4745 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4746 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07004747
Auke Kok4bebfaa2008-02-11 09:26:01 -08004748 /* disallow open during test */
4749 if (test_bit(__IXGBE_TESTING, &adapter->state))
4750 return -EBUSY;
4751
Jesse Brandeburg54386462009-04-17 20:44:27 +00004752 netif_carrier_off(netdev);
4753
Auke Kok9a799d72007-09-15 14:07:45 -07004754 /* allocate transmit descriptors */
4755 err = ixgbe_setup_all_tx_resources(adapter);
4756 if (err)
4757 goto err_setup_tx;
4758
Auke Kok9a799d72007-09-15 14:07:45 -07004759 /* allocate receive descriptors */
4760 err = ixgbe_setup_all_rx_resources(adapter);
4761 if (err)
4762 goto err_setup_rx;
4763
4764 ixgbe_configure(adapter);
4765
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004766 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004767 if (err)
4768 goto err_req_irq;
4769
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004770 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004771
4772 return 0;
4773
Auke Kok9a799d72007-09-15 14:07:45 -07004774err_req_irq:
Auke Kok9a799d72007-09-15 14:07:45 -07004775err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004776 ixgbe_free_all_rx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004777err_setup_tx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004778 ixgbe_free_all_tx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004779 ixgbe_reset(adapter);
4780
4781 return err;
4782}
4783
4784/**
4785 * ixgbe_close - Disables a network interface
4786 * @netdev: network interface device structure
4787 *
4788 * Returns 0, this is not allowed to fail
4789 *
4790 * The close entry point is called when an interface is de-activated
4791 * by the OS. The hardware is still under the drivers control, but
4792 * needs to be disabled. A global MAC reset is issued to stop the
4793 * hardware, and all transmit and receive resources are freed.
4794 **/
4795static int ixgbe_close(struct net_device *netdev)
4796{
4797 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07004798
4799 ixgbe_down(adapter);
4800 ixgbe_free_irq(adapter);
4801
Alexander Duycke4911d52011-05-11 07:18:52 +00004802 ixgbe_fdir_filter_exit(adapter);
4803
Auke Kok9a799d72007-09-15 14:07:45 -07004804 ixgbe_free_all_tx_resources(adapter);
4805 ixgbe_free_all_rx_resources(adapter);
4806
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08004807 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004808
4809 return 0;
4810}
4811
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004812#ifdef CONFIG_PM
4813static int ixgbe_resume(struct pci_dev *pdev)
4814{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004815 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4816 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004817 u32 err;
4818
4819 pci_set_power_state(pdev, PCI_D0);
4820 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08004821 /*
4822 * pci_restore_state clears dev->state_saved so call
4823 * pci_save_state to restore it.
4824 */
4825 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00004826
4827 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004828 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004829 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004830 return err;
4831 }
4832 pci_set_master(pdev);
4833
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07004834 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004835
4836 err = ixgbe_init_interrupt_scheme(adapter);
4837 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004838 e_dev_err("Cannot initialize interrupts for device\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004839 return err;
4840 }
4841
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004842 ixgbe_reset(adapter);
4843
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00004844 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
4845
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004846 if (netif_running(netdev)) {
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004847 err = ixgbe_open(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004848 if (err)
4849 return err;
4850 }
4851
4852 netif_device_attach(netdev);
4853
4854 return 0;
4855}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004856#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00004857
4858static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004859{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004860 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4861 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004862 struct ixgbe_hw *hw = &adapter->hw;
4863 u32 ctrl, fctrl;
4864 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004865#ifdef CONFIG_PM
4866 int retval = 0;
4867#endif
4868
4869 netif_device_detach(netdev);
4870
4871 if (netif_running(netdev)) {
4872 ixgbe_down(adapter);
4873 ixgbe_free_irq(adapter);
4874 ixgbe_free_all_tx_resources(adapter);
4875 ixgbe_free_all_rx_resources(adapter);
4876 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004877
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08004878 ixgbe_clear_interrupt_scheme(adapter);
John Fastabendd033d522011-02-10 14:40:01 +00004879#ifdef CONFIG_DCB
4880 kfree(adapter->ixgbe_ieee_pfc);
4881 kfree(adapter->ixgbe_ieee_ets);
4882#endif
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08004883
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004884#ifdef CONFIG_PM
4885 retval = pci_save_state(pdev);
4886 if (retval)
4887 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004888
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004889#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004890 if (wufc) {
4891 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004892
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004893 /* turn on all-multi mode if wake on multicast is enabled */
4894 if (wufc & IXGBE_WUFC_MC) {
4895 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
4896 fctrl |= IXGBE_FCTRL_MPE;
4897 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
4898 }
4899
4900 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
4901 ctrl |= IXGBE_CTRL_GIO_DIS;
4902 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
4903
4904 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
4905 } else {
4906 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
4907 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
4908 }
4909
Alexander Duyckbd508172010-11-16 19:27:03 -08004910 switch (hw->mac.type) {
4911 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07004912 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08004913 break;
4914 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004915 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08004916 pci_wake_from_d3(pdev, !!wufc);
4917 break;
4918 default:
4919 break;
4920 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004921
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00004922 *enable_wake = !!wufc;
4923
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004924 ixgbe_release_hw_control(adapter);
4925
4926 pci_disable_device(pdev);
4927
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004928 return 0;
4929}
4930
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00004931#ifdef CONFIG_PM
4932static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
4933{
4934 int retval;
4935 bool wake;
4936
4937 retval = __ixgbe_shutdown(pdev, &wake);
4938 if (retval)
4939 return retval;
4940
4941 if (wake) {
4942 pci_prepare_to_sleep(pdev);
4943 } else {
4944 pci_wake_from_d3(pdev, false);
4945 pci_set_power_state(pdev, PCI_D3hot);
4946 }
4947
4948 return 0;
4949}
4950#endif /* CONFIG_PM */
4951
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004952static void ixgbe_shutdown(struct pci_dev *pdev)
4953{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00004954 bool wake;
4955
4956 __ixgbe_shutdown(pdev, &wake);
4957
4958 if (system_state == SYSTEM_POWER_OFF) {
4959 pci_wake_from_d3(pdev, wake);
4960 pci_set_power_state(pdev, PCI_D3hot);
4961 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004962}
4963
4964/**
Auke Kok9a799d72007-09-15 14:07:45 -07004965 * ixgbe_update_stats - Update the board statistics counters.
4966 * @adapter: board private structure
4967 **/
4968void ixgbe_update_stats(struct ixgbe_adapter *adapter)
4969{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00004970 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07004971 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08004972 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08004973 u64 total_mpc = 0;
4974 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08004975 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
4976 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00004977 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00004978#ifdef IXGBE_FCOE
4979 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
4980 unsigned int cpu;
4981 u64 fcoe_noddp_counts_sum = 0, fcoe_noddp_ext_buff_counts_sum = 0;
4982#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07004983
Don Skidmored08935c2010-06-11 13:20:29 +00004984 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
4985 test_bit(__IXGBE_RESETTING, &adapter->state))
4986 return;
4987
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00004988 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00004989 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00004990 u64 rsc_flush = 0;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00004991 for (i = 0; i < 16; i++)
4992 adapter->hw_rx_no_dma_resources +=
Joe Perches7ca647b2010-09-07 21:35:40 +00004993 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00004994 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08004995 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
4996 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00004997 }
4998 adapter->rsc_total_count = rsc_count;
4999 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005000 }
5001
Alexander Duyck5b7da512010-11-16 19:26:50 -08005002 for (i = 0; i < adapter->num_rx_queues; i++) {
5003 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5004 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5005 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5006 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005007 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005008 bytes += rx_ring->stats.bytes;
5009 packets += rx_ring->stats.packets;
5010 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005011 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005012 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5013 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005014 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005015 netdev->stats.rx_bytes = bytes;
5016 netdev->stats.rx_packets = packets;
5017
5018 bytes = 0;
5019 packets = 0;
5020 /* gather some stats to the adapter struct that are per queue */
5021 for (i = 0; i < adapter->num_tx_queues; i++) {
5022 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5023 restart_queue += tx_ring->tx_stats.restart_queue;
5024 tx_busy += tx_ring->tx_stats.tx_busy;
5025 bytes += tx_ring->stats.bytes;
5026 packets += tx_ring->stats.packets;
5027 }
5028 adapter->restart_queue = restart_queue;
5029 adapter->tx_busy = tx_busy;
5030 netdev->stats.tx_bytes = bytes;
5031 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005032
Joe Perches7ca647b2010-09-07 21:35:40 +00005033 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005034
5035 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005036 for (i = 0; i < 8; i++) {
5037 /* for packet buffers not used, the register should read 0 */
5038 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5039 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005040 hwstats->mpc[i] += mpc;
5041 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005042 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5043 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005044 switch (hw->mac.type) {
5045 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005046 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5047 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5048 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005049 hwstats->pxonrxc[i] +=
5050 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005051 break;
5052 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005053 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005054 hwstats->pxonrxc[i] +=
5055 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005056 break;
5057 default:
5058 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005059 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005060 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005061
5062 /*16 register reads */
5063 for (i = 0; i < 16; i++) {
5064 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5065 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5066 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5067 (hw->mac.type == ixgbe_mac_X540)) {
5068 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5069 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5070 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5071 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5072 }
5073 }
5074
Joe Perches7ca647b2010-09-07 21:35:40 +00005075 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005076 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005077 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005078
John Fastabendc84d3242010-11-16 19:27:12 -08005079 ixgbe_update_xoff_received(adapter);
5080
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005081 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005082 switch (hw->mac.type) {
5083 case ixgbe_mac_82598EB:
5084 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005085 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5086 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5087 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5088 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005089 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005090 /* OS2BMC stats are X540 only*/
5091 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5092 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5093 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5094 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5095 case ixgbe_mac_82599EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005096 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005097 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005098 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005099 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005100 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005101 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005102 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005103 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5104 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005105#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005106 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5107 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5108 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5109 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5110 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5111 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005112 /* Add up per cpu counters for total ddp aloc fail */
5113 if (fcoe->pcpu_noddp && fcoe->pcpu_noddp_ext_buff) {
5114 for_each_possible_cpu(cpu) {
5115 fcoe_noddp_counts_sum +=
5116 *per_cpu_ptr(fcoe->pcpu_noddp, cpu);
5117 fcoe_noddp_ext_buff_counts_sum +=
5118 *per_cpu_ptr(fcoe->
5119 pcpu_noddp_ext_buff, cpu);
5120 }
5121 }
5122 hwstats->fcoe_noddp = fcoe_noddp_counts_sum;
5123 hwstats->fcoe_noddp_ext_buff = fcoe_noddp_ext_buff_counts_sum;
Yi Zou6d455222009-05-13 13:12:16 +00005124#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005125 break;
5126 default:
5127 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005128 }
Auke Kok9a799d72007-09-15 14:07:45 -07005129 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005130 hwstats->bprc += bprc;
5131 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005132 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005133 hwstats->mprc -= bprc;
5134 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5135 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5136 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5137 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5138 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5139 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5140 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5141 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005142 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005143 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005144 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005145 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005146 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5147 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005148 /*
5149 * 82598 errata - tx of flow control packets is included in tx counters
5150 */
5151 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005152 hwstats->gptc -= xon_off_tot;
5153 hwstats->mptc -= xon_off_tot;
5154 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5155 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5156 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5157 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5158 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5159 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5160 hwstats->ptc64 -= xon_off_tot;
5161 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5162 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5163 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5164 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5165 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5166 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005167
5168 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005169 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005170
5171 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005172 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005173 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005174 netdev->stats.rx_length_errors = hwstats->rlec;
5175 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005176 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005177}
5178
5179/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005180 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
5181 * @adapter - pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005182 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005183static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005184{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005185 struct ixgbe_hw *hw = &adapter->hw;
5186 int i;
5187
Alexander Duyckd034acf2011-04-27 09:25:34 +00005188 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5189 return;
5190
5191 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5192
5193 /* if interface is down do nothing */
5194 if (test_bit(__IXGBE_DOWN, &adapter->state))
5195 return;
5196
5197 /* do nothing if we are not using signature filters */
5198 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5199 return;
5200
5201 adapter->fdir_overflow++;
5202
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005203 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5204 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005205 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005206 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005207 /* re-enable flow director interrupts */
5208 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005209 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005210 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005211 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005212 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005213}
5214
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005215/**
5216 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
5217 * @adapter - pointer to the device adapter structure
5218 *
5219 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005220 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005221 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005222 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005223 */
5224static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5225{
Auke Kok9a799d72007-09-15 14:07:45 -07005226 struct ixgbe_hw *hw = &adapter->hw;
5227 u64 eics = 0;
5228 int i;
5229
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005230 /* If we're down or resetting, just bail */
5231 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5232 test_bit(__IXGBE_RESETTING, &adapter->state))
5233 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005234
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005235 /* Force detection of hung controller */
5236 if (netif_carrier_ok(adapter->netdev)) {
5237 for (i = 0; i < adapter->num_tx_queues; i++)
5238 set_check_for_tx_hang(adapter->tx_ring[i]);
5239 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005240
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005241 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005242 /*
5243 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005244 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005245 * would set *both* EIMS and EICS for any bit in EIAM
5246 */
5247 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5248 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005249 } else {
5250 /* get one bit for every active tx/rx interrupt vector */
5251 for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
5252 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00005253 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005254 eics |= ((u64)1 << i);
5255 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005256 }
5257
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005258 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005259 ixgbe_irq_rearm_queues(adapter, eics);
5260
Alexander Duyckfe49f042009-06-04 16:00:09 +00005261}
5262
5263/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005264 * ixgbe_watchdog_update_link - update the link status
5265 * @adapter - pointer to the device adapter structure
5266 * @link_speed - pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005267 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005268static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005269{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005270 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005271 u32 link_speed = adapter->link_speed;
5272 bool link_up = adapter->link_up;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005273 int i;
5274
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005275 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5276 return;
5277
5278 if (hw->mac.ops.check_link) {
5279 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005280 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005281 /* always assume link is up, if no check link function */
5282 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
5283 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005284 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005285 if (link_up) {
5286 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
5287 for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
5288 hw->mac.ops.fc_enable(hw, i);
5289 } else {
5290 hw->mac.ops.fc_enable(hw, 0);
5291 }
5292 }
5293
5294 if (link_up ||
5295 time_after(jiffies, (adapter->link_check_timeout +
5296 IXGBE_TRY_LINK_TIMEOUT))) {
5297 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5298 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
5299 IXGBE_WRITE_FLUSH(hw);
5300 }
5301
5302 adapter->link_up = link_up;
5303 adapter->link_speed = link_speed;
5304}
5305
5306/**
5307 * ixgbe_watchdog_link_is_up - update netif_carrier status and
5308 * print link up message
5309 * @adapter - pointer to the device adapter structure
5310 **/
5311static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
5312{
5313 struct net_device *netdev = adapter->netdev;
5314 struct ixgbe_hw *hw = &adapter->hw;
5315 u32 link_speed = adapter->link_speed;
5316 bool flow_rx, flow_tx;
5317
5318 /* only continue if link was previously down */
5319 if (netif_carrier_ok(netdev))
5320 return;
5321
5322 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
5323
5324 switch (hw->mac.type) {
5325 case ixgbe_mac_82598EB: {
5326 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5327 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
5328 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
5329 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
5330 }
5331 break;
5332 case ixgbe_mac_X540:
5333 case ixgbe_mac_82599EB: {
5334 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
5335 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
5336 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
5337 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
5338 }
5339 break;
5340 default:
5341 flow_tx = false;
5342 flow_rx = false;
5343 break;
5344 }
5345 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
5346 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
5347 "10 Gbps" :
5348 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
5349 "1 Gbps" :
5350 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
5351 "100 Mbps" :
5352 "unknown speed"))),
5353 ((flow_rx && flow_tx) ? "RX/TX" :
5354 (flow_rx ? "RX" :
5355 (flow_tx ? "TX" : "None"))));
5356
5357 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005358 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005359}
5360
5361/**
5362 * ixgbe_watchdog_link_is_down - update netif_carrier status and
5363 * print link down message
5364 * @adapter - pointer to the adapter structure
5365 **/
Alexander Duyck581330b2012-02-08 07:51:47 +00005366static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005367{
5368 struct net_device *netdev = adapter->netdev;
5369 struct ixgbe_hw *hw = &adapter->hw;
5370
5371 adapter->link_up = false;
5372 adapter->link_speed = 0;
5373
5374 /* only continue if link was up previously */
5375 if (!netif_carrier_ok(netdev))
5376 return;
5377
5378 /* poll for SFP+ cable when link is down */
5379 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
5380 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
5381
5382 e_info(drv, "NIC Link is Down\n");
5383 netif_carrier_off(netdev);
5384}
5385
5386/**
5387 * ixgbe_watchdog_flush_tx - flush queues on link down
5388 * @adapter - pointer to the device adapter structure
5389 **/
5390static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
5391{
5392 int i;
5393 int some_tx_pending = 0;
5394
5395 if (!netif_carrier_ok(adapter->netdev)) {
5396 for (i = 0; i < adapter->num_tx_queues; i++) {
5397 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5398 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
5399 some_tx_pending = 1;
5400 break;
5401 }
5402 }
5403
5404 if (some_tx_pending) {
5405 /* We've lost link, so the controller stops DMA,
5406 * but we've got queued Tx work that's never going
5407 * to get done, so reset controller to flush Tx.
5408 * (Do the reset outside of interrupt context).
5409 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005410 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005411 }
5412 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005413}
5414
Greg Rosea985b6c32010-11-18 03:02:52 +00005415static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
5416{
5417 u32 ssvpc;
5418
5419 /* Do not perform spoof check for 82598 */
5420 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
5421 return;
5422
5423 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
5424
5425 /*
5426 * ssvpc register is cleared on read, if zero then no
5427 * spoofed packets in the last interval.
5428 */
5429 if (!ssvpc)
5430 return;
5431
5432 e_warn(drv, "%d Spoofed packets detected\n", ssvpc);
5433}
5434
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005435/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005436 * ixgbe_watchdog_subtask - check and bring link up
5437 * @adapter - pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005438 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005439static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005440{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005441 /* if interface is down do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00005442 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5443 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005444 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005445
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005446 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00005447
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005448 if (adapter->link_up)
5449 ixgbe_watchdog_link_is_up(adapter);
5450 else
5451 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005452
Greg Rosea985b6c32010-11-18 03:02:52 +00005453 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005454 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005455
5456 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005457}
5458
Alexander Duyck70864002011-04-27 09:13:56 +00005459/**
5460 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
5461 * @adapter - the ixgbe adapter structure
5462 **/
5463static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
5464{
5465 struct ixgbe_hw *hw = &adapter->hw;
5466 s32 err;
5467
5468 /* not searching for SFP so there is nothing to do here */
5469 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
5470 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5471 return;
5472
5473 /* someone else is in init, wait until next service event */
5474 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5475 return;
5476
5477 err = hw->phy.ops.identify_sfp(hw);
5478 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5479 goto sfp_out;
5480
5481 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
5482 /* If no cable is present, then we need to reset
5483 * the next time we find a good cable. */
5484 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
5485 }
5486
5487 /* exit on error */
5488 if (err)
5489 goto sfp_out;
5490
5491 /* exit if reset not needed */
5492 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5493 goto sfp_out;
5494
5495 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
5496
5497 /*
5498 * A module may be identified correctly, but the EEPROM may not have
5499 * support for that module. setup_sfp() will fail in that case, so
5500 * we should not allow that module to load.
5501 */
5502 if (hw->mac.type == ixgbe_mac_82598EB)
5503 err = hw->phy.ops.reset(hw);
5504 else
5505 err = hw->mac.ops.setup_sfp(hw);
5506
5507 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5508 goto sfp_out;
5509
5510 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
5511 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
5512
5513sfp_out:
5514 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5515
5516 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
5517 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
5518 e_dev_err("failed to initialize because an unsupported "
5519 "SFP+ module type was detected.\n");
5520 e_dev_err("Reload the driver after installing a "
5521 "supported module.\n");
5522 unregister_netdev(adapter->netdev);
5523 }
5524}
5525
5526/**
5527 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
5528 * @adapter - the ixgbe adapter structure
5529 **/
5530static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
5531{
5532 struct ixgbe_hw *hw = &adapter->hw;
5533 u32 autoneg;
5534 bool negotiation;
5535
5536 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
5537 return;
5538
5539 /* someone else is in init, wait until next service event */
5540 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5541 return;
5542
5543 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
5544
5545 autoneg = hw->phy.autoneg_advertised;
5546 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
5547 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Alexander Duyck70864002011-04-27 09:13:56 +00005548 if (hw->mac.ops.setup_link)
5549 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
5550
5551 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5552 adapter->link_check_timeout = jiffies;
5553 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5554}
5555
Greg Rose83c61fa2011-09-07 05:59:35 +00005556#ifdef CONFIG_PCI_IOV
5557static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
5558{
5559 int vf;
5560 struct ixgbe_hw *hw = &adapter->hw;
5561 struct net_device *netdev = adapter->netdev;
5562 u32 gpc;
5563 u32 ciaa, ciad;
5564
5565 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
5566 if (gpc) /* If incrementing then no need for the check below */
5567 return;
5568 /*
5569 * Check to see if a bad DMA write target from an errant or
5570 * malicious VF has caused a PCIe error. If so then we can
5571 * issue a VFLR to the offending VF(s) and then resume without
5572 * requesting a full slot reset.
5573 */
5574
5575 for (vf = 0; vf < adapter->num_vfs; vf++) {
5576 ciaa = (vf << 16) | 0x80000000;
5577 /* 32 bit read so align, we really want status at offset 6 */
5578 ciaa |= PCI_COMMAND;
5579 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5580 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
5581 ciaa &= 0x7FFFFFFF;
5582 /* disable debug mode asap after reading data */
5583 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5584 /* Get the upper 16 bits which will be the PCI status reg */
5585 ciad >>= 16;
5586 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
5587 netdev_err(netdev, "VF %d Hung DMA\n", vf);
5588 /* Issue VFLR */
5589 ciaa = (vf << 16) | 0x80000000;
5590 ciaa |= 0xA8;
5591 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5592 ciad = 0x00008000; /* VFLR */
5593 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
5594 ciaa &= 0x7FFFFFFF;
5595 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5596 }
5597 }
5598}
5599
5600#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005601/**
5602 * ixgbe_service_timer - Timer Call-back
5603 * @data: pointer to adapter cast into an unsigned long
5604 **/
5605static void ixgbe_service_timer(unsigned long data)
5606{
5607 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
5608 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00005609 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00005610
5611 /* poll faster when waiting for link */
5612 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
5613 next_event_offset = HZ / 10;
5614 else
5615 next_event_offset = HZ * 2;
5616
Greg Rose83c61fa2011-09-07 05:59:35 +00005617#ifdef CONFIG_PCI_IOV
Alexander Duyck6bb78cf2012-02-08 07:51:22 +00005618 /*
5619 * don't bother with SR-IOV VF DMA hang check if there are
5620 * no VFs or the link is down
5621 */
5622 if (!adapter->num_vfs ||
5623 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5624 goto normal_timer_service;
5625
5626 /* If we have VFs allocated then we must check for DMA hangs */
5627 ixgbe_check_for_bad_vf(adapter);
5628 next_event_offset = HZ / 50;
5629 adapter->timer_event_accumulator++;
5630
5631 if (adapter->timer_event_accumulator >= 100)
5632 adapter->timer_event_accumulator = 0;
5633 else
5634 ready = false;
5635
5636normal_timer_service:
Greg Rose83c61fa2011-09-07 05:59:35 +00005637#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005638 /* Reset the timer */
5639 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
5640
Greg Rose83c61fa2011-09-07 05:59:35 +00005641 if (ready)
5642 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005643}
5644
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005645static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
5646{
5647 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
5648 return;
5649
5650 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
5651
5652 /* If we're already down or resetting, just bail */
5653 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5654 test_bit(__IXGBE_RESETTING, &adapter->state))
5655 return;
5656
5657 ixgbe_dump(adapter);
5658 netdev_err(adapter->netdev, "Reset adapter\n");
5659 adapter->tx_timeout_count++;
5660
5661 ixgbe_reinit_locked(adapter);
5662}
5663
Alexander Duyck70864002011-04-27 09:13:56 +00005664/**
5665 * ixgbe_service_task - manages and runs subtasks
5666 * @work: pointer to work_struct containing our data
5667 **/
5668static void ixgbe_service_task(struct work_struct *work)
5669{
5670 struct ixgbe_adapter *adapter = container_of(work,
5671 struct ixgbe_adapter,
5672 service_task);
5673
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005674 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005675 ixgbe_sfp_detection_subtask(adapter);
5676 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00005677 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005678 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00005679 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005680 ixgbe_check_hang_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005681
5682 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005683}
5684
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005685static int ixgbe_tso(struct ixgbe_ring *tx_ring,
5686 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005687 u8 *hdr_len)
Alexander Duyck897ab152011-05-27 05:31:47 +00005688{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005689 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005690 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005691 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07005692
Alexander Duyck897ab152011-05-27 05:31:47 +00005693 if (!skb_is_gso(skb))
5694 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005695
Alexander Duyck897ab152011-05-27 05:31:47 +00005696 if (skb_header_cloned(skb)) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00005697 int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Alexander Duyck897ab152011-05-27 05:31:47 +00005698 if (err)
5699 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00005700 }
5701
Alexander Duyck897ab152011-05-27 05:31:47 +00005702 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
5703 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
5704
Alexander Duyck244e27a2012-02-08 07:51:11 +00005705 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005706 struct iphdr *iph = ip_hdr(skb);
5707 iph->tot_len = 0;
5708 iph->check = 0;
5709 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5710 iph->daddr, 0,
5711 IPPROTO_TCP,
5712 0);
5713 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005714 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5715 IXGBE_TX_FLAGS_CSUM |
5716 IXGBE_TX_FLAGS_IPV4;
Alexander Duyck897ab152011-05-27 05:31:47 +00005717 } else if (skb_is_gso_v6(skb)) {
5718 ipv6_hdr(skb)->payload_len = 0;
5719 tcp_hdr(skb)->check =
5720 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
5721 &ipv6_hdr(skb)->daddr,
5722 0, IPPROTO_TCP, 0);
Alexander Duyck244e27a2012-02-08 07:51:11 +00005723 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5724 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck897ab152011-05-27 05:31:47 +00005725 }
5726
Alexander Duyck091a6242012-02-08 07:51:01 +00005727 /* compute header lengths */
Alexander Duyck897ab152011-05-27 05:31:47 +00005728 l4len = tcp_hdrlen(skb);
5729 *hdr_len = skb_transport_offset(skb) + l4len;
5730
Alexander Duyck091a6242012-02-08 07:51:01 +00005731 /* update gso size and bytecount with header size */
5732 first->gso_segs = skb_shinfo(skb)->gso_segs;
5733 first->bytecount += (first->gso_segs - 1) * *hdr_len;
5734
Alexander Duyck897ab152011-05-27 05:31:47 +00005735 /* mss_l4len_id: use 1 as index for TSO */
5736 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
5737 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
5738 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
5739
5740 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
5741 vlan_macip_lens = skb_network_header_len(skb);
5742 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005743 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005744
5745 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005746 mss_l4len_idx);
Alexander Duyck897ab152011-05-27 05:31:47 +00005747
5748 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00005749}
5750
Alexander Duyck244e27a2012-02-08 07:51:11 +00005751static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
5752 struct ixgbe_tx_buffer *first)
Auke Kok9a799d72007-09-15 14:07:45 -07005753{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005754 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005755 u32 vlan_macip_lens = 0;
5756 u32 mss_l4len_idx = 0;
5757 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005758
Alexander Duyck897ab152011-05-27 05:31:47 +00005759 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00005760 if (!(first->tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
5761 !(first->tx_flags & IXGBE_TX_FLAGS_TXSW))
5762 return;
Alexander Duyck897ab152011-05-27 05:31:47 +00005763 } else {
5764 u8 l4_hdr = 0;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005765 switch (first->protocol) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005766 case __constant_htons(ETH_P_IP):
5767 vlan_macip_lens |= skb_network_header_len(skb);
5768 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
5769 l4_hdr = ip_hdr(skb)->protocol;
5770 break;
5771 case __constant_htons(ETH_P_IPV6):
5772 vlan_macip_lens |= skb_network_header_len(skb);
5773 l4_hdr = ipv6_hdr(skb)->nexthdr;
5774 break;
5775 default:
5776 if (unlikely(net_ratelimit())) {
5777 dev_warn(tx_ring->dev,
5778 "partial checksum but proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005779 first->protocol);
Alexander Duyck897ab152011-05-27 05:31:47 +00005780 }
5781 break;
5782 }
Auke Kok9a799d72007-09-15 14:07:45 -07005783
Alexander Duyck897ab152011-05-27 05:31:47 +00005784 switch (l4_hdr) {
5785 case IPPROTO_TCP:
5786 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
5787 mss_l4len_idx = tcp_hdrlen(skb) <<
5788 IXGBE_ADVTXD_L4LEN_SHIFT;
5789 break;
5790 case IPPROTO_SCTP:
5791 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
5792 mss_l4len_idx = sizeof(struct sctphdr) <<
5793 IXGBE_ADVTXD_L4LEN_SHIFT;
5794 break;
5795 case IPPROTO_UDP:
5796 mss_l4len_idx = sizeof(struct udphdr) <<
5797 IXGBE_ADVTXD_L4LEN_SHIFT;
5798 break;
5799 default:
5800 if (unlikely(net_ratelimit())) {
5801 dev_warn(tx_ring->dev,
5802 "partial checksum but l4 proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005803 l4_hdr);
Alexander Duyck897ab152011-05-27 05:31:47 +00005804 }
5805 break;
5806 }
Alexander Duyck244e27a2012-02-08 07:51:11 +00005807
5808 /* update TX checksum flag */
5809 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07005810 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005811
Alexander Duyck244e27a2012-02-08 07:51:11 +00005812 /* vlan_macip_lens: MACLEN, VLAN tag */
Alexander Duyck897ab152011-05-27 05:31:47 +00005813 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005814 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005815
5816 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
5817 type_tucmd, mss_l4len_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07005818}
5819
Alexander Duyckd3d00232011-07-15 02:31:25 +00005820static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
5821{
5822 /* set type for advanced descriptor with frame checksum insertion */
5823 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
5824 IXGBE_ADVTXD_DCMD_IFCS |
5825 IXGBE_ADVTXD_DCMD_DEXT);
5826
5827 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00005828 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005829 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
5830
5831 /* set segmentation enable bits for TSO/FSO */
5832#ifdef IXGBE_FCOE
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005833 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FSO))
Alexander Duyckd3d00232011-07-15 02:31:25 +00005834#else
5835 if (tx_flags & IXGBE_TX_FLAGS_TSO)
5836#endif
5837 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
5838
5839 return cmd_type;
5840}
5841
Alexander Duyck729739b2012-02-08 07:51:06 +00005842static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
5843 u32 tx_flags, unsigned int paylen)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005844{
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005845 __le32 olinfo_status = cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005846
5847 /* enable L4 checksum for TSO and TX checksum offload */
5848 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
5849 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
5850
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005851 /* enble IPv4 checksum for TSO */
5852 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
5853 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005854
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005855 /* use index 1 context for TSO/FSO/FCOE */
5856#ifdef IXGBE_FCOE
5857 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FCOE))
5858#else
5859 if (tx_flags & IXGBE_TX_FLAGS_TSO)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005860#endif
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005861 olinfo_status |= cpu_to_le32(1 << IXGBE_ADVTXD_IDX_SHIFT);
5862
Alexander Duyck7f9643f2011-06-29 05:43:27 +00005863 /*
5864 * Check Context must be set if Tx switch is enabled, which it
5865 * always is for case where virtual functions are running
5866 */
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005867#ifdef IXGBE_FCOE
5868 if (tx_flags & (IXGBE_TX_FLAGS_TXSW | IXGBE_TX_FLAGS_FCOE))
5869#else
Alexander Duyck7f9643f2011-06-29 05:43:27 +00005870 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005871#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00005872 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
5873
Alexander Duyck729739b2012-02-08 07:51:06 +00005874 tx_desc->read.olinfo_status = olinfo_status;
Alexander Duyckd3d00232011-07-15 02:31:25 +00005875}
5876
5877#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
5878 IXGBE_TXD_CMD_RS)
5879
5880static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
Alexander Duyckd3d00232011-07-15 02:31:25 +00005881 struct ixgbe_tx_buffer *first,
Alexander Duyckd3d00232011-07-15 02:31:25 +00005882 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07005883{
Alexander Duyckd3d00232011-07-15 02:31:25 +00005884 dma_addr_t dma;
Alexander Duyck729739b2012-02-08 07:51:06 +00005885 struct sk_buff *skb = first->skb;
5886 struct ixgbe_tx_buffer *tx_buffer;
5887 union ixgbe_adv_tx_desc *tx_desc;
5888 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
Alexander Duyckd3d00232011-07-15 02:31:25 +00005889 unsigned int data_len = skb->data_len;
5890 unsigned int size = skb_headlen(skb);
Alexander Duyck729739b2012-02-08 07:51:06 +00005891 unsigned int paylen = skb->len - hdr_len;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005892 u32 tx_flags = first->tx_flags;
Alexander Duyck729739b2012-02-08 07:51:06 +00005893 __le32 cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00005894 u16 i = tx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07005895
Alexander Duyck729739b2012-02-08 07:51:06 +00005896 tx_desc = IXGBE_TX_DESC(tx_ring, i);
5897
5898 ixgbe_tx_olinfo_status(tx_desc, tx_flags, paylen);
5899 cmd_type = ixgbe_tx_cmd_type(tx_flags);
5900
Alexander Duyckd3d00232011-07-15 02:31:25 +00005901#ifdef IXGBE_FCOE
5902 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
Alexander Duyck729739b2012-02-08 07:51:06 +00005903 if (data_len < sizeof(struct fcoe_crc_eof)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00005904 size -= sizeof(struct fcoe_crc_eof) - data_len;
5905 data_len = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00005906 } else {
5907 data_len -= sizeof(struct fcoe_crc_eof);
Alexander Duyck44df32c2009-03-31 21:34:23 +00005908 }
Auke Kok9a799d72007-09-15 14:07:45 -07005909 }
5910
Alexander Duyckd3d00232011-07-15 02:31:25 +00005911#endif
Alexander Duyck729739b2012-02-08 07:51:06 +00005912 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
5913 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00005914 goto dma_error;
5915
Alexander Duyck729739b2012-02-08 07:51:06 +00005916 /* record length, and DMA address */
5917 dma_unmap_len_set(first, len, size);
5918 dma_unmap_addr_set(first, dma, dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005919
Alexander Duyck729739b2012-02-08 07:51:06 +00005920 tx_desc->read.buffer_addr = cpu_to_le64(dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005921
5922 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00005923 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00005924 tx_desc->read.cmd_type_len =
5925 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005926
Alexander Duyckd3d00232011-07-15 02:31:25 +00005927 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00005928 tx_desc++;
Alexander Duyckd3d00232011-07-15 02:31:25 +00005929 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00005930 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005931 i = 0;
5932 }
Alexander Duyck729739b2012-02-08 07:51:06 +00005933
5934 dma += IXGBE_MAX_DATA_PER_TXD;
5935 size -= IXGBE_MAX_DATA_PER_TXD;
5936
5937 tx_desc->read.buffer_addr = cpu_to_le64(dma);
5938 tx_desc->read.olinfo_status = 0;
Alexander Duyckd3d00232011-07-15 02:31:25 +00005939 }
5940
Alexander Duyck729739b2012-02-08 07:51:06 +00005941 if (likely(!data_len))
5942 break;
Alexander Duyckd3d00232011-07-15 02:31:25 +00005943
Ben Greearf43f3132012-03-06 09:42:04 +00005944 if (unlikely(skb->no_fcs))
5945 cmd_type &= ~(cpu_to_le32(IXGBE_ADVTXD_DCMD_IFCS));
Alexander Duyckd3d00232011-07-15 02:31:25 +00005946 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005947
Alexander Duyck729739b2012-02-08 07:51:06 +00005948 i++;
5949 tx_desc++;
5950 if (i == tx_ring->count) {
5951 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
5952 i = 0;
5953 }
Auke Kok9a799d72007-09-15 14:07:45 -07005954
Alexander Duyckd3d00232011-07-15 02:31:25 +00005955#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00005956 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00005957#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00005958 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00005959#endif
5960 data_len -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07005961
Alexander Duyck729739b2012-02-08 07:51:06 +00005962 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
5963 DMA_TO_DEVICE);
5964 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00005965 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07005966
Alexander Duyck729739b2012-02-08 07:51:06 +00005967 tx_buffer = &tx_ring->tx_buffer_info[i];
5968 dma_unmap_len_set(tx_buffer, len, size);
5969 dma_unmap_addr_set(tx_buffer, dma, dma);
5970
5971 tx_desc->read.buffer_addr = cpu_to_le64(dma);
5972 tx_desc->read.olinfo_status = 0;
5973
5974 frag++;
Auke Kok9a799d72007-09-15 14:07:45 -07005975 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00005976
Alexander Duyck729739b2012-02-08 07:51:06 +00005977 /* write last descriptor with RS and EOP bits */
5978 cmd_type |= cpu_to_le32(size) | cpu_to_le32(IXGBE_TXD_CMD);
5979 tx_desc->read.cmd_type_len = cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00005980
Alexander Duyck091a6242012-02-08 07:51:01 +00005981 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Alexander Duyckb2d96e02012-02-07 08:14:33 +00005982
Alexander Duyckd3d00232011-07-15 02:31:25 +00005983 /* set the timestamp */
5984 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07005985
5986 /*
Alexander Duyck729739b2012-02-08 07:51:06 +00005987 * Force memory writes to complete before letting h/w know there
5988 * are new descriptors to fetch. (Only applicable for weak-ordered
5989 * memory model archs, such as IA-64).
5990 *
5991 * We also need this memory barrier to make certain all of the
5992 * status bits have been updated before next_to_watch is written.
Auke Kok9a799d72007-09-15 14:07:45 -07005993 */
5994 wmb();
5995
Alexander Duyckd3d00232011-07-15 02:31:25 +00005996 /* set next_to_watch value indicating a packet is present */
5997 first->next_to_watch = tx_desc;
5998
Alexander Duyck729739b2012-02-08 07:51:06 +00005999 i++;
6000 if (i == tx_ring->count)
6001 i = 0;
6002
6003 tx_ring->next_to_use = i;
6004
Alexander Duyckd3d00232011-07-15 02:31:25 +00006005 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006006 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006007
6008 return;
6009dma_error:
Alexander Duyck729739b2012-02-08 07:51:06 +00006010 dev_err(tx_ring->dev, "TX DMA map failed\n");
Alexander Duyckd3d00232011-07-15 02:31:25 +00006011
6012 /* clear dma mappings for failed tx_buffer_info map */
6013 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006014 tx_buffer = &tx_ring->tx_buffer_info[i];
6015 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
6016 if (tx_buffer == first)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006017 break;
6018 if (i == 0)
6019 i = tx_ring->count;
6020 i--;
6021 }
6022
Alexander Duyckd3d00232011-07-15 02:31:25 +00006023 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006024}
6025
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006026static void ixgbe_atr(struct ixgbe_ring *ring,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006027 struct ixgbe_tx_buffer *first)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006028{
Alexander Duyck69830522011-01-06 14:29:58 +00006029 struct ixgbe_q_vector *q_vector = ring->q_vector;
6030 union ixgbe_atr_hash_dword input = { .dword = 0 };
6031 union ixgbe_atr_hash_dword common = { .dword = 0 };
6032 union {
6033 unsigned char *network;
6034 struct iphdr *ipv4;
6035 struct ipv6hdr *ipv6;
6036 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006037 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006038 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006039
Alexander Duyck69830522011-01-06 14:29:58 +00006040 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6041 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006042 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006043
Alexander Duyck69830522011-01-06 14:29:58 +00006044 /* do nothing if sampling is disabled */
6045 if (!ring->atr_sample_rate)
6046 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006047
Alexander Duyck69830522011-01-06 14:29:58 +00006048 ring->atr_count++;
6049
6050 /* snag network header to get L4 type and address */
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006051 hdr.network = skb_network_header(first->skb);
Alexander Duyck69830522011-01-06 14:29:58 +00006052
6053 /* Currently only IPv4/IPv6 with TCP is supported */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006054 if ((first->protocol != __constant_htons(ETH_P_IPV6) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006055 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
Alexander Duyck244e27a2012-02-08 07:51:11 +00006056 (first->protocol != __constant_htons(ETH_P_IP) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006057 hdr.ipv4->protocol != IPPROTO_TCP))
6058 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006059
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006060 th = tcp_hdr(first->skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006061
Alexander Duyck66f32a82011-06-29 05:43:22 +00006062 /* skip this packet since it is invalid or the socket is closing */
6063 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006064 return;
6065
6066 /* sample on all syn packets or once every atr sample count */
6067 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6068 return;
6069
6070 /* reset sample count */
6071 ring->atr_count = 0;
6072
Alexander Duyck244e27a2012-02-08 07:51:11 +00006073 vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
Alexander Duyck69830522011-01-06 14:29:58 +00006074
6075 /*
6076 * src and dst are inverted, think how the receiver sees them
6077 *
6078 * The input is broken into two sections, a non-compressed section
6079 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6080 * is XORed together and stored in the compressed dword.
6081 */
6082 input.formatted.vlan_id = vlan_id;
6083
6084 /*
6085 * since src port and flex bytes occupy the same word XOR them together
6086 * and write the value to source port portion of compressed dword
6087 */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006088 if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006089 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6090 else
Alexander Duyck244e27a2012-02-08 07:51:11 +00006091 common.port.src ^= th->dest ^ first->protocol;
Alexander Duyck69830522011-01-06 14:29:58 +00006092 common.port.dst ^= th->source;
6093
Alexander Duyck244e27a2012-02-08 07:51:11 +00006094 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck69830522011-01-06 14:29:58 +00006095 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6096 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6097 } else {
6098 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6099 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6100 hdr.ipv6->saddr.s6_addr32[1] ^
6101 hdr.ipv6->saddr.s6_addr32[2] ^
6102 hdr.ipv6->saddr.s6_addr32[3] ^
6103 hdr.ipv6->daddr.s6_addr32[0] ^
6104 hdr.ipv6->daddr.s6_addr32[1] ^
6105 hdr.ipv6->daddr.s6_addr32[2] ^
6106 hdr.ipv6->daddr.s6_addr32[3];
6107 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006108
6109 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006110 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6111 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006112}
6113
Alexander Duyck63544e92011-05-27 05:31:42 +00006114static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006115{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006116 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006117 /* Herbert's original patch had:
6118 * smp_mb__after_netif_stop_queue();
6119 * but since that doesn't exist yet, just open code it. */
6120 smp_mb();
6121
6122 /* We need to check again in a case another CPU has just
6123 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006124 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006125 return -EBUSY;
6126
6127 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006128 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006129 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006130 return 0;
6131}
6132
Alexander Duyck82d4e462011-06-11 01:44:58 +00006133static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006134{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006135 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006136 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006137 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006138}
6139
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006140static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6141{
6142 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006143 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6144 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006145#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006146 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006147
John Fastabende5b64632011-03-08 03:44:52 +00006148 if (((protocol == htons(ETH_P_FCOE)) ||
6149 (protocol == htons(ETH_P_FIP))) &&
6150 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
6151 txq &= (adapter->ring_feature[RING_F_FCOE].indices - 1);
6152 txq += adapter->ring_feature[RING_F_FCOE].mask;
6153 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006154 }
6155#endif
6156
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006157 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6158 while (unlikely(txq >= dev->real_num_tx_queues))
6159 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006160 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006161 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006162
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006163 return skb_tx_hash(dev, skb);
6164}
6165
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006166netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006167 struct ixgbe_adapter *adapter,
6168 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006169{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006170 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006171 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006172 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006173#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6174 unsigned short f;
6175#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006176 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006177 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006178 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006179
Alexander Duycka535c302011-05-27 05:31:52 +00006180 /*
6181 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00006182 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00006183 * + 2 desc gap to keep tail from touching head,
6184 * + 1 desc for context descriptor,
6185 * otherwise try next time
6186 */
6187#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6188 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6189 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6190#else
6191 count += skb_shinfo(skb)->nr_frags;
6192#endif
6193 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6194 tx_ring->tx_stats.tx_busy++;
6195 return NETDEV_TX_BUSY;
6196 }
6197
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006198 /* record the location of the first descriptor for this packet */
6199 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
6200 first->skb = skb;
Alexander Duyck091a6242012-02-08 07:51:01 +00006201 first->bytecount = skb->len;
6202 first->gso_segs = 1;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006203
Alexander Duyck66f32a82011-06-29 05:43:22 +00006204 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00006205 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006206 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6207 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6208 /* else if it is a SW VLAN check the next protocol and store the tag */
6209 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
6210 struct vlan_hdr *vhdr, _vhdr;
6211 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
6212 if (!vhdr)
6213 goto out_drop;
6214
6215 protocol = vhdr->h_vlan_encapsulated_proto;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006216 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
6217 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006218 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006219 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006220
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006221#ifdef CONFIG_PCI_IOV
6222 /*
6223 * Use the l2switch_enable flag - would be false if the DMA
6224 * Tx switch had been disabled.
6225 */
6226 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6227 tx_flags |= IXGBE_TX_FLAGS_TXSW;
6228
6229#endif
John Fastabend32701dc2011-09-27 03:51:56 +00006230 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006231 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00006232 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
6233 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006234 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00006235 tx_flags |= (skb->priority & 0x7) <<
6236 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006237 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
6238 struct vlan_ethhdr *vhdr;
6239 if (skb_header_cloned(skb) &&
6240 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6241 goto out_drop;
6242 vhdr = (struct vlan_ethhdr *)skb->data;
6243 vhdr->h_vlan_TCI = htons(tx_flags >>
6244 IXGBE_TX_FLAGS_VLAN_SHIFT);
6245 } else {
6246 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6247 }
6248 }
Alexander Duycka535c302011-05-27 05:31:52 +00006249
Alexander Duyck244e27a2012-02-08 07:51:11 +00006250 /* record initial flags and protocol */
6251 first->tx_flags = tx_flags;
6252 first->protocol = protocol;
6253
Yi Zoueacd73f2009-05-13 13:11:06 +00006254#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00006255 /* setup tx offload for FCoE */
6256 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
6257 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00006258 tso = ixgbe_fso(tx_ring, first, &hdr_len);
Alexander Duyck897ab152011-05-27 05:31:47 +00006259 if (tso < 0)
6260 goto out_drop;
Auke Kok9a799d72007-09-15 14:07:45 -07006261
Alexander Duyck66f32a82011-06-29 05:43:22 +00006262 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006263 }
Auke Kok9a799d72007-09-15 14:07:45 -07006264
Auke Kok9a799d72007-09-15 14:07:45 -07006265#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006266 tso = ixgbe_tso(tx_ring, first, &hdr_len);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006267 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07006268 goto out_drop;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006269 else if (!tso)
6270 ixgbe_tx_csum(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006271
6272 /* add the ATR filter if ATR is on */
6273 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
Alexander Duyck244e27a2012-02-08 07:51:11 +00006274 ixgbe_atr(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006275
6276#ifdef IXGBE_FCOE
6277xmit_fcoe:
6278#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006279 ixgbe_tx_map(tx_ring, first, hdr_len);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006280
6281 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006282
6283 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006284
6285out_drop:
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006286 dev_kfree_skb_any(first->skb);
6287 first->skb = NULL;
6288
Alexander Duyck897ab152011-05-27 05:31:47 +00006289 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07006290}
6291
Alexander Duycka50c29d2012-02-08 07:50:40 +00006292static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
6293 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07006294{
6295 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006296 struct ixgbe_ring *tx_ring;
Auke Kok9a799d72007-09-15 14:07:45 -07006297
Alexander Duycka50c29d2012-02-08 07:50:40 +00006298 if (skb->len <= 0) {
6299 dev_kfree_skb_any(skb);
6300 return NETDEV_TX_OK;
6301 }
6302
6303 /*
6304 * The minimum packet size for olinfo paylen is 17 so pad the skb
6305 * in order to meet this minimum size requirement.
6306 */
6307 if (skb->len < 17) {
6308 if (skb_padto(skb, 17))
6309 return NETDEV_TX_OK;
6310 skb->len = 17;
6311 }
6312
Auke Kok9a799d72007-09-15 14:07:45 -07006313 tx_ring = adapter->tx_ring[skb->queue_mapping];
6314 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
6315}
6316
6317/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006318 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Auke Kok9a799d72007-09-15 14:07:45 -07006319 * @netdev: network interface device structure
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006320 * @p: pointer to an address structure
6321 *
Auke Kok9a799d72007-09-15 14:07:45 -07006322 * Returns 0 on success, negative on failure
6323 **/
6324static int ixgbe_set_mac(struct net_device *netdev, void *p)
6325{
Ben Hutchings6b73e102009-04-29 08:08:58 +00006326 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6327 struct ixgbe_hw *hw = &adapter->hw;
6328 struct sockaddr *addr = p;
6329
6330 if (!is_valid_ether_addr(addr->sa_data))
6331 return -EADDRNOTAVAIL;
6332
6333 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
6334 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
6335
6336 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
6337 IXGBE_RAH_AV);
6338
6339 return 0;
6340}
6341
6342static int
6343ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6344{
6345 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6346 struct ixgbe_hw *hw = &adapter->hw;
6347 u16 value;
6348 int rc;
6349
6350 if (prtad != hw->phy.mdio.prtad)
6351 return -EINVAL;
6352 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6353 if (!rc)
6354 rc = value;
6355 return rc;
6356}
6357
6358static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6359 u16 addr, u16 value)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006360{
6361 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jiri Pirko31278e72009-06-17 01:12:19 +00006362 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006363
6364 if (prtad != hw->phy.mdio.prtad)
6365 return -EINVAL;
6366 return hw->phy.ops.write_reg(hw, addr, devad, value);
6367}
6368
6369static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6370{
6371 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6372
6373 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6374}
6375
6376/**
6377 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
6378 * netdev->dev_addrs
6379 * @netdev: network interface device structure
6380 *
6381 * Returns non-zero on failure
6382 **/
Jiri Pirko31278e72009-06-17 01:12:19 +00006383static int ixgbe_add_sanmac_netdev(struct net_device *dev)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006384{
6385 int err = 0;
6386 struct ixgbe_adapter *adapter = netdev_priv(dev);
6387 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6388
6389 if (is_valid_ether_addr(mac->san_addr)) {
6390 rtnl_lock();
6391 err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6392 rtnl_unlock();
6393 }
6394 return err;
6395}
6396
6397/**
6398 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
6399 * netdev->dev_addrs
6400 * @netdev: network interface device structure
6401 *
Auke Kok9a799d72007-09-15 14:07:45 -07006402 * Returns non-zero on failure
6403 **/
6404static int ixgbe_del_sanmac_netdev(struct net_device *dev)
6405{
6406 int err = 0;
6407 struct ixgbe_adapter *adapter = netdev_priv(dev);
6408 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6409
6410 if (is_valid_ether_addr(mac->san_addr)) {
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006411 rtnl_lock();
Auke Kok9a799d72007-09-15 14:07:45 -07006412 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
Alexander Duyck1a647bd2010-01-13 01:49:13 +00006413 rtnl_unlock();
6414 }
6415 return err;
6416}
Auke Kok9a799d72007-09-15 14:07:45 -07006417
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006418#ifdef CONFIG_NET_POLL_CONTROLLER
6419/*
6420 * Polling 'interrupt' - used by things like netconsole to send skbs
6421 * without having to re-enable interrupts. It's not called while
6422 * the interrupt routine is executing.
6423 */
6424static void ixgbe_netpoll(struct net_device *netdev)
6425{
6426 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006427 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07006428
6429 /* if interface is down do nothing */
6430 if (test_bit(__IXGBE_DOWN, &adapter->state))
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006431 return;
6432
6433 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Stephen Hemminger00829822008-11-20 20:14:53 -08006434 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006435 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Chris Leeche90d4002009-03-10 16:00:24 +00006436 for (i = 0; i < num_q_vectors; i++) {
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006437 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00006438 ixgbe_msix_clean_rings(0, q_vector);
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006439 }
6440 } else {
6441 ixgbe_intr(adapter->pdev->irq, netdev);
6442 }
6443 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
6444}
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006445
Alexander Duyck581330b2012-02-08 07:51:47 +00006446#endif
Eric Dumazetde1036b2010-10-20 23:00:04 +00006447static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
6448 struct rtnl_link_stats64 *stats)
6449{
6450 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6451 int i;
6452
Eric Dumazet1a515022010-11-16 19:26:42 -08006453 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006454 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08006455 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00006456 u64 bytes, packets;
6457 unsigned int start;
6458
Eric Dumazet1a515022010-11-16 19:26:42 -08006459 if (ring) {
6460 do {
6461 start = u64_stats_fetch_begin_bh(&ring->syncp);
6462 packets = ring->stats.packets;
6463 bytes = ring->stats.bytes;
6464 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6465 stats->rx_packets += packets;
6466 stats->rx_bytes += bytes;
6467 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00006468 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00006469
6470 for (i = 0; i < adapter->num_tx_queues; i++) {
6471 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
6472 u64 bytes, packets;
6473 unsigned int start;
6474
6475 if (ring) {
6476 do {
6477 start = u64_stats_fetch_begin_bh(&ring->syncp);
6478 packets = ring->stats.packets;
6479 bytes = ring->stats.bytes;
6480 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6481 stats->tx_packets += packets;
6482 stats->tx_bytes += bytes;
6483 }
6484 }
Eric Dumazet1a515022010-11-16 19:26:42 -08006485 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006486 /* following stats updated by ixgbe_watchdog_task() */
6487 stats->multicast = netdev->stats.multicast;
6488 stats->rx_errors = netdev->stats.rx_errors;
6489 stats->rx_length_errors = netdev->stats.rx_length_errors;
6490 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
6491 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
6492 return stats;
6493}
6494
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006495#ifdef CONFIG_IXGBE_DCB
John Fastabend8b1c0b22011-05-03 02:26:48 +00006496/* ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
6497 * #adapter: pointer to ixgbe_adapter
6498 * @tc: number of traffic classes currently enabled
6499 *
6500 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
6501 * 802.1Q priority maps to a packet buffer that exists.
6502 */
6503static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
6504{
6505 struct ixgbe_hw *hw = &adapter->hw;
6506 u32 reg, rsave;
6507 int i;
6508
6509 /* 82598 have a static priority to TC mapping that can not
6510 * be changed so no validation is needed.
6511 */
6512 if (hw->mac.type == ixgbe_mac_82598EB)
6513 return;
6514
6515 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
6516 rsave = reg;
6517
6518 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
6519 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
6520
6521 /* If up2tc is out of bounds default to zero */
6522 if (up2tc > tc)
6523 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
6524 }
6525
6526 if (reg != rsave)
6527 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
6528
6529 return;
6530}
6531
John Fastabend8b1c0b22011-05-03 02:26:48 +00006532/* ixgbe_setup_tc - routine to configure net_device for multiple traffic
6533 * classes.
6534 *
6535 * @netdev: net device to configure
6536 * @tc: number of traffic classes to enable
6537 */
6538int ixgbe_setup_tc(struct net_device *dev, u8 tc)
6539{
John Fastabend8b1c0b22011-05-03 02:26:48 +00006540 struct ixgbe_adapter *adapter = netdev_priv(dev);
6541 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00006542
John Fastabende7589ea2011-07-18 22:38:36 +00006543 /* Multiple traffic classes requires multiple queues */
6544 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
6545 e_err(drv, "Enable failed, needs MSI-X\n");
6546 return -EINVAL;
6547 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00006548
6549 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00006550 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
Alexander Duyck581330b2012-02-08 07:51:47 +00006551 (hw->mac.type == ixgbe_mac_82598EB &&
6552 tc < MAX_TRAFFIC_CLASS))
John Fastabend8b1c0b22011-05-03 02:26:48 +00006553 return -EINVAL;
6554
6555 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006556 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00006557 * hardware is not flexible enough to do this dynamically.
6558 */
6559 if (netif_running(dev))
6560 ixgbe_close(dev);
6561 ixgbe_clear_interrupt_scheme(adapter);
6562
John Fastabende7589ea2011-07-18 22:38:36 +00006563 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006564 netdev_set_num_tc(dev, tc);
John Fastabende7589ea2011-07-18 22:38:36 +00006565 adapter->last_lfc_mode = adapter->hw.fc.current_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006566 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
6567 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
6568
6569 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6570 adapter->hw.fc.requested_mode = ixgbe_fc_none;
6571 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006572 netdev_reset_tc(dev);
John Fastabende7589ea2011-07-18 22:38:36 +00006573 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
6574
6575 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
6576 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
6577
6578 adapter->temp_dcb_cfg.pfc_mode_enable = false;
6579 adapter->dcb_cfg.pfc_mode_enable = false;
6580 }
6581
John Fastabend8b1c0b22011-05-03 02:26:48 +00006582 ixgbe_init_interrupt_scheme(adapter);
6583 ixgbe_validate_rtr(adapter, tc);
6584 if (netif_running(dev))
6585 ixgbe_open(dev);
6586
6587 return 0;
6588}
Eric Dumazetde1036b2010-10-20 23:00:04 +00006589
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006590#endif /* CONFIG_IXGBE_DCB */
Don Skidmore082757a2011-07-21 05:55:00 +00006591void ixgbe_do_reset(struct net_device *netdev)
6592{
6593 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6594
6595 if (netif_running(netdev))
6596 ixgbe_reinit_locked(adapter);
6597 else
6598 ixgbe_reset(adapter);
6599}
6600
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006601static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006602 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006603{
6604 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6605
6606#ifdef CONFIG_DCB
6607 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED)
Alexander Duyck567d2de2012-02-11 07:18:57 +00006608 features &= ~NETIF_F_HW_VLAN_RX;
Don Skidmore082757a2011-07-21 05:55:00 +00006609#endif
6610
6611 /* return error if RXHASH is being enabled when RSS is not supported */
6612 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
Alexander Duyck567d2de2012-02-11 07:18:57 +00006613 features &= ~NETIF_F_RXHASH;
Don Skidmore082757a2011-07-21 05:55:00 +00006614
6615 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006616 if (!(features & NETIF_F_RXCSUM))
6617 features &= ~NETIF_F_LRO;
Don Skidmore082757a2011-07-21 05:55:00 +00006618
Alexander Duyck567d2de2012-02-11 07:18:57 +00006619 /* Turn off LRO if not RSC capable */
6620 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
6621 features &= ~NETIF_F_LRO;
6622
Don Skidmore082757a2011-07-21 05:55:00 +00006623
Alexander Duyck567d2de2012-02-11 07:18:57 +00006624 return features;
Don Skidmore082757a2011-07-21 05:55:00 +00006625}
6626
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006627static int ixgbe_set_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006628 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006629{
6630 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck567d2de2012-02-11 07:18:57 +00006631 netdev_features_t changed = netdev->features ^ features;
Don Skidmore082757a2011-07-21 05:55:00 +00006632 bool need_reset = false;
6633
Don Skidmore082757a2011-07-21 05:55:00 +00006634 /* Make sure RSC matches LRO, reset if change */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006635 if (!(features & NETIF_F_LRO)) {
6636 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Don Skidmore082757a2011-07-21 05:55:00 +00006637 need_reset = true;
Alexander Duyck567d2de2012-02-11 07:18:57 +00006638 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
6639 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
6640 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
6641 if (adapter->rx_itr_setting == 1 ||
6642 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
6643 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
6644 need_reset = true;
6645 } else if ((changed ^ features) & NETIF_F_LRO) {
6646 e_info(probe, "rx-usecs set too low, "
6647 "disabling RSC\n");
Don Skidmore082757a2011-07-21 05:55:00 +00006648 }
6649 }
6650
6651 /*
6652 * Check if Flow Director n-tuple support was enabled or disabled. If
6653 * the state changed, we need to reset.
6654 */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006655 if (!(features & NETIF_F_NTUPLE)) {
6656 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
6657 /* turn off Flow Director, set ATR and reset */
6658 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
6659 !(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
6660 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
Don Skidmore082757a2011-07-21 05:55:00 +00006661 need_reset = true;
6662 }
Don Skidmore082757a2011-07-21 05:55:00 +00006663 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
Alexander Duyck567d2de2012-02-11 07:18:57 +00006664 } else if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
6665 /* turn off ATR, enable perfect filters and reset */
6666 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
6667 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
Don Skidmore082757a2011-07-21 05:55:00 +00006668 need_reset = true;
6669 }
6670
Ben Greear3f2d1c02012-03-08 08:28:41 +00006671 if (changed & NETIF_F_RXALL)
6672 need_reset = true;
6673
Alexander Duyck567d2de2012-02-11 07:18:57 +00006674 netdev->features = features;
Don Skidmore082757a2011-07-21 05:55:00 +00006675 if (need_reset)
6676 ixgbe_do_reset(netdev);
6677
6678 return 0;
Don Skidmore082757a2011-07-21 05:55:00 +00006679}
6680
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006681static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00006682 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006683 .ndo_stop = ixgbe_close,
6684 .ndo_start_xmit = ixgbe_xmit_frame,
6685 .ndo_select_queue = ixgbe_select_queue,
Alexander Duyck581330b2012-02-08 07:51:47 +00006686 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006687 .ndo_validate_addr = eth_validate_addr,
6688 .ndo_set_mac_address = ixgbe_set_mac,
6689 .ndo_change_mtu = ixgbe_change_mtu,
6690 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006691 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
6692 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00006693 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00006694 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
6695 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
6696 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Alexander Duyck581330b2012-02-08 07:51:47 +00006697 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00006698 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00006699 .ndo_get_stats64 = ixgbe_get_stats64,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006700#ifdef CONFIG_IXGBE_DCB
John Fastabend24095aa2011-02-23 05:58:03 +00006701 .ndo_setup_tc = ixgbe_setup_tc,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006702#endif
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006703#ifdef CONFIG_NET_POLL_CONTROLLER
6704 .ndo_poll_controller = ixgbe_netpoll,
6705#endif
Yi Zou332d4a72009-05-13 13:11:53 +00006706#ifdef IXGBE_FCOE
6707 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00006708 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00006709 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00006710 .ndo_fcoe_enable = ixgbe_fcoe_enable,
6711 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00006712 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00006713 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00006714#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00006715 .ndo_set_features = ixgbe_set_features,
6716 .ndo_fix_features = ixgbe_fix_features,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006717};
6718
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006719static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006720 const struct ixgbe_info *ii)
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006721{
6722#ifdef CONFIG_PCI_IOV
6723 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006724
Greg Rosec6bda302011-08-24 02:37:55 +00006725 if (hw->mac.type == ixgbe_mac_82598EB)
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006726 return;
6727
6728 /* The 82599 supports up to 64 VFs per physical function
6729 * but this implementation limits allocation to 63 so that
6730 * basic networking resources are still available to the
6731 * physical function
6732 */
6733 adapter->num_vfs = (max_vfs > 63) ? 63 : max_vfs;
Greg Rosec6bda302011-08-24 02:37:55 +00006734 ixgbe_enable_sriov(adapter, ii);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006735#endif /* CONFIG_PCI_IOV */
6736}
6737
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006738/**
Auke Kok9a799d72007-09-15 14:07:45 -07006739 * ixgbe_probe - Device Initialization Routine
6740 * @pdev: PCI device information struct
6741 * @ent: entry in ixgbe_pci_tbl
6742 *
6743 * Returns 0 on success, negative on failure
6744 *
6745 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
6746 * The OS initialization, configuring of the adapter private structure,
6747 * and a hardware reset occur.
6748 **/
6749static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00006750 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07006751{
6752 struct net_device *netdev;
6753 struct ixgbe_adapter *adapter = NULL;
6754 struct ixgbe_hw *hw;
6755 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07006756 static int cards_found;
6757 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00006758 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00006759 unsigned int indices = num_possible_cpus();
Yi Zoueacd73f2009-05-13 13:11:06 +00006760#ifdef IXGBE_FCOE
6761 u16 device_caps;
6762#endif
Don Skidmore289700db2010-12-03 03:32:58 +00006763 u32 eec;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00006764 u16 wol_cap;
Auke Kok9a799d72007-09-15 14:07:45 -07006765
Andy Gospodarekbded64a2010-07-21 06:40:31 +00006766 /* Catch broken hardware that put the wrong VF device ID in
6767 * the PCIe SR-IOV capability.
6768 */
6769 if (pdev->is_virtfn) {
6770 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
6771 pci_name(pdev), pdev->vendor, pdev->device);
6772 return -EINVAL;
6773 }
6774
gouji-new9ce77662009-05-06 10:44:45 +00006775 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006776 if (err)
6777 return err;
6778
Nick Nunley1b507732010-04-27 13:10:27 +00006779 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
6780 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07006781 pci_using_dac = 1;
6782 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00006783 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07006784 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00006785 err = dma_set_coherent_mask(&pdev->dev,
6786 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07006787 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00006788 dev_err(&pdev->dev,
6789 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07006790 goto err_dma;
6791 }
6792 }
6793 pci_using_dac = 0;
6794 }
6795
gouji-new9ce77662009-05-06 10:44:45 +00006796 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00006797 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07006798 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00006799 dev_err(&pdev->dev,
6800 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07006801 goto err_pci_reg;
6802 }
6803
Frans Pop19d5afd2009-10-02 10:04:12 -07006804 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08006805
Auke Kok9a799d72007-09-15 14:07:45 -07006806 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07006807 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006808
John Fastabende901acd2011-04-26 07:26:08 +00006809#ifdef CONFIG_IXGBE_DCB
6810 indices *= MAX_TRAFFIC_CLASS;
6811#endif
6812
John Fastabendc85a2612010-02-25 23:15:21 +00006813 if (ii->mac == ixgbe_mac_82598EB)
6814 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
6815 else
6816 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
6817
John Fastabende901acd2011-04-26 07:26:08 +00006818#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00006819 indices += min_t(unsigned int, num_possible_cpus(),
6820 IXGBE_MAX_FCOE_INDICES);
6821#endif
John Fastabendc85a2612010-02-25 23:15:21 +00006822 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07006823 if (!netdev) {
6824 err = -ENOMEM;
6825 goto err_alloc_etherdev;
6826 }
6827
Auke Kok9a799d72007-09-15 14:07:45 -07006828 SET_NETDEV_DEV(netdev, &pdev->dev);
6829
Auke Kok9a799d72007-09-15 14:07:45 -07006830 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08006831 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006832
6833 adapter->netdev = netdev;
6834 adapter->pdev = pdev;
6835 hw = &adapter->hw;
6836 hw->back = adapter;
6837 adapter->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
6838
Jeff Kirsher05857982008-09-11 19:57:00 -07006839 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00006840 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07006841 if (!hw->hw_addr) {
6842 err = -EIO;
6843 goto err_ioremap;
6844 }
6845
6846 for (i = 1; i <= 5; i++) {
6847 if (pci_resource_len(pdev, i) == 0)
6848 continue;
6849 }
6850
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006851 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07006852 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006853 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00006854 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07006855
Auke Kok9a799d72007-09-15 14:07:45 -07006856 adapter->bd_number = cards_found;
6857
Auke Kok9a799d72007-09-15 14:07:45 -07006858 /* Setup hw api */
6859 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08006860 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07006861
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006862 /* EEPROM */
6863 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
6864 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
6865 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
6866 if (!(eec & (1 << 8)))
6867 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
6868
6869 /* PHY */
6870 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08006871 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00006872 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
6873 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
6874 hw->phy.mdio.mmds = 0;
6875 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
6876 hw->phy.mdio.dev = netdev;
6877 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
6878 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08006879
Don Skidmore8ca783a2009-05-26 20:40:47 -07006880 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07006881
6882 /* setup the private structure */
6883 err = ixgbe_sw_init(adapter);
6884 if (err)
6885 goto err_sw_init;
6886
Don Skidmoree86bff02010-02-11 04:14:08 +00006887 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08006888 switch (adapter->hw.mac.type) {
6889 case ixgbe_mac_82599EB:
6890 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00006891 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08006892 break;
6893 default:
6894 break;
6895 }
Don Skidmoree86bff02010-02-11 04:14:08 +00006896
Don Skidmorebf069c92009-05-07 10:39:54 +00006897 /*
6898 * If there is a fan on this device and it has failed log the
6899 * failure.
6900 */
6901 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
6902 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
6903 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00006904 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00006905 }
6906
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00006907 if (allow_unsupported_sfp)
6908 hw->allow_unsupported_sfp = allow_unsupported_sfp;
6909
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006910 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07006911 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006912 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07006913 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07006914 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
6915 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07006916 err = 0;
6917 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00006918 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00006919 "module type was detected.\n");
6920 e_dev_err("Reload the driver after installing a supported "
6921 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00006922 goto err_sw_init;
6923 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00006924 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006925 goto err_sw_init;
6926 }
6927
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006928 ixgbe_probe_vf(adapter, ii);
6929
Emil Tantilov396e7992010-07-01 20:05:12 +00006930 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00006931 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00006932 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00006933 NETIF_F_HW_VLAN_TX |
6934 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00006935 NETIF_F_HW_VLAN_FILTER |
6936 NETIF_F_TSO |
6937 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00006938 NETIF_F_RXHASH |
6939 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07006940
Don Skidmore082757a2011-07-21 05:55:00 +00006941 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07006942
Don Skidmore58be7662011-04-12 09:42:11 +00006943 switch (adapter->hw.mac.type) {
6944 case ixgbe_mac_82599EB:
6945 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00006946 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00006947 netdev->hw_features |= NETIF_F_SCTP_CSUM |
6948 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00006949 break;
6950 default:
6951 break;
6952 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00006953
Ben Greear3f2d1c02012-03-08 08:28:41 +00006954 netdev->hw_features |= NETIF_F_RXALL;
6955
Jeff Kirsherad31c402008-06-05 04:05:30 -07006956 netdev->vlan_features |= NETIF_F_TSO;
6957 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07006958 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00006959 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07006960 netdev->vlan_features |= NETIF_F_SG;
6961
Jiri Pirko01789342011-08-16 06:29:00 +00006962 netdev->priv_flags |= IFF_UNICAST_FLT;
Ben Greearf43f3132012-03-06 09:42:04 +00006963 netdev->priv_flags |= IFF_SUPP_NOFCS;
Jiri Pirko01789342011-08-16 06:29:00 +00006964
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006965 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6966 adapter->flags &= ~(IXGBE_FLAG_RSS_ENABLED |
6967 IXGBE_FLAG_DCB_ENABLED);
Alexander Duyck2f90b862008-11-20 20:52:10 -08006968
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08006969#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08006970 netdev->dcbnl_ops = &dcbnl_ops;
6971#endif
6972
Yi Zoueacd73f2009-05-13 13:11:06 +00006973#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00006974 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00006975 if (hw->mac.ops.get_device_caps) {
6976 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00006977 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
6978 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00006979 }
6980 }
Yi Zou5e09d7f2010-07-19 13:59:52 +00006981 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
6982 netdev->vlan_features |= NETIF_F_FCOE_CRC;
6983 netdev->vlan_features |= NETIF_F_FSO;
6984 netdev->vlan_features |= NETIF_F_FCOE_MTU;
6985 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006986#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00006987 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07006988 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00006989 netdev->vlan_features |= NETIF_F_HIGHDMA;
6990 }
Auke Kok9a799d72007-09-15 14:07:45 -07006991
Don Skidmore082757a2011-07-21 05:55:00 +00006992 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
6993 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00006994 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00006995 netdev->features |= NETIF_F_LRO;
6996
Auke Kok9a799d72007-09-15 14:07:45 -07006997 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006998 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00006999 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007000 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007001 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007002 }
7003
7004 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7005 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7006
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007007 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007008 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007009 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007010 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007011 }
7012
Alexander Duyck70864002011-04-27 09:13:56 +00007013 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
Alexander Duyck581330b2012-02-08 07:51:47 +00007014 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007015
Alexander Duyck70864002011-04-27 09:13:56 +00007016 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7017 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007018
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007019 err = ixgbe_init_interrupt_scheme(adapter);
7020 if (err)
7021 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007022
Don Skidmore082757a2011-07-21 05:55:00 +00007023 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
7024 netdev->hw_features &= ~NETIF_F_RXHASH;
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007025 netdev->features &= ~NETIF_F_RXHASH;
Don Skidmore082757a2011-07-21 05:55:00 +00007026 }
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007027
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007028 /* WOL not supported for all but the following */
7029 adapter->wol = 0;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007030 switch (pdev->device) {
Don Skidmore0b077fe2010-12-03 03:32:13 +00007031 case IXGBE_DEV_ID_82599_SFP:
Don Skidmore0e22d042011-12-10 06:49:43 +00007032 /* Only these subdevice supports WOL */
7033 switch (pdev->subsystem_device) {
7034 case IXGBE_SUBDEV_ID_82599_560FLR:
7035 /* only support first port */
7036 if (hw->bus.func != 0)
7037 break;
7038 case IXGBE_SUBDEV_ID_82599_SFP:
Andy Gospodarek9417c462011-07-16 07:31:33 +00007039 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0e22d042011-12-10 06:49:43 +00007040 break;
7041 }
Don Skidmore0b077fe2010-12-03 03:32:13 +00007042 break;
Alexander Duyck50d6c682010-11-16 19:27:05 -08007043 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7044 /* All except this subdevice support WOL */
Don Skidmore0b077fe2010-12-03 03:32:13 +00007045 if (pdev->subsystem_device != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
Andy Gospodarek9417c462011-07-16 07:31:33 +00007046 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0b077fe2010-12-03 03:32:13 +00007047 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007048 case IXGBE_DEV_ID_82599_KX4:
Andy Gospodarek9417c462011-07-16 07:31:33 +00007049 adapter->wol = IXGBE_WUFC_MAG;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007050 break;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007051 case IXGBE_DEV_ID_X540T:
7052 /* Check eeprom to see if it is enabled */
7053 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
7054 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
7055
7056 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
7057 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7058 (hw->bus.func == 0)))
7059 adapter->wol = IXGBE_WUFC_MAG;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007060 break;
7061 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007062 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7063
Emil Tantilov15e52092011-09-29 05:01:29 +00007064 /* save off EEPROM version number */
7065 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
7066 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
7067
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007068 /* pick up the PCI bus settings for reporting later */
7069 hw->mac.ops.get_bus_info(hw);
7070
Auke Kok9a799d72007-09-15 14:07:45 -07007071 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007072 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007073 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7074 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007075 "Unknown"),
7076 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7077 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7078 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7079 "Unknown"),
7080 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007081
7082 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7083 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007084 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007085 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007086 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007087 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007088 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007089 else
Don Skidmore289700db2010-12-03 03:32:58 +00007090 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7091 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007092
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007093 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007094 e_dev_warn("PCI-Express bandwidth available for this card is "
7095 "not sufficient for optimal performance.\n");
7096 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7097 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007098 }
7099
Auke Kok9a799d72007-09-15 14:07:45 -07007100 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007101 err = hw->mac.ops.start_hw(hw);
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007102 if (err == IXGBE_ERR_EEPROM_VERSION) {
7103 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007104 e_dev_warn("This device is a pre-production adapter/LOM. "
7105 "Please be aware there may be issues associated "
7106 "with your hardware. If you are experiencing "
7107 "problems please contact your Intel or hardware "
7108 "representative who provided you with this "
7109 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007110 }
Auke Kok9a799d72007-09-15 14:07:45 -07007111 strcpy(netdev->name, "eth%d");
7112 err = register_netdev(netdev);
7113 if (err)
7114 goto err_register;
7115
Emil Tantilov93d3ce82011-10-19 07:59:55 +00007116 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7117 if (hw->mac.ops.disable_tx_laser &&
7118 ((hw->phy.multispeed_fiber) ||
7119 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
7120 (hw->mac.type == ixgbe_mac_82599EB))))
7121 hw->mac.ops.disable_tx_laser(hw);
7122
Jesse Brandeburg54386462009-04-17 20:44:27 +00007123 /* carrier off reporting is important to ethtool even BEFORE open */
7124 netif_carrier_off(netdev);
7125
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007126#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007127 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007128 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007129 ixgbe_setup_dca(adapter);
7130 }
7131#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007132 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007133 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007134 for (i = 0; i < adapter->num_vfs; i++)
7135 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7136 }
7137
Jacob Keller2466dd92011-09-08 03:50:54 +00007138 /* firmware requires driver version to be 0xFFFFFFFF
7139 * since os does not support feature
7140 */
Emil Tantilov9612de92011-05-07 07:40:20 +00007141 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00007142 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
7143 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00007144
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007145 /* add san mac addr to netdev */
7146 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007147
Neerav Parikhea818752012-01-04 20:23:40 +00007148 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07007149 cards_found++;
7150 return 0;
7151
7152err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007153 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007154 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007155err_sw_init:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007156 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7157 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007158 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007159 iounmap(hw->hw_addr);
7160err_ioremap:
7161 free_netdev(netdev);
7162err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007163 pci_release_selected_regions(pdev,
7164 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007165err_pci_reg:
7166err_dma:
7167 pci_disable_device(pdev);
7168 return err;
7169}
7170
7171/**
7172 * ixgbe_remove - Device Removal Routine
7173 * @pdev: PCI device information struct
7174 *
7175 * ixgbe_remove is called by the PCI subsystem to alert the driver
7176 * that it should release a PCI device. The could be caused by a
7177 * Hot-Plug event, or because the driver is going to be removed from
7178 * memory.
7179 **/
7180static void __devexit ixgbe_remove(struct pci_dev *pdev)
7181{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007182 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7183 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007184
7185 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007186 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007187
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007188#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007189 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7190 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7191 dca_remove_requester(&pdev->dev);
7192 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7193 }
7194
7195#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007196#ifdef IXGBE_FCOE
7197 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
7198 ixgbe_cleanup_fcoe(adapter);
7199
7200#endif /* IXGBE_FCOE */
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007201
7202 /* remove the added san mac */
7203 ixgbe_del_sanmac_netdev(netdev);
7204
Donald Skidmorec4900be2008-11-20 21:11:42 -08007205 if (netdev->reg_state == NETREG_REGISTERED)
7206 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007207
Greg Rosec6bda302011-08-24 02:37:55 +00007208 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
7209 if (!(ixgbe_check_vf_assignment(adapter)))
7210 ixgbe_disable_sriov(adapter);
7211 else
7212 e_dev_warn("Unloading driver while VFs are assigned "
7213 "- VFs will not be deallocated\n");
7214 }
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007215
Alexander Duyck7a921c92009-05-06 10:43:28 +00007216 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007217
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007218 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007219
7220 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007221 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007222 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007223
Emil Tantilov849c4542010-06-03 16:53:41 +00007224 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007225
Auke Kok9a799d72007-09-15 14:07:45 -07007226 free_netdev(netdev);
7227
Frans Pop19d5afd2009-10-02 10:04:12 -07007228 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007229
Auke Kok9a799d72007-09-15 14:07:45 -07007230 pci_disable_device(pdev);
7231}
7232
7233/**
7234 * ixgbe_io_error_detected - called when PCI error is detected
7235 * @pdev: Pointer to PCI device
7236 * @state: The current pci connection state
7237 *
7238 * This function is called after a PCI bus error affecting
7239 * this device has been detected.
7240 */
7241static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007242 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007243{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007244 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7245 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007246
Greg Rose83c61fa2011-09-07 05:59:35 +00007247#ifdef CONFIG_PCI_IOV
7248 struct pci_dev *bdev, *vfdev;
7249 u32 dw0, dw1, dw2, dw3;
7250 int vf, pos;
7251 u16 req_id, pf_func;
7252
7253 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
7254 adapter->num_vfs == 0)
7255 goto skip_bad_vf_detection;
7256
7257 bdev = pdev->bus->self;
7258 while (bdev && (bdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT))
7259 bdev = bdev->bus->self;
7260
7261 if (!bdev)
7262 goto skip_bad_vf_detection;
7263
7264 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
7265 if (!pos)
7266 goto skip_bad_vf_detection;
7267
7268 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
7269 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
7270 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
7271 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
7272
7273 req_id = dw1 >> 16;
7274 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
7275 if (!(req_id & 0x0080))
7276 goto skip_bad_vf_detection;
7277
7278 pf_func = req_id & 0x01;
7279 if ((pf_func & 1) == (pdev->devfn & 1)) {
7280 unsigned int device_id;
7281
7282 vf = (req_id & 0x7F) >> 1;
7283 e_dev_err("VF %d has caused a PCIe error\n", vf);
7284 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
7285 "%8.8x\tdw3: %8.8x\n",
7286 dw0, dw1, dw2, dw3);
7287 switch (adapter->hw.mac.type) {
7288 case ixgbe_mac_82599EB:
7289 device_id = IXGBE_82599_VF_DEVICE_ID;
7290 break;
7291 case ixgbe_mac_X540:
7292 device_id = IXGBE_X540_VF_DEVICE_ID;
7293 break;
7294 default:
7295 device_id = 0;
7296 break;
7297 }
7298
7299 /* Find the pci device of the offending VF */
7300 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID, device_id, NULL);
7301 while (vfdev) {
7302 if (vfdev->devfn == (req_id & 0xFF))
7303 break;
7304 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID,
7305 device_id, vfdev);
7306 }
7307 /*
7308 * There's a slim chance the VF could have been hot plugged,
7309 * so if it is no longer present we don't need to issue the
7310 * VFLR. Just clean up the AER in that case.
7311 */
7312 if (vfdev) {
7313 e_dev_err("Issuing VFLR to VF %d\n", vf);
7314 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
7315 }
7316
7317 pci_cleanup_aer_uncorrect_error_status(pdev);
7318 }
7319
7320 /*
7321 * Even though the error may have occurred on the other port
7322 * we still need to increment the vf error reference count for
7323 * both ports because the I/O resume function will be called
7324 * for both of them.
7325 */
7326 adapter->vferr_refcount++;
7327
7328 return PCI_ERS_RESULT_RECOVERED;
7329
7330skip_bad_vf_detection:
7331#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07007332 netif_device_detach(netdev);
7333
Breno Leitao3044b8d2009-05-06 10:44:26 +00007334 if (state == pci_channel_io_perm_failure)
7335 return PCI_ERS_RESULT_DISCONNECT;
7336
Auke Kok9a799d72007-09-15 14:07:45 -07007337 if (netif_running(netdev))
7338 ixgbe_down(adapter);
7339 pci_disable_device(pdev);
7340
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007341 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007342 return PCI_ERS_RESULT_NEED_RESET;
7343}
7344
7345/**
7346 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7347 * @pdev: Pointer to PCI device
7348 *
7349 * Restart the card from scratch, as if from a cold-boot.
7350 */
7351static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7352{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007353 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007354 pci_ers_result_t result;
7355 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007356
gouji-new9ce77662009-05-06 10:44:45 +00007357 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007358 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007359 result = PCI_ERS_RESULT_DISCONNECT;
7360 } else {
7361 pci_set_master(pdev);
7362 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007363 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007364
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007365 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007366
7367 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007368 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007369 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007370 }
Auke Kok9a799d72007-09-15 14:07:45 -07007371
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007372 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7373 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007374 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7375 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007376 /* non-fatal, continue */
7377 }
Auke Kok9a799d72007-09-15 14:07:45 -07007378
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007379 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007380}
7381
7382/**
7383 * ixgbe_io_resume - called when traffic can start flowing again.
7384 * @pdev: Pointer to PCI device
7385 *
7386 * This callback is called when the error recovery driver tells us that
7387 * its OK to resume normal operation.
7388 */
7389static void ixgbe_io_resume(struct pci_dev *pdev)
7390{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007391 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7392 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007393
Greg Rose83c61fa2011-09-07 05:59:35 +00007394#ifdef CONFIG_PCI_IOV
7395 if (adapter->vferr_refcount) {
7396 e_info(drv, "Resuming after VF err\n");
7397 adapter->vferr_refcount--;
7398 return;
7399 }
7400
7401#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00007402 if (netif_running(netdev))
7403 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007404
7405 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007406}
7407
7408static struct pci_error_handlers ixgbe_err_handler = {
7409 .error_detected = ixgbe_io_error_detected,
7410 .slot_reset = ixgbe_io_slot_reset,
7411 .resume = ixgbe_io_resume,
7412};
7413
7414static struct pci_driver ixgbe_driver = {
7415 .name = ixgbe_driver_name,
7416 .id_table = ixgbe_pci_tbl,
7417 .probe = ixgbe_probe,
7418 .remove = __devexit_p(ixgbe_remove),
7419#ifdef CONFIG_PM
7420 .suspend = ixgbe_suspend,
7421 .resume = ixgbe_resume,
7422#endif
7423 .shutdown = ixgbe_shutdown,
7424 .err_handler = &ixgbe_err_handler
7425};
7426
7427/**
7428 * ixgbe_init_module - Driver Registration Routine
7429 *
7430 * ixgbe_init_module is the first routine called when the driver is
7431 * loaded. All it does is register with the PCI subsystem.
7432 **/
7433static int __init ixgbe_init_module(void)
7434{
7435 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007436 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007437 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007438
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007439#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007440 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007441#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007442
Auke Kok9a799d72007-09-15 14:07:45 -07007443 ret = pci_register_driver(&ixgbe_driver);
7444 return ret;
7445}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007446
Auke Kok9a799d72007-09-15 14:07:45 -07007447module_init(ixgbe_init_module);
7448
7449/**
7450 * ixgbe_exit_module - Driver Exit Cleanup Routine
7451 *
7452 * ixgbe_exit_module is called just before the driver is removed
7453 * from memory.
7454 **/
7455static void __exit ixgbe_exit_module(void)
7456{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007457#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007458 dca_unregister_notify(&dca_notifier);
7459#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007460 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08007461 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007462}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007463
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007464#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007465static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007466 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007467{
7468 int ret_val;
7469
7470 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007471 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007472
7473 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7474}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007475
Alexander Duyckb4533682009-03-31 21:32:42 +00007476#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007477
Auke Kok9a799d72007-09-15 14:07:45 -07007478module_exit(ixgbe_exit_module);
7479
7480/* ixgbe_main.c */