blob: fa3d552e1f4a1e6b0cad19c4e4d5610551866638 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore94971822012-01-06 03:24:16 +00004 Copyright(c) 1999 - 2012 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
Auke Kok9a799d72007-09-15 14:07:45 -070023 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28#include <linux/types.h>
29#include <linux/module.h>
30#include <linux/pci.h>
31#include <linux/netdevice.h>
32#include <linux/vmalloc.h>
33#include <linux/string.h>
34#include <linux/in.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000035#include <linux/interrupt.h>
Auke Kok9a799d72007-09-15 14:07:45 -070036#include <linux/ip.h>
37#include <linux/tcp.h>
Alexander Duyck897ab152011-05-27 05:31:47 +000038#include <linux/sctp.h>
Lucy Liu60127862009-07-22 14:07:33 +000039#include <linux/pkt_sched.h>
Auke Kok9a799d72007-09-15 14:07:45 -070040#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Auke Kok9a799d72007-09-15 14:07:45 -070042#include <net/checksum.h>
43#include <net/ip6_checksum.h>
44#include <linux/ethtool.h>
Jiri Pirko01789342011-08-16 06:29:00 +000045#include <linux/if.h>
Auke Kok9a799d72007-09-15 14:07:45 -070046#include <linux/if_vlan.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040047#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000048#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070049
50#include "ixgbe.h"
51#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000052#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000053#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070054
55char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070056static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000057 "Intel(R) 10 Gigabit PCI Express Network Driver";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000058#ifdef IXGBE_FCOE
Neerav Parikhea818752012-01-04 20:23:40 +000059char ixgbe_default_device_descr[] =
60 "Intel(R) 10 Gigabit Network Connection";
Jeff Kirsher8af3c332012-02-18 07:08:14 +000061#else
62static char ixgbe_default_device_descr[] =
63 "Intel(R) 10 Gigabit Network Connection";
64#endif
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000065#define MAJ 3
Don Skidmoreeef45602012-04-28 03:29:22 +000066#define MIN 9
67#define BUILD 15
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000068#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
Don Skidmorea38a1042011-05-20 03:05:14 +000069 __stringify(BUILD) "-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070070const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000071static const char ixgbe_copyright[] =
Don Skidmore94971822012-01-06 03:24:16 +000072 "Copyright (c) 1999-2012 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070073
74static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070075 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000076 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e12010-11-16 19:27:16 -080077 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070078};
79
80/* ixgbe_pci_tbl - PCI Device ID Table
81 *
82 * Wildcard entries (PCI_ANY_ID) should come last
83 * Last entry must be all 0s
84 *
85 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
86 * Class, Class Mask, private data (not used) }
87 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000088static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Alexander Duyck54239c62011-07-15 03:06:06 +000089 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
90 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
91 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
92 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
93 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
94 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
95 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
96 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
97 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
98 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
99 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
112 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
113 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
114 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
Emil Tantilov7d145282011-09-08 08:30:14 +0000115 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
Emil Tantilov9e791e42011-11-04 06:43:29 +0000116 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
joshua.a.hay@intel.comdf376f02012-09-21 00:08:21 +0000117 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T1), board_X540 },
Auke Kok9a799d72007-09-15 14:07:45 -0700118 /* required last entry */
119 {0, }
120};
121MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
122
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400123#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800124static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000125 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800126static struct notifier_block dca_notifier = {
127 .notifier_call = ixgbe_notify_dca,
128 .next = NULL,
129 .priority = 0
130};
131#endif
132
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000133#ifdef CONFIG_PCI_IOV
134static unsigned int max_vfs;
135module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000136MODULE_PARM_DESC(max_vfs,
Greg Rose6b42a9c2012-04-17 04:29:29 +0000137 "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 +0000138#endif /* CONFIG_PCI_IOV */
139
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000140static unsigned int allow_unsupported_sfp;
141module_param(allow_unsupported_sfp, uint, 0);
142MODULE_PARM_DESC(allow_unsupported_sfp,
143 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
144
stephen hemmingerb3f4d592012-03-13 06:04:20 +0000145#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
146static int debug = -1;
147module_param(debug, int, 0);
148MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
149
Auke Kok9a799d72007-09-15 14:07:45 -0700150MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
151MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
152MODULE_LICENSE("GPL");
153MODULE_VERSION(DRV_VERSION);
154
Alexander Duyck70864002011-04-27 09:13:56 +0000155static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
156{
157 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
158 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
159 schedule_work(&adapter->service_task);
160}
161
162static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
163{
164 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
165
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000166 /* flush memory to make sure state is correct before next watchdog */
Alexander Duyck70864002011-04-27 09:13:56 +0000167 smp_mb__before_clear_bit();
168 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
169}
170
Taku Izumidcd79ae2010-04-27 14:39:53 +0000171struct ixgbe_reg_info {
172 u32 ofs;
173 char *name;
174};
175
176static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
177
178 /* General Registers */
179 {IXGBE_CTRL, "CTRL"},
180 {IXGBE_STATUS, "STATUS"},
181 {IXGBE_CTRL_EXT, "CTRL_EXT"},
182
183 /* Interrupt Registers */
184 {IXGBE_EICR, "EICR"},
185
186 /* RX Registers */
187 {IXGBE_SRRCTL(0), "SRRCTL"},
188 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
189 {IXGBE_RDLEN(0), "RDLEN"},
190 {IXGBE_RDH(0), "RDH"},
191 {IXGBE_RDT(0), "RDT"},
192 {IXGBE_RXDCTL(0), "RXDCTL"},
193 {IXGBE_RDBAL(0), "RDBAL"},
194 {IXGBE_RDBAH(0), "RDBAH"},
195
196 /* TX Registers */
197 {IXGBE_TDBAL(0), "TDBAL"},
198 {IXGBE_TDBAH(0), "TDBAH"},
199 {IXGBE_TDLEN(0), "TDLEN"},
200 {IXGBE_TDH(0), "TDH"},
201 {IXGBE_TDT(0), "TDT"},
202 {IXGBE_TXDCTL(0), "TXDCTL"},
203
204 /* List Terminator */
205 {}
206};
207
208
209/*
210 * ixgbe_regdump - register printout routine
211 */
212static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
213{
214 int i = 0, j = 0;
215 char rname[16];
216 u32 regs[64];
217
218 switch (reginfo->ofs) {
219 case IXGBE_SRRCTL(0):
220 for (i = 0; i < 64; i++)
221 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
222 break;
223 case IXGBE_DCA_RXCTRL(0):
224 for (i = 0; i < 64; i++)
225 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
226 break;
227 case IXGBE_RDLEN(0):
228 for (i = 0; i < 64; i++)
229 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
230 break;
231 case IXGBE_RDH(0):
232 for (i = 0; i < 64; i++)
233 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
234 break;
235 case IXGBE_RDT(0):
236 for (i = 0; i < 64; i++)
237 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
238 break;
239 case IXGBE_RXDCTL(0):
240 for (i = 0; i < 64; i++)
241 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
242 break;
243 case IXGBE_RDBAL(0):
244 for (i = 0; i < 64; i++)
245 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
246 break;
247 case IXGBE_RDBAH(0):
248 for (i = 0; i < 64; i++)
249 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
250 break;
251 case IXGBE_TDBAL(0):
252 for (i = 0; i < 64; i++)
253 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
254 break;
255 case IXGBE_TDBAH(0):
256 for (i = 0; i < 64; i++)
257 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
258 break;
259 case IXGBE_TDLEN(0):
260 for (i = 0; i < 64; i++)
261 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
262 break;
263 case IXGBE_TDH(0):
264 for (i = 0; i < 64; i++)
265 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
266 break;
267 case IXGBE_TDT(0):
268 for (i = 0; i < 64; i++)
269 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
270 break;
271 case IXGBE_TXDCTL(0):
272 for (i = 0; i < 64; i++)
273 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
274 break;
275 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000276 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000277 IXGBE_READ_REG(hw, reginfo->ofs));
278 return;
279 }
280
281 for (i = 0; i < 8; i++) {
282 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000283 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000284 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000285 pr_cont(" %08x", regs[i*8+j]);
286 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000287 }
288
289}
290
291/*
292 * ixgbe_dump - Print registers, tx-rings and rx-rings
293 */
294static void ixgbe_dump(struct ixgbe_adapter *adapter)
295{
296 struct net_device *netdev = adapter->netdev;
297 struct ixgbe_hw *hw = &adapter->hw;
298 struct ixgbe_reg_info *reginfo;
299 int n = 0;
300 struct ixgbe_ring *tx_ring;
Alexander Duyck729739b2012-02-08 07:51:06 +0000301 struct ixgbe_tx_buffer *tx_buffer;
Taku Izumidcd79ae2010-04-27 14:39:53 +0000302 union ixgbe_adv_tx_desc *tx_desc;
303 struct my_u0 { u64 a; u64 b; } *u0;
304 struct ixgbe_ring *rx_ring;
305 union ixgbe_adv_rx_desc *rx_desc;
306 struct ixgbe_rx_buffer *rx_buffer_info;
307 u32 staterr;
308 int i = 0;
309
310 if (!netif_msg_hw(adapter))
311 return;
312
313 /* Print netdevice Info */
314 if (netdev) {
315 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000316 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000317 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000318 pr_info("%-15s %016lX %016lX %016lX\n",
319 netdev->name,
320 netdev->state,
321 netdev->trans_start,
322 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000323 }
324
325 /* Print Registers */
326 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000327 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000328 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
329 reginfo->name; reginfo++) {
330 ixgbe_regdump(hw, reginfo);
331 }
332
333 /* Print TX Ring Summary */
334 if (!netdev || !netif_running(netdev))
335 goto exit;
336
337 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000338 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000339 for (n = 0; n < adapter->num_tx_queues; n++) {
340 tx_ring = adapter->tx_ring[n];
Alexander Duyck729739b2012-02-08 07:51:06 +0000341 tx_buffer = &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Alexander Duyckd3d00232011-07-15 02:31:25 +0000342 pr_info(" %5d %5X %5X %016llX %04X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000343 n, tx_ring->next_to_use, tx_ring->next_to_clean,
Alexander Duyck729739b2012-02-08 07:51:06 +0000344 (u64)dma_unmap_addr(tx_buffer, dma),
345 dma_unmap_len(tx_buffer, len),
346 tx_buffer->next_to_watch,
347 (u64)tx_buffer->time_stamp);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000348 }
349
350 /* Print TX Rings */
351 if (!netif_msg_tx_done(adapter))
352 goto rx_ring_summary;
353
354 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
355
356 /* Transmit Descriptor Formats
357 *
358 * Advanced Transmit Descriptor
359 * +--------------------------------------------------------------+
360 * 0 | Buffer Address [63:0] |
361 * +--------------------------------------------------------------+
362 * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
363 * +--------------------------------------------------------------+
364 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
365 */
366
367 for (n = 0; n < adapter->num_tx_queues; n++) {
368 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000369 pr_info("------------------------------------\n");
370 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
371 pr_info("------------------------------------\n");
372 pr_info("T [desc] [address 63:0 ] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000373 "[PlPOIdStDDt Ln] [bi->dma ] "
374 "leng ntw timestamp bi->skb\n");
375
376 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duycke4f74022012-01-31 02:59:44 +0000377 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000378 tx_buffer = &tx_ring->tx_buffer_info[i];
Taku Izumidcd79ae2010-04-27 14:39:53 +0000379 u0 = (struct my_u0 *)tx_desc;
Joe Perchesc7689572010-09-07 21:35:17 +0000380 pr_info("T [0x%03X] %016llX %016llX %016llX"
Alexander Duyckd3d00232011-07-15 02:31:25 +0000381 " %04X %p %016llX %p", i,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000382 le64_to_cpu(u0->a),
383 le64_to_cpu(u0->b),
Alexander Duyck729739b2012-02-08 07:51:06 +0000384 (u64)dma_unmap_addr(tx_buffer, dma),
385 dma_unmap_len(tx_buffer, len),
386 tx_buffer->next_to_watch,
387 (u64)tx_buffer->time_stamp,
388 tx_buffer->skb);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000389 if (i == tx_ring->next_to_use &&
390 i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000391 pr_cont(" NTC/U\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000392 else if (i == tx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000393 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000394 else if (i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000395 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000396 else
Joe Perchesc7689572010-09-07 21:35:17 +0000397 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000398
399 if (netif_msg_pktdata(adapter) &&
Emil Tantilov9c50c032012-07-26 01:21:24 +0000400 tx_buffer->skb)
Taku Izumidcd79ae2010-04-27 14:39:53 +0000401 print_hex_dump(KERN_INFO, "",
402 DUMP_PREFIX_ADDRESS, 16, 1,
Emil Tantilov9c50c032012-07-26 01:21:24 +0000403 tx_buffer->skb->data,
Alexander Duyck729739b2012-02-08 07:51:06 +0000404 dma_unmap_len(tx_buffer, len),
405 true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000406 }
407 }
408
409 /* Print RX Rings Summary */
410rx_ring_summary:
411 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000412 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000413 for (n = 0; n < adapter->num_rx_queues; n++) {
414 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000415 pr_info("%5d %5X %5X\n",
416 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000417 }
418
419 /* Print RX Rings */
420 if (!netif_msg_rx_status(adapter))
421 goto exit;
422
423 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
424
425 /* Advanced Receive Descriptor (Read) Format
426 * 63 1 0
427 * +-----------------------------------------------------+
428 * 0 | Packet Buffer Address [63:1] |A0/NSE|
429 * +----------------------------------------------+------+
430 * 8 | Header Buffer Address [63:1] | DD |
431 * +-----------------------------------------------------+
432 *
433 *
434 * Advanced Receive Descriptor (Write-Back) Format
435 *
436 * 63 48 47 32 31 30 21 20 16 15 4 3 0
437 * +------------------------------------------------------+
438 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
439 * | Checksum Ident | | | | Type | Type |
440 * +------------------------------------------------------+
441 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
442 * +------------------------------------------------------+
443 * 63 48 47 32 31 20 19 0
444 */
445 for (n = 0; n < adapter->num_rx_queues; n++) {
446 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000447 pr_info("------------------------------------\n");
448 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
449 pr_info("------------------------------------\n");
450 pr_info("R [desc] [ PktBuf A0] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000451 "[ HeadBuf DD] [bi->dma ] [bi->skb] "
452 "<-- Adv Rx Read format\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000453 pr_info("RWB[desc] [PcsmIpSHl PtRs] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000454 "[vl er S cks ln] ---------------- [bi->skb] "
455 "<-- Adv Rx Write-Back format\n");
456
457 for (i = 0; i < rx_ring->count; i++) {
458 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000459 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000460 u0 = (struct my_u0 *)rx_desc;
461 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
462 if (staterr & IXGBE_RXD_STAT_DD) {
463 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000464 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000465 "%016llX ---------------- %p", i,
466 le64_to_cpu(u0->a),
467 le64_to_cpu(u0->b),
468 rx_buffer_info->skb);
469 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000470 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000471 "%016llX %016llX %p", i,
472 le64_to_cpu(u0->a),
473 le64_to_cpu(u0->b),
474 (u64)rx_buffer_info->dma,
475 rx_buffer_info->skb);
476
Emil Tantilov9c50c032012-07-26 01:21:24 +0000477 if (netif_msg_pktdata(adapter) &&
478 rx_buffer_info->dma) {
Taku Izumidcd79ae2010-04-27 14:39:53 +0000479 print_hex_dump(KERN_INFO, "",
480 DUMP_PREFIX_ADDRESS, 16, 1,
Emil Tantilov9c50c032012-07-26 01:21:24 +0000481 page_address(rx_buffer_info->page) +
482 rx_buffer_info->page_offset,
Alexander Duyckf8003262012-03-03 02:35:52 +0000483 ixgbe_rx_bufsz(rx_ring), true);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000484 }
485 }
486
487 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000488 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000489 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000490 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000491 else
Joe Perchesc7689572010-09-07 21:35:17 +0000492 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000493
494 }
495 }
496
497exit:
498 return;
499}
500
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800501static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
502{
503 u32 ctrl_ext;
504
505 /* Let firmware take over control of h/w */
506 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
507 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000508 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800509}
510
511static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
512{
513 u32 ctrl_ext;
514
515 /* Let firmware know the driver has taken over */
516 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
517 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000518 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800519}
Auke Kok9a799d72007-09-15 14:07:45 -0700520
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000521/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000522 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
523 * @adapter: pointer to adapter struct
524 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
525 * @queue: queue to map the corresponding interrupt to
526 * @msix_vector: the vector to map to the corresponding queue
527 *
528 */
529static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000530 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700531{
532 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000533 struct ixgbe_hw *hw = &adapter->hw;
534 switch (hw->mac.type) {
535 case ixgbe_mac_82598EB:
536 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
537 if (direction == -1)
538 direction = 0;
539 index = (((direction * 64) + queue) >> 2) & 0x1F;
540 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
541 ivar &= ~(0xFF << (8 * (queue & 0x3)));
542 ivar |= (msix_vector << (8 * (queue & 0x3)));
543 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
544 break;
545 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800546 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000547 if (direction == -1) {
548 /* other causes */
549 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
550 index = ((queue & 1) * 8);
551 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
552 ivar &= ~(0xFF << index);
553 ivar |= (msix_vector << index);
554 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
555 break;
556 } else {
557 /* tx or rx causes */
558 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
559 index = ((16 * (queue & 1)) + (8 * direction));
560 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
561 ivar &= ~(0xFF << index);
562 ivar |= (msix_vector << index);
563 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
564 break;
565 }
566 default:
567 break;
568 }
Auke Kok9a799d72007-09-15 14:07:45 -0700569}
570
Alexander Duyckfe49f042009-06-04 16:00:09 +0000571static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000572 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000573{
574 u32 mask;
575
Alexander Duyckbd508172010-11-16 19:27:03 -0800576 switch (adapter->hw.mac.type) {
577 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000578 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
579 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800580 break;
581 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800582 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000583 mask = (qmask & 0xFFFFFFFF);
584 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
585 mask = (qmask >> 32);
586 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800587 break;
588 default:
589 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000590 }
591}
592
Alexander Duyck729739b2012-02-08 07:51:06 +0000593void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *ring,
594 struct ixgbe_tx_buffer *tx_buffer)
Alexander Duyckd3d00232011-07-15 02:31:25 +0000595{
Alexander Duyck729739b2012-02-08 07:51:06 +0000596 if (tx_buffer->skb) {
597 dev_kfree_skb_any(tx_buffer->skb);
598 if (dma_unmap_len(tx_buffer, len))
Alexander Duyckd3d00232011-07-15 02:31:25 +0000599 dma_unmap_single(ring->dev,
Alexander Duyck729739b2012-02-08 07:51:06 +0000600 dma_unmap_addr(tx_buffer, dma),
601 dma_unmap_len(tx_buffer, len),
602 DMA_TO_DEVICE);
603 } else if (dma_unmap_len(tx_buffer, len)) {
604 dma_unmap_page(ring->dev,
605 dma_unmap_addr(tx_buffer, dma),
606 dma_unmap_len(tx_buffer, len),
607 DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000608 }
Alexander Duyck729739b2012-02-08 07:51:06 +0000609 tx_buffer->next_to_watch = NULL;
610 tx_buffer->skb = NULL;
611 dma_unmap_len_set(tx_buffer, len, 0);
612 /* tx_buffer must be completely set up in the transmit path */
Auke Kok9a799d72007-09-15 14:07:45 -0700613}
614
Alexander Duyck943561d2012-05-09 22:14:44 -0700615static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter *adapter)
616{
617 struct ixgbe_hw *hw = &adapter->hw;
618 struct ixgbe_hw_stats *hwstats = &adapter->stats;
619 int i;
620 u32 data;
621
622 if ((hw->fc.current_mode != ixgbe_fc_full) &&
623 (hw->fc.current_mode != ixgbe_fc_rx_pause))
624 return;
625
626 switch (hw->mac.type) {
627 case ixgbe_mac_82598EB:
628 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
629 break;
630 default:
631 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
632 }
633 hwstats->lxoffrxc += data;
634
635 /* refill credits (no tx hang) if we received xoff */
636 if (!data)
637 return;
638
639 for (i = 0; i < adapter->num_tx_queues; i++)
640 clear_bit(__IXGBE_HANG_CHECK_ARMED,
641 &adapter->tx_ring[i]->state);
642}
643
John Fastabendc84d3242010-11-16 19:27:12 -0800644static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700645{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700646 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800647 struct ixgbe_hw_stats *hwstats = &adapter->stats;
John Fastabendc84d3242010-11-16 19:27:12 -0800648 u32 xoff[8] = {0};
649 int i;
Alexander Duyck943561d2012-05-09 22:14:44 -0700650 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700651
Alexander Duyck943561d2012-05-09 22:14:44 -0700652 if (adapter->ixgbe_ieee_pfc)
653 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
John Fastabendc84d3242010-11-16 19:27:12 -0800654
Alexander Duyck943561d2012-05-09 22:14:44 -0700655 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED) || !pfc_en) {
656 ixgbe_update_xoff_rx_lfc(adapter);
John Fastabendc84d3242010-11-16 19:27:12 -0800657 return;
Alexander Duyck943561d2012-05-09 22:14:44 -0700658 }
John Fastabendc84d3242010-11-16 19:27:12 -0800659
660 /* update stats for each tc, only valid with PFC enabled */
661 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
662 switch (hw->mac.type) {
663 case ixgbe_mac_82598EB:
664 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
665 break;
666 default:
667 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
668 }
669 hwstats->pxoffrxc[i] += xoff[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700670 }
671
John Fastabendc84d3242010-11-16 19:27:12 -0800672 /* disarm tx queues that have received xoff frames */
673 for (i = 0; i < adapter->num_tx_queues; i++) {
674 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendfb5475f2011-04-26 07:26:36 +0000675 u8 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800676
677 if (xoff[tc])
678 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
679 }
680}
681
682static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
683{
Alexander Duyck7d7ce682012-02-08 07:50:51 +0000684 return ring->stats.packets;
John Fastabendc84d3242010-11-16 19:27:12 -0800685}
686
687static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
688{
689 struct ixgbe_adapter *adapter = netdev_priv(ring->netdev);
690 struct ixgbe_hw *hw = &adapter->hw;
691
692 u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
693 u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
694
695 if (head != tail)
696 return (head < tail) ?
697 tail - head : (tail + ring->count - head);
698
699 return 0;
700}
701
702static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
703{
704 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
705 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
706 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
707 bool ret = false;
708
709 clear_check_for_tx_hang(tx_ring);
710
711 /*
712 * Check for a hung queue, but be thorough. This verifies
713 * that a transmit has been completed since the previous
714 * check AND there is at least one packet pending. The
715 * ARMED bit is set to indicate a potential hang. The
716 * bit is cleared if a pause frame is received to remove
717 * false hang detection due to PFC or 802.3x frames. By
718 * requiring this to fail twice we avoid races with
719 * pfc clearing the ARMED bit and conditions where we
720 * run the check_tx_hang logic with a transmit completion
721 * pending but without time to complete it yet.
722 */
723 if ((tx_done_old == tx_done) && tx_pending) {
724 /* make sure it is true for two checks in a row */
725 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
726 &tx_ring->state);
727 } else {
728 /* update completed stats and continue */
729 tx_ring->tx_stats.tx_done_old = tx_done;
730 /* reset the countdown */
731 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
732 }
733
734 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700735}
736
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000737/**
738 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
739 * @adapter: driver private struct
740 **/
741static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
742{
743
744 /* Do the reset outside of interrupt context */
745 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
746 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
747 ixgbe_service_event_schedule(adapter);
748 }
749}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700750
Auke Kok9a799d72007-09-15 14:07:45 -0700751/**
752 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000753 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700754 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700755 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000756static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000757 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700758{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000759 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000760 struct ixgbe_tx_buffer *tx_buffer;
761 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700762 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +0000763 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyck729739b2012-02-08 07:51:06 +0000764 unsigned int i = tx_ring->next_to_clean;
765
766 if (test_bit(__IXGBE_DOWN, &adapter->state))
767 return true;
Auke Kok9a799d72007-09-15 14:07:45 -0700768
Alexander Duyckd3d00232011-07-15 02:31:25 +0000769 tx_buffer = &tx_ring->tx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000770 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyck729739b2012-02-08 07:51:06 +0000771 i -= tx_ring->count;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800772
Alexander Duyck729739b2012-02-08 07:51:06 +0000773 do {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000774 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -0700775
Alexander Duyckd3d00232011-07-15 02:31:25 +0000776 /* if next_to_watch is not set then there is no work pending */
777 if (!eop_desc)
778 break;
779
Alexander Duyck7f83a9e2012-02-08 07:49:23 +0000780 /* prevent any other reads prior to eop_desc */
781 rmb();
782
Alexander Duyckd3d00232011-07-15 02:31:25 +0000783 /* if DD is not set pending work has not been completed */
784 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
785 break;
786
Alexander Duyckd3d00232011-07-15 02:31:25 +0000787 /* clear next_to_watch to prevent false hangs */
788 tx_buffer->next_to_watch = NULL;
789
Alexander Duyck091a6242012-02-08 07:51:01 +0000790 /* update the statistics for this packet */
791 total_bytes += tx_buffer->bytecount;
792 total_packets += tx_buffer->gso_segs;
793
Jacob Keller3a6a4ed2012-05-01 05:24:58 +0000794#ifdef CONFIG_IXGBE_PTP
Jacob Keller0ede4a62012-05-22 06:08:32 +0000795 if (unlikely(tx_buffer->tx_flags & IXGBE_TX_FLAGS_TSTAMP))
796 ixgbe_ptp_tx_hwtstamp(q_vector, tx_buffer->skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +0000797#endif
Jacob Keller0ede4a62012-05-22 06:08:32 +0000798
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000799 /* free the skb */
800 dev_kfree_skb_any(tx_buffer->skb);
801
Alexander Duyck729739b2012-02-08 07:51:06 +0000802 /* unmap skb header data */
803 dma_unmap_single(tx_ring->dev,
804 dma_unmap_addr(tx_buffer, dma),
805 dma_unmap_len(tx_buffer, len),
806 DMA_TO_DEVICE);
807
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000808 /* clear tx_buffer data */
809 tx_buffer->skb = NULL;
Alexander Duyck729739b2012-02-08 07:51:06 +0000810 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000811
Alexander Duyck729739b2012-02-08 07:51:06 +0000812 /* unmap remaining buffers */
813 while (tx_desc != eop_desc) {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000814 tx_buffer++;
815 tx_desc++;
816 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +0000817 if (unlikely(!i)) {
818 i -= tx_ring->count;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000819 tx_buffer = tx_ring->tx_buffer_info;
Alexander Duycke4f74022012-01-31 02:59:44 +0000820 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000821 }
822
Alexander Duyck729739b2012-02-08 07:51:06 +0000823 /* unmap any remaining paged data */
824 if (dma_unmap_len(tx_buffer, len)) {
825 dma_unmap_page(tx_ring->dev,
826 dma_unmap_addr(tx_buffer, dma),
827 dma_unmap_len(tx_buffer, len),
828 DMA_TO_DEVICE);
829 dma_unmap_len_set(tx_buffer, len, 0);
830 }
831 }
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800832
Alexander Duyck729739b2012-02-08 07:51:06 +0000833 /* move us one more past the eop_desc for start of next pkt */
834 tx_buffer++;
835 tx_desc++;
836 i++;
837 if (unlikely(!i)) {
838 i -= tx_ring->count;
839 tx_buffer = tx_ring->tx_buffer_info;
840 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
841 }
842
843 /* issue prefetch for next Tx descriptor */
844 prefetch(tx_desc);
845
846 /* update budget accounting */
847 budget--;
848 } while (likely(budget));
849
850 i += tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -0700851 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000852 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -0800853 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +0000854 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000855 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +0000856 q_vector->tx.total_bytes += total_bytes;
857 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -0800858
John Fastabendc84d3242010-11-16 19:27:12 -0800859 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -0800860 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -0800861 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800862 e_err(drv, "Detected Tx Unit Hang\n"
863 " Tx Queue <%d>\n"
864 " TDH, TDT <%x>, <%x>\n"
865 " next_to_use <%x>\n"
866 " next_to_clean <%x>\n"
867 "tx_buffer_info[next_to_clean]\n"
868 " time_stamp <%lx>\n"
869 " jiffies <%lx>\n",
870 tx_ring->queue_index,
871 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
872 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +0000873 tx_ring->next_to_use, i,
874 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -0800875
876 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
877
878 e_info(probe,
879 "tx hang %d detected on queue %d, resetting adapter\n",
880 adapter->tx_timeout_count + 1, tx_ring->queue_index);
881
882 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000883 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -0800884
885 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +0000886 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -0800887 }
Auke Kok9a799d72007-09-15 14:07:45 -0700888
Alexander Duyckb2d96e02012-02-07 08:14:33 +0000889 netdev_tx_completed_queue(txring_txq(tx_ring),
890 total_packets, total_bytes);
891
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800892#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +0000893 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +0000894 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800895 /* Make sure that anybody stopping the queue after this
896 * sees the new next_to_clean.
897 */
898 smp_mb();
Alexander Duyck729739b2012-02-08 07:51:06 +0000899 if (__netif_subqueue_stopped(tx_ring->netdev,
900 tx_ring->queue_index)
901 && !test_bit(__IXGBE_DOWN, &adapter->state)) {
902 netif_wake_subqueue(tx_ring->netdev,
903 tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800904 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800905 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800906 }
Auke Kok9a799d72007-09-15 14:07:45 -0700907
Alexander Duyck59224552011-08-31 00:01:06 +0000908 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -0700909}
910
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400911#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800912static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800913 struct ixgbe_ring *tx_ring,
914 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800915{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000916 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000917 u32 txctrl = dca3_get_tag(tx_ring->dev, cpu);
918 u16 reg_offset;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800919
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800920 switch (hw->mac.type) {
921 case ixgbe_mac_82598EB:
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000922 reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800923 break;
924 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800925 case ixgbe_mac_X540:
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000926 reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx);
927 txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599;
928 break;
929 default:
930 /* for unknown hardware do not write register */
931 return;
932 }
933
934 /*
935 * We can enable relaxed ordering for reads, but not writes when
936 * DCA is enabled. This is due to a known issue in some chipsets
937 * which will cause the DCA tag to be cleared.
938 */
939 txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN |
940 IXGBE_DCA_TXCTRL_DATA_RRO_EN |
941 IXGBE_DCA_TXCTRL_DESC_DCA_EN;
942
943 IXGBE_WRITE_REG(hw, reg_offset, txctrl);
944}
945
946static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
947 struct ixgbe_ring *rx_ring,
948 int cpu)
949{
950 struct ixgbe_hw *hw = &adapter->hw;
951 u32 rxctrl = dca3_get_tag(rx_ring->dev, cpu);
952 u8 reg_idx = rx_ring->reg_idx;
953
954
955 switch (hw->mac.type) {
956 case ixgbe_mac_82599EB:
957 case ixgbe_mac_X540:
958 rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800959 break;
960 default:
961 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800962 }
Alexander Duyckbdda1a62012-02-08 07:50:14 +0000963
964 /*
965 * We can enable relaxed ordering for reads, but not writes when
966 * DCA is enabled. This is due to a known issue in some chipsets
967 * which will cause the DCA tag to be cleared.
968 */
969 rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN |
970 IXGBE_DCA_RXCTRL_DATA_DCA_EN |
971 IXGBE_DCA_RXCTRL_DESC_DCA_EN;
972
973 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800974}
975
976static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
977{
978 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000979 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800980 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800981
982 if (q_vector->cpu == cpu)
983 goto out_no_update;
984
Alexander Duycka5579282012-02-08 07:50:04 +0000985 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000986 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800987
Alexander Duycka5579282012-02-08 07:50:04 +0000988 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000989 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800990
991 q_vector->cpu = cpu;
992out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800993 put_cpu();
994}
995
996static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
997{
998 int i;
999
1000 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
1001 return;
1002
Alexander Duycke35ec122009-05-21 13:07:12 +00001003 /* always use CB2 mode, difference is masked in the CB driver */
1004 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
1005
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001006 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001007 adapter->q_vector[i]->cpu = -1;
1008 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001009 }
1010}
1011
1012static int __ixgbe_notify_dca(struct device *dev, void *data)
1013{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001014 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001015 unsigned long event = *(unsigned long *)data;
1016
Don Skidmore2a72c312011-07-20 02:27:05 +00001017 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001018 return 0;
1019
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001020 switch (event) {
1021 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001022 /* if we're already enabled, don't do it again */
1023 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1024 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001025 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001026 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001027 ixgbe_setup_dca(adapter);
1028 break;
1029 }
1030 /* Fall Through since DCA is disabled. */
1031 case DCA_PROVIDER_REMOVE:
1032 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1033 dca_remove_requester(dev);
1034 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1035 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
1036 }
1037 break;
1038 }
1039
Denis V. Lunev652f0932008-03-27 14:39:17 +03001040 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001041}
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001042
Alexander Duyckbdda1a62012-02-08 07:50:14 +00001043#endif /* CONFIG_IXGBE_DCA */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001044static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
1045 union ixgbe_adv_rx_desc *rx_desc,
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001046 struct sk_buff *skb)
1047{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001048 if (ring->netdev->features & NETIF_F_RXHASH)
1049 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001050}
1051
Alexander Duyckf8003262012-03-03 02:35:52 +00001052#ifdef IXGBE_FCOE
Auke Kok9a799d72007-09-15 14:07:45 -07001053/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001054 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
Alexander Duyck57efd442012-06-25 21:54:46 +00001055 * @ring: structure containing ring specific data
Alexander Duyckff886df2011-06-11 01:45:13 +00001056 * @rx_desc: advanced rx descriptor
1057 *
1058 * Returns : true if it is FCoE pkt
1059 */
Alexander Duyck57efd442012-06-25 21:54:46 +00001060static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring *ring,
Alexander Duyckff886df2011-06-11 01:45:13 +00001061 union ixgbe_adv_rx_desc *rx_desc)
1062{
1063 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1064
Alexander Duyck57efd442012-06-25 21:54:46 +00001065 return test_bit(__IXGBE_RX_FCOE, &ring->state) &&
Alexander Duyckff886df2011-06-11 01:45:13 +00001066 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1067 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1068 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1069}
1070
Alexander Duyckf8003262012-03-03 02:35:52 +00001071#endif /* IXGBE_FCOE */
Alexander Duyckff886df2011-06-11 01:45:13 +00001072/**
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001073 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
Alexander Duyck8a0da212012-01-31 02:59:49 +00001074 * @ring: structure containing ring specific data
1075 * @rx_desc: current Rx descriptor being processed
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001076 * @skb: skb currently being received and modified
1077 **/
Alexander Duyck8a0da212012-01-31 02:59:49 +00001078static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001079 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001080 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001081{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001082 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001083
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001084 /* Rx csum disabled */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001085 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Auke Kok9a799d72007-09-15 14:07:45 -07001086 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001087
1088 /* if IP and error */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001089 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1090 ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001091 ring->rx_stats.csum_err++;
Auke Kok9a799d72007-09-15 14:07:45 -07001092 return;
1093 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001094
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001095 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001096 return;
1097
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001098 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Alexander Duyckf8003262012-03-03 02:35:52 +00001099 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
Don Skidmore8bae1b22009-07-23 18:00:39 +00001100
1101 /*
1102 * 82599 errata, UDP frames with a 0 checksum can be marked as
1103 * checksum errors.
1104 */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001105 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1106 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
Don Skidmore8bae1b22009-07-23 18:00:39 +00001107 return;
1108
Alexander Duyck8a0da212012-01-31 02:59:49 +00001109 ring->rx_stats.csum_err++;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001110 return;
1111 }
1112
Auke Kok9a799d72007-09-15 14:07:45 -07001113 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001114 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001115}
1116
Alexander Duyck84ea2592010-11-16 19:26:49 -08001117static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001118{
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001119 rx_ring->next_to_use = val;
Alexander Duyckf8003262012-03-03 02:35:52 +00001120
1121 /* update next to alloc since we have filled the ring */
1122 rx_ring->next_to_alloc = val;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001123 /*
1124 * Force memory writes to complete before letting h/w
1125 * know there are new descriptors to fetch. (Only
1126 * applicable for weak-ordered memory model archs,
1127 * such as IA-64).
1128 */
1129 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001130 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001131}
1132
Alexander Duyckf990b792012-01-31 02:59:34 +00001133static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1134 struct ixgbe_rx_buffer *bi)
1135{
1136 struct page *page = bi->page;
Alexander Duyckf8003262012-03-03 02:35:52 +00001137 dma_addr_t dma = bi->dma;
Alexander Duyckf990b792012-01-31 02:59:34 +00001138
Alexander Duyckf8003262012-03-03 02:35:52 +00001139 /* since we are recycling buffers we should seldom need to alloc */
1140 if (likely(dma))
Alexander Duyckf990b792012-01-31 02:59:34 +00001141 return true;
1142
Alexander Duyckf8003262012-03-03 02:35:52 +00001143 /* alloc new page for storage */
1144 if (likely(!page)) {
Mel Gorman06140022012-07-31 16:44:24 -07001145 page = __skb_alloc_pages(GFP_ATOMIC | __GFP_COLD | __GFP_COMP,
1146 bi->skb, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf990b792012-01-31 02:59:34 +00001147 if (unlikely(!page)) {
1148 rx_ring->rx_stats.alloc_rx_page_failed++;
1149 return false;
1150 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001151 bi->page = page;
Alexander Duyckf990b792012-01-31 02:59:34 +00001152 }
1153
Alexander Duyckf8003262012-03-03 02:35:52 +00001154 /* map page for use */
1155 dma = dma_map_page(rx_ring->dev, page, 0,
1156 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
Alexander Duyckf990b792012-01-31 02:59:34 +00001157
Alexander Duyckf8003262012-03-03 02:35:52 +00001158 /*
1159 * if mapping failed free memory back to system since
1160 * there isn't much point in holding memory we can't use
1161 */
1162 if (dma_mapping_error(rx_ring->dev, dma)) {
Alexander Duyckdd411ec2012-04-06 04:24:50 +00001163 __free_pages(page, ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00001164 bi->page = NULL;
1165
Alexander Duyckf990b792012-01-31 02:59:34 +00001166 rx_ring->rx_stats.alloc_rx_page_failed++;
1167 return false;
1168 }
1169
Alexander Duyckf8003262012-03-03 02:35:52 +00001170 bi->dma = dma;
Alexander Duyckafaa9452012-07-20 08:08:12 +00001171 bi->page_offset = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001172
Alexander Duyckf990b792012-01-31 02:59:34 +00001173 return true;
1174}
1175
Auke Kok9a799d72007-09-15 14:07:45 -07001176/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001177 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001178 * @rx_ring: ring to place buffers on
1179 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001180 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001181void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001182{
Auke Kok9a799d72007-09-15 14:07:45 -07001183 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001184 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001185 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001186
Alexander Duyckf8003262012-03-03 02:35:52 +00001187 /* nothing to do */
1188 if (!cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001189 return;
1190
Alexander Duycke4f74022012-01-31 02:59:44 +00001191 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Alexander Duyckf990b792012-01-31 02:59:34 +00001192 bi = &rx_ring->rx_buffer_info[i];
1193 i -= rx_ring->count;
1194
Alexander Duyckf8003262012-03-03 02:35:52 +00001195 do {
1196 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
Alexander Duyckf990b792012-01-31 02:59:34 +00001197 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001198
Alexander Duyckf8003262012-03-03 02:35:52 +00001199 /*
1200 * Refresh the desc even if buffer_addrs didn't change
1201 * because each write-back erases this info.
1202 */
1203 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
Auke Kok9a799d72007-09-15 14:07:45 -07001204
Alexander Duyckf990b792012-01-31 02:59:34 +00001205 rx_desc++;
1206 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001207 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001208 if (unlikely(!i)) {
Alexander Duycke4f74022012-01-31 02:59:44 +00001209 rx_desc = IXGBE_RX_DESC(rx_ring, 0);
Alexander Duyckf990b792012-01-31 02:59:34 +00001210 bi = rx_ring->rx_buffer_info;
1211 i -= rx_ring->count;
1212 }
1213
1214 /* clear the hdr_addr for the next_to_use descriptor */
1215 rx_desc->read.hdr_addr = 0;
Alexander Duyckf8003262012-03-03 02:35:52 +00001216
1217 cleaned_count--;
1218 } while (cleaned_count);
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001219
Alexander Duyckf990b792012-01-31 02:59:34 +00001220 i += rx_ring->count;
1221
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001222 if (rx_ring->next_to_use != i)
Alexander Duyck84ea2592010-11-16 19:26:49 -08001223 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001224}
1225
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001226/**
1227 * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE
1228 * @data: pointer to the start of the headers
1229 * @max_len: total length of section to find headers in
1230 *
1231 * This function is meant to determine the length of headers that will
1232 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1233 * motivation of doing this is to only perform one pull for IPv4 TCP
1234 * packets so that we can do basic things like calculating the gso_size
1235 * based on the average data per packet.
1236 **/
1237static unsigned int ixgbe_get_headlen(unsigned char *data,
1238 unsigned int max_len)
1239{
1240 union {
1241 unsigned char *network;
1242 /* l2 headers */
1243 struct ethhdr *eth;
1244 struct vlan_hdr *vlan;
1245 /* l3 headers */
1246 struct iphdr *ipv4;
1247 } hdr;
1248 __be16 protocol;
1249 u8 nexthdr = 0; /* default to not TCP */
1250 u8 hlen;
1251
1252 /* this should never happen, but better safe than sorry */
1253 if (max_len < ETH_HLEN)
1254 return max_len;
1255
1256 /* initialize network frame pointer */
1257 hdr.network = data;
1258
1259 /* set first protocol and move network header forward */
1260 protocol = hdr.eth->h_proto;
1261 hdr.network += ETH_HLEN;
1262
1263 /* handle any vlan tag if present */
1264 if (protocol == __constant_htons(ETH_P_8021Q)) {
1265 if ((hdr.network - data) > (max_len - VLAN_HLEN))
1266 return max_len;
1267
1268 protocol = hdr.vlan->h_vlan_encapsulated_proto;
1269 hdr.network += VLAN_HLEN;
1270 }
1271
1272 /* handle L3 protocols */
1273 if (protocol == __constant_htons(ETH_P_IP)) {
1274 if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
1275 return max_len;
1276
1277 /* access ihl as a u8 to avoid unaligned access on ia64 */
1278 hlen = (hdr.network[0] & 0x0F) << 2;
1279
1280 /* verify hlen meets minimum size requirements */
1281 if (hlen < sizeof(struct iphdr))
1282 return hdr.network - data;
1283
1284 /* record next protocol */
1285 nexthdr = hdr.ipv4->protocol;
1286 hdr.network += hlen;
Alexander Duyckf8003262012-03-03 02:35:52 +00001287#ifdef IXGBE_FCOE
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001288 } else if (protocol == __constant_htons(ETH_P_FCOE)) {
1289 if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN))
1290 return max_len;
1291 hdr.network += FCOE_HEADER_LEN;
1292#endif
1293 } else {
1294 return hdr.network - data;
1295 }
1296
1297 /* finally sort out TCP */
1298 if (nexthdr == IPPROTO_TCP) {
1299 if ((hdr.network - data) > (max_len - sizeof(struct tcphdr)))
1300 return max_len;
1301
1302 /* access doff as a u8 to avoid unaligned access on ia64 */
1303 hlen = (hdr.network[12] & 0xF0) >> 2;
1304
1305 /* verify hlen meets minimum size requirements */
1306 if (hlen < sizeof(struct tcphdr))
1307 return hdr.network - data;
1308
1309 hdr.network += hlen;
1310 }
1311
1312 /*
1313 * If everything has gone correctly hdr.network should be the
1314 * data section of the packet and will be the end of the header.
1315 * If not then it probably represents the end of the last recognized
1316 * header.
1317 */
1318 if ((hdr.network - data) < max_len)
1319 return hdr.network - data;
1320 else
1321 return max_len;
1322}
1323
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001324static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1325 struct sk_buff *skb)
1326{
Alexander Duyckf8003262012-03-03 02:35:52 +00001327 u16 hdr_len = skb_headlen(skb);
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001328
1329 /* set gso_size to avoid messing up TCP MSS */
1330 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1331 IXGBE_CB(skb)->append_cnt);
1332}
1333
1334static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1335 struct sk_buff *skb)
1336{
1337 /* if append_cnt is 0 then frame is not RSC */
1338 if (!IXGBE_CB(skb)->append_cnt)
1339 return;
1340
1341 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1342 rx_ring->rx_stats.rsc_flush++;
1343
1344 ixgbe_set_rsc_gso_size(rx_ring, skb);
1345
1346 /* gso_size is computed using append_cnt so always clear it last */
1347 IXGBE_CB(skb)->append_cnt = 0;
1348}
1349
Alexander Duyck8a0da212012-01-31 02:59:49 +00001350/**
1351 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1352 * @rx_ring: rx descriptor ring packet is being transacted on
1353 * @rx_desc: pointer to the EOP Rx descriptor
1354 * @skb: pointer to current skb being populated
1355 *
1356 * This function checks the ring, descriptor, and packet information in
1357 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1358 * other fields within the skb.
1359 **/
1360static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1361 union ixgbe_adv_rx_desc *rx_desc,
1362 struct sk_buff *skb)
1363{
John Fastabend43e95f12012-05-15 06:12:17 +00001364 struct net_device *dev = rx_ring->netdev;
1365
Alexander Duyck8a0da212012-01-31 02:59:49 +00001366 ixgbe_update_rsc_stats(rx_ring, skb);
1367
1368 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1369
1370 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1371
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001372#ifdef CONFIG_IXGBE_PTP
Jacob Keller1d1a79b2012-05-22 06:18:08 +00001373 ixgbe_ptp_rx_hwtstamp(rx_ring->q_vector, rx_desc, skb);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00001374#endif
1375
John Fastabend43e95f12012-05-15 06:12:17 +00001376 if ((dev->features & NETIF_F_HW_VLAN_RX) &&
1377 ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001378 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
1379 __vlan_hwaccel_put_tag(skb, vid);
1380 }
1381
1382 skb_record_rx_queue(skb, rx_ring->queue_index);
1383
John Fastabend43e95f12012-05-15 06:12:17 +00001384 skb->protocol = eth_type_trans(skb, dev);
Alexander Duyck8a0da212012-01-31 02:59:49 +00001385}
1386
1387static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1388 struct sk_buff *skb)
1389{
1390 struct ixgbe_adapter *adapter = q_vector->adapter;
1391
1392 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1393 napi_gro_receive(&q_vector->napi, skb);
1394 else
1395 netif_rx(skb);
Alexander Duyckaa801752010-11-16 19:27:02 -08001396}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001397
Alexander Duyckf8003262012-03-03 02:35:52 +00001398/**
1399 * ixgbe_is_non_eop - process handling of non-EOP buffers
1400 * @rx_ring: Rx ring being processed
1401 * @rx_desc: Rx descriptor for current buffer
1402 * @skb: Current socket buffer containing buffer in progress
1403 *
1404 * This function updates next to clean. If the buffer is an EOP buffer
1405 * this function exits returning false, otherwise it will place the
1406 * sk_buff in the next buffer to be chained and return true indicating
1407 * that this is in fact a non-EOP buffer.
1408 **/
1409static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring,
1410 union ixgbe_adv_rx_desc *rx_desc,
1411 struct sk_buff *skb)
1412{
1413 u32 ntc = rx_ring->next_to_clean + 1;
1414
1415 /* fetch, update, and store next to clean */
1416 ntc = (ntc < rx_ring->count) ? ntc : 0;
1417 rx_ring->next_to_clean = ntc;
1418
1419 prefetch(IXGBE_RX_DESC(rx_ring, ntc));
1420
Alexander Duyck5a02cbd2012-07-20 08:08:51 +00001421 /* update RSC append count if present */
1422 if (ring_is_rsc_enabled(rx_ring)) {
1423 __le32 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1424 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1425
1426 if (unlikely(rsc_enabled)) {
1427 u32 rsc_cnt = le32_to_cpu(rsc_enabled);
1428
1429 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1430 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
1431
1432 /* update ntc based on RSC value */
1433 ntc = le32_to_cpu(rx_desc->wb.upper.status_error);
1434 ntc &= IXGBE_RXDADV_NEXTP_MASK;
1435 ntc >>= IXGBE_RXDADV_NEXTP_SHIFT;
1436 }
1437 }
1438
1439 /* if we are the last buffer then there is nothing else to do */
Alexander Duyckf8003262012-03-03 02:35:52 +00001440 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1441 return false;
1442
Alexander Duyckf8003262012-03-03 02:35:52 +00001443 /* place skb in next buffer to be received */
1444 rx_ring->rx_buffer_info[ntc].skb = skb;
1445 rx_ring->rx_stats.non_eop_descs++;
1446
1447 return true;
1448}
1449
1450/**
Alexander Duyck19861ce2012-07-20 08:08:33 +00001451 * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail
1452 * @rx_ring: rx descriptor ring packet is being transacted on
1453 * @skb: pointer to current skb being adjusted
1454 *
1455 * This function is an ixgbe specific version of __pskb_pull_tail. The
1456 * main difference between this version and the original function is that
1457 * this function can make several assumptions about the state of things
1458 * that allow for significant optimizations versus the standard function.
1459 * As a result we can do things like drop a frag and maintain an accurate
1460 * truesize for the skb.
1461 */
1462static void ixgbe_pull_tail(struct ixgbe_ring *rx_ring,
1463 struct sk_buff *skb)
1464{
1465 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1466 unsigned char *va;
1467 unsigned int pull_len;
1468
1469 /*
1470 * it is valid to use page_address instead of kmap since we are
1471 * working with pages allocated out of the lomem pool per
1472 * alloc_page(GFP_ATOMIC)
1473 */
1474 va = skb_frag_address(frag);
1475
1476 /*
1477 * we need the header to contain the greater of either ETH_HLEN or
1478 * 60 bytes if the skb->len is less than 60 for skb_pad.
1479 */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001480 pull_len = ixgbe_get_headlen(va, IXGBE_RX_HDR_SIZE);
Alexander Duyck19861ce2012-07-20 08:08:33 +00001481
1482 /* align pull length to size of long to optimize memcpy performance */
1483 skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
1484
1485 /* update all of the pointers */
1486 skb_frag_size_sub(frag, pull_len);
1487 frag->page_offset += pull_len;
1488 skb->data_len -= pull_len;
1489 skb->tail += pull_len;
Alexander Duyck19861ce2012-07-20 08:08:33 +00001490}
1491
1492/**
Alexander Duyck42073d92012-07-20 08:08:28 +00001493 * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB
1494 * @rx_ring: rx descriptor ring packet is being transacted on
1495 * @skb: pointer to current skb being updated
1496 *
1497 * This function provides a basic DMA sync up for the first fragment of an
1498 * skb. The reason for doing this is that the first fragment cannot be
1499 * unmapped until we have reached the end of packet descriptor for a buffer
1500 * chain.
1501 */
1502static void ixgbe_dma_sync_frag(struct ixgbe_ring *rx_ring,
1503 struct sk_buff *skb)
1504{
1505 /* if the page was released unmap it, else just sync our portion */
1506 if (unlikely(IXGBE_CB(skb)->page_released)) {
1507 dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma,
1508 ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE);
1509 IXGBE_CB(skb)->page_released = false;
1510 } else {
1511 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
1512
1513 dma_sync_single_range_for_cpu(rx_ring->dev,
1514 IXGBE_CB(skb)->dma,
1515 frag->page_offset,
1516 ixgbe_rx_bufsz(rx_ring),
1517 DMA_FROM_DEVICE);
1518 }
1519 IXGBE_CB(skb)->dma = 0;
1520}
1521
1522/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001523 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1524 * @rx_ring: rx descriptor ring packet is being transacted on
1525 * @rx_desc: pointer to the EOP Rx descriptor
1526 * @skb: pointer to current skb being fixed
1527 *
1528 * Check for corrupted packet headers caused by senders on the local L2
1529 * embedded NIC switch not setting up their Tx Descriptors right. These
1530 * should be very rare.
1531 *
1532 * Also address the case where we are pulling data in on pages only
1533 * and as such no data is present in the skb header.
1534 *
1535 * In addition if skb is not at least 60 bytes we need to pad it so that
1536 * it is large enough to qualify as a valid Ethernet frame.
1537 *
1538 * Returns true if an error was encountered and skb was freed.
1539 **/
1540static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring,
1541 union ixgbe_adv_rx_desc *rx_desc,
1542 struct sk_buff *skb)
1543{
Alexander Duyckf8003262012-03-03 02:35:52 +00001544 struct net_device *netdev = rx_ring->netdev;
Alexander Duyckf8003262012-03-03 02:35:52 +00001545
1546 /* verify that the packet does not have any known errors */
1547 if (unlikely(ixgbe_test_staterr(rx_desc,
1548 IXGBE_RXDADV_ERR_FRAME_ERR_MASK) &&
1549 !(netdev->features & NETIF_F_RXALL))) {
1550 dev_kfree_skb_any(skb);
1551 return true;
1552 }
1553
Alexander Duyck19861ce2012-07-20 08:08:33 +00001554 /* place header in linear portion of buffer */
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001555 if (skb_is_nonlinear(skb))
1556 ixgbe_pull_tail(rx_ring, skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001557
Alexander Duyck57efd442012-06-25 21:54:46 +00001558#ifdef IXGBE_FCOE
1559 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1560 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc))
1561 return false;
1562
1563#endif
Alexander Duyckf8003262012-03-03 02:35:52 +00001564 /* if skb_pad returns an error the skb was freed */
1565 if (unlikely(skb->len < 60)) {
1566 int pad_len = 60 - skb->len;
1567
1568 if (skb_pad(skb, pad_len))
1569 return true;
1570 __skb_put(skb, pad_len);
1571 }
1572
1573 return false;
1574}
1575
1576/**
Alexander Duyckf8003262012-03-03 02:35:52 +00001577 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1578 * @rx_ring: rx descriptor ring to store buffers on
1579 * @old_buff: donor buffer to have page reused
1580 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001581 * Synchronizes page for reuse by the adapter
Alexander Duyckf8003262012-03-03 02:35:52 +00001582 **/
1583static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring,
1584 struct ixgbe_rx_buffer *old_buff)
1585{
1586 struct ixgbe_rx_buffer *new_buff;
1587 u16 nta = rx_ring->next_to_alloc;
Alexander Duyckf8003262012-03-03 02:35:52 +00001588
1589 new_buff = &rx_ring->rx_buffer_info[nta];
1590
1591 /* update, and store next to alloc */
1592 nta++;
1593 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1594
1595 /* transfer page from old buffer to new buffer */
1596 new_buff->page = old_buff->page;
1597 new_buff->dma = old_buff->dma;
Alexander Duyck0549ae22012-07-20 08:08:18 +00001598 new_buff->page_offset = old_buff->page_offset;
Alexander Duyckf8003262012-03-03 02:35:52 +00001599
1600 /* sync the buffer for use by the device */
1601 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001602 new_buff->page_offset,
1603 ixgbe_rx_bufsz(rx_ring),
Alexander Duyckf8003262012-03-03 02:35:52 +00001604 DMA_FROM_DEVICE);
Alexander Duyckf8003262012-03-03 02:35:52 +00001605}
1606
1607/**
1608 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1609 * @rx_ring: rx descriptor ring to transact packets on
1610 * @rx_buffer: buffer containing page to add
1611 * @rx_desc: descriptor containing length of buffer written by hardware
1612 * @skb: sk_buff to place the data into
1613 *
Alexander Duyck0549ae22012-07-20 08:08:18 +00001614 * This function will add the data contained in rx_buffer->page to the skb.
1615 * This is done either through a direct copy if the data in the buffer is
1616 * less than the skb header size, otherwise it will just attach the page as
1617 * a frag to the skb.
1618 *
1619 * The function will then update the page offset if necessary and return
1620 * true if the buffer can be reused by the adapter.
Alexander Duyckf8003262012-03-03 02:35:52 +00001621 **/
Alexander Duyck0549ae22012-07-20 08:08:18 +00001622static bool ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring,
Alexander Duyckf8003262012-03-03 02:35:52 +00001623 struct ixgbe_rx_buffer *rx_buffer,
Alexander Duyck0549ae22012-07-20 08:08:18 +00001624 union ixgbe_adv_rx_desc *rx_desc,
1625 struct sk_buff *skb)
Alexander Duyckf8003262012-03-03 02:35:52 +00001626{
Alexander Duyck0549ae22012-07-20 08:08:18 +00001627 struct page *page = rx_buffer->page;
1628 unsigned int size = le16_to_cpu(rx_desc->wb.upper.length);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001629#if (PAGE_SIZE < 8192)
Alexander Duyck0549ae22012-07-20 08:08:18 +00001630 unsigned int truesize = ixgbe_rx_bufsz(rx_ring);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001631#else
1632 unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
1633 unsigned int last_offset = ixgbe_rx_pg_size(rx_ring) -
1634 ixgbe_rx_bufsz(rx_ring);
1635#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001636
Alexander Duyckcf3fe7a2012-07-20 08:08:39 +00001637 if ((size <= IXGBE_RX_HDR_SIZE) && !skb_is_nonlinear(skb)) {
1638 unsigned char *va = page_address(page) + rx_buffer->page_offset;
1639
1640 memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long)));
1641
1642 /* we can reuse buffer as-is, just make sure it is local */
1643 if (likely(page_to_nid(page) == numa_node_id()))
1644 return true;
1645
1646 /* this page cannot be reused so discard it */
1647 put_page(page);
1648 return false;
1649 }
1650
Alexander Duyck0549ae22012-07-20 08:08:18 +00001651 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
1652 rx_buffer->page_offset, size, truesize);
1653
Alexander Duyck09816fb2012-07-20 08:08:23 +00001654 /* avoid re-using remote pages */
1655 if (unlikely(page_to_nid(page) != numa_node_id()))
1656 return false;
1657
1658#if (PAGE_SIZE < 8192)
1659 /* if we are only owner of page we can reuse it */
1660 if (unlikely(page_count(page) != 1))
Alexander Duyck0549ae22012-07-20 08:08:18 +00001661 return false;
1662
1663 /* flip page offset to other buffer */
1664 rx_buffer->page_offset ^= truesize;
1665
Alexander Duyck09816fb2012-07-20 08:08:23 +00001666 /*
1667 * since we are the only owner of the page and we need to
1668 * increment it, just set the value to 2 in order to avoid
1669 * an unecessary locked operation
1670 */
1671 atomic_set(&page->_count, 2);
1672#else
1673 /* move offset up to the next cache line */
1674 rx_buffer->page_offset += truesize;
1675
1676 if (rx_buffer->page_offset > last_offset)
1677 return false;
1678
Alexander Duyck0549ae22012-07-20 08:08:18 +00001679 /* bump ref count on page before it is given to the stack */
1680 get_page(page);
Alexander Duyck09816fb2012-07-20 08:08:23 +00001681#endif
Alexander Duyck0549ae22012-07-20 08:08:18 +00001682
1683 return true;
Alexander Duyckf8003262012-03-03 02:35:52 +00001684}
1685
Alexander Duyck18806c92012-07-20 08:08:44 +00001686static struct sk_buff *ixgbe_fetch_rx_buffer(struct ixgbe_ring *rx_ring,
1687 union ixgbe_adv_rx_desc *rx_desc)
1688{
1689 struct ixgbe_rx_buffer *rx_buffer;
1690 struct sk_buff *skb;
1691 struct page *page;
1692
1693 rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];
1694 page = rx_buffer->page;
1695 prefetchw(page);
1696
1697 skb = rx_buffer->skb;
1698
1699 if (likely(!skb)) {
1700 void *page_addr = page_address(page) +
1701 rx_buffer->page_offset;
1702
1703 /* prefetch first cache line of first page */
1704 prefetch(page_addr);
1705#if L1_CACHE_BYTES < 128
1706 prefetch(page_addr + L1_CACHE_BYTES);
1707#endif
1708
1709 /* allocate a skb to store the frags */
1710 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1711 IXGBE_RX_HDR_SIZE);
1712 if (unlikely(!skb)) {
1713 rx_ring->rx_stats.alloc_rx_buff_failed++;
1714 return NULL;
1715 }
1716
1717 /*
1718 * we will be copying header into skb->data in
1719 * pskb_may_pull so it is in our interest to prefetch
1720 * it now to avoid a possible cache miss
1721 */
1722 prefetchw(skb->data);
1723
1724 /*
1725 * Delay unmapping of the first packet. It carries the
1726 * header information, HW may still access the header
1727 * after the writeback. Only unmap it when EOP is
1728 * reached
1729 */
1730 if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
1731 goto dma_sync;
1732
1733 IXGBE_CB(skb)->dma = rx_buffer->dma;
1734 } else {
1735 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))
1736 ixgbe_dma_sync_frag(rx_ring, skb);
1737
1738dma_sync:
1739 /* we are reusing so sync this buffer for CPU use */
1740 dma_sync_single_range_for_cpu(rx_ring->dev,
1741 rx_buffer->dma,
1742 rx_buffer->page_offset,
1743 ixgbe_rx_bufsz(rx_ring),
1744 DMA_FROM_DEVICE);
1745 }
1746
1747 /* pull page into skb */
1748 if (ixgbe_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
1749 /* hand second half of page back to the ring */
1750 ixgbe_reuse_rx_page(rx_ring, rx_buffer);
1751 } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) {
1752 /* the page has been released from the ring */
1753 IXGBE_CB(skb)->page_released = true;
1754 } else {
1755 /* we are not reusing the buffer so unmap it */
1756 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
1757 ixgbe_rx_pg_size(rx_ring),
1758 DMA_FROM_DEVICE);
1759 }
1760
1761 /* clear contents of buffer_info */
1762 rx_buffer->skb = NULL;
1763 rx_buffer->dma = 0;
1764 rx_buffer->page = NULL;
1765
1766 return skb;
Alexander Duyckf8003262012-03-03 02:35:52 +00001767}
1768
1769/**
1770 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
1771 * @q_vector: structure containing interrupt and ring information
1772 * @rx_ring: rx descriptor ring to transact packets on
1773 * @budget: Total limit on number of packets to process
1774 *
1775 * This function provides a "bounce buffer" approach to Rx interrupt
1776 * processing. The advantage to this is that on systems that have
1777 * expensive overhead for IOMMU access this provides a means of avoiding
1778 * it by maintaining the mapping of the page to the syste.
1779 *
1780 * Returns true if all work is completed without reaching budget
1781 **/
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001782static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001783 struct ixgbe_ring *rx_ring,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001784 int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001785{
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001786 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Ben Greear3f2d1c02012-03-08 08:28:41 +00001787#ifdef IXGBE_FCOE
Alexander Duyckf8003262012-03-03 02:35:52 +00001788 struct ixgbe_adapter *adapter = q_vector->adapter;
Mark Rustad4ffdf912012-07-18 06:05:50 +00001789 int ddp_bytes;
1790 unsigned int mss = 0;
Yi Zou3d8fd382009-06-08 14:38:44 +00001791#endif /* IXGBE_FCOE */
Alexander Duyckf8003262012-03-03 02:35:52 +00001792 u16 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001793
Alexander Duyckf8003262012-03-03 02:35:52 +00001794 do {
Alexander Duyckf8003262012-03-03 02:35:52 +00001795 union ixgbe_adv_rx_desc *rx_desc;
1796 struct sk_buff *skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001797
Alexander Duyckf8003262012-03-03 02:35:52 +00001798 /* return some buffers to hardware, one at a time is too slow */
1799 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
1800 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1801 cleaned_count = 0;
1802 }
Auke Kok9a799d72007-09-15 14:07:45 -07001803
Alexander Duyck18806c92012-07-20 08:08:44 +00001804 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ring->next_to_clean);
Auke Kok9a799d72007-09-15 14:07:45 -07001805
Alexander Duyckf8003262012-03-03 02:35:52 +00001806 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD))
1807 break;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001808
Alexander Duyckf8003262012-03-03 02:35:52 +00001809 /*
1810 * This memory barrier is needed to keep us from reading
1811 * any other fields out of the rx_desc until we know the
1812 * RXD_STAT_DD bit is set
1813 */
1814 rmb();
Auke Kok9a799d72007-09-15 14:07:45 -07001815
Alexander Duyck18806c92012-07-20 08:08:44 +00001816 /* retrieve a buffer from the ring */
1817 skb = ixgbe_fetch_rx_buffer(rx_ring, rx_desc);
Alexander Duyckf8003262012-03-03 02:35:52 +00001818
Alexander Duyck18806c92012-07-20 08:08:44 +00001819 /* exit if we failed to retrieve a buffer */
1820 if (!skb)
1821 break;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001822
Auke Kok9a799d72007-09-15 14:07:45 -07001823 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001824
Alexander Duyckf8003262012-03-03 02:35:52 +00001825 /* place incomplete frames back on ring for completion */
1826 if (ixgbe_is_non_eop(rx_ring, rx_desc, skb))
1827 continue;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001828
Alexander Duyckf8003262012-03-03 02:35:52 +00001829 /* verify the packet layout is correct */
1830 if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb))
1831 continue;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001832
1833 /* probably a little skewed due to removing CRC */
1834 total_rx_bytes += skb->len;
1835 total_rx_packets++;
1836
Alexander Duyck8a0da212012-01-31 02:59:49 +00001837 /* populate checksum, timestamp, VLAN, and protocol */
1838 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
1839
Yi Zou332d4a72009-05-13 13:11:53 +00001840#ifdef IXGBE_FCOE
1841 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyck57efd442012-06-25 21:54:46 +00001842 if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001843 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
Mark Rustad4ffdf912012-07-18 06:05:50 +00001844 /* include DDPed FCoE data */
1845 if (ddp_bytes > 0) {
1846 if (!mss) {
1847 mss = rx_ring->netdev->mtu -
1848 sizeof(struct fcoe_hdr) -
1849 sizeof(struct fc_frame_header) -
1850 sizeof(struct fcoe_crc_eof);
1851 if (mss > 512)
1852 mss &= ~511;
1853 }
1854 total_rx_bytes += ddp_bytes;
1855 total_rx_packets += DIV_ROUND_UP(ddp_bytes,
1856 mss);
1857 }
David S. Miller823dcd22011-08-20 10:39:12 -07001858 if (!ddp_bytes) {
1859 dev_kfree_skb_any(skb);
Alexander Duyckf8003262012-03-03 02:35:52 +00001860 continue;
David S. Miller823dcd22011-08-20 10:39:12 -07001861 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001862 }
Alexander Duyckf8003262012-03-03 02:35:52 +00001863
Yi Zou332d4a72009-05-13 13:11:53 +00001864#endif /* IXGBE_FCOE */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001865 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001866
Alexander Duyckf8003262012-03-03 02:35:52 +00001867 /* update budget accounting */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001868 budget--;
Alexander Duyckf8003262012-03-03 02:35:52 +00001869 } while (likely(budget));
Auke Kok9a799d72007-09-15 14:07:45 -07001870
Alexander Duyckc267fc12010-11-16 19:27:00 -08001871 u64_stats_update_begin(&rx_ring->syncp);
1872 rx_ring->stats.packets += total_rx_packets;
1873 rx_ring->stats.bytes += total_rx_bytes;
1874 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001875 q_vector->rx.total_packets += total_rx_packets;
1876 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001877
Alexander Duyckf8003262012-03-03 02:35:52 +00001878 if (cleaned_count)
1879 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
1880
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001881 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001882}
1883
Auke Kok9a799d72007-09-15 14:07:45 -07001884/**
1885 * ixgbe_configure_msix - Configure MSI-X hardware
1886 * @adapter: board private structure
1887 *
1888 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1889 * interrupts.
1890 **/
1891static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1892{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001893 struct ixgbe_q_vector *q_vector;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001894 int v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001895 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001896
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00001897 /* Populate MSIX to EITR Select */
1898 if (adapter->num_vfs > 32) {
1899 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
1900 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
1901 }
1902
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001903 /*
1904 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001905 * corresponding register.
1906 */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00001907 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001908 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001909 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001910
Alexander Duycka5579282012-02-08 07:50:04 +00001911 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001912 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001913
Alexander Duycka5579282012-02-08 07:50:04 +00001914 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001915 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001916
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001917 if (q_vector->tx.ring && !q_vector->rx.ring) {
1918 /* tx only vector */
1919 if (adapter->tx_itr_setting == 1)
1920 q_vector->itr = IXGBE_10K_ITR;
1921 else
1922 q_vector->itr = adapter->tx_itr_setting;
1923 } else {
1924 /* rx or rx/tx vector */
1925 if (adapter->rx_itr_setting == 1)
1926 q_vector->itr = IXGBE_20K_ITR;
1927 else
1928 q_vector->itr = adapter->rx_itr_setting;
1929 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001930
Alexander Duyckfe49f042009-06-04 16:00:09 +00001931 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001932 }
1933
Alexander Duyckbd508172010-11-16 19:27:03 -08001934 switch (adapter->hw.mac.type) {
1935 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001936 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001937 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001938 break;
1939 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001940 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001941 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001942 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08001943 default:
1944 break;
1945 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001946 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001947
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001948 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001949 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001950 mask &= ~(IXGBE_EIMS_OTHER |
1951 IXGBE_EIMS_MAILBOX |
1952 IXGBE_EIMS_LSC);
1953
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001954 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001955}
1956
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001957enum latency_range {
1958 lowest_latency = 0,
1959 low_latency = 1,
1960 bulk_latency = 2,
1961 latency_invalid = 255
1962};
1963
1964/**
1965 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00001966 * @q_vector: structure containing interrupt and ring information
1967 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001968 *
1969 * Stores a new ITR value based on packets and byte
1970 * counts during the last interrupt. The advantage of per interrupt
1971 * computation is faster updates and more accurate ITR for the current
1972 * traffic pattern. Constants in this function were computed
1973 * based on theoretical maximum wire speed and thresholds were set based
1974 * on testing data as well as attempting to minimize response time
1975 * while increasing bulk throughput.
1976 * this functionality is controlled by the InterruptThrottleRate module
1977 * parameter (see ixgbe_param.c)
1978 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00001979static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
1980 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001981{
Alexander Duyckbd198052011-06-11 01:45:08 +00001982 int bytes = ring_container->total_bytes;
1983 int packets = ring_container->total_packets;
1984 u32 timepassed_us;
Alexander Duyck621bd702012-02-08 07:50:20 +00001985 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00001986 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001987
1988 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00001989 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001990
1991 /* simple throttlerate management
Alexander Duyck621bd702012-02-08 07:50:20 +00001992 * 0-10MB/s lowest (100000 ints/s)
1993 * 10-20MB/s low (20000 ints/s)
1994 * 20-1249MB/s bulk (8000 ints/s)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001995 */
1996 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001997 timepassed_us = q_vector->itr >> 2;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001998 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1999
2000 switch (itr_setting) {
2001 case lowest_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002002 if (bytes_perint > 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002003 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002004 break;
2005 case low_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002006 if (bytes_perint > 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002007 itr_setting = bulk_latency;
Alexander Duyck621bd702012-02-08 07:50:20 +00002008 else if (bytes_perint <= 10)
Alexander Duyckbd198052011-06-11 01:45:08 +00002009 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002010 break;
2011 case bulk_latency:
Alexander Duyck621bd702012-02-08 07:50:20 +00002012 if (bytes_perint <= 20)
Alexander Duyckbd198052011-06-11 01:45:08 +00002013 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002014 break;
2015 }
2016
Alexander Duyckbd198052011-06-11 01:45:08 +00002017 /* clear work counters since we have the values we need */
2018 ring_container->total_bytes = 0;
2019 ring_container->total_packets = 0;
2020
2021 /* write updated itr to ring container */
2022 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002023}
2024
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002025/**
2026 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00002027 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002028 *
2029 * This function is made to be called by ethtool and by the driver
2030 * when it needs to update EITR registers at runtime. Hardware
2031 * specific quirks/differences are taken care of here.
2032 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00002033void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002034{
Alexander Duyckfe49f042009-06-04 16:00:09 +00002035 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002036 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002037 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002038 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002039
Alexander Duyckbd508172010-11-16 19:27:03 -08002040 switch (adapter->hw.mac.type) {
2041 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002042 /* must write high and low 16 bits to reset counter */
2043 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08002044 break;
2045 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002046 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002047 /*
2048 * set the WDIS bit to not clear the timer bits and cause an
2049 * immediate assertion of the interrupt
2050 */
2051 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08002052 break;
2053 default:
2054 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002055 }
2056 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
2057}
2058
Alexander Duyckbd198052011-06-11 01:45:08 +00002059static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002060{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002061 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00002062 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002063
Alexander Duyckbd198052011-06-11 01:45:08 +00002064 ixgbe_update_itr(q_vector, &q_vector->tx);
2065 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002066
Alexander Duyck08c88332011-06-11 01:45:03 +00002067 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002068
2069 switch (current_itr) {
2070 /* counts and packets in update_itr are dependent on these numbers */
2071 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002072 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002073 break;
2074 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002075 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002076 break;
2077 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002078 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002079 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00002080 default:
2081 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002082 }
2083
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002084 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002085 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002086 new_itr = (10 * new_itr * q_vector->itr) /
2087 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002088
Alexander Duyckbd198052011-06-11 01:45:08 +00002089 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00002090 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002091
2092 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002093 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002094}
2095
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002096/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00002097 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00002098 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002099 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00002100static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002101{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002102 struct ixgbe_hw *hw = &adapter->hw;
2103 u32 eicr = adapter->interrupt_event;
2104
Alexander Duyckf0f97782011-04-22 04:08:09 +00002105 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00002106 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002107
Alexander Duyckf0f97782011-04-22 04:08:09 +00002108 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2109 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
2110 return;
2111
2112 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2113
Joe Perches7ca647b2010-09-07 21:35:40 +00002114 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002115 case IXGBE_DEV_ID_82599_T3_LOM:
2116 /*
2117 * Since the warning interrupt is for both ports
2118 * we don't have to check if:
2119 * - This interrupt wasn't for our port.
2120 * - We may have missed the interrupt so always have to
2121 * check if we got a LSC
2122 */
2123 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
2124 !(eicr & IXGBE_EICR_LSC))
2125 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002126
Alexander Duyckf0f97782011-04-22 04:08:09 +00002127 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
2128 u32 autoneg;
2129 bool link_up = false;
2130
Joe Perches7ca647b2010-09-07 21:35:40 +00002131 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
2132
Alexander Duyckf0f97782011-04-22 04:08:09 +00002133 if (link_up)
2134 return;
2135 }
2136
2137 /* Check if this is not due to overtemp */
2138 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
2139 return;
2140
2141 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00002142 default:
2143 if (!(eicr & IXGBE_EICR_GPI_SDP0))
2144 return;
2145 break;
2146 }
2147 e_crit(drv,
2148 "Network adapter has been stopped because it has over heated. "
2149 "Restart the computer. If the problem persists, "
2150 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00002151
2152 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002153}
2154
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002155static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
2156{
2157 struct ixgbe_hw *hw = &adapter->hw;
2158
2159 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
2160 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002161 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002162 /* write to clear the interrupt */
2163 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
2164 }
2165}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002166
Jacob Keller4f51bf72011-08-20 04:49:45 +00002167static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
2168{
2169 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
2170 return;
2171
2172 switch (adapter->hw.mac.type) {
2173 case ixgbe_mac_82599EB:
2174 /*
2175 * Need to check link state so complete overtemp check
2176 * on service task
2177 */
2178 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
2179 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
2180 adapter->interrupt_event = eicr;
2181 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2182 ixgbe_service_event_schedule(adapter);
2183 return;
2184 }
2185 return;
2186 case ixgbe_mac_X540:
2187 if (!(eicr & IXGBE_EICR_TS))
2188 return;
2189 break;
2190 default:
2191 return;
2192 }
2193
2194 e_crit(drv,
2195 "Network adapter has been stopped because it has over heated. "
2196 "Restart the computer. If the problem persists, "
2197 "power off the system and replace the adapter\n");
2198}
2199
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002200static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2201{
2202 struct ixgbe_hw *hw = &adapter->hw;
2203
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002204 if (eicr & IXGBE_EICR_GPI_SDP2) {
2205 /* Clear the interrupt */
2206 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002207 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2208 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2209 ixgbe_service_event_schedule(adapter);
2210 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002211 }
2212
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002213 if (eicr & IXGBE_EICR_GPI_SDP1) {
2214 /* Clear the interrupt */
2215 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002216 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2217 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2218 ixgbe_service_event_schedule(adapter);
2219 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002220 }
2221}
2222
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002223static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2224{
2225 struct ixgbe_hw *hw = &adapter->hw;
2226
2227 adapter->lsc_int++;
2228 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2229 adapter->link_check_timeout = jiffies;
2230 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2231 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002232 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002233 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002234 }
2235}
2236
Alexander Duyckfe49f042009-06-04 16:00:09 +00002237static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2238 u64 qmask)
2239{
2240 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002241 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002242
Alexander Duyckbd508172010-11-16 19:27:03 -08002243 switch (hw->mac.type) {
2244 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002245 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002246 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2247 break;
2248 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002249 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002250 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002251 if (mask)
2252 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002253 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002254 if (mask)
2255 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2256 break;
2257 default:
2258 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002259 }
2260 /* skip the flush */
2261}
2262
2263static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002264 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002265{
2266 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002267 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002268
Alexander Duyckbd508172010-11-16 19:27:03 -08002269 switch (hw->mac.type) {
2270 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002271 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002272 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2273 break;
2274 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002275 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002276 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002277 if (mask)
2278 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002279 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002280 if (mask)
2281 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2282 break;
2283 default:
2284 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002285 }
2286 /* skip the flush */
2287}
2288
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002289/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002290 * ixgbe_irq_enable - Enable default interrupt generation settings
2291 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002292 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002293static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2294 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002295{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002296 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002297
Alexander Duyck2c4af692011-07-15 07:29:55 +00002298 /* don't reenable LSC while waiting for link */
2299 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2300 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002301
Alexander Duyck2c4af692011-07-15 07:29:55 +00002302 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002303 switch (adapter->hw.mac.type) {
2304 case ixgbe_mac_82599EB:
2305 mask |= IXGBE_EIMS_GPI_SDP0;
2306 break;
2307 case ixgbe_mac_X540:
2308 mask |= IXGBE_EIMS_TS;
2309 break;
2310 default:
2311 break;
2312 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002313 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2314 mask |= IXGBE_EIMS_GPI_SDP1;
2315 switch (adapter->hw.mac.type) {
2316 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002317 mask |= IXGBE_EIMS_GPI_SDP1;
2318 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002319 case ixgbe_mac_X540:
2320 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002321 mask |= IXGBE_EIMS_MAILBOX;
2322 break;
2323 default:
2324 break;
2325 }
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002326
2327#ifdef CONFIG_IXGBE_PTP
2328 if (adapter->hw.mac.type == ixgbe_mac_X540)
2329 mask |= IXGBE_EIMS_TIMESYNC;
2330#endif
2331
Alexander Duyck2c4af692011-07-15 07:29:55 +00002332 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2333 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2334 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002335
Alexander Duyck2c4af692011-07-15 07:29:55 +00002336 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2337 if (queues)
2338 ixgbe_irq_enable_queues(adapter, ~0);
2339 if (flush)
2340 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002341}
2342
Alexander Duyck2c4af692011-07-15 07:29:55 +00002343static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002344{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002345 struct ixgbe_adapter *adapter = data;
2346 struct ixgbe_hw *hw = &adapter->hw;
2347 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002348
Alexander Duyck2c4af692011-07-15 07:29:55 +00002349 /*
2350 * Workaround for Silicon errata. Use clear-by-write instead
2351 * of clear-by-read. Reading with EICS will return the
2352 * interrupt causes without clearing, which later be done
2353 * with the write to EICR.
2354 */
2355 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
2356 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002357
Alexander Duyck2c4af692011-07-15 07:29:55 +00002358 if (eicr & IXGBE_EICR_LSC)
2359 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002360
Alexander Duyck2c4af692011-07-15 07:29:55 +00002361 if (eicr & IXGBE_EICR_MAILBOX)
2362 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002363
Alexander Duyck2c4af692011-07-15 07:29:55 +00002364 switch (hw->mac.type) {
2365 case ixgbe_mac_82599EB:
2366 case ixgbe_mac_X540:
2367 if (eicr & IXGBE_EICR_ECC)
2368 e_info(link, "Received unrecoverable ECC Err, please "
2369 "reboot\n");
2370 /* Handle Flow Director Full threshold interrupt */
2371 if (eicr & IXGBE_EICR_FLOW_DIR) {
2372 int reinit_count = 0;
2373 int i;
2374 for (i = 0; i < adapter->num_tx_queues; i++) {
2375 struct ixgbe_ring *ring = adapter->tx_ring[i];
2376 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2377 &ring->state))
2378 reinit_count++;
2379 }
2380 if (reinit_count) {
2381 /* no more flow director interrupts until after init */
2382 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2383 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2384 ixgbe_service_event_schedule(adapter);
2385 }
2386 }
2387 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002388 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002389 break;
2390 default:
2391 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002392 }
2393
Alexander Duyck2c4af692011-07-15 07:29:55 +00002394 ixgbe_check_fan_failure(adapter, eicr);
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002395
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002396#ifdef CONFIG_IXGBE_PTP
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002397 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
2398 ixgbe_ptp_check_pps_event(adapter, eicr);
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002399#endif
Auke Kok9a799d72007-09-15 14:07:45 -07002400
Alexander Duyck2c4af692011-07-15 07:29:55 +00002401 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002402 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002403 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002404
Alexander Duyck2c4af692011-07-15 07:29:55 +00002405 return IRQ_HANDLED;
2406}
2407
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002408static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002409{
2410 struct ixgbe_q_vector *q_vector = data;
2411
Auke Kok9a799d72007-09-15 14:07:45 -07002412 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002413
2414 if (q_vector->rx.ring || q_vector->tx.ring)
2415 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002416
2417 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002418}
2419
Auke Kok9a799d72007-09-15 14:07:45 -07002420/**
Alexander Duyckeb01b972012-02-08 07:51:27 +00002421 * ixgbe_poll - NAPI Rx polling callback
2422 * @napi: structure for representing this polling device
2423 * @budget: how many packets driver is allowed to clean
2424 *
2425 * This function is used for legacy and MSI, NAPI mode
2426 **/
Jeff Kirsher8af3c332012-02-18 07:08:14 +00002427int ixgbe_poll(struct napi_struct *napi, int budget)
Alexander Duyckeb01b972012-02-08 07:51:27 +00002428{
2429 struct ixgbe_q_vector *q_vector =
2430 container_of(napi, struct ixgbe_q_vector, napi);
2431 struct ixgbe_adapter *adapter = q_vector->adapter;
2432 struct ixgbe_ring *ring;
2433 int per_ring_budget;
2434 bool clean_complete = true;
2435
2436#ifdef CONFIG_IXGBE_DCA
2437 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2438 ixgbe_update_dca(q_vector);
2439#endif
2440
2441 ixgbe_for_each_ring(ring, q_vector->tx)
2442 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
2443
2444 /* attempt to distribute budget to each queue fairly, but don't allow
2445 * the budget to go below 1 because we'll exit polling */
2446 if (q_vector->rx.count > 1)
2447 per_ring_budget = max(budget/q_vector->rx.count, 1);
2448 else
2449 per_ring_budget = budget;
2450
2451 ixgbe_for_each_ring(ring, q_vector->rx)
2452 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
2453 per_ring_budget);
2454
2455 /* If all work not completed, return budget and keep polling */
2456 if (!clean_complete)
2457 return budget;
2458
2459 /* all work done, exit the polling mode */
2460 napi_complete(napi);
2461 if (adapter->rx_itr_setting & 1)
2462 ixgbe_set_itr(q_vector);
2463 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2464 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
2465
2466 return 0;
2467}
2468
2469/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002470 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2471 * @adapter: board private structure
2472 *
2473 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2474 * interrupts from the kernel.
2475 **/
2476static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2477{
2478 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002479 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002480 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002481
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002482 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002483 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002484 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002485
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002486 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002487 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002488 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002489 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002490 } else if (q_vector->rx.ring) {
2491 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2492 "%s-%s-%d", netdev->name, "rx", ri++);
2493 } else if (q_vector->tx.ring) {
2494 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2495 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002496 } else {
2497 /* skip this unused q_vector */
2498 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002499 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002500 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2501 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002502 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002503 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002504 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002505 goto free_queue_irqs;
2506 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002507 /* If Flow Director is enabled, set interrupt affinity */
2508 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2509 /* assign the mask for this irq */
2510 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002511 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002512 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002513 }
2514
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002515 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002516 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002517 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002518 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002519 goto free_queue_irqs;
2520 }
2521
2522 return 0;
2523
2524free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002525 while (vector) {
2526 vector--;
2527 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2528 NULL);
2529 free_irq(adapter->msix_entries[vector].vector,
2530 adapter->q_vector[vector]);
2531 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002532 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2533 pci_disable_msix(adapter->pdev);
2534 kfree(adapter->msix_entries);
2535 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002536 return err;
2537}
2538
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002539/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002540 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002541 * @irq: interrupt number
2542 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002543 **/
2544static irqreturn_t ixgbe_intr(int irq, void *data)
2545{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002546 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002547 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002548 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002549 u32 eicr;
2550
Don Skidmore54037502009-02-21 15:42:56 -08002551 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002552 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002553 * before the read of EICR.
2554 */
2555 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2556
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002557 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002558 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002559 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002560 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002561 /*
2562 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002563 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002564 * have disabled interrupts due to EIAM
2565 * finish the workaround of silicon errata on 82598. Unmask
2566 * the interrupt that we masked before the EICR read.
2567 */
2568 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2569 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002570 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002571 }
Auke Kok9a799d72007-09-15 14:07:45 -07002572
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002573 if (eicr & IXGBE_EICR_LSC)
2574 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002575
Alexander Duyckbd508172010-11-16 19:27:03 -08002576 switch (hw->mac.type) {
2577 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002578 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002579 /* Fall through */
2580 case ixgbe_mac_X540:
2581 if (eicr & IXGBE_EICR_ECC)
2582 e_info(link, "Received unrecoverable ECC err, please "
2583 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002584 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002585 break;
2586 default:
2587 break;
2588 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002589
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002590 ixgbe_check_fan_failure(adapter, eicr);
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002591#ifdef CONFIG_IXGBE_PTP
Jacob Kellerdb0677f2012-08-24 07:46:54 +00002592 if (unlikely(eicr & IXGBE_EICR_TIMESYNC))
2593 ixgbe_ptp_check_pps_event(adapter, eicr);
Jacob E Keller681ae1a2012-05-01 05:24:41 +00002594#endif
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002595
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00002596 /* would disable interrupts here but EIAM disabled it */
2597 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002598
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002599 /*
2600 * re-enable link(maybe) and non-queue interrupts, no flush.
2601 * ixgbe_poll will re-enable the queue interrupts
2602 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002603 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2604 ixgbe_irq_enable(adapter, false, false);
2605
Auke Kok9a799d72007-09-15 14:07:45 -07002606 return IRQ_HANDLED;
2607}
2608
2609/**
2610 * ixgbe_request_irq - initialize interrupts
2611 * @adapter: board private structure
2612 *
2613 * Attempts to configure interrupts using the best available
2614 * capabilities of the hardware and kernel.
2615 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002616static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002617{
2618 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002619 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002620
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002621 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002622 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002623 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002624 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002625 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002626 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002627 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002628 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002629
Alexander Duyckde88eee2012-02-08 07:49:59 +00002630 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002631 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002632
Auke Kok9a799d72007-09-15 14:07:45 -07002633 return err;
2634}
2635
2636static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2637{
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002638 int vector;
Auke Kok9a799d72007-09-15 14:07:45 -07002639
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002640 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002641 free_irq(adapter->pdev->irq, adapter);
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002642 return;
Auke Kok9a799d72007-09-15 14:07:45 -07002643 }
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002644
2645 for (vector = 0; vector < adapter->num_q_vectors; vector++) {
2646 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
2647 struct msix_entry *entry = &adapter->msix_entries[vector];
2648
2649 /* free only the irqs that were actually requested */
2650 if (!q_vector->rx.ring && !q_vector->tx.ring)
2651 continue;
2652
2653 /* clear the affinity_mask in the IRQ descriptor */
2654 irq_set_affinity_hint(entry->vector, NULL);
2655
2656 free_irq(entry->vector, q_vector);
2657 }
2658
2659 free_irq(adapter->msix_entries[vector++].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002660}
2661
2662/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002663 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2664 * @adapter: board private structure
2665 **/
2666static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2667{
Alexander Duyckbd508172010-11-16 19:27:03 -08002668 switch (adapter->hw.mac.type) {
2669 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002670 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002671 break;
2672 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002673 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002674 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2675 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002676 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002677 break;
2678 default:
2679 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002680 }
2681 IXGBE_WRITE_FLUSH(&adapter->hw);
2682 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002683 int vector;
2684
2685 for (vector = 0; vector < adapter->num_q_vectors; vector++)
2686 synchronize_irq(adapter->msix_entries[vector].vector);
2687
2688 synchronize_irq(adapter->msix_entries[vector++].vector);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002689 } else {
2690 synchronize_irq(adapter->pdev->irq);
2691 }
2692}
2693
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002694/**
Auke Kok9a799d72007-09-15 14:07:45 -07002695 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2696 *
2697 **/
2698static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2699{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002700 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002701
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002702 /* rx/tx vector */
2703 if (adapter->rx_itr_setting == 1)
2704 q_vector->itr = IXGBE_20K_ITR;
2705 else
2706 q_vector->itr = adapter->rx_itr_setting;
2707
2708 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002709
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002710 ixgbe_set_ivar(adapter, 0, 0, 0);
2711 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002712
Emil Tantilov396e7992010-07-01 20:05:12 +00002713 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002714}
2715
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002716/**
2717 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2718 * @adapter: board private structure
2719 * @ring: structure containing ring specific data
2720 *
2721 * Configure the Tx descriptor ring after a reset.
2722 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002723void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2724 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002725{
2726 struct ixgbe_hw *hw = &adapter->hw;
2727 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002728 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002729 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002730 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002731
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002732 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002733 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002734 IXGBE_WRITE_FLUSH(hw);
2735
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002736 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002737 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002738 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2739 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2740 ring->count * sizeof(union ixgbe_adv_tx_desc));
2741 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2742 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002743 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002744
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002745 /*
2746 * set WTHRESH to encourage burst writeback, it should not be set
2747 * higher than 1 when ITR is 0 as it could cause false TX hangs
2748 *
2749 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2750 * to or less than the number of on chip descriptors, which is
2751 * currently 40.
2752 */
Alexander Duycke954b372012-02-08 07:49:38 +00002753 if (!ring->q_vector || (ring->q_vector->itr < 8))
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002754 txdctl |= (1 << 16); /* WTHRESH = 1 */
2755 else
2756 txdctl |= (8 << 16); /* WTHRESH = 8 */
2757
Alexander Duycke954b372012-02-08 07:49:38 +00002758 /*
2759 * Setting PTHRESH to 32 both improves performance
2760 * and avoids a TX hang with DFP enabled
2761 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002762 txdctl |= (1 << 8) | /* HTHRESH = 1 */
2763 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002764
2765 /* reinitialize flowdirector state */
Alexander Duyck39cb6812012-06-06 05:38:20 +00002766 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002767 ring->atr_sample_rate = adapter->atr_sample_rate;
2768 ring->atr_count = 0;
2769 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2770 } else {
2771 ring->atr_sample_rate = 0;
2772 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002773
John Fastabendc84d3242010-11-16 19:27:12 -08002774 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2775
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002776 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002777 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2778
2779 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2780 if (hw->mac.type == ixgbe_mac_82598EB &&
2781 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2782 return;
2783
2784 /* poll to verify queue is enabled */
2785 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002786 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002787 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2788 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2789 if (!wait_loop)
2790 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002791}
2792
Alexander Duyck120ff942010-08-19 13:34:50 +00002793static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2794{
2795 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002796 u32 rttdcs, mtqc;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002797 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002798
2799 if (hw->mac.type == ixgbe_mac_82598EB)
2800 return;
2801
2802 /* disable the arbiter while setting MTQC */
2803 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2804 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2805 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2806
2807 /* set transmit pool layout */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002808 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2809 mtqc = IXGBE_MTQC_VT_ENA;
2810 if (tcs > 4)
2811 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2812 else if (tcs > 1)
2813 mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2814 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
2815 mtqc |= IXGBE_MTQC_32VF;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002816 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002817 mtqc |= IXGBE_MTQC_64VF;
2818 } else {
2819 if (tcs > 4)
2820 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2821 else if (tcs > 1)
2822 mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2823 else
2824 mtqc = IXGBE_MTQC_64Q_1PB;
2825 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00002826
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002827 IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc);
John Fastabend8b1c0b22011-05-03 02:26:48 +00002828
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002829 /* Enable Security TX Buffer IFG for multiple pb */
2830 if (tcs) {
2831 u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2832 sectx |= IXGBE_SECTX_DCB;
2833 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx);
Alexander Duyck120ff942010-08-19 13:34:50 +00002834 }
2835
2836 /* re-enable the arbiter */
2837 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2838 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2839}
2840
Auke Kok9a799d72007-09-15 14:07:45 -07002841/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002842 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002843 * @adapter: board private structure
2844 *
2845 * Configure the Tx unit of the MAC after a reset.
2846 **/
2847static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2848{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002849 struct ixgbe_hw *hw = &adapter->hw;
2850 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002851 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002852
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002853 ixgbe_setup_mtqc(adapter);
2854
2855 if (hw->mac.type != ixgbe_mac_82598EB) {
2856 /* DMATXCTL.EN must be before Tx queues are enabled */
2857 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2858 dmatxctl |= IXGBE_DMATXCTL_TE;
2859 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2860 }
2861
Auke Kok9a799d72007-09-15 14:07:45 -07002862 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002863 for (i = 0; i < adapter->num_tx_queues; i++)
2864 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002865}
2866
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00002867static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
2868 struct ixgbe_ring *ring)
2869{
2870 struct ixgbe_hw *hw = &adapter->hw;
2871 u8 reg_idx = ring->reg_idx;
2872 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2873
2874 srrctl |= IXGBE_SRRCTL_DROP_EN;
2875
2876 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2877}
2878
2879static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
2880 struct ixgbe_ring *ring)
2881{
2882 struct ixgbe_hw *hw = &adapter->hw;
2883 u8 reg_idx = ring->reg_idx;
2884 u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
2885
2886 srrctl &= ~IXGBE_SRRCTL_DROP_EN;
2887
2888 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
2889}
2890
2891#ifdef CONFIG_IXGBE_DCB
2892void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2893#else
2894static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
2895#endif
2896{
2897 int i;
2898 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
2899
2900 if (adapter->ixgbe_ieee_pfc)
2901 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
2902
2903 /*
2904 * We should set the drop enable bit if:
2905 * SR-IOV is enabled
2906 * or
2907 * Number of Rx queues > 1 and flow control is disabled
2908 *
2909 * This allows us to avoid head of line blocking for security
2910 * and performance reasons.
2911 */
2912 if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
2913 !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
2914 for (i = 0; i < adapter->num_rx_queues; i++)
2915 ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
2916 } else {
2917 for (i = 0; i < adapter->num_rx_queues; i++)
2918 ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
2919 }
2920}
2921
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002922#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002923
Yi Zoua6616b42009-08-06 13:05:23 +00002924static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002925 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002926{
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002927 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002928 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002929 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002930
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002931 if (hw->mac.type == ixgbe_mac_82598EB) {
2932 u16 mask = adapter->ring_feature[RING_F_RSS].mask;
2933
2934 /*
2935 * if VMDq is not active we must program one srrctl register
2936 * per RSS queue since we have enabled RDRXCTL.MVMEN
2937 */
2938 reg_idx &= mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002939 }
2940
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002941 /* configure header buffer length, needed for RSC */
2942 srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002943
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002944 /* configure the packet buffer length */
Alexander Duyckf8003262012-03-03 02:35:52 +00002945 srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002946
2947 /* configure descriptor type */
Alexander Duyckf8003262012-03-03 02:35:52 +00002948 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002949
Alexander Duyck45e9baa2012-05-05 05:30:59 +00002950 IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002951}
2952
Alexander Duyck05abb122010-08-19 13:35:41 +00002953static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002954{
Alexander Duyck05abb122010-08-19 13:35:41 +00002955 struct ixgbe_hw *hw = &adapter->hw;
2956 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002957 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2958 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002959 u32 mrqc = 0, reta = 0;
2960 u32 rxcsum;
2961 int i, j;
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002962 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices;
John Fastabend86b4db32011-04-26 07:26:19 +00002963
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002964 /*
2965 * Program table for at least 2 queues w/ SR-IOV so that VFs can
2966 * make full use of any rings they may have. We will use the
2967 * PSRTYPE register to control how many rings we use within the PF.
2968 */
2969 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 2))
2970 rss_i = 2;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002971
Alexander Duyck05abb122010-08-19 13:35:41 +00002972 /* Fill out hash function seeds */
2973 for (i = 0; i < 10; i++)
2974 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002975
Alexander Duyck05abb122010-08-19 13:35:41 +00002976 /* Fill out redirection table */
2977 for (i = 0, j = 0; i < 128; i++, j++) {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002978 if (j == rss_i)
Alexander Duyck05abb122010-08-19 13:35:41 +00002979 j = 0;
2980 /* reta = 4-byte sliding window of
2981 * 0x00..(indices-1)(indices-1)00..etc. */
2982 reta = (reta << 8) | (j * 0x11);
2983 if ((i & 3) == 3)
2984 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2985 }
2986
2987 /* Disable indicating checksum in descriptor, enables RSS hash */
2988 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2989 rxcsum |= IXGBE_RXCSUM_PCSD;
2990 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2991
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002992 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00002993 if (adapter->ring_feature[RING_F_RSS].mask)
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002994 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002995 } else {
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002996 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend8b1c0b22011-05-03 02:26:48 +00002997
Alexander Duyck671c0ad2012-05-18 06:34:02 +00002998 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2999 if (tcs > 4)
3000 mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */
3001 else if (tcs > 1)
3002 mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */
3003 else if (adapter->ring_feature[RING_F_RSS].indices == 4)
3004 mrqc = IXGBE_MRQC_VMDQRSS32EN;
3005 else
3006 mrqc = IXGBE_MRQC_VMDQRSS64EN;
3007 } else {
3008 if (tcs > 4)
3009 mrqc = IXGBE_MRQC_RTRSS8TCEN;
3010 else if (tcs > 1)
John Fastabend8b1c0b22011-05-03 02:26:48 +00003011 mrqc = IXGBE_MRQC_RTRSS4TCEN;
3012 else
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003013 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00003014 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003015 }
3016
Alexander Duyck05abb122010-08-19 13:35:41 +00003017 /* Perform hash on these packet types */
Alexander Duyck671c0ad2012-05-18 06:34:02 +00003018 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4 |
3019 IXGBE_MRQC_RSS_FIELD_IPV4_TCP |
3020 IXGBE_MRQC_RSS_FIELD_IPV6 |
3021 IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
Alexander Duyck05abb122010-08-19 13:35:41 +00003022
Alexander Duyckef6afc02012-02-08 07:51:53 +00003023 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
3024 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
3025 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
3026 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
3027
Alexander Duyck05abb122010-08-19 13:35:41 +00003028 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003029}
3030
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003031/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003032 * ixgbe_configure_rscctl - enable RSC for the indicated ring
3033 * @adapter: address of board private structure
3034 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003035 **/
Don Skidmore082757a2011-07-21 05:55:00 +00003036static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00003037 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003038{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003039 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003040 u32 rscctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003041 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003042
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003043 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00003044 return;
3045
Alexander Duyck73670962010-08-19 13:38:34 +00003046 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003047 rscctrl |= IXGBE_RSCCTL_RSCEN;
3048 /*
3049 * we must limit the number of descriptors so that the
3050 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00003051 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003052 */
Alexander Duyckf8003262012-03-03 02:35:52 +00003053 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck73670962010-08-19 13:38:34 +00003054 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003055}
3056
Alexander Duyck9e10e042010-08-19 13:40:06 +00003057#define IXGBE_MAX_RX_DESC_POLL 10
3058static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3059 struct ixgbe_ring *ring)
3060{
3061 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003062 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3063 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003064 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003065
3066 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3067 if (hw->mac.type == ixgbe_mac_82598EB &&
3068 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3069 return;
3070
3071 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003072 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003073 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3074 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3075
3076 if (!wait_loop) {
3077 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3078 "the polling period\n", reg_idx);
3079 }
3080}
3081
Yi Zou2d39d572011-01-06 14:29:56 +00003082void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3083 struct ixgbe_ring *ring)
3084{
3085 struct ixgbe_hw *hw = &adapter->hw;
3086 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3087 u32 rxdctl;
3088 u8 reg_idx = ring->reg_idx;
3089
3090 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3091 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3092
3093 /* write value back with RXDCTL.ENABLE bit cleared */
3094 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3095
3096 if (hw->mac.type == ixgbe_mac_82598EB &&
3097 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3098 return;
3099
3100 /* the hardware may take up to 100us to really disable the rx queue */
3101 do {
3102 udelay(10);
3103 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3104 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3105
3106 if (!wait_loop) {
3107 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3108 "the polling period\n", reg_idx);
3109 }
3110}
3111
Alexander Duyck84418e32010-08-19 13:40:54 +00003112void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3113 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003114{
3115 struct ixgbe_hw *hw = &adapter->hw;
3116 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003117 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003118 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003119
Alexander Duyck9e10e042010-08-19 13:40:06 +00003120 /* disable queue to avoid issues while updating state */
3121 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003122 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003123
Alexander Duyckacd37172010-08-19 13:36:05 +00003124 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3125 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3126 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3127 ring->count * sizeof(union ixgbe_adv_rx_desc));
3128 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3129 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08003130 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003131
3132 ixgbe_configure_srrctl(adapter, ring);
3133 ixgbe_configure_rscctl(adapter, ring);
3134
Greg Rosee9f98072011-01-26 01:06:07 +00003135 /* If operating in IOV mode set RLPML for X540 */
3136 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
3137 hw->mac.type == ixgbe_mac_X540) {
3138 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
3139 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
3140 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
3141 }
3142
Alexander Duyck9e10e042010-08-19 13:40:06 +00003143 if (hw->mac.type == ixgbe_mac_82598EB) {
3144 /*
3145 * enable cache line friendly hardware writes:
3146 * PTHRESH=32 descriptors (half the internal cache),
3147 * this also removes ugly rx_no_buffer_count increment
3148 * HTHRESH=4 descriptors (to minimize latency on fetch)
3149 * WTHRESH=8 burst writeback up to two cache lines
3150 */
3151 rxdctl &= ~0x3FFFFF;
3152 rxdctl |= 0x080420;
3153 }
3154
3155 /* enable receive descriptor ring */
3156 rxdctl |= IXGBE_RXDCTL_ENABLE;
3157 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3158
3159 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003160 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003161}
3162
Alexander Duyck48654522010-08-19 13:36:27 +00003163static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3164{
3165 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003166 int rss_i = adapter->ring_feature[RING_F_RSS].indices;
Alexander Duyck48654522010-08-19 13:36:27 +00003167 int p;
3168
3169 /* PSRTYPE must be initialized in non 82598 adapters */
3170 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003171 IXGBE_PSRTYPE_UDPHDR |
3172 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003173 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003174 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003175
3176 if (hw->mac.type == ixgbe_mac_82598EB)
3177 return;
3178
Alexander Duyckfbe7ca72012-07-14 05:42:36 +00003179 if (rss_i > 3)
3180 psrtype |= 2 << 29;
3181 else if (rss_i > 1)
3182 psrtype |= 1 << 29;
Alexander Duyck48654522010-08-19 13:36:27 +00003183
3184 for (p = 0; p < adapter->num_rx_pools; p++)
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003185 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(p)),
Alexander Duyck48654522010-08-19 13:36:27 +00003186 psrtype);
3187}
3188
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003189static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3190{
3191 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003192 u32 reg_offset, vf_shift;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003193 u32 gcr_ext, vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003194 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003195
3196 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3197 return;
3198
3199 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003200 vmdctl |= IXGBE_VMD_CTL_VMDQ_EN;
3201 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003202 vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT;
Alexander Duyck435b19f2012-05-18 06:34:08 +00003203 vmdctl |= IXGBE_VT_CTL_REPLEN;
3204 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003205
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003206 vf_shift = VMDQ_P(0) % 32;
3207 reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003208
3209 /* Enable only the PF's pool for Tx/Rx */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003210 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (~0) << vf_shift);
3211 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1);
3212 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (~0) << vf_shift);
3213 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003214 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3215
3216 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003217 hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0));
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003218
3219 /*
3220 * Set up VF register offsets for selected VT Mode,
3221 * i.e. 32 or 64 VFs for SR-IOV
3222 */
Alexander Duyck73079ea2012-07-14 06:48:49 +00003223 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
3224 case IXGBE_82599_VMDQ_8Q_MASK:
3225 gcr_ext = IXGBE_GCR_EXT_VT_MODE_16;
3226 break;
3227 case IXGBE_82599_VMDQ_4Q_MASK:
3228 gcr_ext = IXGBE_GCR_EXT_VT_MODE_32;
3229 break;
3230 default:
3231 gcr_ext = IXGBE_GCR_EXT_VT_MODE_64;
3232 break;
3233 }
3234
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003235 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3236
3237 /* enable Tx loopback for VF/PF communication */
3238 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Alexander Duyck435b19f2012-05-18 06:34:08 +00003239
Greg Rosea985b6c32010-11-18 03:02:52 +00003240 /* Enable MAC Anti-Spoofing */
Alexander Duyck435b19f2012-05-18 06:34:08 +00003241 hw->mac.ops.set_mac_anti_spoofing(hw, (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003242 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00003243 /* For VFs that have spoof checking turned off */
3244 for (i = 0; i < adapter->num_vfs; i++) {
3245 if (!adapter->vfinfo[i].spoofchk_enabled)
3246 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
3247 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003248}
3249
Alexander Duyck477de6e2010-08-19 13:38:11 +00003250static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003251{
Auke Kok9a799d72007-09-15 14:07:45 -07003252 struct ixgbe_hw *hw = &adapter->hw;
3253 struct net_device *netdev = adapter->netdev;
3254 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003255 struct ixgbe_ring *rx_ring;
3256 int i;
3257 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003258
Alexander Duyck477de6e2010-08-19 13:38:11 +00003259#ifdef IXGBE_FCOE
3260 /* adjust max frame to be able to do baby jumbo for FCoE */
3261 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3262 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3263 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3264
3265#endif /* IXGBE_FCOE */
3266 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3267 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3268 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3269 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3270
3271 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003272 }
3273
Alexander Duyck919e78a2011-08-26 09:52:38 +00003274 /* MHADD will allow an extra 4 bytes past for vlan tagged frames */
3275 max_frame += VLAN_HLEN;
3276
Auke Kok9a799d72007-09-15 14:07:45 -07003277 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003278 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3279 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003280 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3281
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003282 /*
3283 * Setup the HW Rx Head and Tail Descriptor Pointers and
3284 * the Base and Length of the Rx Descriptor Ring
3285 */
Auke Kok9a799d72007-09-15 14:07:45 -07003286 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003287 rx_ring = adapter->rx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003288 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3289 set_ring_rsc_enabled(rx_ring);
3290 else
3291 clear_ring_rsc_enabled(rx_ring);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003292 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003293}
3294
Alexander Duyck73670962010-08-19 13:38:34 +00003295static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3296{
3297 struct ixgbe_hw *hw = &adapter->hw;
3298 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3299
3300 switch (hw->mac.type) {
3301 case ixgbe_mac_82598EB:
3302 /*
3303 * For VMDq support of different descriptor types or
3304 * buffer sizes through the use of multiple SRRCTL
3305 * registers, RDRXCTL.MVMEN must be set to 1
3306 *
3307 * also, the manual doesn't mention it clearly but DCA hints
3308 * will only use queue 0's tags unless this bit is set. Side
3309 * effects of setting this bit are only that SRRCTL must be
3310 * fully programmed [0..15]
3311 */
3312 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3313 break;
3314 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003315 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003316 /* Disable RSC for ACK packets */
3317 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3318 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3319 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3320 /* hardware requires some bits to be set by default */
3321 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3322 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3323 break;
3324 default:
3325 /* We should do nothing since we don't know this hardware */
3326 return;
3327 }
3328
3329 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3330}
3331
Alexander Duyck477de6e2010-08-19 13:38:11 +00003332/**
3333 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3334 * @adapter: board private structure
3335 *
3336 * Configure the Rx unit of the MAC after a reset.
3337 **/
3338static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3339{
3340 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003341 int i;
3342 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003343
3344 /* disable receives while setting up the descriptors */
3345 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3346 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3347
3348 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003349 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003350
Alexander Duyck9e10e042010-08-19 13:40:06 +00003351 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003352 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003353
Alexander Duyck477de6e2010-08-19 13:38:11 +00003354 /* set_rx_buffer_len must be called before ring initialization */
3355 ixgbe_set_rx_buffer_len(adapter);
3356
3357 /*
3358 * Setup the HW Rx Head and Tail Descriptor Pointers and
3359 * the Base and Length of the Rx Descriptor Ring
3360 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003361 for (i = 0; i < adapter->num_rx_queues; i++)
3362 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003363
Alexander Duyck9e10e042010-08-19 13:40:06 +00003364 /* disable drop enable for 82598 parts */
3365 if (hw->mac.type == ixgbe_mac_82598EB)
3366 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3367
3368 /* enable all receives */
3369 rxctrl |= IXGBE_RXCTRL_RXEN;
3370 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003371}
3372
Jiri Pirko8e586132011-12-08 19:52:37 -05003373static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003374{
3375 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003376 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003377
3378 /* add VID to filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003379 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003380 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003381
3382 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003383}
3384
Jiri Pirko8e586132011-12-08 19:52:37 -05003385static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003386{
3387 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003388 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003389
Auke Kok9a799d72007-09-15 14:07:45 -07003390 /* remove VID from filter table */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003391 hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003392 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003393
3394 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003395}
3396
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003397/**
3398 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3399 * @adapter: driver data
3400 */
3401static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3402{
3403 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003404 u32 vlnctrl;
3405
3406 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3407 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3408 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3409}
3410
3411/**
3412 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3413 * @adapter: driver data
3414 */
3415static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3416{
3417 struct ixgbe_hw *hw = &adapter->hw;
3418 u32 vlnctrl;
3419
3420 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3421 vlnctrl |= IXGBE_VLNCTRL_VFE;
3422 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3423 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3424}
3425
3426/**
3427 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3428 * @adapter: driver data
3429 */
3430static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3431{
3432 struct ixgbe_hw *hw = &adapter->hw;
3433 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003434 int i, j;
3435
3436 switch (hw->mac.type) {
3437 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003438 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3439 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003440 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3441 break;
3442 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003443 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003444 for (i = 0; i < adapter->num_rx_queues; i++) {
3445 j = adapter->rx_ring[i]->reg_idx;
3446 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3447 vlnctrl &= ~IXGBE_RXDCTL_VME;
3448 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3449 }
3450 break;
3451 default:
3452 break;
3453 }
3454}
3455
3456/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003457 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003458 * @adapter: driver data
3459 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003460static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003461{
3462 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003463 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003464 int i, j;
3465
3466 switch (hw->mac.type) {
3467 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003468 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3469 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003470 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3471 break;
3472 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003473 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003474 for (i = 0; i < adapter->num_rx_queues; i++) {
3475 j = adapter->rx_ring[i]->reg_idx;
3476 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3477 vlnctrl |= IXGBE_RXDCTL_VME;
3478 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3479 }
3480 break;
3481 default:
3482 break;
3483 }
3484}
3485
Auke Kok9a799d72007-09-15 14:07:45 -07003486static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3487{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003488 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003489
Jesse Grossf62bbb52010-10-20 13:56:10 +00003490 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3491
3492 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3493 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003494}
3495
3496/**
Alexander Duyck28500622010-06-15 09:25:48 +00003497 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3498 * @netdev: network interface device structure
3499 *
3500 * Writes unicast address list to the RAR table.
3501 * Returns: -ENOMEM on failure/insufficient address space
3502 * 0 on no addresses written
3503 * X on writing X addresses to the RAR table
3504 **/
3505static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3506{
3507 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3508 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend95447462012-05-31 12:42:26 +00003509 unsigned int rar_entries = hw->mac.num_rar_entries - 1;
Alexander Duyck28500622010-06-15 09:25:48 +00003510 int count = 0;
3511
John Fastabend95447462012-05-31 12:42:26 +00003512 /* In SR-IOV mode significantly less RAR entries are available */
3513 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3514 rar_entries = IXGBE_MAX_PF_MACVLANS - 1;
3515
Alexander Duyck28500622010-06-15 09:25:48 +00003516 /* return ENOMEM indicating insufficient memory for addresses */
3517 if (netdev_uc_count(netdev) > rar_entries)
3518 return -ENOMEM;
3519
John Fastabend95447462012-05-31 12:42:26 +00003520 if (!netdev_uc_empty(netdev)) {
Alexander Duyck28500622010-06-15 09:25:48 +00003521 struct netdev_hw_addr *ha;
3522 /* return error if we do not support writing to RAR table */
3523 if (!hw->mac.ops.set_rar)
3524 return -ENOMEM;
3525
3526 netdev_for_each_uc_addr(ha, netdev) {
3527 if (!rar_entries)
3528 break;
3529 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003530 VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck28500622010-06-15 09:25:48 +00003531 count++;
3532 }
3533 }
3534 /* write the addresses in reverse order to avoid write combining */
3535 for (; rar_entries > 0 ; rar_entries--)
3536 hw->mac.ops.clear_rar(hw, rar_entries);
3537
3538 return count;
3539}
3540
3541/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003542 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003543 * @netdev: network interface device structure
3544 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003545 * The set_rx_method entry point is called whenever the unicast/multicast
3546 * address list or the network interface flags are updated. This routine is
3547 * responsible for configuring the hardware for proper unicast, multicast and
3548 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003549 **/
Greg Rose7f870472010-01-09 02:25:29 +00003550void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003551{
3552 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3553 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003554 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3555 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003556
3557 /* Check for Promiscuous and All Multicast modes */
3558
3559 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3560
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003561 /* set all bits that we expect to always be set */
Ben Greear3f2d1c02012-03-08 08:28:41 +00003562 fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003563 fctrl |= IXGBE_FCTRL_BAM;
3564 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3565 fctrl |= IXGBE_FCTRL_PMCF;
3566
Alexander Duyck28500622010-06-15 09:25:48 +00003567 /* clear the bits we are changing the status of */
3568 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3569
Auke Kok9a799d72007-09-15 14:07:45 -07003570 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003571 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003572 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003573 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003574 /* don't hardware filter vlans in promisc mode */
3575 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003576 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003577 if (netdev->flags & IFF_ALLMULTI) {
3578 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003579 vmolr |= IXGBE_VMOLR_MPE;
3580 } else {
3581 /*
3582 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003583 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003584 * that we can at least receive multicast traffic
3585 */
3586 hw->mac.ops.update_mc_addr_list(hw, netdev);
3587 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003588 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003589 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003590 hw->addr_ctrl.user_set_promisc = false;
John Fastabend9dcb3732012-04-15 06:44:25 +00003591 }
3592
3593 /*
3594 * Write addresses to available RAR registers, if there is not
3595 * sufficient space to store all the addresses then enable
3596 * unicast promiscuous mode
3597 */
3598 count = ixgbe_write_uc_addr_list(netdev);
3599 if (count < 0) {
3600 fctrl |= IXGBE_FCTRL_UPE;
3601 vmolr |= IXGBE_VMOLR_ROPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003602 }
3603
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003604 if (adapter->num_vfs)
Alexander Duyck28500622010-06-15 09:25:48 +00003605 ixgbe_restore_vf_multicasts(adapter);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003606
3607 if (hw->mac.type != ixgbe_mac_82598EB) {
3608 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) &
Alexander Duyck28500622010-06-15 09:25:48 +00003609 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3610 IXGBE_VMOLR_ROPE);
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00003611 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003612 }
3613
Ben Greear3f2d1c02012-03-08 08:28:41 +00003614 /* This is useful for sniffing bad packets. */
3615 if (adapter->netdev->features & NETIF_F_RXALL) {
3616 /* UPE and MPE will be handled by normal PROMISC logic
3617 * in e1000e_set_rx_mode */
3618 fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */
3619 IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */
3620 IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */
3621
3622 fctrl &= ~(IXGBE_FCTRL_DPF);
3623 /* NOTE: VLAN filtering is disabled by setting PROMISC */
3624 }
3625
Auke Kok9a799d72007-09-15 14:07:45 -07003626 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003627
3628 if (netdev->features & NETIF_F_HW_VLAN_RX)
3629 ixgbe_vlan_strip_enable(adapter);
3630 else
3631 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003632}
3633
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003634static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3635{
3636 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003637
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003638 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3639 napi_enable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003640}
3641
3642static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3643{
3644 int q_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003645
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00003646 for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++)
3647 napi_disable(&adapter->q_vector[q_idx]->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003648}
3649
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003650#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003651/**
Alexander Duyck2f90b862008-11-20 20:52:10 -08003652 * ixgbe_configure_dcb - Configure DCB hardware
3653 * @adapter: ixgbe adapter struct
3654 *
3655 * This is called by the driver on open to configure the DCB hardware.
3656 * This is also called by the gennetlink interface when reconfiguring
3657 * the DCB state.
3658 */
3659static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3660{
3661 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend9806307a2010-10-28 00:59:57 +00003662 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003663
Alexander Duyck67ebd792010-08-19 13:34:04 +00003664 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3665 if (hw->mac.type == ixgbe_mac_82598EB)
3666 netif_set_gso_max_size(adapter->netdev, 65536);
3667 return;
3668 }
3669
3670 if (hw->mac.type == ixgbe_mac_82598EB)
3671 netif_set_gso_max_size(adapter->netdev, 32768);
3672
John Fastabendb1208182011-10-15 05:00:10 +00003673#ifdef IXGBE_FCOE
3674 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3675 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3676#endif
3677
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003678 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003679 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003680 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3681 DCB_TX_CONFIG);
3682 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3683 DCB_RX_CONFIG);
3684 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003685 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3686 ixgbe_dcb_hw_ets(&adapter->hw,
3687 adapter->ixgbe_ieee_ets,
3688 max_frame);
3689 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3690 adapter->ixgbe_ieee_pfc->pfc_en,
3691 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003692 }
John Fastabend8187cd42011-02-23 05:58:08 +00003693
3694 /* Enable RSS Hash per TC */
3695 if (hw->mac.type != ixgbe_mac_82598EB) {
Alexander Duyck4ae63732012-06-22 06:46:33 +00003696 u32 msb = 0;
3697 u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003698
Alexander Duyckd411a932012-06-30 00:14:01 +00003699 while (rss_i) {
3700 msb++;
3701 rss_i >>= 1;
John Fastabend8187cd42011-02-23 05:58:08 +00003702 }
Alexander Duyckd411a932012-06-30 00:14:01 +00003703
Alexander Duyck4ae63732012-06-22 06:46:33 +00003704 /* write msb to all 8 TCs in one write */
3705 IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111);
John Fastabend8187cd42011-02-23 05:58:08 +00003706 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003707}
John Fastabend9da712d2011-08-23 03:14:22 +00003708#endif
3709
3710/* Additional bittime to account for IXGBE framing */
3711#define IXGBE_ETH_FRAMING 20
3712
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003713/**
John Fastabend9da712d2011-08-23 03:14:22 +00003714 * ixgbe_hpbthresh - calculate high water mark for flow control
3715 *
3716 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003717 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00003718 */
3719static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
3720{
3721 struct ixgbe_hw *hw = &adapter->hw;
3722 struct net_device *dev = adapter->netdev;
3723 int link, tc, kb, marker;
3724 u32 dv_id, rx_pba;
3725
3726 /* Calculate max LAN frame size */
3727 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
3728
3729#ifdef IXGBE_FCOE
3730 /* FCoE traffic class uses FCOE jumbo frames */
Alexander Duyck800bd602012-06-02 00:11:02 +00003731 if ((dev->features & NETIF_F_FCOE_MTU) &&
3732 (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) &&
3733 (pb == ixgbe_fcoe_get_tc(adapter)))
3734 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003735
3736#endif
John Fastabend9da712d2011-08-23 03:14:22 +00003737 /* Calculate delay value for device */
3738 switch (hw->mac.type) {
3739 case ixgbe_mac_X540:
3740 dv_id = IXGBE_DV_X540(link, tc);
3741 break;
3742 default:
3743 dv_id = IXGBE_DV(link, tc);
3744 break;
3745 }
3746
3747 /* Loopback switch introduces additional latency */
3748 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3749 dv_id += IXGBE_B2BT(tc);
3750
3751 /* Delay value is calculated in bit times convert to KB */
3752 kb = IXGBE_BT2KB(dv_id);
3753 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
3754
3755 marker = rx_pba - kb;
3756
3757 /* It is possible that the packet buffer is not large enough
3758 * to provide required headroom. In this case throw an error
3759 * to user and a do the best we can.
3760 */
3761 if (marker < 0) {
3762 e_warn(drv, "Packet Buffer(%i) can not provide enough"
3763 "headroom to support flow control."
3764 "Decrease MTU or number of traffic classes\n", pb);
3765 marker = tc + 1;
3766 }
3767
3768 return marker;
3769}
3770
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003771/**
John Fastabend9da712d2011-08-23 03:14:22 +00003772 * ixgbe_lpbthresh - calculate low water mark for for flow control
3773 *
3774 * @adapter: board private structure to calculate for
Ben Hutchings49ce9c22012-07-10 10:56:00 +00003775 * @pb: packet buffer to calculate
John Fastabend9da712d2011-08-23 03:14:22 +00003776 */
3777static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
3778{
3779 struct ixgbe_hw *hw = &adapter->hw;
3780 struct net_device *dev = adapter->netdev;
3781 int tc;
3782 u32 dv_id;
3783
3784 /* Calculate max LAN frame size */
3785 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3786
3787 /* Calculate delay value for device */
3788 switch (hw->mac.type) {
3789 case ixgbe_mac_X540:
3790 dv_id = IXGBE_LOW_DV_X540(tc);
3791 break;
3792 default:
3793 dv_id = IXGBE_LOW_DV(tc);
3794 break;
3795 }
3796
3797 /* Delay value is calculated in bit times convert to KB */
3798 return IXGBE_BT2KB(dv_id);
3799}
3800
3801/*
3802 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3803 */
3804static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
3805{
3806 struct ixgbe_hw *hw = &adapter->hw;
3807 int num_tc = netdev_get_num_tc(adapter->netdev);
3808 int i;
3809
3810 if (!num_tc)
3811 num_tc = 1;
3812
3813 hw->fc.low_water = ixgbe_lpbthresh(adapter);
3814
3815 for (i = 0; i < num_tc; i++) {
3816 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
3817
3818 /* Low water marks must not be larger than high water marks */
3819 if (hw->fc.low_water > hw->fc.high_water[i])
3820 hw->fc.low_water = 0;
3821 }
3822}
John Fastabend80605c652011-05-02 12:34:10 +00003823
3824static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3825{
John Fastabend80605c652011-05-02 12:34:10 +00003826 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00003827 int hdrm;
3828 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00003829
3830 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3831 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00003832 hdrm = 32 << adapter->fdir_pballoc;
3833 else
3834 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00003835
Alexander Duyckf7e10272011-07-21 00:40:35 +00003836 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00003837 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00003838}
3839
Alexander Duycke4911d52011-05-11 07:18:52 +00003840static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3841{
3842 struct ixgbe_hw *hw = &adapter->hw;
3843 struct hlist_node *node, *node2;
3844 struct ixgbe_fdir_filter *filter;
3845
3846 spin_lock(&adapter->fdir_perfect_lock);
3847
3848 if (!hlist_empty(&adapter->fdir_filter_list))
3849 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3850
3851 hlist_for_each_entry_safe(filter, node, node2,
3852 &adapter->fdir_filter_list, fdir_node) {
3853 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003854 &filter->filter,
3855 filter->sw_idx,
3856 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3857 IXGBE_FDIR_DROP_QUEUE :
3858 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003859 }
3860
3861 spin_unlock(&adapter->fdir_perfect_lock);
3862}
3863
Auke Kok9a799d72007-09-15 14:07:45 -07003864static void ixgbe_configure(struct ixgbe_adapter *adapter)
3865{
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003866 struct ixgbe_hw *hw = &adapter->hw;
3867
John Fastabend80605c652011-05-02 12:34:10 +00003868 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003869#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003870 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003871#endif
Alexander Duyckb35d4d42012-05-23 05:39:25 +00003872 /*
3873 * We must restore virtualization before VLANs or else
3874 * the VLVF registers will not be populated
3875 */
3876 ixgbe_configure_virtualization(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003877
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003878 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003879 ixgbe_restore_vlan(adapter);
3880
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003881 switch (hw->mac.type) {
3882 case ixgbe_mac_82599EB:
3883 case ixgbe_mac_X540:
3884 hw->mac.ops.disable_rx_buff(hw);
3885 break;
3886 default:
3887 break;
3888 }
3889
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003890 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003891 ixgbe_init_fdir_signature_82599(&adapter->hw,
3892 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003893 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3894 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3895 adapter->fdir_pballoc);
3896 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003897 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003898
Atita Shirwaikard2f5e7f2012-02-18 02:58:58 +00003899 switch (hw->mac.type) {
3900 case ixgbe_mac_82599EB:
3901 case ixgbe_mac_X540:
3902 hw->mac.ops.enable_rx_buff(hw);
3903 break;
3904 default:
3905 break;
3906 }
3907
Alexander Duyck7c8ae652012-05-05 05:32:47 +00003908#ifdef IXGBE_FCOE
3909 /* configure FCoE L2 filters, redirection table, and Rx control */
3910 ixgbe_configure_fcoe(adapter);
3911
3912#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07003913 ixgbe_configure_tx(adapter);
3914 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003915}
3916
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003917static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3918{
3919 switch (hw->phy.type) {
3920 case ixgbe_phy_sfp_avago:
3921 case ixgbe_phy_sfp_ftl:
3922 case ixgbe_phy_sfp_intel:
3923 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003924 case ixgbe_phy_sfp_passive_tyco:
3925 case ixgbe_phy_sfp_passive_unknown:
3926 case ixgbe_phy_sfp_active_unknown:
3927 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003928 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00003929 case ixgbe_phy_nl:
3930 if (hw->mac.type == ixgbe_mac_82598EB)
3931 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003932 default:
3933 return false;
3934 }
3935}
3936
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003937/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003938 * ixgbe_sfp_link_config - set up SFP+ link
3939 * @adapter: pointer to private adapter struct
3940 **/
3941static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3942{
Alexander Duyck70864002011-04-27 09:13:56 +00003943 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003944 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00003945 * is that an SFP was inserted/removed after the reset
3946 * but before SFP detection was enabled. As such the best
3947 * solution is to just start searching as soon as we start
3948 */
3949 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3950 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003951
Alexander Duyck70864002011-04-27 09:13:56 +00003952 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003953}
3954
3955/**
3956 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003957 * @hw: pointer to private hardware struct
3958 *
3959 * Returns 0 on success, negative on failure
3960 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003961static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003962{
3963 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003964 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003965 u32 ret = IXGBE_ERR_LINK_SETUP;
3966
3967 if (hw->mac.ops.check_link)
3968 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3969
3970 if (ret)
3971 goto link_cfg_out;
3972
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003973 autoneg = hw->phy.autoneg_advertised;
3974 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003975 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3976 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003977 if (ret)
3978 goto link_cfg_out;
3979
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003980 if (hw->mac.ops.setup_link)
3981 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003982link_cfg_out:
3983 return ret;
3984}
3985
Alexander Duycka34bcff2010-08-19 13:39:20 +00003986static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003987{
Auke Kok9a799d72007-09-15 14:07:45 -07003988 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003989 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003990
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003991 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003992 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3993 IXGBE_GPIE_OCD;
3994 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003995 /*
3996 * use EIAM to auto-mask when MSI-X interrupt is asserted
3997 * this saves a register write for every interrupt
3998 */
3999 switch (hw->mac.type) {
4000 case ixgbe_mac_82598EB:
4001 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
4002 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004003 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004004 case ixgbe_mac_X540:
4005 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00004006 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
4007 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
4008 break;
4009 }
4010 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004011 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
4012 * specifically only auto mask tx and rx interrupts */
4013 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07004014 }
4015
Alexander Duycka34bcff2010-08-19 13:39:20 +00004016 /* XXX: to interrupt immediately for EICS writes, enable this */
4017 /* gpie |= IXGBE_GPIE_EIMEN; */
4018
4019 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
4020 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
Alexander Duyck73079ea2012-07-14 06:48:49 +00004021
4022 switch (adapter->ring_feature[RING_F_VMDQ].mask) {
4023 case IXGBE_82599_VMDQ_8Q_MASK:
4024 gpie |= IXGBE_GPIE_VTMODE_16;
4025 break;
4026 case IXGBE_82599_VMDQ_4Q_MASK:
4027 gpie |= IXGBE_GPIE_VTMODE_32;
4028 break;
4029 default:
4030 gpie |= IXGBE_GPIE_VTMODE_64;
4031 break;
4032 }
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004033 }
4034
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004035 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00004036 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
4037 switch (adapter->hw.mac.type) {
4038 case ixgbe_mac_82599EB:
4039 gpie |= IXGBE_SDP0_GPIEN;
4040 break;
4041 case ixgbe_mac_X540:
4042 gpie |= IXGBE_EIMS_TS;
4043 break;
4044 default:
4045 break;
4046 }
4047 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00004048
Alexander Duycka34bcff2010-08-19 13:39:20 +00004049 /* Enable fan failure interrupt */
4050 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004051 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07004052
Don Skidmore2698b202011-04-13 07:01:52 +00004053 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004054 gpie |= IXGBE_SDP1_GPIEN;
4055 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00004056 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00004057
4058 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
4059}
4060
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004061static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00004062{
4063 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004064 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00004065 u32 ctrl_ext;
4066
4067 ixgbe_get_hw_control(adapter);
4068 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004069
Auke Kok9a799d72007-09-15 14:07:45 -07004070 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4071 ixgbe_configure_msix(adapter);
4072 else
4073 ixgbe_configure_msi_and_legacy(adapter);
4074
Don Skidmorec6ecf392010-12-03 03:31:51 +00004075 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
4076 if (hw->mac.ops.enable_tx_laser &&
4077 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004078 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004079 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00004080 hw->mac.ops.enable_tx_laser(hw);
4081
Auke Kok9a799d72007-09-15 14:07:45 -07004082 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004083 ixgbe_napi_enable_all(adapter);
4084
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08004085 if (ixgbe_is_sfp(hw)) {
4086 ixgbe_sfp_link_config(adapter);
4087 } else {
4088 err = ixgbe_non_sfp_link_config(hw);
4089 if (err)
4090 e_err(probe, "link_config FAILED %d\n", err);
4091 }
4092
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004093 /* clear any pending interrupts, may auto mask */
4094 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00004095 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07004096
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004097 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00004098 * If this adapter has a fan, check to see if we had a failure
4099 * before we enabled the interrupt.
4100 */
4101 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
4102 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
4103 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00004104 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00004105 }
4106
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004107 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00004108 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08004109
Auke Kok9a799d72007-09-15 14:07:45 -07004110 /* bring the link up in the watchdog, this could race with our first
4111 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004112 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
4113 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00004114 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00004115
4116 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
4117 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
4118 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
4119 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07004120}
4121
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004122void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
4123{
4124 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00004125 /* put off any impending NetWatchDogTimeout */
4126 adapter->netdev->trans_start = jiffies;
4127
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004128 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00004129 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004130 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00004131 /*
4132 * If SR-IOV enabled then wait a bit before bringing the adapter
4133 * back up to give the VFs time to respond to the reset. The
4134 * two second wait is based upon the watchdog timer cycle in
4135 * the VF driver.
4136 */
4137 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4138 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004139 ixgbe_up(adapter);
4140 clear_bit(__IXGBE_RESETTING, &adapter->state);
4141}
4142
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004143void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004144{
4145 /* hardware has been reset, we need to reload some things */
4146 ixgbe_configure(adapter);
4147
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004148 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004149}
4150
4151void ixgbe_reset(struct ixgbe_adapter *adapter)
4152{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004153 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004154 int err;
4155
Alexander Duyck70864002011-04-27 09:13:56 +00004156 /* lock SFP init bit to prevent race conditions with the watchdog */
4157 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4158 usleep_range(1000, 2000);
4159
4160 /* clear all SFP and link config related flags while holding SFP_INIT */
4161 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4162 IXGBE_FLAG2_SFP_NEEDS_RESET);
4163 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4164
Don Skidmore8ca783a2009-05-26 20:40:47 -07004165 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004166 switch (err) {
4167 case 0:
4168 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004169 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004170 break;
4171 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004172 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004173 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004174 case IXGBE_ERR_EEPROM_VERSION:
4175 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004176 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004177 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00004178 "your hardware. If you are experiencing problems "
4179 "please contact your Intel or hardware "
4180 "representative who provided you with this "
4181 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004182 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004183 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004184 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004185 }
Auke Kok9a799d72007-09-15 14:07:45 -07004186
Alexander Duyck70864002011-04-27 09:13:56 +00004187 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4188
Auke Kok9a799d72007-09-15 14:07:45 -07004189 /* reprogram the RAR[0] in case user changed it. */
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00004190 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00004191
4192 /* update SAN MAC vmdq pool selection */
4193 if (hw->mac.san_mac_rar_index)
4194 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
Auke Kok9a799d72007-09-15 14:07:45 -07004195}
4196
Auke Kok9a799d72007-09-15 14:07:45 -07004197/**
4198 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004199 * @rx_ring: ring to free buffers from
4200 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004201static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004202{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004203 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004204 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004205 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004206
Alexander Duyck84418e32010-08-19 13:40:54 +00004207 /* ring already cleared, nothing to do */
4208 if (!rx_ring->rx_buffer_info)
4209 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004210
Alexander Duyck84418e32010-08-19 13:40:54 +00004211 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004212 for (i = 0; i < rx_ring->count; i++) {
Alexander Duyckf8003262012-03-03 02:35:52 +00004213 struct ixgbe_rx_buffer *rx_buffer;
Auke Kok9a799d72007-09-15 14:07:45 -07004214
Alexander Duyckf8003262012-03-03 02:35:52 +00004215 rx_buffer = &rx_ring->rx_buffer_info[i];
4216 if (rx_buffer->skb) {
4217 struct sk_buff *skb = rx_buffer->skb;
4218 if (IXGBE_CB(skb)->page_released) {
4219 dma_unmap_page(dev,
4220 IXGBE_CB(skb)->dma,
4221 ixgbe_rx_bufsz(rx_ring),
4222 DMA_FROM_DEVICE);
4223 IXGBE_CB(skb)->page_released = false;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00004224 }
4225 dev_kfree_skb(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07004226 }
Alexander Duyckf8003262012-03-03 02:35:52 +00004227 rx_buffer->skb = NULL;
4228 if (rx_buffer->dma)
4229 dma_unmap_page(dev, rx_buffer->dma,
4230 ixgbe_rx_pg_size(rx_ring),
4231 DMA_FROM_DEVICE);
4232 rx_buffer->dma = 0;
4233 if (rx_buffer->page)
Alexander Duyckdd411ec2012-04-06 04:24:50 +00004234 __free_pages(rx_buffer->page,
4235 ixgbe_rx_pg_order(rx_ring));
Alexander Duyckf8003262012-03-03 02:35:52 +00004236 rx_buffer->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07004237 }
4238
4239 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4240 memset(rx_ring->rx_buffer_info, 0, size);
4241
4242 /* Zero out the descriptor ring */
4243 memset(rx_ring->desc, 0, rx_ring->size);
4244
Alexander Duyckf8003262012-03-03 02:35:52 +00004245 rx_ring->next_to_alloc = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004246 rx_ring->next_to_clean = 0;
4247 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004248}
4249
4250/**
4251 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004252 * @tx_ring: ring to be cleaned
4253 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004254static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004255{
4256 struct ixgbe_tx_buffer *tx_buffer_info;
4257 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004258 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004259
Alexander Duyck84418e32010-08-19 13:40:54 +00004260 /* ring already cleared, nothing to do */
4261 if (!tx_ring->tx_buffer_info)
4262 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004263
Alexander Duyck84418e32010-08-19 13:40:54 +00004264 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004265 for (i = 0; i < tx_ring->count; i++) {
4266 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004267 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004268 }
4269
John Fastabenddad8a3b2012-04-23 12:22:39 +00004270 netdev_tx_reset_queue(txring_txq(tx_ring));
4271
Auke Kok9a799d72007-09-15 14:07:45 -07004272 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4273 memset(tx_ring->tx_buffer_info, 0, size);
4274
4275 /* Zero out the descriptor ring */
4276 memset(tx_ring->desc, 0, tx_ring->size);
4277
4278 tx_ring->next_to_use = 0;
4279 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004280}
4281
4282/**
Auke Kok9a799d72007-09-15 14:07:45 -07004283 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4284 * @adapter: board private structure
4285 **/
4286static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4287{
4288 int i;
4289
4290 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004291 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004292}
4293
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004294/**
4295 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4296 * @adapter: board private structure
4297 **/
4298static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4299{
4300 int i;
4301
4302 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004303 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004304}
4305
Alexander Duycke4911d52011-05-11 07:18:52 +00004306static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4307{
4308 struct hlist_node *node, *node2;
4309 struct ixgbe_fdir_filter *filter;
4310
4311 spin_lock(&adapter->fdir_perfect_lock);
4312
4313 hlist_for_each_entry_safe(filter, node, node2,
4314 &adapter->fdir_filter_list, fdir_node) {
4315 hlist_del(&filter->fdir_node);
4316 kfree(filter);
4317 }
4318 adapter->fdir_filter_count = 0;
4319
4320 spin_unlock(&adapter->fdir_perfect_lock);
4321}
4322
Auke Kok9a799d72007-09-15 14:07:45 -07004323void ixgbe_down(struct ixgbe_adapter *adapter)
4324{
4325 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004326 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004327 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004328 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004329
4330 /* signal that we are down to the interrupt handler */
4331 set_bit(__IXGBE_DOWN, &adapter->state);
4332
4333 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004334 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4335 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004336
Yi Zou2d39d572011-01-06 14:29:56 +00004337 /* disable all enabled rx queues */
4338 for (i = 0; i < adapter->num_rx_queues; i++)
4339 /* this call also flushes the previous write */
4340 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4341
Don Skidmore032b4322011-03-18 09:32:53 +00004342 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004343
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004344 netif_tx_stop_all_queues(netdev);
4345
Alexander Duyck70864002011-04-27 09:13:56 +00004346 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004347 netif_carrier_off(netdev);
4348 netif_tx_disable(netdev);
4349
4350 ixgbe_irq_disable(adapter);
4351
4352 ixgbe_napi_disable_all(adapter);
4353
Alexander Duyckd034acf2011-04-27 09:25:34 +00004354 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4355 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004356 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4357
4358 del_timer_sync(&adapter->service_timer);
4359
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004360 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004361 /* Clear EITR Select mapping */
4362 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4363
4364 /* Mark all the VFs as inactive */
4365 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004366 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004367
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004368 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004369 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004370
Auke Kok9a799d72007-09-15 14:07:45 -07004371 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004372 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004373 }
4374
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004375 /* disable transmits in the hardware now that interrupts are off */
4376 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004377 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004378 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004379 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004380
4381 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004382 switch (hw->mac.type) {
4383 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004384 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004385 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004386 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4387 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004388 break;
4389 default:
4390 break;
4391 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004392
Paul Larson6f4a0e42008-06-24 17:00:56 -07004393 if (!pci_channel_offline(adapter->pdev))
4394 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004395
4396 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4397 if (hw->mac.ops.disable_tx_laser &&
4398 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004399 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004400 (hw->mac.type == ixgbe_mac_82599EB))))
4401 hw->mac.ops.disable_tx_laser(hw);
4402
Auke Kok9a799d72007-09-15 14:07:45 -07004403 ixgbe_clean_all_tx_rings(adapter);
4404 ixgbe_clean_all_rx_rings(adapter);
4405
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004406#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004407 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004408 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004409#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004410}
4411
Auke Kok9a799d72007-09-15 14:07:45 -07004412/**
Auke Kok9a799d72007-09-15 14:07:45 -07004413 * ixgbe_tx_timeout - Respond to a Tx Hang
4414 * @netdev: network interface device structure
4415 **/
4416static void ixgbe_tx_timeout(struct net_device *netdev)
4417{
4418 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4419
4420 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004421 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004422}
4423
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004424/**
Auke Kok9a799d72007-09-15 14:07:45 -07004425 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4426 * @adapter: board private structure to initialize
4427 *
4428 * ixgbe_sw_init initializes the Adapter private data structure.
4429 * Fields are initialized based on PCI device information and
4430 * OS network device settings (MTU size).
4431 **/
4432static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
4433{
4434 struct ixgbe_hw *hw = &adapter->hw;
4435 struct pci_dev *pdev = adapter->pdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004436 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004437#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004438 int j;
4439 struct tc_configuration *tc;
4440#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004441
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004442 /* PCI config space info */
4443
4444 hw->vendor_id = pdev->vendor;
4445 hw->device_id = pdev->device;
4446 hw->revision_id = pdev->revision;
4447 hw->subsystem_vendor_id = pdev->subsystem_vendor;
4448 hw->subsystem_device_id = pdev->subsystem_device;
4449
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004450 /* Set capability flags */
Jesse Brandeburg3ed69d72012-02-10 10:20:02 +00004451 rss = min_t(int, IXGBE_MAX_RSS_INDICES, num_online_cpus());
Alexander Duyckc0876632012-05-10 00:01:46 +00004452 adapter->ring_feature[RING_F_RSS].limit = rss;
Alexander Duyckbd508172010-11-16 19:27:03 -08004453 switch (hw->mac.type) {
4454 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00004455 if (hw->device_id == IXGBE_DEV_ID_82598AT)
4456 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004457 adapter->max_q_vectors = MAX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08004458 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08004459 case ixgbe_mac_X540:
Jacob Keller4f51bf72011-08-20 04:49:45 +00004460 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
4461 case ixgbe_mac_82599EB:
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00004462 adapter->max_q_vectors = MAX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00004463 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
4464 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004465 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
4466 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00004467 /* Flow Director hash filters enabled */
Alexander Duyck45b9f502011-01-06 14:29:59 +00004468 adapter->atr_sample_rate = 20;
Alexander Duyckc0876632012-05-10 00:01:46 +00004469 adapter->ring_feature[RING_F_FDIR].limit =
Joe Perchese8e9f692010-09-07 21:34:53 +00004470 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00004471 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00004472#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00004473 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
4474 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
Yi Zou61a0f422009-12-03 11:32:22 +00004475#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00004476 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00004477 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00004478#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00004479#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08004480 break;
4481 default:
4482 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00004483 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004484
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004485#ifdef IXGBE_FCOE
4486 /* FCoE support exists, always init the FCoE lock */
4487 spin_lock_init(&adapter->fcoe.lock);
4488
4489#endif
Alexander Duyck1fc5f032011-06-02 04:28:39 +00004490 /* n-tuple support exists, always init our spinlock */
4491 spin_lock_init(&adapter->fdir_perfect_lock);
4492
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004493#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00004494 switch (hw->mac.type) {
4495 case ixgbe_mac_X540:
4496 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
4497 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
4498 break;
4499 default:
4500 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
4501 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
4502 break;
4503 }
4504
Alexander Duyck2f90b862008-11-20 20:52:10 -08004505 /* Configure DCB traffic classes */
4506 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
4507 tc = &adapter->dcb_cfg.tc_config[j];
4508 tc->path[DCB_TX_CONFIG].bwg_id = 0;
4509 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
4510 tc->path[DCB_RX_CONFIG].bwg_id = 0;
4511 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
4512 tc->dcb_pfc = pfc_disabled;
4513 }
John Fastabend4de2a022011-09-27 03:52:01 +00004514
4515 /* Initialize default user to priority mapping, UPx->TC0 */
4516 tc = &adapter->dcb_cfg.tc_config[0];
4517 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
4518 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
4519
Alexander Duyck2f90b862008-11-20 20:52:10 -08004520 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
4521 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00004522 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004523 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00004524 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
John Fastabendf525c6d22012-04-18 22:42:27 +00004525 memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg,
4526 sizeof(adapter->temp_dcb_cfg));
Alexander Duyck2f90b862008-11-20 20:52:10 -08004527
4528#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004529
4530 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00004531 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00004532 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
John Fastabend9da712d2011-08-23 03:14:22 +00004533 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07004534 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
4535 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00004536 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07004537
Alexander Duyck99d74482012-05-09 08:09:25 +00004538#ifdef CONFIG_PCI_IOV
4539 /* assign number of SR-IOV VFs */
4540 if (hw->mac.type != ixgbe_mac_82598EB)
4541 adapter->num_vfs = (max_vfs > 63) ? 0 : max_vfs;
4542
4543#endif
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004544 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004545 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004546 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004547
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004548 /* set default ring sizes */
4549 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
4550 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
4551
Alexander Duyckbd198052011-06-11 01:45:08 +00004552 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00004553 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00004554
Auke Kok9a799d72007-09-15 14:07:45 -07004555 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004556 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004557 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07004558 return -EIO;
4559 }
4560
Auke Kok9a799d72007-09-15 14:07:45 -07004561 set_bit(__IXGBE_DOWN, &adapter->state);
4562
4563 return 0;
4564}
4565
4566/**
4567 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004568 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004569 *
4570 * Return 0 on success, negative on failure
4571 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004572int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004573{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004574 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004575 int orig_node = dev_to_node(dev);
4576 int numa_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07004577 int size;
4578
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004579 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004580
4581 if (tx_ring->q_vector)
4582 numa_node = tx_ring->q_vector->numa_node;
4583
4584 tx_ring->tx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004585 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004586 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004587 if (!tx_ring->tx_buffer_info)
4588 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004589
4590 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08004591 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004592 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004593
Alexander Duyckde88eee2012-02-08 07:49:59 +00004594 set_dev_node(dev, numa_node);
4595 tx_ring->desc = dma_alloc_coherent(dev,
4596 tx_ring->size,
4597 &tx_ring->dma,
4598 GFP_KERNEL);
4599 set_dev_node(dev, orig_node);
4600 if (!tx_ring->desc)
4601 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
4602 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004603 if (!tx_ring->desc)
4604 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004605
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004606 tx_ring->next_to_use = 0;
4607 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004608 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004609
4610err:
4611 vfree(tx_ring->tx_buffer_info);
4612 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004613 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004614 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004615}
4616
4617/**
Alexander Duyck69888672008-09-11 20:05:39 -07004618 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
4619 * @adapter: board private structure
4620 *
4621 * If this function returns with an error, then it's possible one or
4622 * more of the rings is populated (while the rest are not). It is the
4623 * callers duty to clean those orphaned rings.
4624 *
4625 * Return 0 on success, negative on failure
4626 **/
4627static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
4628{
4629 int i, err = 0;
4630
4631 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004632 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004633 if (!err)
4634 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004635
Emil Tantilov396e7992010-07-01 20:05:12 +00004636 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004637 goto err_setup_tx;
Alexander Duyck69888672008-09-11 20:05:39 -07004638 }
4639
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004640 return 0;
4641err_setup_tx:
4642 /* rewind the index freeing the rings as we go */
4643 while (i--)
4644 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004645 return err;
4646}
4647
4648/**
Auke Kok9a799d72007-09-15 14:07:45 -07004649 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004650 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004651 *
4652 * Returns 0 on success, negative on failure
4653 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004654int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004655{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004656 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004657 int orig_node = dev_to_node(dev);
4658 int numa_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004659 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07004660
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004661 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00004662
4663 if (rx_ring->q_vector)
4664 numa_node = rx_ring->q_vector->numa_node;
4665
4666 rx_ring->rx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004667 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004668 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004669 if (!rx_ring->rx_buffer_info)
4670 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004671
Auke Kok9a799d72007-09-15 14:07:45 -07004672 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004673 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
4674 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004675
Alexander Duyckde88eee2012-02-08 07:49:59 +00004676 set_dev_node(dev, numa_node);
4677 rx_ring->desc = dma_alloc_coherent(dev,
4678 rx_ring->size,
4679 &rx_ring->dma,
4680 GFP_KERNEL);
4681 set_dev_node(dev, orig_node);
4682 if (!rx_ring->desc)
4683 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
4684 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004685 if (!rx_ring->desc)
4686 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004687
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004688 rx_ring->next_to_clean = 0;
4689 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004690
4691 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004692err:
4693 vfree(rx_ring->rx_buffer_info);
4694 rx_ring->rx_buffer_info = NULL;
4695 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07004696 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004697}
4698
4699/**
Alexander Duyck69888672008-09-11 20:05:39 -07004700 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
4701 * @adapter: board private structure
4702 *
4703 * If this function returns with an error, then it's possible one or
4704 * more of the rings is populated (while the rest are not). It is the
4705 * callers duty to clean those orphaned rings.
4706 *
4707 * Return 0 on success, negative on failure
4708 **/
Alexander Duyck69888672008-09-11 20:05:39 -07004709static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
4710{
4711 int i, err = 0;
4712
4713 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004714 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004715 if (!err)
4716 continue;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004717
Emil Tantilov396e7992010-07-01 20:05:12 +00004718 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004719 goto err_setup_rx;
Alexander Duyck69888672008-09-11 20:05:39 -07004720 }
4721
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004722#ifdef IXGBE_FCOE
4723 err = ixgbe_setup_fcoe_ddp_resources(adapter);
4724 if (!err)
4725#endif
4726 return 0;
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004727err_setup_rx:
4728 /* rewind the index freeing the rings as we go */
4729 while (i--)
4730 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07004731 return err;
4732}
4733
4734/**
Auke Kok9a799d72007-09-15 14:07:45 -07004735 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004736 * @tx_ring: Tx descriptor ring for a specific queue
4737 *
4738 * Free all transmit software resources
4739 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004740void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004741{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004742 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004743
4744 vfree(tx_ring->tx_buffer_info);
4745 tx_ring->tx_buffer_info = NULL;
4746
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004747 /* if not set, then don't free */
4748 if (!tx_ring->desc)
4749 return;
4750
4751 dma_free_coherent(tx_ring->dev, tx_ring->size,
4752 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004753
4754 tx_ring->desc = NULL;
4755}
4756
4757/**
4758 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
4759 * @adapter: board private structure
4760 *
4761 * Free all transmit software resources
4762 **/
4763static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
4764{
4765 int i;
4766
4767 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004768 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004769 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004770}
4771
4772/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07004773 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07004774 * @rx_ring: ring to clean the resources from
4775 *
4776 * Free all receive software resources
4777 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004778void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004779{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004780 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004781
4782 vfree(rx_ring->rx_buffer_info);
4783 rx_ring->rx_buffer_info = NULL;
4784
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004785 /* if not set, then don't free */
4786 if (!rx_ring->desc)
4787 return;
4788
4789 dma_free_coherent(rx_ring->dev, rx_ring->size,
4790 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07004791
4792 rx_ring->desc = NULL;
4793}
4794
4795/**
4796 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
4797 * @adapter: board private structure
4798 *
4799 * Free all receive software resources
4800 **/
4801static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
4802{
4803 int i;
4804
Alexander Duyck7c8ae652012-05-05 05:32:47 +00004805#ifdef IXGBE_FCOE
4806 ixgbe_free_fcoe_ddp_resources(adapter);
4807
4808#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004809 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004810 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004811 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004812}
4813
4814/**
Auke Kok9a799d72007-09-15 14:07:45 -07004815 * ixgbe_change_mtu - Change the Maximum Transfer Unit
4816 * @netdev: network interface device structure
4817 * @new_mtu: new value for maximum frame size
4818 *
4819 * Returns 0 on success, negative on failure
4820 **/
4821static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
4822{
4823 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4824 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
4825
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07004826 /* MTU < 68 is an error and causes problems on some kernels */
Alexander Duyck655309e2012-02-08 07:50:35 +00004827 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
4828 return -EINVAL;
4829
4830 /*
4831 * For 82599EB we cannot allow PF to change MTU greater than 1500
4832 * in SR-IOV mode as it may cause buffer overruns in guest VFs that
4833 * don't allocate and chain buffers correctly.
4834 */
4835 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
4836 (adapter->hw.mac.type == ixgbe_mac_82599EB) &&
4837 (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
Greg Rosee9f98072011-01-26 01:06:07 +00004838 return -EINVAL;
Auke Kok9a799d72007-09-15 14:07:45 -07004839
Emil Tantilov396e7992010-07-01 20:05:12 +00004840 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Alexander Duyck655309e2012-02-08 07:50:35 +00004841
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004842 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07004843 netdev->mtu = new_mtu;
4844
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004845 if (netif_running(netdev))
4846 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004847
4848 return 0;
4849}
4850
4851/**
4852 * ixgbe_open - Called when a network interface is made active
4853 * @netdev: network interface device structure
4854 *
4855 * Returns 0 on success, negative value on failure
4856 *
4857 * The open entry point is called when a network interface is made
4858 * active by the system (IFF_UP). At this point all resources needed
4859 * for transmit and receive operations are allocated, the interrupt
4860 * handler is registered with the OS, the watchdog timer is started,
4861 * and the stack is notified that the interface is ready.
4862 **/
4863static int ixgbe_open(struct net_device *netdev)
4864{
4865 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4866 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07004867
Auke Kok4bebfaa2008-02-11 09:26:01 -08004868 /* disallow open during test */
4869 if (test_bit(__IXGBE_TESTING, &adapter->state))
4870 return -EBUSY;
4871
Jesse Brandeburg54386462009-04-17 20:44:27 +00004872 netif_carrier_off(netdev);
4873
Auke Kok9a799d72007-09-15 14:07:45 -07004874 /* allocate transmit descriptors */
4875 err = ixgbe_setup_all_tx_resources(adapter);
4876 if (err)
4877 goto err_setup_tx;
4878
Auke Kok9a799d72007-09-15 14:07:45 -07004879 /* allocate receive descriptors */
4880 err = ixgbe_setup_all_rx_resources(adapter);
4881 if (err)
4882 goto err_setup_rx;
4883
4884 ixgbe_configure(adapter);
4885
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004886 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004887 if (err)
4888 goto err_req_irq;
4889
Alexander Duyckac802f52012-07-12 05:52:53 +00004890 /* Notify the stack of the actual queue counts. */
4891 err = netif_set_real_num_tx_queues(netdev,
4892 adapter->num_rx_pools > 1 ? 1 :
4893 adapter->num_tx_queues);
4894 if (err)
4895 goto err_set_queues;
4896
4897
4898 err = netif_set_real_num_rx_queues(netdev,
4899 adapter->num_rx_pools > 1 ? 1 :
4900 adapter->num_rx_queues);
4901 if (err)
4902 goto err_set_queues;
4903
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004904 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004905
4906 return 0;
4907
Alexander Duyckac802f52012-07-12 05:52:53 +00004908err_set_queues:
4909 ixgbe_free_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004910err_req_irq:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004911 ixgbe_free_all_rx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004912err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00004913 ixgbe_free_all_tx_resources(adapter);
Alexander Duyckde3d5b92012-05-18 06:33:47 +00004914err_setup_tx:
Auke Kok9a799d72007-09-15 14:07:45 -07004915 ixgbe_reset(adapter);
4916
4917 return err;
4918}
4919
4920/**
4921 * ixgbe_close - Disables a network interface
4922 * @netdev: network interface device structure
4923 *
4924 * Returns 0, this is not allowed to fail
4925 *
4926 * The close entry point is called when an interface is de-activated
4927 * by the OS. The hardware is still under the drivers control, but
4928 * needs to be disabled. A global MAC reset is issued to stop the
4929 * hardware, and all transmit and receive resources are freed.
4930 **/
4931static int ixgbe_close(struct net_device *netdev)
4932{
4933 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07004934
4935 ixgbe_down(adapter);
4936 ixgbe_free_irq(adapter);
4937
Alexander Duycke4911d52011-05-11 07:18:52 +00004938 ixgbe_fdir_filter_exit(adapter);
4939
Auke Kok9a799d72007-09-15 14:07:45 -07004940 ixgbe_free_all_tx_resources(adapter);
4941 ixgbe_free_all_rx_resources(adapter);
4942
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08004943 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004944
4945 return 0;
4946}
4947
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004948#ifdef CONFIG_PM
4949static int ixgbe_resume(struct pci_dev *pdev)
4950{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004951 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4952 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004953 u32 err;
4954
4955 pci_set_power_state(pdev, PCI_D0);
4956 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08004957 /*
4958 * pci_restore_state clears dev->state_saved so call
4959 * pci_save_state to restore it.
4960 */
4961 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00004962
4963 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004964 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004965 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004966 return err;
4967 }
4968 pci_set_master(pdev);
4969
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07004970 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004971
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004972 ixgbe_reset(adapter);
4973
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00004974 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
4975
Alexander Duyckac802f52012-07-12 05:52:53 +00004976 rtnl_lock();
4977 err = ixgbe_init_interrupt_scheme(adapter);
4978 if (!err && netif_running(netdev))
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004979 err = ixgbe_open(netdev);
Alexander Duyckac802f52012-07-12 05:52:53 +00004980
4981 rtnl_unlock();
4982
4983 if (err)
4984 return err;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004985
4986 netif_device_attach(netdev);
4987
4988 return 0;
4989}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004990#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00004991
4992static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004993{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08004994 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
4995 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004996 struct ixgbe_hw *hw = &adapter->hw;
4997 u32 ctrl, fctrl;
4998 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07004999#ifdef CONFIG_PM
5000 int retval = 0;
5001#endif
5002
5003 netif_device_detach(netdev);
5004
5005 if (netif_running(netdev)) {
Don Skidmoreab6039a2012-03-17 05:51:52 +00005006 rtnl_lock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005007 ixgbe_down(adapter);
5008 ixgbe_free_irq(adapter);
5009 ixgbe_free_all_tx_resources(adapter);
5010 ixgbe_free_all_rx_resources(adapter);
Don Skidmoreab6039a2012-03-17 05:51:52 +00005011 rtnl_unlock();
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005012 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005013
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005014 ixgbe_clear_interrupt_scheme(adapter);
5015
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005016#ifdef CONFIG_PM
5017 retval = pci_save_state(pdev);
5018 if (retval)
5019 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005020
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005021#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005022 if (wufc) {
5023 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005024
Don Skidmorec509e752012-04-05 08:12:05 +00005025 /*
5026 * enable the optics for both mult-speed fiber and
5027 * 82599 SFP+ fiber as we can WoL.
5028 */
5029 if (hw->mac.ops.enable_tx_laser &&
5030 (hw->phy.multispeed_fiber ||
5031 (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber &&
5032 hw->mac.type == ixgbe_mac_82599EB)))
5033 hw->mac.ops.enable_tx_laser(hw);
5034
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005035 /* turn on all-multi mode if wake on multicast is enabled */
5036 if (wufc & IXGBE_WUFC_MC) {
5037 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5038 fctrl |= IXGBE_FCTRL_MPE;
5039 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5040 }
5041
5042 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5043 ctrl |= IXGBE_CTRL_GIO_DIS;
5044 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5045
5046 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5047 } else {
5048 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5049 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5050 }
5051
Alexander Duyckbd508172010-11-16 19:27:03 -08005052 switch (hw->mac.type) {
5053 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005054 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005055 break;
5056 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005057 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005058 pci_wake_from_d3(pdev, !!wufc);
5059 break;
5060 default:
5061 break;
5062 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005063
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005064 *enable_wake = !!wufc;
5065
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005066 ixgbe_release_hw_control(adapter);
5067
5068 pci_disable_device(pdev);
5069
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005070 return 0;
5071}
5072
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005073#ifdef CONFIG_PM
5074static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5075{
5076 int retval;
5077 bool wake;
5078
5079 retval = __ixgbe_shutdown(pdev, &wake);
5080 if (retval)
5081 return retval;
5082
5083 if (wake) {
5084 pci_prepare_to_sleep(pdev);
5085 } else {
5086 pci_wake_from_d3(pdev, false);
5087 pci_set_power_state(pdev, PCI_D3hot);
5088 }
5089
5090 return 0;
5091}
5092#endif /* CONFIG_PM */
5093
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005094static void ixgbe_shutdown(struct pci_dev *pdev)
5095{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005096 bool wake;
5097
5098 __ixgbe_shutdown(pdev, &wake);
5099
5100 if (system_state == SYSTEM_POWER_OFF) {
5101 pci_wake_from_d3(pdev, wake);
5102 pci_set_power_state(pdev, PCI_D3hot);
5103 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005104}
5105
5106/**
Auke Kok9a799d72007-09-15 14:07:45 -07005107 * ixgbe_update_stats - Update the board statistics counters.
5108 * @adapter: board private structure
5109 **/
5110void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5111{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005112 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005113 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005114 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005115 u64 total_mpc = 0;
5116 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005117 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5118 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005119 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005120
Don Skidmored08935c2010-06-11 13:20:29 +00005121 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5122 test_bit(__IXGBE_RESETTING, &adapter->state))
5123 return;
5124
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005125 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005126 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005127 u64 rsc_flush = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005128 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005129 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5130 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005131 }
5132 adapter->rsc_total_count = rsc_count;
5133 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005134 }
5135
Alexander Duyck5b7da512010-11-16 19:26:50 -08005136 for (i = 0; i < adapter->num_rx_queues; i++) {
5137 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5138 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5139 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5140 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005141 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005142 bytes += rx_ring->stats.bytes;
5143 packets += rx_ring->stats.packets;
5144 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005145 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005146 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5147 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005148 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005149 netdev->stats.rx_bytes = bytes;
5150 netdev->stats.rx_packets = packets;
5151
5152 bytes = 0;
5153 packets = 0;
5154 /* gather some stats to the adapter struct that are per queue */
5155 for (i = 0; i < adapter->num_tx_queues; i++) {
5156 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5157 restart_queue += tx_ring->tx_stats.restart_queue;
5158 tx_busy += tx_ring->tx_stats.tx_busy;
5159 bytes += tx_ring->stats.bytes;
5160 packets += tx_ring->stats.packets;
5161 }
5162 adapter->restart_queue = restart_queue;
5163 adapter->tx_busy = tx_busy;
5164 netdev->stats.tx_bytes = bytes;
5165 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005166
Joe Perches7ca647b2010-09-07 21:35:40 +00005167 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005168
5169 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005170 for (i = 0; i < 8; i++) {
5171 /* for packet buffers not used, the register should read 0 */
5172 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5173 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005174 hwstats->mpc[i] += mpc;
5175 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005176 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5177 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005178 switch (hw->mac.type) {
5179 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005180 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5181 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5182 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005183 hwstats->pxonrxc[i] +=
5184 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005185 break;
5186 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005187 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005188 hwstats->pxonrxc[i] +=
5189 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005190 break;
5191 default:
5192 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005193 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005194 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005195
5196 /*16 register reads */
5197 for (i = 0; i < 16; i++) {
5198 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5199 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5200 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5201 (hw->mac.type == ixgbe_mac_X540)) {
5202 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5203 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5204 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5205 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5206 }
5207 }
5208
Joe Perches7ca647b2010-09-07 21:35:40 +00005209 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005210 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005211 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005212
John Fastabendc84d3242010-11-16 19:27:12 -08005213 ixgbe_update_xoff_received(adapter);
5214
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005215 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005216 switch (hw->mac.type) {
5217 case ixgbe_mac_82598EB:
5218 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005219 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5220 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5221 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5222 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005223 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005224 /* OS2BMC stats are X540 only*/
5225 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5226 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5227 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5228 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5229 case ixgbe_mac_82599EB:
Alexander Duycka4d4f622012-03-28 08:03:32 +00005230 for (i = 0; i < 16; i++)
5231 adapter->hw_rx_no_dma_resources +=
5232 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005233 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005234 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005235 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005236 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005237 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005238 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005239 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005240 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5241 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005242#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005243 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5244 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5245 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5246 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5247 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5248 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005249 /* Add up per cpu counters for total ddp aloc fail */
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005250 if (adapter->fcoe.ddp_pool) {
5251 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5252 struct ixgbe_fcoe_ddp_pool *ddp_pool;
5253 unsigned int cpu;
5254 u64 noddp = 0, noddp_ext_buff = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005255 for_each_possible_cpu(cpu) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005256 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
5257 noddp += ddp_pool->noddp;
5258 noddp_ext_buff += ddp_pool->noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005259 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +00005260 hwstats->fcoe_noddp = noddp;
5261 hwstats->fcoe_noddp_ext_buff = noddp_ext_buff;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005262 }
Yi Zou6d455222009-05-13 13:12:16 +00005263#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005264 break;
5265 default:
5266 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005267 }
Auke Kok9a799d72007-09-15 14:07:45 -07005268 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005269 hwstats->bprc += bprc;
5270 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005271 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005272 hwstats->mprc -= bprc;
5273 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5274 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5275 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5276 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5277 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5278 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5279 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5280 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005281 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005282 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005283 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005284 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005285 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5286 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005287 /*
5288 * 82598 errata - tx of flow control packets is included in tx counters
5289 */
5290 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005291 hwstats->gptc -= xon_off_tot;
5292 hwstats->mptc -= xon_off_tot;
5293 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5294 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5295 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5296 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5297 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5298 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5299 hwstats->ptc64 -= xon_off_tot;
5300 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5301 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5302 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5303 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5304 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5305 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005306
5307 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005308 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005309
5310 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005311 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005312 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005313 netdev->stats.rx_length_errors = hwstats->rlec;
5314 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005315 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005316}
5317
5318/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005319 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005320 * @adapter: pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005321 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005322static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005323{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005324 struct ixgbe_hw *hw = &adapter->hw;
5325 int i;
5326
Alexander Duyckd034acf2011-04-27 09:25:34 +00005327 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5328 return;
5329
5330 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5331
5332 /* if interface is down do nothing */
5333 if (test_bit(__IXGBE_DOWN, &adapter->state))
5334 return;
5335
5336 /* do nothing if we are not using signature filters */
5337 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5338 return;
5339
5340 adapter->fdir_overflow++;
5341
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005342 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5343 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005344 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005345 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005346 /* re-enable flow director interrupts */
5347 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005348 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005349 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005350 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005351 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005352}
5353
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005354/**
5355 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005356 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005357 *
5358 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005359 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005360 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005361 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005362 */
5363static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5364{
Auke Kok9a799d72007-09-15 14:07:45 -07005365 struct ixgbe_hw *hw = &adapter->hw;
5366 u64 eics = 0;
5367 int i;
5368
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005369 /* If we're down or resetting, just bail */
5370 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5371 test_bit(__IXGBE_RESETTING, &adapter->state))
5372 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005373
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005374 /* Force detection of hung controller */
5375 if (netif_carrier_ok(adapter->netdev)) {
5376 for (i = 0; i < adapter->num_tx_queues; i++)
5377 set_check_for_tx_hang(adapter->tx_ring[i]);
5378 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005379
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005380 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005381 /*
5382 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005383 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005384 * would set *both* EIMS and EICS for any bit in EIAM
5385 */
5386 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5387 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005388 } else {
5389 /* get one bit for every active tx/rx interrupt vector */
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00005390 for (i = 0; i < adapter->num_q_vectors; i++) {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005391 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00005392 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005393 eics |= ((u64)1 << i);
5394 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005395 }
5396
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005397 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005398 ixgbe_irq_rearm_queues(adapter, eics);
5399
Alexander Duyckfe49f042009-06-04 16:00:09 +00005400}
5401
5402/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005403 * ixgbe_watchdog_update_link - update the link status
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005404 * @adapter: pointer to the device adapter structure
5405 * @link_speed: pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005406 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005407static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005408{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005409 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005410 u32 link_speed = adapter->link_speed;
5411 bool link_up = adapter->link_up;
Alexander Duyck041441d2012-04-19 17:48:48 +00005412 bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005413
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005414 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5415 return;
5416
5417 if (hw->mac.ops.check_link) {
5418 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005419 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005420 /* always assume link is up, if no check link function */
5421 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
5422 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005423 }
Alexander Duyck041441d2012-04-19 17:48:48 +00005424
5425 if (adapter->ixgbe_ieee_pfc)
5426 pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
5427
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005428 if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
Alexander Duyck041441d2012-04-19 17:48:48 +00005429 hw->mac.ops.fc_enable(hw);
Alexander Duyck3ebe8fd2012-04-25 04:36:38 +00005430 ixgbe_set_rx_drop_en(adapter);
5431 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005432
5433 if (link_up ||
5434 time_after(jiffies, (adapter->link_check_timeout +
5435 IXGBE_TRY_LINK_TIMEOUT))) {
5436 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5437 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
5438 IXGBE_WRITE_FLUSH(hw);
5439 }
5440
5441 adapter->link_up = link_up;
5442 adapter->link_speed = link_speed;
5443}
5444
5445/**
5446 * ixgbe_watchdog_link_is_up - update netif_carrier status and
5447 * print link up message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005448 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005449 **/
5450static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
5451{
5452 struct net_device *netdev = adapter->netdev;
5453 struct ixgbe_hw *hw = &adapter->hw;
5454 u32 link_speed = adapter->link_speed;
5455 bool flow_rx, flow_tx;
5456
5457 /* only continue if link was previously down */
5458 if (netif_carrier_ok(netdev))
5459 return;
5460
5461 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
5462
5463 switch (hw->mac.type) {
5464 case ixgbe_mac_82598EB: {
5465 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5466 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
5467 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
5468 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
5469 }
5470 break;
5471 case ixgbe_mac_X540:
5472 case ixgbe_mac_82599EB: {
5473 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
5474 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
5475 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
5476 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
5477 }
5478 break;
5479 default:
5480 flow_tx = false;
5481 flow_rx = false;
5482 break;
5483 }
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005484
5485#ifdef CONFIG_IXGBE_PTP
5486 ixgbe_ptp_start_cyclecounter(adapter);
5487#endif
5488
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005489 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
5490 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
5491 "10 Gbps" :
5492 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
5493 "1 Gbps" :
5494 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
5495 "100 Mbps" :
5496 "unknown speed"))),
5497 ((flow_rx && flow_tx) ? "RX/TX" :
5498 (flow_rx ? "RX" :
5499 (flow_tx ? "TX" : "None"))));
5500
5501 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005502 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005503
5504 /* ping all the active vfs to let them know link has changed */
5505 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005506}
5507
5508/**
5509 * ixgbe_watchdog_link_is_down - update netif_carrier status and
5510 * print link down message
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005511 * @adapter: pointer to the adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005512 **/
Alexander Duyck581330b2012-02-08 07:51:47 +00005513static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005514{
5515 struct net_device *netdev = adapter->netdev;
5516 struct ixgbe_hw *hw = &adapter->hw;
5517
5518 adapter->link_up = false;
5519 adapter->link_speed = 0;
5520
5521 /* only continue if link was up previously */
5522 if (!netif_carrier_ok(netdev))
5523 return;
5524
5525 /* poll for SFP+ cable when link is down */
5526 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
5527 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
5528
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005529#ifdef CONFIG_IXGBE_PTP
5530 ixgbe_ptp_start_cyclecounter(adapter);
5531#endif
5532
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005533 e_info(drv, "NIC Link is Down\n");
5534 netif_carrier_off(netdev);
Alexander Duyckbefa2af2012-05-05 05:30:38 +00005535
5536 /* ping all the active vfs to let them know link has changed */
5537 ixgbe_ping_all_vfs(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005538}
5539
5540/**
5541 * ixgbe_watchdog_flush_tx - flush queues on link down
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005542 * @adapter: pointer to the device adapter structure
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005543 **/
5544static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
5545{
5546 int i;
5547 int some_tx_pending = 0;
5548
5549 if (!netif_carrier_ok(adapter->netdev)) {
5550 for (i = 0; i < adapter->num_tx_queues; i++) {
5551 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5552 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
5553 some_tx_pending = 1;
5554 break;
5555 }
5556 }
5557
5558 if (some_tx_pending) {
5559 /* We've lost link, so the controller stops DMA,
5560 * but we've got queued Tx work that's never going
5561 * to get done, so reset controller to flush Tx.
5562 * (Do the reset outside of interrupt context).
5563 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005564 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005565 }
5566 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005567}
5568
Greg Rosea985b6c32010-11-18 03:02:52 +00005569static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
5570{
5571 u32 ssvpc;
5572
Greg Rose0584d992012-08-08 00:00:58 +00005573 /* Do not perform spoof check for 82598 or if not in IOV mode */
5574 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
5575 adapter->num_vfs == 0)
Greg Rosea985b6c32010-11-18 03:02:52 +00005576 return;
5577
5578 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
5579
5580 /*
5581 * ssvpc register is cleared on read, if zero then no
5582 * spoofed packets in the last interval.
5583 */
5584 if (!ssvpc)
5585 return;
5586
Emil Tantilovd6ea0752012-08-08 06:28:37 +00005587 e_warn(drv, "%u Spoofed packets detected\n", ssvpc);
Greg Rosea985b6c32010-11-18 03:02:52 +00005588}
5589
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005590/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005591 * ixgbe_watchdog_subtask - check and bring link up
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005592 * @adapter: pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005593 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005594static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005595{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005596 /* if interface is down do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00005597 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5598 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005599 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005600
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005601 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00005602
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005603 if (adapter->link_up)
5604 ixgbe_watchdog_link_is_up(adapter);
5605 else
5606 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005607
Greg Rosea985b6c32010-11-18 03:02:52 +00005608 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005609 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005610
5611 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005612}
5613
Alexander Duyck70864002011-04-27 09:13:56 +00005614/**
5615 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005616 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005617 **/
5618static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
5619{
5620 struct ixgbe_hw *hw = &adapter->hw;
5621 s32 err;
5622
5623 /* not searching for SFP so there is nothing to do here */
5624 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
5625 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5626 return;
5627
5628 /* someone else is in init, wait until next service event */
5629 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5630 return;
5631
5632 err = hw->phy.ops.identify_sfp(hw);
5633 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5634 goto sfp_out;
5635
5636 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
5637 /* If no cable is present, then we need to reset
5638 * the next time we find a good cable. */
5639 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
5640 }
5641
5642 /* exit on error */
5643 if (err)
5644 goto sfp_out;
5645
5646 /* exit if reset not needed */
5647 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5648 goto sfp_out;
5649
5650 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
5651
5652 /*
5653 * A module may be identified correctly, but the EEPROM may not have
5654 * support for that module. setup_sfp() will fail in that case, so
5655 * we should not allow that module to load.
5656 */
5657 if (hw->mac.type == ixgbe_mac_82598EB)
5658 err = hw->phy.ops.reset(hw);
5659 else
5660 err = hw->mac.ops.setup_sfp(hw);
5661
5662 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5663 goto sfp_out;
5664
5665 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
5666 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
5667
5668sfp_out:
5669 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5670
5671 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
5672 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
5673 e_dev_err("failed to initialize because an unsupported "
5674 "SFP+ module type was detected.\n");
5675 e_dev_err("Reload the driver after installing a "
5676 "supported module.\n");
5677 unregister_netdev(adapter->netdev);
5678 }
5679}
5680
5681/**
5682 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
Ben Hutchings49ce9c22012-07-10 10:56:00 +00005683 * @adapter: the ixgbe adapter structure
Alexander Duyck70864002011-04-27 09:13:56 +00005684 **/
5685static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
5686{
5687 struct ixgbe_hw *hw = &adapter->hw;
5688 u32 autoneg;
5689 bool negotiation;
5690
5691 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
5692 return;
5693
5694 /* someone else is in init, wait until next service event */
5695 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5696 return;
5697
5698 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
5699
5700 autoneg = hw->phy.autoneg_advertised;
5701 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
5702 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Alexander Duyck70864002011-04-27 09:13:56 +00005703 if (hw->mac.ops.setup_link)
5704 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
5705
5706 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5707 adapter->link_check_timeout = jiffies;
5708 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5709}
5710
Greg Rose83c61fa2011-09-07 05:59:35 +00005711#ifdef CONFIG_PCI_IOV
5712static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
5713{
5714 int vf;
5715 struct ixgbe_hw *hw = &adapter->hw;
5716 struct net_device *netdev = adapter->netdev;
5717 u32 gpc;
5718 u32 ciaa, ciad;
5719
5720 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
5721 if (gpc) /* If incrementing then no need for the check below */
5722 return;
5723 /*
5724 * Check to see if a bad DMA write target from an errant or
5725 * malicious VF has caused a PCIe error. If so then we can
5726 * issue a VFLR to the offending VF(s) and then resume without
5727 * requesting a full slot reset.
5728 */
5729
5730 for (vf = 0; vf < adapter->num_vfs; vf++) {
5731 ciaa = (vf << 16) | 0x80000000;
5732 /* 32 bit read so align, we really want status at offset 6 */
5733 ciaa |= PCI_COMMAND;
5734 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5735 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
5736 ciaa &= 0x7FFFFFFF;
5737 /* disable debug mode asap after reading data */
5738 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5739 /* Get the upper 16 bits which will be the PCI status reg */
5740 ciad >>= 16;
5741 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
5742 netdev_err(netdev, "VF %d Hung DMA\n", vf);
5743 /* Issue VFLR */
5744 ciaa = (vf << 16) | 0x80000000;
5745 ciaa |= 0xA8;
5746 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5747 ciad = 0x00008000; /* VFLR */
5748 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
5749 ciaa &= 0x7FFFFFFF;
5750 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
5751 }
5752 }
5753}
5754
5755#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005756/**
5757 * ixgbe_service_timer - Timer Call-back
5758 * @data: pointer to adapter cast into an unsigned long
5759 **/
5760static void ixgbe_service_timer(unsigned long data)
5761{
5762 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
5763 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00005764 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00005765
5766 /* poll faster when waiting for link */
5767 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
5768 next_event_offset = HZ / 10;
5769 else
5770 next_event_offset = HZ * 2;
5771
Greg Rose83c61fa2011-09-07 05:59:35 +00005772#ifdef CONFIG_PCI_IOV
Alexander Duyck6bb78cf2012-02-08 07:51:22 +00005773 /*
5774 * don't bother with SR-IOV VF DMA hang check if there are
5775 * no VFs or the link is down
5776 */
5777 if (!adapter->num_vfs ||
5778 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5779 goto normal_timer_service;
5780
5781 /* If we have VFs allocated then we must check for DMA hangs */
5782 ixgbe_check_for_bad_vf(adapter);
5783 next_event_offset = HZ / 50;
5784 adapter->timer_event_accumulator++;
5785
5786 if (adapter->timer_event_accumulator >= 100)
5787 adapter->timer_event_accumulator = 0;
5788 else
5789 ready = false;
5790
5791normal_timer_service:
Greg Rose83c61fa2011-09-07 05:59:35 +00005792#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005793 /* Reset the timer */
5794 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
5795
Greg Rose83c61fa2011-09-07 05:59:35 +00005796 if (ready)
5797 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005798}
5799
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005800static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
5801{
5802 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
5803 return;
5804
5805 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
5806
5807 /* If we're already down or resetting, just bail */
5808 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5809 test_bit(__IXGBE_RESETTING, &adapter->state))
5810 return;
5811
5812 ixgbe_dump(adapter);
5813 netdev_err(adapter->netdev, "Reset adapter\n");
5814 adapter->tx_timeout_count++;
5815
5816 ixgbe_reinit_locked(adapter);
5817}
5818
Alexander Duyck70864002011-04-27 09:13:56 +00005819/**
5820 * ixgbe_service_task - manages and runs subtasks
5821 * @work: pointer to work_struct containing our data
5822 **/
5823static void ixgbe_service_task(struct work_struct *work)
5824{
5825 struct ixgbe_adapter *adapter = container_of(work,
5826 struct ixgbe_adapter,
5827 service_task);
5828
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005829 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00005830 ixgbe_sfp_detection_subtask(adapter);
5831 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00005832 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005833 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00005834 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005835 ixgbe_check_hang_subtask(adapter);
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005836#ifdef CONFIG_IXGBE_PTP
5837 ixgbe_ptp_overflow_check(adapter);
5838#endif
Alexander Duyck70864002011-04-27 09:13:56 +00005839
5840 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005841}
5842
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005843static int ixgbe_tso(struct ixgbe_ring *tx_ring,
5844 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005845 u8 *hdr_len)
Alexander Duyck897ab152011-05-27 05:31:47 +00005846{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005847 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005848 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005849 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07005850
Alexander Duyck897ab152011-05-27 05:31:47 +00005851 if (!skb_is_gso(skb))
5852 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005853
Alexander Duyck897ab152011-05-27 05:31:47 +00005854 if (skb_header_cloned(skb)) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00005855 int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Alexander Duyck897ab152011-05-27 05:31:47 +00005856 if (err)
5857 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00005858 }
5859
Alexander Duyck897ab152011-05-27 05:31:47 +00005860 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
5861 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
5862
Alexander Duyck244e27a2012-02-08 07:51:11 +00005863 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005864 struct iphdr *iph = ip_hdr(skb);
5865 iph->tot_len = 0;
5866 iph->check = 0;
5867 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
5868 iph->daddr, 0,
5869 IPPROTO_TCP,
5870 0);
5871 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005872 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5873 IXGBE_TX_FLAGS_CSUM |
5874 IXGBE_TX_FLAGS_IPV4;
Alexander Duyck897ab152011-05-27 05:31:47 +00005875 } else if (skb_is_gso_v6(skb)) {
5876 ipv6_hdr(skb)->payload_len = 0;
5877 tcp_hdr(skb)->check =
5878 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
5879 &ipv6_hdr(skb)->daddr,
5880 0, IPPROTO_TCP, 0);
Alexander Duyck244e27a2012-02-08 07:51:11 +00005881 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
5882 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck897ab152011-05-27 05:31:47 +00005883 }
5884
Alexander Duyck091a6242012-02-08 07:51:01 +00005885 /* compute header lengths */
Alexander Duyck897ab152011-05-27 05:31:47 +00005886 l4len = tcp_hdrlen(skb);
5887 *hdr_len = skb_transport_offset(skb) + l4len;
5888
Alexander Duyck091a6242012-02-08 07:51:01 +00005889 /* update gso size and bytecount with header size */
5890 first->gso_segs = skb_shinfo(skb)->gso_segs;
5891 first->bytecount += (first->gso_segs - 1) * *hdr_len;
5892
Alexander Duyck897ab152011-05-27 05:31:47 +00005893 /* mss_l4len_id: use 1 as index for TSO */
5894 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
5895 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
5896 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
5897
5898 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
5899 vlan_macip_lens = skb_network_header_len(skb);
5900 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005901 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005902
5903 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
Alexander Duyck244e27a2012-02-08 07:51:11 +00005904 mss_l4len_idx);
Alexander Duyck897ab152011-05-27 05:31:47 +00005905
5906 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00005907}
5908
Alexander Duyck244e27a2012-02-08 07:51:11 +00005909static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
5910 struct ixgbe_tx_buffer *first)
Auke Kok9a799d72007-09-15 14:07:45 -07005911{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00005912 struct sk_buff *skb = first->skb;
Alexander Duyck897ab152011-05-27 05:31:47 +00005913 u32 vlan_macip_lens = 0;
5914 u32 mss_l4len_idx = 0;
5915 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005916
Alexander Duyck897ab152011-05-27 05:31:47 +00005917 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck62748b72012-07-20 08:09:01 +00005918 if (!(first->tx_flags & IXGBE_TX_FLAGS_HW_VLAN)) {
5919 if (unlikely(skb->no_fcs))
5920 first->tx_flags |= IXGBE_TX_FLAGS_NO_IFCS;
5921 if (!(first->tx_flags & IXGBE_TX_FLAGS_TXSW))
5922 return;
5923 }
Alexander Duyck897ab152011-05-27 05:31:47 +00005924 } else {
5925 u8 l4_hdr = 0;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005926 switch (first->protocol) {
Alexander Duyck897ab152011-05-27 05:31:47 +00005927 case __constant_htons(ETH_P_IP):
5928 vlan_macip_lens |= skb_network_header_len(skb);
5929 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
5930 l4_hdr = ip_hdr(skb)->protocol;
5931 break;
5932 case __constant_htons(ETH_P_IPV6):
5933 vlan_macip_lens |= skb_network_header_len(skb);
5934 l4_hdr = ipv6_hdr(skb)->nexthdr;
5935 break;
5936 default:
5937 if (unlikely(net_ratelimit())) {
5938 dev_warn(tx_ring->dev,
5939 "partial checksum but proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005940 first->protocol);
Alexander Duyck897ab152011-05-27 05:31:47 +00005941 }
5942 break;
5943 }
Auke Kok9a799d72007-09-15 14:07:45 -07005944
Alexander Duyck897ab152011-05-27 05:31:47 +00005945 switch (l4_hdr) {
5946 case IPPROTO_TCP:
5947 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
5948 mss_l4len_idx = tcp_hdrlen(skb) <<
5949 IXGBE_ADVTXD_L4LEN_SHIFT;
5950 break;
5951 case IPPROTO_SCTP:
5952 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
5953 mss_l4len_idx = sizeof(struct sctphdr) <<
5954 IXGBE_ADVTXD_L4LEN_SHIFT;
5955 break;
5956 case IPPROTO_UDP:
5957 mss_l4len_idx = sizeof(struct udphdr) <<
5958 IXGBE_ADVTXD_L4LEN_SHIFT;
5959 break;
5960 default:
5961 if (unlikely(net_ratelimit())) {
5962 dev_warn(tx_ring->dev,
5963 "partial checksum but l4 proto=%x!\n",
Alexander Duyck244e27a2012-02-08 07:51:11 +00005964 l4_hdr);
Alexander Duyck897ab152011-05-27 05:31:47 +00005965 }
5966 break;
5967 }
Alexander Duyck244e27a2012-02-08 07:51:11 +00005968
5969 /* update TX checksum flag */
5970 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07005971 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005972
Alexander Duyck244e27a2012-02-08 07:51:11 +00005973 /* vlan_macip_lens: MACLEN, VLAN tag */
Alexander Duyck897ab152011-05-27 05:31:47 +00005974 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +00005975 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck897ab152011-05-27 05:31:47 +00005976
5977 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
5978 type_tucmd, mss_l4len_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07005979}
5980
Alexander Duyckd3d00232011-07-15 02:31:25 +00005981static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
5982{
5983 /* set type for advanced descriptor with frame checksum insertion */
5984 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
Alexander Duyckd3d00232011-07-15 02:31:25 +00005985 IXGBE_ADVTXD_DCMD_DEXT);
5986
5987 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00005988 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00005989 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
5990
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00005991#ifdef CONFIG_IXGBE_PTP
5992 if (tx_flags & IXGBE_TX_FLAGS_TSTAMP)
5993 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_MAC_TSTAMP);
5994#endif
5995
Alexander Duyckd3d00232011-07-15 02:31:25 +00005996 /* set segmentation enable bits for TSO/FSO */
5997#ifdef IXGBE_FCOE
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00005998 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FSO))
Alexander Duyckd3d00232011-07-15 02:31:25 +00005999#else
6000 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6001#endif
6002 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
6003
Alexander Duyck62748b72012-07-20 08:09:01 +00006004 /* insert frame checksum */
6005 if (!(tx_flags & IXGBE_TX_FLAGS_NO_IFCS))
6006 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_IFCS);
6007
Alexander Duyckd3d00232011-07-15 02:31:25 +00006008 return cmd_type;
6009}
6010
Alexander Duyck729739b2012-02-08 07:51:06 +00006011static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
6012 u32 tx_flags, unsigned int paylen)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006013{
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006014 __le32 olinfo_status = cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006015
6016 /* enable L4 checksum for TSO and TX checksum offload */
6017 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6018 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
6019
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006020 /* enble IPv4 checksum for TSO */
6021 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6022 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006023
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006024 /* use index 1 context for TSO/FSO/FCOE */
6025#ifdef IXGBE_FCOE
6026 if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FCOE))
6027#else
6028 if (tx_flags & IXGBE_TX_FLAGS_TSO)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006029#endif
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006030 olinfo_status |= cpu_to_le32(1 << IXGBE_ADVTXD_IDX_SHIFT);
6031
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006032 /*
6033 * Check Context must be set if Tx switch is enabled, which it
6034 * always is for case where virtual functions are running
6035 */
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006036#ifdef IXGBE_FCOE
6037 if (tx_flags & (IXGBE_TX_FLAGS_TXSW | IXGBE_TX_FLAGS_FCOE))
6038#else
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006039 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
Alexander Duyck93f5b3c2012-02-08 07:50:45 +00006040#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006041 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
6042
Alexander Duyck729739b2012-02-08 07:51:06 +00006043 tx_desc->read.olinfo_status = olinfo_status;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006044}
6045
6046#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6047 IXGBE_TXD_CMD_RS)
6048
6049static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006050 struct ixgbe_tx_buffer *first,
Alexander Duyckd3d00232011-07-15 02:31:25 +00006051 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006052{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006053 dma_addr_t dma;
Alexander Duyck729739b2012-02-08 07:51:06 +00006054 struct sk_buff *skb = first->skb;
6055 struct ixgbe_tx_buffer *tx_buffer;
6056 union ixgbe_adv_tx_desc *tx_desc;
6057 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
Alexander Duyckd3d00232011-07-15 02:31:25 +00006058 unsigned int data_len = skb->data_len;
6059 unsigned int size = skb_headlen(skb);
Alexander Duyck729739b2012-02-08 07:51:06 +00006060 unsigned int paylen = skb->len - hdr_len;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006061 u32 tx_flags = first->tx_flags;
Alexander Duyck729739b2012-02-08 07:51:06 +00006062 __le32 cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006063 u16 i = tx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07006064
Alexander Duyck729739b2012-02-08 07:51:06 +00006065 tx_desc = IXGBE_TX_DESC(tx_ring, i);
6066
6067 ixgbe_tx_olinfo_status(tx_desc, tx_flags, paylen);
6068 cmd_type = ixgbe_tx_cmd_type(tx_flags);
6069
Alexander Duyckd3d00232011-07-15 02:31:25 +00006070#ifdef IXGBE_FCOE
6071 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006072 if (data_len < sizeof(struct fcoe_crc_eof)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006073 size -= sizeof(struct fcoe_crc_eof) - data_len;
6074 data_len = 0;
Alexander Duyck729739b2012-02-08 07:51:06 +00006075 } else {
6076 data_len -= sizeof(struct fcoe_crc_eof);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006077 }
Auke Kok9a799d72007-09-15 14:07:45 -07006078 }
6079
Alexander Duyckd3d00232011-07-15 02:31:25 +00006080#endif
Alexander Duyck729739b2012-02-08 07:51:06 +00006081 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
6082 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006083 goto dma_error;
6084
Alexander Duyck729739b2012-02-08 07:51:06 +00006085 /* record length, and DMA address */
6086 dma_unmap_len_set(first, len, size);
6087 dma_unmap_addr_set(first, dma, dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006088
Alexander Duyck729739b2012-02-08 07:51:06 +00006089 tx_desc->read.buffer_addr = cpu_to_le64(dma);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006090
6091 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006092 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
Alexander Duyckd3d00232011-07-15 02:31:25 +00006093 tx_desc->read.cmd_type_len =
6094 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006095
Alexander Duyckd3d00232011-07-15 02:31:25 +00006096 i++;
Alexander Duyck729739b2012-02-08 07:51:06 +00006097 tx_desc++;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006098 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006099 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006100 i = 0;
6101 }
Alexander Duyck729739b2012-02-08 07:51:06 +00006102
6103 dma += IXGBE_MAX_DATA_PER_TXD;
6104 size -= IXGBE_MAX_DATA_PER_TXD;
6105
6106 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6107 tx_desc->read.olinfo_status = 0;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006108 }
6109
Alexander Duyck729739b2012-02-08 07:51:06 +00006110 if (likely(!data_len))
6111 break;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006112
Alexander Duyckd3d00232011-07-15 02:31:25 +00006113 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006114
Alexander Duyck729739b2012-02-08 07:51:06 +00006115 i++;
6116 tx_desc++;
6117 if (i == tx_ring->count) {
6118 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
6119 i = 0;
6120 }
Auke Kok9a799d72007-09-15 14:07:45 -07006121
Alexander Duyckd3d00232011-07-15 02:31:25 +00006122#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006123 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006124#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006125 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006126#endif
6127 data_len -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006128
Alexander Duyck729739b2012-02-08 07:51:06 +00006129 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
6130 DMA_TO_DEVICE);
6131 if (dma_mapping_error(tx_ring->dev, dma))
Alexander Duyckd3d00232011-07-15 02:31:25 +00006132 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006133
Alexander Duyck729739b2012-02-08 07:51:06 +00006134 tx_buffer = &tx_ring->tx_buffer_info[i];
6135 dma_unmap_len_set(tx_buffer, len, size);
6136 dma_unmap_addr_set(tx_buffer, dma, dma);
6137
6138 tx_desc->read.buffer_addr = cpu_to_le64(dma);
6139 tx_desc->read.olinfo_status = 0;
6140
6141 frag++;
Auke Kok9a799d72007-09-15 14:07:45 -07006142 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006143
Alexander Duyck729739b2012-02-08 07:51:06 +00006144 /* write last descriptor with RS and EOP bits */
6145 cmd_type |= cpu_to_le32(size) | cpu_to_le32(IXGBE_TXD_CMD);
6146 tx_desc->read.cmd_type_len = cmd_type;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006147
Alexander Duyck091a6242012-02-08 07:51:01 +00006148 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Alexander Duyckb2d96e02012-02-07 08:14:33 +00006149
Alexander Duyckd3d00232011-07-15 02:31:25 +00006150 /* set the timestamp */
6151 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006152
6153 /*
Alexander Duyck729739b2012-02-08 07:51:06 +00006154 * Force memory writes to complete before letting h/w know there
6155 * are new descriptors to fetch. (Only applicable for weak-ordered
6156 * memory model archs, such as IA-64).
6157 *
6158 * We also need this memory barrier to make certain all of the
6159 * status bits have been updated before next_to_watch is written.
Auke Kok9a799d72007-09-15 14:07:45 -07006160 */
6161 wmb();
6162
Alexander Duyckd3d00232011-07-15 02:31:25 +00006163 /* set next_to_watch value indicating a packet is present */
6164 first->next_to_watch = tx_desc;
6165
Alexander Duyck729739b2012-02-08 07:51:06 +00006166 i++;
6167 if (i == tx_ring->count)
6168 i = 0;
6169
6170 tx_ring->next_to_use = i;
6171
Alexander Duyckd3d00232011-07-15 02:31:25 +00006172 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006173 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006174
6175 return;
6176dma_error:
Alexander Duyck729739b2012-02-08 07:51:06 +00006177 dev_err(tx_ring->dev, "TX DMA map failed\n");
Alexander Duyckd3d00232011-07-15 02:31:25 +00006178
6179 /* clear dma mappings for failed tx_buffer_info map */
6180 for (;;) {
Alexander Duyck729739b2012-02-08 07:51:06 +00006181 tx_buffer = &tx_ring->tx_buffer_info[i];
6182 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
6183 if (tx_buffer == first)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006184 break;
6185 if (i == 0)
6186 i = tx_ring->count;
6187 i--;
6188 }
6189
Alexander Duyckd3d00232011-07-15 02:31:25 +00006190 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006191}
6192
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006193static void ixgbe_atr(struct ixgbe_ring *ring,
Alexander Duyck244e27a2012-02-08 07:51:11 +00006194 struct ixgbe_tx_buffer *first)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006195{
Alexander Duyck69830522011-01-06 14:29:58 +00006196 struct ixgbe_q_vector *q_vector = ring->q_vector;
6197 union ixgbe_atr_hash_dword input = { .dword = 0 };
6198 union ixgbe_atr_hash_dword common = { .dword = 0 };
6199 union {
6200 unsigned char *network;
6201 struct iphdr *ipv4;
6202 struct ipv6hdr *ipv6;
6203 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006204 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006205 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006206
Alexander Duyck69830522011-01-06 14:29:58 +00006207 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6208 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006209 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006210
Alexander Duyck69830522011-01-06 14:29:58 +00006211 /* do nothing if sampling is disabled */
6212 if (!ring->atr_sample_rate)
6213 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006214
Alexander Duyck69830522011-01-06 14:29:58 +00006215 ring->atr_count++;
6216
6217 /* snag network header to get L4 type and address */
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006218 hdr.network = skb_network_header(first->skb);
Alexander Duyck69830522011-01-06 14:29:58 +00006219
6220 /* Currently only IPv4/IPv6 with TCP is supported */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006221 if ((first->protocol != __constant_htons(ETH_P_IPV6) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006222 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
Alexander Duyck244e27a2012-02-08 07:51:11 +00006223 (first->protocol != __constant_htons(ETH_P_IP) ||
Alexander Duyck69830522011-01-06 14:29:58 +00006224 hdr.ipv4->protocol != IPPROTO_TCP))
6225 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006226
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006227 th = tcp_hdr(first->skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006228
Alexander Duyck66f32a82011-06-29 05:43:22 +00006229 /* skip this packet since it is invalid or the socket is closing */
6230 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006231 return;
6232
6233 /* sample on all syn packets or once every atr sample count */
6234 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6235 return;
6236
6237 /* reset sample count */
6238 ring->atr_count = 0;
6239
Alexander Duyck244e27a2012-02-08 07:51:11 +00006240 vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
Alexander Duyck69830522011-01-06 14:29:58 +00006241
6242 /*
6243 * src and dst are inverted, think how the receiver sees them
6244 *
6245 * The input is broken into two sections, a non-compressed section
6246 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6247 * is XORed together and stored in the compressed dword.
6248 */
6249 input.formatted.vlan_id = vlan_id;
6250
6251 /*
6252 * since src port and flex bytes occupy the same word XOR them together
6253 * and write the value to source port portion of compressed dword
6254 */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006255 if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006256 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6257 else
Alexander Duyck244e27a2012-02-08 07:51:11 +00006258 common.port.src ^= th->dest ^ first->protocol;
Alexander Duyck69830522011-01-06 14:29:58 +00006259 common.port.dst ^= th->source;
6260
Alexander Duyck244e27a2012-02-08 07:51:11 +00006261 if (first->protocol == __constant_htons(ETH_P_IP)) {
Alexander Duyck69830522011-01-06 14:29:58 +00006262 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6263 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6264 } else {
6265 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6266 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6267 hdr.ipv6->saddr.s6_addr32[1] ^
6268 hdr.ipv6->saddr.s6_addr32[2] ^
6269 hdr.ipv6->saddr.s6_addr32[3] ^
6270 hdr.ipv6->daddr.s6_addr32[0] ^
6271 hdr.ipv6->daddr.s6_addr32[1] ^
6272 hdr.ipv6->daddr.s6_addr32[2] ^
6273 hdr.ipv6->daddr.s6_addr32[3];
6274 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006275
6276 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006277 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6278 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006279}
6280
Alexander Duyck63544e92011-05-27 05:31:42 +00006281static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006282{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006283 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006284 /* Herbert's original patch had:
6285 * smp_mb__after_netif_stop_queue();
6286 * but since that doesn't exist yet, just open code it. */
6287 smp_mb();
6288
6289 /* We need to check again in a case another CPU has just
6290 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006291 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006292 return -EBUSY;
6293
6294 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006295 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006296 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006297 return 0;
6298}
6299
Alexander Duyck82d4e462011-06-11 01:44:58 +00006300static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006301{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006302 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006303 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006304 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006305}
6306
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006307static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6308{
6309 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006310 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6311 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006312#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006313 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006314
John Fastabende5b64632011-03-08 03:44:52 +00006315 if (((protocol == htons(ETH_P_FCOE)) ||
6316 (protocol == htons(ETH_P_FIP))) &&
6317 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyckc0876632012-05-10 00:01:46 +00006318 struct ixgbe_ring_feature *f;
6319
6320 f = &adapter->ring_feature[RING_F_FCOE];
6321
6322 while (txq >= f->indices)
6323 txq -= f->indices;
Alexander Duycke4b317e2012-05-05 05:30:53 +00006324 txq += adapter->ring_feature[RING_F_FCOE].offset;
Alexander Duyckc0876632012-05-10 00:01:46 +00006325
John Fastabende5b64632011-03-08 03:44:52 +00006326 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006327 }
6328#endif
6329
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006330 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6331 while (unlikely(txq >= dev->real_num_tx_queues))
6332 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006333 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006334 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006335
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006336 return skb_tx_hash(dev, skb);
6337}
6338
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006339netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006340 struct ixgbe_adapter *adapter,
6341 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006342{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006343 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006344 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006345 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006346#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6347 unsigned short f;
6348#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006349 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006350 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006351 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006352
Alexander Duycka535c302011-05-27 05:31:52 +00006353 /*
6354 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00006355 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00006356 * + 2 desc gap to keep tail from touching head,
6357 * + 1 desc for context descriptor,
6358 * otherwise try next time
6359 */
6360#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6361 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6362 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6363#else
6364 count += skb_shinfo(skb)->nr_frags;
6365#endif
6366 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6367 tx_ring->tx_stats.tx_busy++;
6368 return NETDEV_TX_BUSY;
6369 }
6370
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006371 /* record the location of the first descriptor for this packet */
6372 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
6373 first->skb = skb;
Alexander Duyck091a6242012-02-08 07:51:01 +00006374 first->bytecount = skb->len;
6375 first->gso_segs = 1;
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006376
Alexander Duyck66f32a82011-06-29 05:43:22 +00006377 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00006378 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006379 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6380 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6381 /* else if it is a SW VLAN check the next protocol and store the tag */
6382 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
6383 struct vlan_hdr *vhdr, _vhdr;
6384 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
6385 if (!vhdr)
6386 goto out_drop;
6387
6388 protocol = vhdr->h_vlan_encapsulated_proto;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006389 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
6390 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006391 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006392 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006393
Jacob Kelleraa7bd462012-05-04 01:55:23 +00006394 skb_tx_timestamp(skb);
6395
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006396#ifdef CONFIG_IXGBE_PTP
6397 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
6398 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
6399 tx_flags |= IXGBE_TX_FLAGS_TSTAMP;
6400 }
6401#endif
6402
Alexander Duyck9e0c5642012-02-08 07:49:33 +00006403#ifdef CONFIG_PCI_IOV
6404 /*
6405 * Use the l2switch_enable flag - would be false if the DMA
6406 * Tx switch had been disabled.
6407 */
6408 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6409 tx_flags |= IXGBE_TX_FLAGS_TXSW;
6410
6411#endif
John Fastabend32701dc2011-09-27 03:51:56 +00006412 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006413 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00006414 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
6415 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006416 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00006417 tx_flags |= (skb->priority & 0x7) <<
6418 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006419 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
6420 struct vlan_ethhdr *vhdr;
6421 if (skb_header_cloned(skb) &&
6422 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6423 goto out_drop;
6424 vhdr = (struct vlan_ethhdr *)skb->data;
6425 vhdr->h_vlan_TCI = htons(tx_flags >>
6426 IXGBE_TX_FLAGS_VLAN_SHIFT);
6427 } else {
6428 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6429 }
6430 }
Alexander Duycka535c302011-05-27 05:31:52 +00006431
Alexander Duyck244e27a2012-02-08 07:51:11 +00006432 /* record initial flags and protocol */
6433 first->tx_flags = tx_flags;
6434 first->protocol = protocol;
6435
Yi Zoueacd73f2009-05-13 13:11:06 +00006436#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00006437 /* setup tx offload for FCoE */
6438 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
Alexander Duycka58915c2012-05-25 06:38:18 +00006439 (tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) {
Alexander Duyck244e27a2012-02-08 07:51:11 +00006440 tso = ixgbe_fso(tx_ring, first, &hdr_len);
Alexander Duyck897ab152011-05-27 05:31:47 +00006441 if (tso < 0)
6442 goto out_drop;
Auke Kok9a799d72007-09-15 14:07:45 -07006443
Alexander Duyck66f32a82011-06-29 05:43:22 +00006444 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006445 }
Auke Kok9a799d72007-09-15 14:07:45 -07006446
Auke Kok9a799d72007-09-15 14:07:45 -07006447#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006448 tso = ixgbe_tso(tx_ring, first, &hdr_len);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006449 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07006450 goto out_drop;
Alexander Duyck244e27a2012-02-08 07:51:11 +00006451 else if (!tso)
6452 ixgbe_tx_csum(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006453
6454 /* add the ATR filter if ATR is on */
6455 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
Alexander Duyck244e27a2012-02-08 07:51:11 +00006456 ixgbe_atr(tx_ring, first);
Alexander Duyck66f32a82011-06-29 05:43:22 +00006457
6458#ifdef IXGBE_FCOE
6459xmit_fcoe:
6460#endif /* IXGBE_FCOE */
Alexander Duyck244e27a2012-02-08 07:51:11 +00006461 ixgbe_tx_map(tx_ring, first, hdr_len);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006462
6463 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006464
6465 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006466
6467out_drop:
Alexander Duyckfd0db0e2012-02-08 07:50:56 +00006468 dev_kfree_skb_any(first->skb);
6469 first->skb = NULL;
6470
Alexander Duyck897ab152011-05-27 05:31:47 +00006471 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07006472}
6473
Alexander Duycka50c29d2012-02-08 07:50:40 +00006474static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
6475 struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07006476{
6477 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006478 struct ixgbe_ring *tx_ring;
Auke Kok9a799d72007-09-15 14:07:45 -07006479
Alexander Duycka50c29d2012-02-08 07:50:40 +00006480 /*
6481 * The minimum packet size for olinfo paylen is 17 so pad the skb
6482 * in order to meet this minimum size requirement.
6483 */
Stephen Hemmingerf73332f2012-06-21 02:15:10 +00006484 if (unlikely(skb->len < 17)) {
6485 if (skb_pad(skb, 17 - skb->len))
Alexander Duycka50c29d2012-02-08 07:50:40 +00006486 return NETDEV_TX_OK;
6487 skb->len = 17;
6488 }
6489
Auke Kok9a799d72007-09-15 14:07:45 -07006490 tx_ring = adapter->tx_ring[skb->queue_mapping];
6491 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
6492}
6493
6494/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006495 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Auke Kok9a799d72007-09-15 14:07:45 -07006496 * @netdev: network interface device structure
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006497 * @p: pointer to an address structure
6498 *
Auke Kok9a799d72007-09-15 14:07:45 -07006499 * Returns 0 on success, negative on failure
6500 **/
6501static int ixgbe_set_mac(struct net_device *netdev, void *p)
6502{
Ben Hutchings6b73e102009-04-29 08:08:58 +00006503 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6504 struct ixgbe_hw *hw = &adapter->hw;
6505 struct sockaddr *addr = p;
6506
6507 if (!is_valid_ether_addr(addr->sa_data))
6508 return -EADDRNOTAVAIL;
6509
6510 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
6511 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
6512
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +00006513 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07006514
6515 return 0;
6516}
6517
Ben Hutchings6b73e102009-04-29 08:08:58 +00006518static int
6519ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6520{
6521 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6522 struct ixgbe_hw *hw = &adapter->hw;
6523 u16 value;
6524 int rc;
6525
6526 if (prtad != hw->phy.mdio.prtad)
6527 return -EINVAL;
6528 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6529 if (!rc)
6530 rc = value;
6531 return rc;
6532}
6533
6534static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6535 u16 addr, u16 value)
6536{
6537 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6538 struct ixgbe_hw *hw = &adapter->hw;
6539
6540 if (prtad != hw->phy.mdio.prtad)
6541 return -EINVAL;
6542 return hw->phy.ops.write_reg(hw, addr, devad, value);
6543}
6544
6545static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6546{
6547 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6548
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00006549 switch (cmd) {
6550#ifdef CONFIG_IXGBE_PTP
6551 case SIOCSHWTSTAMP:
6552 return ixgbe_ptp_hwtstamp_ioctl(adapter, req, cmd);
6553#endif
6554 default:
6555 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6556 }
Ben Hutchings6b73e102009-04-29 08:08:58 +00006557}
6558
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006559/**
6560 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006561 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006562 * @netdev: network interface device structure
6563 *
6564 * Returns non-zero on failure
6565 **/
6566static int ixgbe_add_sanmac_netdev(struct net_device *dev)
6567{
6568 int err = 0;
6569 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006570 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006571
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006572 if (is_valid_ether_addr(hw->mac.san_addr)) {
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006573 rtnl_lock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006574 err = dev_addr_add(dev, hw->mac.san_addr, NETDEV_HW_ADDR_T_SAN);
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006575 rtnl_unlock();
Alexander Duyck7fa7c9d2012-05-05 05:32:52 +00006576
6577 /* update SAN MAC vmdq pool selection */
6578 hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0));
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006579 }
6580 return err;
6581}
6582
6583/**
6584 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006585 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006586 * @netdev: network interface device structure
6587 *
6588 * Returns non-zero on failure
6589 **/
6590static int ixgbe_del_sanmac_netdev(struct net_device *dev)
6591{
6592 int err = 0;
6593 struct ixgbe_adapter *adapter = netdev_priv(dev);
6594 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6595
6596 if (is_valid_ether_addr(mac->san_addr)) {
6597 rtnl_lock();
6598 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6599 rtnl_unlock();
6600 }
6601 return err;
6602}
6603
Auke Kok9a799d72007-09-15 14:07:45 -07006604#ifdef CONFIG_NET_POLL_CONTROLLER
6605/*
6606 * Polling 'interrupt' - used by things like netconsole to send skbs
6607 * without having to re-enable interrupts. It's not called while
6608 * the interrupt routine is executing.
6609 */
6610static void ixgbe_netpoll(struct net_device *netdev)
6611{
6612 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006613 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07006614
Alexander Duyck1a647bd2010-01-13 01:49:13 +00006615 /* if interface is down do nothing */
6616 if (test_bit(__IXGBE_DOWN, &adapter->state))
6617 return;
6618
Auke Kok9a799d72007-09-15 14:07:45 -07006619 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006620 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00006621 for (i = 0; i < adapter->num_q_vectors; i++)
6622 ixgbe_msix_clean_rings(0, adapter->q_vector[i]);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006623 } else {
6624 ixgbe_intr(adapter->pdev->irq, netdev);
6625 }
Auke Kok9a799d72007-09-15 14:07:45 -07006626 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07006627}
Auke Kok9a799d72007-09-15 14:07:45 -07006628
Alexander Duyck581330b2012-02-08 07:51:47 +00006629#endif
Eric Dumazetde1036b2010-10-20 23:00:04 +00006630static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
6631 struct rtnl_link_stats64 *stats)
6632{
6633 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6634 int i;
6635
Eric Dumazet1a515022010-11-16 19:26:42 -08006636 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006637 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08006638 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00006639 u64 bytes, packets;
6640 unsigned int start;
6641
Eric Dumazet1a515022010-11-16 19:26:42 -08006642 if (ring) {
6643 do {
6644 start = u64_stats_fetch_begin_bh(&ring->syncp);
6645 packets = ring->stats.packets;
6646 bytes = ring->stats.bytes;
6647 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6648 stats->rx_packets += packets;
6649 stats->rx_bytes += bytes;
6650 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00006651 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00006652
6653 for (i = 0; i < adapter->num_tx_queues; i++) {
6654 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
6655 u64 bytes, packets;
6656 unsigned int start;
6657
6658 if (ring) {
6659 do {
6660 start = u64_stats_fetch_begin_bh(&ring->syncp);
6661 packets = ring->stats.packets;
6662 bytes = ring->stats.bytes;
6663 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6664 stats->tx_packets += packets;
6665 stats->tx_bytes += bytes;
6666 }
6667 }
Eric Dumazet1a515022010-11-16 19:26:42 -08006668 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006669 /* following stats updated by ixgbe_watchdog_task() */
6670 stats->multicast = netdev->stats.multicast;
6671 stats->rx_errors = netdev->stats.rx_errors;
6672 stats->rx_length_errors = netdev->stats.rx_length_errors;
6673 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
6674 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
6675 return stats;
6676}
6677
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006678#ifdef CONFIG_IXGBE_DCB
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006679/**
6680 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
6681 * @adapter: pointer to ixgbe_adapter
John Fastabend8b1c0b22011-05-03 02:26:48 +00006682 * @tc: number of traffic classes currently enabled
6683 *
6684 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
6685 * 802.1Q priority maps to a packet buffer that exists.
6686 */
6687static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
6688{
6689 struct ixgbe_hw *hw = &adapter->hw;
6690 u32 reg, rsave;
6691 int i;
6692
6693 /* 82598 have a static priority to TC mapping that can not
6694 * be changed so no validation is needed.
6695 */
6696 if (hw->mac.type == ixgbe_mac_82598EB)
6697 return;
6698
6699 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
6700 rsave = reg;
6701
6702 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
6703 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
6704
6705 /* If up2tc is out of bounds default to zero */
6706 if (up2tc > tc)
6707 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
6708 }
6709
6710 if (reg != rsave)
6711 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
6712
6713 return;
6714}
6715
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006716/**
Alexander Duyck02debdc2012-05-18 06:33:31 +00006717 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
6718 * @adapter: Pointer to adapter struct
6719 *
6720 * Populate the netdev user priority to tc map
6721 */
6722static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter)
6723{
6724 struct net_device *dev = adapter->netdev;
6725 struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg;
6726 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
6727 u8 prio;
6728
6729 for (prio = 0; prio < MAX_USER_PRIORITY; prio++) {
6730 u8 tc = 0;
6731
6732 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE)
6733 tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio);
6734 else if (ets)
6735 tc = ets->prio_tc[prio];
6736
6737 netdev_set_prio_tc_map(dev, prio, tc);
6738 }
6739}
6740
6741/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00006742 * ixgbe_setup_tc - configure net_device for multiple traffic classes
John Fastabend8b1c0b22011-05-03 02:26:48 +00006743 *
6744 * @netdev: net device to configure
6745 * @tc: number of traffic classes to enable
6746 */
6747int ixgbe_setup_tc(struct net_device *dev, u8 tc)
6748{
John Fastabend8b1c0b22011-05-03 02:26:48 +00006749 struct ixgbe_adapter *adapter = netdev_priv(dev);
6750 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00006751
John Fastabend8b1c0b22011-05-03 02:26:48 +00006752 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00006753 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
Alexander Duyck581330b2012-02-08 07:51:47 +00006754 (hw->mac.type == ixgbe_mac_82598EB &&
6755 tc < MAX_TRAFFIC_CLASS))
John Fastabend8b1c0b22011-05-03 02:26:48 +00006756 return -EINVAL;
6757
6758 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006759 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00006760 * hardware is not flexible enough to do this dynamically.
6761 */
6762 if (netif_running(dev))
6763 ixgbe_close(dev);
6764 ixgbe_clear_interrupt_scheme(adapter);
6765
John Fastabende7589ea2011-07-18 22:38:36 +00006766 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006767 netdev_set_num_tc(dev, tc);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006768 ixgbe_set_prio_tc_map(adapter);
6769
John Fastabende7589ea2011-07-18 22:38:36 +00006770 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00006771
Alexander Duyck943561d2012-05-09 22:14:44 -07006772 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
6773 adapter->last_lfc_mode = adapter->hw.fc.requested_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006774 adapter->hw.fc.requested_mode = ixgbe_fc_none;
Alexander Duyck943561d2012-05-09 22:14:44 -07006775 }
John Fastabende7589ea2011-07-18 22:38:36 +00006776 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006777 netdev_reset_tc(dev);
Alexander Duyck02debdc2012-05-18 06:33:31 +00006778
Alexander Duyck943561d2012-05-09 22:14:44 -07006779 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6780 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
John Fastabende7589ea2011-07-18 22:38:36 +00006781
6782 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
John Fastabende7589ea2011-07-18 22:38:36 +00006783
6784 adapter->temp_dcb_cfg.pfc_mode_enable = false;
6785 adapter->dcb_cfg.pfc_mode_enable = false;
6786 }
6787
John Fastabend8b1c0b22011-05-03 02:26:48 +00006788 ixgbe_init_interrupt_scheme(adapter);
6789 ixgbe_validate_rtr(adapter, tc);
6790 if (netif_running(dev))
6791 ixgbe_open(dev);
6792
6793 return 0;
6794}
Eric Dumazetde1036b2010-10-20 23:00:04 +00006795
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006796#endif /* CONFIG_IXGBE_DCB */
Don Skidmore082757a2011-07-21 05:55:00 +00006797void ixgbe_do_reset(struct net_device *netdev)
6798{
6799 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6800
6801 if (netif_running(netdev))
6802 ixgbe_reinit_locked(adapter);
6803 else
6804 ixgbe_reset(adapter);
6805}
6806
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006807static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006808 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006809{
6810 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6811
Don Skidmore082757a2011-07-21 05:55:00 +00006812 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006813 if (!(features & NETIF_F_RXCSUM))
6814 features &= ~NETIF_F_LRO;
Don Skidmore082757a2011-07-21 05:55:00 +00006815
Alexander Duyck567d2de2012-02-11 07:18:57 +00006816 /* Turn off LRO if not RSC capable */
6817 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
6818 features &= ~NETIF_F_LRO;
Jacob Keller8e2813f2012-04-21 06:05:40 +00006819
Alexander Duyck567d2de2012-02-11 07:18:57 +00006820 return features;
Don Skidmore082757a2011-07-21 05:55:00 +00006821}
6822
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006823static int ixgbe_set_features(struct net_device *netdev,
Alexander Duyck567d2de2012-02-11 07:18:57 +00006824 netdev_features_t features)
Don Skidmore082757a2011-07-21 05:55:00 +00006825{
6826 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck567d2de2012-02-11 07:18:57 +00006827 netdev_features_t changed = netdev->features ^ features;
Don Skidmore082757a2011-07-21 05:55:00 +00006828 bool need_reset = false;
6829
Don Skidmore082757a2011-07-21 05:55:00 +00006830 /* Make sure RSC matches LRO, reset if change */
Alexander Duyck567d2de2012-02-11 07:18:57 +00006831 if (!(features & NETIF_F_LRO)) {
6832 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Don Skidmore082757a2011-07-21 05:55:00 +00006833 need_reset = true;
Alexander Duyck567d2de2012-02-11 07:18:57 +00006834 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
6835 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
6836 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
6837 if (adapter->rx_itr_setting == 1 ||
6838 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
6839 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
6840 need_reset = true;
6841 } else if ((changed ^ features) & NETIF_F_LRO) {
6842 e_info(probe, "rx-usecs set too low, "
6843 "disabling RSC\n");
Don Skidmore082757a2011-07-21 05:55:00 +00006844 }
6845 }
6846
6847 /*
6848 * Check if Flow Director n-tuple support was enabled or disabled. If
6849 * the state changed, we need to reset.
6850 */
Alexander Duyck39cb6812012-06-06 05:38:20 +00006851 switch (features & NETIF_F_NTUPLE) {
6852 case NETIF_F_NTUPLE:
Alexander Duyck567d2de2012-02-11 07:18:57 +00006853 /* turn off ATR, enable perfect filters and reset */
Alexander Duyck39cb6812012-06-06 05:38:20 +00006854 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
6855 need_reset = true;
6856
Alexander Duyck567d2de2012-02-11 07:18:57 +00006857 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
6858 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
Alexander Duyck39cb6812012-06-06 05:38:20 +00006859 break;
6860 default:
6861 /* turn off perfect filters, enable ATR and reset */
6862 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
6863 need_reset = true;
6864
6865 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
6866
6867 /* We cannot enable ATR if SR-IOV is enabled */
6868 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6869 break;
6870
6871 /* We cannot enable ATR if we have 2 or more traffic classes */
6872 if (netdev_get_num_tc(netdev) > 1)
6873 break;
6874
6875 /* We cannot enable ATR if RSS is disabled */
6876 if (adapter->ring_feature[RING_F_RSS].limit <= 1)
6877 break;
6878
6879 /* A sample rate of 0 indicates ATR disabled */
6880 if (!adapter->atr_sample_rate)
6881 break;
6882
6883 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
6884 break;
Don Skidmore082757a2011-07-21 05:55:00 +00006885 }
6886
John Fastabend146d4cc2012-05-15 05:59:26 +00006887 if (features & NETIF_F_HW_VLAN_RX)
6888 ixgbe_vlan_strip_enable(adapter);
6889 else
6890 ixgbe_vlan_strip_disable(adapter);
6891
Ben Greear3f2d1c02012-03-08 08:28:41 +00006892 if (changed & NETIF_F_RXALL)
6893 need_reset = true;
6894
Alexander Duyck567d2de2012-02-11 07:18:57 +00006895 netdev->features = features;
Don Skidmore082757a2011-07-21 05:55:00 +00006896 if (need_reset)
6897 ixgbe_do_reset(netdev);
6898
6899 return 0;
Don Skidmore082757a2011-07-21 05:55:00 +00006900}
6901
stephen hemmingeredc7d572012-10-01 12:32:33 +00006902static int ixgbe_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006903 struct net_device *dev,
stephen hemminger6b6e2722012-09-17 10:03:26 +00006904 const unsigned char *addr,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006905 u16 flags)
6906{
6907 struct ixgbe_adapter *adapter = netdev_priv(dev);
John Fastabend95447462012-05-31 12:42:26 +00006908 int err;
6909
6910 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
6911 return -EOPNOTSUPP;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006912
6913 if (ndm->ndm_state & NUD_PERMANENT) {
6914 pr_info("%s: FDB only supports static addresses\n",
6915 ixgbe_driver_name);
6916 return -EINVAL;
6917 }
6918
John Fastabend95447462012-05-31 12:42:26 +00006919 if (is_unicast_ether_addr(addr)) {
6920 u32 rar_uc_entries = IXGBE_MAX_PF_MACVLANS;
6921
6922 if (netdev_uc_count(dev) < rar_uc_entries)
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006923 err = dev_uc_add_excl(dev, addr);
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006924 else
John Fastabend95447462012-05-31 12:42:26 +00006925 err = -ENOMEM;
6926 } else if (is_multicast_ether_addr(addr)) {
6927 err = dev_mc_add_excl(dev, addr);
6928 } else {
6929 err = -EINVAL;
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006930 }
6931
6932 /* Only return duplicate errors if NLM_F_EXCL is set */
6933 if (err == -EEXIST && !(flags & NLM_F_EXCL))
6934 err = 0;
6935
6936 return err;
6937}
6938
6939static int ixgbe_ndo_fdb_del(struct ndmsg *ndm,
6940 struct net_device *dev,
stephen hemminger6b6e2722012-09-17 10:03:26 +00006941 const unsigned char *addr)
John Fastabend0f4b0ad2012-04-15 06:44:19 +00006942{
6943 struct ixgbe_adapter *adapter = netdev_priv(dev);
6944 int err = -EOPNOTSUPP;
6945
6946 if (ndm->ndm_state & NUD_PERMANENT) {
6947 pr_info("%s: FDB only supports static addresses\n",
6948 ixgbe_driver_name);
6949 return -EINVAL;
6950 }
6951
6952 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
6953 if (is_unicast_ether_addr(addr))
6954 err = dev_uc_del(dev, addr);
6955 else if (is_multicast_ether_addr(addr))
6956 err = dev_mc_del(dev, addr);
6957 else
6958 err = -EINVAL;
6959 }
6960
6961 return err;
6962}
6963
6964static int ixgbe_ndo_fdb_dump(struct sk_buff *skb,
6965 struct netlink_callback *cb,
6966 struct net_device *dev,
6967 int idx)
6968{
6969 struct ixgbe_adapter *adapter = netdev_priv(dev);
6970
6971 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6972 idx = ndo_dflt_fdb_dump(skb, cb, dev, idx);
6973
6974 return idx;
6975}
6976
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006977static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00006978 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006979 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08006980 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006981 .ndo_select_queue = ixgbe_select_queue,
Alexander Duyck581330b2012-02-08 07:51:47 +00006982 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006983 .ndo_validate_addr = eth_validate_addr,
6984 .ndo_set_mac_address = ixgbe_set_mac,
6985 .ndo_change_mtu = ixgbe_change_mtu,
6986 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006987 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
6988 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00006989 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00006990 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
6991 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
6992 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Alexander Duyck581330b2012-02-08 07:51:47 +00006993 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00006994 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00006995 .ndo_get_stats64 = ixgbe_get_stats64,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006996#ifdef CONFIG_IXGBE_DCB
John Fastabend24095aa2011-02-23 05:58:03 +00006997 .ndo_setup_tc = ixgbe_setup_tc,
Jeff Kirsher8af3c332012-02-18 07:08:14 +00006998#endif
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006999#ifdef CONFIG_NET_POLL_CONTROLLER
7000 .ndo_poll_controller = ixgbe_netpoll,
7001#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007002#ifdef IXGBE_FCOE
7003 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007004 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007005 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007006 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7007 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007008 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00007009 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00007010#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00007011 .ndo_set_features = ixgbe_set_features,
7012 .ndo_fix_features = ixgbe_fix_features,
John Fastabend0f4b0ad2012-04-15 06:44:19 +00007013 .ndo_fdb_add = ixgbe_ndo_fdb_add,
7014 .ndo_fdb_del = ixgbe_ndo_fdb_del,
7015 .ndo_fdb_dump = ixgbe_ndo_fdb_dump,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007016};
7017
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007018/**
Jacob Keller8e2813f2012-04-21 06:05:40 +00007019 * ixgbe_wol_supported - Check whether device supports WoL
7020 * @hw: hw specific details
7021 * @device_id: the device ID
7022 * @subdev_id: the subsystem device ID
7023 *
7024 * This function is used by probe and ethtool to determine
7025 * which devices have WoL support
7026 *
7027 **/
7028int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id,
7029 u16 subdevice_id)
7030{
7031 struct ixgbe_hw *hw = &adapter->hw;
7032 u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
7033 int is_wol_supported = 0;
7034
7035 switch (device_id) {
7036 case IXGBE_DEV_ID_82599_SFP:
7037 /* Only these subdevices could supports WOL */
7038 switch (subdevice_id) {
7039 case IXGBE_SUBDEV_ID_82599_560FLR:
7040 /* only support first port */
7041 if (hw->bus.func != 0)
7042 break;
7043 case IXGBE_SUBDEV_ID_82599_SFP:
Don Skidmoreb6dfd932012-07-11 07:17:42 +00007044 case IXGBE_SUBDEV_ID_82599_RNDC:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007045 is_wol_supported = 1;
7046 break;
7047 }
7048 break;
7049 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7050 /* All except this subdevice support WOL */
7051 if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
7052 is_wol_supported = 1;
7053 break;
7054 case IXGBE_DEV_ID_82599_KX4:
7055 is_wol_supported = 1;
7056 break;
7057 case IXGBE_DEV_ID_X540T:
joshua.a.hay@intel.comdf376f02012-09-21 00:08:21 +00007058 case IXGBE_DEV_ID_X540T1:
Jacob Keller8e2813f2012-04-21 06:05:40 +00007059 /* check eeprom to see if enabled wol */
7060 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
7061 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7062 (hw->bus.func == 0))) {
7063 is_wol_supported = 1;
7064 }
7065 break;
7066 }
7067
7068 return is_wol_supported;
7069}
7070
7071/**
Auke Kok9a799d72007-09-15 14:07:45 -07007072 * ixgbe_probe - Device Initialization Routine
7073 * @pdev: PCI device information struct
7074 * @ent: entry in ixgbe_pci_tbl
7075 *
7076 * Returns 0 on success, negative on failure
7077 *
7078 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7079 * The OS initialization, configuring of the adapter private structure,
7080 * and a hardware reset occur.
7081 **/
7082static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007083 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007084{
7085 struct net_device *netdev;
7086 struct ixgbe_adapter *adapter = NULL;
7087 struct ixgbe_hw *hw;
7088 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007089 static int cards_found;
7090 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00007091 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007092 unsigned int indices = num_possible_cpus();
John Fastabend3f4a6f02012-06-05 05:58:52 +00007093 unsigned int dcb_max = 0;
Yi Zoueacd73f2009-05-13 13:11:06 +00007094#ifdef IXGBE_FCOE
7095 u16 device_caps;
7096#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007097 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07007098
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007099 /* Catch broken hardware that put the wrong VF device ID in
7100 * the PCIe SR-IOV capability.
7101 */
7102 if (pdev->is_virtfn) {
7103 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7104 pci_name(pdev), pdev->vendor, pdev->device);
7105 return -EINVAL;
7106 }
7107
gouji-new9ce77662009-05-06 10:44:45 +00007108 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007109 if (err)
7110 return err;
7111
Nick Nunley1b507732010-04-27 13:10:27 +00007112 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7113 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007114 pci_using_dac = 1;
7115 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007116 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007117 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007118 err = dma_set_coherent_mask(&pdev->dev,
7119 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007120 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007121 dev_err(&pdev->dev,
7122 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007123 goto err_dma;
7124 }
7125 }
7126 pci_using_dac = 0;
7127 }
7128
gouji-new9ce77662009-05-06 10:44:45 +00007129 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007130 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007131 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007132 dev_err(&pdev->dev,
7133 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007134 goto err_pci_reg;
7135 }
7136
Frans Pop19d5afd2009-10-02 10:04:12 -07007137 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007138
Auke Kok9a799d72007-09-15 14:07:45 -07007139 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007140 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007141
John Fastabende901acd2011-04-26 07:26:08 +00007142#ifdef CONFIG_IXGBE_DCB
John Fastabend3f4a6f02012-06-05 05:58:52 +00007143 if (ii->mac == ixgbe_mac_82598EB)
7144 dcb_max = min_t(unsigned int, indices * MAX_TRAFFIC_CLASS,
7145 IXGBE_MAX_RSS_INDICES);
7146 else
7147 dcb_max = min_t(unsigned int, indices * MAX_TRAFFIC_CLASS,
7148 IXGBE_MAX_FDIR_INDICES);
John Fastabende901acd2011-04-26 07:26:08 +00007149#endif
7150
John Fastabendc85a2612010-02-25 23:15:21 +00007151 if (ii->mac == ixgbe_mac_82598EB)
7152 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7153 else
7154 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7155
John Fastabende901acd2011-04-26 07:26:08 +00007156#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007157 indices += min_t(unsigned int, num_possible_cpus(),
7158 IXGBE_MAX_FCOE_INDICES);
7159#endif
John Fastabend3f4a6f02012-06-05 05:58:52 +00007160 indices = max_t(unsigned int, dcb_max, indices);
John Fastabendc85a2612010-02-25 23:15:21 +00007161 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007162 if (!netdev) {
7163 err = -ENOMEM;
7164 goto err_alloc_etherdev;
7165 }
7166
Auke Kok9a799d72007-09-15 14:07:45 -07007167 SET_NETDEV_DEV(netdev, &pdev->dev);
7168
Auke Kok9a799d72007-09-15 14:07:45 -07007169 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007170 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007171
7172 adapter->netdev = netdev;
7173 adapter->pdev = pdev;
7174 hw = &adapter->hw;
7175 hw->back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00007176 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Auke Kok9a799d72007-09-15 14:07:45 -07007177
Jeff Kirsher05857982008-09-11 19:57:00 -07007178 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007179 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007180 if (!hw->hw_addr) {
7181 err = -EIO;
7182 goto err_ioremap;
7183 }
7184
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007185 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007186 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007187 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007188 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007189
Auke Kok9a799d72007-09-15 14:07:45 -07007190 adapter->bd_number = cards_found;
7191
Auke Kok9a799d72007-09-15 14:07:45 -07007192 /* Setup hw api */
7193 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007194 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007195
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007196 /* EEPROM */
7197 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7198 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7199 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7200 if (!(eec & (1 << 8)))
7201 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7202
7203 /* PHY */
7204 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007205 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007206 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7207 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7208 hw->phy.mdio.mmds = 0;
7209 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7210 hw->phy.mdio.dev = netdev;
7211 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7212 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007213
Don Skidmore8ca783a2009-05-26 20:40:47 -07007214 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007215
7216 /* setup the private structure */
7217 err = ixgbe_sw_init(adapter);
7218 if (err)
7219 goto err_sw_init;
7220
Don Skidmoree86bff02010-02-11 04:14:08 +00007221 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007222 switch (adapter->hw.mac.type) {
7223 case ixgbe_mac_82599EB:
7224 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007225 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007226 break;
7227 default:
7228 break;
7229 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007230
Don Skidmorebf069c92009-05-07 10:39:54 +00007231 /*
7232 * If there is a fan on this device and it has failed log the
7233 * failure.
7234 */
7235 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7236 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7237 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007238 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007239 }
7240
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00007241 if (allow_unsupported_sfp)
7242 hw->allow_unsupported_sfp = allow_unsupported_sfp;
7243
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007244 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007245 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007246 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007247 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007248 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7249 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007250 err = 0;
7251 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007252 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007253 "module type was detected.\n");
7254 e_dev_err("Reload the driver after installing a supported "
7255 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007256 goto err_sw_init;
7257 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007258 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007259 goto err_sw_init;
7260 }
7261
Alexander Duyck99d74482012-05-09 08:09:25 +00007262#ifdef CONFIG_PCI_IOV
7263 ixgbe_enable_sriov(adapter, ii);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007264
Alexander Duyck99d74482012-05-09 08:09:25 +00007265#endif
Emil Tantilov396e7992010-07-01 20:05:12 +00007266 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007267 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00007268 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00007269 NETIF_F_HW_VLAN_TX |
7270 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00007271 NETIF_F_HW_VLAN_FILTER |
7272 NETIF_F_TSO |
7273 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00007274 NETIF_F_RXHASH |
7275 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007276
Don Skidmore082757a2011-07-21 05:55:00 +00007277 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007278
Don Skidmore58be7662011-04-12 09:42:11 +00007279 switch (adapter->hw.mac.type) {
7280 case ixgbe_mac_82599EB:
7281 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007282 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00007283 netdev->hw_features |= NETIF_F_SCTP_CSUM |
7284 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00007285 break;
7286 default:
7287 break;
7288 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007289
Ben Greear3f2d1c02012-03-08 08:28:41 +00007290 netdev->hw_features |= NETIF_F_RXALL;
7291
Jeff Kirsherad31c402008-06-05 04:05:30 -07007292 netdev->vlan_features |= NETIF_F_TSO;
7293 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007294 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007295 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007296 netdev->vlan_features |= NETIF_F_SG;
7297
Jiri Pirko01789342011-08-16 06:29:00 +00007298 netdev->priv_flags |= IFF_UNICAST_FLT;
Ben Greearf43f3132012-03-06 09:42:04 +00007299 netdev->priv_flags |= IFF_SUPP_NOFCS;
Jiri Pirko01789342011-08-16 06:29:00 +00007300
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007301#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007302 netdev->dcbnl_ops = &dcbnl_ops;
7303#endif
7304
Yi Zoueacd73f2009-05-13 13:11:06 +00007305#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007306 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007307 if (hw->mac.ops.get_device_caps) {
7308 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007309 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7310 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007311 }
Alexander Duyck7c8ae652012-05-05 05:32:47 +00007312
7313 adapter->ring_feature[RING_F_FCOE].limit = IXGBE_FCRETA_SIZE;
7314
Alexander Duycka58915c2012-05-25 06:38:18 +00007315 netdev->features |= NETIF_F_FSO |
7316 NETIF_F_FCOE_CRC;
7317
Alexander Duyck7c8ae652012-05-05 05:32:47 +00007318 netdev->vlan_features |= NETIF_F_FSO |
7319 NETIF_F_FCOE_CRC |
7320 NETIF_F_FCOE_MTU;
Yi Zou5e09d7f2010-07-19 13:59:52 +00007321 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007322#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007323 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007324 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007325 netdev->vlan_features |= NETIF_F_HIGHDMA;
7326 }
Auke Kok9a799d72007-09-15 14:07:45 -07007327
Don Skidmore082757a2011-07-21 05:55:00 +00007328 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
7329 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007330 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007331 netdev->features |= NETIF_F_LRO;
7332
Auke Kok9a799d72007-09-15 14:07:45 -07007333 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007334 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007335 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007336 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007337 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007338 }
7339
7340 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7341 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7342
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007343 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007344 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007345 err = -EIO;
Alexander Duyck35937c02012-02-08 07:51:37 +00007346 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007347 }
7348
Alexander Duyck70864002011-04-27 09:13:56 +00007349 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
Alexander Duyck581330b2012-02-08 07:51:47 +00007350 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007351
Alexander Duyck70864002011-04-27 09:13:56 +00007352 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7353 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007354
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007355 err = ixgbe_init_interrupt_scheme(adapter);
7356 if (err)
7357 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007358
Jacob Keller8e2813f2012-04-21 06:05:40 +00007359 /* WOL not supported for all devices */
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007360 adapter->wol = 0;
Jacob Keller8e2813f2012-04-21 06:05:40 +00007361 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
7362 if (ixgbe_wol_supported(adapter, pdev->device, pdev->subsystem_device))
Andy Gospodarek9417c462011-07-16 07:31:33 +00007363 adapter->wol = IXGBE_WUFC_MAG;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007364
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007365 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7366
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007367#ifdef CONFIG_IXGBE_PTP
7368 ixgbe_ptp_init(adapter);
7369#endif /* CONFIG_IXGBE_PTP*/
7370
Emil Tantilov15e52092011-09-29 05:01:29 +00007371 /* save off EEPROM version number */
7372 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
7373 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
7374
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007375 /* pick up the PCI bus settings for reporting later */
7376 hw->mac.ops.get_bus_info(hw);
7377
Auke Kok9a799d72007-09-15 14:07:45 -07007378 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007379 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007380 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7381 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007382 "Unknown"),
7383 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7384 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7385 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7386 "Unknown"),
7387 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007388
7389 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7390 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007391 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007392 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007393 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007394 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007395 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007396 else
Don Skidmore289700db2010-12-03 03:32:58 +00007397 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7398 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007399
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007400 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007401 e_dev_warn("PCI-Express bandwidth available for this card is "
7402 "not sufficient for optimal performance.\n");
7403 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7404 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007405 }
7406
Auke Kok9a799d72007-09-15 14:07:45 -07007407 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007408 err = hw->mac.ops.start_hw(hw);
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007409 if (err == IXGBE_ERR_EEPROM_VERSION) {
7410 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007411 e_dev_warn("This device is a pre-production adapter/LOM. "
7412 "Please be aware there may be issues associated "
7413 "with your hardware. If you are experiencing "
7414 "problems please contact your Intel or hardware "
7415 "representative who provided you with this "
7416 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007417 }
Auke Kok9a799d72007-09-15 14:07:45 -07007418 strcpy(netdev->name, "eth%d");
7419 err = register_netdev(netdev);
7420 if (err)
7421 goto err_register;
7422
Emil Tantilov93d3ce82011-10-19 07:59:55 +00007423 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7424 if (hw->mac.ops.disable_tx_laser &&
7425 ((hw->phy.multispeed_fiber) ||
7426 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
7427 (hw->mac.type == ixgbe_mac_82599EB))))
7428 hw->mac.ops.disable_tx_laser(hw);
7429
Jesse Brandeburg54386462009-04-17 20:44:27 +00007430 /* carrier off reporting is important to ethtool even BEFORE open */
7431 netif_carrier_off(netdev);
7432
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007433#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007434 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007435 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007436 ixgbe_setup_dca(adapter);
7437 }
7438#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007439 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007440 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007441 for (i = 0; i < adapter->num_vfs; i++)
7442 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7443 }
7444
Jacob Keller2466dd92011-09-08 03:50:54 +00007445 /* firmware requires driver version to be 0xFFFFFFFF
7446 * since os does not support feature
7447 */
Emil Tantilov9612de92011-05-07 07:40:20 +00007448 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00007449 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
7450 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00007451
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007452 /* add san mac addr to netdev */
7453 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007454
Neerav Parikhea818752012-01-04 20:23:40 +00007455 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07007456 cards_found++;
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007457
Don Skidmore12109822012-05-04 06:07:08 +00007458#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007459 if (ixgbe_sysfs_init(adapter))
7460 e_err(probe, "failed to allocate sysfs resources\n");
Don Skidmore12109822012-05-04 06:07:08 +00007461#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007462
Catherine Sullivan00949162012-08-10 01:59:10 +00007463#ifdef CONFIG_DEBUG_FS
7464 ixgbe_dbg_adapter_init(adapter);
7465#endif /* CONFIG_DEBUG_FS */
7466
Auke Kok9a799d72007-09-15 14:07:45 -07007467 return 0;
7468
7469err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007470 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007471 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007472err_sw_init:
Alexander Duyck99d74482012-05-09 08:09:25 +00007473 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007474 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007475 iounmap(hw->hw_addr);
7476err_ioremap:
7477 free_netdev(netdev);
7478err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007479 pci_release_selected_regions(pdev,
7480 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007481err_pci_reg:
7482err_dma:
7483 pci_disable_device(pdev);
7484 return err;
7485}
7486
7487/**
7488 * ixgbe_remove - Device Removal Routine
7489 * @pdev: PCI device information struct
7490 *
7491 * ixgbe_remove is called by the PCI subsystem to alert the driver
7492 * that it should release a PCI device. The could be caused by a
7493 * Hot-Plug event, or because the driver is going to be removed from
7494 * memory.
7495 **/
7496static void __devexit ixgbe_remove(struct pci_dev *pdev)
7497{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007498 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7499 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007500
Catherine Sullivan00949162012-08-10 01:59:10 +00007501#ifdef CONFIG_DEBUG_FS
7502 ixgbe_dbg_adapter_exit(adapter);
7503#endif /*CONFIG_DEBUG_FS */
7504
Auke Kok9a799d72007-09-15 14:07:45 -07007505 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007506 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007507
Jacob Keller3a6a4ed2012-05-01 05:24:58 +00007508#ifdef CONFIG_IXGBE_PTP
7509 ixgbe_ptp_stop(adapter);
7510#endif
7511
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007512#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007513 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7514 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7515 dca_remove_requester(&pdev->dev);
7516 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7517 }
7518
7519#endif
Don Skidmore12109822012-05-04 06:07:08 +00007520#ifdef CONFIG_IXGBE_HWMON
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007521 ixgbe_sysfs_exit(adapter);
Don Skidmore12109822012-05-04 06:07:08 +00007522#endif /* CONFIG_IXGBE_HWMON */
Don Skidmore3ca8bc62012-04-12 00:33:31 +00007523
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007524 /* remove the added san mac */
7525 ixgbe_del_sanmac_netdev(netdev);
7526
Donald Skidmorec4900be2008-11-20 21:11:42 -08007527 if (netdev->reg_state == NETREG_REGISTERED)
7528 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007529
Alexander Duyck92971272012-05-23 02:58:40 +00007530 ixgbe_disable_sriov(adapter);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007531
Alexander Duyck7a921c92009-05-06 10:43:28 +00007532 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007533
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007534 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007535
Alexander Duyck2b1588c2012-03-17 02:39:16 +00007536#ifdef CONFIG_DCB
7537 kfree(adapter->ixgbe_ieee_pfc);
7538 kfree(adapter->ixgbe_ieee_ets);
7539
7540#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007541 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007542 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007543 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007544
Emil Tantilov849c4542010-06-03 16:53:41 +00007545 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007546
Auke Kok9a799d72007-09-15 14:07:45 -07007547 free_netdev(netdev);
7548
Frans Pop19d5afd2009-10-02 10:04:12 -07007549 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007550
Auke Kok9a799d72007-09-15 14:07:45 -07007551 pci_disable_device(pdev);
7552}
7553
7554/**
7555 * ixgbe_io_error_detected - called when PCI error is detected
7556 * @pdev: Pointer to PCI device
7557 * @state: The current pci connection state
7558 *
7559 * This function is called after a PCI bus error affecting
7560 * this device has been detected.
7561 */
7562static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007563 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007564{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007565 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7566 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007567
Greg Rose83c61fa2011-09-07 05:59:35 +00007568#ifdef CONFIG_PCI_IOV
7569 struct pci_dev *bdev, *vfdev;
7570 u32 dw0, dw1, dw2, dw3;
7571 int vf, pos;
7572 u16 req_id, pf_func;
7573
7574 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
7575 adapter->num_vfs == 0)
7576 goto skip_bad_vf_detection;
7577
7578 bdev = pdev->bus->self;
Yijing Wang62f87c02012-07-24 17:20:03 +08007579 while (bdev && (pci_pcie_type(bdev) != PCI_EXP_TYPE_ROOT_PORT))
Greg Rose83c61fa2011-09-07 05:59:35 +00007580 bdev = bdev->bus->self;
7581
7582 if (!bdev)
7583 goto skip_bad_vf_detection;
7584
7585 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
7586 if (!pos)
7587 goto skip_bad_vf_detection;
7588
7589 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
7590 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
7591 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
7592 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
7593
7594 req_id = dw1 >> 16;
7595 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
7596 if (!(req_id & 0x0080))
7597 goto skip_bad_vf_detection;
7598
7599 pf_func = req_id & 0x01;
7600 if ((pf_func & 1) == (pdev->devfn & 1)) {
7601 unsigned int device_id;
7602
7603 vf = (req_id & 0x7F) >> 1;
7604 e_dev_err("VF %d has caused a PCIe error\n", vf);
7605 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
7606 "%8.8x\tdw3: %8.8x\n",
7607 dw0, dw1, dw2, dw3);
7608 switch (adapter->hw.mac.type) {
7609 case ixgbe_mac_82599EB:
7610 device_id = IXGBE_82599_VF_DEVICE_ID;
7611 break;
7612 case ixgbe_mac_X540:
7613 device_id = IXGBE_X540_VF_DEVICE_ID;
7614 break;
7615 default:
7616 device_id = 0;
7617 break;
7618 }
7619
7620 /* Find the pci device of the offending VF */
Jon Mason36e90312012-07-19 21:02:09 +00007621 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, device_id, NULL);
Greg Rose83c61fa2011-09-07 05:59:35 +00007622 while (vfdev) {
7623 if (vfdev->devfn == (req_id & 0xFF))
7624 break;
Jon Mason36e90312012-07-19 21:02:09 +00007625 vfdev = pci_get_device(PCI_VENDOR_ID_INTEL,
Greg Rose83c61fa2011-09-07 05:59:35 +00007626 device_id, vfdev);
7627 }
7628 /*
7629 * There's a slim chance the VF could have been hot plugged,
7630 * so if it is no longer present we don't need to issue the
7631 * VFLR. Just clean up the AER in that case.
7632 */
7633 if (vfdev) {
7634 e_dev_err("Issuing VFLR to VF %d\n", vf);
7635 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
7636 }
7637
7638 pci_cleanup_aer_uncorrect_error_status(pdev);
7639 }
7640
7641 /*
7642 * Even though the error may have occurred on the other port
7643 * we still need to increment the vf error reference count for
7644 * both ports because the I/O resume function will be called
7645 * for both of them.
7646 */
7647 adapter->vferr_refcount++;
7648
7649 return PCI_ERS_RESULT_RECOVERED;
7650
7651skip_bad_vf_detection:
7652#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07007653 netif_device_detach(netdev);
7654
Breno Leitao3044b8d2009-05-06 10:44:26 +00007655 if (state == pci_channel_io_perm_failure)
7656 return PCI_ERS_RESULT_DISCONNECT;
7657
Auke Kok9a799d72007-09-15 14:07:45 -07007658 if (netif_running(netdev))
7659 ixgbe_down(adapter);
7660 pci_disable_device(pdev);
7661
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007662 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007663 return PCI_ERS_RESULT_NEED_RESET;
7664}
7665
7666/**
7667 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7668 * @pdev: Pointer to PCI device
7669 *
7670 * Restart the card from scratch, as if from a cold-boot.
7671 */
7672static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7673{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007674 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007675 pci_ers_result_t result;
7676 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007677
gouji-new9ce77662009-05-06 10:44:45 +00007678 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007679 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007680 result = PCI_ERS_RESULT_DISCONNECT;
7681 } else {
7682 pci_set_master(pdev);
7683 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007684 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007685
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007686 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007687
7688 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007689 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007690 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007691 }
Auke Kok9a799d72007-09-15 14:07:45 -07007692
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007693 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7694 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007695 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7696 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007697 /* non-fatal, continue */
7698 }
Auke Kok9a799d72007-09-15 14:07:45 -07007699
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007700 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007701}
7702
7703/**
7704 * ixgbe_io_resume - called when traffic can start flowing again.
7705 * @pdev: Pointer to PCI device
7706 *
7707 * This callback is called when the error recovery driver tells us that
7708 * its OK to resume normal operation.
7709 */
7710static void ixgbe_io_resume(struct pci_dev *pdev)
7711{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007712 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7713 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007714
Greg Rose83c61fa2011-09-07 05:59:35 +00007715#ifdef CONFIG_PCI_IOV
7716 if (adapter->vferr_refcount) {
7717 e_info(drv, "Resuming after VF err\n");
7718 adapter->vferr_refcount--;
7719 return;
7720 }
7721
7722#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00007723 if (netif_running(netdev))
7724 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007725
7726 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007727}
7728
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07007729static const struct pci_error_handlers ixgbe_err_handler = {
Auke Kok9a799d72007-09-15 14:07:45 -07007730 .error_detected = ixgbe_io_error_detected,
7731 .slot_reset = ixgbe_io_slot_reset,
7732 .resume = ixgbe_io_resume,
7733};
7734
7735static struct pci_driver ixgbe_driver = {
7736 .name = ixgbe_driver_name,
7737 .id_table = ixgbe_pci_tbl,
7738 .probe = ixgbe_probe,
7739 .remove = __devexit_p(ixgbe_remove),
7740#ifdef CONFIG_PM
7741 .suspend = ixgbe_suspend,
7742 .resume = ixgbe_resume,
7743#endif
7744 .shutdown = ixgbe_shutdown,
7745 .err_handler = &ixgbe_err_handler
7746};
7747
7748/**
7749 * ixgbe_init_module - Driver Registration Routine
7750 *
7751 * ixgbe_init_module is the first routine called when the driver is
7752 * loaded. All it does is register with the PCI subsystem.
7753 **/
7754static int __init ixgbe_init_module(void)
7755{
7756 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007757 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007758 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007759
Catherine Sullivan00949162012-08-10 01:59:10 +00007760#ifdef CONFIG_DEBUG_FS
7761 ixgbe_dbg_init();
7762#endif /* CONFIG_DEBUG_FS */
7763
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007764#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007765 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007766#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007767
Auke Kok9a799d72007-09-15 14:07:45 -07007768 ret = pci_register_driver(&ixgbe_driver);
7769 return ret;
7770}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007771
Auke Kok9a799d72007-09-15 14:07:45 -07007772module_init(ixgbe_init_module);
7773
7774/**
7775 * ixgbe_exit_module - Driver Exit Cleanup Routine
7776 *
7777 * ixgbe_exit_module is called just before the driver is removed
7778 * from memory.
7779 **/
7780static void __exit ixgbe_exit_module(void)
7781{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007782#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007783 dca_unregister_notify(&dca_notifier);
7784#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007785 pci_unregister_driver(&ixgbe_driver);
Catherine Sullivan00949162012-08-10 01:59:10 +00007786
7787#ifdef CONFIG_DEBUG_FS
7788 ixgbe_dbg_exit();
7789#endif /* CONFIG_DEBUG_FS */
7790
Eric Dumazet1a515022010-11-16 19:26:42 -08007791 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007792}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007793
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007794#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007795static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007796 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007797{
7798 int ret_val;
7799
7800 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007801 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007802
7803 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7804}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007805
Alexander Duyckb4533682009-03-31 21:32:42 +00007806#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007807
Auke Kok9a799d72007-09-15 14:07:45 -07007808module_exit(ixgbe_exit_module);
7809
7810/* ixgbe_main.c */