blob: fee0f8c7804130ae9e71cbb718348c41fc186049 [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>
John Fastabend815cccb2012-10-24 08:13:09 +000047#include <linux/if_bridge.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040048#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000049#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070050
51#include "ixgbe.h"
52#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000053#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000054#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070055
56char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070057static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000058 "Intel(R) 10 Gigabit PCI Express Network Driver";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000059#ifdef IXGBE_FCOE
Neerav Parikhea818752012-01-04 20:23:40 +000060char ixgbe_default_device_descr[] =
61 "Intel(R) 10 Gigabit Network Connection";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000062#else
63static char ixgbe_default_device_descr[] =
64 "Intel(R) 10 Gigabit Network Connection";
65#endif
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000066#define MAJ 3
Don Skidmoreeef45602012-04-28 03:29:22 +000067#define MIN 9
68#define BUILD 15
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000069#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
Don Skidmorea38a1042011-05-20 03:05:14 +000070 __stringify(BUILD) "-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070071const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000072static const char ixgbe_copyright[] =
Don Skidmore94971822012-01-06 03:24:16 +000073 "Copyright (c) 1999-2012 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070074
75static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070076 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000077 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e12010-11-16 19:27:16 -080078 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070079};
80
81/* ixgbe_pci_tbl - PCI Device ID Table
82 *
83 * Wildcard entries (PCI_ANY_ID) should come last
84 * Last entry must be all 0s
85 *
86 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
87 * Class, Class Mask, private data (not used) }
88 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000089static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Alexander Duyck54239c62011-07-15 03:06:06 +000090 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
91 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
92 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
93 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
94 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
95 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
96 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
97 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
98 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
99 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
112 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
113 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
114 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
115 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
Emil Tantilov7d145282011-09-08 08:30:14 +0000116 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
Emil Tantilov9e791e42011-11-04 06:43:29 +0000117 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
joshua.a.hay@intel.comdf376f02012-09-21 00:08:21 +0000118 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T1), board_X540 },
Auke Kok9a799d72007-09-15 14:07:45 -0700119 /* required last entry */
120 {0, }
121};
122MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
123
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400124#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800125static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000126 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800127static struct notifier_block dca_notifier = {
128 .notifier_call = ixgbe_notify_dca,
129 .next = NULL,
130 .priority = 0
131};
132#endif
133
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000134#ifdef CONFIG_PCI_IOV
135static unsigned int max_vfs;
136module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000137MODULE_PARM_DESC(max_vfs,
Greg Rose6b42a9c2012-04-17 04:29:29 +0000138 "Maximum number of virtual functions to allocate per physical function - default is zero and maximum value is 63");
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000139#endif /* CONFIG_PCI_IOV */
140
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000141static unsigned int allow_unsupported_sfp;
142module_param(allow_unsupported_sfp, uint, 0);
143MODULE_PARM_DESC(allow_unsupported_sfp,
144 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
145
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000146#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
147static int debug = -1;
148module_param(debug, int, 0);
149MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
150
Auke Kok9a799d72007-09-15 14:07:45 -0700151MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
152MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
153MODULE_LICENSE("GPL");
154MODULE_VERSION(DRV_VERSION);
155
Alexander Duyck70864002011-04-27 09:13:56 +0000156static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
157{
158 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
159 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
160 schedule_work(&adapter->service_task);
161}
162
163static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
164{
165 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
166
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000167 /* flush memory to make sure state is correct before next watchdog */
Alexander Duyck70864002011-04-27 09:13:56 +0000168 smp_mb__before_clear_bit();
169 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
170}
171
Taku Izumidcd79ae2010-04-27 14:39:53 +0000172struct ixgbe_reg_info {
173 u32 ofs;
174 char *name;
175};
176
177static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
178
179 /* General Registers */
180 {IXGBE_CTRL, "CTRL"},
181 {IXGBE_STATUS, "STATUS"},
182 {IXGBE_CTRL_EXT, "CTRL_EXT"},
183
184 /* Interrupt Registers */
185 {IXGBE_EICR, "EICR"},
186
187 /* RX Registers */
188 {IXGBE_SRRCTL(0), "SRRCTL"},
189 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
190 {IXGBE_RDLEN(0), "RDLEN"},
191 {IXGBE_RDH(0), "RDH"},
192 {IXGBE_RDT(0), "RDT"},
193 {IXGBE_RXDCTL(0), "RXDCTL"},
194 {IXGBE_RDBAL(0), "RDBAL"},
195 {IXGBE_RDBAH(0), "RDBAH"},
196
197 /* TX Registers */
198 {IXGBE_TDBAL(0), "TDBAL"},
199 {IXGBE_TDBAH(0), "TDBAH"},
200 {IXGBE_TDLEN(0), "TDLEN"},
201 {IXGBE_TDH(0), "TDH"},
202 {IXGBE_TDT(0), "TDT"},
203 {IXGBE_TXDCTL(0), "TXDCTL"},
204
205 /* List Terminator */
206 {}
207};
208
209
210/*
211 * ixgbe_regdump - register printout routine
212 */
213static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
214{
215 int i = 0, j = 0;
216 char rname[16];
217 u32 regs[64];
218
219 switch (reginfo->ofs) {
220 case IXGBE_SRRCTL(0):
221 for (i = 0; i < 64; i++)
222 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
223 break;
224 case IXGBE_DCA_RXCTRL(0):
225 for (i = 0; i < 64; i++)
226 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
227 break;
228 case IXGBE_RDLEN(0):
229 for (i = 0; i < 64; i++)
230 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
231 break;
232 case IXGBE_RDH(0):
233 for (i = 0; i < 64; i++)
234 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
235 break;
236 case IXGBE_RDT(0):
237 for (i = 0; i < 64; i++)
238 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
239 break;
240 case IXGBE_RXDCTL(0):
241 for (i = 0; i < 64; i++)
242 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
243 break;
244 case IXGBE_RDBAL(0):
245 for (i = 0; i < 64; i++)
246 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
247 break;
248 case IXGBE_RDBAH(0):
249 for (i = 0; i < 64; i++)
250 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
251 break;
252 case IXGBE_TDBAL(0):
253 for (i = 0; i < 64; i++)
254 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
255 break;
256 case IXGBE_TDBAH(0):
257 for (i = 0; i < 64; i++)
258 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
259 break;
260 case IXGBE_TDLEN(0):
261 for (i = 0; i < 64; i++)
262 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
263 break;
264 case IXGBE_TDH(0):
265 for (i = 0; i < 64; i++)
266 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
267 break;
268 case IXGBE_TDT(0):
269 for (i = 0; i < 64; i++)
270 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
271 break;
272 case IXGBE_TXDCTL(0):
273 for (i = 0; i < 64; i++)
274 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
275 break;
276 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000277 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000278 IXGBE_READ_REG(hw, reginfo->ofs));
279 return;
280 }
281
282 for (i = 0; i < 8; i++) {
283 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000284 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000285 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000286 pr_cont(" %08x", regs[i*8+j]);
287 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000288 }
289
290}
291
292/*
293 * ixgbe_dump - Print registers, tx-rings and rx-rings
294 */
295static void ixgbe_dump(struct ixgbe_adapter *adapter)
296{
297 struct net_device *netdev = adapter->netdev;
298 struct ixgbe_hw *hw = &adapter->hw;
299 struct ixgbe_reg_info *reginfo;
300 int n = 0;
301 struct ixgbe_ring *tx_ring;
Alexander Duyck729739b2012-02-08 07:51:06 +0000302 struct ixgbe_tx_buffer *tx_buffer;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000303 union ixgbe_adv_tx_desc *tx_desc;
304 struct my_u0 { u64 a; u64 b; } *u0;
305 struct ixgbe_ring *rx_ring;
306 union ixgbe_adv_rx_desc *rx_desc;
307 struct ixgbe_rx_buffer *rx_buffer_info;
308 u32 staterr;
309 int i = 0;
310
311 if (!netif_msg_hw(adapter))
312 return;
313
314 /* Print netdevice Info */
315 if (netdev) {
316 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000317 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000318 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000319 pr_info("%-15s %016lX %016lX %016lX\n",
320 netdev->name,
321 netdev->state,
322 netdev->trans_start,
323 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000324 }
325
326 /* Print Registers */
327 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000328 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000329 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
330 reginfo->name; reginfo++) {
331 ixgbe_regdump(hw, reginfo);
332 }
333
334 /* Print TX Ring Summary */
335 if (!netdev || !netif_running(netdev))
336 goto exit;
337
338 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000339 pr_info(" %s %s %s %s\n",
340 "Queue [NTU] [NTC] [bi(ntc)->dma ]",
341 "leng", "ntw", "timestamp");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000342 for (n = 0; n < adapter->num_tx_queues; n++) {
343 tx_ring = adapter->tx_ring[n];
Alexander Duyck729739b2012-02-08 07:51:06 +0000344 tx_buffer = &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Josh Hay8ad88e32012-09-26 05:59:41 +0000345 pr_info(" %5d %5X %5X %016llX %08X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000346 n, tx_ring->next_to_use, tx_ring->next_to_clean,
Alexander Duyck729739b2012-02-08 07:51:06 +0000347 (u64)dma_unmap_addr(tx_buffer, dma),
348 dma_unmap_len(tx_buffer, len),
349 tx_buffer->next_to_watch,
350 (u64)tx_buffer->time_stamp);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000351 }
352
353 /* Print TX Rings */
354 if (!netif_msg_tx_done(adapter))
355 goto rx_ring_summary;
356
357 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
358
359 /* Transmit Descriptor Formats
360 *
Josh Hay39ac8682012-09-26 05:59:36 +0000361 * 82598 Advanced Transmit Descriptor
Taku Izumidcd79ae2010-04-27 14:39:53 +0000362 * +--------------------------------------------------------------+
363 * 0 | Buffer Address [63:0] |
364 * +--------------------------------------------------------------+
Josh Hay39ac8682012-09-26 05:59:36 +0000365 * 8 | PAYLEN | POPTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
Taku Izumidcd79ae2010-04-27 14:39:53 +0000366 * +--------------------------------------------------------------+
367 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
Josh Hay39ac8682012-09-26 05:59:36 +0000368 *
369 * 82598 Advanced Transmit Descriptor (Write-Back Format)
370 * +--------------------------------------------------------------+
371 * 0 | RSV [63:0] |
372 * +--------------------------------------------------------------+
373 * 8 | RSV | STA | NXTSEQ |
374 * +--------------------------------------------------------------+
375 * 63 36 35 32 31 0
376 *
377 * 82599+ Advanced Transmit Descriptor
378 * +--------------------------------------------------------------+
379 * 0 | Buffer Address [63:0] |
380 * +--------------------------------------------------------------+
381 * 8 |PAYLEN |POPTS|CC|IDX |STA |DCMD |DTYP |MAC |RSV |DTALEN |
382 * +--------------------------------------------------------------+
383 * 63 46 45 40 39 38 36 35 32 31 24 23 20 19 18 17 16 15 0
384 *
385 * 82599+ Advanced Transmit Descriptor (Write-Back Format)
386 * +--------------------------------------------------------------+
387 * 0 | RSV [63:0] |
388 * +--------------------------------------------------------------+
389 * 8 | RSV | STA | RSV |
390 * +--------------------------------------------------------------+
391 * 63 36 35 32 31 0
Taku Izumidcd79ae2010-04-27 14:39:53 +0000392 */
393
394 for (n = 0; n < adapter->num_tx_queues; n++) {
395 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000396 pr_info("------------------------------------\n");
397 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
398 pr_info("------------------------------------\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000399 pr_info("%s%s %s %s %s %s\n",
400 "T [desc] [address 63:0 ] ",
401 "[PlPOIdStDDt Ln] [bi->dma ] ",
402 "leng", "ntw", "timestamp", "bi->skb");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000403
404 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duycke4f74022012-01-31 02:59:44 +0000405 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000406 tx_buffer = &tx_ring->tx_buffer_info[i];
Taku Izumidcd79ae2010-04-27 14:39:53 +0000407 u0 = (struct my_u0 *)tx_desc;
Josh Hay8ad88e32012-09-26 05:59:41 +0000408 if (dma_unmap_len(tx_buffer, len) > 0) {
409 pr_info("T [0x%03X] %016llX %016llX %016llX %08X %p %016llX %p",
410 i,
411 le64_to_cpu(u0->a),
412 le64_to_cpu(u0->b),
413 (u64)dma_unmap_addr(tx_buffer, dma),
Alexander Duyck729739b2012-02-08 07:51:06 +0000414 dma_unmap_len(tx_buffer, len),
Josh Hay8ad88e32012-09-26 05:59:41 +0000415 tx_buffer->next_to_watch,
416 (u64)tx_buffer->time_stamp,
417 tx_buffer->skb);
418 if (i == tx_ring->next_to_use &&
419 i == tx_ring->next_to_clean)
420 pr_cont(" NTC/U\n");
421 else if (i == tx_ring->next_to_use)
422 pr_cont(" NTU\n");
423 else if (i == tx_ring->next_to_clean)
424 pr_cont(" NTC\n");
425 else
426 pr_cont("\n");
427
428 if (netif_msg_pktdata(adapter) &&
429 tx_buffer->skb)
430 print_hex_dump(KERN_INFO, "",
431 DUMP_PREFIX_ADDRESS, 16, 1,
432 tx_buffer->skb->data,
433 dma_unmap_len(tx_buffer, len),
434 true);
435 }
Taku Izumidcd79ae2010-04-27 14:39:53 +0000436 }
437 }
438
439 /* Print RX Rings Summary */
440rx_ring_summary:
441 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000442 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000443 for (n = 0; n < adapter->num_rx_queues; n++) {
444 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000445 pr_info("%5d %5X %5X\n",
446 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000447 }
448
449 /* Print RX Rings */
450 if (!netif_msg_rx_status(adapter))
451 goto exit;
452
453 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
454
Josh Hay39ac8682012-09-26 05:59:36 +0000455 /* Receive Descriptor Formats
456 *
457 * 82598 Advanced Receive Descriptor (Read) Format
Taku Izumidcd79ae2010-04-27 14:39:53 +0000458 * 63 1 0
459 * +-----------------------------------------------------+
460 * 0 | Packet Buffer Address [63:1] |A0/NSE|
461 * +----------------------------------------------+------+
462 * 8 | Header Buffer Address [63:1] | DD |
463 * +-----------------------------------------------------+
464 *
465 *
Josh Hay39ac8682012-09-26 05:59:36 +0000466 * 82598 Advanced Receive Descriptor (Write-Back) Format
Taku Izumidcd79ae2010-04-27 14:39:53 +0000467 *
468 * 63 48 47 32 31 30 21 20 16 15 4 3 0
469 * +------------------------------------------------------+
Josh Hay39ac8682012-09-26 05:59:36 +0000470 * 0 | RSS Hash / |SPH| HDR_LEN | RSV |Packet| RSS |
471 * | Packet | IP | | | | Type | Type |
472 * | Checksum | Ident | | | | | |
Taku Izumidcd79ae2010-04-27 14:39:53 +0000473 * +------------------------------------------------------+
474 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
475 * +------------------------------------------------------+
476 * 63 48 47 32 31 20 19 0
Josh Hay39ac8682012-09-26 05:59:36 +0000477 *
478 * 82599+ Advanced Receive Descriptor (Read) Format
479 * 63 1 0
480 * +-----------------------------------------------------+
481 * 0 | Packet Buffer Address [63:1] |A0/NSE|
482 * +----------------------------------------------+------+
483 * 8 | Header Buffer Address [63:1] | DD |
484 * +-----------------------------------------------------+
485 *
486 *
487 * 82599+ Advanced Receive Descriptor (Write-Back) Format
488 *
489 * 63 48 47 32 31 30 21 20 17 16 4 3 0
490 * +------------------------------------------------------+
491 * 0 |RSS / Frag Checksum|SPH| HDR_LEN |RSC- |Packet| RSS |
492 * |/ RTT / PCoE_PARAM | | | CNT | Type | Type |
493 * |/ Flow Dir Flt ID | | | | | |
494 * +------------------------------------------------------+
495 * 8 | VLAN Tag | Length |Extended Error| Xtnd Status/NEXTP |
496 * +------------------------------------------------------+
497 * 63 48 47 32 31 20 19 0
Taku Izumidcd79ae2010-04-27 14:39:53 +0000498 */
Josh Hay39ac8682012-09-26 05:59:36 +0000499
Taku Izumidcd79ae2010-04-27 14:39:53 +0000500 for (n = 0; n < adapter->num_rx_queues; n++) {
501 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000502 pr_info("------------------------------------\n");
503 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
504 pr_info("------------------------------------\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000505 pr_info("%s%s%s",
506 "R [desc] [ PktBuf A0] ",
507 "[ HeadBuf DD] [bi->dma ] [bi->skb ] ",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000508 "<-- Adv Rx Read format\n");
Josh Hay8ad88e32012-09-26 05:59:41 +0000509 pr_info("%s%s%s",
510 "RWB[desc] [PcsmIpSHl PtRs] ",
511 "[vl er S cks ln] ---------------- [bi->skb ] ",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000512 "<-- Adv Rx Write-Back format\n");
513
514 for (i = 0; i < rx_ring->count; i++) {
515 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000516 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000517 u0 = (struct my_u0 *)rx_desc;
518 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
519 if (staterr & IXGBE_RXD_STAT_DD) {
520 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000521 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000522 "%016llX ---------------- %p", i,
523 le64_to_cpu(u0->a),
524 le64_to_cpu(u0->b),
525 rx_buffer_info->skb);
526 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000527 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000528 "%016llX %016llX %p", i,
529 le64_to_cpu(u0->a),
530 le64_to_cpu(u0->b),
531 (u64)rx_buffer_info->dma,
532 rx_buffer_info->skb);
533
Emil Tantilov9c50c032012-07-26 01:21:24 +0000534 if (netif_msg_pktdata(adapter) &&
535 rx_buffer_info->dma) {
Taku Izumidcd79ae2010-04-27 14:39:53 +0000536 print_hex_dump(KERN_INFO, "",
537 DUMP_PREFIX_ADDRESS, 16, 1,
Emil Tantilov9c50c032012-07-26 01:21:24 +0000538 page_address(rx_buffer_info->page) +
539 rx_buffer_info->page_offset,
Alexander Duyckf8003262012-03-03 02:35:52 +0000540 ixgbe_rx_bufsz(rx_ring), true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000541 }
542 }
543
544 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000545 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000546 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000547 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000548 else
Joe Perchesc7689572010-09-07 21:35:17 +0000549 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000550
551 }
552 }
553
554exit:
555 return;
556}
557
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800558static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
559{
560 u32 ctrl_ext;
561
562 /* Let firmware take over control of h/w */
563 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
564 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000565 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800566}
567
568static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
569{
570 u32 ctrl_ext;
571
572 /* Let firmware know the driver has taken over */
573 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
574 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000575 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800576}
Auke Kok9a799d72007-09-15 14:07:45 -0700577
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000578/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000579 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
580 * @adapter: pointer to adapter struct
581 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
582 * @queue: queue to map the corresponding interrupt to
583 * @msix_vector: the vector to map to the corresponding queue
584 *
585 */
586static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000587 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700588{
589 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000590 struct ixgbe_hw *hw = &adapter->hw;
591 switch (hw->mac.type) {
592 case ixgbe_mac_82598EB:
593 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
594 if (direction == -1)
595 direction = 0;
596 index = (((direction * 64) + queue) >> 2) & 0x1F;
597 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
598 ivar &= ~(0xFF << (8 * (queue & 0x3)));
599 ivar |= (msix_vector << (8 * (queue & 0x3)));
600 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
601 break;
602 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800603 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000604 if (direction == -1) {
605 /* other causes */
606 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
607 index = ((queue & 1) * 8);
608 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
609 ivar &= ~(0xFF << index);
610 ivar |= (msix_vector << index);
611 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
612 break;
613 } else {
614 /* tx or rx causes */
615 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
616 index = ((16 * (queue & 1)) + (8 * direction));
617 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
618 ivar &= ~(0xFF << index);
619 ivar |= (msix_vector << index);
620 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
621 break;
622 }
623 default:
624 break;
625 }
Auke Kok9a799d72007-09-15 14:07:45 -0700626}
627
Alexander Duyckfe49f042009-06-04 16:00:09 +0000628static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000629 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000630{
631 u32 mask;
632
Alexander Duyckbd508172010-11-16 19:27:03 -0800633 switch (adapter->hw.mac.type) {
634 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000635 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
636 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800637 break;
638 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800639 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000640 mask = (qmask & 0xFFFFFFFF);
641 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
642 mask = (qmask >> 32);
643 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800644 break;
645 default:
646 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000647 }
648}
649
Alexander Duyck729739b2012-02-08 07:51:06 +0000650void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *ring,
651 struct ixgbe_tx_buffer *tx_buffer)
Alexander Duyckd3d00232011-07-15 02:31:25 +0000652{
Alexander Duyck729739b2012-02-08 07:51:06 +0000653 if (tx_buffer->skb) {
654 dev_kfree_skb_any(tx_buffer->skb);
655 if (dma_unmap_len(tx_buffer, len))
Alexander Duyckd3d00232011-07-15 02:31:25 +0000656 dma_unmap_single(ring->dev,
Alexander Duyck729739b2012-02-08 07:51:06 +0000657 dma_unmap_addr(tx_buffer, dma),
658 dma_unmap_len(tx_buffer, len),
659 DMA_TO_DEVICE);
660 } else if (dma_unmap_len(tx_buffer, len)) {
661 dma_unmap_page(ring->dev,
662 dma_unmap_addr(tx_buffer, dma),
663 dma_unmap_len(tx_buffer, len),
664 DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000665 }
Alexander Duyck729739b2012-02-08 07:51:06 +0000666 tx_buffer->next_to_watch = NULL;
667 tx_buffer->skb = NULL;
668 dma_unmap_len_set(tx_buffer, len, 0);
669 /* tx_buffer must be completely set up in the transmit path */
Auke Kok9a799d72007-09-15 14:07:45 -0700670}
671
Alexander Duyck943561d2012-05-09 22:14:44 -0700672static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter *adapter)
673{
674 struct ixgbe_hw *hw = &adapter->hw;
675 struct ixgbe_hw_stats *hwstats = &adapter->stats;
676 int i;
677 u32 data;
678
679 if ((hw->fc.current_mode != ixgbe_fc_full) &&
680 (hw->fc.current_mode != ixgbe_fc_rx_pause))
681 return;
682
683 switch (hw->mac.type) {
684 case ixgbe_mac_82598EB:
685 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
686 break;
687 default:
688 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
689 }
690 hwstats->lxoffrxc += data;
691
692 /* refill credits (no tx hang) if we received xoff */
693 if (!data)
694 return;
695
696 for (i = 0; i < adapter->num_tx_queues; i++)
697 clear_bit(__IXGBE_HANG_CHECK_ARMED,
698 &adapter->tx_ring[i]->state);
699}
700
John Fastabendc84d3242010-11-16 19:27:12 -0800701static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700702{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700703 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800704 struct ixgbe_hw_stats *hwstats = &adapter->stats;
John Fastabendc84d3242010-11-16 19:27:12 -0800705 u32 xoff[8] = {0};
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000706 u8 tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800707 int i;
Alexander Duyck943561d2012-05-09 22:14:44 -0700708 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700709
Alexander Duyck943561d2012-05-09 22:14:44 -0700710 if (adapter->ixgbe_ieee_pfc)
711 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
John Fastabendc84d3242010-11-16 19:27:12 -0800712
Alexander Duyck943561d2012-05-09 22:14:44 -0700713 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED) || !pfc_en) {
714 ixgbe_update_xoff_rx_lfc(adapter);
John Fastabendc84d3242010-11-16 19:27:12 -0800715 return;
Alexander Duyck943561d2012-05-09 22:14:44 -0700716 }
John Fastabendc84d3242010-11-16 19:27:12 -0800717
718 /* update stats for each tc, only valid with PFC enabled */
719 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000720 u32 pxoffrxc;
721
John Fastabendc84d3242010-11-16 19:27:12 -0800722 switch (hw->mac.type) {
723 case ixgbe_mac_82598EB:
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000724 pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
John Fastabendc84d3242010-11-16 19:27:12 -0800725 break;
726 default:
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000727 pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
John Fastabendc84d3242010-11-16 19:27:12 -0800728 }
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000729 hwstats->pxoffrxc[i] += pxoffrxc;
730 /* Get the TC for given UP */
731 tc = netdev_get_prio_tc_map(adapter->netdev, i);
732 xoff[tc] += pxoffrxc;
Auke Kok9a799d72007-09-15 14:07:45 -0700733 }
734
John Fastabendc84d3242010-11-16 19:27:12 -0800735 /* disarm tx queues that have received xoff frames */
736 for (i = 0; i < adapter->num_tx_queues; i++) {
737 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendc84d3242010-11-16 19:27:12 -0800738
Parikh, Neerav2afaa002012-09-27 12:02:22 +0000739 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800740 if (xoff[tc])
741 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
742 }
743}
744
745static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
746{
Alexander Duyck7d7ce682012-02-08 07:50:51 +0000747 return ring->stats.packets;
John Fastabendc84d3242010-11-16 19:27:12 -0800748}
749
750static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
751{
752 struct ixgbe_adapter *adapter = netdev_priv(ring->netdev);
753 struct ixgbe_hw *hw = &adapter->hw;
754
755 u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
756 u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
757
758 if (head != tail)
759 return (head < tail) ?
760 tail - head : (tail + ring->count - head);
761
762 return 0;
763}
764
765static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
766{
767 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
768 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
769 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
770 bool ret = false;
771
772 clear_check_for_tx_hang(tx_ring);
773
774 /*
775 * Check for a hung queue, but be thorough. This verifies
776 * that a transmit has been completed since the previous
777 * check AND there is at least one packet pending. The
778 * ARMED bit is set to indicate a potential hang. The
779 * bit is cleared if a pause frame is received to remove
780 * false hang detection due to PFC or 802.3x frames. By
781 * requiring this to fail twice we avoid races with
782 * pfc clearing the ARMED bit and conditions where we
783 * run the check_tx_hang logic with a transmit completion
784 * pending but without time to complete it yet.
785 */
786 if ((tx_done_old == tx_done) && tx_pending) {
787 /* make sure it is true for two checks in a row */
788 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
789 &tx_ring->state);
790 } else {
791 /* update completed stats and continue */
792 tx_ring->tx_stats.tx_done_old = tx_done;
793 /* reset the countdown */
794 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
795 }
796
797 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700798}
799
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000800/**
801 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
802 * @adapter: driver private struct
803 **/
804static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
805{
806
807 /* Do the reset outside of interrupt context */
808 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
809 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
810 ixgbe_service_event_schedule(adapter);
811 }
812}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700813
Auke Kok9a799d72007-09-15 14:07:45 -0700814/**
815 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000816 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700817 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700818 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000819static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000820 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700821{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000822 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000823 struct ixgbe_tx_buffer *tx_buffer;
824 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700825 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +0000826 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyck729739b2012-02-08 07:51:06 +0000827 unsigned int i = tx_ring->next_to_clean;
828
829 if (test_bit(__IXGBE_DOWN, &adapter->state))
830 return true;
Auke Kok9a799d72007-09-15 14:07:45 -0700831
Alexander Duyckd3d00232011-07-15 02:31:25 +0000832 tx_buffer = &tx_ring->tx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000833 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000834 i -= tx_ring->count;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800835
Alexander Duyck729739b2012-02-08 07:51:06 +0000836 do {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000837 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -0700838
Alexander Duyckd3d00232011-07-15 02:31:25 +0000839 /* if next_to_watch is not set then there is no work pending */
840 if (!eop_desc)
841 break;
842
Alexander Duyck7f83a9e2012-02-08 07:49:23 +0000843 /* prevent any other reads prior to eop_desc */
844 rmb();
845
Alexander Duyckd3d00232011-07-15 02:31:25 +0000846 /* if DD is not set pending work has not been completed */
847 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
848 break;
849
Alexander Duyckd3d00232011-07-15 02:31:25 +0000850 /* clear next_to_watch to prevent false hangs */
851 tx_buffer->next_to_watch = NULL;
852
Alexander Duyck091a6242012-02-08 07:51:01 +0000853 /* update the statistics for this packet */
854 total_bytes += tx_buffer->bytecount;
855 total_packets += tx_buffer->gso_segs;
856
Jacob Keller0ede4a62012-05-22 06:08:32 +0000857 if (unlikely(tx_buffer->tx_flags & IXGBE_TX_FLAGS_TSTAMP))
858 ixgbe_ptp_tx_hwtstamp(q_vector, tx_buffer->skb);
Jacob Keller0ede4a62012-05-22 06:08:32 +0000859
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000860 /* free the skb */
861 dev_kfree_skb_any(tx_buffer->skb);
862
Alexander Duyck729739b2012-02-08 07:51:06 +0000863 /* unmap skb header data */
864 dma_unmap_single(tx_ring->dev,
865 dma_unmap_addr(tx_buffer, dma),
866 dma_unmap_len(tx_buffer, len),
867 DMA_TO_DEVICE);
868
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000869 /* clear tx_buffer data */
870 tx_buffer->skb = NULL;
Alexander Duyck729739b2012-02-08 07:51:06 +0000871 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000872
Alexander Duyck729739b2012-02-08 07:51:06 +0000873 /* unmap remaining buffers */
874 while (tx_desc != eop_desc) {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000875 tx_buffer++;
876 tx_desc++;
877 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +0000878 if (unlikely(!i)) {
879 i -= tx_ring->count;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000880 tx_buffer = tx_ring->tx_buffer_info;
Alexander Duycke4f74022012-01-31 02:59:44 +0000881 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000882 }
883
Alexander Duyck729739b2012-02-08 07:51:06 +0000884 /* unmap any remaining paged data */
885 if (dma_unmap_len(tx_buffer, len)) {
886 dma_unmap_page(tx_ring->dev,
887 dma_unmap_addr(tx_buffer, dma),
888 dma_unmap_len(tx_buffer, len),
889 DMA_TO_DEVICE);
890 dma_unmap_len_set(tx_buffer, len, 0);
891 }
892 }
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800893
Alexander Duyck729739b2012-02-08 07:51:06 +0000894 /* move us one more past the eop_desc for start of next pkt */
895 tx_buffer++;
896 tx_desc++;
897 i++;
898 if (unlikely(!i)) {
899 i -= tx_ring->count;
900 tx_buffer = tx_ring->tx_buffer_info;
901 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
902 }
903
904 /* issue prefetch for next Tx descriptor */
905 prefetch(tx_desc);
906
907 /* update budget accounting */
908 budget--;
909 } while (likely(budget));
910
911 i += tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -0700912 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000913 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -0800914 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +0000915 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000916 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +0000917 q_vector->tx.total_bytes += total_bytes;
918 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -0800919
John Fastabendc84d3242010-11-16 19:27:12 -0800920 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -0800921 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -0800922 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800923 e_err(drv, "Detected Tx Unit Hang\n"
924 " Tx Queue <%d>\n"
925 " TDH, TDT <%x>, <%x>\n"
926 " next_to_use <%x>\n"
927 " next_to_clean <%x>\n"
928 "tx_buffer_info[next_to_clean]\n"
929 " time_stamp <%lx>\n"
930 " jiffies <%lx>\n",
931 tx_ring->queue_index,
932 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
933 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +0000934 tx_ring->next_to_use, i,
935 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -0800936
937 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
938
939 e_info(probe,
940 "tx hang %d detected on queue %d, resetting adapter\n",
941 adapter->tx_timeout_count + 1, tx_ring->queue_index);
942
943 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000944 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -0800945
946 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +0000947 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -0800948 }
Auke Kok9a799d72007-09-15 14:07:45 -0700949
Alexander Duyckb2d96e02012-02-07 08:14:33 +0000950 netdev_tx_completed_queue(txring_txq(tx_ring),
951 total_packets, total_bytes);
952
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800953#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +0000954 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +0000955 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800956 /* Make sure that anybody stopping the queue after this
957 * sees the new next_to_clean.
958 */
959 smp_mb();
Alexander Duyck729739b2012-02-08 07:51:06 +0000960 if (__netif_subqueue_stopped(tx_ring->netdev,
961 tx_ring->queue_index)
962 && !test_bit(__IXGBE_DOWN, &adapter->state)) {
963 netif_wake_subqueue(tx_ring->netdev,
964 tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800965 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800966 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800967 }
Auke Kok9a799d72007-09-15 14:07:45 -0700968
Alexander Duyck59224552011-08-31 00:01:06 +0000969 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -0700970}
971
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400972#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800973static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800974 struct ixgbe_ring *tx_ring,
975 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800976{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000977 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000978 u32 txctrl = dca3_get_tag(tx_ring->dev, cpu);
979 u16 reg_offset;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800980
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800981 switch (hw->mac.type) {
982 case ixgbe_mac_82598EB:
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000983 reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800984 break;
985 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800986 case ixgbe_mac_X540:
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000987 reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx);
988 txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599;
989 break;
990 default:
991 /* for unknown hardware do not write register */
992 return;
993 }
994
995 /*
996 * We can enable relaxed ordering for reads, but not writes when
997 * DCA is enabled. This is due to a known issue in some chipsets
998 * which will cause the DCA tag to be cleared.
999 */
1000 txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN |
1001 IXGBE_DCA_TXCTRL_DATA_RRO_EN |
1002 IXGBE_DCA_TXCTRL_DESC_DCA_EN;
1003
1004 IXGBE_WRITE_REG(hw, reg_offset, txctrl);
1005}
1006
1007static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
1008 struct ixgbe_ring *rx_ring,
1009 int cpu)
1010{
1011 struct ixgbe_hw *hw = &adapter->hw;
1012 u32 rxctrl = dca3_get_tag(rx_ring->dev, cpu);
1013 u8 reg_idx = rx_ring->reg_idx;
1014
1015
1016 switch (hw->mac.type) {
1017 case ixgbe_mac_82599EB:
1018 case ixgbe_mac_X540:
1019 rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599;
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001020 break;
1021 default:
1022 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001023 }
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001024
1025 /*
1026 * We can enable relaxed ordering for reads, but not writes when
1027 * DCA is enabled. This is due to a known issue in some chipsets
1028 * which will cause the DCA tag to be cleared.
1029 */
1030 rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN |
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001031 IXGBE_DCA_RXCTRL_DESC_DCA_EN;
1032
1033 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001034}
1035
1036static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
1037{
1038 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001039 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001040 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001041
1042 if (q_vector->cpu == cpu)
1043 goto out_no_update;
1044
Alexander Duycka5579282012-02-08 07:50:04 +00001045 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001046 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001047
Alexander Duycka5579282012-02-08 07:50:04 +00001048 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001049 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001050
1051 q_vector->cpu = cpu;
1052out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001053 put_cpu();
1054}
1055
1056static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
1057{
1058 int i;
1059
1060 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
1061 return;
1062
Alexander Duycke35ec122009-05-21 13:07:12 +00001063 /* always use CB2 mode, difference is masked in the CB driver */
1064 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
1065
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001066 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001067 adapter->q_vector[i]->cpu = -1;
1068 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001069 }
1070}
1071
1072static int __ixgbe_notify_dca(struct device *dev, void *data)
1073{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001074 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001075 unsigned long event = *(unsigned long *)data;
1076
Don Skidmore2a72c312011-07-20 02:27:05 +00001077 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001078 return 0;
1079
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001080 switch (event) {
1081 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001082 /* if we're already enabled, don't do it again */
1083 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1084 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001085 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001086 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001087 ixgbe_setup_dca(adapter);
1088 break;
1089 }
1090 /* Fall Through since DCA is disabled. */
1091 case DCA_PROVIDER_REMOVE:
1092 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1093 dca_remove_requester(dev);
1094 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1095 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
1096 }
1097 break;
1098 }
1099
Denis V. Lunev652f0932008-03-27 14:39:17 +03001100 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001101}
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001102
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001103#endif /* CONFIG_IXGBE_DCA */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001104static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
1105 union ixgbe_adv_rx_desc *rx_desc,
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001106 struct sk_buff *skb)
1107{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001108 if (ring->netdev->features & NETIF_F_RXHASH)
1109 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001110}
1111
Alexander Duyckf8003262012-03-03 02:35:52 +00001112#ifdef IXGBE_FCOE
Auke Kok9a799d72007-09-15 14:07:45 -07001113/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001114 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
Alexander Duyck57efd442012-06-25 21:54:46 +00001115 * @ring: structure containing ring specific data
Alexander Duyckff886df2011-06-11 01:45:13 +00001116 * @rx_desc: advanced rx descriptor
1117 *
1118 * Returns : true if it is FCoE pkt
1119 */
Alexander Duyck57efd442012-06-25 21:54:46 +00001120static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring *ring,
Alexander Duyckff886df2011-06-11 01:45:13 +00001121 union ixgbe_adv_rx_desc *rx_desc)
1122{
1123 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1124
Alexander Duyck57efd442012-06-25 21:54:46 +00001125 return test_bit(__IXGBE_RX_FCOE, &ring->state) &&
Alexander Duyckff886df2011-06-11 01:45:13 +00001126 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1127 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1128 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1129}
1130
Alexander Duyckf8003262012-03-03 02:35:52 +00001131#endif /* IXGBE_FCOE */
Alexander Duyckff886df2011-06-11 01:45:13 +00001132/**
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001133 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
Alexander Duyck8a0da212012-01-31 02:59:49 +00001134 * @ring: structure containing ring specific data
1135 * @rx_desc: current Rx descriptor being processed
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001136 * @skb: skb currently being received and modified
1137 **/
Alexander Duyck8a0da212012-01-31 02:59:49 +00001138static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001139 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001140 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001141{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001142 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001143
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001144 /* Rx csum disabled */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001145 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Auke Kok9a799d72007-09-15 14:07:45 -07001146 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001147
1148 /* if IP and error */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001149 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1150 ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001151 ring->rx_stats.csum_err++;
Auke Kok9a799d72007-09-15 14:07:45 -07001152 return;
1153 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001154
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001155 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001156 return;
1157
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001158 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Alexander Duyckf8003262012-03-03 02:35:52 +00001159 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
Don Skidmore8bae1b22009-07-23 18:00:39 +00001160
1161 /*
1162 * 82599 errata, UDP frames with a 0 checksum can be marked as
1163 * checksum errors.
1164 */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001165 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1166 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
Don Skidmore8bae1b22009-07-23 18:00:39 +00001167 return;
1168
Alexander Duyck8a0da212012-01-31 02:59:49 +00001169 ring->rx_stats.csum_err++;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001170 return;
1171 }
1172
Auke Kok9a799d72007-09-15 14:07:45 -07001173 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001174 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001175}
1176
Alexander Duyck84ea2592010-11-16 19:26:49 -08001177static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001178{
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001179 rx_ring->next_to_use = val;
Alexander Duyckf8003262012-03-03 02:35:52 +00001180
1181 /* update next to alloc since we have filled the ring */
1182 rx_ring->next_to_alloc = val;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001183 /*
1184 * Force memory writes to complete before letting h/w
1185 * know there are new descriptors to fetch. (Only
1186 * applicable for weak-ordered memory model archs,
1187 * such as IA-64).
1188 */
1189 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001190 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001191}
1192
Alexander Duyckf990b792012-01-31 02:59:34 +00001193static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1194 struct ixgbe_rx_buffer *bi)
1195{
1196 struct page *page = bi->page;
Alexander Duyckf8003262012-03-03 02:35:52 +00001197 dma_addr_t dma = bi->dma;
Alexander Duyckf990b792012-01-31 02:59:34 +00001198
Alexander Duyckf8003262012-03-03 02:35:52 +00001199 /* since we are recycling buffers we should seldom need to alloc */
1200 if (likely(dma))
Alexander Duyckf990b792012-01-31 02:59:34 +00001201 return true;
1202
Alexander Duyckf8003262012-03-03 02:35:52 +00001203 /* alloc new page for storage */
1204 if (likely(!page)) {
Mel Gorman06140022012-07-31 16:44:24 -07001205 page = __skb_alloc_pages(GFP_ATOMIC | __GFP_COLD | __GFP_COMP,
1206 bi->skb, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf990b792012-01-31 02:59:34 +00001207 if (unlikely(!page)) {
1208 rx_ring->rx_stats.alloc_rx_page_failed++;
1209 return false;
1210 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001211 bi->page = page;
Alexander Duyckf990b792012-01-31 02:59:34 +00001212 }
1213
Alexander Duyckf8003262012-03-03 02:35:52 +00001214 /* map page for use */
1215 dma = dma_map_page(rx_ring->dev, page, 0,
1216 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
Alexander Duyckf990b792012-01-31 02:59:34 +00001217
Alexander Duyckf8003262012-03-03 02:35:52 +00001218 /*
1219 * if mapping failed free memory back to system since
1220 * there isn't much point in holding memory we can't use
1221 */
1222 if (dma_mapping_error(rx_ring->dev, dma)) {
Alexander Duyckdd411ec2012-04-06 04:24:50 +00001223 __free_pages(page, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00001224 bi->page = NULL;
1225
Alexander Duyckf990b792012-01-31 02:59:34 +00001226 rx_ring->rx_stats.alloc_rx_page_failed++;
1227 return false;
1228 }
1229
Alexander Duyckf8003262012-03-03 02:35:52 +00001230 bi->dma = dma;
Alexander Duyckafaa9452012-07-20 08:08:12 +00001231 bi->page_offset = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001232
Alexander Duyckf990b792012-01-31 02:59:34 +00001233 return true;
1234}
1235
Auke Kok9a799d72007-09-15 14:07:45 -07001236/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001237 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001238 * @rx_ring: ring to place buffers on
1239 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001240 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001241void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001242{
Auke Kok9a799d72007-09-15 14:07:45 -07001243 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001244 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001245 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001246
Alexander Duyckf8003262012-03-03 02:35:52 +00001247 /* nothing to do */
1248 if (!cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001249 return;
1250
Alexander Duycke4f74022012-01-31 02:59:44 +00001251 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Alexander Duyckf990b792012-01-31 02:59:34 +00001252 bi = &rx_ring->rx_buffer_info[i];
1253 i -= rx_ring->count;
1254
Alexander Duyckf8003262012-03-03 02:35:52 +00001255 do {
1256 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
Alexander Duyckf990b792012-01-31 02:59:34 +00001257 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001258
Alexander Duyckf8003262012-03-03 02:35:52 +00001259 /*
1260 * Refresh the desc even if buffer_addrs didn't change
1261 * because each write-back erases this info.
1262 */
1263 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
Auke Kok9a799d72007-09-15 14:07:45 -07001264
Alexander Duyckf990b792012-01-31 02:59:34 +00001265 rx_desc++;
1266 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001267 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001268 if (unlikely(!i)) {
Alexander Duycke4f74022012-01-31 02:59:44 +00001269 rx_desc = IXGBE_RX_DESC(rx_ring, 0);
Alexander Duyckf990b792012-01-31 02:59:34 +00001270 bi = rx_ring->rx_buffer_info;
1271 i -= rx_ring->count;
1272 }
1273
1274 /* clear the hdr_addr for the next_to_use descriptor */
1275 rx_desc->read.hdr_addr = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001276
1277 cleaned_count--;
1278 } while (cleaned_count);
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001279
Alexander Duyckf990b792012-01-31 02:59:34 +00001280 i += rx_ring->count;
1281
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001282 if (rx_ring->next_to_use != i)
Alexander Duyck84ea2592010-11-16 19:26:49 -08001283 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001284}
1285
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001286/**
1287 * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE
1288 * @data: pointer to the start of the headers
1289 * @max_len: total length of section to find headers in
1290 *
1291 * This function is meant to determine the length of headers that will
1292 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1293 * motivation of doing this is to only perform one pull for IPv4 TCP
1294 * packets so that we can do basic things like calculating the gso_size
1295 * based on the average data per packet.
1296 **/
1297static unsigned int ixgbe_get_headlen(unsigned char *data,
1298 unsigned int max_len)
1299{
1300 union {
1301 unsigned char *network;
1302 /* l2 headers */
1303 struct ethhdr *eth;
1304 struct vlan_hdr *vlan;
1305 /* l3 headers */
1306 struct iphdr *ipv4;
Alexander Duycka048b402012-05-24 08:26:29 +00001307 struct ipv6hdr *ipv6;
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001308 } hdr;
1309 __be16 protocol;
1310 u8 nexthdr = 0; /* default to not TCP */
1311 u8 hlen;
1312
1313 /* this should never happen, but better safe than sorry */
1314 if (max_len < ETH_HLEN)
1315 return max_len;
1316
1317 /* initialize network frame pointer */
1318 hdr.network = data;
1319
1320 /* set first protocol and move network header forward */
1321 protocol = hdr.eth->h_proto;
1322 hdr.network += ETH_HLEN;
1323
1324 /* handle any vlan tag if present */
1325 if (protocol == __constant_htons(ETH_P_8021Q)) {
1326 if ((hdr.network - data) > (max_len - VLAN_HLEN))
1327 return max_len;
1328
1329 protocol = hdr.vlan->h_vlan_encapsulated_proto;
1330 hdr.network += VLAN_HLEN;
1331 }
1332
1333 /* handle L3 protocols */
1334 if (protocol == __constant_htons(ETH_P_IP)) {
1335 if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
1336 return max_len;
1337
1338 /* access ihl as a u8 to avoid unaligned access on ia64 */
1339 hlen = (hdr.network[0] & 0x0F) << 2;
1340
1341 /* verify hlen meets minimum size requirements */
1342 if (hlen < sizeof(struct iphdr))
1343 return hdr.network - data;
1344
1345 /* record next protocol */
1346 nexthdr = hdr.ipv4->protocol;
1347 hdr.network += hlen;
Alexander Duycka048b402012-05-24 08:26:29 +00001348 } else if (protocol == __constant_htons(ETH_P_IPV6)) {
1349 if ((hdr.network - data) > (max_len - sizeof(struct ipv6hdr)))
1350 return max_len;
1351
1352 /* record next protocol */
1353 nexthdr = hdr.ipv6->nexthdr;
1354 hdr.network += sizeof(struct ipv6hdr);
Alexander Duyckf8003262012-03-03 02:35:52 +00001355#ifdef IXGBE_FCOE
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001356 } else if (protocol == __constant_htons(ETH_P_FCOE)) {
1357 if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN))
1358 return max_len;
1359 hdr.network += FCOE_HEADER_LEN;
1360#endif
1361 } else {
1362 return hdr.network - data;
1363 }
1364
Alexander Duycka048b402012-05-24 08:26:29 +00001365 /* finally sort out TCP/UDP */
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001366 if (nexthdr == IPPROTO_TCP) {
1367 if ((hdr.network - data) > (max_len - sizeof(struct tcphdr)))
1368 return max_len;
1369
1370 /* access doff as a u8 to avoid unaligned access on ia64 */
1371 hlen = (hdr.network[12] & 0xF0) >> 2;
1372
1373 /* verify hlen meets minimum size requirements */
1374 if (hlen < sizeof(struct tcphdr))
1375 return hdr.network - data;
1376
1377 hdr.network += hlen;
Alexander Duycka048b402012-05-24 08:26:29 +00001378 } else if (nexthdr == IPPROTO_UDP) {
1379 if ((hdr.network - data) > (max_len - sizeof(struct udphdr)))
1380 return max_len;
1381
1382 hdr.network += sizeof(struct udphdr);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001383 }
1384
1385 /*
1386 * If everything has gone correctly hdr.network should be the
1387 * data section of the packet and will be the end of the header.
1388 * If not then it probably represents the end of the last recognized
1389 * header.
1390 */
1391 if ((hdr.network - data) < max_len)
1392 return hdr.network - data;
1393 else
1394 return max_len;
1395}
1396
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001397static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1398 struct sk_buff *skb)
1399{
Alexander Duyckf8003262012-03-03 02:35:52 +00001400 u16 hdr_len = skb_headlen(skb);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001401
1402 /* set gso_size to avoid messing up TCP MSS */
1403 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1404 IXGBE_CB(skb)->append_cnt);
1405}
1406
1407static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1408 struct sk_buff *skb)
1409{
1410 /* if append_cnt is 0 then frame is not RSC */
1411 if (!IXGBE_CB(skb)->append_cnt)
1412 return;
1413
1414 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1415 rx_ring->rx_stats.rsc_flush++;
1416
1417 ixgbe_set_rsc_gso_size(rx_ring, skb);
1418
1419 /* gso_size is computed using append_cnt so always clear it last */
1420 IXGBE_CB(skb)->append_cnt = 0;
1421}
1422
Alexander Duyck8a0da212012-01-31 02:59:49 +00001423/**
1424 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1425 * @rx_ring: rx descriptor ring packet is being transacted on
1426 * @rx_desc: pointer to the EOP Rx descriptor
1427 * @skb: pointer to current skb being populated
1428 *
1429 * This function checks the ring, descriptor, and packet information in
1430 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1431 * other fields within the skb.
1432 **/
1433static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1434 union ixgbe_adv_rx_desc *rx_desc,
1435 struct sk_buff *skb)
1436{
John Fastabend43e95f12012-05-15 06:12:17 +00001437 struct net_device *dev = rx_ring->netdev;
1438
Alexander Duyck8a0da212012-01-31 02:59:49 +00001439 ixgbe_update_rsc_stats(rx_ring, skb);
1440
1441 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1442
1443 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1444
Jacob Keller1d1a79b2012-05-22 06:18:08 +00001445 ixgbe_ptp_rx_hwtstamp(rx_ring->q_vector, rx_desc, skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001446
John Fastabend43e95f12012-05-15 06:12:17 +00001447 if ((dev->features & NETIF_F_HW_VLAN_RX) &&
1448 ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001449 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
1450 __vlan_hwaccel_put_tag(skb, vid);
1451 }
1452
1453 skb_record_rx_queue(skb, rx_ring->queue_index);
1454
John Fastabend43e95f12012-05-15 06:12:17 +00001455 skb->protocol = eth_type_trans(skb, dev);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001456}
1457
1458static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1459 struct sk_buff *skb)
1460{
1461 struct ixgbe_adapter *adapter = q_vector->adapter;
1462
1463 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1464 napi_gro_receive(&q_vector->napi, skb);
1465 else
1466 netif_rx(skb);
Alexander Duyckaa801752010-11-16 19:27:02 -08001467}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001468
Alexander Duyckf8003262012-03-03 02:35:52 +00001469/**
1470 * ixgbe_is_non_eop - process handling of non-EOP buffers
1471 * @rx_ring: Rx ring being processed
1472 * @rx_desc: Rx descriptor for current buffer
1473 * @skb: Current socket buffer containing buffer in progress
1474 *
1475 * This function updates next to clean. If the buffer is an EOP buffer
1476 * this function exits returning false, otherwise it will place the
1477 * sk_buff in the next buffer to be chained and return true indicating
1478 * that this is in fact a non-EOP buffer.
1479 **/
1480static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring,
1481 union ixgbe_adv_rx_desc *rx_desc,
1482 struct sk_buff *skb)
1483{
1484 u32 ntc = rx_ring->next_to_clean + 1;
1485
1486 /* fetch, update, and store next to clean */
1487 ntc = (ntc < rx_ring->count) ? ntc : 0;
1488 rx_ring->next_to_clean = ntc;
1489
1490 prefetch(IXGBE_RX_DESC(rx_ring, ntc));
1491
Alexander Duyck5a02cbd2012-07-20 08:08:51 +00001492 /* update RSC append count if present */
1493 if (ring_is_rsc_enabled(rx_ring)) {
1494 __le32 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1495 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1496
1497 if (unlikely(rsc_enabled)) {
1498 u32 rsc_cnt = le32_to_cpu(rsc_enabled);
1499
1500 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1501 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
1502
1503 /* update ntc based on RSC value */
1504 ntc = le32_to_cpu(rx_desc->wb.upper.status_error);
1505 ntc &= IXGBE_RXDADV_NEXTP_MASK;
1506 ntc >>= IXGBE_RXDADV_NEXTP_SHIFT;
1507 }
1508 }
1509
1510 /* if we are the last buffer then there is nothing else to do */
Alexander Duyckf8003262012-03-03 02:35:52 +00001511 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1512 return false;
1513
Alexander Duyckf8003262012-03-03 02:35:52 +00001514 /* place skb in next buffer to be received */
1515 rx_ring->rx_buffer_info[ntc].skb = skb;
1516 rx_ring->rx_stats.non_eop_descs++;
1517
1518 return true;
1519}
1520
1521/**
Alexander Duyck19861ce2012-07-20 08:08:33 +00001522 * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail
1523 * @rx_ring: rx descriptor ring packet is being transacted on
1524 * @skb: pointer to current skb being adjusted
1525 *
1526 * This function is an ixgbe specific version of __pskb_pull_tail. The
1527 * main difference between this version and the original function is that
1528 * this function can make several assumptions about the state of things
1529 * that allow for significant optimizations versus the standard function.
1530 * As a result we can do things like drop a frag and maintain an accurate
1531 * truesize for the skb.
1532 */
1533static void ixgbe_pull_tail(struct ixgbe_ring *rx_ring,
1534 struct sk_buff *skb)
1535{
1536 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1537 unsigned char *va;
1538 unsigned int pull_len;
1539
1540 /*
1541 * it is valid to use page_address instead of kmap since we are
1542 * working with pages allocated out of the lomem pool per
1543 * alloc_page(GFP_ATOMIC)
1544 */
1545 va = skb_frag_address(frag);
1546
1547 /*
1548 * we need the header to contain the greater of either ETH_HLEN or
1549 * 60 bytes if the skb->len is less than 60 for skb_pad.
1550 */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001551 pull_len = ixgbe_get_headlen(va, IXGBE_RX_HDR_SIZE);
Alexander Duyck19861ce2012-07-20 08:08:33 +00001552
1553 /* align pull length to size of long to optimize memcpy performance */
1554 skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1555
1556 /* update all of the pointers */
1557 skb_frag_size_sub(frag, pull_len);
1558 frag->page_offset += pull_len;
1559 skb->data_len -= pull_len;
1560 skb->tail += pull_len;
Alexander Duyck19861ce2012-07-20 08:08:33 +00001561}
1562
1563/**
Alexander Duyck42073d92012-07-20 08:08:28 +00001564 * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB
1565 * @rx_ring: rx descriptor ring packet is being transacted on
1566 * @skb: pointer to current skb being updated
1567 *
1568 * This function provides a basic DMA sync up for the first fragment of an
1569 * skb. The reason for doing this is that the first fragment cannot be
1570 * unmapped until we have reached the end of packet descriptor for a buffer
1571 * chain.
1572 */
1573static void ixgbe_dma_sync_frag(struct ixgbe_ring *rx_ring,
1574 struct sk_buff *skb)
1575{
1576 /* if the page was released unmap it, else just sync our portion */
1577 if (unlikely(IXGBE_CB(skb)->page_released)) {
1578 dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma,
1579 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
1580 IXGBE_CB(skb)->page_released = false;
1581 } else {
1582 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1583
1584 dma_sync_single_range_for_cpu(rx_ring->dev,
1585 IXGBE_CB(skb)->dma,
1586 frag->page_offset,
1587 ixgbe_rx_bufsz(rx_ring),
1588 DMA_FROM_DEVICE);
1589 }
1590 IXGBE_CB(skb)->dma = 0;
1591}
1592
1593/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001594 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1595 * @rx_ring: rx descriptor ring packet is being transacted on
1596 * @rx_desc: pointer to the EOP Rx descriptor
1597 * @skb: pointer to current skb being fixed
1598 *
1599 * Check for corrupted packet headers caused by senders on the local L2
1600 * embedded NIC switch not setting up their Tx Descriptors right. These
1601 * should be very rare.
1602 *
1603 * Also address the case where we are pulling data in on pages only
1604 * and as such no data is present in the skb header.
1605 *
1606 * In addition if skb is not at least 60 bytes we need to pad it so that
1607 * it is large enough to qualify as a valid Ethernet frame.
1608 *
1609 * Returns true if an error was encountered and skb was freed.
1610 **/
1611static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1612 union ixgbe_adv_rx_desc *rx_desc,
1613 struct sk_buff *skb)
1614{
Alexander Duyckf8003262012-03-03 02:35:52 +00001615 struct net_device *netdev = rx_ring->netdev;
Alexander Duyckf8003262012-03-03 02:35:52 +00001616
1617 /* verify that the packet does not have any known errors */
1618 if (unlikely(ixgbe_test_staterr(rx_desc,
1619 IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1620 !(netdev->features & NETIF_F_RXALL))) {
1621 dev_kfree_skb_any(skb);
1622 return true;
1623 }
1624
Alexander Duyck19861ce2012-07-20 08:08:33 +00001625 /* place header in linear portion of buffer */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001626 if (skb_is_nonlinear(skb))
1627 ixgbe_pull_tail(rx_ring, skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001628
Alexander Duyck57efd442012-06-25 21:54:46 +00001629#ifdef IXGBE_FCOE
1630 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1631 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc))
1632 return false;
1633
1634#endif
Alexander Duyckf8003262012-03-03 02:35:52 +00001635 /* if skb_pad returns an error the skb was freed */
1636 if (unlikely(skb->len < 60)) {
1637 int pad_len = 60 - skb->len;
1638
1639 if (skb_pad(skb, pad_len))
1640 return true;
1641 __skb_put(skb, pad_len);
1642 }
1643
1644 return false;
1645}
1646
1647/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001648 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1649 * @rx_ring: rx descriptor ring to store buffers on
1650 * @old_buff: donor buffer to have page reused
1651 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001652 * Synchronizes page for reuse by the adapter
Alexander Duyckf8003262012-03-03 02:35:52 +00001653 **/
1654static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1655 struct ixgbe_rx_buffer *old_buff)
1656{
1657 struct ixgbe_rx_buffer *new_buff;
1658 u16 nta = rx_ring->next_to_alloc;
Alexander Duyckf8003262012-03-03 02:35:52 +00001659
1660 new_buff = &rx_ring->rx_buffer_info[nta];
1661
1662 /* update, and store next to alloc */
1663 nta++;
1664 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1665
1666 /* transfer page from old buffer to new buffer */
1667 new_buff->page = old_buff->page;
1668 new_buff->dma = old_buff->dma;
Alexander Duyck0549ae22012-07-20 08:08:18 +00001669 new_buff->page_offset = old_buff->page_offset;
Alexander Duyckf8003262012-03-03 02:35:52 +00001670
1671 /* sync the buffer for use by the device */
1672 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001673 new_buff->page_offset,
1674 ixgbe_rx_bufsz(rx_ring),
Alexander Duyckf8003262012-03-03 02:35:52 +00001675 DMA_FROM_DEVICE);
Alexander Duyckf8003262012-03-03 02:35:52 +00001676}
1677
1678/**
1679 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1680 * @rx_ring: rx descriptor ring to transact packets on
1681 * @rx_buffer: buffer containing page to add
1682 * @rx_desc: descriptor containing length of buffer written by hardware
1683 * @skb: sk_buff to place the data into
1684 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001685 * This function will add the data contained in rx_buffer->page to the skb.
1686 * This is done either through a direct copy if the data in the buffer is
1687 * less than the skb header size, otherwise it will just attach the page as
1688 * a frag to the skb.
1689 *
1690 * The function will then update the page offset if necessary and return
1691 * true if the buffer can be reused by the adapter.
Alexander Duyckf8003262012-03-03 02:35:52 +00001692 **/
Alexander Duyck0549ae22012-07-20 08:08:18 +00001693static bool ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
Alexander Duyckf8003262012-03-03 02:35:52 +00001694 struct ixgbe_rx_buffer *rx_buffer,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001695 union ixgbe_adv_rx_desc *rx_desc,
1696 struct sk_buff *skb)
Alexander Duyckf8003262012-03-03 02:35:52 +00001697{
Alexander Duyck0549ae22012-07-20 08:08:18 +00001698 struct page *page = rx_buffer->page;
1699 unsigned int size = le16_to_cpu(rx_desc->wb.upper.length);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001700#if (PAGE_SIZE < 8192)
Alexander Duyck0549ae22012-07-20 08:08:18 +00001701 unsigned int truesize = ixgbe_rx_bufsz(rx_ring);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001702#else
1703 unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
1704 unsigned int last_offset = ixgbe_rx_pg_size(rx_ring) -
1705 ixgbe_rx_bufsz(rx_ring);
1706#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001707
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001708 if ((size <= IXGBE_RX_HDR_SIZE) && !skb_is_nonlinear(skb)) {
1709 unsigned char *va = page_address(page) + rx_buffer->page_offset;
1710
1711 memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long)));
1712
1713 /* we can reuse buffer as-is, just make sure it is local */
1714 if (likely(page_to_nid(page) == numa_node_id()))
1715 return true;
1716
1717 /* this page cannot be reused so discard it */
1718 put_page(page);
1719 return false;
1720 }
1721
Alexander Duyck0549ae22012-07-20 08:08:18 +00001722 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
1723 rx_buffer->page_offset, size, truesize);
1724
Alexander Duyck09816fb2012-07-20 08:08:23 +00001725 /* avoid re-using remote pages */
1726 if (unlikely(page_to_nid(page) != numa_node_id()))
1727 return false;
1728
1729#if (PAGE_SIZE < 8192)
1730 /* if we are only owner of page we can reuse it */
1731 if (unlikely(page_count(page) != 1))
Alexander Duyck0549ae22012-07-20 08:08:18 +00001732 return false;
1733
1734 /* flip page offset to other buffer */
1735 rx_buffer->page_offset ^= truesize;
1736
Alexander Duyck09816fb2012-07-20 08:08:23 +00001737 /*
1738 * since we are the only owner of the page and we need to
1739 * increment it, just set the value to 2 in order to avoid
1740 * an unecessary locked operation
1741 */
1742 atomic_set(&page->_count, 2);
1743#else
1744 /* move offset up to the next cache line */
1745 rx_buffer->page_offset += truesize;
1746
1747 if (rx_buffer->page_offset > last_offset)
1748 return false;
1749
Alexander Duyck0549ae22012-07-20 08:08:18 +00001750 /* bump ref count on page before it is given to the stack */
1751 get_page(page);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001752#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001753
1754 return true;
Alexander Duyckf8003262012-03-03 02:35:52 +00001755}
1756
Alexander Duyck18806c92012-07-20 08:08:44 +00001757static struct sk_buff *ixgbe_fetch_rx_buffer(struct ixgbe_ring *rx_ring,
1758 union ixgbe_adv_rx_desc *rx_desc)
1759{
1760 struct ixgbe_rx_buffer *rx_buffer;
1761 struct sk_buff *skb;
1762 struct page *page;
1763
1764 rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];
1765 page = rx_buffer->page;
1766 prefetchw(page);
1767
1768 skb = rx_buffer->skb;
1769
1770 if (likely(!skb)) {
1771 void *page_addr = page_address(page) +
1772 rx_buffer->page_offset;
1773
1774 /* prefetch first cache line of first page */
1775 prefetch(page_addr);
1776#if L1_CACHE_BYTES < 128
1777 prefetch(page_addr + L1_CACHE_BYTES);
1778#endif
1779
1780 /* allocate a skb to store the frags */
1781 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1782 IXGBE_RX_HDR_SIZE);
1783 if (unlikely(!skb)) {
1784 rx_ring->rx_stats.alloc_rx_buff_failed++;
1785 return NULL;
1786 }
1787
1788 /*
1789 * we will be copying header into skb->data in
1790 * pskb_may_pull so it is in our interest to prefetch
1791 * it now to avoid a possible cache miss
1792 */
1793 prefetchw(skb->data);
1794
1795 /*
1796 * Delay unmapping of the first packet. It carries the
1797 * header information, HW may still access the header
1798 * after the writeback. Only unmap it when EOP is
1799 * reached
1800 */
1801 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1802 goto dma_sync;
1803
1804 IXGBE_CB(skb)->dma = rx_buffer->dma;
1805 } else {
1806 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))
1807 ixgbe_dma_sync_frag(rx_ring, skb);
1808
1809dma_sync:
1810 /* we are reusing so sync this buffer for CPU use */
1811 dma_sync_single_range_for_cpu(rx_ring->dev,
1812 rx_buffer->dma,
1813 rx_buffer->page_offset,
1814 ixgbe_rx_bufsz(rx_ring),
1815 DMA_FROM_DEVICE);
1816 }
1817
1818 /* pull page into skb */
1819 if (ixgbe_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
1820 /* hand second half of page back to the ring */
1821 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
1822 } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) {
1823 /* the page has been released from the ring */
1824 IXGBE_CB(skb)->page_released = true;
1825 } else {
1826 /* we are not reusing the buffer so unmap it */
1827 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
1828 ixgbe_rx_pg_size(rx_ring),
1829 DMA_FROM_DEVICE);
1830 }
1831
1832 /* clear contents of buffer_info */
1833 rx_buffer->skb = NULL;
1834 rx_buffer->dma = 0;
1835 rx_buffer->page = NULL;
1836
1837 return skb;
Alexander Duyckf8003262012-03-03 02:35:52 +00001838}
1839
1840/**
1841 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
1842 * @q_vector: structure containing interrupt and ring information
1843 * @rx_ring: rx descriptor ring to transact packets on
1844 * @budget: Total limit on number of packets to process
1845 *
1846 * This function provides a "bounce buffer" approach to Rx interrupt
1847 * processing. The advantage to this is that on systems that have
1848 * expensive overhead for IOMMU access this provides a means of avoiding
1849 * it by maintaining the mapping of the page to the syste.
1850 *
1851 * Returns true if all work is completed without reaching budget
1852 **/
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001853static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001854 struct ixgbe_ring *rx_ring,
Alexander Duyckf4de00e2012-09-25 00:29:37 +00001855 const int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001856{
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001857 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Ben Greear3f2d1c02012-03-08 08:28:41 +00001858#ifdef IXGBE_FCOE
Alexander Duyckf8003262012-03-03 02:35:52 +00001859 struct ixgbe_adapter *adapter = q_vector->adapter;
Mark Rustad4ffdf912012-07-18 06:05:50 +00001860 int ddp_bytes;
1861 unsigned int mss = 0;
Yi Zou3d8fd382009-06-08 14:38:44 +00001862#endif /* IXGBE_FCOE */
Alexander Duyckf8003262012-03-03 02:35:52 +00001863 u16 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001864
Alexander Duyckf8003262012-03-03 02:35:52 +00001865 do {
Alexander Duyckf8003262012-03-03 02:35:52 +00001866 union ixgbe_adv_rx_desc *rx_desc;
1867 struct sk_buff *skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001868
Alexander Duyckf8003262012-03-03 02:35:52 +00001869 /* return some buffers to hardware, one at a time is too slow */
1870 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
1871 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1872 cleaned_count = 0;
1873 }
Auke Kok9a799d72007-09-15 14:07:45 -07001874
Alexander Duyck18806c92012-07-20 08:08:44 +00001875 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ring->next_to_clean);
Auke Kok9a799d72007-09-15 14:07:45 -07001876
Alexander Duyckf8003262012-03-03 02:35:52 +00001877 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD))
1878 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001879
Alexander Duyckf8003262012-03-03 02:35:52 +00001880 /*
1881 * This memory barrier is needed to keep us from reading
1882 * any other fields out of the rx_desc until we know the
1883 * RXD_STAT_DD bit is set
1884 */
1885 rmb();
Auke Kok9a799d72007-09-15 14:07:45 -07001886
Alexander Duyck18806c92012-07-20 08:08:44 +00001887 /* retrieve a buffer from the ring */
1888 skb = ixgbe_fetch_rx_buffer(rx_ring, rx_desc);
Alexander Duyckf8003262012-03-03 02:35:52 +00001889
Alexander Duyck18806c92012-07-20 08:08:44 +00001890 /* exit if we failed to retrieve a buffer */
1891 if (!skb)
1892 break;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001893
Auke Kok9a799d72007-09-15 14:07:45 -07001894 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001895
Alexander Duyckf8003262012-03-03 02:35:52 +00001896 /* place incomplete frames back on ring for completion */
1897 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
1898 continue;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001899
Alexander Duyckf8003262012-03-03 02:35:52 +00001900 /* verify the packet layout is correct */
1901 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
1902 continue;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001903
1904 /* probably a little skewed due to removing CRC */
1905 total_rx_bytes += skb->len;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001906
Alexander Duyck8a0da212012-01-31 02:59:49 +00001907 /* populate checksum, timestamp, VLAN, and protocol */
1908 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
1909
Yi Zou332d4a72009-05-13 13:11:53 +00001910#ifdef IXGBE_FCOE
1911 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyck57efd442012-06-25 21:54:46 +00001912 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001913 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
Mark Rustad4ffdf912012-07-18 06:05:50 +00001914 /* include DDPed FCoE data */
1915 if (ddp_bytes > 0) {
1916 if (!mss) {
1917 mss = rx_ring->netdev->mtu -
1918 sizeof(struct fcoe_hdr) -
1919 sizeof(struct fc_frame_header) -
1920 sizeof(struct fcoe_crc_eof);
1921 if (mss > 512)
1922 mss &= ~511;
1923 }
1924 total_rx_bytes += ddp_bytes;
1925 total_rx_packets += DIV_ROUND_UP(ddp_bytes,
1926 mss);
1927 }
David S. Miller823dcd22011-08-20 10:39:12 -07001928 if (!ddp_bytes) {
1929 dev_kfree_skb_any(skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001930 continue;
David S. Miller823dcd22011-08-20 10:39:12 -07001931 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001932 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001933
Yi Zou332d4a72009-05-13 13:11:53 +00001934#endif /* IXGBE_FCOE */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001935 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001936
Alexander Duyckf8003262012-03-03 02:35:52 +00001937 /* update budget accounting */
Alexander Duyckf4de00e2012-09-25 00:29:37 +00001938 total_rx_packets++;
1939 } while (likely(total_rx_packets < budget));
Auke Kok9a799d72007-09-15 14:07:45 -07001940
Alexander Duyckc267fc12010-11-16 19:27:00 -08001941 u64_stats_update_begin(&rx_ring->syncp);
1942 rx_ring->stats.packets += total_rx_packets;
1943 rx_ring->stats.bytes += total_rx_bytes;
1944 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001945 q_vector->rx.total_packets += total_rx_packets;
1946 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001947
Alexander Duyckf8003262012-03-03 02:35:52 +00001948 if (cleaned_count)
1949 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1950
Alexander Duyckf4de00e2012-09-25 00:29:37 +00001951 return (total_rx_packets < budget);
Auke Kok9a799d72007-09-15 14:07:45 -07001952}
1953
Auke Kok9a799d72007-09-15 14:07:45 -07001954/**
1955 * ixgbe_configure_msix - Configure MSI-X hardware
1956 * @adapter: board private structure
1957 *
1958 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1959 * interrupts.
1960 **/
1961static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1962{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001963 struct ixgbe_q_vector *q_vector;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001964 int v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001965 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001966
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00001967 /* Populate MSIX to EITR Select */
1968 if (adapter->num_vfs > 32) {
1969 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
1970 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
1971 }
1972
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001973 /*
1974 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001975 * corresponding register.
1976 */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001977 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001978 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001979 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001980
Alexander Duycka5579282012-02-08 07:50:04 +00001981 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001982 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001983
Alexander Duycka5579282012-02-08 07:50:04 +00001984 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001985 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001986
Alexander Duyckfe49f042009-06-04 16:00:09 +00001987 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001988 }
1989
Alexander Duyckbd508172010-11-16 19:27:03 -08001990 switch (adapter->hw.mac.type) {
1991 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001992 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001993 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001994 break;
1995 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001996 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001997 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001998 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08001999 default:
2000 break;
2001 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002002 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07002003
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07002004 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002005 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002006 mask &= ~(IXGBE_EIMS_OTHER |
2007 IXGBE_EIMS_MAILBOX |
2008 IXGBE_EIMS_LSC);
2009
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002010 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07002011}
2012
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002013enum latency_range {
2014 lowest_latency = 0,
2015 low_latency = 1,
2016 bulk_latency = 2,
2017 latency_invalid = 255
2018};
2019
2020/**
2021 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00002022 * @q_vector: structure containing interrupt and ring information
2023 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002024 *
2025 * Stores a new ITR value based on packets and byte
2026 * counts during the last interrupt. The advantage of per interrupt
2027 * computation is faster updates and more accurate ITR for the current
2028 * traffic pattern. Constants in this function were computed
2029 * based on theoretical maximum wire speed and thresholds were set based
2030 * on testing data as well as attempting to minimize response time
2031 * while increasing bulk throughput.
2032 * this functionality is controlled by the InterruptThrottleRate module
2033 * parameter (see ixgbe_param.c)
2034 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00002035static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
2036 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002037{
Alexander Duyckbd198052011-06-11 01:45:08 +00002038 int bytes = ring_container->total_bytes;
2039 int packets = ring_container->total_packets;
2040 u32 timepassed_us;
Alexander Duyck621bd702012-02-08 07:50:20 +00002041 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00002042 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002043
2044 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00002045 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002046
2047 /* simple throttlerate management
Alexander Duyck621bd702012-02-08 07:50:20 +00002048 * 0-10MB/s lowest (100000 ints/s)
2049 * 10-20MB/s low (20000 ints/s)
2050 * 20-1249MB/s bulk (8000 ints/s)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002051 */
2052 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002053 timepassed_us = q_vector->itr >> 2;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002054 bytes_perint = bytes / timepassed_us; /* bytes/usec */
2055
2056 switch (itr_setting) {
2057 case lowest_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002058 if (bytes_perint > 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002059 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002060 break;
2061 case low_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002062 if (bytes_perint > 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002063 itr_setting = bulk_latency;
Alexander Duyck621bd702012-02-08 07:50:20 +00002064 else if (bytes_perint <= 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002065 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002066 break;
2067 case bulk_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002068 if (bytes_perint <= 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002069 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002070 break;
2071 }
2072
Alexander Duyckbd198052011-06-11 01:45:08 +00002073 /* clear work counters since we have the values we need */
2074 ring_container->total_bytes = 0;
2075 ring_container->total_packets = 0;
2076
2077 /* write updated itr to ring container */
2078 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002079}
2080
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002081/**
2082 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00002083 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002084 *
2085 * This function is made to be called by ethtool and by the driver
2086 * when it needs to update EITR registers at runtime. Hardware
2087 * specific quirks/differences are taken care of here.
2088 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00002089void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002090{
Alexander Duyckfe49f042009-06-04 16:00:09 +00002091 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002092 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002093 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002094 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002095
Alexander Duyckbd508172010-11-16 19:27:03 -08002096 switch (adapter->hw.mac.type) {
2097 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002098 /* must write high and low 16 bits to reset counter */
2099 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08002100 break;
2101 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002102 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002103 /*
2104 * set the WDIS bit to not clear the timer bits and cause an
2105 * immediate assertion of the interrupt
2106 */
2107 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08002108 break;
2109 default:
2110 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002111 }
2112 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
2113}
2114
Alexander Duyckbd198052011-06-11 01:45:08 +00002115static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002116{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002117 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00002118 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002119
Alexander Duyckbd198052011-06-11 01:45:08 +00002120 ixgbe_update_itr(q_vector, &q_vector->tx);
2121 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002122
Alexander Duyck08c88332011-06-11 01:45:03 +00002123 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002124
2125 switch (current_itr) {
2126 /* counts and packets in update_itr are dependent on these numbers */
2127 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002128 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002129 break;
2130 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002131 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002132 break;
2133 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002134 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002135 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00002136 default:
2137 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002138 }
2139
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002140 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002141 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002142 new_itr = (10 * new_itr * q_vector->itr) /
2143 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002144
Alexander Duyckbd198052011-06-11 01:45:08 +00002145 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002146 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002147
2148 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002149 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002150}
2151
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002152/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00002153 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00002154 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002155 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00002156static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002157{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002158 struct ixgbe_hw *hw = &adapter->hw;
2159 u32 eicr = adapter->interrupt_event;
2160
Alexander Duyckf0f97782011-04-22 04:08:09 +00002161 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00002162 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002163
Alexander Duyckf0f97782011-04-22 04:08:09 +00002164 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2165 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2166 return;
2167
2168 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2169
Joe Perches7ca647b2010-09-07 21:35:40 +00002170 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002171 case IXGBE_DEV_ID_82599_T3_LOM:
2172 /*
2173 * Since the warning interrupt is for both ports
2174 * we don't have to check if:
2175 * - This interrupt wasn't for our port.
2176 * - We may have missed the interrupt so always have to
2177 * check if we got a LSC
2178 */
2179 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
2180 !(eicr & IXGBE_EICR_LSC))
2181 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002182
Alexander Duyckf0f97782011-04-22 04:08:09 +00002183 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
2184 u32 autoneg;
2185 bool link_up = false;
2186
Joe Perches7ca647b2010-09-07 21:35:40 +00002187 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
2188
Alexander Duyckf0f97782011-04-22 04:08:09 +00002189 if (link_up)
2190 return;
2191 }
2192
2193 /* Check if this is not due to overtemp */
2194 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2195 return;
2196
2197 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00002198 default:
2199 if (!(eicr & IXGBE_EICR_GPI_SDP0))
2200 return;
2201 break;
2202 }
2203 e_crit(drv,
2204 "Network adapter has been stopped because it has over heated. "
2205 "Restart the computer. If the problem persists, "
2206 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00002207
2208 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002209}
2210
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002211static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2212{
2213 struct ixgbe_hw *hw = &adapter->hw;
2214
2215 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
2216 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002217 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002218 /* write to clear the interrupt */
2219 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
2220 }
2221}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002222
Jacob Keller4f51bf72011-08-20 04:49:45 +00002223static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2224{
2225 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2226 return;
2227
2228 switch (adapter->hw.mac.type) {
2229 case ixgbe_mac_82599EB:
2230 /*
2231 * Need to check link state so complete overtemp check
2232 * on service task
2233 */
2234 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
2235 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2236 adapter->interrupt_event = eicr;
2237 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2238 ixgbe_service_event_schedule(adapter);
2239 return;
2240 }
2241 return;
2242 case ixgbe_mac_X540:
2243 if (!(eicr & IXGBE_EICR_TS))
2244 return;
2245 break;
2246 default:
2247 return;
2248 }
2249
2250 e_crit(drv,
2251 "Network adapter has been stopped because it has over heated. "
2252 "Restart the computer. If the problem persists, "
2253 "power off the system and replace the adapter\n");
2254}
2255
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002256static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2257{
2258 struct ixgbe_hw *hw = &adapter->hw;
2259
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002260 if (eicr & IXGBE_EICR_GPI_SDP2) {
2261 /* Clear the interrupt */
2262 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002263 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2264 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2265 ixgbe_service_event_schedule(adapter);
2266 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002267 }
2268
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002269 if (eicr & IXGBE_EICR_GPI_SDP1) {
2270 /* Clear the interrupt */
2271 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002272 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2273 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2274 ixgbe_service_event_schedule(adapter);
2275 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002276 }
2277}
2278
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002279static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2280{
2281 struct ixgbe_hw *hw = &adapter->hw;
2282
2283 adapter->lsc_int++;
2284 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2285 adapter->link_check_timeout = jiffies;
2286 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2287 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002288 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002289 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002290 }
2291}
2292
Alexander Duyckfe49f042009-06-04 16:00:09 +00002293static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2294 u64 qmask)
2295{
2296 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002297 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002298
Alexander Duyckbd508172010-11-16 19:27:03 -08002299 switch (hw->mac.type) {
2300 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002301 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002302 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2303 break;
2304 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002305 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002306 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002307 if (mask)
2308 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002309 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002310 if (mask)
2311 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2312 break;
2313 default:
2314 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002315 }
2316 /* skip the flush */
2317}
2318
2319static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002320 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002321{
2322 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002323 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002324
Alexander Duyckbd508172010-11-16 19:27:03 -08002325 switch (hw->mac.type) {
2326 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002327 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002328 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2329 break;
2330 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002331 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002332 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002333 if (mask)
2334 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002335 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002336 if (mask)
2337 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2338 break;
2339 default:
2340 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002341 }
2342 /* skip the flush */
2343}
2344
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002345/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002346 * ixgbe_irq_enable - Enable default interrupt generation settings
2347 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002348 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002349static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2350 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002351{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002352 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002353
Alexander Duyck2c4af692011-07-15 07:29:55 +00002354 /* don't reenable LSC while waiting for link */
2355 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2356 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002357
Alexander Duyck2c4af692011-07-15 07:29:55 +00002358 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002359 switch (adapter->hw.mac.type) {
2360 case ixgbe_mac_82599EB:
2361 mask |= IXGBE_EIMS_GPI_SDP0;
2362 break;
2363 case ixgbe_mac_X540:
2364 mask |= IXGBE_EIMS_TS;
2365 break;
2366 default:
2367 break;
2368 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002369 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2370 mask |= IXGBE_EIMS_GPI_SDP1;
2371 switch (adapter->hw.mac.type) {
2372 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002373 mask |= IXGBE_EIMS_GPI_SDP1;
2374 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002375 case ixgbe_mac_X540:
2376 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002377 mask |= IXGBE_EIMS_MAILBOX;
2378 break;
2379 default:
2380 break;
2381 }
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002382
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002383 if (adapter->hw.mac.type == ixgbe_mac_X540)
2384 mask |= IXGBE_EIMS_TIMESYNC;
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002385
Alexander Duyck2c4af692011-07-15 07:29:55 +00002386 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2387 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2388 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002389
Alexander Duyck2c4af692011-07-15 07:29:55 +00002390 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2391 if (queues)
2392 ixgbe_irq_enable_queues(adapter, ~0);
2393 if (flush)
2394 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002395}
2396
Alexander Duyck2c4af692011-07-15 07:29:55 +00002397static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002398{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002399 struct ixgbe_adapter *adapter = data;
2400 struct ixgbe_hw *hw = &adapter->hw;
2401 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002402
Alexander Duyck2c4af692011-07-15 07:29:55 +00002403 /*
2404 * Workaround for Silicon errata. Use clear-by-write instead
2405 * of clear-by-read. Reading with EICS will return the
2406 * interrupt causes without clearing, which later be done
2407 * with the write to EICR.
2408 */
2409 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
2410 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002411
Alexander Duyck2c4af692011-07-15 07:29:55 +00002412 if (eicr & IXGBE_EICR_LSC)
2413 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002414
Alexander Duyck2c4af692011-07-15 07:29:55 +00002415 if (eicr & IXGBE_EICR_MAILBOX)
2416 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002417
Alexander Duyck2c4af692011-07-15 07:29:55 +00002418 switch (hw->mac.type) {
2419 case ixgbe_mac_82599EB:
2420 case ixgbe_mac_X540:
2421 if (eicr & IXGBE_EICR_ECC)
2422 e_info(link, "Received unrecoverable ECC Err, please "
2423 "reboot\n");
2424 /* Handle Flow Director Full threshold interrupt */
2425 if (eicr & IXGBE_EICR_FLOW_DIR) {
2426 int reinit_count = 0;
2427 int i;
2428 for (i = 0; i < adapter->num_tx_queues; i++) {
2429 struct ixgbe_ring *ring = adapter->tx_ring[i];
2430 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2431 &ring->state))
2432 reinit_count++;
2433 }
2434 if (reinit_count) {
2435 /* no more flow director interrupts until after init */
2436 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2437 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2438 ixgbe_service_event_schedule(adapter);
2439 }
2440 }
2441 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002442 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002443 break;
2444 default:
2445 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002446 }
2447
Alexander Duyck2c4af692011-07-15 07:29:55 +00002448 ixgbe_check_fan_failure(adapter, eicr);
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002449
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002450 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
2451 ixgbe_ptp_check_pps_event(adapter, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07002452
Alexander Duyck2c4af692011-07-15 07:29:55 +00002453 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002454 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002455 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002456
Alexander Duyck2c4af692011-07-15 07:29:55 +00002457 return IRQ_HANDLED;
2458}
2459
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002460static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002461{
2462 struct ixgbe_q_vector *q_vector = data;
2463
Auke Kok9a799d72007-09-15 14:07:45 -07002464 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002465
2466 if (q_vector->rx.ring || q_vector->tx.ring)
2467 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002468
2469 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002470}
2471
Auke Kok9a799d72007-09-15 14:07:45 -07002472/**
Alexander Duyckeb01b972012-02-08 07:51:27 +00002473 * ixgbe_poll - NAPI Rx polling callback
2474 * @napi: structure for representing this polling device
2475 * @budget: how many packets driver is allowed to clean
2476 *
2477 * This function is used for legacy and MSI, NAPI mode
2478 **/
Jeff Kirsher8af3c332012-02-18 07:08:14 +00002479int ixgbe_poll(struct napi_struct *napi, int budget)
Alexander Duyckeb01b972012-02-08 07:51:27 +00002480{
2481 struct ixgbe_q_vector *q_vector =
2482 container_of(napi, struct ixgbe_q_vector, napi);
2483 struct ixgbe_adapter *adapter = q_vector->adapter;
2484 struct ixgbe_ring *ring;
2485 int per_ring_budget;
2486 bool clean_complete = true;
2487
2488#ifdef CONFIG_IXGBE_DCA
2489 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2490 ixgbe_update_dca(q_vector);
2491#endif
2492
2493 ixgbe_for_each_ring(ring, q_vector->tx)
2494 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
2495
2496 /* attempt to distribute budget to each queue fairly, but don't allow
2497 * the budget to go below 1 because we'll exit polling */
2498 if (q_vector->rx.count > 1)
2499 per_ring_budget = max(budget/q_vector->rx.count, 1);
2500 else
2501 per_ring_budget = budget;
2502
2503 ixgbe_for_each_ring(ring, q_vector->rx)
2504 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
2505 per_ring_budget);
2506
2507 /* If all work not completed, return budget and keep polling */
2508 if (!clean_complete)
2509 return budget;
2510
2511 /* all work done, exit the polling mode */
2512 napi_complete(napi);
2513 if (adapter->rx_itr_setting & 1)
2514 ixgbe_set_itr(q_vector);
2515 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2516 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
2517
2518 return 0;
2519}
2520
2521/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002522 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2523 * @adapter: board private structure
2524 *
2525 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2526 * interrupts from the kernel.
2527 **/
2528static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2529{
2530 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002531 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002532 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002533
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002534 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002535 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002536 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002537
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002538 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002539 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002540 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002541 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002542 } else if (q_vector->rx.ring) {
2543 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2544 "%s-%s-%d", netdev->name, "rx", ri++);
2545 } else if (q_vector->tx.ring) {
2546 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2547 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002548 } else {
2549 /* skip this unused q_vector */
2550 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002551 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002552 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2553 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002554 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002555 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002556 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002557 goto free_queue_irqs;
2558 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002559 /* If Flow Director is enabled, set interrupt affinity */
2560 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2561 /* assign the mask for this irq */
2562 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002563 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002564 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002565 }
2566
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002567 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002568 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002569 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002570 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002571 goto free_queue_irqs;
2572 }
2573
2574 return 0;
2575
2576free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002577 while (vector) {
2578 vector--;
2579 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2580 NULL);
2581 free_irq(adapter->msix_entries[vector].vector,
2582 adapter->q_vector[vector]);
2583 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002584 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2585 pci_disable_msix(adapter->pdev);
2586 kfree(adapter->msix_entries);
2587 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002588 return err;
2589}
2590
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002591/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002592 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002593 * @irq: interrupt number
2594 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002595 **/
2596static irqreturn_t ixgbe_intr(int irq, void *data)
2597{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002598 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002599 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002600 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002601 u32 eicr;
2602
Don Skidmore54037502009-02-21 15:42:56 -08002603 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002604 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002605 * before the read of EICR.
2606 */
2607 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2608
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002609 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002610 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002611 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002612 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002613 /*
2614 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002615 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002616 * have disabled interrupts due to EIAM
2617 * finish the workaround of silicon errata on 82598. Unmask
2618 * the interrupt that we masked before the EICR read.
2619 */
2620 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2621 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002622 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002623 }
Auke Kok9a799d72007-09-15 14:07:45 -07002624
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002625 if (eicr & IXGBE_EICR_LSC)
2626 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002627
Alexander Duyckbd508172010-11-16 19:27:03 -08002628 switch (hw->mac.type) {
2629 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002630 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002631 /* Fall through */
2632 case ixgbe_mac_X540:
2633 if (eicr & IXGBE_EICR_ECC)
2634 e_info(link, "Received unrecoverable ECC err, please "
2635 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002636 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002637 break;
2638 default:
2639 break;
2640 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002641
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002642 ixgbe_check_fan_failure(adapter, eicr);
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002643 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
2644 ixgbe_ptp_check_pps_event(adapter, eicr);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002645
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00002646 /* would disable interrupts here but EIAM disabled it */
2647 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002648
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002649 /*
2650 * re-enable link(maybe) and non-queue interrupts, no flush.
2651 * ixgbe_poll will re-enable the queue interrupts
2652 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002653 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2654 ixgbe_irq_enable(adapter, false, false);
2655
Auke Kok9a799d72007-09-15 14:07:45 -07002656 return IRQ_HANDLED;
2657}
2658
2659/**
2660 * ixgbe_request_irq - initialize interrupts
2661 * @adapter: board private structure
2662 *
2663 * Attempts to configure interrupts using the best available
2664 * capabilities of the hardware and kernel.
2665 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002666static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002667{
2668 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002669 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002670
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002671 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002672 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002673 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002674 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002675 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002676 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002677 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002678 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002679
Alexander Duyckde88eee2012-02-08 07:49:59 +00002680 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002681 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002682
Auke Kok9a799d72007-09-15 14:07:45 -07002683 return err;
2684}
2685
2686static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2687{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002688 int vector;
Auke Kok9a799d72007-09-15 14:07:45 -07002689
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002690 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002691 free_irq(adapter->pdev->irq, adapter);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002692 return;
Auke Kok9a799d72007-09-15 14:07:45 -07002693 }
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002694
2695 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
2696 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
2697 struct msix_entry *entry = &adapter->msix_entries[vector];
2698
2699 /* free only the irqs that were actually requested */
2700 if (!q_vector->rx.ring && !q_vector->tx.ring)
2701 continue;
2702
2703 /* clear the affinity_mask in the IRQ descriptor */
2704 irq_set_affinity_hint(entry->vector, NULL);
2705
2706 free_irq(entry->vector, q_vector);
2707 }
2708
2709 free_irq(adapter->msix_entries[vector++].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002710}
2711
2712/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002713 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2714 * @adapter: board private structure
2715 **/
2716static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2717{
Alexander Duyckbd508172010-11-16 19:27:03 -08002718 switch (adapter->hw.mac.type) {
2719 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002720 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002721 break;
2722 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002723 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002724 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2725 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002726 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002727 break;
2728 default:
2729 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002730 }
2731 IXGBE_WRITE_FLUSH(&adapter->hw);
2732 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002733 int vector;
2734
2735 for (vector = 0; vector < adapter->num_q_vectors; vector++)
2736 synchronize_irq(adapter->msix_entries[vector].vector);
2737
2738 synchronize_irq(adapter->msix_entries[vector++].vector);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002739 } else {
2740 synchronize_irq(adapter->pdev->irq);
2741 }
2742}
2743
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002744/**
Auke Kok9a799d72007-09-15 14:07:45 -07002745 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2746 *
2747 **/
2748static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2749{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002750 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002751
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002752 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002753
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002754 ixgbe_set_ivar(adapter, 0, 0, 0);
2755 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002756
Emil Tantilov396e7992010-07-01 20:05:12 +00002757 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002758}
2759
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002760/**
2761 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2762 * @adapter: board private structure
2763 * @ring: structure containing ring specific data
2764 *
2765 * Configure the Tx descriptor ring after a reset.
2766 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002767void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2768 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002769{
2770 struct ixgbe_hw *hw = &adapter->hw;
2771 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002772 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002773 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002774 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002775
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002776 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002777 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002778 IXGBE_WRITE_FLUSH(hw);
2779
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002780 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002781 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002782 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2783 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2784 ring->count * sizeof(union ixgbe_adv_tx_desc));
2785 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2786 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002787 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002788
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002789 /*
2790 * set WTHRESH to encourage burst writeback, it should not be set
2791 * higher than 1 when ITR is 0 as it could cause false TX hangs
2792 *
2793 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2794 * to or less than the number of on chip descriptors, which is
2795 * currently 40.
2796 */
Alexander Duycke954b372012-02-08 07:49:38 +00002797 if (!ring->q_vector || (ring->q_vector->itr < 8))
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002798 txdctl |= (1 << 16); /* WTHRESH = 1 */
2799 else
2800 txdctl |= (8 << 16); /* WTHRESH = 8 */
2801
Alexander Duycke954b372012-02-08 07:49:38 +00002802 /*
2803 * Setting PTHRESH to 32 both improves performance
2804 * and avoids a TX hang with DFP enabled
2805 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002806 txdctl |= (1 << 8) | /* HTHRESH = 1 */
2807 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002808
2809 /* reinitialize flowdirector state */
Alexander Duyck39cb6812012-06-06 05:38:20 +00002810 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002811 ring->atr_sample_rate = adapter->atr_sample_rate;
2812 ring->atr_count = 0;
2813 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2814 } else {
2815 ring->atr_sample_rate = 0;
2816 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002817
John Fastabendc84d3242010-11-16 19:27:12 -08002818 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2819
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002820 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002821 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2822
2823 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2824 if (hw->mac.type == ixgbe_mac_82598EB &&
2825 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2826 return;
2827
2828 /* poll to verify queue is enabled */
2829 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002830 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002831 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2832 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2833 if (!wait_loop)
2834 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002835}
2836
Alexander Duyck120ff942010-08-19 13:34:50 +00002837static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2838{
2839 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002840 u32 rttdcs, mtqc;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002841 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002842
2843 if (hw->mac.type == ixgbe_mac_82598EB)
2844 return;
2845
2846 /* disable the arbiter while setting MTQC */
2847 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2848 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2849 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2850
2851 /* set transmit pool layout */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002852 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2853 mtqc = IXGBE_MTQC_VT_ENA;
2854 if (tcs > 4)
2855 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2856 else if (tcs > 1)
2857 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2858 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
2859 mtqc |= IXGBE_MTQC_32VF;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002860 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002861 mtqc |= IXGBE_MTQC_64VF;
2862 } else {
2863 if (tcs > 4)
2864 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2865 else if (tcs > 1)
2866 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2867 else
2868 mtqc = IXGBE_MTQC_64Q_1PB;
2869 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00002870
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002871 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
John Fastabend8b1c0b22011-05-03 02:26:48 +00002872
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002873 /* Enable Security TX Buffer IFG for multiple pb */
2874 if (tcs) {
2875 u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2876 sectx |= IXGBE_SECTX_DCB;
2877 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx);
Alexander Duyck120ff942010-08-19 13:34:50 +00002878 }
2879
2880 /* re-enable the arbiter */
2881 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2882 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2883}
2884
Auke Kok9a799d72007-09-15 14:07:45 -07002885/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002886 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002887 * @adapter: board private structure
2888 *
2889 * Configure the Tx unit of the MAC after a reset.
2890 **/
2891static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2892{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002893 struct ixgbe_hw *hw = &adapter->hw;
2894 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002895 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002896
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002897 ixgbe_setup_mtqc(adapter);
2898
2899 if (hw->mac.type != ixgbe_mac_82598EB) {
2900 /* DMATXCTL.EN must be before Tx queues are enabled */
2901 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2902 dmatxctl |= IXGBE_DMATXCTL_TE;
2903 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2904 }
2905
Auke Kok9a799d72007-09-15 14:07:45 -07002906 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002907 for (i = 0; i < adapter->num_tx_queues; i++)
2908 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002909}
2910
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00002911static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
2912 struct ixgbe_ring *ring)
2913{
2914 struct ixgbe_hw *hw = &adapter->hw;
2915 u8 reg_idx = ring->reg_idx;
2916 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2917
2918 srrctl |= IXGBE_SRRCTL_DROP_EN;
2919
2920 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2921}
2922
2923static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
2924 struct ixgbe_ring *ring)
2925{
2926 struct ixgbe_hw *hw = &adapter->hw;
2927 u8 reg_idx = ring->reg_idx;
2928 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2929
2930 srrctl &= ~IXGBE_SRRCTL_DROP_EN;
2931
2932 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2933}
2934
2935#ifdef CONFIG_IXGBE_DCB
2936void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2937#else
2938static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2939#endif
2940{
2941 int i;
2942 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
2943
2944 if (adapter->ixgbe_ieee_pfc)
2945 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
2946
2947 /*
2948 * We should set the drop enable bit if:
2949 * SR-IOV is enabled
2950 * or
2951 * Number of Rx queues > 1 and flow control is disabled
2952 *
2953 * This allows us to avoid head of line blocking for security
2954 * and performance reasons.
2955 */
2956 if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
2957 !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
2958 for (i = 0; i < adapter->num_rx_queues; i++)
2959 ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
2960 } else {
2961 for (i = 0; i < adapter->num_rx_queues; i++)
2962 ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
2963 }
2964}
2965
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002966#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002967
Yi Zoua6616b42009-08-06 13:05:23 +00002968static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002969 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002970{
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002971 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002972 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002973 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002974
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002975 if (hw->mac.type == ixgbe_mac_82598EB) {
2976 u16 mask = adapter->ring_feature[RING_F_RSS].mask;
2977
2978 /*
2979 * if VMDq is not active we must program one srrctl register
2980 * per RSS queue since we have enabled RDRXCTL.MVMEN
2981 */
2982 reg_idx &= mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002983 }
2984
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002985 /* configure header buffer length, needed for RSC */
2986 srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002987
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002988 /* configure the packet buffer length */
Alexander Duyckf8003262012-03-03 02:35:52 +00002989 srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002990
2991 /* configure descriptor type */
Alexander Duyckf8003262012-03-03 02:35:52 +00002992 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002993
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002994 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002995}
2996
Alexander Duyck05abb122010-08-19 13:35:41 +00002997static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002998{
Alexander Duyck05abb122010-08-19 13:35:41 +00002999 struct ixgbe_hw *hw = &adapter->hw;
3000 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00003001 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
3002 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00003003 u32 mrqc = 0, reta = 0;
3004 u32 rxcsum;
3005 int i, j;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003006 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend86b4db32011-04-26 07:26:19 +00003007
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003008 /*
3009 * Program table for at least 2 queues w/ SR-IOV so that VFs can
3010 * make full use of any rings they may have. We will use the
3011 * PSRTYPE register to control how many rings we use within the PF.
3012 */
3013 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 2))
3014 rss_i = 2;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003015
Alexander Duyck05abb122010-08-19 13:35:41 +00003016 /* Fill out hash function seeds */
3017 for (i = 0; i < 10; i++)
3018 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003019
Alexander Duyck05abb122010-08-19 13:35:41 +00003020 /* Fill out redirection table */
3021 for (i = 0, j = 0; i < 128; i++, j++) {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003022 if (j == rss_i)
Alexander Duyck05abb122010-08-19 13:35:41 +00003023 j = 0;
3024 /* reta = 4-byte sliding window of
3025 * 0x00..(indices-1)(indices-1)00..etc. */
3026 reta = (reta << 8) | (j * 0x11);
3027 if ((i & 3) == 3)
3028 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
3029 }
3030
3031 /* Disable indicating checksum in descriptor, enables RSS hash */
3032 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
3033 rxcsum |= IXGBE_RXCSUM_PCSD;
3034 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
3035
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003036 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003037 if (adapter->ring_feature[RING_F_RSS].mask)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003038 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003039 } else {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003040 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00003041
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003042 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3043 if (tcs > 4)
3044 mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */
3045 else if (tcs > 1)
3046 mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */
3047 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
3048 mrqc = IXGBE_MRQC_VMDQRSS32EN;
3049 else
3050 mrqc = IXGBE_MRQC_VMDQRSS64EN;
3051 } else {
3052 if (tcs > 4)
3053 mrqc = IXGBE_MRQC_RTRSS8TCEN;
3054 else if (tcs > 1)
John Fastabend8b1c0b22011-05-03 02:26:48 +00003055 mrqc = IXGBE_MRQC_RTRSS4TCEN;
3056 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003057 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003058 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003059 }
3060
Alexander Duyck05abb122010-08-19 13:35:41 +00003061 /* Perform hash on these packet types */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003062 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4 |
3063 IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
3064 IXGBE_MRQC_RSS_FIELD_IPV6 |
3065 IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
Alexander Duyck05abb122010-08-19 13:35:41 +00003066
Alexander Duyckef6afc02012-02-08 07:51:53 +00003067 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
3068 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
3069 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
3070 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
3071
Alexander Duyck05abb122010-08-19 13:35:41 +00003072 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003073}
3074
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003075/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003076 * ixgbe_configure_rscctl - enable RSC for the indicated ring
3077 * @adapter: address of board private structure
3078 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003079 **/
Don Skidmore082757a2011-07-21 05:55:00 +00003080static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00003081 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003082{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003083 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003084 u32 rscctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003085 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003086
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003087 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00003088 return;
3089
Alexander Duyck73670962010-08-19 13:38:34 +00003090 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003091 rscctrl |= IXGBE_RSCCTL_RSCEN;
3092 /*
3093 * we must limit the number of descriptors so that the
3094 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00003095 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003096 */
Alexander Duyckf8003262012-03-03 02:35:52 +00003097 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck73670962010-08-19 13:38:34 +00003098 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003099}
3100
Alexander Duyck9e10e042010-08-19 13:40:06 +00003101#define IXGBE_MAX_RX_DESC_POLL 10
3102static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3103 struct ixgbe_ring *ring)
3104{
3105 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003106 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3107 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003108 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003109
3110 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3111 if (hw->mac.type == ixgbe_mac_82598EB &&
3112 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3113 return;
3114
3115 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003116 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003117 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3118 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3119
3120 if (!wait_loop) {
3121 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3122 "the polling period\n", reg_idx);
3123 }
3124}
3125
Yi Zou2d39d572011-01-06 14:29:56 +00003126void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3127 struct ixgbe_ring *ring)
3128{
3129 struct ixgbe_hw *hw = &adapter->hw;
3130 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3131 u32 rxdctl;
3132 u8 reg_idx = ring->reg_idx;
3133
3134 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3135 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3136
3137 /* write value back with RXDCTL.ENABLE bit cleared */
3138 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3139
3140 if (hw->mac.type == ixgbe_mac_82598EB &&
3141 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3142 return;
3143
3144 /* the hardware may take up to 100us to really disable the rx queue */
3145 do {
3146 udelay(10);
3147 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3148 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3149
3150 if (!wait_loop) {
3151 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3152 "the polling period\n", reg_idx);
3153 }
3154}
3155
Alexander Duyck84418e32010-08-19 13:40:54 +00003156void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3157 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003158{
3159 struct ixgbe_hw *hw = &adapter->hw;
3160 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003161 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003162 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003163
Alexander Duyck9e10e042010-08-19 13:40:06 +00003164 /* disable queue to avoid issues while updating state */
3165 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003166 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003167
Alexander Duyckacd37172010-08-19 13:36:05 +00003168 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3169 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3170 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3171 ring->count * sizeof(union ixgbe_adv_rx_desc));
3172 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3173 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08003174 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003175
3176 ixgbe_configure_srrctl(adapter, ring);
3177 ixgbe_configure_rscctl(adapter, ring);
3178
3179 if (hw->mac.type == ixgbe_mac_82598EB) {
3180 /*
3181 * enable cache line friendly hardware writes:
3182 * PTHRESH=32 descriptors (half the internal cache),
3183 * this also removes ugly rx_no_buffer_count increment
3184 * HTHRESH=4 descriptors (to minimize latency on fetch)
3185 * WTHRESH=8 burst writeback up to two cache lines
3186 */
3187 rxdctl &= ~0x3FFFFF;
3188 rxdctl |= 0x080420;
3189 }
3190
3191 /* enable receive descriptor ring */
3192 rxdctl |= IXGBE_RXDCTL_ENABLE;
3193 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3194
3195 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003196 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003197}
3198
Alexander Duyck48654522010-08-19 13:36:27 +00003199static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3200{
3201 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003202 int rss_i = adapter->ring_feature[RING_F_RSS].indices;
Alexander Duyck48654522010-08-19 13:36:27 +00003203 int p;
3204
3205 /* PSRTYPE must be initialized in non 82598 adapters */
3206 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003207 IXGBE_PSRTYPE_UDPHDR |
3208 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003209 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003210 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003211
3212 if (hw->mac.type == ixgbe_mac_82598EB)
3213 return;
3214
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003215 if (rss_i > 3)
3216 psrtype |= 2 << 29;
3217 else if (rss_i > 1)
3218 psrtype |= 1 << 29;
Alexander Duyck48654522010-08-19 13:36:27 +00003219
3220 for (p = 0; p < adapter->num_rx_pools; p++)
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003221 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(p)),
Alexander Duyck48654522010-08-19 13:36:27 +00003222 psrtype);
3223}
3224
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003225static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3226{
3227 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003228 u32 reg_offset, vf_shift;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003229 u32 gcr_ext, vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003230 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003231
3232 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3233 return;
3234
3235 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003236 vmdctl |= IXGBE_VMD_CTL_VMDQ_EN;
3237 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003238 vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003239 vmdctl |= IXGBE_VT_CTL_REPLEN;
3240 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003241
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003242 vf_shift = VMDQ_P(0) % 32;
3243 reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003244
3245 /* Enable only the PF's pool for Tx/Rx */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003246 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (~0) << vf_shift);
3247 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1);
3248 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (~0) << vf_shift);
3249 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1);
Greg Rose9b735982012-11-08 02:41:35 +00003250 if (adapter->flags2 & IXGBE_FLAG2_BRIDGE_MODE_VEB)
3251 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003252
3253 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003254 hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0));
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003255
3256 /*
3257 * Set up VF register offsets for selected VT Mode,
3258 * i.e. 32 or 64 VFs for SR-IOV
3259 */
Alexander Duyck73079ea2012-07-14 06:48:49 +00003260 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3261 case IXGBE_82599_VMDQ_8Q_MASK:
3262 gcr_ext = IXGBE_GCR_EXT_VT_MODE_16;
3263 break;
3264 case IXGBE_82599_VMDQ_4Q_MASK:
3265 gcr_ext = IXGBE_GCR_EXT_VT_MODE_32;
3266 break;
3267 default:
3268 gcr_ext = IXGBE_GCR_EXT_VT_MODE_64;
3269 break;
3270 }
3271
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003272 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3273
Alexander Duyck435b19f2012-05-18 06:34:08 +00003274
Greg Rosea985b6c32010-11-18 03:02:52 +00003275 /* Enable MAC Anti-Spoofing */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003276 hw->mac.ops.set_mac_anti_spoofing(hw, (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003277 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00003278 /* For VFs that have spoof checking turned off */
3279 for (i = 0; i < adapter->num_vfs; i++) {
3280 if (!adapter->vfinfo[i].spoofchk_enabled)
3281 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
3282 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003283}
3284
Alexander Duyck477de6e2010-08-19 13:38:11 +00003285static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003286{
Auke Kok9a799d72007-09-15 14:07:45 -07003287 struct ixgbe_hw *hw = &adapter->hw;
3288 struct net_device *netdev = adapter->netdev;
3289 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003290 struct ixgbe_ring *rx_ring;
3291 int i;
3292 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003293
Alexander Duyck477de6e2010-08-19 13:38:11 +00003294#ifdef IXGBE_FCOE
3295 /* adjust max frame to be able to do baby jumbo for FCoE */
3296 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3297 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3298 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3299
3300#endif /* IXGBE_FCOE */
Alexander Duyck872844d2012-08-15 02:10:43 +00003301
3302 /* adjust max frame to be at least the size of a standard frame */
3303 if (max_frame < (ETH_FRAME_LEN + ETH_FCS_LEN))
3304 max_frame = (ETH_FRAME_LEN + ETH_FCS_LEN);
3305
Alexander Duyck477de6e2010-08-19 13:38:11 +00003306 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3307 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3308 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3309 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3310
3311 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003312 }
3313
Auke Kok9a799d72007-09-15 14:07:45 -07003314 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003315 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3316 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003317 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3318
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003319 /*
3320 * Setup the HW Rx Head and Tail Descriptor Pointers and
3321 * the Base and Length of the Rx Descriptor Ring
3322 */
Auke Kok9a799d72007-09-15 14:07:45 -07003323 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003324 rx_ring = adapter->rx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003325 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3326 set_ring_rsc_enabled(rx_ring);
3327 else
3328 clear_ring_rsc_enabled(rx_ring);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003329 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003330}
3331
Alexander Duyck73670962010-08-19 13:38:34 +00003332static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3333{
3334 struct ixgbe_hw *hw = &adapter->hw;
3335 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3336
3337 switch (hw->mac.type) {
3338 case ixgbe_mac_82598EB:
3339 /*
3340 * For VMDq support of different descriptor types or
3341 * buffer sizes through the use of multiple SRRCTL
3342 * registers, RDRXCTL.MVMEN must be set to 1
3343 *
3344 * also, the manual doesn't mention it clearly but DCA hints
3345 * will only use queue 0's tags unless this bit is set. Side
3346 * effects of setting this bit are only that SRRCTL must be
3347 * fully programmed [0..15]
3348 */
3349 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3350 break;
3351 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003352 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003353 /* Disable RSC for ACK packets */
3354 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3355 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3356 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3357 /* hardware requires some bits to be set by default */
3358 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3359 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3360 break;
3361 default:
3362 /* We should do nothing since we don't know this hardware */
3363 return;
3364 }
3365
3366 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3367}
3368
Alexander Duyck477de6e2010-08-19 13:38:11 +00003369/**
3370 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3371 * @adapter: board private structure
3372 *
3373 * Configure the Rx unit of the MAC after a reset.
3374 **/
3375static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3376{
3377 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003378 int i;
3379 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003380
3381 /* disable receives while setting up the descriptors */
3382 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3383 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3384
3385 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003386 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003387
Alexander Duyck9e10e042010-08-19 13:40:06 +00003388 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003389 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003390
Alexander Duyck477de6e2010-08-19 13:38:11 +00003391 /* set_rx_buffer_len must be called before ring initialization */
3392 ixgbe_set_rx_buffer_len(adapter);
3393
3394 /*
3395 * Setup the HW Rx Head and Tail Descriptor Pointers and
3396 * the Base and Length of the Rx Descriptor Ring
3397 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003398 for (i = 0; i < adapter->num_rx_queues; i++)
3399 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003400
Alexander Duyck9e10e042010-08-19 13:40:06 +00003401 /* disable drop enable for 82598 parts */
3402 if (hw->mac.type == ixgbe_mac_82598EB)
3403 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3404
3405 /* enable all receives */
3406 rxctrl |= IXGBE_RXCTRL_RXEN;
3407 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003408}
3409
Jiri Pirko8e586132011-12-08 19:52:37 -05003410static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003411{
3412 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003413 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003414
3415 /* add VID to filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003416 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003417 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003418
3419 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003420}
3421
Jiri Pirko8e586132011-12-08 19:52:37 -05003422static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003423{
3424 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003425 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003426
Auke Kok9a799d72007-09-15 14:07:45 -07003427 /* remove VID from filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003428 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003429 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003430
3431 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003432}
3433
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003434/**
3435 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3436 * @adapter: driver data
3437 */
3438static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3439{
3440 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003441 u32 vlnctrl;
3442
3443 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3444 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3445 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3446}
3447
3448/**
3449 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3450 * @adapter: driver data
3451 */
3452static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3453{
3454 struct ixgbe_hw *hw = &adapter->hw;
3455 u32 vlnctrl;
3456
3457 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3458 vlnctrl |= IXGBE_VLNCTRL_VFE;
3459 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3460 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3461}
3462
3463/**
3464 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3465 * @adapter: driver data
3466 */
3467static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3468{
3469 struct ixgbe_hw *hw = &adapter->hw;
3470 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003471 int i, j;
3472
3473 switch (hw->mac.type) {
3474 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003475 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3476 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003477 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3478 break;
3479 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003480 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003481 for (i = 0; i < adapter->num_rx_queues; i++) {
3482 j = adapter->rx_ring[i]->reg_idx;
3483 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3484 vlnctrl &= ~IXGBE_RXDCTL_VME;
3485 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3486 }
3487 break;
3488 default:
3489 break;
3490 }
3491}
3492
3493/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003494 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003495 * @adapter: driver data
3496 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003497static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003498{
3499 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003500 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003501 int i, j;
3502
3503 switch (hw->mac.type) {
3504 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003505 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3506 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003507 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3508 break;
3509 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003510 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003511 for (i = 0; i < adapter->num_rx_queues; i++) {
3512 j = adapter->rx_ring[i]->reg_idx;
3513 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3514 vlnctrl |= IXGBE_RXDCTL_VME;
3515 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3516 }
3517 break;
3518 default:
3519 break;
3520 }
3521}
3522
Auke Kok9a799d72007-09-15 14:07:45 -07003523static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3524{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003525 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003526
Jesse Grossf62bbb52010-10-20 13:56:10 +00003527 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3528
3529 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3530 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003531}
3532
3533/**
Alexander Duyck28500622010-06-15 09:25:48 +00003534 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3535 * @netdev: network interface device structure
3536 *
3537 * Writes unicast address list to the RAR table.
3538 * Returns: -ENOMEM on failure/insufficient address space
3539 * 0 on no addresses written
3540 * X on writing X addresses to the RAR table
3541 **/
3542static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3543{
3544 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3545 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend95447462012-05-31 12:42:26 +00003546 unsigned int rar_entries = hw->mac.num_rar_entries - 1;
Alexander Duyck28500622010-06-15 09:25:48 +00003547 int count = 0;
3548
John Fastabend95447462012-05-31 12:42:26 +00003549 /* In SR-IOV mode significantly less RAR entries are available */
3550 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3551 rar_entries = IXGBE_MAX_PF_MACVLANS - 1;
3552
Alexander Duyck28500622010-06-15 09:25:48 +00003553 /* return ENOMEM indicating insufficient memory for addresses */
3554 if (netdev_uc_count(netdev) > rar_entries)
3555 return -ENOMEM;
3556
John Fastabend95447462012-05-31 12:42:26 +00003557 if (!netdev_uc_empty(netdev)) {
Alexander Duyck28500622010-06-15 09:25:48 +00003558 struct netdev_hw_addr *ha;
3559 /* return error if we do not support writing to RAR table */
3560 if (!hw->mac.ops.set_rar)
3561 return -ENOMEM;
3562
3563 netdev_for_each_uc_addr(ha, netdev) {
3564 if (!rar_entries)
3565 break;
3566 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003567 VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck28500622010-06-15 09:25:48 +00003568 count++;
3569 }
3570 }
3571 /* write the addresses in reverse order to avoid write combining */
3572 for (; rar_entries > 0 ; rar_entries--)
3573 hw->mac.ops.clear_rar(hw, rar_entries);
3574
3575 return count;
3576}
3577
3578/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003579 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003580 * @netdev: network interface device structure
3581 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003582 * The set_rx_method entry point is called whenever the unicast/multicast
3583 * address list or the network interface flags are updated. This routine is
3584 * responsible for configuring the hardware for proper unicast, multicast and
3585 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003586 **/
Greg Rose7f870472010-01-09 02:25:29 +00003587void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003588{
3589 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3590 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003591 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3592 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003593
3594 /* Check for Promiscuous and All Multicast modes */
3595
3596 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3597
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003598 /* set all bits that we expect to always be set */
Ben Greear3f2d1c02012-03-08 08:28:41 +00003599 fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003600 fctrl |= IXGBE_FCTRL_BAM;
3601 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3602 fctrl |= IXGBE_FCTRL_PMCF;
3603
Alexander Duyck28500622010-06-15 09:25:48 +00003604 /* clear the bits we are changing the status of */
3605 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3606
Auke Kok9a799d72007-09-15 14:07:45 -07003607 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003608 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003609 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003610 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003611 /* don't hardware filter vlans in promisc mode */
3612 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003613 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003614 if (netdev->flags & IFF_ALLMULTI) {
3615 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003616 vmolr |= IXGBE_VMOLR_MPE;
3617 } else {
3618 /*
3619 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003620 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003621 * that we can at least receive multicast traffic
3622 */
3623 hw->mac.ops.update_mc_addr_list(hw, netdev);
3624 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003625 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003626 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003627 hw->addr_ctrl.user_set_promisc = false;
John Fastabend9dcb3732012-04-15 06:44:25 +00003628 }
3629
3630 /*
3631 * Write addresses to available RAR registers, if there is not
3632 * sufficient space to store all the addresses then enable
3633 * unicast promiscuous mode
3634 */
3635 count = ixgbe_write_uc_addr_list(netdev);
3636 if (count < 0) {
3637 fctrl |= IXGBE_FCTRL_UPE;
3638 vmolr |= IXGBE_VMOLR_ROPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003639 }
3640
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003641 if (adapter->num_vfs)
Alexander Duyck28500622010-06-15 09:25:48 +00003642 ixgbe_restore_vf_multicasts(adapter);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003643
3644 if (hw->mac.type != ixgbe_mac_82598EB) {
3645 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) &
Alexander Duyck28500622010-06-15 09:25:48 +00003646 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3647 IXGBE_VMOLR_ROPE);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003648 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003649 }
3650
Ben Greear3f2d1c02012-03-08 08:28:41 +00003651 /* This is useful for sniffing bad packets. */
3652 if (adapter->netdev->features & NETIF_F_RXALL) {
3653 /* UPE and MPE will be handled by normal PROMISC logic
3654 * in e1000e_set_rx_mode */
3655 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
3656 IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
3657 IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
3658
3659 fctrl &= ~(IXGBE_FCTRL_DPF);
3660 /* NOTE: VLAN filtering is disabled by setting PROMISC */
3661 }
3662
Auke Kok9a799d72007-09-15 14:07:45 -07003663 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003664
3665 if (netdev->features & NETIF_F_HW_VLAN_RX)
3666 ixgbe_vlan_strip_enable(adapter);
3667 else
3668 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003669}
3670
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003671static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3672{
3673 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003674
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003675 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3676 napi_enable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003677}
3678
3679static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3680{
3681 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003682
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003683 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3684 napi_disable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003685}
3686
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003687#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003688/**
Alexander Duyck2f90b862008-11-20 20:52:10 -08003689 * ixgbe_configure_dcb - Configure DCB hardware
3690 * @adapter: ixgbe adapter struct
3691 *
3692 * This is called by the driver on open to configure the DCB hardware.
3693 * This is also called by the gennetlink interface when reconfiguring
3694 * the DCB state.
3695 */
3696static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3697{
3698 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend9806307a2010-10-28 00:59:57 +00003699 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003700
Alexander Duyck67ebd792010-08-19 13:34:04 +00003701 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3702 if (hw->mac.type == ixgbe_mac_82598EB)
3703 netif_set_gso_max_size(adapter->netdev, 65536);
3704 return;
3705 }
3706
3707 if (hw->mac.type == ixgbe_mac_82598EB)
3708 netif_set_gso_max_size(adapter->netdev, 32768);
3709
John Fastabendb1208182011-10-15 05:00:10 +00003710#ifdef IXGBE_FCOE
3711 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3712 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3713#endif
3714
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003715 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003716 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003717 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3718 DCB_TX_CONFIG);
3719 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3720 DCB_RX_CONFIG);
3721 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003722 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3723 ixgbe_dcb_hw_ets(&adapter->hw,
3724 adapter->ixgbe_ieee_ets,
3725 max_frame);
3726 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3727 adapter->ixgbe_ieee_pfc->pfc_en,
3728 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003729 }
John Fastabend8187cd42011-02-23 05:58:08 +00003730
3731 /* Enable RSS Hash per TC */
3732 if (hw->mac.type != ixgbe_mac_82598EB) {
Alexander Duyck4ae63732012-06-22 06:46:33 +00003733 u32 msb = 0;
3734 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003735
Alexander Duyckd411a932012-06-30 00:14:01 +00003736 while (rss_i) {
3737 msb++;
3738 rss_i >>= 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003739 }
Alexander Duyckd411a932012-06-30 00:14:01 +00003740
Alexander Duyck4ae63732012-06-22 06:46:33 +00003741 /* write msb to all 8 TCs in one write */
3742 IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111);
John Fastabend8187cd42011-02-23 05:58:08 +00003743 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003744}
John Fastabend9da712d2011-08-23 03:14:22 +00003745#endif
3746
3747/* Additional bittime to account for IXGBE framing */
3748#define IXGBE_ETH_FRAMING 20
3749
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003750/**
John Fastabend9da712d2011-08-23 03:14:22 +00003751 * ixgbe_hpbthresh - calculate high water mark for flow control
3752 *
3753 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003754 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00003755 */
3756static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
3757{
3758 struct ixgbe_hw *hw = &adapter->hw;
3759 struct net_device *dev = adapter->netdev;
3760 int link, tc, kb, marker;
3761 u32 dv_id, rx_pba;
3762
3763 /* Calculate max LAN frame size */
3764 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
3765
3766#ifdef IXGBE_FCOE
3767 /* FCoE traffic class uses FCOE jumbo frames */
Alexander Duyck800bd602012-06-02 00:11:02 +00003768 if ((dev->features & NETIF_F_FCOE_MTU) &&
3769 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
3770 (pb == ixgbe_fcoe_get_tc(adapter)))
3771 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003772
3773#endif
John Fastabend9da712d2011-08-23 03:14:22 +00003774 /* Calculate delay value for device */
3775 switch (hw->mac.type) {
3776 case ixgbe_mac_X540:
3777 dv_id = IXGBE_DV_X540(link, tc);
3778 break;
3779 default:
3780 dv_id = IXGBE_DV(link, tc);
3781 break;
3782 }
3783
3784 /* Loopback switch introduces additional latency */
3785 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3786 dv_id += IXGBE_B2BT(tc);
3787
3788 /* Delay value is calculated in bit times convert to KB */
3789 kb = IXGBE_BT2KB(dv_id);
3790 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
3791
3792 marker = rx_pba - kb;
3793
3794 /* It is possible that the packet buffer is not large enough
3795 * to provide required headroom. In this case throw an error
3796 * to user and a do the best we can.
3797 */
3798 if (marker < 0) {
3799 e_warn(drv, "Packet Buffer(%i) can not provide enough"
3800 "headroom to support flow control."
3801 "Decrease MTU or number of traffic classes\n", pb);
3802 marker = tc + 1;
3803 }
3804
3805 return marker;
3806}
3807
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003808/**
John Fastabend9da712d2011-08-23 03:14:22 +00003809 * ixgbe_lpbthresh - calculate low water mark for for flow control
3810 *
3811 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003812 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00003813 */
3814static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
3815{
3816 struct ixgbe_hw *hw = &adapter->hw;
3817 struct net_device *dev = adapter->netdev;
3818 int tc;
3819 u32 dv_id;
3820
3821 /* Calculate max LAN frame size */
3822 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3823
3824 /* Calculate delay value for device */
3825 switch (hw->mac.type) {
3826 case ixgbe_mac_X540:
3827 dv_id = IXGBE_LOW_DV_X540(tc);
3828 break;
3829 default:
3830 dv_id = IXGBE_LOW_DV(tc);
3831 break;
3832 }
3833
3834 /* Delay value is calculated in bit times convert to KB */
3835 return IXGBE_BT2KB(dv_id);
3836}
3837
3838/*
3839 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3840 */
3841static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
3842{
3843 struct ixgbe_hw *hw = &adapter->hw;
3844 int num_tc = netdev_get_num_tc(adapter->netdev);
3845 int i;
3846
3847 if (!num_tc)
3848 num_tc = 1;
3849
3850 hw->fc.low_water = ixgbe_lpbthresh(adapter);
3851
3852 for (i = 0; i < num_tc; i++) {
3853 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
3854
3855 /* Low water marks must not be larger than high water marks */
3856 if (hw->fc.low_water > hw->fc.high_water[i])
3857 hw->fc.low_water = 0;
3858 }
3859}
John Fastabend80605c652011-05-02 12:34:10 +00003860
3861static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3862{
John Fastabend80605c652011-05-02 12:34:10 +00003863 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00003864 int hdrm;
3865 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00003866
3867 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3868 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00003869 hdrm = 32 << adapter->fdir_pballoc;
3870 else
3871 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00003872
Alexander Duyckf7e10272011-07-21 00:40:35 +00003873 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00003874 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00003875}
3876
Alexander Duycke4911d52011-05-11 07:18:52 +00003877static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3878{
3879 struct ixgbe_hw *hw = &adapter->hw;
3880 struct hlist_node *node, *node2;
3881 struct ixgbe_fdir_filter *filter;
3882
3883 spin_lock(&adapter->fdir_perfect_lock);
3884
3885 if (!hlist_empty(&adapter->fdir_filter_list))
3886 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3887
3888 hlist_for_each_entry_safe(filter, node, node2,
3889 &adapter->fdir_filter_list, fdir_node) {
3890 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003891 &filter->filter,
3892 filter->sw_idx,
3893 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3894 IXGBE_FDIR_DROP_QUEUE :
3895 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003896 }
3897
3898 spin_unlock(&adapter->fdir_perfect_lock);
3899}
3900
Auke Kok9a799d72007-09-15 14:07:45 -07003901static void ixgbe_configure(struct ixgbe_adapter *adapter)
3902{
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003903 struct ixgbe_hw *hw = &adapter->hw;
3904
John Fastabend80605c652011-05-02 12:34:10 +00003905 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003906#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003907 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003908#endif
Alexander Duyckb35d4d42012-05-23 05:39:25 +00003909 /*
3910 * We must restore virtualization before VLANs or else
3911 * the VLVF registers will not be populated
3912 */
3913 ixgbe_configure_virtualization(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003914
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003915 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003916 ixgbe_restore_vlan(adapter);
3917
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003918 switch (hw->mac.type) {
3919 case ixgbe_mac_82599EB:
3920 case ixgbe_mac_X540:
3921 hw->mac.ops.disable_rx_buff(hw);
3922 break;
3923 default:
3924 break;
3925 }
3926
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003927 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003928 ixgbe_init_fdir_signature_82599(&adapter->hw,
3929 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003930 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3931 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3932 adapter->fdir_pballoc);
3933 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003934 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003935
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003936 switch (hw->mac.type) {
3937 case ixgbe_mac_82599EB:
3938 case ixgbe_mac_X540:
3939 hw->mac.ops.enable_rx_buff(hw);
3940 break;
3941 default:
3942 break;
3943 }
3944
Alexander Duyck7c8ae652012-05-05 05:32:47 +00003945#ifdef IXGBE_FCOE
3946 /* configure FCoE L2 filters, redirection table, and Rx control */
3947 ixgbe_configure_fcoe(adapter);
3948
3949#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07003950 ixgbe_configure_tx(adapter);
3951 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003952}
3953
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003954static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3955{
3956 switch (hw->phy.type) {
3957 case ixgbe_phy_sfp_avago:
3958 case ixgbe_phy_sfp_ftl:
3959 case ixgbe_phy_sfp_intel:
3960 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003961 case ixgbe_phy_sfp_passive_tyco:
3962 case ixgbe_phy_sfp_passive_unknown:
3963 case ixgbe_phy_sfp_active_unknown:
3964 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003965 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00003966 case ixgbe_phy_nl:
3967 if (hw->mac.type == ixgbe_mac_82598EB)
3968 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003969 default:
3970 return false;
3971 }
3972}
3973
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003974/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003975 * ixgbe_sfp_link_config - set up SFP+ link
3976 * @adapter: pointer to private adapter struct
3977 **/
3978static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3979{
Alexander Duyck70864002011-04-27 09:13:56 +00003980 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003981 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00003982 * is that an SFP was inserted/removed after the reset
3983 * but before SFP detection was enabled. As such the best
3984 * solution is to just start searching as soon as we start
3985 */
3986 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3987 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003988
Alexander Duyck70864002011-04-27 09:13:56 +00003989 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003990}
3991
3992/**
3993 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003994 * @hw: pointer to private hardware struct
3995 *
3996 * Returns 0 on success, negative on failure
3997 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003998static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003999{
4000 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00004001 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004002 u32 ret = IXGBE_ERR_LINK_SETUP;
4003
4004 if (hw->mac.ops.check_link)
4005 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
4006
4007 if (ret)
4008 goto link_cfg_out;
4009
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00004010 autoneg = hw->phy.autoneg_advertised;
4011 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00004012 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
4013 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004014 if (ret)
4015 goto link_cfg_out;
4016
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00004017 if (hw->mac.ops.setup_link)
4018 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08004019link_cfg_out:
4020 return ret;
4021}
4022
Alexander Duycka34bcff2010-08-19 13:39:20 +00004023static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004024{
Auke Kok9a799d72007-09-15 14:07:45 -07004025 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004026 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004027
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004028 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00004029 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
4030 IXGBE_GPIE_OCD;
4031 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004032 /*
4033 * use EIAM to auto-mask when MSI-X interrupt is asserted
4034 * this saves a register write for every interrupt
4035 */
4036 switch (hw->mac.type) {
4037 case ixgbe_mac_82598EB:
4038 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
4039 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004040 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004041 case ixgbe_mac_X540:
4042 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004043 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
4044 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
4045 break;
4046 }
4047 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004048 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
4049 * specifically only auto mask tx and rx interrupts */
4050 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07004051 }
4052
Alexander Duycka34bcff2010-08-19 13:39:20 +00004053 /* XXX: to interrupt immediately for EICS writes, enable this */
4054 /* gpie |= IXGBE_GPIE_EIMEN; */
4055
4056 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
4057 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
Alexander Duyck73079ea2012-07-14 06:48:49 +00004058
4059 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
4060 case IXGBE_82599_VMDQ_8Q_MASK:
4061 gpie |= IXGBE_GPIE_VTMODE_16;
4062 break;
4063 case IXGBE_82599_VMDQ_4Q_MASK:
4064 gpie |= IXGBE_GPIE_VTMODE_32;
4065 break;
4066 default:
4067 gpie |= IXGBE_GPIE_VTMODE_64;
4068 break;
4069 }
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004070 }
4071
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004072 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00004073 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
4074 switch (adapter->hw.mac.type) {
4075 case ixgbe_mac_82599EB:
4076 gpie |= IXGBE_SDP0_GPIEN;
4077 break;
4078 case ixgbe_mac_X540:
4079 gpie |= IXGBE_EIMS_TS;
4080 break;
4081 default:
4082 break;
4083 }
4084 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004085
Alexander Duycka34bcff2010-08-19 13:39:20 +00004086 /* Enable fan failure interrupt */
4087 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004088 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004089
Don Skidmore2698b202011-04-13 07:01:52 +00004090 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004091 gpie |= IXGBE_SDP1_GPIEN;
4092 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00004093 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00004094
4095 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
4096}
4097
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004098static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00004099{
4100 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004101 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004102 u32 ctrl_ext;
4103
4104 ixgbe_get_hw_control(adapter);
4105 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004106
Auke Kok9a799d72007-09-15 14:07:45 -07004107 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4108 ixgbe_configure_msix(adapter);
4109 else
4110 ixgbe_configure_msi_and_legacy(adapter);
4111
Emil Tantilovec74a472012-09-20 03:33:56 +00004112 /* enable the optics for 82599 SFP+ fiber */
4113 if (hw->mac.ops.enable_tx_laser)
Peter Waskiewicz61fac742010-04-27 00:38:15 +00004114 hw->mac.ops.enable_tx_laser(hw);
4115
Auke Kok9a799d72007-09-15 14:07:45 -07004116 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004117 ixgbe_napi_enable_all(adapter);
4118
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08004119 if (ixgbe_is_sfp(hw)) {
4120 ixgbe_sfp_link_config(adapter);
4121 } else {
4122 err = ixgbe_non_sfp_link_config(hw);
4123 if (err)
4124 e_err(probe, "link_config FAILED %d\n", err);
4125 }
4126
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004127 /* clear any pending interrupts, may auto mask */
4128 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00004129 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07004130
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004131 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00004132 * If this adapter has a fan, check to see if we had a failure
4133 * before we enabled the interrupt.
4134 */
4135 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
4136 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
4137 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00004138 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00004139 }
4140
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004141 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00004142 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004143
Auke Kok9a799d72007-09-15 14:07:45 -07004144 /* bring the link up in the watchdog, this could race with our first
4145 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004146 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
4147 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00004148 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00004149
4150 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
4151 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
4152 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
4153 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07004154}
4155
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004156void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
4157{
4158 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00004159 /* put off any impending NetWatchDogTimeout */
4160 adapter->netdev->trans_start = jiffies;
4161
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004162 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00004163 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004164 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00004165 /*
4166 * If SR-IOV enabled then wait a bit before bringing the adapter
4167 * back up to give the VFs time to respond to the reset. The
4168 * two second wait is based upon the watchdog timer cycle in
4169 * the VF driver.
4170 */
4171 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4172 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004173 ixgbe_up(adapter);
4174 clear_bit(__IXGBE_RESETTING, &adapter->state);
4175}
4176
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004177void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004178{
4179 /* hardware has been reset, we need to reload some things */
4180 ixgbe_configure(adapter);
4181
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004182 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004183}
4184
4185void ixgbe_reset(struct ixgbe_adapter *adapter)
4186{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004187 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004188 int err;
4189
Alexander Duyck70864002011-04-27 09:13:56 +00004190 /* lock SFP init bit to prevent race conditions with the watchdog */
4191 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4192 usleep_range(1000, 2000);
4193
4194 /* clear all SFP and link config related flags while holding SFP_INIT */
4195 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4196 IXGBE_FLAG2_SFP_NEEDS_RESET);
4197 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4198
Don Skidmore8ca783a2009-05-26 20:40:47 -07004199 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004200 switch (err) {
4201 case 0:
4202 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004203 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004204 break;
4205 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004206 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004207 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004208 case IXGBE_ERR_EEPROM_VERSION:
4209 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004210 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004211 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00004212 "your hardware. If you are experiencing problems "
4213 "please contact your Intel or hardware "
4214 "representative who provided you with this "
4215 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004216 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004217 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004218 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004219 }
Auke Kok9a799d72007-09-15 14:07:45 -07004220
Alexander Duyck70864002011-04-27 09:13:56 +00004221 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4222
Auke Kok9a799d72007-09-15 14:07:45 -07004223 /* reprogram the RAR[0] in case user changed it. */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004224 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00004225
4226 /* update SAN MAC vmdq pool selection */
4227 if (hw->mac.san_mac_rar_index)
4228 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
Jacob Keller1a71ab22012-08-25 03:54:19 +00004229
Jacob Keller1a71ab22012-08-25 03:54:19 +00004230 if (adapter->flags2 & IXGBE_FLAG2_PTP_ENABLED)
4231 ixgbe_ptp_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004232}
4233
Auke Kok9a799d72007-09-15 14:07:45 -07004234/**
4235 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004236 * @rx_ring: ring to free buffers from
4237 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004238static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004239{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004240 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004241 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004242 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004243
Alexander Duyck84418e32010-08-19 13:40:54 +00004244 /* ring already cleared, nothing to do */
4245 if (!rx_ring->rx_buffer_info)
4246 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004247
Alexander Duyck84418e32010-08-19 13:40:54 +00004248 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004249 for (i = 0; i < rx_ring->count; i++) {
Alexander Duyckf8003262012-03-03 02:35:52 +00004250 struct ixgbe_rx_buffer *rx_buffer;
Auke Kok9a799d72007-09-15 14:07:45 -07004251
Alexander Duyckf8003262012-03-03 02:35:52 +00004252 rx_buffer = &rx_ring->rx_buffer_info[i];
4253 if (rx_buffer->skb) {
4254 struct sk_buff *skb = rx_buffer->skb;
4255 if (IXGBE_CB(skb)->page_released) {
4256 dma_unmap_page(dev,
4257 IXGBE_CB(skb)->dma,
4258 ixgbe_rx_bufsz(rx_ring),
4259 DMA_FROM_DEVICE);
4260 IXGBE_CB(skb)->page_released = false;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00004261 }
4262 dev_kfree_skb(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07004263 }
Alexander Duyckf8003262012-03-03 02:35:52 +00004264 rx_buffer->skb = NULL;
4265 if (rx_buffer->dma)
4266 dma_unmap_page(dev, rx_buffer->dma,
4267 ixgbe_rx_pg_size(rx_ring),
4268 DMA_FROM_DEVICE);
4269 rx_buffer->dma = 0;
4270 if (rx_buffer->page)
Alexander Duyckdd411ec2012-04-06 04:24:50 +00004271 __free_pages(rx_buffer->page,
4272 ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00004273 rx_buffer->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07004274 }
4275
4276 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4277 memset(rx_ring->rx_buffer_info, 0, size);
4278
4279 /* Zero out the descriptor ring */
4280 memset(rx_ring->desc, 0, rx_ring->size);
4281
Alexander Duyckf8003262012-03-03 02:35:52 +00004282 rx_ring->next_to_alloc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004283 rx_ring->next_to_clean = 0;
4284 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004285}
4286
4287/**
4288 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004289 * @tx_ring: ring to be cleaned
4290 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004291static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004292{
4293 struct ixgbe_tx_buffer *tx_buffer_info;
4294 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004295 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004296
Alexander Duyck84418e32010-08-19 13:40:54 +00004297 /* ring already cleared, nothing to do */
4298 if (!tx_ring->tx_buffer_info)
4299 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004300
Alexander Duyck84418e32010-08-19 13:40:54 +00004301 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004302 for (i = 0; i < tx_ring->count; i++) {
4303 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004304 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004305 }
4306
John Fastabenddad8a3b2012-04-23 12:22:39 +00004307 netdev_tx_reset_queue(txring_txq(tx_ring));
4308
Auke Kok9a799d72007-09-15 14:07:45 -07004309 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4310 memset(tx_ring->tx_buffer_info, 0, size);
4311
4312 /* Zero out the descriptor ring */
4313 memset(tx_ring->desc, 0, tx_ring->size);
4314
4315 tx_ring->next_to_use = 0;
4316 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004317}
4318
4319/**
Auke Kok9a799d72007-09-15 14:07:45 -07004320 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4321 * @adapter: board private structure
4322 **/
4323static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4324{
4325 int i;
4326
4327 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004328 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004329}
4330
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004331/**
4332 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4333 * @adapter: board private structure
4334 **/
4335static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4336{
4337 int i;
4338
4339 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004340 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004341}
4342
Alexander Duycke4911d52011-05-11 07:18:52 +00004343static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4344{
4345 struct hlist_node *node, *node2;
4346 struct ixgbe_fdir_filter *filter;
4347
4348 spin_lock(&adapter->fdir_perfect_lock);
4349
4350 hlist_for_each_entry_safe(filter, node, node2,
4351 &adapter->fdir_filter_list, fdir_node) {
4352 hlist_del(&filter->fdir_node);
4353 kfree(filter);
4354 }
4355 adapter->fdir_filter_count = 0;
4356
4357 spin_unlock(&adapter->fdir_perfect_lock);
4358}
4359
Auke Kok9a799d72007-09-15 14:07:45 -07004360void ixgbe_down(struct ixgbe_adapter *adapter)
4361{
4362 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004363 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004364 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004365 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004366
4367 /* signal that we are down to the interrupt handler */
4368 set_bit(__IXGBE_DOWN, &adapter->state);
4369
4370 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004371 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4372 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004373
Yi Zou2d39d572011-01-06 14:29:56 +00004374 /* disable all enabled rx queues */
4375 for (i = 0; i < adapter->num_rx_queues; i++)
4376 /* this call also flushes the previous write */
4377 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4378
Don Skidmore032b4322011-03-18 09:32:53 +00004379 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004380
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004381 netif_tx_stop_all_queues(netdev);
4382
Alexander Duyck70864002011-04-27 09:13:56 +00004383 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004384 netif_carrier_off(netdev);
4385 netif_tx_disable(netdev);
4386
4387 ixgbe_irq_disable(adapter);
4388
4389 ixgbe_napi_disable_all(adapter);
4390
Alexander Duyckd034acf2011-04-27 09:25:34 +00004391 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4392 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004393 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4394
4395 del_timer_sync(&adapter->service_timer);
4396
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004397 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004398 /* Clear EITR Select mapping */
4399 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4400
4401 /* Mark all the VFs as inactive */
4402 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004403 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004404
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004405 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004406 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004407
Auke Kok9a799d72007-09-15 14:07:45 -07004408 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004409 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004410 }
4411
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004412 /* disable transmits in the hardware now that interrupts are off */
4413 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004414 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004415 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004416 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004417
4418 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004419 switch (hw->mac.type) {
4420 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004421 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004422 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004423 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4424 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004425 break;
4426 default:
4427 break;
4428 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004429
Paul Larson6f4a0e42008-06-24 17:00:56 -07004430 if (!pci_channel_offline(adapter->pdev))
4431 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004432
Emil Tantilovec74a472012-09-20 03:33:56 +00004433 /* power down the optics for 82599 SFP+ fiber */
4434 if (hw->mac.ops.disable_tx_laser)
Don Skidmorec6ecf392010-12-03 03:31:51 +00004435 hw->mac.ops.disable_tx_laser(hw);
4436
Auke Kok9a799d72007-09-15 14:07:45 -07004437 ixgbe_clean_all_tx_rings(adapter);
4438 ixgbe_clean_all_rx_rings(adapter);
4439
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004440#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004441 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004442 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004443#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004444}
4445
Auke Kok9a799d72007-09-15 14:07:45 -07004446/**
Auke Kok9a799d72007-09-15 14:07:45 -07004447 * ixgbe_tx_timeout - Respond to a Tx Hang
4448 * @netdev: network interface device structure
4449 **/
4450static void ixgbe_tx_timeout(struct net_device *netdev)
4451{
4452 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4453
4454 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004455 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004456}
4457
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004458/**
Auke Kok9a799d72007-09-15 14:07:45 -07004459 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4460 * @adapter: board private structure to initialize
4461 *
4462 * ixgbe_sw_init initializes the Adapter private data structure.
4463 * Fields are initialized based on PCI device information and
4464 * OS network device settings (MTU size).
4465 **/
4466static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
4467{
4468 struct ixgbe_hw *hw = &adapter->hw;
4469 struct pci_dev *pdev = adapter->pdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004470 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004471#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004472 int j;
4473 struct tc_configuration *tc;
4474#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004475
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004476 /* PCI config space info */
4477
4478 hw->vendor_id = pdev->vendor;
4479 hw->device_id = pdev->device;
4480 hw->revision_id = pdev->revision;
4481 hw->subsystem_vendor_id = pdev->subsystem_vendor;
4482 hw->subsystem_device_id = pdev->subsystem_device;
4483
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004484 /* Set capability flags */
Jesse Brandeburg3ed69d72012-02-10 10:20:02 +00004485 rss = min_t(int, IXGBE_MAX_RSS_INDICES, num_online_cpus());
Alexander Duyckc0876632012-05-10 00:01:46 +00004486 adapter->ring_feature[RING_F_RSS].limit = rss;
Alexander Duyckbd508172010-11-16 19:27:03 -08004487 switch (hw->mac.type) {
4488 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00004489 if (hw->device_id == IXGBE_DEV_ID_82598AT)
4490 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004491 adapter->max_q_vectors = MAX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08004492 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08004493 case ixgbe_mac_X540:
Jacob Keller4f51bf72011-08-20 04:49:45 +00004494 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
4495 case ixgbe_mac_82599EB:
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004496 adapter->max_q_vectors = MAX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00004497 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
4498 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004499 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
4500 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00004501 /* Flow Director hash filters enabled */
Alexander Duyck45b9f502011-01-06 14:29:59 +00004502 adapter->atr_sample_rate = 20;
Alexander Duyckc0876632012-05-10 00:01:46 +00004503 adapter->ring_feature[RING_F_FDIR].limit =
Joe Perchese8e9f692010-09-07 21:34:53 +00004504 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00004505 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00004506#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00004507 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
4508 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
Yi Zou61a0f422009-12-03 11:32:22 +00004509#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00004510 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00004511 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00004512#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00004513#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08004514 break;
4515 default:
4516 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00004517 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004518
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004519#ifdef IXGBE_FCOE
4520 /* FCoE support exists, always init the FCoE lock */
4521 spin_lock_init(&adapter->fcoe.lock);
4522
4523#endif
Alexander Duyck1fc5f032011-06-02 04:28:39 +00004524 /* n-tuple support exists, always init our spinlock */
4525 spin_lock_init(&adapter->fdir_perfect_lock);
4526
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004527#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00004528 switch (hw->mac.type) {
4529 case ixgbe_mac_X540:
4530 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
4531 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
4532 break;
4533 default:
4534 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
4535 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
4536 break;
4537 }
4538
Alexander Duyck2f90b862008-11-20 20:52:10 -08004539 /* Configure DCB traffic classes */
4540 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
4541 tc = &adapter->dcb_cfg.tc_config[j];
4542 tc->path[DCB_TX_CONFIG].bwg_id = 0;
4543 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
4544 tc->path[DCB_RX_CONFIG].bwg_id = 0;
4545 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
4546 tc->dcb_pfc = pfc_disabled;
4547 }
John Fastabend4de2a022011-09-27 03:52:01 +00004548
4549 /* Initialize default user to priority mapping, UPx->TC0 */
4550 tc = &adapter->dcb_cfg.tc_config[0];
4551 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
4552 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
4553
Alexander Duyck2f90b862008-11-20 20:52:10 -08004554 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
4555 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00004556 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004557 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00004558 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
John Fastabendf525c6d22012-04-18 22:42:27 +00004559 memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg,
4560 sizeof(adapter->temp_dcb_cfg));
Alexander Duyck2f90b862008-11-20 20:52:10 -08004561
4562#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004563
4564 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00004565 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00004566 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
John Fastabend9da712d2011-08-23 03:14:22 +00004567 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07004568 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
4569 hw->fc.send_xon = true;
Jacob Kellerdb2adc22012-10-24 07:26:02 +00004570 hw->fc.disable_fc_autoneg =
4571 (ixgbe_device_supports_autoneg_fc(hw) == 0) ? false : true;
Auke Kok9a799d72007-09-15 14:07:45 -07004572
Alexander Duyck99d74482012-05-09 08:09:25 +00004573#ifdef CONFIG_PCI_IOV
4574 /* assign number of SR-IOV VFs */
4575 if (hw->mac.type != ixgbe_mac_82598EB)
4576 adapter->num_vfs = (max_vfs > 63) ? 0 : max_vfs;
4577
4578#endif
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004579 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004580 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004581 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004582
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004583 /* set default ring sizes */
4584 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
4585 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
4586
Alexander Duyckbd198052011-06-11 01:45:08 +00004587 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00004588 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00004589
Auke Kok9a799d72007-09-15 14:07:45 -07004590 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004591 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004592 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07004593 return -EIO;
4594 }
4595
Auke Kok9a799d72007-09-15 14:07:45 -07004596 set_bit(__IXGBE_DOWN, &adapter->state);
4597
4598 return 0;
4599}
4600
4601/**
4602 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004603 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004604 *
4605 * Return 0 on success, negative on failure
4606 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004607int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004608{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004609 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004610 int orig_node = dev_to_node(dev);
4611 int numa_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07004612 int size;
4613
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004614 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004615
4616 if (tx_ring->q_vector)
4617 numa_node = tx_ring->q_vector->numa_node;
4618
4619 tx_ring->tx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004620 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004621 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004622 if (!tx_ring->tx_buffer_info)
4623 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004624
4625 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08004626 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004627 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004628
Alexander Duyckde88eee2012-02-08 07:49:59 +00004629 set_dev_node(dev, numa_node);
4630 tx_ring->desc = dma_alloc_coherent(dev,
4631 tx_ring->size,
4632 &tx_ring->dma,
4633 GFP_KERNEL);
4634 set_dev_node(dev, orig_node);
4635 if (!tx_ring->desc)
4636 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
4637 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004638 if (!tx_ring->desc)
4639 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004640
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004641 tx_ring->next_to_use = 0;
4642 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004643 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004644
4645err:
4646 vfree(tx_ring->tx_buffer_info);
4647 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004648 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004649 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004650}
4651
4652/**
Alexander Duyck69888672008-09-11 20:05:39 -07004653 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
4654 * @adapter: board private structure
4655 *
4656 * If this function returns with an error, then it's possible one or
4657 * more of the rings is populated (while the rest are not). It is the
4658 * callers duty to clean those orphaned rings.
4659 *
4660 * Return 0 on success, negative on failure
4661 **/
4662static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
4663{
4664 int i, err = 0;
4665
4666 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004667 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004668 if (!err)
4669 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004670
Emil Tantilov396e7992010-07-01 20:05:12 +00004671 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004672 goto err_setup_tx;
Alexander Duyck69888672008-09-11 20:05:39 -07004673 }
4674
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004675 return 0;
4676err_setup_tx:
4677 /* rewind the index freeing the rings as we go */
4678 while (i--)
4679 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004680 return err;
4681}
4682
4683/**
Auke Kok9a799d72007-09-15 14:07:45 -07004684 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004685 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004686 *
4687 * Returns 0 on success, negative on failure
4688 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004689int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004690{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004691 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004692 int orig_node = dev_to_node(dev);
4693 int numa_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004694 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07004695
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004696 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004697
4698 if (rx_ring->q_vector)
4699 numa_node = rx_ring->q_vector->numa_node;
4700
4701 rx_ring->rx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004702 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004703 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004704 if (!rx_ring->rx_buffer_info)
4705 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004706
Auke Kok9a799d72007-09-15 14:07:45 -07004707 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004708 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
4709 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004710
Alexander Duyckde88eee2012-02-08 07:49:59 +00004711 set_dev_node(dev, numa_node);
4712 rx_ring->desc = dma_alloc_coherent(dev,
4713 rx_ring->size,
4714 &rx_ring->dma,
4715 GFP_KERNEL);
4716 set_dev_node(dev, orig_node);
4717 if (!rx_ring->desc)
4718 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
4719 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004720 if (!rx_ring->desc)
4721 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004722
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004723 rx_ring->next_to_clean = 0;
4724 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004725
4726 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004727err:
4728 vfree(rx_ring->rx_buffer_info);
4729 rx_ring->rx_buffer_info = NULL;
4730 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07004731 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004732}
4733
4734/**
Alexander Duyck69888672008-09-11 20:05:39 -07004735 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
4736 * @adapter: board private structure
4737 *
4738 * If this function returns with an error, then it's possible one or
4739 * more of the rings is populated (while the rest are not). It is the
4740 * callers duty to clean those orphaned rings.
4741 *
4742 * Return 0 on success, negative on failure
4743 **/
Alexander Duyck69888672008-09-11 20:05:39 -07004744static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
4745{
4746 int i, err = 0;
4747
4748 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004749 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004750 if (!err)
4751 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004752
Emil Tantilov396e7992010-07-01 20:05:12 +00004753 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004754 goto err_setup_rx;
Alexander Duyck69888672008-09-11 20:05:39 -07004755 }
4756
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004757#ifdef IXGBE_FCOE
4758 err = ixgbe_setup_fcoe_ddp_resources(adapter);
4759 if (!err)
4760#endif
4761 return 0;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004762err_setup_rx:
4763 /* rewind the index freeing the rings as we go */
4764 while (i--)
4765 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004766 return err;
4767}
4768
4769/**
Auke Kok9a799d72007-09-15 14:07:45 -07004770 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004771 * @tx_ring: Tx descriptor ring for a specific queue
4772 *
4773 * Free all transmit software resources
4774 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004775void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004776{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004777 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004778
4779 vfree(tx_ring->tx_buffer_info);
4780 tx_ring->tx_buffer_info = NULL;
4781
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004782 /* if not set, then don't free */
4783 if (!tx_ring->desc)
4784 return;
4785
4786 dma_free_coherent(tx_ring->dev, tx_ring->size,
4787 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004788
4789 tx_ring->desc = NULL;
4790}
4791
4792/**
4793 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
4794 * @adapter: board private structure
4795 *
4796 * Free all transmit software resources
4797 **/
4798static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
4799{
4800 int i;
4801
4802 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004803 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004804 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004805}
4806
4807/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07004808 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07004809 * @rx_ring: ring to clean the resources from
4810 *
4811 * Free all receive software resources
4812 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004813void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004814{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004815 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004816
4817 vfree(rx_ring->rx_buffer_info);
4818 rx_ring->rx_buffer_info = NULL;
4819
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004820 /* if not set, then don't free */
4821 if (!rx_ring->desc)
4822 return;
4823
4824 dma_free_coherent(rx_ring->dev, rx_ring->size,
4825 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004826
4827 rx_ring->desc = NULL;
4828}
4829
4830/**
4831 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
4832 * @adapter: board private structure
4833 *
4834 * Free all receive software resources
4835 **/
4836static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
4837{
4838 int i;
4839
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004840#ifdef IXGBE_FCOE
4841 ixgbe_free_fcoe_ddp_resources(adapter);
4842
4843#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004844 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004845 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004846 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004847}
4848
4849/**
Auke Kok9a799d72007-09-15 14:07:45 -07004850 * ixgbe_change_mtu - Change the Maximum Transfer Unit
4851 * @netdev: network interface device structure
4852 * @new_mtu: new value for maximum frame size
4853 *
4854 * Returns 0 on success, negative on failure
4855 **/
4856static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
4857{
4858 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4859 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
4860
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07004861 /* MTU < 68 is an error and causes problems on some kernels */
Alexander Duyck655309e2012-02-08 07:50:35 +00004862 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
4863 return -EINVAL;
4864
4865 /*
Alexander Duyck872844d2012-08-15 02:10:43 +00004866 * For 82599EB we cannot allow legacy VFs to enable their receive
4867 * paths when MTU greater than 1500 is configured. So display a
4868 * warning that legacy VFs will be disabled.
Alexander Duyck655309e2012-02-08 07:50:35 +00004869 */
4870 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
4871 (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
4872 (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
Alexander Duyck872844d2012-08-15 02:10:43 +00004873 e_warn(probe, "Setting MTU > 1500 will disable legacy VFs\n");
Auke Kok9a799d72007-09-15 14:07:45 -07004874
Emil Tantilov396e7992010-07-01 20:05:12 +00004875 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Alexander Duyck655309e2012-02-08 07:50:35 +00004876
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004877 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07004878 netdev->mtu = new_mtu;
4879
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004880 if (netif_running(netdev))
4881 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004882
4883 return 0;
4884}
4885
4886/**
4887 * ixgbe_open - Called when a network interface is made active
4888 * @netdev: network interface device structure
4889 *
4890 * Returns 0 on success, negative value on failure
4891 *
4892 * The open entry point is called when a network interface is made
4893 * active by the system (IFF_UP). At this point all resources needed
4894 * for transmit and receive operations are allocated, the interrupt
4895 * handler is registered with the OS, the watchdog timer is started,
4896 * and the stack is notified that the interface is ready.
4897 **/
4898static int ixgbe_open(struct net_device *netdev)
4899{
4900 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4901 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07004902
Auke Kok4bebfaa2008-02-11 09:26:01 -08004903 /* disallow open during test */
4904 if (test_bit(__IXGBE_TESTING, &adapter->state))
4905 return -EBUSY;
4906
Jesse Brandeburg54386462009-04-17 20:44:27 +00004907 netif_carrier_off(netdev);
4908
Auke Kok9a799d72007-09-15 14:07:45 -07004909 /* allocate transmit descriptors */
4910 err = ixgbe_setup_all_tx_resources(adapter);
4911 if (err)
4912 goto err_setup_tx;
4913
Auke Kok9a799d72007-09-15 14:07:45 -07004914 /* allocate receive descriptors */
4915 err = ixgbe_setup_all_rx_resources(adapter);
4916 if (err)
4917 goto err_setup_rx;
4918
4919 ixgbe_configure(adapter);
4920
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004921 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004922 if (err)
4923 goto err_req_irq;
4924
Alexander Duyckac802f52012-07-12 05:52:53 +00004925 /* Notify the stack of the actual queue counts. */
4926 err = netif_set_real_num_tx_queues(netdev,
4927 adapter->num_rx_pools > 1 ? 1 :
4928 adapter->num_tx_queues);
4929 if (err)
4930 goto err_set_queues;
4931
4932
4933 err = netif_set_real_num_rx_queues(netdev,
4934 adapter->num_rx_pools > 1 ? 1 :
4935 adapter->num_rx_queues);
4936 if (err)
4937 goto err_set_queues;
4938
Jacob Keller1a71ab22012-08-25 03:54:19 +00004939 ixgbe_ptp_init(adapter);
Jacob Keller1a71ab22012-08-25 03:54:19 +00004940
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004941 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004942
4943 return 0;
4944
Alexander Duyckac802f52012-07-12 05:52:53 +00004945err_set_queues:
4946 ixgbe_free_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004947err_req_irq:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004948 ixgbe_free_all_rx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004949err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004950 ixgbe_free_all_tx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004951err_setup_tx:
Auke Kok9a799d72007-09-15 14:07:45 -07004952 ixgbe_reset(adapter);
4953
4954 return err;
4955}
4956
4957/**
4958 * ixgbe_close - Disables a network interface
4959 * @netdev: network interface device structure
4960 *
4961 * Returns 0, this is not allowed to fail
4962 *
4963 * The close entry point is called when an interface is de-activated
4964 * by the OS. The hardware is still under the drivers control, but
4965 * needs to be disabled. A global MAC reset is issued to stop the
4966 * hardware, and all transmit and receive resources are freed.
4967 **/
4968static int ixgbe_close(struct net_device *netdev)
4969{
4970 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07004971
Jacob Keller1a71ab22012-08-25 03:54:19 +00004972 ixgbe_ptp_stop(adapter);
Jacob Keller1a71ab22012-08-25 03:54:19 +00004973
Auke Kok9a799d72007-09-15 14:07:45 -07004974 ixgbe_down(adapter);
4975 ixgbe_free_irq(adapter);
4976
Alexander Duycke4911d52011-05-11 07:18:52 +00004977 ixgbe_fdir_filter_exit(adapter);
4978
Auke Kok9a799d72007-09-15 14:07:45 -07004979 ixgbe_free_all_tx_resources(adapter);
4980 ixgbe_free_all_rx_resources(adapter);
4981
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08004982 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004983
4984 return 0;
4985}
4986
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004987#ifdef CONFIG_PM
4988static int ixgbe_resume(struct pci_dev *pdev)
4989{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004990 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4991 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004992 u32 err;
4993
4994 pci_set_power_state(pdev, PCI_D0);
4995 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08004996 /*
4997 * pci_restore_state clears dev->state_saved so call
4998 * pci_save_state to restore it.
4999 */
5000 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005001
5002 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005003 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005004 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005005 return err;
5006 }
5007 pci_set_master(pdev);
5008
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005009 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005010
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005011 ixgbe_reset(adapter);
5012
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005013 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5014
Alexander Duyckac802f52012-07-12 05:52:53 +00005015 rtnl_lock();
5016 err = ixgbe_init_interrupt_scheme(adapter);
5017 if (!err && netif_running(netdev))
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005018 err = ixgbe_open(netdev);
Alexander Duyckac802f52012-07-12 05:52:53 +00005019
5020 rtnl_unlock();
5021
5022 if (err)
5023 return err;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005024
5025 netif_device_attach(netdev);
5026
5027 return 0;
5028}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005029#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005030
5031static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005032{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005033 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5034 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005035 struct ixgbe_hw *hw = &adapter->hw;
5036 u32 ctrl, fctrl;
5037 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005038#ifdef CONFIG_PM
5039 int retval = 0;
5040#endif
5041
5042 netif_device_detach(netdev);
5043
5044 if (netif_running(netdev)) {
Don Skidmoreab6039a2012-03-17 05:51:52 +00005045 rtnl_lock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005046 ixgbe_down(adapter);
5047 ixgbe_free_irq(adapter);
5048 ixgbe_free_all_tx_resources(adapter);
5049 ixgbe_free_all_rx_resources(adapter);
Don Skidmoreab6039a2012-03-17 05:51:52 +00005050 rtnl_unlock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005051 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005052
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005053 ixgbe_clear_interrupt_scheme(adapter);
5054
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005055#ifdef CONFIG_PM
5056 retval = pci_save_state(pdev);
5057 if (retval)
5058 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005059
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005060#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005061 if (wufc) {
5062 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005063
Emil Tantilovec74a472012-09-20 03:33:56 +00005064 /* enable the optics for 82599 SFP+ fiber as we can WoL */
5065 if (hw->mac.ops.enable_tx_laser)
Don Skidmorec509e752012-04-05 08:12:05 +00005066 hw->mac.ops.enable_tx_laser(hw);
5067
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005068 /* turn on all-multi mode if wake on multicast is enabled */
5069 if (wufc & IXGBE_WUFC_MC) {
5070 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5071 fctrl |= IXGBE_FCTRL_MPE;
5072 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5073 }
5074
5075 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5076 ctrl |= IXGBE_CTRL_GIO_DIS;
5077 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5078
5079 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5080 } else {
5081 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5082 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5083 }
5084
Alexander Duyckbd508172010-11-16 19:27:03 -08005085 switch (hw->mac.type) {
5086 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005087 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005088 break;
5089 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005090 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005091 pci_wake_from_d3(pdev, !!wufc);
5092 break;
5093 default:
5094 break;
5095 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005096
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005097 *enable_wake = !!wufc;
5098
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005099 ixgbe_release_hw_control(adapter);
5100
5101 pci_disable_device(pdev);
5102
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005103 return 0;
5104}
5105
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005106#ifdef CONFIG_PM
5107static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5108{
5109 int retval;
5110 bool wake;
5111
5112 retval = __ixgbe_shutdown(pdev, &wake);
5113 if (retval)
5114 return retval;
5115
5116 if (wake) {
5117 pci_prepare_to_sleep(pdev);
5118 } else {
5119 pci_wake_from_d3(pdev, false);
5120 pci_set_power_state(pdev, PCI_D3hot);
5121 }
5122
5123 return 0;
5124}
5125#endif /* CONFIG_PM */
5126
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005127static void ixgbe_shutdown(struct pci_dev *pdev)
5128{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005129 bool wake;
5130
5131 __ixgbe_shutdown(pdev, &wake);
5132
5133 if (system_state == SYSTEM_POWER_OFF) {
5134 pci_wake_from_d3(pdev, wake);
5135 pci_set_power_state(pdev, PCI_D3hot);
5136 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005137}
5138
5139/**
Auke Kok9a799d72007-09-15 14:07:45 -07005140 * ixgbe_update_stats - Update the board statistics counters.
5141 * @adapter: board private structure
5142 **/
5143void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5144{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005145 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005146 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005147 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005148 u64 total_mpc = 0;
5149 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005150 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5151 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005152 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005153
Don Skidmored08935c2010-06-11 13:20:29 +00005154 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5155 test_bit(__IXGBE_RESETTING, &adapter->state))
5156 return;
5157
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005158 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005159 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005160 u64 rsc_flush = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005161 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005162 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5163 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005164 }
5165 adapter->rsc_total_count = rsc_count;
5166 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005167 }
5168
Alexander Duyck5b7da512010-11-16 19:26:50 -08005169 for (i = 0; i < adapter->num_rx_queues; i++) {
5170 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5171 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5172 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5173 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005174 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005175 bytes += rx_ring->stats.bytes;
5176 packets += rx_ring->stats.packets;
5177 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005178 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005179 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5180 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005181 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005182 netdev->stats.rx_bytes = bytes;
5183 netdev->stats.rx_packets = packets;
5184
5185 bytes = 0;
5186 packets = 0;
5187 /* gather some stats to the adapter struct that are per queue */
5188 for (i = 0; i < adapter->num_tx_queues; i++) {
5189 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5190 restart_queue += tx_ring->tx_stats.restart_queue;
5191 tx_busy += tx_ring->tx_stats.tx_busy;
5192 bytes += tx_ring->stats.bytes;
5193 packets += tx_ring->stats.packets;
5194 }
5195 adapter->restart_queue = restart_queue;
5196 adapter->tx_busy = tx_busy;
5197 netdev->stats.tx_bytes = bytes;
5198 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005199
Joe Perches7ca647b2010-09-07 21:35:40 +00005200 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005201
5202 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005203 for (i = 0; i < 8; i++) {
5204 /* for packet buffers not used, the register should read 0 */
5205 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5206 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005207 hwstats->mpc[i] += mpc;
5208 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005209 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5210 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005211 switch (hw->mac.type) {
5212 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005213 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5214 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5215 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005216 hwstats->pxonrxc[i] +=
5217 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005218 break;
5219 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005220 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005221 hwstats->pxonrxc[i] +=
5222 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005223 break;
5224 default:
5225 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005226 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005227 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005228
5229 /*16 register reads */
5230 for (i = 0; i < 16; i++) {
5231 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5232 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5233 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5234 (hw->mac.type == ixgbe_mac_X540)) {
5235 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5236 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5237 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5238 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5239 }
5240 }
5241
Joe Perches7ca647b2010-09-07 21:35:40 +00005242 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005243 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005244 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005245
John Fastabendc84d3242010-11-16 19:27:12 -08005246 ixgbe_update_xoff_received(adapter);
5247
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005248 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005249 switch (hw->mac.type) {
5250 case ixgbe_mac_82598EB:
5251 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005252 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5253 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5254 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5255 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005256 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005257 /* OS2BMC stats are X540 only*/
5258 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5259 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5260 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5261 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5262 case ixgbe_mac_82599EB:
Alexander Duycka4d4f622012-03-28 08:03:32 +00005263 for (i = 0; i < 16; i++)
5264 adapter->hw_rx_no_dma_resources +=
5265 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005266 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005267 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005268 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005269 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005270 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005271 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005272 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005273 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5274 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005275#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005276 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5277 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5278 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5279 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5280 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5281 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005282 /* Add up per cpu counters for total ddp aloc fail */
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005283 if (adapter->fcoe.ddp_pool) {
5284 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5285 struct ixgbe_fcoe_ddp_pool *ddp_pool;
5286 unsigned int cpu;
5287 u64 noddp = 0, noddp_ext_buff = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005288 for_each_possible_cpu(cpu) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005289 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
5290 noddp += ddp_pool->noddp;
5291 noddp_ext_buff += ddp_pool->noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005292 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005293 hwstats->fcoe_noddp = noddp;
5294 hwstats->fcoe_noddp_ext_buff = noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005295 }
Yi Zou6d455222009-05-13 13:12:16 +00005296#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005297 break;
5298 default:
5299 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005300 }
Auke Kok9a799d72007-09-15 14:07:45 -07005301 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005302 hwstats->bprc += bprc;
5303 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005304 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005305 hwstats->mprc -= bprc;
5306 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5307 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5308 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5309 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5310 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5311 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5312 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5313 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005314 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005315 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005316 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005317 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005318 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5319 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005320 /*
5321 * 82598 errata - tx of flow control packets is included in tx counters
5322 */
5323 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005324 hwstats->gptc -= xon_off_tot;
5325 hwstats->mptc -= xon_off_tot;
5326 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5327 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5328 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5329 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5330 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5331 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5332 hwstats->ptc64 -= xon_off_tot;
5333 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5334 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5335 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5336 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5337 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5338 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005339
5340 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005341 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005342
5343 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005344 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005345 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005346 netdev->stats.rx_length_errors = hwstats->rlec;
5347 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005348 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005349}
5350
5351/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005352 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005353 * @adapter: pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005354 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005355static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005356{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005357 struct ixgbe_hw *hw = &adapter->hw;
5358 int i;
5359
Alexander Duyckd034acf2011-04-27 09:25:34 +00005360 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5361 return;
5362
5363 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5364
5365 /* if interface is down do nothing */
5366 if (test_bit(__IXGBE_DOWN, &adapter->state))
5367 return;
5368
5369 /* do nothing if we are not using signature filters */
5370 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5371 return;
5372
5373 adapter->fdir_overflow++;
5374
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005375 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5376 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005377 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005378 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005379 /* re-enable flow director interrupts */
5380 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005381 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005382 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005383 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005384 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005385}
5386
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005387/**
5388 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005389 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005390 *
5391 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005392 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005393 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005394 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005395 */
5396static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5397{
Auke Kok9a799d72007-09-15 14:07:45 -07005398 struct ixgbe_hw *hw = &adapter->hw;
5399 u64 eics = 0;
5400 int i;
5401
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005402 /* If we're down or resetting, just bail */
5403 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5404 test_bit(__IXGBE_RESETTING, &adapter->state))
5405 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005406
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005407 /* Force detection of hung controller */
5408 if (netif_carrier_ok(adapter->netdev)) {
5409 for (i = 0; i < adapter->num_tx_queues; i++)
5410 set_check_for_tx_hang(adapter->tx_ring[i]);
5411 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005412
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005413 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005414 /*
5415 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005416 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005417 * would set *both* EIMS and EICS for any bit in EIAM
5418 */
5419 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5420 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005421 } else {
5422 /* get one bit for every active tx/rx interrupt vector */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00005423 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005424 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00005425 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005426 eics |= ((u64)1 << i);
5427 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005428 }
5429
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005430 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005431 ixgbe_irq_rearm_queues(adapter, eics);
5432
Alexander Duyckfe49f042009-06-04 16:00:09 +00005433}
5434
5435/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005436 * ixgbe_watchdog_update_link - update the link status
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005437 * @adapter: pointer to the device adapter structure
5438 * @link_speed: pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005439 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005440static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005441{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005442 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005443 u32 link_speed = adapter->link_speed;
5444 bool link_up = adapter->link_up;
Alexander Duyck041441d2012-04-19 17:48:48 +00005445 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005446
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005447 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5448 return;
5449
5450 if (hw->mac.ops.check_link) {
5451 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005452 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005453 /* always assume link is up, if no check link function */
5454 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
5455 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005456 }
Alexander Duyck041441d2012-04-19 17:48:48 +00005457
5458 if (adapter->ixgbe_ieee_pfc)
5459 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
5460
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005461 if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
Alexander Duyck041441d2012-04-19 17:48:48 +00005462 hw->mac.ops.fc_enable(hw);
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005463 ixgbe_set_rx_drop_en(adapter);
5464 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005465
5466 if (link_up ||
5467 time_after(jiffies, (adapter->link_check_timeout +
5468 IXGBE_TRY_LINK_TIMEOUT))) {
5469 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5470 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
5471 IXGBE_WRITE_FLUSH(hw);
5472 }
5473
5474 adapter->link_up = link_up;
5475 adapter->link_speed = link_speed;
5476}
5477
Alexander Duyck107d3012012-10-02 00:17:03 +00005478static void ixgbe_update_default_up(struct ixgbe_adapter *adapter)
5479{
5480#ifdef CONFIG_IXGBE_DCB
5481 struct net_device *netdev = adapter->netdev;
5482 struct dcb_app app = {
5483 .selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE,
5484 .protocol = 0,
5485 };
5486 u8 up = 0;
5487
5488 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_IEEE)
5489 up = dcb_ieee_getapp_mask(netdev, &app);
5490
5491 adapter->default_up = (up > 1) ? (ffs(up) - 1) : 0;
5492#endif
5493}
5494
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005495/**
5496 * ixgbe_watchdog_link_is_up - update netif_carrier status and
5497 * print link up message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005498 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005499 **/
5500static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
5501{
5502 struct net_device *netdev = adapter->netdev;
5503 struct ixgbe_hw *hw = &adapter->hw;
5504 u32 link_speed = adapter->link_speed;
5505 bool flow_rx, flow_tx;
5506
5507 /* only continue if link was previously down */
5508 if (netif_carrier_ok(netdev))
5509 return;
5510
5511 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
5512
5513 switch (hw->mac.type) {
5514 case ixgbe_mac_82598EB: {
5515 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5516 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
5517 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
5518 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
5519 }
5520 break;
5521 case ixgbe_mac_X540:
5522 case ixgbe_mac_82599EB: {
5523 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
5524 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
5525 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
5526 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
5527 }
5528 break;
5529 default:
5530 flow_tx = false;
5531 flow_rx = false;
5532 break;
5533 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005534
Jacob Keller1a71ab22012-08-25 03:54:19 +00005535 if (adapter->flags2 & IXGBE_FLAG2_PTP_ENABLED)
5536 ixgbe_ptp_start_cyclecounter(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005537
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005538 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
5539 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
5540 "10 Gbps" :
5541 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
5542 "1 Gbps" :
5543 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
5544 "100 Mbps" :
5545 "unknown speed"))),
5546 ((flow_rx && flow_tx) ? "RX/TX" :
5547 (flow_rx ? "RX" :
5548 (flow_tx ? "TX" : "None"))));
5549
5550 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005551 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005552
Alexander Duyck107d3012012-10-02 00:17:03 +00005553 /* update the default user priority for VFs */
5554 ixgbe_update_default_up(adapter);
5555
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005556 /* ping all the active vfs to let them know link has changed */
5557 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005558}
5559
5560/**
5561 * ixgbe_watchdog_link_is_down - update netif_carrier status and
5562 * print link down message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005563 * @adapter: pointer to the adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005564 **/
Alexander Duyck581330b2012-02-08 07:51:47 +00005565static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005566{
5567 struct net_device *netdev = adapter->netdev;
5568 struct ixgbe_hw *hw = &adapter->hw;
5569
5570 adapter->link_up = false;
5571 adapter->link_speed = 0;
5572
5573 /* only continue if link was up previously */
5574 if (!netif_carrier_ok(netdev))
5575 return;
5576
5577 /* poll for SFP+ cable when link is down */
5578 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
5579 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
5580
Jacob Keller1a71ab22012-08-25 03:54:19 +00005581 if (adapter->flags2 & IXGBE_FLAG2_PTP_ENABLED)
5582 ixgbe_ptp_start_cyclecounter(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005583
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005584 e_info(drv, "NIC Link is Down\n");
5585 netif_carrier_off(netdev);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005586
5587 /* ping all the active vfs to let them know link has changed */
5588 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005589}
5590
5591/**
5592 * ixgbe_watchdog_flush_tx - flush queues on link down
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005593 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005594 **/
5595static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
5596{
5597 int i;
5598 int some_tx_pending = 0;
5599
5600 if (!netif_carrier_ok(adapter->netdev)) {
5601 for (i = 0; i < adapter->num_tx_queues; i++) {
5602 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5603 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
5604 some_tx_pending = 1;
5605 break;
5606 }
5607 }
5608
5609 if (some_tx_pending) {
5610 /* We've lost link, so the controller stops DMA,
5611 * but we've got queued Tx work that's never going
5612 * to get done, so reset controller to flush Tx.
5613 * (Do the reset outside of interrupt context).
5614 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005615 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005616 }
5617 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005618}
5619
Greg Rosea985b6c32010-11-18 03:02:52 +00005620static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
5621{
5622 u32 ssvpc;
5623
Greg Rose0584d992012-08-08 00:00:58 +00005624 /* Do not perform spoof check for 82598 or if not in IOV mode */
5625 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
5626 adapter->num_vfs == 0)
Greg Rosea985b6c32010-11-18 03:02:52 +00005627 return;
5628
5629 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
5630
5631 /*
5632 * ssvpc register is cleared on read, if zero then no
5633 * spoofed packets in the last interval.
5634 */
5635 if (!ssvpc)
5636 return;
5637
Emil Tantilovd6ea0752012-08-08 06:28:37 +00005638 e_warn(drv, "%u Spoofed packets detected\n", ssvpc);
Greg Rosea985b6c32010-11-18 03:02:52 +00005639}
5640
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005641/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005642 * ixgbe_watchdog_subtask - check and bring link up
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005643 * @adapter: pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005644 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005645static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005646{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005647 /* if interface is down do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00005648 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5649 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005650 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005651
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005652 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00005653
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005654 if (adapter->link_up)
5655 ixgbe_watchdog_link_is_up(adapter);
5656 else
5657 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005658
Greg Rosea985b6c32010-11-18 03:02:52 +00005659 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005660 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005661
5662 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005663}
5664
Alexander Duyck70864002011-04-27 09:13:56 +00005665/**
5666 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005667 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005668 **/
5669static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
5670{
5671 struct ixgbe_hw *hw = &adapter->hw;
5672 s32 err;
5673
5674 /* not searching for SFP so there is nothing to do here */
5675 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
5676 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5677 return;
5678
5679 /* someone else is in init, wait until next service event */
5680 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5681 return;
5682
5683 err = hw->phy.ops.identify_sfp(hw);
5684 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5685 goto sfp_out;
5686
5687 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
5688 /* If no cable is present, then we need to reset
5689 * the next time we find a good cable. */
5690 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
5691 }
5692
5693 /* exit on error */
5694 if (err)
5695 goto sfp_out;
5696
5697 /* exit if reset not needed */
5698 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5699 goto sfp_out;
5700
5701 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
5702
5703 /*
5704 * A module may be identified correctly, but the EEPROM may not have
5705 * support for that module. setup_sfp() will fail in that case, so
5706 * we should not allow that module to load.
5707 */
5708 if (hw->mac.type == ixgbe_mac_82598EB)
5709 err = hw->phy.ops.reset(hw);
5710 else
5711 err = hw->mac.ops.setup_sfp(hw);
5712
5713 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5714 goto sfp_out;
5715
5716 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
5717 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
5718
5719sfp_out:
5720 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5721
5722 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
5723 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
5724 e_dev_err("failed to initialize because an unsupported "
5725 "SFP+ module type was detected.\n");
5726 e_dev_err("Reload the driver after installing a "
5727 "supported module.\n");
5728 unregister_netdev(adapter->netdev);
5729 }
5730}
5731
5732/**
5733 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005734 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005735 **/
5736static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
5737{
5738 struct ixgbe_hw *hw = &adapter->hw;
5739 u32 autoneg;
5740 bool negotiation;
5741
5742 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
5743 return;
5744
5745 /* someone else is in init, wait until next service event */
5746 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5747 return;
5748
5749 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
5750
5751 autoneg = hw->phy.autoneg_advertised;
5752 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
5753 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Alexander Duyck70864002011-04-27 09:13:56 +00005754 if (hw->mac.ops.setup_link)
5755 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
5756
5757 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5758 adapter->link_check_timeout = jiffies;
5759 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5760}
5761
Greg Rose83c61fa2011-09-07 05:59:35 +00005762#ifdef CONFIG_PCI_IOV
5763static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
5764{
5765 int vf;
5766 struct ixgbe_hw *hw = &adapter->hw;
5767 struct net_device *netdev = adapter->netdev;
5768 u32 gpc;
5769 u32 ciaa, ciad;
5770
5771 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
5772 if (gpc) /* If incrementing then no need for the check below */
5773 return;
5774 /*
5775 * Check to see if a bad DMA write target from an errant or
5776 * malicious VF has caused a PCIe error. If so then we can
5777 * issue a VFLR to the offending VF(s) and then resume without
5778 * requesting a full slot reset.
5779 */
5780
5781 for (vf = 0; vf < adapter->num_vfs; vf++) {
5782 ciaa = (vf << 16) | 0x80000000;
5783 /* 32 bit read so align, we really want status at offset 6 */
5784 ciaa |= PCI_COMMAND;
5785 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5786 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
5787 ciaa &= 0x7FFFFFFF;
5788 /* disable debug mode asap after reading data */
5789 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5790 /* Get the upper 16 bits which will be the PCI status reg */
5791 ciad >>= 16;
5792 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
5793 netdev_err(netdev, "VF %d Hung DMA\n", vf);
5794 /* Issue VFLR */
5795 ciaa = (vf << 16) | 0x80000000;
5796 ciaa |= 0xA8;
5797 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5798 ciad = 0x00008000; /* VFLR */
5799 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
5800 ciaa &= 0x7FFFFFFF;
5801 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5802 }
5803 }
5804}
5805
5806#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005807/**
5808 * ixgbe_service_timer - Timer Call-back
5809 * @data: pointer to adapter cast into an unsigned long
5810 **/
5811static void ixgbe_service_timer(unsigned long data)
5812{
5813 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
5814 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00005815 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00005816
5817 /* poll faster when waiting for link */
5818 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
5819 next_event_offset = HZ / 10;
5820 else
5821 next_event_offset = HZ * 2;
5822
Greg Rose83c61fa2011-09-07 05:59:35 +00005823#ifdef CONFIG_PCI_IOV
Alexander Duyck6bb78cf2012-02-08 07:51:22 +00005824 /*
5825 * don't bother with SR-IOV VF DMA hang check if there are
5826 * no VFs or the link is down
5827 */
5828 if (!adapter->num_vfs ||
5829 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5830 goto normal_timer_service;
5831
5832 /* If we have VFs allocated then we must check for DMA hangs */
5833 ixgbe_check_for_bad_vf(adapter);
5834 next_event_offset = HZ / 50;
5835 adapter->timer_event_accumulator++;
5836
5837 if (adapter->timer_event_accumulator >= 100)
5838 adapter->timer_event_accumulator = 0;
5839 else
5840 ready = false;
5841
5842normal_timer_service:
Greg Rose83c61fa2011-09-07 05:59:35 +00005843#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005844 /* Reset the timer */
5845 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
5846
Greg Rose83c61fa2011-09-07 05:59:35 +00005847 if (ready)
5848 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005849}
5850
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005851static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
5852{
5853 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
5854 return;
5855
5856 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
5857
5858 /* If we're already down or resetting, just bail */
5859 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5860 test_bit(__IXGBE_RESETTING, &adapter->state))
5861 return;
5862
5863 ixgbe_dump(adapter);
5864 netdev_err(adapter->netdev, "Reset adapter\n");
5865 adapter->tx_timeout_count++;
5866
5867 ixgbe_reinit_locked(adapter);
5868}
5869
Alexander Duyck70864002011-04-27 09:13:56 +00005870/**
5871 * ixgbe_service_task - manages and runs subtasks
5872 * @work: pointer to work_struct containing our data
5873 **/
5874static void ixgbe_service_task(struct work_struct *work)
5875{
5876 struct ixgbe_adapter *adapter = container_of(work,
5877 struct ixgbe_adapter,
5878 service_task);
5879
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005880 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005881 ixgbe_sfp_detection_subtask(adapter);
5882 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00005883 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005884 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00005885 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005886 ixgbe_check_hang_subtask(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005887 ixgbe_ptp_overflow_check(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005888
5889 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005890}
5891
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005892static int ixgbe_tso(struct ixgbe_ring *tx_ring,
5893 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005894 u8 *hdr_len)
Alexander Duyck897ab152011-05-27 05:31:47 +00005895{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005896 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005897 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005898 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07005899
Alexander Duyck897ab152011-05-27 05:31:47 +00005900 if (!skb_is_gso(skb))
5901 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005902
Alexander Duyck897ab152011-05-27 05:31:47 +00005903 if (skb_header_cloned(skb)) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00005904 int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Alexander Duyck897ab152011-05-27 05:31:47 +00005905 if (err)
5906 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00005907 }
5908
Alexander Duyck897ab152011-05-27 05:31:47 +00005909 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
5910 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
5911
Alexander Duyck244e27a2012-02-08 07:51:11 +00005912 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005913 struct iphdr *iph = ip_hdr(skb);
5914 iph->tot_len = 0;
5915 iph->check = 0;
5916 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5917 iph->daddr, 0,
5918 IPPROTO_TCP,
5919 0);
5920 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005921 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5922 IXGBE_TX_FLAGS_CSUM |
5923 IXGBE_TX_FLAGS_IPV4;
Alexander Duyck897ab152011-05-27 05:31:47 +00005924 } else if (skb_is_gso_v6(skb)) {
5925 ipv6_hdr(skb)->payload_len = 0;
5926 tcp_hdr(skb)->check =
5927 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
5928 &ipv6_hdr(skb)->daddr,
5929 0, IPPROTO_TCP, 0);
Alexander Duyck244e27a2012-02-08 07:51:11 +00005930 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5931 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck897ab152011-05-27 05:31:47 +00005932 }
5933
Alexander Duyck091a6242012-02-08 07:51:01 +00005934 /* compute header lengths */
Alexander Duyck897ab152011-05-27 05:31:47 +00005935 l4len = tcp_hdrlen(skb);
5936 *hdr_len = skb_transport_offset(skb) + l4len;
5937
Alexander Duyck091a6242012-02-08 07:51:01 +00005938 /* update gso size and bytecount with header size */
5939 first->gso_segs = skb_shinfo(skb)->gso_segs;
5940 first->bytecount += (first->gso_segs - 1) * *hdr_len;
5941
Alexander Duyck897ab152011-05-27 05:31:47 +00005942 /* mss_l4len_id: use 1 as index for TSO */
5943 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
5944 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
5945 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
5946
5947 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
5948 vlan_macip_lens = skb_network_header_len(skb);
5949 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005950 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005951
5952 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005953 mss_l4len_idx);
Alexander Duyck897ab152011-05-27 05:31:47 +00005954
5955 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00005956}
5957
Alexander Duyck244e27a2012-02-08 07:51:11 +00005958static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
5959 struct ixgbe_tx_buffer *first)
Auke Kok9a799d72007-09-15 14:07:45 -07005960{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005961 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005962 u32 vlan_macip_lens = 0;
5963 u32 mss_l4len_idx = 0;
5964 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005965
Alexander Duyck897ab152011-05-27 05:31:47 +00005966 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck62748b72012-07-20 08:09:01 +00005967 if (!(first->tx_flags & IXGBE_TX_FLAGS_HW_VLAN)) {
5968 if (unlikely(skb->no_fcs))
5969 first->tx_flags |= IXGBE_TX_FLAGS_NO_IFCS;
5970 if (!(first->tx_flags & IXGBE_TX_FLAGS_TXSW))
5971 return;
5972 }
Alexander Duyck897ab152011-05-27 05:31:47 +00005973 } else {
5974 u8 l4_hdr = 0;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005975 switch (first->protocol) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005976 case __constant_htons(ETH_P_IP):
5977 vlan_macip_lens |= skb_network_header_len(skb);
5978 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
5979 l4_hdr = ip_hdr(skb)->protocol;
5980 break;
5981 case __constant_htons(ETH_P_IPV6):
5982 vlan_macip_lens |= skb_network_header_len(skb);
5983 l4_hdr = ipv6_hdr(skb)->nexthdr;
5984 break;
5985 default:
5986 if (unlikely(net_ratelimit())) {
5987 dev_warn(tx_ring->dev,
5988 "partial checksum but proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005989 first->protocol);
Alexander Duyck897ab152011-05-27 05:31:47 +00005990 }
5991 break;
5992 }
Auke Kok9a799d72007-09-15 14:07:45 -07005993
Alexander Duyck897ab152011-05-27 05:31:47 +00005994 switch (l4_hdr) {
5995 case IPPROTO_TCP:
5996 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
5997 mss_l4len_idx = tcp_hdrlen(skb) <<
5998 IXGBE_ADVTXD_L4LEN_SHIFT;
5999 break;
6000 case IPPROTO_SCTP:
6001 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6002 mss_l4len_idx = sizeof(struct sctphdr) <<
6003 IXGBE_ADVTXD_L4LEN_SHIFT;
6004 break;
6005 case IPPROTO_UDP:
6006 mss_l4len_idx = sizeof(struct udphdr) <<
6007 IXGBE_ADVTXD_L4LEN_SHIFT;
6008 break;
6009 default:
6010 if (unlikely(net_ratelimit())) {
6011 dev_warn(tx_ring->dev,
6012 "partial checksum but l4 proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00006013 l4_hdr);
Alexander Duyck897ab152011-05-27 05:31:47 +00006014 }
6015 break;
6016 }
Alexander Duyck244e27a2012-02-08 07:51:11 +00006017
6018 /* update TX checksum flag */
6019 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07006020 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006021
Alexander Duyck244e27a2012-02-08 07:51:11 +00006022 /* vlan_macip_lens: MACLEN, VLAN tag */
Alexander Duyck897ab152011-05-27 05:31:47 +00006023 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006024 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006025
6026 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
6027 type_tucmd, mss_l4len_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07006028}
6029
Alexander Duyckd3d00232011-07-15 02:31:25 +00006030static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
6031{
6032 /* set type for advanced descriptor with frame checksum insertion */
6033 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
Alexander Duyckd3d00232011-07-15 02:31:25 +00006034 IXGBE_ADVTXD_DCMD_DEXT);
6035
6036 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006037 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006038 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
6039
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006040 if (tx_flags & IXGBE_TX_FLAGS_TSTAMP)
6041 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_MAC_TSTAMP);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006042
Alexander Duyckd3d00232011-07-15 02:31:25 +00006043 /* set segmentation enable bits for TSO/FSO */
6044#ifdef IXGBE_FCOE
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006045 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FSO))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006046#else
6047 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6048#endif
6049 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
6050
Alexander Duyck62748b72012-07-20 08:09:01 +00006051 /* insert frame checksum */
6052 if (!(tx_flags & IXGBE_TX_FLAGS_NO_IFCS))
6053 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_IFCS);
6054
Alexander Duyckd3d00232011-07-15 02:31:25 +00006055 return cmd_type;
6056}
6057
Alexander Duyck729739b2012-02-08 07:51:06 +00006058static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
6059 u32 tx_flags, unsigned int paylen)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006060{
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006061 __le32 olinfo_status = cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006062
6063 /* enable L4 checksum for TSO and TX checksum offload */
6064 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6065 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
6066
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006067 /* enble IPv4 checksum for TSO */
6068 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6069 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006070
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006071 /* use index 1 context for TSO/FSO/FCOE */
6072#ifdef IXGBE_FCOE
6073 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FCOE))
6074#else
6075 if (tx_flags & IXGBE_TX_FLAGS_TSO)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006076#endif
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006077 olinfo_status |= cpu_to_le32(1 << IXGBE_ADVTXD_IDX_SHIFT);
6078
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006079 /*
6080 * Check Context must be set if Tx switch is enabled, which it
6081 * always is for case where virtual functions are running
6082 */
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006083#ifdef IXGBE_FCOE
6084 if (tx_flags & (IXGBE_TX_FLAGS_TXSW | IXGBE_TX_FLAGS_FCOE))
6085#else
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006086 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006087#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006088 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
6089
Alexander Duyck729739b2012-02-08 07:51:06 +00006090 tx_desc->read.olinfo_status = olinfo_status;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006091}
6092
6093#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6094 IXGBE_TXD_CMD_RS)
6095
6096static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006097 struct ixgbe_tx_buffer *first,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006098 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006099{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006100 dma_addr_t dma;
Alexander Duyck729739b2012-02-08 07:51:06 +00006101 struct sk_buff *skb = first->skb;
6102 struct ixgbe_tx_buffer *tx_buffer;
6103 union ixgbe_adv_tx_desc *tx_desc;
6104 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
Alexander Duyckd3d00232011-07-15 02:31:25 +00006105 unsigned int data_len = skb->data_len;
6106 unsigned int size = skb_headlen(skb);
Alexander Duyck729739b2012-02-08 07:51:06 +00006107 unsigned int paylen = skb->len - hdr_len;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006108 u32 tx_flags = first->tx_flags;
Alexander Duyck729739b2012-02-08 07:51:06 +00006109 __le32 cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006110 u16 i = tx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07006111
Alexander Duyck729739b2012-02-08 07:51:06 +00006112 tx_desc = IXGBE_TX_DESC(tx_ring, i);
6113
6114 ixgbe_tx_olinfo_status(tx_desc, tx_flags, paylen);
6115 cmd_type = ixgbe_tx_cmd_type(tx_flags);
6116
Alexander Duyckd3d00232011-07-15 02:31:25 +00006117#ifdef IXGBE_FCOE
6118 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006119 if (data_len < sizeof(struct fcoe_crc_eof)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006120 size -= sizeof(struct fcoe_crc_eof) - data_len;
6121 data_len = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00006122 } else {
6123 data_len -= sizeof(struct fcoe_crc_eof);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006124 }
Auke Kok9a799d72007-09-15 14:07:45 -07006125 }
6126
Alexander Duyckd3d00232011-07-15 02:31:25 +00006127#endif
Alexander Duyck729739b2012-02-08 07:51:06 +00006128 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
6129 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006130 goto dma_error;
6131
Alexander Duyck729739b2012-02-08 07:51:06 +00006132 /* record length, and DMA address */
6133 dma_unmap_len_set(first, len, size);
6134 dma_unmap_addr_set(first, dma, dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006135
Alexander Duyck729739b2012-02-08 07:51:06 +00006136 tx_desc->read.buffer_addr = cpu_to_le64(dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006137
6138 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006139 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006140 tx_desc->read.cmd_type_len =
6141 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006142
Alexander Duyckd3d00232011-07-15 02:31:25 +00006143 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00006144 tx_desc++;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006145 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006146 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006147 i = 0;
6148 }
Alexander Duyck729739b2012-02-08 07:51:06 +00006149
6150 dma += IXGBE_MAX_DATA_PER_TXD;
6151 size -= IXGBE_MAX_DATA_PER_TXD;
6152
6153 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6154 tx_desc->read.olinfo_status = 0;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006155 }
6156
Alexander Duyck729739b2012-02-08 07:51:06 +00006157 if (likely(!data_len))
6158 break;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006159
Alexander Duyckd3d00232011-07-15 02:31:25 +00006160 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006161
Alexander Duyck729739b2012-02-08 07:51:06 +00006162 i++;
6163 tx_desc++;
6164 if (i == tx_ring->count) {
6165 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
6166 i = 0;
6167 }
Auke Kok9a799d72007-09-15 14:07:45 -07006168
Alexander Duyckd3d00232011-07-15 02:31:25 +00006169#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006170 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006171#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006172 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006173#endif
6174 data_len -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006175
Alexander Duyck729739b2012-02-08 07:51:06 +00006176 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
6177 DMA_TO_DEVICE);
6178 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006179 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006180
Alexander Duyck729739b2012-02-08 07:51:06 +00006181 tx_buffer = &tx_ring->tx_buffer_info[i];
6182 dma_unmap_len_set(tx_buffer, len, size);
6183 dma_unmap_addr_set(tx_buffer, dma, dma);
6184
6185 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6186 tx_desc->read.olinfo_status = 0;
6187
6188 frag++;
Auke Kok9a799d72007-09-15 14:07:45 -07006189 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006190
Alexander Duyck729739b2012-02-08 07:51:06 +00006191 /* write last descriptor with RS and EOP bits */
6192 cmd_type |= cpu_to_le32(size) | cpu_to_le32(IXGBE_TXD_CMD);
6193 tx_desc->read.cmd_type_len = cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006194
Alexander Duyck091a6242012-02-08 07:51:01 +00006195 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Alexander Duyckb2d96e02012-02-07 08:14:33 +00006196
Alexander Duyckd3d00232011-07-15 02:31:25 +00006197 /* set the timestamp */
6198 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006199
6200 /*
Alexander Duyck729739b2012-02-08 07:51:06 +00006201 * Force memory writes to complete before letting h/w know there
6202 * are new descriptors to fetch. (Only applicable for weak-ordered
6203 * memory model archs, such as IA-64).
6204 *
6205 * We also need this memory barrier to make certain all of the
6206 * status bits have been updated before next_to_watch is written.
Auke Kok9a799d72007-09-15 14:07:45 -07006207 */
6208 wmb();
6209
Alexander Duyckd3d00232011-07-15 02:31:25 +00006210 /* set next_to_watch value indicating a packet is present */
6211 first->next_to_watch = tx_desc;
6212
Alexander Duyck729739b2012-02-08 07:51:06 +00006213 i++;
6214 if (i == tx_ring->count)
6215 i = 0;
6216
6217 tx_ring->next_to_use = i;
6218
Alexander Duyckd3d00232011-07-15 02:31:25 +00006219 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006220 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006221
6222 return;
6223dma_error:
Alexander Duyck729739b2012-02-08 07:51:06 +00006224 dev_err(tx_ring->dev, "TX DMA map failed\n");
Alexander Duyckd3d00232011-07-15 02:31:25 +00006225
6226 /* clear dma mappings for failed tx_buffer_info map */
6227 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006228 tx_buffer = &tx_ring->tx_buffer_info[i];
6229 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
6230 if (tx_buffer == first)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006231 break;
6232 if (i == 0)
6233 i = tx_ring->count;
6234 i--;
6235 }
6236
Alexander Duyckd3d00232011-07-15 02:31:25 +00006237 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006238}
6239
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006240static void ixgbe_atr(struct ixgbe_ring *ring,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006241 struct ixgbe_tx_buffer *first)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006242{
Alexander Duyck69830522011-01-06 14:29:58 +00006243 struct ixgbe_q_vector *q_vector = ring->q_vector;
6244 union ixgbe_atr_hash_dword input = { .dword = 0 };
6245 union ixgbe_atr_hash_dword common = { .dword = 0 };
6246 union {
6247 unsigned char *network;
6248 struct iphdr *ipv4;
6249 struct ipv6hdr *ipv6;
6250 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006251 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006252 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006253
Alexander Duyck69830522011-01-06 14:29:58 +00006254 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6255 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006256 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006257
Alexander Duyck69830522011-01-06 14:29:58 +00006258 /* do nothing if sampling is disabled */
6259 if (!ring->atr_sample_rate)
6260 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006261
Alexander Duyck69830522011-01-06 14:29:58 +00006262 ring->atr_count++;
6263
6264 /* snag network header to get L4 type and address */
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006265 hdr.network = skb_network_header(first->skb);
Alexander Duyck69830522011-01-06 14:29:58 +00006266
6267 /* Currently only IPv4/IPv6 with TCP is supported */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006268 if ((first->protocol != __constant_htons(ETH_P_IPV6) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006269 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
Alexander Duyck244e27a2012-02-08 07:51:11 +00006270 (first->protocol != __constant_htons(ETH_P_IP) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006271 hdr.ipv4->protocol != IPPROTO_TCP))
6272 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006273
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006274 th = tcp_hdr(first->skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006275
Alexander Duyck66f32a82011-06-29 05:43:22 +00006276 /* skip this packet since it is invalid or the socket is closing */
6277 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006278 return;
6279
6280 /* sample on all syn packets or once every atr sample count */
6281 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6282 return;
6283
6284 /* reset sample count */
6285 ring->atr_count = 0;
6286
Alexander Duyck244e27a2012-02-08 07:51:11 +00006287 vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
Alexander Duyck69830522011-01-06 14:29:58 +00006288
6289 /*
6290 * src and dst are inverted, think how the receiver sees them
6291 *
6292 * The input is broken into two sections, a non-compressed section
6293 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6294 * is XORed together and stored in the compressed dword.
6295 */
6296 input.formatted.vlan_id = vlan_id;
6297
6298 /*
6299 * since src port and flex bytes occupy the same word XOR them together
6300 * and write the value to source port portion of compressed dword
6301 */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006302 if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006303 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6304 else
Alexander Duyck244e27a2012-02-08 07:51:11 +00006305 common.port.src ^= th->dest ^ first->protocol;
Alexander Duyck69830522011-01-06 14:29:58 +00006306 common.port.dst ^= th->source;
6307
Alexander Duyck244e27a2012-02-08 07:51:11 +00006308 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck69830522011-01-06 14:29:58 +00006309 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6310 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6311 } else {
6312 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6313 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6314 hdr.ipv6->saddr.s6_addr32[1] ^
6315 hdr.ipv6->saddr.s6_addr32[2] ^
6316 hdr.ipv6->saddr.s6_addr32[3] ^
6317 hdr.ipv6->daddr.s6_addr32[0] ^
6318 hdr.ipv6->daddr.s6_addr32[1] ^
6319 hdr.ipv6->daddr.s6_addr32[2] ^
6320 hdr.ipv6->daddr.s6_addr32[3];
6321 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006322
6323 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006324 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6325 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006326}
6327
Alexander Duyck63544e92011-05-27 05:31:42 +00006328static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006329{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006330 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006331 /* Herbert's original patch had:
6332 * smp_mb__after_netif_stop_queue();
6333 * but since that doesn't exist yet, just open code it. */
6334 smp_mb();
6335
6336 /* We need to check again in a case another CPU has just
6337 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006338 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006339 return -EBUSY;
6340
6341 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006342 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006343 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006344 return 0;
6345}
6346
Alexander Duyck82d4e462011-06-11 01:44:58 +00006347static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006348{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006349 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006350 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006351 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006352}
6353
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006354static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6355{
6356 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006357 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6358 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006359#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006360 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006361
John Fastabende5b64632011-03-08 03:44:52 +00006362 if (((protocol == htons(ETH_P_FCOE)) ||
6363 (protocol == htons(ETH_P_FIP))) &&
6364 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyckc0876632012-05-10 00:01:46 +00006365 struct ixgbe_ring_feature *f;
6366
6367 f = &adapter->ring_feature[RING_F_FCOE];
6368
6369 while (txq >= f->indices)
6370 txq -= f->indices;
Alexander Duycke4b317e2012-05-05 05:30:53 +00006371 txq += adapter->ring_feature[RING_F_FCOE].offset;
Alexander Duyckc0876632012-05-10 00:01:46 +00006372
John Fastabende5b64632011-03-08 03:44:52 +00006373 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006374 }
6375#endif
6376
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006377 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6378 while (unlikely(txq >= dev->real_num_tx_queues))
6379 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006380 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006381 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006382
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006383 return skb_tx_hash(dev, skb);
6384}
6385
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006386netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006387 struct ixgbe_adapter *adapter,
6388 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006389{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006390 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006391 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006392 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006393#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6394 unsigned short f;
6395#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006396 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006397 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006398 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006399
Alexander Duycka535c302011-05-27 05:31:52 +00006400 /*
6401 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00006402 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00006403 * + 2 desc gap to keep tail from touching head,
6404 * + 1 desc for context descriptor,
6405 * otherwise try next time
6406 */
6407#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6408 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6409 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6410#else
6411 count += skb_shinfo(skb)->nr_frags;
6412#endif
6413 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6414 tx_ring->tx_stats.tx_busy++;
6415 return NETDEV_TX_BUSY;
6416 }
6417
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006418 /* record the location of the first descriptor for this packet */
6419 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
6420 first->skb = skb;
Alexander Duyck091a6242012-02-08 07:51:01 +00006421 first->bytecount = skb->len;
6422 first->gso_segs = 1;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006423
Alexander Duyck66f32a82011-06-29 05:43:22 +00006424 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00006425 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006426 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6427 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6428 /* else if it is a SW VLAN check the next protocol and store the tag */
6429 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
6430 struct vlan_hdr *vhdr, _vhdr;
6431 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
6432 if (!vhdr)
6433 goto out_drop;
6434
6435 protocol = vhdr->h_vlan_encapsulated_proto;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006436 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
6437 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006438 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006439 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006440
Jacob Kelleraa7bd462012-05-04 01:55:23 +00006441 skb_tx_timestamp(skb);
6442
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006443 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
6444 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
6445 tx_flags |= IXGBE_TX_FLAGS_TSTAMP;
6446 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006447
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006448#ifdef CONFIG_PCI_IOV
6449 /*
6450 * Use the l2switch_enable flag - would be false if the DMA
6451 * Tx switch had been disabled.
6452 */
6453 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6454 tx_flags |= IXGBE_TX_FLAGS_TXSW;
6455
6456#endif
John Fastabend32701dc2011-09-27 03:51:56 +00006457 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006458 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00006459 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
6460 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006461 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00006462 tx_flags |= (skb->priority & 0x7) <<
6463 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006464 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
6465 struct vlan_ethhdr *vhdr;
6466 if (skb_header_cloned(skb) &&
6467 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6468 goto out_drop;
6469 vhdr = (struct vlan_ethhdr *)skb->data;
6470 vhdr->h_vlan_TCI = htons(tx_flags >>
6471 IXGBE_TX_FLAGS_VLAN_SHIFT);
6472 } else {
6473 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6474 }
6475 }
Alexander Duycka535c302011-05-27 05:31:52 +00006476
Alexander Duyck244e27a2012-02-08 07:51:11 +00006477 /* record initial flags and protocol */
6478 first->tx_flags = tx_flags;
6479 first->protocol = protocol;
6480
Yi Zoueacd73f2009-05-13 13:11:06 +00006481#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00006482 /* setup tx offload for FCoE */
6483 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
Alexander Duycka58915c2012-05-25 06:38:18 +00006484 (tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00006485 tso = ixgbe_fso(tx_ring, first, &hdr_len);
Alexander Duyck897ab152011-05-27 05:31:47 +00006486 if (tso < 0)
6487 goto out_drop;
Auke Kok9a799d72007-09-15 14:07:45 -07006488
Alexander Duyck66f32a82011-06-29 05:43:22 +00006489 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006490 }
Auke Kok9a799d72007-09-15 14:07:45 -07006491
Auke Kok9a799d72007-09-15 14:07:45 -07006492#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006493 tso = ixgbe_tso(tx_ring, first, &hdr_len);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006494 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07006495 goto out_drop;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006496 else if (!tso)
6497 ixgbe_tx_csum(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006498
6499 /* add the ATR filter if ATR is on */
6500 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
Alexander Duyck244e27a2012-02-08 07:51:11 +00006501 ixgbe_atr(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006502
6503#ifdef IXGBE_FCOE
6504xmit_fcoe:
6505#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006506 ixgbe_tx_map(tx_ring, first, hdr_len);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006507
6508 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006509
6510 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006511
6512out_drop:
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006513 dev_kfree_skb_any(first->skb);
6514 first->skb = NULL;
6515
Alexander Duyck897ab152011-05-27 05:31:47 +00006516 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07006517}
6518
Alexander Duycka50c29d2012-02-08 07:50:40 +00006519static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
6520 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07006521{
6522 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006523 struct ixgbe_ring *tx_ring;
Auke Kok9a799d72007-09-15 14:07:45 -07006524
Alexander Duycka50c29d2012-02-08 07:50:40 +00006525 /*
6526 * The minimum packet size for olinfo paylen is 17 so pad the skb
6527 * in order to meet this minimum size requirement.
6528 */
Stephen Hemmingerf73332f2012-06-21 02:15:10 +00006529 if (unlikely(skb->len < 17)) {
6530 if (skb_pad(skb, 17 - skb->len))
Alexander Duycka50c29d2012-02-08 07:50:40 +00006531 return NETDEV_TX_OK;
6532 skb->len = 17;
Tushar Dave71a49f72012-09-14 04:24:49 +00006533 skb_set_tail_pointer(skb, 17);
Alexander Duycka50c29d2012-02-08 07:50:40 +00006534 }
6535
Auke Kok9a799d72007-09-15 14:07:45 -07006536 tx_ring = adapter->tx_ring[skb->queue_mapping];
6537 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
6538}
6539
6540/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006541 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Auke Kok9a799d72007-09-15 14:07:45 -07006542 * @netdev: network interface device structure
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006543 * @p: pointer to an address structure
6544 *
Auke Kok9a799d72007-09-15 14:07:45 -07006545 * Returns 0 on success, negative on failure
6546 **/
6547static int ixgbe_set_mac(struct net_device *netdev, void *p)
6548{
Ben Hutchings6b73e102009-04-29 08:08:58 +00006549 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6550 struct ixgbe_hw *hw = &adapter->hw;
6551 struct sockaddr *addr = p;
6552
6553 if (!is_valid_ether_addr(addr->sa_data))
6554 return -EADDRNOTAVAIL;
6555
6556 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
6557 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
6558
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00006559 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07006560
6561 return 0;
6562}
6563
Ben Hutchings6b73e102009-04-29 08:08:58 +00006564static int
6565ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6566{
6567 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6568 struct ixgbe_hw *hw = &adapter->hw;
6569 u16 value;
6570 int rc;
6571
6572 if (prtad != hw->phy.mdio.prtad)
6573 return -EINVAL;
6574 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6575 if (!rc)
6576 rc = value;
6577 return rc;
6578}
6579
6580static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6581 u16 addr, u16 value)
6582{
6583 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6584 struct ixgbe_hw *hw = &adapter->hw;
6585
6586 if (prtad != hw->phy.mdio.prtad)
6587 return -EINVAL;
6588 return hw->phy.ops.write_reg(hw, addr, devad, value);
6589}
6590
6591static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6592{
6593 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6594
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006595 switch (cmd) {
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006596 case SIOCSHWTSTAMP:
6597 return ixgbe_ptp_hwtstamp_ioctl(adapter, req, cmd);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006598 default:
6599 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6600 }
Ben Hutchings6b73e102009-04-29 08:08:58 +00006601}
6602
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006603/**
6604 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006605 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006606 * @netdev: network interface device structure
6607 *
6608 * Returns non-zero on failure
6609 **/
6610static int ixgbe_add_sanmac_netdev(struct net_device *dev)
6611{
6612 int err = 0;
6613 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006614 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006615
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006616 if (is_valid_ether_addr(hw->mac.san_addr)) {
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006617 rtnl_lock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006618 err = dev_addr_add(dev, hw->mac.san_addr, NETDEV_HW_ADDR_T_SAN);
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006619 rtnl_unlock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006620
6621 /* update SAN MAC vmdq pool selection */
6622 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006623 }
6624 return err;
6625}
6626
6627/**
6628 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006629 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006630 * @netdev: network interface device structure
6631 *
6632 * Returns non-zero on failure
6633 **/
6634static int ixgbe_del_sanmac_netdev(struct net_device *dev)
6635{
6636 int err = 0;
6637 struct ixgbe_adapter *adapter = netdev_priv(dev);
6638 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6639
6640 if (is_valid_ether_addr(mac->san_addr)) {
6641 rtnl_lock();
6642 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6643 rtnl_unlock();
6644 }
6645 return err;
6646}
6647
Auke Kok9a799d72007-09-15 14:07:45 -07006648#ifdef CONFIG_NET_POLL_CONTROLLER
6649/*
6650 * Polling 'interrupt' - used by things like netconsole to send skbs
6651 * without having to re-enable interrupts. It's not called while
6652 * the interrupt routine is executing.
6653 */
6654static void ixgbe_netpoll(struct net_device *netdev)
6655{
6656 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006657 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07006658
Alexander Duyck1a647bd2010-01-13 01:49:13 +00006659 /* if interface is down do nothing */
6660 if (test_bit(__IXGBE_DOWN, &adapter->state))
6661 return;
6662
Auke Kok9a799d72007-09-15 14:07:45 -07006663 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006664 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00006665 for (i = 0; i < adapter->num_q_vectors; i++)
6666 ixgbe_msix_clean_rings(0, adapter->q_vector[i]);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006667 } else {
6668 ixgbe_intr(adapter->pdev->irq, netdev);
6669 }
Auke Kok9a799d72007-09-15 14:07:45 -07006670 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07006671}
Auke Kok9a799d72007-09-15 14:07:45 -07006672
Alexander Duyck581330b2012-02-08 07:51:47 +00006673#endif
Eric Dumazetde1036b2010-10-20 23:00:04 +00006674static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
6675 struct rtnl_link_stats64 *stats)
6676{
6677 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6678 int i;
6679
Eric Dumazet1a515022010-11-16 19:26:42 -08006680 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006681 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08006682 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00006683 u64 bytes, packets;
6684 unsigned int start;
6685
Eric Dumazet1a515022010-11-16 19:26:42 -08006686 if (ring) {
6687 do {
6688 start = u64_stats_fetch_begin_bh(&ring->syncp);
6689 packets = ring->stats.packets;
6690 bytes = ring->stats.bytes;
6691 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6692 stats->rx_packets += packets;
6693 stats->rx_bytes += bytes;
6694 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00006695 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00006696
6697 for (i = 0; i < adapter->num_tx_queues; i++) {
6698 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
6699 u64 bytes, packets;
6700 unsigned int start;
6701
6702 if (ring) {
6703 do {
6704 start = u64_stats_fetch_begin_bh(&ring->syncp);
6705 packets = ring->stats.packets;
6706 bytes = ring->stats.bytes;
6707 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6708 stats->tx_packets += packets;
6709 stats->tx_bytes += bytes;
6710 }
6711 }
Eric Dumazet1a515022010-11-16 19:26:42 -08006712 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006713 /* following stats updated by ixgbe_watchdog_task() */
6714 stats->multicast = netdev->stats.multicast;
6715 stats->rx_errors = netdev->stats.rx_errors;
6716 stats->rx_length_errors = netdev->stats.rx_length_errors;
6717 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
6718 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
6719 return stats;
6720}
6721
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006722#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006723/**
6724 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
6725 * @adapter: pointer to ixgbe_adapter
John Fastabend8b1c0b22011-05-03 02:26:48 +00006726 * @tc: number of traffic classes currently enabled
6727 *
6728 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
6729 * 802.1Q priority maps to a packet buffer that exists.
6730 */
6731static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
6732{
6733 struct ixgbe_hw *hw = &adapter->hw;
6734 u32 reg, rsave;
6735 int i;
6736
6737 /* 82598 have a static priority to TC mapping that can not
6738 * be changed so no validation is needed.
6739 */
6740 if (hw->mac.type == ixgbe_mac_82598EB)
6741 return;
6742
6743 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
6744 rsave = reg;
6745
6746 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
6747 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
6748
6749 /* If up2tc is out of bounds default to zero */
6750 if (up2tc > tc)
6751 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
6752 }
6753
6754 if (reg != rsave)
6755 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
6756
6757 return;
6758}
6759
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006760/**
Alexander Duyck02debdc2012-05-18 06:33:31 +00006761 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
6762 * @adapter: Pointer to adapter struct
6763 *
6764 * Populate the netdev user priority to tc map
6765 */
6766static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter)
6767{
6768 struct net_device *dev = adapter->netdev;
6769 struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg;
6770 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
6771 u8 prio;
6772
6773 for (prio = 0; prio < MAX_USER_PRIORITY; prio++) {
6774 u8 tc = 0;
6775
6776 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE)
6777 tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio);
6778 else if (ets)
6779 tc = ets->prio_tc[prio];
6780
6781 netdev_set_prio_tc_map(dev, prio, tc);
6782 }
6783}
6784
6785/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006786 * ixgbe_setup_tc - configure net_device for multiple traffic classes
John Fastabend8b1c0b22011-05-03 02:26:48 +00006787 *
6788 * @netdev: net device to configure
6789 * @tc: number of traffic classes to enable
6790 */
6791int ixgbe_setup_tc(struct net_device *dev, u8 tc)
6792{
John Fastabend8b1c0b22011-05-03 02:26:48 +00006793 struct ixgbe_adapter *adapter = netdev_priv(dev);
6794 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00006795
John Fastabend8b1c0b22011-05-03 02:26:48 +00006796 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00006797 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
Alexander Duyck581330b2012-02-08 07:51:47 +00006798 (hw->mac.type == ixgbe_mac_82598EB &&
6799 tc < MAX_TRAFFIC_CLASS))
John Fastabend8b1c0b22011-05-03 02:26:48 +00006800 return -EINVAL;
6801
6802 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006803 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00006804 * hardware is not flexible enough to do this dynamically.
6805 */
6806 if (netif_running(dev))
6807 ixgbe_close(dev);
6808 ixgbe_clear_interrupt_scheme(adapter);
6809
John Fastabende7589ea2011-07-18 22:38:36 +00006810 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006811 netdev_set_num_tc(dev, tc);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006812 ixgbe_set_prio_tc_map(adapter);
6813
John Fastabende7589ea2011-07-18 22:38:36 +00006814 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00006815
Alexander Duyck943561d2012-05-09 22:14:44 -07006816 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
6817 adapter->last_lfc_mode = adapter->hw.fc.requested_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006818 adapter->hw.fc.requested_mode = ixgbe_fc_none;
Alexander Duyck943561d2012-05-09 22:14:44 -07006819 }
John Fastabende7589ea2011-07-18 22:38:36 +00006820 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006821 netdev_reset_tc(dev);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006822
Alexander Duyck943561d2012-05-09 22:14:44 -07006823 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6824 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006825
6826 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00006827
6828 adapter->temp_dcb_cfg.pfc_mode_enable = false;
6829 adapter->dcb_cfg.pfc_mode_enable = false;
6830 }
6831
John Fastabend8b1c0b22011-05-03 02:26:48 +00006832 ixgbe_init_interrupt_scheme(adapter);
6833 ixgbe_validate_rtr(adapter, tc);
6834 if (netif_running(dev))
6835 ixgbe_open(dev);
6836
6837 return 0;
6838}
Eric Dumazetde1036b2010-10-20 23:00:04 +00006839
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006840#endif /* CONFIG_IXGBE_DCB */
Don Skidmore082757a2011-07-21 05:55:00 +00006841void ixgbe_do_reset(struct net_device *netdev)
6842{
6843 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6844
6845 if (netif_running(netdev))
6846 ixgbe_reinit_locked(adapter);
6847 else
6848 ixgbe_reset(adapter);
6849}
6850
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006851static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006852 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006853{
6854 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6855
Don Skidmore082757a2011-07-21 05:55:00 +00006856 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006857 if (!(features & NETIF_F_RXCSUM))
6858 features &= ~NETIF_F_LRO;
Don Skidmore082757a2011-07-21 05:55:00 +00006859
Alexander Duyck567d2de2012-02-11 07:18:57 +00006860 /* Turn off LRO if not RSC capable */
6861 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
6862 features &= ~NETIF_F_LRO;
Jacob Keller8e2813f2012-04-21 06:05:40 +00006863
Alexander Duyck567d2de2012-02-11 07:18:57 +00006864 return features;
Don Skidmore082757a2011-07-21 05:55:00 +00006865}
6866
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006867static int ixgbe_set_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006868 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006869{
6870 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck567d2de2012-02-11 07:18:57 +00006871 netdev_features_t changed = netdev->features ^ features;
Don Skidmore082757a2011-07-21 05:55:00 +00006872 bool need_reset = false;
6873
Don Skidmore082757a2011-07-21 05:55:00 +00006874 /* Make sure RSC matches LRO, reset if change */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006875 if (!(features & NETIF_F_LRO)) {
6876 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Don Skidmore082757a2011-07-21 05:55:00 +00006877 need_reset = true;
Alexander Duyck567d2de2012-02-11 07:18:57 +00006878 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
6879 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
6880 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
6881 if (adapter->rx_itr_setting == 1 ||
6882 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
6883 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
6884 need_reset = true;
6885 } else if ((changed ^ features) & NETIF_F_LRO) {
6886 e_info(probe, "rx-usecs set too low, "
6887 "disabling RSC\n");
Don Skidmore082757a2011-07-21 05:55:00 +00006888 }
6889 }
6890
6891 /*
6892 * Check if Flow Director n-tuple support was enabled or disabled. If
6893 * the state changed, we need to reset.
6894 */
Alexander Duyck39cb6812012-06-06 05:38:20 +00006895 switch (features & NETIF_F_NTUPLE) {
6896 case NETIF_F_NTUPLE:
Alexander Duyck567d2de2012-02-11 07:18:57 +00006897 /* turn off ATR, enable perfect filters and reset */
Alexander Duyck39cb6812012-06-06 05:38:20 +00006898 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
6899 need_reset = true;
6900
Alexander Duyck567d2de2012-02-11 07:18:57 +00006901 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
6902 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
Alexander Duyck39cb6812012-06-06 05:38:20 +00006903 break;
6904 default:
6905 /* turn off perfect filters, enable ATR and reset */
6906 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
6907 need_reset = true;
6908
6909 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
6910
6911 /* We cannot enable ATR if SR-IOV is enabled */
6912 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6913 break;
6914
6915 /* We cannot enable ATR if we have 2 or more traffic classes */
6916 if (netdev_get_num_tc(netdev) > 1)
6917 break;
6918
6919 /* We cannot enable ATR if RSS is disabled */
6920 if (adapter->ring_feature[RING_F_RSS].limit <= 1)
6921 break;
6922
6923 /* A sample rate of 0 indicates ATR disabled */
6924 if (!adapter->atr_sample_rate)
6925 break;
6926
6927 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
6928 break;
Don Skidmore082757a2011-07-21 05:55:00 +00006929 }
6930
John Fastabend146d4cc2012-05-15 05:59:26 +00006931 if (features & NETIF_F_HW_VLAN_RX)
6932 ixgbe_vlan_strip_enable(adapter);
6933 else
6934 ixgbe_vlan_strip_disable(adapter);
6935
Ben Greear3f2d1c02012-03-08 08:28:41 +00006936 if (changed & NETIF_F_RXALL)
6937 need_reset = true;
6938
Alexander Duyck567d2de2012-02-11 07:18:57 +00006939 netdev->features = features;
Don Skidmore082757a2011-07-21 05:55:00 +00006940 if (need_reset)
6941 ixgbe_do_reset(netdev);
6942
6943 return 0;
Don Skidmore082757a2011-07-21 05:55:00 +00006944}
6945
stephen hemmingeredc7d572012-10-01 12:32:33 +00006946static int ixgbe_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006947 struct net_device *dev,
stephen hemminger6b6e2722012-09-17 10:03:26 +00006948 const unsigned char *addr,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006949 u16 flags)
6950{
6951 struct ixgbe_adapter *adapter = netdev_priv(dev);
John Fastabend95447462012-05-31 12:42:26 +00006952 int err;
6953
6954 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
6955 return -EOPNOTSUPP;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006956
John Fastabendb1ac1ef2012-11-01 05:00:44 +00006957 /* Hardware does not support aging addresses so if a
6958 * ndm_state is given only allow permanent addresses
6959 */
6960 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006961 pr_info("%s: FDB only supports static addresses\n",
6962 ixgbe_driver_name);
6963 return -EINVAL;
6964 }
6965
Ben Hutchings46acc462012-11-01 09:11:11 +00006966 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) {
John Fastabend95447462012-05-31 12:42:26 +00006967 u32 rar_uc_entries = IXGBE_MAX_PF_MACVLANS;
6968
6969 if (netdev_uc_count(dev) < rar_uc_entries)
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006970 err = dev_uc_add_excl(dev, addr);
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006971 else
John Fastabend95447462012-05-31 12:42:26 +00006972 err = -ENOMEM;
6973 } else if (is_multicast_ether_addr(addr)) {
6974 err = dev_mc_add_excl(dev, addr);
6975 } else {
6976 err = -EINVAL;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006977 }
6978
6979 /* Only return duplicate errors if NLM_F_EXCL is set */
6980 if (err == -EEXIST && !(flags & NLM_F_EXCL))
6981 err = 0;
6982
6983 return err;
6984}
6985
6986static int ixgbe_ndo_fdb_del(struct ndmsg *ndm,
6987 struct net_device *dev,
stephen hemminger6b6e2722012-09-17 10:03:26 +00006988 const unsigned char *addr)
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006989{
6990 struct ixgbe_adapter *adapter = netdev_priv(dev);
6991 int err = -EOPNOTSUPP;
6992
6993 if (ndm->ndm_state & NUD_PERMANENT) {
6994 pr_info("%s: FDB only supports static addresses\n",
6995 ixgbe_driver_name);
6996 return -EINVAL;
6997 }
6998
6999 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
7000 if (is_unicast_ether_addr(addr))
7001 err = dev_uc_del(dev, addr);
7002 else if (is_multicast_ether_addr(addr))
7003 err = dev_mc_del(dev, addr);
7004 else
7005 err = -EINVAL;
7006 }
7007
7008 return err;
7009}
7010
7011static int ixgbe_ndo_fdb_dump(struct sk_buff *skb,
7012 struct netlink_callback *cb,
7013 struct net_device *dev,
7014 int idx)
7015{
7016 struct ixgbe_adapter *adapter = netdev_priv(dev);
7017
7018 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7019 idx = ndo_dflt_fdb_dump(skb, cb, dev, idx);
7020
7021 return idx;
7022}
7023
John Fastabend815cccb2012-10-24 08:13:09 +00007024static int ixgbe_ndo_bridge_setlink(struct net_device *dev,
7025 struct nlmsghdr *nlh)
7026{
7027 struct ixgbe_adapter *adapter = netdev_priv(dev);
7028 struct nlattr *attr, *br_spec;
7029 int rem;
7030
7031 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
7032 return -EOPNOTSUPP;
7033
7034 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
7035
7036 nla_for_each_nested(attr, br_spec, rem) {
7037 __u16 mode;
7038 u32 reg = 0;
7039
7040 if (nla_type(attr) != IFLA_BRIDGE_MODE)
7041 continue;
7042
7043 mode = nla_get_u16(attr);
Greg Rose9b735982012-11-08 02:41:35 +00007044 if (mode == BRIDGE_MODE_VEPA) {
John Fastabend815cccb2012-10-24 08:13:09 +00007045 reg = 0;
Greg Rose9b735982012-11-08 02:41:35 +00007046 adapter->flags2 &= ~IXGBE_FLAG2_BRIDGE_MODE_VEB;
7047 } else if (mode == BRIDGE_MODE_VEB) {
John Fastabend815cccb2012-10-24 08:13:09 +00007048 reg = IXGBE_PFDTXGSWC_VT_LBEN;
Greg Rose9b735982012-11-08 02:41:35 +00007049 adapter->flags2 |= IXGBE_FLAG2_BRIDGE_MODE_VEB;
7050 } else
John Fastabend815cccb2012-10-24 08:13:09 +00007051 return -EINVAL;
7052
7053 IXGBE_WRITE_REG(&adapter->hw, IXGBE_PFDTXGSWC, reg);
7054
7055 e_info(drv, "enabling bridge mode: %s\n",
7056 mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
7057 }
7058
7059 return 0;
7060}
7061
7062static int ixgbe_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
7063 struct net_device *dev)
7064{
7065 struct ixgbe_adapter *adapter = netdev_priv(dev);
7066 u16 mode;
7067
7068 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
7069 return 0;
7070
Greg Rose9b735982012-11-08 02:41:35 +00007071 if (adapter->flags2 & IXGBE_FLAG2_BRIDGE_MODE_VEB)
John Fastabend815cccb2012-10-24 08:13:09 +00007072 mode = BRIDGE_MODE_VEB;
7073 else
7074 mode = BRIDGE_MODE_VEPA;
7075
7076 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, mode);
7077}
7078
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007079static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00007080 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007081 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08007082 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007083 .ndo_select_queue = ixgbe_select_queue,
Alexander Duyck581330b2012-02-08 07:51:47 +00007084 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007085 .ndo_validate_addr = eth_validate_addr,
7086 .ndo_set_mac_address = ixgbe_set_mac,
7087 .ndo_change_mtu = ixgbe_change_mtu,
7088 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007089 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
7090 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00007091 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00007092 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
7093 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
7094 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Alexander Duyck581330b2012-02-08 07:51:47 +00007095 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00007096 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00007097 .ndo_get_stats64 = ixgbe_get_stats64,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00007098#ifdef CONFIG_IXGBE_DCB
John Fastabend24095aa2011-02-23 05:58:03 +00007099 .ndo_setup_tc = ixgbe_setup_tc,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00007100#endif
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007101#ifdef CONFIG_NET_POLL_CONTROLLER
7102 .ndo_poll_controller = ixgbe_netpoll,
7103#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007104#ifdef IXGBE_FCOE
7105 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007106 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007107 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007108 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7109 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007110 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00007111 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00007112#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00007113 .ndo_set_features = ixgbe_set_features,
7114 .ndo_fix_features = ixgbe_fix_features,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007115 .ndo_fdb_add = ixgbe_ndo_fdb_add,
7116 .ndo_fdb_del = ixgbe_ndo_fdb_del,
7117 .ndo_fdb_dump = ixgbe_ndo_fdb_dump,
John Fastabend815cccb2012-10-24 08:13:09 +00007118 .ndo_bridge_setlink = ixgbe_ndo_bridge_setlink,
7119 .ndo_bridge_getlink = ixgbe_ndo_bridge_getlink,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007120};
7121
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007122/**
Jacob Keller8e2813f2012-04-21 06:05:40 +00007123 * ixgbe_wol_supported - Check whether device supports WoL
7124 * @hw: hw specific details
7125 * @device_id: the device ID
7126 * @subdev_id: the subsystem device ID
7127 *
7128 * This function is used by probe and ethtool to determine
7129 * which devices have WoL support
7130 *
7131 **/
7132int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
7133 u16 subdevice_id)
7134{
7135 struct ixgbe_hw *hw = &adapter->hw;
7136 u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
7137 int is_wol_supported = 0;
7138
7139 switch (device_id) {
7140 case IXGBE_DEV_ID_82599_SFP:
7141 /* Only these subdevices could supports WOL */
7142 switch (subdevice_id) {
7143 case IXGBE_SUBDEV_ID_82599_560FLR:
7144 /* only support first port */
7145 if (hw->bus.func != 0)
7146 break;
7147 case IXGBE_SUBDEV_ID_82599_SFP:
Don Skidmoreb6dfd932012-07-11 07:17:42 +00007148 case IXGBE_SUBDEV_ID_82599_RNDC:
Emil Tantilovf8a06c22012-08-16 08:13:07 +00007149 case IXGBE_SUBDEV_ID_82599_ECNA_DP:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007150 is_wol_supported = 1;
7151 break;
7152 }
7153 break;
7154 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7155 /* All except this subdevice support WOL */
7156 if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
7157 is_wol_supported = 1;
7158 break;
7159 case IXGBE_DEV_ID_82599_KX4:
7160 is_wol_supported = 1;
7161 break;
7162 case IXGBE_DEV_ID_X540T:
joshua.a.hay@intel.comdf376f02012-09-21 00:08:21 +00007163 case IXGBE_DEV_ID_X540T1:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007164 /* check eeprom to see if enabled wol */
7165 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
7166 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7167 (hw->bus.func == 0))) {
7168 is_wol_supported = 1;
7169 }
7170 break;
7171 }
7172
7173 return is_wol_supported;
7174}
7175
7176/**
Auke Kok9a799d72007-09-15 14:07:45 -07007177 * ixgbe_probe - Device Initialization Routine
7178 * @pdev: PCI device information struct
7179 * @ent: entry in ixgbe_pci_tbl
7180 *
7181 * Returns 0 on success, negative on failure
7182 *
7183 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7184 * The OS initialization, configuring of the adapter private structure,
7185 * and a hardware reset occur.
7186 **/
7187static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007188 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007189{
7190 struct net_device *netdev;
7191 struct ixgbe_adapter *adapter = NULL;
7192 struct ixgbe_hw *hw;
7193 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007194 static int cards_found;
7195 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00007196 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007197 unsigned int indices = num_possible_cpus();
John Fastabend3f4a6f02012-06-05 05:58:52 +00007198 unsigned int dcb_max = 0;
Yi Zoueacd73f2009-05-13 13:11:06 +00007199#ifdef IXGBE_FCOE
7200 u16 device_caps;
7201#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007202 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07007203
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007204 /* Catch broken hardware that put the wrong VF device ID in
7205 * the PCIe SR-IOV capability.
7206 */
7207 if (pdev->is_virtfn) {
7208 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7209 pci_name(pdev), pdev->vendor, pdev->device);
7210 return -EINVAL;
7211 }
7212
gouji-new9ce77662009-05-06 10:44:45 +00007213 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007214 if (err)
7215 return err;
7216
Nick Nunley1b507732010-04-27 13:10:27 +00007217 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7218 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007219 pci_using_dac = 1;
7220 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007221 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007222 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007223 err = dma_set_coherent_mask(&pdev->dev,
7224 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007225 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007226 dev_err(&pdev->dev,
7227 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007228 goto err_dma;
7229 }
7230 }
7231 pci_using_dac = 0;
7232 }
7233
gouji-new9ce77662009-05-06 10:44:45 +00007234 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007235 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007236 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007237 dev_err(&pdev->dev,
7238 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007239 goto err_pci_reg;
7240 }
7241
Frans Pop19d5afd2009-10-02 10:04:12 -07007242 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007243
Auke Kok9a799d72007-09-15 14:07:45 -07007244 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007245 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007246
John Fastabende901acd2011-04-26 07:26:08 +00007247#ifdef CONFIG_IXGBE_DCB
John Fastabend3f4a6f02012-06-05 05:58:52 +00007248 if (ii->mac == ixgbe_mac_82598EB)
7249 dcb_max = min_t(unsigned int, indices * MAX_TRAFFIC_CLASS,
7250 IXGBE_MAX_RSS_INDICES);
7251 else
7252 dcb_max = min_t(unsigned int, indices * MAX_TRAFFIC_CLASS,
7253 IXGBE_MAX_FDIR_INDICES);
John Fastabende901acd2011-04-26 07:26:08 +00007254#endif
7255
John Fastabendc85a2612010-02-25 23:15:21 +00007256 if (ii->mac == ixgbe_mac_82598EB)
7257 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7258 else
7259 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7260
John Fastabende901acd2011-04-26 07:26:08 +00007261#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007262 indices += min_t(unsigned int, num_possible_cpus(),
7263 IXGBE_MAX_FCOE_INDICES);
7264#endif
John Fastabend3f4a6f02012-06-05 05:58:52 +00007265 indices = max_t(unsigned int, dcb_max, indices);
John Fastabendc85a2612010-02-25 23:15:21 +00007266 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007267 if (!netdev) {
7268 err = -ENOMEM;
7269 goto err_alloc_etherdev;
7270 }
7271
Auke Kok9a799d72007-09-15 14:07:45 -07007272 SET_NETDEV_DEV(netdev, &pdev->dev);
7273
Auke Kok9a799d72007-09-15 14:07:45 -07007274 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007275 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007276
7277 adapter->netdev = netdev;
7278 adapter->pdev = pdev;
7279 hw = &adapter->hw;
7280 hw->back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00007281 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kok9a799d72007-09-15 14:07:45 -07007282
Jeff Kirsher05857982008-09-11 19:57:00 -07007283 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007284 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007285 if (!hw->hw_addr) {
7286 err = -EIO;
7287 goto err_ioremap;
7288 }
7289
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007290 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007291 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007292 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007293 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007294
Auke Kok9a799d72007-09-15 14:07:45 -07007295 adapter->bd_number = cards_found;
7296
Auke Kok9a799d72007-09-15 14:07:45 -07007297 /* Setup hw api */
7298 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007299 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007300
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007301 /* EEPROM */
7302 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7303 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7304 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7305 if (!(eec & (1 << 8)))
7306 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7307
7308 /* PHY */
7309 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007310 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007311 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7312 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7313 hw->phy.mdio.mmds = 0;
7314 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7315 hw->phy.mdio.dev = netdev;
7316 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7317 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007318
Don Skidmore8ca783a2009-05-26 20:40:47 -07007319 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007320
7321 /* setup the private structure */
7322 err = ixgbe_sw_init(adapter);
7323 if (err)
7324 goto err_sw_init;
7325
Don Skidmoree86bff02010-02-11 04:14:08 +00007326 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007327 switch (adapter->hw.mac.type) {
7328 case ixgbe_mac_82599EB:
7329 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007330 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007331 break;
7332 default:
7333 break;
7334 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007335
Don Skidmorebf069c92009-05-07 10:39:54 +00007336 /*
7337 * If there is a fan on this device and it has failed log the
7338 * failure.
7339 */
7340 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7341 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7342 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007343 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007344 }
7345
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00007346 if (allow_unsupported_sfp)
7347 hw->allow_unsupported_sfp = allow_unsupported_sfp;
7348
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007349 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007350 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007351 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007352 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007353 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7354 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007355 err = 0;
7356 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007357 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007358 "module type was detected.\n");
7359 e_dev_err("Reload the driver after installing a supported "
7360 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007361 goto err_sw_init;
7362 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007363 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007364 goto err_sw_init;
7365 }
7366
Alexander Duyck99d74482012-05-09 08:09:25 +00007367#ifdef CONFIG_PCI_IOV
7368 ixgbe_enable_sriov(adapter, ii);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007369
Alexander Duyck99d74482012-05-09 08:09:25 +00007370#endif
Emil Tantilov396e7992010-07-01 20:05:12 +00007371 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007372 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00007373 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00007374 NETIF_F_HW_VLAN_TX |
7375 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00007376 NETIF_F_HW_VLAN_FILTER |
7377 NETIF_F_TSO |
7378 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00007379 NETIF_F_RXHASH |
7380 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007381
Don Skidmore082757a2011-07-21 05:55:00 +00007382 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007383
Don Skidmore58be7662011-04-12 09:42:11 +00007384 switch (adapter->hw.mac.type) {
7385 case ixgbe_mac_82599EB:
7386 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007387 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00007388 netdev->hw_features |= NETIF_F_SCTP_CSUM |
7389 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00007390 break;
7391 default:
7392 break;
7393 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007394
Ben Greear3f2d1c02012-03-08 08:28:41 +00007395 netdev->hw_features |= NETIF_F_RXALL;
7396
Jeff Kirsherad31c402008-06-05 04:05:30 -07007397 netdev->vlan_features |= NETIF_F_TSO;
7398 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007399 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007400 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007401 netdev->vlan_features |= NETIF_F_SG;
7402
Jiri Pirko01789342011-08-16 06:29:00 +00007403 netdev->priv_flags |= IFF_UNICAST_FLT;
Ben Greearf43f3132012-03-06 09:42:04 +00007404 netdev->priv_flags |= IFF_SUPP_NOFCS;
Jiri Pirko01789342011-08-16 06:29:00 +00007405
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007406#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007407 netdev->dcbnl_ops = &dcbnl_ops;
7408#endif
7409
Yi Zoueacd73f2009-05-13 13:11:06 +00007410#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007411 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007412 if (hw->mac.ops.get_device_caps) {
7413 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007414 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7415 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007416 }
Alexander Duyck7c8ae652012-05-05 05:32:47 +00007417
7418 adapter->ring_feature[RING_F_FCOE].limit = IXGBE_FCRETA_SIZE;
7419
Alexander Duycka58915c2012-05-25 06:38:18 +00007420 netdev->features |= NETIF_F_FSO |
7421 NETIF_F_FCOE_CRC;
7422
Alexander Duyck7c8ae652012-05-05 05:32:47 +00007423 netdev->vlan_features |= NETIF_F_FSO |
7424 NETIF_F_FCOE_CRC |
7425 NETIF_F_FCOE_MTU;
Yi Zou5e09d7f2010-07-19 13:59:52 +00007426 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007427#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007428 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007429 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007430 netdev->vlan_features |= NETIF_F_HIGHDMA;
7431 }
Auke Kok9a799d72007-09-15 14:07:45 -07007432
Don Skidmore082757a2011-07-21 05:55:00 +00007433 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
7434 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007435 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007436 netdev->features |= NETIF_F_LRO;
7437
Auke Kok9a799d72007-09-15 14:07:45 -07007438 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007439 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007440 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007441 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007442 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007443 }
7444
7445 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7446 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7447
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007448 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007449 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007450 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007451 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007452 }
7453
Alexander Duyck70864002011-04-27 09:13:56 +00007454 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
Alexander Duyck581330b2012-02-08 07:51:47 +00007455 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007456
Alexander Duyck70864002011-04-27 09:13:56 +00007457 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7458 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007459
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007460 err = ixgbe_init_interrupt_scheme(adapter);
7461 if (err)
7462 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007463
Jacob Keller8e2813f2012-04-21 06:05:40 +00007464 /* WOL not supported for all devices */
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007465 adapter->wol = 0;
Jacob Keller8e2813f2012-04-21 06:05:40 +00007466 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
7467 if (ixgbe_wol_supported(adapter, pdev->device, pdev->subsystem_device))
Andy Gospodarek9417c462011-07-16 07:31:33 +00007468 adapter->wol = IXGBE_WUFC_MAG;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007469
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007470 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7471
Emil Tantilov15e52092011-09-29 05:01:29 +00007472 /* save off EEPROM version number */
7473 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
7474 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
7475
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007476 /* pick up the PCI bus settings for reporting later */
7477 hw->mac.ops.get_bus_info(hw);
7478
Auke Kok9a799d72007-09-15 14:07:45 -07007479 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007480 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007481 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7482 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007483 "Unknown"),
7484 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7485 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7486 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7487 "Unknown"),
7488 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007489
7490 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7491 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007492 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007493 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007494 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007495 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007496 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007497 else
Don Skidmore289700db2010-12-03 03:32:58 +00007498 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7499 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007500
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007501 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007502 e_dev_warn("PCI-Express bandwidth available for this card is "
7503 "not sufficient for optimal performance.\n");
7504 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7505 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007506 }
7507
Auke Kok9a799d72007-09-15 14:07:45 -07007508 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007509 err = hw->mac.ops.start_hw(hw);
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007510 if (err == IXGBE_ERR_EEPROM_VERSION) {
7511 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007512 e_dev_warn("This device is a pre-production adapter/LOM. "
7513 "Please be aware there may be issues associated "
7514 "with your hardware. If you are experiencing "
7515 "problems please contact your Intel or hardware "
7516 "representative who provided you with this "
7517 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007518 }
Auke Kok9a799d72007-09-15 14:07:45 -07007519 strcpy(netdev->name, "eth%d");
7520 err = register_netdev(netdev);
7521 if (err)
7522 goto err_register;
7523
Emil Tantilovec74a472012-09-20 03:33:56 +00007524 /* power down the optics for 82599 SFP+ fiber */
7525 if (hw->mac.ops.disable_tx_laser)
Emil Tantilov93d3ce82011-10-19 07:59:55 +00007526 hw->mac.ops.disable_tx_laser(hw);
7527
Jesse Brandeburg54386462009-04-17 20:44:27 +00007528 /* carrier off reporting is important to ethtool even BEFORE open */
7529 netif_carrier_off(netdev);
7530
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007531#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007532 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007533 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007534 ixgbe_setup_dca(adapter);
7535 }
7536#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007537 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007538 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007539 for (i = 0; i < adapter->num_vfs; i++)
7540 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7541 }
7542
Jacob Keller2466dd92011-09-08 03:50:54 +00007543 /* firmware requires driver version to be 0xFFFFFFFF
7544 * since os does not support feature
7545 */
Emil Tantilov9612de92011-05-07 07:40:20 +00007546 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00007547 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
7548 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00007549
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007550 /* add san mac addr to netdev */
7551 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007552
Neerav Parikhea818752012-01-04 20:23:40 +00007553 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07007554 cards_found++;
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007555
Don Skidmore12109822012-05-04 06:07:08 +00007556#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007557 if (ixgbe_sysfs_init(adapter))
7558 e_err(probe, "failed to allocate sysfs resources\n");
Don Skidmore12109822012-05-04 06:07:08 +00007559#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007560
Catherine Sullivan00949162012-08-10 01:59:10 +00007561#ifdef CONFIG_DEBUG_FS
7562 ixgbe_dbg_adapter_init(adapter);
7563#endif /* CONFIG_DEBUG_FS */
7564
Auke Kok9a799d72007-09-15 14:07:45 -07007565 return 0;
7566
7567err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007568 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007569 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007570err_sw_init:
Alexander Duyck99d74482012-05-09 08:09:25 +00007571 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007572 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007573 iounmap(hw->hw_addr);
7574err_ioremap:
7575 free_netdev(netdev);
7576err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007577 pci_release_selected_regions(pdev,
7578 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007579err_pci_reg:
7580err_dma:
7581 pci_disable_device(pdev);
7582 return err;
7583}
7584
7585/**
7586 * ixgbe_remove - Device Removal Routine
7587 * @pdev: PCI device information struct
7588 *
7589 * ixgbe_remove is called by the PCI subsystem to alert the driver
7590 * that it should release a PCI device. The could be caused by a
7591 * Hot-Plug event, or because the driver is going to be removed from
7592 * memory.
7593 **/
7594static void __devexit ixgbe_remove(struct pci_dev *pdev)
7595{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007596 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7597 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007598
Catherine Sullivan00949162012-08-10 01:59:10 +00007599#ifdef CONFIG_DEBUG_FS
7600 ixgbe_dbg_adapter_exit(adapter);
7601#endif /*CONFIG_DEBUG_FS */
7602
Auke Kok9a799d72007-09-15 14:07:45 -07007603 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007604 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007605
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007606
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007607#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007608 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7609 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7610 dca_remove_requester(&pdev->dev);
7611 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7612 }
7613
7614#endif
Don Skidmore12109822012-05-04 06:07:08 +00007615#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007616 ixgbe_sysfs_exit(adapter);
Don Skidmore12109822012-05-04 06:07:08 +00007617#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007618
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007619 /* remove the added san mac */
7620 ixgbe_del_sanmac_netdev(netdev);
7621
Donald Skidmorec4900be2008-11-20 21:11:42 -08007622 if (netdev->reg_state == NETREG_REGISTERED)
7623 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007624
Alexander Duyck92971272012-05-23 02:58:40 +00007625 ixgbe_disable_sriov(adapter);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007626
Alexander Duyck7a921c92009-05-06 10:43:28 +00007627 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007628
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007629 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007630
Alexander Duyck2b1588c2012-03-17 02:39:16 +00007631#ifdef CONFIG_DCB
7632 kfree(adapter->ixgbe_ieee_pfc);
7633 kfree(adapter->ixgbe_ieee_ets);
7634
7635#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007636 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007637 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007638 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007639
Emil Tantilov849c4542010-06-03 16:53:41 +00007640 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007641
Auke Kok9a799d72007-09-15 14:07:45 -07007642 free_netdev(netdev);
7643
Frans Pop19d5afd2009-10-02 10:04:12 -07007644 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007645
Auke Kok9a799d72007-09-15 14:07:45 -07007646 pci_disable_device(pdev);
7647}
7648
7649/**
7650 * ixgbe_io_error_detected - called when PCI error is detected
7651 * @pdev: Pointer to PCI device
7652 * @state: The current pci connection state
7653 *
7654 * This function is called after a PCI bus error affecting
7655 * this device has been detected.
7656 */
7657static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007658 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007659{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007660 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7661 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007662
Greg Rose83c61fa2011-09-07 05:59:35 +00007663#ifdef CONFIG_PCI_IOV
7664 struct pci_dev *bdev, *vfdev;
7665 u32 dw0, dw1, dw2, dw3;
7666 int vf, pos;
7667 u16 req_id, pf_func;
7668
7669 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
7670 adapter->num_vfs == 0)
7671 goto skip_bad_vf_detection;
7672
7673 bdev = pdev->bus->self;
Yijing Wang62f87c02012-07-24 17:20:03 +08007674 while (bdev && (pci_pcie_type(bdev) != PCI_EXP_TYPE_ROOT_PORT))
Greg Rose83c61fa2011-09-07 05:59:35 +00007675 bdev = bdev->bus->self;
7676
7677 if (!bdev)
7678 goto skip_bad_vf_detection;
7679
7680 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
7681 if (!pos)
7682 goto skip_bad_vf_detection;
7683
7684 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
7685 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
7686 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
7687 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
7688
7689 req_id = dw1 >> 16;
7690 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
7691 if (!(req_id & 0x0080))
7692 goto skip_bad_vf_detection;
7693
7694 pf_func = req_id & 0x01;
7695 if ((pf_func & 1) == (pdev->devfn & 1)) {
7696 unsigned int device_id;
7697
7698 vf = (req_id & 0x7F) >> 1;
7699 e_dev_err("VF %d has caused a PCIe error\n", vf);
7700 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
7701 "%8.8x\tdw3: %8.8x\n",
7702 dw0, dw1, dw2, dw3);
7703 switch (adapter->hw.mac.type) {
7704 case ixgbe_mac_82599EB:
7705 device_id = IXGBE_82599_VF_DEVICE_ID;
7706 break;
7707 case ixgbe_mac_X540:
7708 device_id = IXGBE_X540_VF_DEVICE_ID;
7709 break;
7710 default:
7711 device_id = 0;
7712 break;
7713 }
7714
7715 /* Find the pci device of the offending VF */
Jon Mason36e90312012-07-19 21:02:09 +00007716 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, device_id, NULL);
Greg Rose83c61fa2011-09-07 05:59:35 +00007717 while (vfdev) {
7718 if (vfdev->devfn == (req_id & 0xFF))
7719 break;
Jon Mason36e90312012-07-19 21:02:09 +00007720 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Greg Rose83c61fa2011-09-07 05:59:35 +00007721 device_id, vfdev);
7722 }
7723 /*
7724 * There's a slim chance the VF could have been hot plugged,
7725 * so if it is no longer present we don't need to issue the
7726 * VFLR. Just clean up the AER in that case.
7727 */
7728 if (vfdev) {
7729 e_dev_err("Issuing VFLR to VF %d\n", vf);
7730 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
7731 }
7732
7733 pci_cleanup_aer_uncorrect_error_status(pdev);
7734 }
7735
7736 /*
7737 * Even though the error may have occurred on the other port
7738 * we still need to increment the vf error reference count for
7739 * both ports because the I/O resume function will be called
7740 * for both of them.
7741 */
7742 adapter->vferr_refcount++;
7743
7744 return PCI_ERS_RESULT_RECOVERED;
7745
7746skip_bad_vf_detection:
7747#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07007748 netif_device_detach(netdev);
7749
Breno Leitao3044b8d2009-05-06 10:44:26 +00007750 if (state == pci_channel_io_perm_failure)
7751 return PCI_ERS_RESULT_DISCONNECT;
7752
Auke Kok9a799d72007-09-15 14:07:45 -07007753 if (netif_running(netdev))
7754 ixgbe_down(adapter);
7755 pci_disable_device(pdev);
7756
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007757 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007758 return PCI_ERS_RESULT_NEED_RESET;
7759}
7760
7761/**
7762 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7763 * @pdev: Pointer to PCI device
7764 *
7765 * Restart the card from scratch, as if from a cold-boot.
7766 */
7767static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7768{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007769 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007770 pci_ers_result_t result;
7771 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007772
gouji-new9ce77662009-05-06 10:44:45 +00007773 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007774 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007775 result = PCI_ERS_RESULT_DISCONNECT;
7776 } else {
7777 pci_set_master(pdev);
7778 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007779 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007780
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007781 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007782
7783 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007784 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007785 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007786 }
Auke Kok9a799d72007-09-15 14:07:45 -07007787
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007788 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7789 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007790 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7791 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007792 /* non-fatal, continue */
7793 }
Auke Kok9a799d72007-09-15 14:07:45 -07007794
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007795 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007796}
7797
7798/**
7799 * ixgbe_io_resume - called when traffic can start flowing again.
7800 * @pdev: Pointer to PCI device
7801 *
7802 * This callback is called when the error recovery driver tells us that
7803 * its OK to resume normal operation.
7804 */
7805static void ixgbe_io_resume(struct pci_dev *pdev)
7806{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007807 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7808 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007809
Greg Rose83c61fa2011-09-07 05:59:35 +00007810#ifdef CONFIG_PCI_IOV
7811 if (adapter->vferr_refcount) {
7812 e_info(drv, "Resuming after VF err\n");
7813 adapter->vferr_refcount--;
7814 return;
7815 }
7816
7817#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00007818 if (netif_running(netdev))
7819 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007820
7821 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007822}
7823
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07007824static const struct pci_error_handlers ixgbe_err_handler = {
Auke Kok9a799d72007-09-15 14:07:45 -07007825 .error_detected = ixgbe_io_error_detected,
7826 .slot_reset = ixgbe_io_slot_reset,
7827 .resume = ixgbe_io_resume,
7828};
7829
7830static struct pci_driver ixgbe_driver = {
7831 .name = ixgbe_driver_name,
7832 .id_table = ixgbe_pci_tbl,
7833 .probe = ixgbe_probe,
7834 .remove = __devexit_p(ixgbe_remove),
7835#ifdef CONFIG_PM
7836 .suspend = ixgbe_suspend,
7837 .resume = ixgbe_resume,
7838#endif
7839 .shutdown = ixgbe_shutdown,
7840 .err_handler = &ixgbe_err_handler
7841};
7842
7843/**
7844 * ixgbe_init_module - Driver Registration Routine
7845 *
7846 * ixgbe_init_module is the first routine called when the driver is
7847 * loaded. All it does is register with the PCI subsystem.
7848 **/
7849static int __init ixgbe_init_module(void)
7850{
7851 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007852 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007853 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007854
Catherine Sullivan00949162012-08-10 01:59:10 +00007855#ifdef CONFIG_DEBUG_FS
7856 ixgbe_dbg_init();
7857#endif /* CONFIG_DEBUG_FS */
7858
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007859#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007860 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007861#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007862
Auke Kok9a799d72007-09-15 14:07:45 -07007863 ret = pci_register_driver(&ixgbe_driver);
7864 return ret;
7865}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007866
Auke Kok9a799d72007-09-15 14:07:45 -07007867module_init(ixgbe_init_module);
7868
7869/**
7870 * ixgbe_exit_module - Driver Exit Cleanup Routine
7871 *
7872 * ixgbe_exit_module is called just before the driver is removed
7873 * from memory.
7874 **/
7875static void __exit ixgbe_exit_module(void)
7876{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007877#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007878 dca_unregister_notify(&dca_notifier);
7879#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007880 pci_unregister_driver(&ixgbe_driver);
Catherine Sullivan00949162012-08-10 01:59:10 +00007881
7882#ifdef CONFIG_DEBUG_FS
7883 ixgbe_dbg_exit();
7884#endif /* CONFIG_DEBUG_FS */
7885
Eric Dumazet1a515022010-11-16 19:26:42 -08007886 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007887}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007888
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007889#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007890static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007891 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007892{
7893 int ret_val;
7894
7895 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007896 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007897
7898 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7899}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007900
Alexander Duyckb4533682009-03-31 21:32:42 +00007901#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007902
Auke Kok9a799d72007-09-15 14:07:45 -07007903module_exit(ixgbe_exit_module);
7904
7905/* ixgbe_main.c */