blob: 95240ab29177aef82a15f5081df583cc29c4134c [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";
Neerav Parikhea818752012-01-04 20:23:40 +000058char ixgbe_default_device_descr[] =
59 "Intel(R) 10 Gigabit Network Connection";
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000060#define MAJ 3
Don Skidmore19d478b2011-10-07 03:53:51 +000061#define MIN 6
62#define BUILD 7
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000063#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
Don Skidmorea38a1042011-05-20 03:05:14 +000064 __stringify(BUILD) "-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070065const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000066static const char ixgbe_copyright[] =
Don Skidmore94971822012-01-06 03:24:16 +000067 "Copyright (c) 1999-2012 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070068
69static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070070 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000071 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e12010-11-16 19:27:16 -080072 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070073};
74
75/* ixgbe_pci_tbl - PCI Device ID Table
76 *
77 * Wildcard entries (PCI_ANY_ID) should come last
78 * Last entry must be all 0s
79 *
80 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
81 * Class, Class Mask, private data (not used) }
82 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000083static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Alexander Duyck54239c62011-07-15 03:06:06 +000084 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
85 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
86 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
87 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
88 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
89 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
90 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
91 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
92 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
93 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
94 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
95 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
96 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
97 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
98 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
99 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
Emil Tantilov7d145282011-09-08 08:30:14 +0000110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
Emil Tantilov9e791e42011-11-04 06:43:29 +0000111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
Auke Kok9a799d72007-09-15 14:07:45 -0700112 /* required last entry */
113 {0, }
114};
115MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
116
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400117#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800118static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000119 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800120static struct notifier_block dca_notifier = {
121 .notifier_call = ixgbe_notify_dca,
122 .next = NULL,
123 .priority = 0
124};
125#endif
126
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000127#ifdef CONFIG_PCI_IOV
128static unsigned int max_vfs;
129module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000130MODULE_PARM_DESC(max_vfs,
131 "Maximum number of virtual functions to allocate per physical function");
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000132#endif /* CONFIG_PCI_IOV */
133
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000134static unsigned int allow_unsupported_sfp;
135module_param(allow_unsupported_sfp, uint, 0);
136MODULE_PARM_DESC(allow_unsupported_sfp,
137 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
138
Auke Kok9a799d72007-09-15 14:07:45 -0700139MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
140MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
141MODULE_LICENSE("GPL");
142MODULE_VERSION(DRV_VERSION);
143
144#define DEFAULT_DEBUG_LEVEL_SHIFT 3
145
Alexander Duyck70864002011-04-27 09:13:56 +0000146static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
147{
148 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
149 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
150 schedule_work(&adapter->service_task);
151}
152
153static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
154{
155 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
156
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000157 /* flush memory to make sure state is correct before next watchdog */
Alexander Duyck70864002011-04-27 09:13:56 +0000158 smp_mb__before_clear_bit();
159 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
160}
161
Taku Izumidcd79ae2010-04-27 14:39:53 +0000162struct ixgbe_reg_info {
163 u32 ofs;
164 char *name;
165};
166
167static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
168
169 /* General Registers */
170 {IXGBE_CTRL, "CTRL"},
171 {IXGBE_STATUS, "STATUS"},
172 {IXGBE_CTRL_EXT, "CTRL_EXT"},
173
174 /* Interrupt Registers */
175 {IXGBE_EICR, "EICR"},
176
177 /* RX Registers */
178 {IXGBE_SRRCTL(0), "SRRCTL"},
179 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
180 {IXGBE_RDLEN(0), "RDLEN"},
181 {IXGBE_RDH(0), "RDH"},
182 {IXGBE_RDT(0), "RDT"},
183 {IXGBE_RXDCTL(0), "RXDCTL"},
184 {IXGBE_RDBAL(0), "RDBAL"},
185 {IXGBE_RDBAH(0), "RDBAH"},
186
187 /* TX Registers */
188 {IXGBE_TDBAL(0), "TDBAL"},
189 {IXGBE_TDBAH(0), "TDBAH"},
190 {IXGBE_TDLEN(0), "TDLEN"},
191 {IXGBE_TDH(0), "TDH"},
192 {IXGBE_TDT(0), "TDT"},
193 {IXGBE_TXDCTL(0), "TXDCTL"},
194
195 /* List Terminator */
196 {}
197};
198
199
200/*
201 * ixgbe_regdump - register printout routine
202 */
203static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
204{
205 int i = 0, j = 0;
206 char rname[16];
207 u32 regs[64];
208
209 switch (reginfo->ofs) {
210 case IXGBE_SRRCTL(0):
211 for (i = 0; i < 64; i++)
212 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
213 break;
214 case IXGBE_DCA_RXCTRL(0):
215 for (i = 0; i < 64; i++)
216 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
217 break;
218 case IXGBE_RDLEN(0):
219 for (i = 0; i < 64; i++)
220 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
221 break;
222 case IXGBE_RDH(0):
223 for (i = 0; i < 64; i++)
224 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
225 break;
226 case IXGBE_RDT(0):
227 for (i = 0; i < 64; i++)
228 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
229 break;
230 case IXGBE_RXDCTL(0):
231 for (i = 0; i < 64; i++)
232 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
233 break;
234 case IXGBE_RDBAL(0):
235 for (i = 0; i < 64; i++)
236 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
237 break;
238 case IXGBE_RDBAH(0):
239 for (i = 0; i < 64; i++)
240 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
241 break;
242 case IXGBE_TDBAL(0):
243 for (i = 0; i < 64; i++)
244 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
245 break;
246 case IXGBE_TDBAH(0):
247 for (i = 0; i < 64; i++)
248 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
249 break;
250 case IXGBE_TDLEN(0):
251 for (i = 0; i < 64; i++)
252 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
253 break;
254 case IXGBE_TDH(0):
255 for (i = 0; i < 64; i++)
256 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
257 break;
258 case IXGBE_TDT(0):
259 for (i = 0; i < 64; i++)
260 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
261 break;
262 case IXGBE_TXDCTL(0):
263 for (i = 0; i < 64; i++)
264 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
265 break;
266 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000267 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000268 IXGBE_READ_REG(hw, reginfo->ofs));
269 return;
270 }
271
272 for (i = 0; i < 8; i++) {
273 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000274 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000275 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000276 pr_cont(" %08x", regs[i*8+j]);
277 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000278 }
279
280}
281
282/*
283 * ixgbe_dump - Print registers, tx-rings and rx-rings
284 */
285static void ixgbe_dump(struct ixgbe_adapter *adapter)
286{
287 struct net_device *netdev = adapter->netdev;
288 struct ixgbe_hw *hw = &adapter->hw;
289 struct ixgbe_reg_info *reginfo;
290 int n = 0;
291 struct ixgbe_ring *tx_ring;
292 struct ixgbe_tx_buffer *tx_buffer_info;
293 union ixgbe_adv_tx_desc *tx_desc;
294 struct my_u0 { u64 a; u64 b; } *u0;
295 struct ixgbe_ring *rx_ring;
296 union ixgbe_adv_rx_desc *rx_desc;
297 struct ixgbe_rx_buffer *rx_buffer_info;
298 u32 staterr;
299 int i = 0;
300
301 if (!netif_msg_hw(adapter))
302 return;
303
304 /* Print netdevice Info */
305 if (netdev) {
306 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000307 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000308 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000309 pr_info("%-15s %016lX %016lX %016lX\n",
310 netdev->name,
311 netdev->state,
312 netdev->trans_start,
313 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000314 }
315
316 /* Print Registers */
317 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000318 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000319 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
320 reginfo->name; reginfo++) {
321 ixgbe_regdump(hw, reginfo);
322 }
323
324 /* Print TX Ring Summary */
325 if (!netdev || !netif_running(netdev))
326 goto exit;
327
328 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000329 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000330 for (n = 0; n < adapter->num_tx_queues; n++) {
331 tx_ring = adapter->tx_ring[n];
332 tx_buffer_info =
333 &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Alexander Duyckd3d00232011-07-15 02:31:25 +0000334 pr_info(" %5d %5X %5X %016llX %04X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000335 n, tx_ring->next_to_use, tx_ring->next_to_clean,
336 (u64)tx_buffer_info->dma,
337 tx_buffer_info->length,
338 tx_buffer_info->next_to_watch,
339 (u64)tx_buffer_info->time_stamp);
340 }
341
342 /* Print TX Rings */
343 if (!netif_msg_tx_done(adapter))
344 goto rx_ring_summary;
345
346 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
347
348 /* Transmit Descriptor Formats
349 *
350 * Advanced Transmit Descriptor
351 * +--------------------------------------------------------------+
352 * 0 | Buffer Address [63:0] |
353 * +--------------------------------------------------------------+
354 * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
355 * +--------------------------------------------------------------+
356 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
357 */
358
359 for (n = 0; n < adapter->num_tx_queues; n++) {
360 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000361 pr_info("------------------------------------\n");
362 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
363 pr_info("------------------------------------\n");
364 pr_info("T [desc] [address 63:0 ] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000365 "[PlPOIdStDDt Ln] [bi->dma ] "
366 "leng ntw timestamp bi->skb\n");
367
368 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duycke4f74022012-01-31 02:59:44 +0000369 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000370 tx_buffer_info = &tx_ring->tx_buffer_info[i];
371 u0 = (struct my_u0 *)tx_desc;
Joe Perchesc7689572010-09-07 21:35:17 +0000372 pr_info("T [0x%03X] %016llX %016llX %016llX"
Alexander Duyckd3d00232011-07-15 02:31:25 +0000373 " %04X %p %016llX %p", i,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000374 le64_to_cpu(u0->a),
375 le64_to_cpu(u0->b),
376 (u64)tx_buffer_info->dma,
377 tx_buffer_info->length,
378 tx_buffer_info->next_to_watch,
379 (u64)tx_buffer_info->time_stamp,
380 tx_buffer_info->skb);
381 if (i == tx_ring->next_to_use &&
382 i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000383 pr_cont(" NTC/U\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000384 else if (i == tx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000385 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000386 else if (i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000387 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000388 else
Joe Perchesc7689572010-09-07 21:35:17 +0000389 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000390
391 if (netif_msg_pktdata(adapter) &&
392 tx_buffer_info->dma != 0)
393 print_hex_dump(KERN_INFO, "",
394 DUMP_PREFIX_ADDRESS, 16, 1,
395 phys_to_virt(tx_buffer_info->dma),
396 tx_buffer_info->length, true);
397 }
398 }
399
400 /* Print RX Rings Summary */
401rx_ring_summary:
402 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000403 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000404 for (n = 0; n < adapter->num_rx_queues; n++) {
405 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000406 pr_info("%5d %5X %5X\n",
407 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000408 }
409
410 /* Print RX Rings */
411 if (!netif_msg_rx_status(adapter))
412 goto exit;
413
414 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
415
416 /* Advanced Receive Descriptor (Read) Format
417 * 63 1 0
418 * +-----------------------------------------------------+
419 * 0 | Packet Buffer Address [63:1] |A0/NSE|
420 * +----------------------------------------------+------+
421 * 8 | Header Buffer Address [63:1] | DD |
422 * +-----------------------------------------------------+
423 *
424 *
425 * Advanced Receive Descriptor (Write-Back) Format
426 *
427 * 63 48 47 32 31 30 21 20 16 15 4 3 0
428 * +------------------------------------------------------+
429 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
430 * | Checksum Ident | | | | Type | Type |
431 * +------------------------------------------------------+
432 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
433 * +------------------------------------------------------+
434 * 63 48 47 32 31 20 19 0
435 */
436 for (n = 0; n < adapter->num_rx_queues; n++) {
437 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000438 pr_info("------------------------------------\n");
439 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
440 pr_info("------------------------------------\n");
441 pr_info("R [desc] [ PktBuf A0] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000442 "[ HeadBuf DD] [bi->dma ] [bi->skb] "
443 "<-- Adv Rx Read format\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000444 pr_info("RWB[desc] [PcsmIpSHl PtRs] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000445 "[vl er S cks ln] ---------------- [bi->skb] "
446 "<-- Adv Rx Write-Back format\n");
447
448 for (i = 0; i < rx_ring->count; i++) {
449 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000450 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000451 u0 = (struct my_u0 *)rx_desc;
452 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
453 if (staterr & IXGBE_RXD_STAT_DD) {
454 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000455 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000456 "%016llX ---------------- %p", i,
457 le64_to_cpu(u0->a),
458 le64_to_cpu(u0->b),
459 rx_buffer_info->skb);
460 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000461 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000462 "%016llX %016llX %p", i,
463 le64_to_cpu(u0->a),
464 le64_to_cpu(u0->b),
465 (u64)rx_buffer_info->dma,
466 rx_buffer_info->skb);
467
468 if (netif_msg_pktdata(adapter)) {
469 print_hex_dump(KERN_INFO, "",
470 DUMP_PREFIX_ADDRESS, 16, 1,
471 phys_to_virt(rx_buffer_info->dma),
472 rx_ring->rx_buf_len, true);
473
474 if (rx_ring->rx_buf_len
Alexander Duyck919e78a2011-08-26 09:52:38 +0000475 < IXGBE_RXBUFFER_2K)
Taku Izumidcd79ae2010-04-27 14:39:53 +0000476 print_hex_dump(KERN_INFO, "",
477 DUMP_PREFIX_ADDRESS, 16, 1,
478 phys_to_virt(
479 rx_buffer_info->page_dma +
480 rx_buffer_info->page_offset
481 ),
482 PAGE_SIZE/2, true);
483 }
484 }
485
486 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000487 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000488 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000489 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000490 else
Joe Perchesc7689572010-09-07 21:35:17 +0000491 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000492
493 }
494 }
495
496exit:
497 return;
498}
499
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800500static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
501{
502 u32 ctrl_ext;
503
504 /* Let firmware take over control of h/w */
505 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
506 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000507 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800508}
509
510static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
511{
512 u32 ctrl_ext;
513
514 /* Let firmware know the driver has taken over */
515 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
516 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000517 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800518}
Auke Kok9a799d72007-09-15 14:07:45 -0700519
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000520/*
521 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
522 * @adapter: pointer to adapter struct
523 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
524 * @queue: queue to map the corresponding interrupt to
525 * @msix_vector: the vector to map to the corresponding queue
526 *
527 */
528static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000529 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700530{
531 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000532 struct ixgbe_hw *hw = &adapter->hw;
533 switch (hw->mac.type) {
534 case ixgbe_mac_82598EB:
535 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
536 if (direction == -1)
537 direction = 0;
538 index = (((direction * 64) + queue) >> 2) & 0x1F;
539 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
540 ivar &= ~(0xFF << (8 * (queue & 0x3)));
541 ivar |= (msix_vector << (8 * (queue & 0x3)));
542 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
543 break;
544 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800545 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000546 if (direction == -1) {
547 /* other causes */
548 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
549 index = ((queue & 1) * 8);
550 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
551 ivar &= ~(0xFF << index);
552 ivar |= (msix_vector << index);
553 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
554 break;
555 } else {
556 /* tx or rx causes */
557 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
558 index = ((16 * (queue & 1)) + (8 * direction));
559 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
560 ivar &= ~(0xFF << index);
561 ivar |= (msix_vector << index);
562 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
563 break;
564 }
565 default:
566 break;
567 }
Auke Kok9a799d72007-09-15 14:07:45 -0700568}
569
Alexander Duyckfe49f042009-06-04 16:00:09 +0000570static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000571 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000572{
573 u32 mask;
574
Alexander Duyckbd508172010-11-16 19:27:03 -0800575 switch (adapter->hw.mac.type) {
576 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000577 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
578 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800579 break;
580 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800581 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000582 mask = (qmask & 0xFFFFFFFF);
583 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
584 mask = (qmask >> 32);
585 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800586 break;
587 default:
588 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000589 }
590}
591
Alexander Duyckd3d00232011-07-15 02:31:25 +0000592static inline void ixgbe_unmap_tx_resource(struct ixgbe_ring *ring,
593 struct ixgbe_tx_buffer *tx_buffer)
594{
595 if (tx_buffer->dma) {
596 if (tx_buffer->tx_flags & IXGBE_TX_FLAGS_MAPPED_AS_PAGE)
597 dma_unmap_page(ring->dev,
598 tx_buffer->dma,
599 tx_buffer->length,
600 DMA_TO_DEVICE);
601 else
602 dma_unmap_single(ring->dev,
603 tx_buffer->dma,
604 tx_buffer->length,
605 DMA_TO_DEVICE);
606 }
607 tx_buffer->dma = 0;
608}
609
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800610void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *tx_ring,
611 struct ixgbe_tx_buffer *tx_buffer_info)
Auke Kok9a799d72007-09-15 14:07:45 -0700612{
Alexander Duyckd3d00232011-07-15 02:31:25 +0000613 ixgbe_unmap_tx_resource(tx_ring, tx_buffer_info);
614 if (tx_buffer_info->skb)
Auke Kok9a799d72007-09-15 14:07:45 -0700615 dev_kfree_skb_any(tx_buffer_info->skb);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000616 tx_buffer_info->skb = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -0700617 /* tx_buffer_info must be completely set up in the transmit path */
618}
619
John Fastabendc84d3242010-11-16 19:27:12 -0800620static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700621{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700622 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800623 struct ixgbe_hw_stats *hwstats = &adapter->stats;
624 u32 data = 0;
625 u32 xoff[8] = {0};
626 int i;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700627
John Fastabendc84d3242010-11-16 19:27:12 -0800628 if ((hw->fc.current_mode == ixgbe_fc_full) ||
629 (hw->fc.current_mode == ixgbe_fc_rx_pause)) {
630 switch (hw->mac.type) {
631 case ixgbe_mac_82598EB:
632 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
633 break;
634 default:
635 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
636 }
637 hwstats->lxoffrxc += data;
638
639 /* refill credits (no tx hang) if we received xoff */
640 if (!data)
641 return;
642
643 for (i = 0; i < adapter->num_tx_queues; i++)
644 clear_bit(__IXGBE_HANG_CHECK_ARMED,
645 &adapter->tx_ring[i]->state);
646 return;
647 } else if (!(adapter->dcb_cfg.pfc_mode_enable))
648 return;
649
650 /* update stats for each tc, only valid with PFC enabled */
651 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
652 switch (hw->mac.type) {
653 case ixgbe_mac_82598EB:
654 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
655 break;
656 default:
657 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
658 }
659 hwstats->pxoffrxc[i] += xoff[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700660 }
661
John Fastabendc84d3242010-11-16 19:27:12 -0800662 /* disarm tx queues that have received xoff frames */
663 for (i = 0; i < adapter->num_tx_queues; i++) {
664 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendfb5475f2011-04-26 07:26:36 +0000665 u8 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800666
667 if (xoff[tc])
668 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
669 }
670}
671
672static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
673{
674 return ring->tx_stats.completed;
675}
676
677static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
678{
679 struct ixgbe_adapter *adapter = netdev_priv(ring->netdev);
680 struct ixgbe_hw *hw = &adapter->hw;
681
682 u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
683 u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
684
685 if (head != tail)
686 return (head < tail) ?
687 tail - head : (tail + ring->count - head);
688
689 return 0;
690}
691
692static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
693{
694 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
695 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
696 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
697 bool ret = false;
698
699 clear_check_for_tx_hang(tx_ring);
700
701 /*
702 * Check for a hung queue, but be thorough. This verifies
703 * that a transmit has been completed since the previous
704 * check AND there is at least one packet pending. The
705 * ARMED bit is set to indicate a potential hang. The
706 * bit is cleared if a pause frame is received to remove
707 * false hang detection due to PFC or 802.3x frames. By
708 * requiring this to fail twice we avoid races with
709 * pfc clearing the ARMED bit and conditions where we
710 * run the check_tx_hang logic with a transmit completion
711 * pending but without time to complete it yet.
712 */
713 if ((tx_done_old == tx_done) && tx_pending) {
714 /* make sure it is true for two checks in a row */
715 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
716 &tx_ring->state);
717 } else {
718 /* update completed stats and continue */
719 tx_ring->tx_stats.tx_done_old = tx_done;
720 /* reset the countdown */
721 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
722 }
723
724 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700725}
726
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000727/**
728 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
729 * @adapter: driver private struct
730 **/
731static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
732{
733
734 /* Do the reset outside of interrupt context */
735 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
736 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
737 ixgbe_service_event_schedule(adapter);
738 }
739}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700740
Auke Kok9a799d72007-09-15 14:07:45 -0700741/**
742 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000743 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700744 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700745 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000746static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000747 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700748{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000749 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000750 struct ixgbe_tx_buffer *tx_buffer;
751 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700752 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +0000753 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000754 u16 i = tx_ring->next_to_clean;
Auke Kok9a799d72007-09-15 14:07:45 -0700755
Alexander Duyckd3d00232011-07-15 02:31:25 +0000756 tx_buffer = &tx_ring->tx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000757 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800758
Alexander Duyck30065e62011-07-15 03:05:14 +0000759 for (; budget; budget--) {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000760 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -0700761
Alexander Duyckd3d00232011-07-15 02:31:25 +0000762 /* if next_to_watch is not set then there is no work pending */
763 if (!eop_desc)
764 break;
765
Alexander Duyck7f83a9e2012-02-08 07:49:23 +0000766 /* prevent any other reads prior to eop_desc */
767 rmb();
768
Alexander Duyckd3d00232011-07-15 02:31:25 +0000769 /* if DD is not set pending work has not been completed */
770 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
771 break;
772
773 /* count the packet as being completed */
774 tx_ring->tx_stats.completed++;
775
776 /* clear next_to_watch to prevent false hangs */
777 tx_buffer->next_to_watch = NULL;
778
Alexander Duyckd3d00232011-07-15 02:31:25 +0000779 do {
780 ixgbe_unmap_tx_resource(tx_ring, tx_buffer);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000781 if (likely(tx_desc == eop_desc)) {
782 eop_desc = NULL;
783 dev_kfree_skb_any(tx_buffer->skb);
784 tx_buffer->skb = NULL;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800785
Alexander Duyckd3d00232011-07-15 02:31:25 +0000786 total_bytes += tx_buffer->bytecount;
787 total_packets += tx_buffer->gso_segs;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800788 }
789
Alexander Duyckd3d00232011-07-15 02:31:25 +0000790 tx_buffer++;
791 tx_desc++;
792 i++;
793 if (unlikely(i == tx_ring->count)) {
794 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700795
Alexander Duyckd3d00232011-07-15 02:31:25 +0000796 tx_buffer = tx_ring->tx_buffer_info;
Alexander Duycke4f74022012-01-31 02:59:44 +0000797 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000798 }
799
800 } while (eop_desc);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800801 }
802
Auke Kok9a799d72007-09-15 14:07:45 -0700803 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000804 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -0800805 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +0000806 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000807 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +0000808 q_vector->tx.total_bytes += total_bytes;
809 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -0800810
John Fastabendc84d3242010-11-16 19:27:12 -0800811 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -0800812 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -0800813 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycke4f74022012-01-31 02:59:44 +0000814 tx_desc = IXGBE_TX_DESC(tx_ring, i);
John Fastabendc84d3242010-11-16 19:27:12 -0800815 e_err(drv, "Detected Tx Unit Hang\n"
816 " Tx Queue <%d>\n"
817 " TDH, TDT <%x>, <%x>\n"
818 " next_to_use <%x>\n"
819 " next_to_clean <%x>\n"
820 "tx_buffer_info[next_to_clean]\n"
821 " time_stamp <%lx>\n"
822 " jiffies <%lx>\n",
823 tx_ring->queue_index,
824 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
825 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +0000826 tx_ring->next_to_use, i,
827 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -0800828
829 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
830
831 e_info(probe,
832 "tx hang %d detected on queue %d, resetting adapter\n",
833 adapter->tx_timeout_count + 1, tx_ring->queue_index);
834
835 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000836 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -0800837
838 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +0000839 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -0800840 }
Auke Kok9a799d72007-09-15 14:07:45 -0700841
Alexander Duyckb2d96e02012-02-07 08:14:33 +0000842 netdev_tx_completed_queue(txring_txq(tx_ring),
843 total_packets, total_bytes);
844
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800845#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +0000846 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +0000847 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800848 /* Make sure that anybody stopping the queue after this
849 * sees the new next_to_clean.
850 */
851 smp_mb();
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800852 if (__netif_subqueue_stopped(tx_ring->netdev, tx_ring->queue_index) &&
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800853 !test_bit(__IXGBE_DOWN, &adapter->state)) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800854 netif_wake_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800855 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800856 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800857 }
Auke Kok9a799d72007-09-15 14:07:45 -0700858
Alexander Duyck59224552011-08-31 00:01:06 +0000859 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -0700860}
861
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400862#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800863static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800864 struct ixgbe_ring *rx_ring,
865 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800866{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800867 struct ixgbe_hw *hw = &adapter->hw;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800868 u32 rxctrl;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800869 u8 reg_idx = rx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800870
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800871 rxctrl = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(reg_idx));
872 switch (hw->mac.type) {
873 case ixgbe_mac_82598EB:
874 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000875 rxctrl |= dca3_get_tag(rx_ring->dev, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800876 break;
877 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800878 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800879 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK_82599;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000880 rxctrl |= (dca3_get_tag(rx_ring->dev, cpu) <<
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800881 IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599);
882 break;
883 default:
884 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800885 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800886 rxctrl |= IXGBE_DCA_RXCTRL_DESC_DCA_EN;
887 rxctrl |= IXGBE_DCA_RXCTRL_HEAD_DCA_EN;
888 rxctrl &= ~(IXGBE_DCA_RXCTRL_DESC_RRO_EN);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800889 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800890}
891
892static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800893 struct ixgbe_ring *tx_ring,
894 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800895{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000896 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800897 u32 txctrl;
898 u8 reg_idx = tx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800899
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800900 switch (hw->mac.type) {
901 case ixgbe_mac_82598EB:
902 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(reg_idx));
903 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000904 txctrl |= dca3_get_tag(tx_ring->dev, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800905 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800906 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(reg_idx), txctrl);
907 break;
908 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800909 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800910 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx));
911 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK_82599;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000912 txctrl |= (dca3_get_tag(tx_ring->dev, cpu) <<
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800913 IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599);
914 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800915 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx), txctrl);
916 break;
917 default:
918 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800919 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800920}
921
922static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
923{
924 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000925 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800926 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800927
928 if (q_vector->cpu == cpu)
929 goto out_no_update;
930
Alexander Duycka5579282012-02-08 07:50:04 +0000931 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000932 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800933
Alexander Duycka5579282012-02-08 07:50:04 +0000934 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000935 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800936
937 q_vector->cpu = cpu;
938out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800939 put_cpu();
940}
941
942static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
943{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800944 int num_q_vectors;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800945 int i;
946
947 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
948 return;
949
Alexander Duycke35ec122009-05-21 13:07:12 +0000950 /* always use CB2 mode, difference is masked in the CB driver */
951 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
952
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800953 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
954 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
955 else
956 num_q_vectors = 1;
957
958 for (i = 0; i < num_q_vectors; i++) {
959 adapter->q_vector[i]->cpu = -1;
960 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800961 }
962}
963
964static int __ixgbe_notify_dca(struct device *dev, void *data)
965{
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800966 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800967 unsigned long event = *(unsigned long *)data;
968
Don Skidmore2a72c312011-07-20 02:27:05 +0000969 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800970 return 0;
971
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800972 switch (event) {
973 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -0700974 /* if we're already enabled, don't do it again */
975 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
976 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +0300977 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -0700978 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800979 ixgbe_setup_dca(adapter);
980 break;
981 }
982 /* Fall Through since DCA is disabled. */
983 case DCA_PROVIDER_REMOVE:
984 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
985 dca_remove_requester(dev);
986 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
987 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
988 }
989 break;
990 }
991
Denis V. Lunev652f0932008-03-27 14:39:17 +0300992 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800993}
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400994#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov67a74ee2011-04-23 04:50:40 +0000995
Alexander Duyck8a0da212012-01-31 02:59:49 +0000996static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
997 union ixgbe_adv_rx_desc *rx_desc,
Emil Tantilov67a74ee2011-04-23 04:50:40 +0000998 struct sk_buff *skb)
999{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001000 if (ring->netdev->features & NETIF_F_RXHASH)
1001 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001002}
1003
Auke Kok9a799d72007-09-15 14:07:45 -07001004/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001005 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
1006 * @adapter: address of board private structure
1007 * @rx_desc: advanced rx descriptor
1008 *
1009 * Returns : true if it is FCoE pkt
1010 */
1011static inline bool ixgbe_rx_is_fcoe(struct ixgbe_adapter *adapter,
1012 union ixgbe_adv_rx_desc *rx_desc)
1013{
1014 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1015
1016 return (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
1017 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1018 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1019 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1020}
1021
1022/**
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001023 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
Alexander Duyck8a0da212012-01-31 02:59:49 +00001024 * @ring: structure containing ring specific data
1025 * @rx_desc: current Rx descriptor being processed
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001026 * @skb: skb currently being received and modified
1027 **/
Alexander Duyck8a0da212012-01-31 02:59:49 +00001028static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001029 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001030 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001031{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001032 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001033
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001034 /* Rx csum disabled */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001035 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Auke Kok9a799d72007-09-15 14:07:45 -07001036 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001037
1038 /* if IP and error */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001039 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1040 ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001041 ring->rx_stats.csum_err++;
Auke Kok9a799d72007-09-15 14:07:45 -07001042 return;
1043 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001044
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001045 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001046 return;
1047
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001048 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Don Skidmore8bae1b22009-07-23 18:00:39 +00001049 u16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1050
1051 /*
1052 * 82599 errata, UDP frames with a 0 checksum can be marked as
1053 * checksum errors.
1054 */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001055 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1056 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
Don Skidmore8bae1b22009-07-23 18:00:39 +00001057 return;
1058
Alexander Duyck8a0da212012-01-31 02:59:49 +00001059 ring->rx_stats.csum_err++;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001060 return;
1061 }
1062
Auke Kok9a799d72007-09-15 14:07:45 -07001063 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001064 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001065}
1066
Alexander Duyck84ea2592010-11-16 19:26:49 -08001067static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001068{
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001069 rx_ring->next_to_use = val;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001070 /*
1071 * Force memory writes to complete before letting h/w
1072 * know there are new descriptors to fetch. (Only
1073 * applicable for weak-ordered memory model archs,
1074 * such as IA-64).
1075 */
1076 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001077 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001078}
1079
Alexander Duyckf990b792012-01-31 02:59:34 +00001080static bool ixgbe_alloc_mapped_skb(struct ixgbe_ring *rx_ring,
1081 struct ixgbe_rx_buffer *bi)
1082{
1083 struct sk_buff *skb = bi->skb;
1084 dma_addr_t dma = bi->dma;
1085
1086 if (dma)
1087 return true;
1088
1089 if (likely(!skb)) {
1090 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1091 rx_ring->rx_buf_len);
1092 bi->skb = skb;
1093 if (!skb) {
1094 rx_ring->rx_stats.alloc_rx_buff_failed++;
1095 return false;
1096 }
Alexander Duyckf990b792012-01-31 02:59:34 +00001097 }
1098
1099 dma = dma_map_single(rx_ring->dev, skb->data,
1100 rx_ring->rx_buf_len, DMA_FROM_DEVICE);
1101
1102 if (dma_mapping_error(rx_ring->dev, dma)) {
1103 rx_ring->rx_stats.alloc_rx_buff_failed++;
1104 return false;
1105 }
1106
1107 bi->dma = dma;
1108 return true;
1109}
1110
1111static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1112 struct ixgbe_rx_buffer *bi)
1113{
1114 struct page *page = bi->page;
1115 dma_addr_t page_dma = bi->page_dma;
1116 unsigned int page_offset = bi->page_offset ^ (PAGE_SIZE / 2);
1117
1118 if (page_dma)
1119 return true;
1120
1121 if (!page) {
1122 page = alloc_page(GFP_ATOMIC | __GFP_COLD);
1123 bi->page = page;
1124 if (unlikely(!page)) {
1125 rx_ring->rx_stats.alloc_rx_page_failed++;
1126 return false;
1127 }
1128 }
1129
1130 page_dma = dma_map_page(rx_ring->dev, page,
1131 page_offset, PAGE_SIZE / 2,
1132 DMA_FROM_DEVICE);
1133
1134 if (dma_mapping_error(rx_ring->dev, page_dma)) {
1135 rx_ring->rx_stats.alloc_rx_page_failed++;
1136 return false;
1137 }
1138
1139 bi->page_dma = page_dma;
1140 bi->page_offset = page_offset;
1141 return true;
1142}
1143
Auke Kok9a799d72007-09-15 14:07:45 -07001144/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001145 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001146 * @rx_ring: ring to place buffers on
1147 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001148 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001149void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001150{
Auke Kok9a799d72007-09-15 14:07:45 -07001151 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001152 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001153 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001154
Alexander Duyckf990b792012-01-31 02:59:34 +00001155 /* nothing to do or no valid netdev defined */
1156 if (!cleaned_count || !rx_ring->netdev)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001157 return;
1158
Alexander Duycke4f74022012-01-31 02:59:44 +00001159 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Alexander Duyckf990b792012-01-31 02:59:34 +00001160 bi = &rx_ring->rx_buffer_info[i];
1161 i -= rx_ring->count;
1162
Auke Kok9a799d72007-09-15 14:07:45 -07001163 while (cleaned_count--) {
Alexander Duyckf990b792012-01-31 02:59:34 +00001164 if (!ixgbe_alloc_mapped_skb(rx_ring, bi))
1165 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001166
Alexander Duyckf990b792012-01-31 02:59:34 +00001167 /* Refresh the desc even if buffer_addrs didn't change
1168 * because each write-back erases this info. */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001169 if (ring_is_ps_enabled(rx_ring)) {
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001170 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
Alexander Duyckf990b792012-01-31 02:59:34 +00001171
1172 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
1173 break;
1174
1175 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001176 } else {
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001177 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001178 }
1179
Alexander Duyckf990b792012-01-31 02:59:34 +00001180 rx_desc++;
1181 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001182 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001183 if (unlikely(!i)) {
Alexander Duycke4f74022012-01-31 02:59:44 +00001184 rx_desc = IXGBE_RX_DESC(rx_ring, 0);
Alexander Duyckf990b792012-01-31 02:59:34 +00001185 bi = rx_ring->rx_buffer_info;
1186 i -= rx_ring->count;
1187 }
1188
1189 /* clear the hdr_addr for the next_to_use descriptor */
1190 rx_desc->read.hdr_addr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001191 }
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001192
Alexander Duyckf990b792012-01-31 02:59:34 +00001193 i += rx_ring->count;
1194
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001195 if (rx_ring->next_to_use != i)
Alexander Duyck84ea2592010-11-16 19:26:49 -08001196 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001197}
1198
Alexander Duyckc267fc12010-11-16 19:27:00 -08001199static inline u16 ixgbe_get_hlen(union ixgbe_adv_rx_desc *rx_desc)
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001200{
Alexander Duyckc267fc12010-11-16 19:27:00 -08001201 /* HW will not DMA in data larger than the given buffer, even if it
1202 * parses the (NFS, of course) header to be larger. In that case, it
1203 * fills the header buffer and spills the rest into the page.
1204 */
1205 u16 hdr_info = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.hdr_info);
1206 u16 hlen = (hdr_info & IXGBE_RXDADV_HDRBUFLEN_MASK) >>
1207 IXGBE_RXDADV_HDRBUFLEN_SHIFT;
1208 if (hlen > IXGBE_RX_HDR_SIZE)
1209 hlen = IXGBE_RX_HDR_SIZE;
1210 return hlen;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001211}
1212
Alexander Duyckf8212f92009-04-27 22:42:37 +00001213/**
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001214 * ixgbe_merge_active_tail - merge active tail into lro skb
1215 * @tail: pointer to active tail in frag_list
Alexander Duyckf8212f92009-04-27 22:42:37 +00001216 *
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001217 * This function merges the length and data of an active tail into the
1218 * skb containing the frag_list. It resets the tail's pointer to the head,
1219 * but it leaves the heads pointer to tail intact.
Alexander Duyckf8212f92009-04-27 22:42:37 +00001220 **/
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001221static inline struct sk_buff *ixgbe_merge_active_tail(struct sk_buff *tail)
Alexander Duyckf8212f92009-04-27 22:42:37 +00001222{
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001223 struct sk_buff *head = IXGBE_CB(tail)->head;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001224
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001225 if (!head)
1226 return tail;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001227
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001228 head->len += tail->len;
1229 head->data_len += tail->len;
1230 head->truesize += tail->len;
Alexander Duyckaa801752010-11-16 19:27:02 -08001231
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001232 IXGBE_CB(tail)->head = NULL;
1233
1234 return head;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001235}
1236
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001237/**
1238 * ixgbe_add_active_tail - adds an active tail into the skb frag_list
1239 * @head: pointer to the start of the skb
1240 * @tail: pointer to active tail to add to frag_list
1241 *
1242 * This function adds an active tail to the end of the frag list. This tail
1243 * will still be receiving data so we cannot yet ad it's stats to the main
1244 * skb. That is done via ixgbe_merge_active_tail.
1245 **/
1246static inline void ixgbe_add_active_tail(struct sk_buff *head,
1247 struct sk_buff *tail)
Alexander Duyckaa801752010-11-16 19:27:02 -08001248{
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001249 struct sk_buff *old_tail = IXGBE_CB(head)->tail;
1250
1251 if (old_tail) {
1252 ixgbe_merge_active_tail(old_tail);
1253 old_tail->next = tail;
1254 } else {
1255 skb_shinfo(head)->frag_list = tail;
1256 }
1257
1258 IXGBE_CB(tail)->head = head;
1259 IXGBE_CB(head)->tail = tail;
1260}
1261
1262/**
1263 * ixgbe_close_active_frag_list - cleanup pointers on a frag_list skb
1264 * @head: pointer to head of an active frag list
1265 *
1266 * This function will clear the frag_tail_tracker pointer on an active
1267 * frag_list and returns true if the pointer was actually set
1268 **/
1269static inline bool ixgbe_close_active_frag_list(struct sk_buff *head)
1270{
1271 struct sk_buff *tail = IXGBE_CB(head)->tail;
1272
1273 if (!tail)
1274 return false;
1275
1276 ixgbe_merge_active_tail(tail);
1277
1278 IXGBE_CB(head)->tail = NULL;
1279
1280 return true;
1281}
1282
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001283/**
1284 * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE
1285 * @data: pointer to the start of the headers
1286 * @max_len: total length of section to find headers in
1287 *
1288 * This function is meant to determine the length of headers that will
1289 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1290 * motivation of doing this is to only perform one pull for IPv4 TCP
1291 * packets so that we can do basic things like calculating the gso_size
1292 * based on the average data per packet.
1293 **/
1294static unsigned int ixgbe_get_headlen(unsigned char *data,
1295 unsigned int max_len)
1296{
1297 union {
1298 unsigned char *network;
1299 /* l2 headers */
1300 struct ethhdr *eth;
1301 struct vlan_hdr *vlan;
1302 /* l3 headers */
1303 struct iphdr *ipv4;
1304 } hdr;
1305 __be16 protocol;
1306 u8 nexthdr = 0; /* default to not TCP */
1307 u8 hlen;
1308
1309 /* this should never happen, but better safe than sorry */
1310 if (max_len < ETH_HLEN)
1311 return max_len;
1312
1313 /* initialize network frame pointer */
1314 hdr.network = data;
1315
1316 /* set first protocol and move network header forward */
1317 protocol = hdr.eth->h_proto;
1318 hdr.network += ETH_HLEN;
1319
1320 /* handle any vlan tag if present */
1321 if (protocol == __constant_htons(ETH_P_8021Q)) {
1322 if ((hdr.network - data) > (max_len - VLAN_HLEN))
1323 return max_len;
1324
1325 protocol = hdr.vlan->h_vlan_encapsulated_proto;
1326 hdr.network += VLAN_HLEN;
1327 }
1328
1329 /* handle L3 protocols */
1330 if (protocol == __constant_htons(ETH_P_IP)) {
1331 if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
1332 return max_len;
1333
1334 /* access ihl as a u8 to avoid unaligned access on ia64 */
1335 hlen = (hdr.network[0] & 0x0F) << 2;
1336
1337 /* verify hlen meets minimum size requirements */
1338 if (hlen < sizeof(struct iphdr))
1339 return hdr.network - data;
1340
1341 /* record next protocol */
1342 nexthdr = hdr.ipv4->protocol;
1343 hdr.network += hlen;
1344#ifdef CONFIG_FCOE
1345 } else if (protocol == __constant_htons(ETH_P_FCOE)) {
1346 if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN))
1347 return max_len;
1348 hdr.network += FCOE_HEADER_LEN;
1349#endif
1350 } else {
1351 return hdr.network - data;
1352 }
1353
1354 /* finally sort out TCP */
1355 if (nexthdr == IPPROTO_TCP) {
1356 if ((hdr.network - data) > (max_len - sizeof(struct tcphdr)))
1357 return max_len;
1358
1359 /* access doff as a u8 to avoid unaligned access on ia64 */
1360 hlen = (hdr.network[12] & 0xF0) >> 2;
1361
1362 /* verify hlen meets minimum size requirements */
1363 if (hlen < sizeof(struct tcphdr))
1364 return hdr.network - data;
1365
1366 hdr.network += hlen;
1367 }
1368
1369 /*
1370 * If everything has gone correctly hdr.network should be the
1371 * data section of the packet and will be the end of the header.
1372 * If not then it probably represents the end of the last recognized
1373 * header.
1374 */
1375 if ((hdr.network - data) < max_len)
1376 return hdr.network - data;
1377 else
1378 return max_len;
1379}
1380
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001381static void ixgbe_get_rsc_cnt(struct ixgbe_ring *rx_ring,
1382 union ixgbe_adv_rx_desc *rx_desc,
1383 struct sk_buff *skb)
1384{
1385 __le32 rsc_enabled;
1386 u32 rsc_cnt;
1387
1388 if (!ring_is_rsc_enabled(rx_ring))
1389 return;
1390
1391 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1392 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1393
1394 /* If this is an RSC frame rsc_cnt should be non-zero */
1395 if (!rsc_enabled)
1396 return;
1397
1398 rsc_cnt = le32_to_cpu(rsc_enabled);
1399 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1400
1401 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
Alexander Duyckaa801752010-11-16 19:27:02 -08001402}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001403
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001404static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1405 struct sk_buff *skb)
1406{
1407 u16 hdr_len = ixgbe_get_headlen(skb->data, skb_headlen(skb));
1408
1409 /* set gso_size to avoid messing up TCP MSS */
1410 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1411 IXGBE_CB(skb)->append_cnt);
1412}
1413
1414static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1415 struct sk_buff *skb)
1416{
1417 /* if append_cnt is 0 then frame is not RSC */
1418 if (!IXGBE_CB(skb)->append_cnt)
1419 return;
1420
1421 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1422 rx_ring->rx_stats.rsc_flush++;
1423
1424 ixgbe_set_rsc_gso_size(rx_ring, skb);
1425
1426 /* gso_size is computed using append_cnt so always clear it last */
1427 IXGBE_CB(skb)->append_cnt = 0;
1428}
1429
Alexander Duyck8a0da212012-01-31 02:59:49 +00001430/**
1431 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1432 * @rx_ring: rx descriptor ring packet is being transacted on
1433 * @rx_desc: pointer to the EOP Rx descriptor
1434 * @skb: pointer to current skb being populated
1435 *
1436 * This function checks the ring, descriptor, and packet information in
1437 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1438 * other fields within the skb.
1439 **/
1440static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1441 union ixgbe_adv_rx_desc *rx_desc,
1442 struct sk_buff *skb)
1443{
1444 ixgbe_update_rsc_stats(rx_ring, skb);
1445
1446 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1447
1448 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1449
1450 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
1451 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
1452 __vlan_hwaccel_put_tag(skb, vid);
1453 }
1454
1455 skb_record_rx_queue(skb, rx_ring->queue_index);
1456
1457 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
1458}
1459
1460static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1461 struct sk_buff *skb)
1462{
1463 struct ixgbe_adapter *adapter = q_vector->adapter;
1464
1465 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1466 napi_gro_receive(&q_vector->napi, skb);
1467 else
1468 netif_rx(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001469}
1470
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001471static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001472 struct ixgbe_ring *rx_ring,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001473 int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001474{
Auke Kok9a799d72007-09-15 14:07:45 -07001475 union ixgbe_adv_rx_desc *rx_desc, *next_rxd;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001476 struct ixgbe_rx_buffer *rx_buffer_info;
Auke Kok9a799d72007-09-15 14:07:45 -07001477 struct sk_buff *skb;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001478 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001479 const int current_node = numa_node_id();
Yi Zou3d8fd382009-06-08 14:38:44 +00001480#ifdef IXGBE_FCOE
Alexander Duyck8a0da212012-01-31 02:59:49 +00001481 struct ixgbe_adapter *adapter = q_vector->adapter;
Yi Zou3d8fd382009-06-08 14:38:44 +00001482 int ddp_bytes = 0;
1483#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001484 u16 i;
1485 u16 cleaned_count = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001486
1487 i = rx_ring->next_to_clean;
Alexander Duycke4f74022012-01-31 02:59:44 +00001488 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001489
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001490 while (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD)) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001491 u32 upper_len = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001492
Milton Miller3c945e52010-02-19 17:44:42 +00001493 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kok9a799d72007-09-15 14:07:45 -07001494
Alexander Duyckc267fc12010-11-16 19:27:00 -08001495 rx_buffer_info = &rx_ring->rx_buffer_info[i];
1496
Auke Kok9a799d72007-09-15 14:07:45 -07001497 skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001498 rx_buffer_info->skb = NULL;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001499 prefetch(skb->data);
Auke Kok9a799d72007-09-15 14:07:45 -07001500
David S. Miller8decf862011-09-22 03:23:13 -04001501 /* linear means we are building an skb from multiple pages */
1502 if (!skb_is_nonlinear(skb)) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001503 u16 hlen;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001504 if (ring_is_ps_enabled(rx_ring)) {
1505 hlen = ixgbe_get_hlen(rx_desc);
1506 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
1507 } else {
1508 hlen = le16_to_cpu(rx_desc->wb.upper.length);
1509 }
1510
1511 skb_put(skb, hlen);
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001512
1513 /*
1514 * Delay unmapping of the first packet. It carries the
1515 * header information, HW may still access the header
1516 * after writeback. Only unmap it when EOP is reached
1517 */
1518 if (!IXGBE_CB(skb)->head) {
1519 IXGBE_CB(skb)->delay_unmap = true;
1520 IXGBE_CB(skb)->dma = rx_buffer_info->dma;
1521 } else {
1522 skb = ixgbe_merge_active_tail(skb);
1523 dma_unmap_single(rx_ring->dev,
1524 rx_buffer_info->dma,
1525 rx_ring->rx_buf_len,
1526 DMA_FROM_DEVICE);
1527 }
1528 rx_buffer_info->dma = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001529 } else {
1530 /* assume packet split since header is unmapped */
1531 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kok9a799d72007-09-15 14:07:45 -07001532 }
1533
1534 if (upper_len) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001535 dma_unmap_page(rx_ring->dev,
1536 rx_buffer_info->page_dma,
1537 PAGE_SIZE / 2,
1538 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001539 rx_buffer_info->page_dma = 0;
1540 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
Joe Perchese8e9f692010-09-07 21:34:53 +00001541 rx_buffer_info->page,
1542 rx_buffer_info->page_offset,
1543 upper_len);
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001544
Alexander Duyckc267fc12010-11-16 19:27:00 -08001545 if ((page_count(rx_buffer_info->page) == 1) &&
1546 (page_to_nid(rx_buffer_info->page) == current_node))
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001547 get_page(rx_buffer_info->page);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001548 else
1549 rx_buffer_info->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001550
1551 skb->len += upper_len;
1552 skb->data_len += upper_len;
Eric Dumazet98130642011-10-13 07:59:41 +00001553 skb->truesize += PAGE_SIZE / 2;
Auke Kok9a799d72007-09-15 14:07:45 -07001554 }
1555
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001556 ixgbe_get_rsc_cnt(rx_ring, rx_desc, skb);
1557
Auke Kok9a799d72007-09-15 14:07:45 -07001558 i++;
1559 if (i == rx_ring->count)
1560 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001561
Alexander Duycke4f74022012-01-31 02:59:44 +00001562 next_rxd = IXGBE_RX_DESC(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001563 prefetch(next_rxd);
Auke Kok9a799d72007-09-15 14:07:45 -07001564 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001565
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001566 if ((!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))) {
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001567 struct ixgbe_rx_buffer *next_buffer;
1568 u32 nextp;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001569
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001570 if (IXGBE_CB(skb)->append_cnt) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001571 nextp = le32_to_cpu(
1572 rx_desc->wb.upper.status_error);
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001573 nextp >>= IXGBE_RXDADV_NEXTP_SHIFT;
1574 } else {
1575 nextp = i;
1576 }
1577
1578 next_buffer = &rx_ring->rx_buffer_info[nextp];
1579
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001580 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001581 rx_buffer_info->skb = next_buffer->skb;
1582 rx_buffer_info->dma = next_buffer->dma;
1583 next_buffer->skb = skb;
1584 next_buffer->dma = 0;
1585 } else {
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001586 struct sk_buff *next_skb = next_buffer->skb;
1587 ixgbe_add_active_tail(skb, next_skb);
1588 IXGBE_CB(next_skb)->head = skb;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001589 }
Alexander Duyck5b7da512010-11-16 19:26:50 -08001590 rx_ring->rx_stats.non_eop_descs++;
Auke Kok9a799d72007-09-15 14:07:45 -07001591 goto next_desc;
1592 }
1593
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001594 dma_unmap_single(rx_ring->dev,
1595 IXGBE_CB(skb)->dma,
1596 rx_ring->rx_buf_len,
1597 DMA_FROM_DEVICE);
1598 IXGBE_CB(skb)->dma = 0;
1599 IXGBE_CB(skb)->delay_unmap = false;
1600
1601 if (ixgbe_close_active_frag_list(skb) &&
1602 !IXGBE_CB(skb)->append_cnt) {
Alexander Duyckaa801752010-11-16 19:27:02 -08001603 /* if we got here without RSC the packet is invalid */
Alexander Duyckff886df2011-06-11 01:45:13 +00001604 dev_kfree_skb_any(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001605 goto next_desc;
1606 }
1607
Auke Kok9a799d72007-09-15 14:07:45 -07001608 /* ERR_MASK will only have valid bits if EOP set */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001609 if (unlikely(ixgbe_test_staterr(rx_desc,
1610 IXGBE_RXDADV_ERR_FRAME_ERR_MASK))) {
Auke Kok9a799d72007-09-15 14:07:45 -07001611 dev_kfree_skb_any(skb);
1612 goto next_desc;
1613 }
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001614
1615 /* probably a little skewed due to removing CRC */
1616 total_rx_bytes += skb->len;
1617 total_rx_packets++;
1618
Alexander Duyck8a0da212012-01-31 02:59:49 +00001619 /* populate checksum, timestamp, VLAN, and protocol */
1620 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
1621
Yi Zou332d4a72009-05-13 13:11:53 +00001622#ifdef IXGBE_FCOE
1623 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyckff886df2011-06-11 01:45:13 +00001624 if (ixgbe_rx_is_fcoe(adapter, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001625 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
David S. Miller823dcd22011-08-20 10:39:12 -07001626 if (!ddp_bytes) {
1627 dev_kfree_skb_any(skb);
Yi Zou332d4a72009-05-13 13:11:53 +00001628 goto next_desc;
David S. Miller823dcd22011-08-20 10:39:12 -07001629 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001630 }
Yi Zou332d4a72009-05-13 13:11:53 +00001631#endif /* IXGBE_FCOE */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001632 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001633
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001634 budget--;
Auke Kok9a799d72007-09-15 14:07:45 -07001635next_desc:
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001636 if (!budget)
Alexander Duyckc267fc12010-11-16 19:27:00 -08001637 break;
1638
Auke Kok9a799d72007-09-15 14:07:45 -07001639 /* return some buffers to hardware, one at a time is too slow */
1640 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001641 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001642 cleaned_count = 0;
1643 }
1644
1645 /* use prefetched values */
1646 rx_desc = next_rxd;
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001647 }
1648
Auke Kok9a799d72007-09-15 14:07:45 -07001649 rx_ring->next_to_clean = i;
Alexander Duyck7d4987d2011-05-27 05:31:37 +00001650 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001651
1652 if (cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001653 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001654
Yi Zou3d8fd382009-06-08 14:38:44 +00001655#ifdef IXGBE_FCOE
1656 /* include DDPed FCoE data */
1657 if (ddp_bytes > 0) {
1658 unsigned int mss;
1659
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001660 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001661 sizeof(struct fc_frame_header) -
1662 sizeof(struct fcoe_crc_eof);
1663 if (mss > 512)
1664 mss &= ~511;
1665 total_rx_bytes += ddp_bytes;
1666 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1667 }
1668#endif /* IXGBE_FCOE */
1669
Alexander Duyckc267fc12010-11-16 19:27:00 -08001670 u64_stats_update_begin(&rx_ring->syncp);
1671 rx_ring->stats.packets += total_rx_packets;
1672 rx_ring->stats.bytes += total_rx_bytes;
1673 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001674 q_vector->rx.total_packets += total_rx_packets;
1675 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001676
1677 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001678}
1679
Auke Kok9a799d72007-09-15 14:07:45 -07001680/**
1681 * ixgbe_configure_msix - Configure MSI-X hardware
1682 * @adapter: board private structure
1683 *
1684 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1685 * interrupts.
1686 **/
1687static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1688{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001689 struct ixgbe_q_vector *q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001690 int q_vectors, v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001691 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001692
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001693 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1694
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00001695 /* Populate MSIX to EITR Select */
1696 if (adapter->num_vfs > 32) {
1697 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
1698 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
1699 }
1700
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001701 /*
1702 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001703 * corresponding register.
1704 */
1705 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001706 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001707 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001708
Alexander Duycka5579282012-02-08 07:50:04 +00001709 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001710 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001711
Alexander Duycka5579282012-02-08 07:50:04 +00001712 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001713 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001714
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001715 if (q_vector->tx.ring && !q_vector->rx.ring) {
1716 /* tx only vector */
1717 if (adapter->tx_itr_setting == 1)
1718 q_vector->itr = IXGBE_10K_ITR;
1719 else
1720 q_vector->itr = adapter->tx_itr_setting;
1721 } else {
1722 /* rx or rx/tx vector */
1723 if (adapter->rx_itr_setting == 1)
1724 q_vector->itr = IXGBE_20K_ITR;
1725 else
1726 q_vector->itr = adapter->rx_itr_setting;
1727 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001728
Alexander Duyckfe49f042009-06-04 16:00:09 +00001729 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001730 }
1731
Alexander Duyckbd508172010-11-16 19:27:03 -08001732 switch (adapter->hw.mac.type) {
1733 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001734 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001735 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001736 break;
1737 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001738 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001739 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001740 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08001741 default:
1742 break;
1743 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001744 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001745
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001746 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001747 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001748 mask &= ~(IXGBE_EIMS_OTHER |
1749 IXGBE_EIMS_MAILBOX |
1750 IXGBE_EIMS_LSC);
1751
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001752 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001753}
1754
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001755enum latency_range {
1756 lowest_latency = 0,
1757 low_latency = 1,
1758 bulk_latency = 2,
1759 latency_invalid = 255
1760};
1761
1762/**
1763 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00001764 * @q_vector: structure containing interrupt and ring information
1765 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001766 *
1767 * Stores a new ITR value based on packets and byte
1768 * counts during the last interrupt. The advantage of per interrupt
1769 * computation is faster updates and more accurate ITR for the current
1770 * traffic pattern. Constants in this function were computed
1771 * based on theoretical maximum wire speed and thresholds were set based
1772 * on testing data as well as attempting to minimize response time
1773 * while increasing bulk throughput.
1774 * this functionality is controlled by the InterruptThrottleRate module
1775 * parameter (see ixgbe_param.c)
1776 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00001777static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
1778 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001779{
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001780 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00001781 struct ixgbe_adapter *adapter = q_vector->adapter;
1782 int bytes = ring_container->total_bytes;
1783 int packets = ring_container->total_packets;
1784 u32 timepassed_us;
1785 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001786
1787 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00001788 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001789
1790 /* simple throttlerate management
1791 * 0-20MB/s lowest (100000 ints/s)
1792 * 20-100MB/s low (20000 ints/s)
1793 * 100-1249MB/s bulk (8000 ints/s)
1794 */
1795 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001796 timepassed_us = q_vector->itr >> 2;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001797 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1798
1799 switch (itr_setting) {
1800 case lowest_latency:
1801 if (bytes_perint > adapter->eitr_low)
Alexander Duyckbd198052011-06-11 01:45:08 +00001802 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001803 break;
1804 case low_latency:
1805 if (bytes_perint > adapter->eitr_high)
Alexander Duyckbd198052011-06-11 01:45:08 +00001806 itr_setting = bulk_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001807 else if (bytes_perint <= adapter->eitr_low)
Alexander Duyckbd198052011-06-11 01:45:08 +00001808 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001809 break;
1810 case bulk_latency:
1811 if (bytes_perint <= adapter->eitr_high)
Alexander Duyckbd198052011-06-11 01:45:08 +00001812 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001813 break;
1814 }
1815
Alexander Duyckbd198052011-06-11 01:45:08 +00001816 /* clear work counters since we have the values we need */
1817 ring_container->total_bytes = 0;
1818 ring_container->total_packets = 0;
1819
1820 /* write updated itr to ring container */
1821 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001822}
1823
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001824/**
1825 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001826 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001827 *
1828 * This function is made to be called by ethtool and by the driver
1829 * when it needs to update EITR registers at runtime. Hardware
1830 * specific quirks/differences are taken care of here.
1831 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001832void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001833{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001834 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001835 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001836 int v_idx = q_vector->v_idx;
Alexander Duyck5d967eb2012-02-08 07:49:43 +00001837 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001838
Alexander Duyckbd508172010-11-16 19:27:03 -08001839 switch (adapter->hw.mac.type) {
1840 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001841 /* must write high and low 16 bits to reset counter */
1842 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001843 break;
1844 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001845 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001846 /*
1847 * set the WDIS bit to not clear the timer bits and cause an
1848 * immediate assertion of the interrupt
1849 */
1850 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08001851 break;
1852 default:
1853 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001854 }
1855 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
1856}
1857
Alexander Duyckbd198052011-06-11 01:45:08 +00001858static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001859{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001860 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00001861 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001862
Alexander Duyckbd198052011-06-11 01:45:08 +00001863 ixgbe_update_itr(q_vector, &q_vector->tx);
1864 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001865
Alexander Duyck08c88332011-06-11 01:45:03 +00001866 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001867
1868 switch (current_itr) {
1869 /* counts and packets in update_itr are dependent on these numbers */
1870 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001871 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001872 break;
1873 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001874 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001875 break;
1876 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001877 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001878 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00001879 default:
1880 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001881 }
1882
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001883 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00001884 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001885 new_itr = (10 * new_itr * q_vector->itr) /
1886 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001887
Alexander Duyckbd198052011-06-11 01:45:08 +00001888 /* save the algorithm value here */
Alexander Duyck5d967eb2012-02-08 07:49:43 +00001889 q_vector->itr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001890
1891 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001892 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001893}
1894
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001895/**
Alexander Duyckde88eee2012-02-08 07:49:59 +00001896 * ixgbe_check_overtemp_subtask - check for over temperature
Alexander Duyckf0f97782011-04-22 04:08:09 +00001897 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001898 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00001899static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001900{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001901 struct ixgbe_hw *hw = &adapter->hw;
1902 u32 eicr = adapter->interrupt_event;
1903
Alexander Duyckf0f97782011-04-22 04:08:09 +00001904 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00001905 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001906
Alexander Duyckf0f97782011-04-22 04:08:09 +00001907 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1908 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
1909 return;
1910
1911 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1912
Joe Perches7ca647b2010-09-07 21:35:40 +00001913 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00001914 case IXGBE_DEV_ID_82599_T3_LOM:
1915 /*
1916 * Since the warning interrupt is for both ports
1917 * we don't have to check if:
1918 * - This interrupt wasn't for our port.
1919 * - We may have missed the interrupt so always have to
1920 * check if we got a LSC
1921 */
1922 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
1923 !(eicr & IXGBE_EICR_LSC))
1924 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001925
Alexander Duyckf0f97782011-04-22 04:08:09 +00001926 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
1927 u32 autoneg;
1928 bool link_up = false;
1929
Joe Perches7ca647b2010-09-07 21:35:40 +00001930 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
1931
Alexander Duyckf0f97782011-04-22 04:08:09 +00001932 if (link_up)
1933 return;
1934 }
1935
1936 /* Check if this is not due to overtemp */
1937 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
1938 return;
1939
1940 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00001941 default:
1942 if (!(eicr & IXGBE_EICR_GPI_SDP0))
1943 return;
1944 break;
1945 }
1946 e_crit(drv,
1947 "Network adapter has been stopped because it has over heated. "
1948 "Restart the computer. If the problem persists, "
1949 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00001950
1951 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001952}
1953
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001954static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
1955{
1956 struct ixgbe_hw *hw = &adapter->hw;
1957
1958 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
1959 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00001960 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001961 /* write to clear the interrupt */
1962 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
1963 }
1964}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001965
Jacob Keller4f51bf72011-08-20 04:49:45 +00001966static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
1967{
1968 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
1969 return;
1970
1971 switch (adapter->hw.mac.type) {
1972 case ixgbe_mac_82599EB:
1973 /*
1974 * Need to check link state so complete overtemp check
1975 * on service task
1976 */
1977 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
1978 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
1979 adapter->interrupt_event = eicr;
1980 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1981 ixgbe_service_event_schedule(adapter);
1982 return;
1983 }
1984 return;
1985 case ixgbe_mac_X540:
1986 if (!(eicr & IXGBE_EICR_TS))
1987 return;
1988 break;
1989 default:
1990 return;
1991 }
1992
1993 e_crit(drv,
1994 "Network adapter has been stopped because it has over heated. "
1995 "Restart the computer. If the problem persists, "
1996 "power off the system and replace the adapter\n");
1997}
1998
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001999static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2000{
2001 struct ixgbe_hw *hw = &adapter->hw;
2002
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002003 if (eicr & IXGBE_EICR_GPI_SDP2) {
2004 /* Clear the interrupt */
2005 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002006 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2007 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2008 ixgbe_service_event_schedule(adapter);
2009 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002010 }
2011
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002012 if (eicr & IXGBE_EICR_GPI_SDP1) {
2013 /* Clear the interrupt */
2014 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002015 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2016 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2017 ixgbe_service_event_schedule(adapter);
2018 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002019 }
2020}
2021
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002022static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2023{
2024 struct ixgbe_hw *hw = &adapter->hw;
2025
2026 adapter->lsc_int++;
2027 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2028 adapter->link_check_timeout = jiffies;
2029 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2030 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002031 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002032 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002033 }
2034}
2035
Alexander Duyckfe49f042009-06-04 16:00:09 +00002036static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2037 u64 qmask)
2038{
2039 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002040 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002041
Alexander Duyckbd508172010-11-16 19:27:03 -08002042 switch (hw->mac.type) {
2043 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002044 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002045 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2046 break;
2047 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002048 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002049 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002050 if (mask)
2051 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002052 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002053 if (mask)
2054 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2055 break;
2056 default:
2057 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002058 }
2059 /* skip the flush */
2060}
2061
2062static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002063 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002064{
2065 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002066 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002067
Alexander Duyckbd508172010-11-16 19:27:03 -08002068 switch (hw->mac.type) {
2069 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002070 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002071 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2072 break;
2073 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002074 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002075 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002076 if (mask)
2077 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002078 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002079 if (mask)
2080 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2081 break;
2082 default:
2083 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002084 }
2085 /* skip the flush */
2086}
2087
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002088/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002089 * ixgbe_irq_enable - Enable default interrupt generation settings
2090 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002091 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002092static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2093 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002094{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002095 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002096
Alexander Duyck2c4af692011-07-15 07:29:55 +00002097 /* don't reenable LSC while waiting for link */
2098 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2099 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002100
Alexander Duyck2c4af692011-07-15 07:29:55 +00002101 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002102 switch (adapter->hw.mac.type) {
2103 case ixgbe_mac_82599EB:
2104 mask |= IXGBE_EIMS_GPI_SDP0;
2105 break;
2106 case ixgbe_mac_X540:
2107 mask |= IXGBE_EIMS_TS;
2108 break;
2109 default:
2110 break;
2111 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002112 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2113 mask |= IXGBE_EIMS_GPI_SDP1;
2114 switch (adapter->hw.mac.type) {
2115 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002116 mask |= IXGBE_EIMS_GPI_SDP1;
2117 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002118 case ixgbe_mac_X540:
2119 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002120 mask |= IXGBE_EIMS_MAILBOX;
2121 break;
2122 default:
2123 break;
2124 }
2125 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2126 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2127 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002128
Alexander Duyck2c4af692011-07-15 07:29:55 +00002129 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2130 if (queues)
2131 ixgbe_irq_enable_queues(adapter, ~0);
2132 if (flush)
2133 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002134}
2135
Alexander Duyck2c4af692011-07-15 07:29:55 +00002136static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002137{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002138 struct ixgbe_adapter *adapter = data;
2139 struct ixgbe_hw *hw = &adapter->hw;
2140 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002141
Alexander Duyck2c4af692011-07-15 07:29:55 +00002142 /*
2143 * Workaround for Silicon errata. Use clear-by-write instead
2144 * of clear-by-read. Reading with EICS will return the
2145 * interrupt causes without clearing, which later be done
2146 * with the write to EICR.
2147 */
2148 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
2149 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002150
Alexander Duyck2c4af692011-07-15 07:29:55 +00002151 if (eicr & IXGBE_EICR_LSC)
2152 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002153
Alexander Duyck2c4af692011-07-15 07:29:55 +00002154 if (eicr & IXGBE_EICR_MAILBOX)
2155 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002156
Alexander Duyck2c4af692011-07-15 07:29:55 +00002157 switch (hw->mac.type) {
2158 case ixgbe_mac_82599EB:
2159 case ixgbe_mac_X540:
2160 if (eicr & IXGBE_EICR_ECC)
2161 e_info(link, "Received unrecoverable ECC Err, please "
2162 "reboot\n");
2163 /* Handle Flow Director Full threshold interrupt */
2164 if (eicr & IXGBE_EICR_FLOW_DIR) {
2165 int reinit_count = 0;
2166 int i;
2167 for (i = 0; i < adapter->num_tx_queues; i++) {
2168 struct ixgbe_ring *ring = adapter->tx_ring[i];
2169 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2170 &ring->state))
2171 reinit_count++;
2172 }
2173 if (reinit_count) {
2174 /* no more flow director interrupts until after init */
2175 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2176 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2177 ixgbe_service_event_schedule(adapter);
2178 }
2179 }
2180 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002181 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002182 break;
2183 default:
2184 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002185 }
2186
Alexander Duyck2c4af692011-07-15 07:29:55 +00002187 ixgbe_check_fan_failure(adapter, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07002188
Alexander Duyck2c4af692011-07-15 07:29:55 +00002189 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002190 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002191 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002192
Alexander Duyck2c4af692011-07-15 07:29:55 +00002193 return IRQ_HANDLED;
2194}
2195
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002196static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002197{
2198 struct ixgbe_q_vector *q_vector = data;
2199
Auke Kok9a799d72007-09-15 14:07:45 -07002200 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002201
2202 if (q_vector->rx.ring || q_vector->tx.ring)
2203 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002204
2205 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002206}
2207
Auke Kok9a799d72007-09-15 14:07:45 -07002208/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002209 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2210 * @adapter: board private structure
2211 *
2212 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2213 * interrupts from the kernel.
2214 **/
2215static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2216{
2217 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002218 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2219 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002220 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002221
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002222 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002223 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002224 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002225
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002226 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002227 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002228 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002229 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002230 } else if (q_vector->rx.ring) {
2231 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2232 "%s-%s-%d", netdev->name, "rx", ri++);
2233 } else if (q_vector->tx.ring) {
2234 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2235 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002236 } else {
2237 /* skip this unused q_vector */
2238 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002239 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002240 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2241 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002242 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002243 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002244 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002245 goto free_queue_irqs;
2246 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002247 /* If Flow Director is enabled, set interrupt affinity */
2248 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2249 /* assign the mask for this irq */
2250 irq_set_affinity_hint(entry->vector,
Alexander Duyckde88eee2012-02-08 07:49:59 +00002251 &q_vector->affinity_mask);
Alexander Duyck207867f2011-07-15 03:05:37 +00002252 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002253 }
2254
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002255 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002256 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002257 if (err) {
Alexander Duyckde88eee2012-02-08 07:49:59 +00002258 e_err(probe, "request_irq for msix_other failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002259 goto free_queue_irqs;
2260 }
2261
2262 return 0;
2263
2264free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002265 while (vector) {
2266 vector--;
2267 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2268 NULL);
2269 free_irq(adapter->msix_entries[vector].vector,
2270 adapter->q_vector[vector]);
2271 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002272 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2273 pci_disable_msix(adapter->pdev);
2274 kfree(adapter->msix_entries);
2275 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002276 return err;
2277}
2278
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002279/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002280 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002281 * @irq: interrupt number
2282 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002283 **/
2284static irqreturn_t ixgbe_intr(int irq, void *data)
2285{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002286 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002287 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002288 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002289 u32 eicr;
2290
Don Skidmore54037502009-02-21 15:42:56 -08002291 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002292 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002293 * before the read of EICR.
2294 */
2295 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2296
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002297 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002298 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002299 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002300 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002301 /*
2302 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002303 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002304 * have disabled interrupts due to EIAM
2305 * finish the workaround of silicon errata on 82598. Unmask
2306 * the interrupt that we masked before the EICR read.
2307 */
2308 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2309 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002310 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002311 }
Auke Kok9a799d72007-09-15 14:07:45 -07002312
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002313 if (eicr & IXGBE_EICR_LSC)
2314 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002315
Alexander Duyckbd508172010-11-16 19:27:03 -08002316 switch (hw->mac.type) {
2317 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002318 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002319 /* Fall through */
2320 case ixgbe_mac_X540:
2321 if (eicr & IXGBE_EICR_ECC)
2322 e_info(link, "Received unrecoverable ECC err, please "
2323 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002324 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002325 break;
2326 default:
2327 break;
2328 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002329
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002330 ixgbe_check_fan_failure(adapter, eicr);
2331
Alexander Duyckb9f6ed22012-02-08 07:49:54 +00002332 /* would disable interrupts here but EIAM disabled it */
2333 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002334
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002335 /*
2336 * re-enable link(maybe) and non-queue interrupts, no flush.
2337 * ixgbe_poll will re-enable the queue interrupts
2338 */
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002339 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2340 ixgbe_irq_enable(adapter, false, false);
2341
Auke Kok9a799d72007-09-15 14:07:45 -07002342 return IRQ_HANDLED;
2343}
2344
2345/**
2346 * ixgbe_request_irq - initialize interrupts
2347 * @adapter: board private structure
2348 *
2349 * Attempts to configure interrupts using the best available
2350 * capabilities of the hardware and kernel.
2351 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002352static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002353{
2354 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002355 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002356
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002357 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002358 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002359 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002360 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002361 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002362 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002363 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002364 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002365
Alexander Duyckde88eee2012-02-08 07:49:59 +00002366 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002367 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002368
Auke Kok9a799d72007-09-15 14:07:45 -07002369 return err;
2370}
2371
2372static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2373{
Auke Kok9a799d72007-09-15 14:07:45 -07002374 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002375 int i, q_vectors;
Auke Kok9a799d72007-09-15 14:07:45 -07002376
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002377 q_vectors = adapter->num_msix_vectors;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002378 i = q_vectors - 1;
Alexander Duycka65151ba22011-05-27 05:31:32 +00002379 free_irq(adapter->msix_entries[i].vector, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002380 i--;
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002381
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002382 for (; i >= 0; i--) {
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002383 /* free only the irqs that were actually requested */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002384 if (!adapter->q_vector[i]->rx.ring &&
2385 !adapter->q_vector[i]->tx.ring)
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002386 continue;
2387
Alexander Duyck207867f2011-07-15 03:05:37 +00002388 /* clear the affinity_mask in the IRQ descriptor */
2389 irq_set_affinity_hint(adapter->msix_entries[i].vector,
2390 NULL);
2391
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002392 free_irq(adapter->msix_entries[i].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002393 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002394 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002395 } else {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002396 free_irq(adapter->pdev->irq, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002397 }
2398}
2399
2400/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002401 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2402 * @adapter: board private structure
2403 **/
2404static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2405{
Alexander Duyckbd508172010-11-16 19:27:03 -08002406 switch (adapter->hw.mac.type) {
2407 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002408 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002409 break;
2410 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002411 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002412 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2413 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002414 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002415 break;
2416 default:
2417 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002418 }
2419 IXGBE_WRITE_FLUSH(&adapter->hw);
2420 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2421 int i;
2422 for (i = 0; i < adapter->num_msix_vectors; i++)
2423 synchronize_irq(adapter->msix_entries[i].vector);
2424 } else {
2425 synchronize_irq(adapter->pdev->irq);
2426 }
2427}
2428
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002429/**
Auke Kok9a799d72007-09-15 14:07:45 -07002430 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2431 *
2432 **/
2433static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2434{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002435 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002436
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002437 /* rx/tx vector */
2438 if (adapter->rx_itr_setting == 1)
2439 q_vector->itr = IXGBE_20K_ITR;
2440 else
2441 q_vector->itr = adapter->rx_itr_setting;
2442
2443 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002444
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002445 ixgbe_set_ivar(adapter, 0, 0, 0);
2446 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002447
Emil Tantilov396e7992010-07-01 20:05:12 +00002448 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002449}
2450
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002451/**
2452 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2453 * @adapter: board private structure
2454 * @ring: structure containing ring specific data
2455 *
2456 * Configure the Tx descriptor ring after a reset.
2457 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002458void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2459 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002460{
2461 struct ixgbe_hw *hw = &adapter->hw;
2462 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002463 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002464 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002465 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002466
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002467 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002468 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002469 IXGBE_WRITE_FLUSH(hw);
2470
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002471 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002472 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002473 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2474 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2475 ring->count * sizeof(union ixgbe_adv_tx_desc));
2476 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2477 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002478 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002479
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002480 /*
2481 * set WTHRESH to encourage burst writeback, it should not be set
2482 * higher than 1 when ITR is 0 as it could cause false TX hangs
2483 *
2484 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2485 * to or less than the number of on chip descriptors, which is
2486 * currently 40.
2487 */
Alexander Duycke954b372012-02-08 07:49:38 +00002488 if (!ring->q_vector || (ring->q_vector->itr < 8))
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002489 txdctl |= (1 << 16); /* WTHRESH = 1 */
2490 else
2491 txdctl |= (8 << 16); /* WTHRESH = 8 */
2492
Alexander Duycke954b372012-02-08 07:49:38 +00002493 /*
2494 * Setting PTHRESH to 32 both improves performance
2495 * and avoids a TX hang with DFP enabled
2496 */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002497 txdctl |= (1 << 8) | /* HTHRESH = 1 */
2498 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002499
2500 /* reinitialize flowdirector state */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002501 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2502 adapter->atr_sample_rate) {
2503 ring->atr_sample_rate = adapter->atr_sample_rate;
2504 ring->atr_count = 0;
2505 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2506 } else {
2507 ring->atr_sample_rate = 0;
2508 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002509
John Fastabendc84d3242010-11-16 19:27:12 -08002510 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2511
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002512 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002513 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2514
Alexander Duyckb2d96e02012-02-07 08:14:33 +00002515 netdev_tx_reset_queue(txring_txq(ring));
2516
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002517 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2518 if (hw->mac.type == ixgbe_mac_82598EB &&
2519 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2520 return;
2521
2522 /* poll to verify queue is enabled */
2523 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002524 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002525 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2526 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2527 if (!wait_loop)
2528 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002529}
2530
Alexander Duyck120ff942010-08-19 13:34:50 +00002531static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2532{
2533 struct ixgbe_hw *hw = &adapter->hw;
2534 u32 rttdcs;
John Fastabend72a32f12011-04-26 07:25:58 +00002535 u32 reg;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002536 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002537
2538 if (hw->mac.type == ixgbe_mac_82598EB)
2539 return;
2540
2541 /* disable the arbiter while setting MTQC */
2542 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2543 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2544 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2545
2546 /* set transmit pool layout */
John Fastabend8b1c0b22011-05-03 02:26:48 +00002547 switch (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Alexander Duyck120ff942010-08-19 13:34:50 +00002548 case (IXGBE_FLAG_SRIOV_ENABLED):
2549 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2550 (IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF));
2551 break;
Alexander Duyck120ff942010-08-19 13:34:50 +00002552 default:
John Fastabend8b1c0b22011-05-03 02:26:48 +00002553 if (!tcs)
2554 reg = IXGBE_MTQC_64Q_1PB;
2555 else if (tcs <= 4)
2556 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2557 else
2558 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2559
2560 IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
2561
2562 /* Enable Security TX Buffer IFG for multiple pb */
2563 if (tcs) {
2564 reg = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2565 reg |= IXGBE_SECTX_DCB;
2566 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, reg);
2567 }
Alexander Duyck120ff942010-08-19 13:34:50 +00002568 break;
2569 }
2570
2571 /* re-enable the arbiter */
2572 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2573 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2574}
2575
Auke Kok9a799d72007-09-15 14:07:45 -07002576/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002577 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002578 * @adapter: board private structure
2579 *
2580 * Configure the Tx unit of the MAC after a reset.
2581 **/
2582static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2583{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002584 struct ixgbe_hw *hw = &adapter->hw;
2585 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002586 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002587
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002588 ixgbe_setup_mtqc(adapter);
2589
2590 if (hw->mac.type != ixgbe_mac_82598EB) {
2591 /* DMATXCTL.EN must be before Tx queues are enabled */
2592 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2593 dmatxctl |= IXGBE_DMATXCTL_TE;
2594 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2595 }
2596
Auke Kok9a799d72007-09-15 14:07:45 -07002597 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002598 for (i = 0; i < adapter->num_tx_queues; i++)
2599 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002600}
2601
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002602#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002603
Yi Zoua6616b42009-08-06 13:05:23 +00002604static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002605 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002606{
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002607 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002608 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002609
Alexander Duyckbd508172010-11-16 19:27:03 -08002610 switch (adapter->hw.mac.type) {
2611 case ixgbe_mac_82598EB: {
2612 struct ixgbe_ring_feature *feature = adapter->ring_feature;
2613 const int mask = feature[RING_F_RSS].mask;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002614 reg_idx = reg_idx & mask;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002615 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002616 break;
2617 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002618 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08002619 default:
2620 break;
2621 }
2622
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002623 srrctl = IXGBE_READ_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx));
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002624
2625 srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
2626 srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002627 if (adapter->num_vfs)
2628 srrctl |= IXGBE_SRRCTL_DROP_EN;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002629
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002630 srrctl |= (IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
2631 IXGBE_SRRCTL_BSIZEHDR_MASK;
2632
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002633 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002634#if (PAGE_SIZE / 2) > IXGBE_MAX_RXBUFFER
2635 srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2636#else
2637 srrctl |= (PAGE_SIZE / 2) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2638#endif
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002639 srrctl |= IXGBE_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002640 } else {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002641 srrctl |= ALIGN(rx_ring->rx_buf_len, 1024) >>
2642 IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002643 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002644 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002645
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002646 IXGBE_WRITE_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002647}
2648
Alexander Duyck05abb122010-08-19 13:35:41 +00002649static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002650{
Alexander Duyck05abb122010-08-19 13:35:41 +00002651 struct ixgbe_hw *hw = &adapter->hw;
2652 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002653 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2654 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002655 u32 mrqc = 0, reta = 0;
2656 u32 rxcsum;
2657 int i, j;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002658 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend86b4db32011-04-26 07:26:19 +00002659 int maxq = adapter->ring_feature[RING_F_RSS].indices;
2660
2661 if (tcs)
2662 maxq = min(maxq, adapter->num_tx_queues / tcs);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002663
Alexander Duyck05abb122010-08-19 13:35:41 +00002664 /* Fill out hash function seeds */
2665 for (i = 0; i < 10; i++)
2666 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002667
Alexander Duyck05abb122010-08-19 13:35:41 +00002668 /* Fill out redirection table */
2669 for (i = 0, j = 0; i < 128; i++, j++) {
John Fastabend86b4db32011-04-26 07:26:19 +00002670 if (j == maxq)
Alexander Duyck05abb122010-08-19 13:35:41 +00002671 j = 0;
2672 /* reta = 4-byte sliding window of
2673 * 0x00..(indices-1)(indices-1)00..etc. */
2674 reta = (reta << 8) | (j * 0x11);
2675 if ((i & 3) == 3)
2676 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2677 }
2678
2679 /* Disable indicating checksum in descriptor, enables RSS hash */
2680 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2681 rxcsum |= IXGBE_RXCSUM_PCSD;
2682 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2683
John Fastabend8b1c0b22011-05-03 02:26:48 +00002684 if (adapter->hw.mac.type == ixgbe_mac_82598EB &&
2685 (adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002686 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002687 } else {
2688 int mask = adapter->flags & (IXGBE_FLAG_RSS_ENABLED
2689 | IXGBE_FLAG_SRIOV_ENABLED);
2690
2691 switch (mask) {
2692 case (IXGBE_FLAG_RSS_ENABLED):
2693 if (!tcs)
2694 mrqc = IXGBE_MRQC_RSSEN;
2695 else if (tcs <= 4)
2696 mrqc = IXGBE_MRQC_RTRSS4TCEN;
2697 else
2698 mrqc = IXGBE_MRQC_RTRSS8TCEN;
2699 break;
2700 case (IXGBE_FLAG_SRIOV_ENABLED):
2701 mrqc = IXGBE_MRQC_VMDQEN;
2702 break;
2703 default:
2704 break;
2705 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002706 }
2707
Alexander Duyck05abb122010-08-19 13:35:41 +00002708 /* Perform hash on these packet types */
2709 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2710 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2711 | IXGBE_MRQC_RSS_FIELD_IPV6
2712 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2713
2714 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002715}
2716
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002717/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002718 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2719 * @adapter: address of board private structure
2720 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002721 **/
Don Skidmore082757a2011-07-21 05:55:00 +00002722static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00002723 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002724{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002725 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002726 u32 rscctrl;
Mallikarjuna R Chilakalaedd2ea552009-11-23 10:45:11 -08002727 int rx_buf_len;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002728 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002729
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002730 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002731 return;
2732
2733 rx_buf_len = ring->rx_buf_len;
2734 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002735 rscctrl |= IXGBE_RSCCTL_RSCEN;
2736 /*
2737 * we must limit the number of descriptors so that the
2738 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00002739 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002740 */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002741 if (ring_is_ps_enabled(ring)) {
Alexander Duyck642c6802011-11-10 09:09:17 +00002742#if (PAGE_SIZE < 8192)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002743 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck642c6802011-11-10 09:09:17 +00002744#elif (PAGE_SIZE < 16384)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002745 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
Alexander Duyck642c6802011-11-10 09:09:17 +00002746#elif (PAGE_SIZE < 32768)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002747 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2748#else
2749 rscctrl |= IXGBE_RSCCTL_MAXDESC_1;
2750#endif
2751 } else {
Alexander Duyck642c6802011-11-10 09:09:17 +00002752 if (rx_buf_len <= IXGBE_RXBUFFER_4K)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002753 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck642c6802011-11-10 09:09:17 +00002754 else if (rx_buf_len <= IXGBE_RXBUFFER_8K)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002755 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2756 else
2757 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2758 }
Alexander Duyck73670962010-08-19 13:38:34 +00002759 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002760}
2761
Alexander Duyck9e10e042010-08-19 13:40:06 +00002762/**
2763 * ixgbe_set_uta - Set unicast filter table address
2764 * @adapter: board private structure
2765 *
2766 * The unicast table address is a register array of 32-bit registers.
2767 * The table is meant to be used in a way similar to how the MTA is used
2768 * however due to certain limitations in the hardware it is necessary to
2769 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscuous
2770 * enable bit to allow vlan tag stripping when promiscuous mode is enabled
2771 **/
2772static void ixgbe_set_uta(struct ixgbe_adapter *adapter)
2773{
2774 struct ixgbe_hw *hw = &adapter->hw;
2775 int i;
2776
2777 /* The UTA table only exists on 82599 hardware and newer */
2778 if (hw->mac.type < ixgbe_mac_82599EB)
2779 return;
2780
2781 /* we only need to do this if VMDq is enabled */
2782 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2783 return;
2784
2785 for (i = 0; i < 128; i++)
2786 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
2787}
2788
2789#define IXGBE_MAX_RX_DESC_POLL 10
2790static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
2791 struct ixgbe_ring *ring)
2792{
2793 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002794 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2795 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002796 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002797
2798 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2799 if (hw->mac.type == ixgbe_mac_82598EB &&
2800 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2801 return;
2802
2803 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002804 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002805 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2806 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
2807
2808 if (!wait_loop) {
2809 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
2810 "the polling period\n", reg_idx);
2811 }
2812}
2813
Yi Zou2d39d572011-01-06 14:29:56 +00002814void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
2815 struct ixgbe_ring *ring)
2816{
2817 struct ixgbe_hw *hw = &adapter->hw;
2818 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2819 u32 rxdctl;
2820 u8 reg_idx = ring->reg_idx;
2821
2822 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2823 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
2824
2825 /* write value back with RXDCTL.ENABLE bit cleared */
2826 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2827
2828 if (hw->mac.type == ixgbe_mac_82598EB &&
2829 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2830 return;
2831
2832 /* the hardware may take up to 100us to really disable the rx queue */
2833 do {
2834 udelay(10);
2835 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2836 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
2837
2838 if (!wait_loop) {
2839 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
2840 "the polling period\n", reg_idx);
2841 }
2842}
2843
Alexander Duyck84418e32010-08-19 13:40:54 +00002844void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
2845 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00002846{
2847 struct ixgbe_hw *hw = &adapter->hw;
2848 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002849 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002850 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00002851
Alexander Duyck9e10e042010-08-19 13:40:06 +00002852 /* disable queue to avoid issues while updating state */
2853 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00002854 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002855
Alexander Duyckacd37172010-08-19 13:36:05 +00002856 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
2857 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
2858 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
2859 ring->count * sizeof(union ixgbe_adv_rx_desc));
2860 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
2861 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002862 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002863
2864 ixgbe_configure_srrctl(adapter, ring);
2865 ixgbe_configure_rscctl(adapter, ring);
2866
Greg Rosee9f98072011-01-26 01:06:07 +00002867 /* If operating in IOV mode set RLPML for X540 */
2868 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
2869 hw->mac.type == ixgbe_mac_X540) {
2870 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
2871 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
2872 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
2873 }
2874
Alexander Duyck9e10e042010-08-19 13:40:06 +00002875 if (hw->mac.type == ixgbe_mac_82598EB) {
2876 /*
2877 * enable cache line friendly hardware writes:
2878 * PTHRESH=32 descriptors (half the internal cache),
2879 * this also removes ugly rx_no_buffer_count increment
2880 * HTHRESH=4 descriptors (to minimize latency on fetch)
2881 * WTHRESH=8 burst writeback up to two cache lines
2882 */
2883 rxdctl &= ~0x3FFFFF;
2884 rxdctl |= 0x080420;
2885 }
2886
2887 /* enable receive descriptor ring */
2888 rxdctl |= IXGBE_RXDCTL_ENABLE;
2889 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2890
2891 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00002892 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00002893}
2894
Alexander Duyck48654522010-08-19 13:36:27 +00002895static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
2896{
2897 struct ixgbe_hw *hw = &adapter->hw;
2898 int p;
2899
2900 /* PSRTYPE must be initialized in non 82598 adapters */
2901 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00002902 IXGBE_PSRTYPE_UDPHDR |
2903 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00002904 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00002905 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00002906
2907 if (hw->mac.type == ixgbe_mac_82598EB)
2908 return;
2909
2910 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED)
2911 psrtype |= (adapter->num_rx_queues_per_pool << 29);
2912
2913 for (p = 0; p < adapter->num_rx_pools; p++)
2914 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(adapter->num_vfs + p),
2915 psrtype);
2916}
2917
Alexander Duyckf5b4a522010-08-19 13:38:57 +00002918static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
2919{
2920 struct ixgbe_hw *hw = &adapter->hw;
2921 u32 gcr_ext;
2922 u32 vt_reg_bits;
2923 u32 reg_offset, vf_shift;
2924 u32 vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00002925 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00002926
2927 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2928 return;
2929
2930 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
2931 vt_reg_bits = IXGBE_VMD_CTL_VMDQ_EN | IXGBE_VT_CTL_REPLEN;
2932 vt_reg_bits |= (adapter->num_vfs << IXGBE_VT_CTL_POOL_SHIFT);
2933 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl | vt_reg_bits);
2934
2935 vf_shift = adapter->num_vfs % 32;
Greg Rose4cd69232012-01-25 07:59:37 +00002936 reg_offset = (adapter->num_vfs >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00002937
2938 /* Enable only the PF's pool for Tx/Rx */
2939 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (1 << vf_shift));
2940 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), 0);
2941 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (1 << vf_shift));
2942 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), 0);
2943 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
2944
2945 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
2946 hw->mac.ops.set_vmdq(hw, 0, adapter->num_vfs);
2947
2948 /*
2949 * Set up VF register offsets for selected VT Mode,
2950 * i.e. 32 or 64 VFs for SR-IOV
2951 */
2952 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
2953 gcr_ext |= IXGBE_GCR_EXT_MSIX_EN;
2954 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
2955 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
2956
2957 /* enable Tx loopback for VF/PF communication */
2958 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Greg Rosea985b6c32010-11-18 03:02:52 +00002959 /* Enable MAC Anti-Spoofing */
Greg Rosea1cbb15c2011-05-13 01:33:48 +00002960 hw->mac.ops.set_mac_anti_spoofing(hw,
Greg Rosede4c7f62011-09-29 05:57:33 +00002961 (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00002962 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00002963 /* For VFs that have spoof checking turned off */
2964 for (i = 0; i < adapter->num_vfs; i++) {
2965 if (!adapter->vfinfo[i].spoofchk_enabled)
2966 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
2967 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00002968}
2969
Alexander Duyck477de6e2010-08-19 13:38:11 +00002970static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002971{
Auke Kok9a799d72007-09-15 14:07:45 -07002972 struct ixgbe_hw *hw = &adapter->hw;
2973 struct net_device *netdev = adapter->netdev;
2974 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07002975 int rx_buf_len;
Alexander Duyck477de6e2010-08-19 13:38:11 +00002976 struct ixgbe_ring *rx_ring;
2977 int i;
2978 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00002979
Auke Kok9a799d72007-09-15 14:07:45 -07002980 /* Decide whether to use packet split mode or not */
Don Skidmorea1243392011-01-18 22:53:47 +00002981 /* On by default */
2982 adapter->flags |= IXGBE_FLAG_RX_PS_ENABLED;
2983
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002984 /* Do not use packet split if we're in SR-IOV Mode */
Don Skidmorea1243392011-01-18 22:53:47 +00002985 if (adapter->num_vfs)
2986 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
2987
2988 /* Disable packet split due to 82599 erratum #45 */
2989 if (hw->mac.type == ixgbe_mac_82599EB)
2990 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
Auke Kok9a799d72007-09-15 14:07:45 -07002991
Alexander Duyck477de6e2010-08-19 13:38:11 +00002992#ifdef IXGBE_FCOE
2993 /* adjust max frame to be able to do baby jumbo for FCoE */
2994 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
2995 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
2996 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
2997
2998#endif /* IXGBE_FCOE */
2999 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3000 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3001 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3002 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3003
3004 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003005 }
3006
Alexander Duyck919e78a2011-08-26 09:52:38 +00003007 /* MHADD will allow an extra 4 bytes past for vlan tagged frames */
3008 max_frame += VLAN_HLEN;
3009
3010 /* Set the RX buffer length according to the mode */
3011 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED) {
3012 rx_buf_len = IXGBE_RX_HDR_SIZE;
3013 } else {
3014 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
3015 (netdev->mtu <= ETH_DATA_LEN))
3016 rx_buf_len = MAXIMUM_ETHERNET_VLAN_SIZE;
3017 /*
3018 * Make best use of allocation by using all but 1K of a
3019 * power of 2 allocation that will be used for skb->head.
3020 */
3021 else if (max_frame <= IXGBE_RXBUFFER_3K)
3022 rx_buf_len = IXGBE_RXBUFFER_3K;
3023 else if (max_frame <= IXGBE_RXBUFFER_7K)
3024 rx_buf_len = IXGBE_RXBUFFER_7K;
3025 else if (max_frame <= IXGBE_RXBUFFER_15K)
3026 rx_buf_len = IXGBE_RXBUFFER_15K;
3027 else
3028 rx_buf_len = IXGBE_MAX_RXBUFFER;
3029 }
3030
Auke Kok9a799d72007-09-15 14:07:45 -07003031 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003032 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3033 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003034 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3035
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003036 /*
3037 * Setup the HW Rx Head and Tail Descriptor Pointers and
3038 * the Base and Length of the Rx Descriptor Ring
3039 */
Auke Kok9a799d72007-09-15 14:07:45 -07003040 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003041 rx_ring = adapter->rx_ring[i];
Yi Zoua6616b42009-08-06 13:05:23 +00003042 rx_ring->rx_buf_len = rx_buf_len;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003043
Yi Zou6e455b892009-08-06 13:05:44 +00003044 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003045 set_ring_ps_enabled(rx_ring);
Peter P Waskiewicz Jr1b3ff022009-09-14 07:47:27 +00003046 else
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003047 clear_ring_ps_enabled(rx_ring);
3048
3049 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3050 set_ring_rsc_enabled(rx_ring);
3051 else
3052 clear_ring_rsc_enabled(rx_ring);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003053
Yi Zou63f39bd2009-05-17 12:34:35 +00003054#ifdef IXGBE_FCOE
Joe Perchese8e9f692010-09-07 21:34:53 +00003055 if (netdev->features & NETIF_F_FCOE_MTU) {
Yi Zou63f39bd2009-05-17 12:34:35 +00003056 struct ixgbe_ring_feature *f;
3057 f = &adapter->ring_feature[RING_F_FCOE];
Yi Zou6e455b892009-08-06 13:05:44 +00003058 if ((i >= f->mask) && (i < f->mask + f->indices)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003059 clear_ring_ps_enabled(rx_ring);
Yi Zou6e455b892009-08-06 13:05:44 +00003060 if (rx_buf_len < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3061 rx_ring->rx_buf_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00003062 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003063 } else if (!ring_is_rsc_enabled(rx_ring) &&
3064 !ring_is_ps_enabled(rx_ring)) {
3065 rx_ring->rx_buf_len =
3066 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Yi Zou6e455b892009-08-06 13:05:44 +00003067 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003068 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003069#endif /* IXGBE_FCOE */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003070 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003071}
3072
Alexander Duyck73670962010-08-19 13:38:34 +00003073static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3074{
3075 struct ixgbe_hw *hw = &adapter->hw;
3076 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3077
3078 switch (hw->mac.type) {
3079 case ixgbe_mac_82598EB:
3080 /*
3081 * For VMDq support of different descriptor types or
3082 * buffer sizes through the use of multiple SRRCTL
3083 * registers, RDRXCTL.MVMEN must be set to 1
3084 *
3085 * also, the manual doesn't mention it clearly but DCA hints
3086 * will only use queue 0's tags unless this bit is set. Side
3087 * effects of setting this bit are only that SRRCTL must be
3088 * fully programmed [0..15]
3089 */
3090 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3091 break;
3092 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003093 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003094 /* Disable RSC for ACK packets */
3095 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3096 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3097 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3098 /* hardware requires some bits to be set by default */
3099 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3100 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3101 break;
3102 default:
3103 /* We should do nothing since we don't know this hardware */
3104 return;
3105 }
3106
3107 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3108}
3109
Alexander Duyck477de6e2010-08-19 13:38:11 +00003110/**
3111 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3112 * @adapter: board private structure
3113 *
3114 * Configure the Rx unit of the MAC after a reset.
3115 **/
3116static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3117{
3118 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003119 int i;
3120 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003121
3122 /* disable receives while setting up the descriptors */
3123 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3124 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3125
3126 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003127 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003128
Alexander Duyck9e10e042010-08-19 13:40:06 +00003129 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003130 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003131
Alexander Duyck9e10e042010-08-19 13:40:06 +00003132 ixgbe_set_uta(adapter);
3133
Alexander Duyck477de6e2010-08-19 13:38:11 +00003134 /* set_rx_buffer_len must be called before ring initialization */
3135 ixgbe_set_rx_buffer_len(adapter);
3136
3137 /*
3138 * Setup the HW Rx Head and Tail Descriptor Pointers and
3139 * the Base and Length of the Rx Descriptor Ring
3140 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003141 for (i = 0; i < adapter->num_rx_queues; i++)
3142 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003143
Alexander Duyck9e10e042010-08-19 13:40:06 +00003144 /* disable drop enable for 82598 parts */
3145 if (hw->mac.type == ixgbe_mac_82598EB)
3146 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3147
3148 /* enable all receives */
3149 rxctrl |= IXGBE_RXCTRL_RXEN;
3150 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003151}
3152
Jiri Pirko8e586132011-12-08 19:52:37 -05003153static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003154{
3155 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003156 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003157 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003158
3159 /* add VID to filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003160 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003161 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003162
3163 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003164}
3165
Jiri Pirko8e586132011-12-08 19:52:37 -05003166static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003167{
3168 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003169 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003170 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003171
Auke Kok9a799d72007-09-15 14:07:45 -07003172 /* remove VID from filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003173 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003174 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003175
3176 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003177}
3178
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003179/**
3180 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3181 * @adapter: driver data
3182 */
3183static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3184{
3185 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003186 u32 vlnctrl;
3187
3188 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3189 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3190 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3191}
3192
3193/**
3194 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3195 * @adapter: driver data
3196 */
3197static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3198{
3199 struct ixgbe_hw *hw = &adapter->hw;
3200 u32 vlnctrl;
3201
3202 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3203 vlnctrl |= IXGBE_VLNCTRL_VFE;
3204 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3205 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3206}
3207
3208/**
3209 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3210 * @adapter: driver data
3211 */
3212static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3213{
3214 struct ixgbe_hw *hw = &adapter->hw;
3215 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003216 int i, j;
3217
3218 switch (hw->mac.type) {
3219 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003220 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3221 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003222 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3223 break;
3224 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003225 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003226 for (i = 0; i < adapter->num_rx_queues; i++) {
3227 j = adapter->rx_ring[i]->reg_idx;
3228 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3229 vlnctrl &= ~IXGBE_RXDCTL_VME;
3230 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3231 }
3232 break;
3233 default:
3234 break;
3235 }
3236}
3237
3238/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003239 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003240 * @adapter: driver data
3241 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003242static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003243{
3244 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003245 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003246 int i, j;
3247
3248 switch (hw->mac.type) {
3249 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003250 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3251 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003252 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3253 break;
3254 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003255 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003256 for (i = 0; i < adapter->num_rx_queues; i++) {
3257 j = adapter->rx_ring[i]->reg_idx;
3258 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3259 vlnctrl |= IXGBE_RXDCTL_VME;
3260 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3261 }
3262 break;
3263 default:
3264 break;
3265 }
3266}
3267
Auke Kok9a799d72007-09-15 14:07:45 -07003268static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3269{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003270 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003271
Jesse Grossf62bbb52010-10-20 13:56:10 +00003272 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3273
3274 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3275 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003276}
3277
3278/**
Alexander Duyck28500622010-06-15 09:25:48 +00003279 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3280 * @netdev: network interface device structure
3281 *
3282 * Writes unicast address list to the RAR table.
3283 * Returns: -ENOMEM on failure/insufficient address space
3284 * 0 on no addresses written
3285 * X on writing X addresses to the RAR table
3286 **/
3287static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3288{
3289 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3290 struct ixgbe_hw *hw = &adapter->hw;
3291 unsigned int vfn = adapter->num_vfs;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00003292 unsigned int rar_entries = IXGBE_MAX_PF_MACVLANS;
Alexander Duyck28500622010-06-15 09:25:48 +00003293 int count = 0;
3294
3295 /* return ENOMEM indicating insufficient memory for addresses */
3296 if (netdev_uc_count(netdev) > rar_entries)
3297 return -ENOMEM;
3298
3299 if (!netdev_uc_empty(netdev) && rar_entries) {
3300 struct netdev_hw_addr *ha;
3301 /* return error if we do not support writing to RAR table */
3302 if (!hw->mac.ops.set_rar)
3303 return -ENOMEM;
3304
3305 netdev_for_each_uc_addr(ha, netdev) {
3306 if (!rar_entries)
3307 break;
3308 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
3309 vfn, IXGBE_RAH_AV);
3310 count++;
3311 }
3312 }
3313 /* write the addresses in reverse order to avoid write combining */
3314 for (; rar_entries > 0 ; rar_entries--)
3315 hw->mac.ops.clear_rar(hw, rar_entries);
3316
3317 return count;
3318}
3319
3320/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003321 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003322 * @netdev: network interface device structure
3323 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003324 * The set_rx_method entry point is called whenever the unicast/multicast
3325 * address list or the network interface flags are updated. This routine is
3326 * responsible for configuring the hardware for proper unicast, multicast and
3327 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003328 **/
Greg Rose7f870472010-01-09 02:25:29 +00003329void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003330{
3331 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3332 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003333 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3334 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003335
3336 /* Check for Promiscuous and All Multicast modes */
3337
3338 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3339
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003340 /* set all bits that we expect to always be set */
3341 fctrl |= IXGBE_FCTRL_BAM;
3342 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3343 fctrl |= IXGBE_FCTRL_PMCF;
3344
Alexander Duyck28500622010-06-15 09:25:48 +00003345 /* clear the bits we are changing the status of */
3346 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3347
Auke Kok9a799d72007-09-15 14:07:45 -07003348 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003349 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003350 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003351 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003352 /* don't hardware filter vlans in promisc mode */
3353 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003354 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003355 if (netdev->flags & IFF_ALLMULTI) {
3356 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003357 vmolr |= IXGBE_VMOLR_MPE;
3358 } else {
3359 /*
3360 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003361 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003362 * that we can at least receive multicast traffic
3363 */
3364 hw->mac.ops.update_mc_addr_list(hw, netdev);
3365 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003366 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003367 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003368 hw->addr_ctrl.user_set_promisc = false;
Alexander Duyck28500622010-06-15 09:25:48 +00003369 /*
3370 * Write addresses to available RAR registers, if there is not
3371 * sufficient space to store all the addresses then enable
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003372 * unicast promiscuous mode
Alexander Duyck28500622010-06-15 09:25:48 +00003373 */
3374 count = ixgbe_write_uc_addr_list(netdev);
3375 if (count < 0) {
3376 fctrl |= IXGBE_FCTRL_UPE;
3377 vmolr |= IXGBE_VMOLR_ROPE;
3378 }
3379 }
3380
3381 if (adapter->num_vfs) {
3382 ixgbe_restore_vf_multicasts(adapter);
3383 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(adapter->num_vfs)) &
3384 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3385 IXGBE_VMOLR_ROPE);
3386 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(adapter->num_vfs), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003387 }
3388
3389 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003390
3391 if (netdev->features & NETIF_F_HW_VLAN_RX)
3392 ixgbe_vlan_strip_enable(adapter);
3393 else
3394 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003395}
3396
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003397static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3398{
3399 int q_idx;
3400 struct ixgbe_q_vector *q_vector;
3401 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3402
3403 /* legacy and MSI only use one vector */
3404 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3405 q_vectors = 1;
3406
3407 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003408 q_vector = adapter->q_vector[q_idx];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00003409 napi_enable(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003410 }
3411}
3412
3413static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3414{
3415 int q_idx;
3416 struct ixgbe_q_vector *q_vector;
3417 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3418
3419 /* legacy and MSI only use one vector */
3420 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3421 q_vectors = 1;
3422
3423 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003424 q_vector = adapter->q_vector[q_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003425 napi_disable(&q_vector->napi);
3426 }
3427}
3428
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003429#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08003430/*
3431 * ixgbe_configure_dcb - Configure DCB hardware
3432 * @adapter: ixgbe adapter struct
3433 *
3434 * This is called by the driver on open to configure the DCB hardware.
3435 * This is also called by the gennetlink interface when reconfiguring
3436 * the DCB state.
3437 */
3438static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3439{
3440 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend9806307a2010-10-28 00:59:57 +00003441 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003442
Alexander Duyck67ebd792010-08-19 13:34:04 +00003443 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3444 if (hw->mac.type == ixgbe_mac_82598EB)
3445 netif_set_gso_max_size(adapter->netdev, 65536);
3446 return;
3447 }
3448
3449 if (hw->mac.type == ixgbe_mac_82598EB)
3450 netif_set_gso_max_size(adapter->netdev, 32768);
3451
Alexander Duyck2f90b862008-11-20 20:52:10 -08003452
Alexander Duyck2f90b862008-11-20 20:52:10 -08003453 /* Enable VLAN tag insert/strip */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003454 adapter->netdev->features |= NETIF_F_HW_VLAN_RX;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003455
Alexander Duyck2f90b862008-11-20 20:52:10 -08003456 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003457
John Fastabendb1208182011-10-15 05:00:10 +00003458#ifdef IXGBE_FCOE
3459 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3460 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3461#endif
3462
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003463 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003464 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003465 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3466 DCB_TX_CONFIG);
3467 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3468 DCB_RX_CONFIG);
3469 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003470 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3471 ixgbe_dcb_hw_ets(&adapter->hw,
3472 adapter->ixgbe_ieee_ets,
3473 max_frame);
3474 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3475 adapter->ixgbe_ieee_pfc->pfc_en,
3476 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003477 }
John Fastabend8187cd42011-02-23 05:58:08 +00003478
3479 /* Enable RSS Hash per TC */
3480 if (hw->mac.type != ixgbe_mac_82598EB) {
3481 int i;
3482 u32 reg = 0;
3483
3484 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
3485 u8 msb = 0;
3486 u8 cnt = adapter->netdev->tc_to_txq[i].count;
3487
3488 while (cnt >>= 1)
3489 msb++;
3490
3491 reg |= msb << IXGBE_RQTC_SHIFT_TC(i);
3492 }
3493 IXGBE_WRITE_REG(hw, IXGBE_RQTC, reg);
3494 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003495}
John Fastabend9da712d2011-08-23 03:14:22 +00003496#endif
3497
3498/* Additional bittime to account for IXGBE framing */
3499#define IXGBE_ETH_FRAMING 20
3500
3501/*
3502 * ixgbe_hpbthresh - calculate high water mark for flow control
3503 *
3504 * @adapter: board private structure to calculate for
3505 * @pb - packet buffer to calculate
3506 */
3507static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
3508{
3509 struct ixgbe_hw *hw = &adapter->hw;
3510 struct net_device *dev = adapter->netdev;
3511 int link, tc, kb, marker;
3512 u32 dv_id, rx_pba;
3513
3514 /* Calculate max LAN frame size */
3515 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
3516
3517#ifdef IXGBE_FCOE
3518 /* FCoE traffic class uses FCOE jumbo frames */
3519 if (dev->features & NETIF_F_FCOE_MTU) {
3520 int fcoe_pb = 0;
3521
3522#ifdef CONFIG_IXGBE_DCB
3523 fcoe_pb = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003524
3525#endif
John Fastabend9da712d2011-08-23 03:14:22 +00003526 if (fcoe_pb == pb && tc < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3527 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3528 }
3529#endif
3530
3531 /* Calculate delay value for device */
3532 switch (hw->mac.type) {
3533 case ixgbe_mac_X540:
3534 dv_id = IXGBE_DV_X540(link, tc);
3535 break;
3536 default:
3537 dv_id = IXGBE_DV(link, tc);
3538 break;
3539 }
3540
3541 /* Loopback switch introduces additional latency */
3542 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3543 dv_id += IXGBE_B2BT(tc);
3544
3545 /* Delay value is calculated in bit times convert to KB */
3546 kb = IXGBE_BT2KB(dv_id);
3547 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
3548
3549 marker = rx_pba - kb;
3550
3551 /* It is possible that the packet buffer is not large enough
3552 * to provide required headroom. In this case throw an error
3553 * to user and a do the best we can.
3554 */
3555 if (marker < 0) {
3556 e_warn(drv, "Packet Buffer(%i) can not provide enough"
3557 "headroom to support flow control."
3558 "Decrease MTU or number of traffic classes\n", pb);
3559 marker = tc + 1;
3560 }
3561
3562 return marker;
3563}
3564
3565/*
3566 * ixgbe_lpbthresh - calculate low water mark for for flow control
3567 *
3568 * @adapter: board private structure to calculate for
3569 * @pb - packet buffer to calculate
3570 */
3571static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
3572{
3573 struct ixgbe_hw *hw = &adapter->hw;
3574 struct net_device *dev = adapter->netdev;
3575 int tc;
3576 u32 dv_id;
3577
3578 /* Calculate max LAN frame size */
3579 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3580
3581 /* Calculate delay value for device */
3582 switch (hw->mac.type) {
3583 case ixgbe_mac_X540:
3584 dv_id = IXGBE_LOW_DV_X540(tc);
3585 break;
3586 default:
3587 dv_id = IXGBE_LOW_DV(tc);
3588 break;
3589 }
3590
3591 /* Delay value is calculated in bit times convert to KB */
3592 return IXGBE_BT2KB(dv_id);
3593}
3594
3595/*
3596 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3597 */
3598static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
3599{
3600 struct ixgbe_hw *hw = &adapter->hw;
3601 int num_tc = netdev_get_num_tc(adapter->netdev);
3602 int i;
3603
3604 if (!num_tc)
3605 num_tc = 1;
3606
3607 hw->fc.low_water = ixgbe_lpbthresh(adapter);
3608
3609 for (i = 0; i < num_tc; i++) {
3610 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
3611
3612 /* Low water marks must not be larger than high water marks */
3613 if (hw->fc.low_water > hw->fc.high_water[i])
3614 hw->fc.low_water = 0;
3615 }
3616}
John Fastabend80605c652011-05-02 12:34:10 +00003617
3618static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3619{
John Fastabend80605c652011-05-02 12:34:10 +00003620 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00003621 int hdrm;
3622 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00003623
3624 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3625 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00003626 hdrm = 32 << adapter->fdir_pballoc;
3627 else
3628 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00003629
Alexander Duyckf7e10272011-07-21 00:40:35 +00003630 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00003631 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00003632}
3633
Alexander Duycke4911d52011-05-11 07:18:52 +00003634static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3635{
3636 struct ixgbe_hw *hw = &adapter->hw;
3637 struct hlist_node *node, *node2;
3638 struct ixgbe_fdir_filter *filter;
3639
3640 spin_lock(&adapter->fdir_perfect_lock);
3641
3642 if (!hlist_empty(&adapter->fdir_filter_list))
3643 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3644
3645 hlist_for_each_entry_safe(filter, node, node2,
3646 &adapter->fdir_filter_list, fdir_node) {
3647 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003648 &filter->filter,
3649 filter->sw_idx,
3650 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3651 IXGBE_FDIR_DROP_QUEUE :
3652 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003653 }
3654
3655 spin_unlock(&adapter->fdir_perfect_lock);
3656}
3657
Auke Kok9a799d72007-09-15 14:07:45 -07003658static void ixgbe_configure(struct ixgbe_adapter *adapter)
3659{
John Fastabend80605c652011-05-02 12:34:10 +00003660 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003661#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003662 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003663#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003664
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003665 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003666 ixgbe_restore_vlan(adapter);
3667
Yi Zoueacd73f2009-05-13 13:11:06 +00003668#ifdef IXGBE_FCOE
3669 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
3670 ixgbe_configure_fcoe(adapter);
3671
3672#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003673 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003674 ixgbe_init_fdir_signature_82599(&adapter->hw,
3675 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003676 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3677 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3678 adapter->fdir_pballoc);
3679 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003680 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003681
Alexander Duyck933d41f2010-09-07 21:34:29 +00003682 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003683
Auke Kok9a799d72007-09-15 14:07:45 -07003684 ixgbe_configure_tx(adapter);
3685 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003686}
3687
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003688static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3689{
3690 switch (hw->phy.type) {
3691 case ixgbe_phy_sfp_avago:
3692 case ixgbe_phy_sfp_ftl:
3693 case ixgbe_phy_sfp_intel:
3694 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003695 case ixgbe_phy_sfp_passive_tyco:
3696 case ixgbe_phy_sfp_passive_unknown:
3697 case ixgbe_phy_sfp_active_unknown:
3698 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003699 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00003700 case ixgbe_phy_nl:
3701 if (hw->mac.type == ixgbe_mac_82598EB)
3702 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003703 default:
3704 return false;
3705 }
3706}
3707
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003708/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003709 * ixgbe_sfp_link_config - set up SFP+ link
3710 * @adapter: pointer to private adapter struct
3711 **/
3712static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3713{
Alexander Duyck70864002011-04-27 09:13:56 +00003714 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003715 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00003716 * is that an SFP was inserted/removed after the reset
3717 * but before SFP detection was enabled. As such the best
3718 * solution is to just start searching as soon as we start
3719 */
3720 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3721 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003722
Alexander Duyck70864002011-04-27 09:13:56 +00003723 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003724}
3725
3726/**
3727 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003728 * @hw: pointer to private hardware struct
3729 *
3730 * Returns 0 on success, negative on failure
3731 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003732static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003733{
3734 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003735 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003736 u32 ret = IXGBE_ERR_LINK_SETUP;
3737
3738 if (hw->mac.ops.check_link)
3739 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3740
3741 if (ret)
3742 goto link_cfg_out;
3743
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003744 autoneg = hw->phy.autoneg_advertised;
3745 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003746 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3747 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003748 if (ret)
3749 goto link_cfg_out;
3750
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003751 if (hw->mac.ops.setup_link)
3752 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003753link_cfg_out:
3754 return ret;
3755}
3756
Alexander Duycka34bcff2010-08-19 13:39:20 +00003757static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003758{
Auke Kok9a799d72007-09-15 14:07:45 -07003759 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003760 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003761
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003762 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003763 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3764 IXGBE_GPIE_OCD;
3765 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003766 /*
3767 * use EIAM to auto-mask when MSI-X interrupt is asserted
3768 * this saves a register write for every interrupt
3769 */
3770 switch (hw->mac.type) {
3771 case ixgbe_mac_82598EB:
3772 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3773 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003774 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003775 case ixgbe_mac_X540:
3776 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003777 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3778 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3779 break;
3780 }
3781 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003782 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3783 * specifically only auto mask tx and rx interrupts */
3784 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003785 }
3786
Alexander Duycka34bcff2010-08-19 13:39:20 +00003787 /* XXX: to interrupt immediately for EICS writes, enable this */
3788 /* gpie |= IXGBE_GPIE_EIMEN; */
3789
3790 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3791 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
3792 gpie |= IXGBE_GPIE_VTMODE_64;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003793 }
3794
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003795 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00003796 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
3797 switch (adapter->hw.mac.type) {
3798 case ixgbe_mac_82599EB:
3799 gpie |= IXGBE_SDP0_GPIEN;
3800 break;
3801 case ixgbe_mac_X540:
3802 gpie |= IXGBE_EIMS_TS;
3803 break;
3804 default:
3805 break;
3806 }
3807 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003808
Alexander Duycka34bcff2010-08-19 13:39:20 +00003809 /* Enable fan failure interrupt */
3810 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003811 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003812
Don Skidmore2698b202011-04-13 07:01:52 +00003813 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003814 gpie |= IXGBE_SDP1_GPIEN;
3815 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00003816 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00003817
3818 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3819}
3820
Alexander Duyckc7ccde02011-07-21 00:40:40 +00003821static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00003822{
3823 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003824 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003825 u32 ctrl_ext;
3826
3827 ixgbe_get_hw_control(adapter);
3828 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003829
Auke Kok9a799d72007-09-15 14:07:45 -07003830 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
3831 ixgbe_configure_msix(adapter);
3832 else
3833 ixgbe_configure_msi_and_legacy(adapter);
3834
Don Skidmorec6ecf392010-12-03 03:31:51 +00003835 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
3836 if (hw->mac.ops.enable_tx_laser &&
3837 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00003838 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00003839 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00003840 hw->mac.ops.enable_tx_laser(hw);
3841
Auke Kok9a799d72007-09-15 14:07:45 -07003842 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003843 ixgbe_napi_enable_all(adapter);
3844
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003845 if (ixgbe_is_sfp(hw)) {
3846 ixgbe_sfp_link_config(adapter);
3847 } else {
3848 err = ixgbe_non_sfp_link_config(hw);
3849 if (err)
3850 e_err(probe, "link_config FAILED %d\n", err);
3851 }
3852
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003853 /* clear any pending interrupts, may auto mask */
3854 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003855 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07003856
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003857 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00003858 * If this adapter has a fan, check to see if we had a failure
3859 * before we enabled the interrupt.
3860 */
3861 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
3862 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3863 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00003864 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00003865 }
3866
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003867 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003868 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003869
Auke Kok9a799d72007-09-15 14:07:45 -07003870 /* bring the link up in the watchdog, this could race with our first
3871 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003872 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3873 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00003874 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00003875
3876 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
3877 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
3878 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
3879 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07003880}
3881
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003882void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
3883{
3884 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00003885 /* put off any impending NetWatchDogTimeout */
3886 adapter->netdev->trans_start = jiffies;
3887
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003888 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00003889 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003890 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00003891 /*
3892 * If SR-IOV enabled then wait a bit before bringing the adapter
3893 * back up to give the VFs time to respond to the reset. The
3894 * two second wait is based upon the watchdog timer cycle in
3895 * the VF driver.
3896 */
3897 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3898 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003899 ixgbe_up(adapter);
3900 clear_bit(__IXGBE_RESETTING, &adapter->state);
3901}
3902
Alexander Duyckc7ccde02011-07-21 00:40:40 +00003903void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003904{
3905 /* hardware has been reset, we need to reload some things */
3906 ixgbe_configure(adapter);
3907
Alexander Duyckc7ccde02011-07-21 00:40:40 +00003908 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003909}
3910
3911void ixgbe_reset(struct ixgbe_adapter *adapter)
3912{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003913 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07003914 int err;
3915
Alexander Duyck70864002011-04-27 09:13:56 +00003916 /* lock SFP init bit to prevent race conditions with the watchdog */
3917 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
3918 usleep_range(1000, 2000);
3919
3920 /* clear all SFP and link config related flags while holding SFP_INIT */
3921 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
3922 IXGBE_FLAG2_SFP_NEEDS_RESET);
3923 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
3924
Don Skidmore8ca783a2009-05-26 20:40:47 -07003925 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003926 switch (err) {
3927 case 0:
3928 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00003929 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003930 break;
3931 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00003932 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003933 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00003934 case IXGBE_ERR_EEPROM_VERSION:
3935 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00003936 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003937 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00003938 "your hardware. If you are experiencing problems "
3939 "please contact your Intel or hardware "
3940 "representative who provided you with this "
3941 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00003942 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003943 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00003944 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003945 }
Auke Kok9a799d72007-09-15 14:07:45 -07003946
Alexander Duyck70864002011-04-27 09:13:56 +00003947 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
3948
Auke Kok9a799d72007-09-15 14:07:45 -07003949 /* reprogram the RAR[0] in case user changed it. */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00003950 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
3951 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07003952}
3953
Auke Kok9a799d72007-09-15 14:07:45 -07003954/**
3955 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07003956 * @rx_ring: ring to free buffers from
3957 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003958static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07003959{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003960 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07003961 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003962 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003963
Alexander Duyck84418e32010-08-19 13:40:54 +00003964 /* ring already cleared, nothing to do */
3965 if (!rx_ring->rx_buffer_info)
3966 return;
Auke Kok9a799d72007-09-15 14:07:45 -07003967
Alexander Duyck84418e32010-08-19 13:40:54 +00003968 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07003969 for (i = 0; i < rx_ring->count; i++) {
3970 struct ixgbe_rx_buffer *rx_buffer_info;
3971
3972 rx_buffer_info = &rx_ring->rx_buffer_info[i];
3973 if (rx_buffer_info->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003974 dma_unmap_single(rx_ring->dev, rx_buffer_info->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00003975 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00003976 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07003977 rx_buffer_info->dma = 0;
3978 }
3979 if (rx_buffer_info->skb) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00003980 struct sk_buff *skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07003981 rx_buffer_info->skb = NULL;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00003982 /* We need to clean up RSC frag lists */
3983 skb = ixgbe_merge_active_tail(skb);
3984 ixgbe_close_active_frag_list(skb);
3985 if (IXGBE_CB(skb)->delay_unmap) {
3986 dma_unmap_single(dev,
3987 IXGBE_CB(skb)->dma,
3988 rx_ring->rx_buf_len,
3989 DMA_FROM_DEVICE);
3990 IXGBE_CB(skb)->dma = 0;
3991 IXGBE_CB(skb)->delay_unmap = false;
3992 }
3993 dev_kfree_skb(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07003994 }
3995 if (!rx_buffer_info->page)
3996 continue;
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00003997 if (rx_buffer_info->page_dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003998 dma_unmap_page(dev, rx_buffer_info->page_dma,
Nick Nunley1b507732010-04-27 13:10:27 +00003999 PAGE_SIZE / 2, DMA_FROM_DEVICE);
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00004000 rx_buffer_info->page_dma = 0;
4001 }
Auke Kok9a799d72007-09-15 14:07:45 -07004002 put_page(rx_buffer_info->page);
4003 rx_buffer_info->page = NULL;
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07004004 rx_buffer_info->page_offset = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004005 }
4006
4007 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4008 memset(rx_ring->rx_buffer_info, 0, size);
4009
4010 /* Zero out the descriptor ring */
4011 memset(rx_ring->desc, 0, rx_ring->size);
4012
4013 rx_ring->next_to_clean = 0;
4014 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004015}
4016
4017/**
4018 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004019 * @tx_ring: ring to be cleaned
4020 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004021static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004022{
4023 struct ixgbe_tx_buffer *tx_buffer_info;
4024 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004025 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004026
Alexander Duyck84418e32010-08-19 13:40:54 +00004027 /* ring already cleared, nothing to do */
4028 if (!tx_ring->tx_buffer_info)
4029 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004030
Alexander Duyck84418e32010-08-19 13:40:54 +00004031 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004032 for (i = 0; i < tx_ring->count; i++) {
4033 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004034 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004035 }
4036
4037 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4038 memset(tx_ring->tx_buffer_info, 0, size);
4039
4040 /* Zero out the descriptor ring */
4041 memset(tx_ring->desc, 0, tx_ring->size);
4042
4043 tx_ring->next_to_use = 0;
4044 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004045}
4046
4047/**
Auke Kok9a799d72007-09-15 14:07:45 -07004048 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4049 * @adapter: board private structure
4050 **/
4051static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4052{
4053 int i;
4054
4055 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004056 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004057}
4058
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004059/**
4060 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4061 * @adapter: board private structure
4062 **/
4063static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4064{
4065 int i;
4066
4067 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004068 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004069}
4070
Alexander Duycke4911d52011-05-11 07:18:52 +00004071static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4072{
4073 struct hlist_node *node, *node2;
4074 struct ixgbe_fdir_filter *filter;
4075
4076 spin_lock(&adapter->fdir_perfect_lock);
4077
4078 hlist_for_each_entry_safe(filter, node, node2,
4079 &adapter->fdir_filter_list, fdir_node) {
4080 hlist_del(&filter->fdir_node);
4081 kfree(filter);
4082 }
4083 adapter->fdir_filter_count = 0;
4084
4085 spin_unlock(&adapter->fdir_perfect_lock);
4086}
4087
Auke Kok9a799d72007-09-15 14:07:45 -07004088void ixgbe_down(struct ixgbe_adapter *adapter)
4089{
4090 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004091 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004092 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004093 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004094
4095 /* signal that we are down to the interrupt handler */
4096 set_bit(__IXGBE_DOWN, &adapter->state);
4097
4098 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004099 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4100 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004101
Yi Zou2d39d572011-01-06 14:29:56 +00004102 /* disable all enabled rx queues */
4103 for (i = 0; i < adapter->num_rx_queues; i++)
4104 /* this call also flushes the previous write */
4105 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4106
Don Skidmore032b4322011-03-18 09:32:53 +00004107 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004108
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004109 netif_tx_stop_all_queues(netdev);
4110
Alexander Duyck70864002011-04-27 09:13:56 +00004111 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004112 netif_carrier_off(netdev);
4113 netif_tx_disable(netdev);
4114
4115 ixgbe_irq_disable(adapter);
4116
4117 ixgbe_napi_disable_all(adapter);
4118
Alexander Duyckd034acf2011-04-27 09:25:34 +00004119 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4120 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004121 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4122
4123 del_timer_sync(&adapter->service_timer);
4124
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004125 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004126 /* Clear EITR Select mapping */
4127 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4128
4129 /* Mark all the VFs as inactive */
4130 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004131 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004132
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004133 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004134 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004135
Auke Kok9a799d72007-09-15 14:07:45 -07004136 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004137 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004138 }
4139
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004140 /* disable transmits in the hardware now that interrupts are off */
4141 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004142 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004143 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004144 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004145
4146 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004147 switch (hw->mac.type) {
4148 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004149 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004150 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004151 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4152 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004153 break;
4154 default:
4155 break;
4156 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004157
Paul Larson6f4a0e42008-06-24 17:00:56 -07004158 if (!pci_channel_offline(adapter->pdev))
4159 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004160
4161 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4162 if (hw->mac.ops.disable_tx_laser &&
4163 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004164 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004165 (hw->mac.type == ixgbe_mac_82599EB))))
4166 hw->mac.ops.disable_tx_laser(hw);
4167
Auke Kok9a799d72007-09-15 14:07:45 -07004168 ixgbe_clean_all_tx_rings(adapter);
4169 ixgbe_clean_all_rx_rings(adapter);
4170
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004171#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004172 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004173 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004174#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004175}
4176
Auke Kok9a799d72007-09-15 14:07:45 -07004177/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004178 * ixgbe_poll - NAPI Rx polling callback
4179 * @napi: structure for representing this polling device
4180 * @budget: how many packets driver is allowed to clean
4181 *
4182 * This function is used for legacy and MSI, NAPI mode
Auke Kok9a799d72007-09-15 14:07:45 -07004183 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004184static int ixgbe_poll(struct napi_struct *napi, int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07004185{
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004186 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00004187 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004188 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004189 struct ixgbe_ring *ring;
4190 int per_ring_budget;
4191 bool clean_complete = true;
Auke Kok9a799d72007-09-15 14:07:45 -07004192
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004193#ifdef CONFIG_IXGBE_DCA
Alexander Duyck33cf09c2010-11-16 19:26:55 -08004194 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
4195 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08004196#endif
4197
Alexander Duycka5579282012-02-08 07:50:04 +00004198 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004199 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004200
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004201 /* attempt to distribute budget to each queue fairly, but don't allow
4202 * the budget to go below 1 because we'll exit polling */
4203 if (q_vector->rx.count > 1)
4204 per_ring_budget = max(budget/q_vector->rx.count, 1);
4205 else
4206 per_ring_budget = budget;
David S. Millerd2c7ddd2008-01-15 22:43:24 -08004207
Alexander Duycka5579282012-02-08 07:50:04 +00004208 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004209 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
4210 per_ring_budget);
4211
4212 /* If all work not completed, return budget and keep polling */
4213 if (!clean_complete)
4214 return budget;
4215
4216 /* all work done, exit the polling mode */
4217 napi_complete(napi);
4218 if (adapter->rx_itr_setting & 1)
4219 ixgbe_set_itr(q_vector);
4220 if (!test_bit(__IXGBE_DOWN, &adapter->state))
4221 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
4222
4223 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004224}
4225
4226/**
4227 * ixgbe_tx_timeout - Respond to a Tx Hang
4228 * @netdev: network interface device structure
4229 **/
4230static void ixgbe_tx_timeout(struct net_device *netdev)
4231{
4232 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4233
4234 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004235 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004236}
4237
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004238/**
4239 * ixgbe_set_rss_queues: Allocate queues for RSS
4240 * @adapter: board private structure to initialize
4241 *
4242 * This is our "base" multiqueue mode. RSS (Receive Side Scaling) will try
4243 * to allocate one Rx queue per CPU, and if available, one Tx queue per CPU.
4244 *
4245 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004246static inline bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter)
4247{
4248 bool ret = false;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004249 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_RSS];
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004250
4251 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004252 f->mask = 0xF;
4253 adapter->num_rx_queues = f->indices;
4254 adapter->num_tx_queues = f->indices;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004255 ret = true;
4256 } else {
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004257 ret = false;
4258 }
4259
4260 return ret;
4261}
4262
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004263/**
4264 * ixgbe_set_fdir_queues: Allocate queues for Flow Director
4265 * @adapter: board private structure to initialize
4266 *
4267 * Flow Director is an advanced Rx filter, attempting to get Rx flows back
4268 * to the original CPU that initiated the Tx session. This runs in addition
4269 * to RSS, so if a packet doesn't match an FDIR filter, we can still spread the
4270 * Rx load across CPUs using RSS.
4271 *
4272 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004273static inline bool ixgbe_set_fdir_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004274{
4275 bool ret = false;
4276 struct ixgbe_ring_feature *f_fdir = &adapter->ring_feature[RING_F_FDIR];
4277
4278 f_fdir->indices = min((int)num_online_cpus(), f_fdir->indices);
4279 f_fdir->mask = 0;
4280
Alexander Duyck24ddd962012-02-10 02:08:32 +00004281 /*
4282 * Use RSS in addition to Flow Director to ensure the best
4283 * distribution of flows across cores, even when an FDIR flow
4284 * isn't matched.
4285 */
Alexander Duyck03ecf912011-05-20 07:36:17 +00004286 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4287 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004288 adapter->num_tx_queues = f_fdir->indices;
4289 adapter->num_rx_queues = f_fdir->indices;
4290 ret = true;
4291 } else {
4292 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004293 }
4294 return ret;
4295}
4296
Yi Zou0331a832009-05-17 12:33:52 +00004297#ifdef IXGBE_FCOE
4298/**
4299 * ixgbe_set_fcoe_queues: Allocate queues for Fiber Channel over Ethernet (FCoE)
4300 * @adapter: board private structure to initialize
4301 *
4302 * FCoE RX FCRETA can use up to 8 rx queues for up to 8 different exchanges.
4303 * The ring feature mask is not used as a mask for FCoE, as it can take any 8
4304 * rx queues out of the max number of rx queues, instead, it is used as the
4305 * index of the first rx queue used by FCoE.
4306 *
4307 **/
4308static inline bool ixgbe_set_fcoe_queues(struct ixgbe_adapter *adapter)
4309{
Yi Zou0331a832009-05-17 12:33:52 +00004310 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
4311
John Fastabende5b64632011-03-08 03:44:52 +00004312 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4313 return false;
4314
John Fastabende901acd2011-04-26 07:26:08 +00004315 f->indices = min((int)num_online_cpus(), f->indices);
John Fastabende5b64632011-03-08 03:44:52 +00004316
John Fastabende901acd2011-04-26 07:26:08 +00004317 adapter->num_rx_queues = 1;
4318 adapter->num_tx_queues = 1;
John Fastabende5b64632011-03-08 03:44:52 +00004319
John Fastabende901acd2011-04-26 07:26:08 +00004320 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
4321 e_info(probe, "FCoE enabled with RSS\n");
Alexander Duyck03ecf912011-05-20 07:36:17 +00004322 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
John Fastabende901acd2011-04-26 07:26:08 +00004323 ixgbe_set_fdir_queues(adapter);
4324 else
4325 ixgbe_set_rss_queues(adapter);
Yi Zou0331a832009-05-17 12:33:52 +00004326 }
Alexander Duyck03ecf912011-05-20 07:36:17 +00004327
John Fastabende901acd2011-04-26 07:26:08 +00004328 /* adding FCoE rx rings to the end */
4329 f->mask = adapter->num_rx_queues;
4330 adapter->num_rx_queues += f->indices;
4331 adapter->num_tx_queues += f->indices;
Yi Zou0331a832009-05-17 12:33:52 +00004332
John Fastabende5b64632011-03-08 03:44:52 +00004333 return true;
4334}
4335#endif /* IXGBE_FCOE */
4336
John Fastabende901acd2011-04-26 07:26:08 +00004337/* Artificial max queue cap per traffic class in DCB mode */
4338#define DCB_QUEUE_CAP 8
4339
John Fastabende5b64632011-03-08 03:44:52 +00004340#ifdef CONFIG_IXGBE_DCB
4341static inline bool ixgbe_set_dcb_queues(struct ixgbe_adapter *adapter)
4342{
John Fastabende901acd2011-04-26 07:26:08 +00004343 int per_tc_q, q, i, offset = 0;
4344 struct net_device *dev = adapter->netdev;
4345 int tcs = netdev_get_num_tc(dev);
John Fastabende5b64632011-03-08 03:44:52 +00004346
John Fastabende901acd2011-04-26 07:26:08 +00004347 if (!tcs)
4348 return false;
John Fastabende5b64632011-03-08 03:44:52 +00004349
John Fastabende901acd2011-04-26 07:26:08 +00004350 /* Map queue offset and counts onto allocated tx queues */
4351 per_tc_q = min(dev->num_tx_queues / tcs, (unsigned int)DCB_QUEUE_CAP);
4352 q = min((int)num_online_cpus(), per_tc_q);
John Fastabend8b1c0b22011-05-03 02:26:48 +00004353
John Fastabend8b1c0b22011-05-03 02:26:48 +00004354 for (i = 0; i < tcs; i++) {
John Fastabende901acd2011-04-26 07:26:08 +00004355 netdev_set_tc_queue(dev, i, q, offset);
4356 offset += q;
John Fastabende5b64632011-03-08 03:44:52 +00004357 }
4358
John Fastabende901acd2011-04-26 07:26:08 +00004359 adapter->num_tx_queues = q * tcs;
4360 adapter->num_rx_queues = q * tcs;
John Fastabende5b64632011-03-08 03:44:52 +00004361
4362#ifdef IXGBE_FCOE
John Fastabende901acd2011-04-26 07:26:08 +00004363 /* FCoE enabled queues require special configuration indexed
4364 * by feature specific indices and mask. Here we map FCoE
4365 * indices onto the DCB queue pairs allowing FCoE to own
4366 * configuration later.
John Fastabende5b64632011-03-08 03:44:52 +00004367 */
John Fastabende901acd2011-04-26 07:26:08 +00004368 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
4369 int tc;
4370 struct ixgbe_ring_feature *f =
4371 &adapter->ring_feature[RING_F_FCOE];
4372
4373 tc = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
4374 f->indices = dev->tc_to_txq[tc].count;
4375 f->mask = dev->tc_to_txq[tc].offset;
4376 }
John Fastabende5b64632011-03-08 03:44:52 +00004377#endif
4378
John Fastabende901acd2011-04-26 07:26:08 +00004379 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004380}
John Fastabende5b64632011-03-08 03:44:52 +00004381#endif
Yi Zou0331a832009-05-17 12:33:52 +00004382
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004383/**
4384 * ixgbe_set_sriov_queues: Allocate queues for IOV use
4385 * @adapter: board private structure to initialize
4386 *
4387 * IOV doesn't actually use anything, so just NAK the
4388 * request for now and let the other queue routines
4389 * figure out what to do.
4390 */
4391static inline bool ixgbe_set_sriov_queues(struct ixgbe_adapter *adapter)
4392{
4393 return false;
4394}
4395
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004396/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004397 * ixgbe_set_num_queues: Allocate queues for device, feature dependent
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004398 * @adapter: board private structure to initialize
4399 *
4400 * This is the top level queue allocation routine. The order here is very
4401 * important, starting with the "most" number of features turned on at once,
4402 * and ending with the smallest set of features. This way large combinations
4403 * can be allocated if they're turned on, and smaller combinations are the
4404 * fallthrough conditions.
4405 *
4406 **/
Ben Hutchings847f53f2010-09-27 08:28:56 +00004407static int ixgbe_set_num_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004408{
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004409 /* Start with base case */
4410 adapter->num_rx_queues = 1;
4411 adapter->num_tx_queues = 1;
4412 adapter->num_rx_pools = adapter->num_rx_queues;
4413 adapter->num_rx_queues_per_pool = 1;
4414
4415 if (ixgbe_set_sriov_queues(adapter))
Ben Hutchings847f53f2010-09-27 08:28:56 +00004416 goto done;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004417
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004418#ifdef CONFIG_IXGBE_DCB
4419 if (ixgbe_set_dcb_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004420 goto done;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004421
4422#endif
John Fastabende5b64632011-03-08 03:44:52 +00004423#ifdef IXGBE_FCOE
4424 if (ixgbe_set_fcoe_queues(adapter))
4425 goto done;
4426
4427#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004428 if (ixgbe_set_fdir_queues(adapter))
4429 goto done;
4430
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004431 if (ixgbe_set_rss_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004432 goto done;
4433
4434 /* fallback to base case */
4435 adapter->num_rx_queues = 1;
4436 adapter->num_tx_queues = 1;
4437
4438done:
Yi Zou9d837ea2012-01-07 08:39:50 +00004439 if ((adapter->netdev->reg_state == NETREG_UNREGISTERED) ||
4440 (adapter->netdev->reg_state == NETREG_UNREGISTERING))
4441 return 0;
4442
Ben Hutchings847f53f2010-09-27 08:28:56 +00004443 /* Notify the stack of the (possibly) reduced queue counts. */
John Fastabendf0796d52010-07-01 13:21:57 +00004444 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
Ben Hutchings847f53f2010-09-27 08:28:56 +00004445 return netif_set_real_num_rx_queues(adapter->netdev,
4446 adapter->num_rx_queues);
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004447}
4448
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004449static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00004450 int vectors)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004451{
4452 int err, vector_threshold;
4453
Alexander Duyck8f154862012-02-10 02:08:37 +00004454 /* We'll want at least 2 (vector_threshold):
4455 * 1) TxQ[0] + RxQ[0] handler
4456 * 2) Other (Link Status Change, etc.)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004457 */
4458 vector_threshold = MIN_MSIX_COUNT;
4459
Alexander Duyck24ddd962012-02-10 02:08:32 +00004460 /*
4461 * The more we get, the more we will assign to Tx/Rx Cleanup
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004462 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
4463 * Right now, we simply care about how many we'll get; we'll
4464 * set them up later while requesting irq's.
4465 */
4466 while (vectors >= vector_threshold) {
4467 err = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Joe Perchese8e9f692010-09-07 21:34:53 +00004468 vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004469 if (!err) /* Success in acquiring all requested vectors. */
4470 break;
4471 else if (err < 0)
4472 vectors = 0; /* Nasty failure, quit now */
4473 else /* err == number of vectors we should try again with */
4474 vectors = err;
4475 }
4476
4477 if (vectors < vector_threshold) {
4478 /* Can't allocate enough MSI-X interrupts? Oh well.
4479 * This just means we'll go with either a single MSI
4480 * vector or fall back to legacy interrupts.
4481 */
Emil Tantilov849c4542010-06-03 16:53:41 +00004482 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4483 "Unable to allocate MSI-X interrupts\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004484 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4485 kfree(adapter->msix_entries);
4486 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004487 } else {
4488 adapter->flags |= IXGBE_FLAG_MSIX_ENABLED; /* Woot! */
Peter P Waskiewicz Jreb7f1392009-02-01 01:18:58 -08004489 /*
4490 * Adjust for only the vectors we'll use, which is minimum
4491 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
4492 * vectors we were allocated.
4493 */
4494 adapter->num_msix_vectors = min(vectors,
Joe Perchese8e9f692010-09-07 21:34:53 +00004495 adapter->max_msix_q_vectors + NON_Q_VECTORS);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004496 }
4497}
4498
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004499/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004500 * ixgbe_cache_ring_rss - Descriptor ring to register mapping for RSS
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004501 * @adapter: board private structure to initialize
4502 *
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004503 * Cache the descriptor ring offsets for RSS to the assigned rings.
4504 *
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004505 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004506static inline bool ixgbe_cache_ring_rss(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004507{
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004508 int i;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004509
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004510 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
4511 return false;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004512
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004513 for (i = 0; i < adapter->num_rx_queues; i++)
4514 adapter->rx_ring[i]->reg_idx = i;
4515 for (i = 0; i < adapter->num_tx_queues; i++)
4516 adapter->tx_ring[i]->reg_idx = i;
4517
4518 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004519}
4520
4521#ifdef CONFIG_IXGBE_DCB
John Fastabende5b64632011-03-08 03:44:52 +00004522
4523/* ixgbe_get_first_reg_idx - Return first register index associated with ring */
John Fastabendb32c8dc2011-04-12 02:44:55 +00004524static void ixgbe_get_first_reg_idx(struct ixgbe_adapter *adapter, u8 tc,
4525 unsigned int *tx, unsigned int *rx)
John Fastabende5b64632011-03-08 03:44:52 +00004526{
4527 struct net_device *dev = adapter->netdev;
4528 struct ixgbe_hw *hw = &adapter->hw;
4529 u8 num_tcs = netdev_get_num_tc(dev);
4530
4531 *tx = 0;
4532 *rx = 0;
4533
4534 switch (hw->mac.type) {
4535 case ixgbe_mac_82598EB:
John Fastabendaba70d52011-04-26 07:26:14 +00004536 *tx = tc << 2;
4537 *rx = tc << 3;
John Fastabende5b64632011-03-08 03:44:52 +00004538 break;
4539 case ixgbe_mac_82599EB:
4540 case ixgbe_mac_X540:
John Fastabend4fa2e0e2011-07-18 22:38:25 +00004541 if (num_tcs > 4) {
John Fastabende5b64632011-03-08 03:44:52 +00004542 if (tc < 3) {
4543 *tx = tc << 5;
4544 *rx = tc << 4;
4545 } else if (tc < 5) {
4546 *tx = ((tc + 2) << 4);
4547 *rx = tc << 4;
4548 } else if (tc < num_tcs) {
4549 *tx = ((tc + 8) << 3);
4550 *rx = tc << 4;
4551 }
John Fastabend4fa2e0e2011-07-18 22:38:25 +00004552 } else {
John Fastabende5b64632011-03-08 03:44:52 +00004553 *rx = tc << 5;
4554 switch (tc) {
4555 case 0:
4556 *tx = 0;
4557 break;
4558 case 1:
4559 *tx = 64;
4560 break;
4561 case 2:
4562 *tx = 96;
4563 break;
4564 case 3:
4565 *tx = 112;
4566 break;
4567 default:
4568 break;
4569 }
4570 }
4571 break;
4572 default:
4573 break;
4574 }
4575}
4576
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004577/**
4578 * ixgbe_cache_ring_dcb - Descriptor ring to register mapping for DCB
4579 * @adapter: board private structure to initialize
4580 *
4581 * Cache the descriptor ring offsets for DCB to the assigned rings.
4582 *
4583 **/
4584static inline bool ixgbe_cache_ring_dcb(struct ixgbe_adapter *adapter)
4585{
John Fastabende5b64632011-03-08 03:44:52 +00004586 struct net_device *dev = adapter->netdev;
4587 int i, j, k;
4588 u8 num_tcs = netdev_get_num_tc(dev);
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004589
John Fastabend8b1c0b22011-05-03 02:26:48 +00004590 if (!num_tcs)
Alexander Duyckbd508172010-11-16 19:27:03 -08004591 return false;
4592
John Fastabende5b64632011-03-08 03:44:52 +00004593 for (i = 0, k = 0; i < num_tcs; i++) {
4594 unsigned int tx_s, rx_s;
4595 u16 count = dev->tc_to_txq[i].count;
4596
4597 ixgbe_get_first_reg_idx(adapter, i, &tx_s, &rx_s);
4598 for (j = 0; j < count; j++, k++) {
4599 adapter->tx_ring[k]->reg_idx = tx_s + j;
4600 adapter->rx_ring[k]->reg_idx = rx_s + j;
4601 adapter->tx_ring[k]->dcb_tc = i;
4602 adapter->rx_ring[k]->dcb_tc = i;
Alexander Duyckbd508172010-11-16 19:27:03 -08004603 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004604 }
John Fastabende5b64632011-03-08 03:44:52 +00004605
4606 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004607}
4608#endif
4609
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004610/**
4611 * ixgbe_cache_ring_fdir - Descriptor ring to register mapping for Flow Director
4612 * @adapter: board private structure to initialize
4613 *
4614 * Cache the descriptor ring offsets for Flow Director to the assigned rings.
4615 *
4616 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004617static inline bool ixgbe_cache_ring_fdir(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004618{
4619 int i;
4620 bool ret = false;
4621
Alexander Duyck03ecf912011-05-20 07:36:17 +00004622 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4623 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004624 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004625 adapter->rx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004626 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004627 adapter->tx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004628 ret = true;
4629 }
4630
4631 return ret;
4632}
4633
Yi Zou0331a832009-05-17 12:33:52 +00004634#ifdef IXGBE_FCOE
4635/**
4636 * ixgbe_cache_ring_fcoe - Descriptor ring to register mapping for the FCoE
4637 * @adapter: board private structure to initialize
4638 *
4639 * Cache the descriptor ring offsets for FCoE mode to the assigned rings.
4640 *
4641 */
4642static inline bool ixgbe_cache_ring_fcoe(struct ixgbe_adapter *adapter)
4643{
Yi Zou0331a832009-05-17 12:33:52 +00004644 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004645 int i;
4646 u8 fcoe_rx_i = 0, fcoe_tx_i = 0;
Yi Zou0331a832009-05-17 12:33:52 +00004647
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004648 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4649 return false;
4650
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004651 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Alexander Duyck03ecf912011-05-20 07:36:17 +00004652 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004653 ixgbe_cache_ring_fdir(adapter);
4654 else
4655 ixgbe_cache_ring_rss(adapter);
4656
4657 fcoe_rx_i = f->mask;
4658 fcoe_tx_i = f->mask;
4659 }
4660 for (i = 0; i < f->indices; i++, fcoe_rx_i++, fcoe_tx_i++) {
4661 adapter->rx_ring[f->mask + i]->reg_idx = fcoe_rx_i;
4662 adapter->tx_ring[f->mask + i]->reg_idx = fcoe_tx_i;
4663 }
4664 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004665}
4666
4667#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004668/**
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004669 * ixgbe_cache_ring_sriov - Descriptor ring to register mapping for sriov
4670 * @adapter: board private structure to initialize
4671 *
4672 * SR-IOV doesn't use any descriptor rings but changes the default if
4673 * no other mapping is used.
4674 *
4675 */
4676static inline bool ixgbe_cache_ring_sriov(struct ixgbe_adapter *adapter)
4677{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004678 adapter->rx_ring[0]->reg_idx = adapter->num_vfs * 2;
4679 adapter->tx_ring[0]->reg_idx = adapter->num_vfs * 2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004680 if (adapter->num_vfs)
4681 return true;
4682 else
4683 return false;
4684}
4685
4686/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004687 * ixgbe_cache_ring_register - Descriptor ring to register mapping
4688 * @adapter: board private structure to initialize
4689 *
4690 * Once we know the feature-set enabled for the device, we'll cache
4691 * the register offset the descriptor ring is assigned to.
4692 *
4693 * Note, the order the various feature calls is important. It must start with
4694 * the "most" features enabled at the same time, then trickle down to the
4695 * least amount of features turned on at once.
4696 **/
4697static void ixgbe_cache_ring_register(struct ixgbe_adapter *adapter)
4698{
4699 /* start with default case */
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004700 adapter->rx_ring[0]->reg_idx = 0;
4701 adapter->tx_ring[0]->reg_idx = 0;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004702
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004703 if (ixgbe_cache_ring_sriov(adapter))
4704 return;
4705
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004706#ifdef CONFIG_IXGBE_DCB
4707 if (ixgbe_cache_ring_dcb(adapter))
4708 return;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004709#endif
John Fastabende5b64632011-03-08 03:44:52 +00004710
4711#ifdef IXGBE_FCOE
4712 if (ixgbe_cache_ring_fcoe(adapter))
4713 return;
4714#endif /* IXGBE_FCOE */
4715
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004716 if (ixgbe_cache_ring_fdir(adapter))
4717 return;
4718
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004719 if (ixgbe_cache_ring_rss(adapter))
4720 return;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004721}
4722
Auke Kok9a799d72007-09-15 14:07:45 -07004723/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004724 * ixgbe_set_interrupt_capability - set MSI-X or MSI if supported
4725 * @adapter: board private structure to initialize
4726 *
4727 * Attempt to configure the interrupts using the best available
4728 * capabilities of the hardware and the kernel.
4729 **/
Al Virofeea6a52008-11-27 15:34:07 -08004730static int ixgbe_set_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004731{
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004732 struct ixgbe_hw *hw = &adapter->hw;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004733 int err = 0;
4734 int vector, v_budget;
4735
4736 /*
4737 * It's easy to be greedy for MSI-X vectors, but it really
4738 * doesn't do us much good if we have a lot more vectors
4739 * than CPU's. So let's be conservative and only ask for
PJ Waskiewicz342bde12009-11-12 23:50:43 +00004740 * (roughly) the same number of vectors as there are CPU's.
Alexander Duyck8f154862012-02-10 02:08:37 +00004741 * The default is to use pairs of vectors.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004742 */
Alexander Duyck8f154862012-02-10 02:08:37 +00004743 v_budget = max(adapter->num_rx_queues, adapter->num_tx_queues);
4744 v_budget = min_t(int, v_budget, num_online_cpus());
4745 v_budget += NON_Q_VECTORS;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004746
4747 /*
4748 * At the same time, hardware can only support a maximum of
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004749 * hw.mac->max_msix_vectors vectors. With features
4750 * such as RSS and VMDq, we can easily surpass the number of Rx and Tx
4751 * descriptor queues supported by our device. Thus, we cap it off in
4752 * those rare cases where the cpu count also exceeds our vector limit.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004753 */
Alexander Duyckde88eee2012-02-08 07:49:59 +00004754 v_budget = min_t(int, v_budget, hw->mac.max_msix_vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004755
4756 /* A failure in MSI-X entry allocation isn't fatal, but it does
4757 * mean we disable MSI-X capabilities of the adapter. */
4758 adapter->msix_entries = kcalloc(v_budget,
Joe Perchese8e9f692010-09-07 21:34:53 +00004759 sizeof(struct msix_entry), GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004760 if (adapter->msix_entries) {
4761 for (vector = 0; vector < v_budget; vector++)
4762 adapter->msix_entries[vector].entry = vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004763
Alexander Duyck7a921c92009-05-06 10:43:28 +00004764 ixgbe_acquire_msix_vectors(adapter, v_budget);
4765
4766 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4767 goto out;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004768 }
David S. Miller26d27842010-05-03 15:18:22 -07004769
Alexander Duyck7a921c92009-05-06 10:43:28 +00004770 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
4771 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
Alexander Duyck03ecf912011-05-20 07:36:17 +00004772 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck45b9f502011-01-06 14:29:59 +00004773 e_err(probe,
Alexander Duyck03ecf912011-05-20 07:36:17 +00004774 "ATR is not supported while multiple "
Alexander Duyck45b9f502011-01-06 14:29:59 +00004775 "queues are disabled. Disabling Flow Director\n");
4776 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004777 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004778 adapter->atr_sample_rate = 0;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004779 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4780 ixgbe_disable_sriov(adapter);
4781
Ben Hutchings847f53f2010-09-27 08:28:56 +00004782 err = ixgbe_set_num_queues(adapter);
4783 if (err)
4784 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004785
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004786 err = pci_enable_msi(adapter->pdev);
4787 if (!err) {
4788 adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
4789 } else {
Emil Tantilov849c4542010-06-03 16:53:41 +00004790 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4791 "Unable to allocate MSI interrupt, "
4792 "falling back to legacy. Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004793 /* reset err */
4794 err = 0;
4795 }
4796
4797out:
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004798 return err;
4799}
4800
Alexander Duyckde88eee2012-02-08 07:49:59 +00004801static void ixgbe_add_ring(struct ixgbe_ring *ring,
4802 struct ixgbe_ring_container *head)
4803{
4804 ring->next = head->ring;
4805 head->ring = ring;
4806 head->count++;
4807}
4808
4809/**
4810 * ixgbe_alloc_q_vector - Allocate memory for a single interrupt vector
4811 * @adapter: board private structure to initialize
4812 * @v_idx: index of vector in adapter struct
4813 *
4814 * We allocate one q_vector. If allocation fails we return -ENOMEM.
4815 **/
4816static int ixgbe_alloc_q_vector(struct ixgbe_adapter *adapter, int v_idx,
4817 int txr_count, int txr_idx,
4818 int rxr_count, int rxr_idx)
4819{
4820 struct ixgbe_q_vector *q_vector;
4821 struct ixgbe_ring *ring;
4822 int node = -1;
4823 int cpu = -1;
4824 int ring_count, size;
4825
4826 ring_count = txr_count + rxr_count;
4827 size = sizeof(struct ixgbe_q_vector) +
4828 (sizeof(struct ixgbe_ring) * ring_count);
4829
4830 /* customize cpu for Flow Director mapping */
4831 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
4832 if (cpu_online(v_idx)) {
4833 cpu = v_idx;
4834 node = cpu_to_node(cpu);
4835 }
4836 }
4837
4838 /* allocate q_vector and rings */
4839 q_vector = kzalloc_node(size, GFP_KERNEL, node);
4840 if (!q_vector)
4841 q_vector = kzalloc(size, GFP_KERNEL);
4842 if (!q_vector)
4843 return -ENOMEM;
4844
4845 /* setup affinity mask and node */
4846 if (cpu != -1)
4847 cpumask_set_cpu(cpu, &q_vector->affinity_mask);
4848 else
4849 cpumask_copy(&q_vector->affinity_mask, cpu_online_mask);
4850 q_vector->numa_node = node;
4851
4852 /* initialize NAPI */
4853 netif_napi_add(adapter->netdev, &q_vector->napi,
4854 ixgbe_poll, 64);
4855
4856 /* tie q_vector and adapter together */
4857 adapter->q_vector[v_idx] = q_vector;
4858 q_vector->adapter = adapter;
4859 q_vector->v_idx = v_idx;
4860
4861 /* initialize work limits */
4862 q_vector->tx.work_limit = adapter->tx_work_limit;
4863
4864 /* initialize pointer to rings */
4865 ring = q_vector->ring;
4866
4867 while (txr_count) {
4868 /* assign generic ring traits */
4869 ring->dev = &adapter->pdev->dev;
4870 ring->netdev = adapter->netdev;
4871
4872 /* configure backlink on ring */
4873 ring->q_vector = q_vector;
4874
4875 /* update q_vector Tx values */
4876 ixgbe_add_ring(ring, &q_vector->tx);
4877
4878 /* apply Tx specific ring traits */
4879 ring->count = adapter->tx_ring_count;
4880 ring->queue_index = txr_idx;
4881
4882 /* assign ring to adapter */
4883 adapter->tx_ring[txr_idx] = ring;
4884
4885 /* update count and index */
4886 txr_count--;
4887 txr_idx++;
4888
4889 /* push pointer to next ring */
4890 ring++;
4891 }
4892
4893 while (rxr_count) {
4894 /* assign generic ring traits */
4895 ring->dev = &adapter->pdev->dev;
4896 ring->netdev = adapter->netdev;
4897
4898 /* configure backlink on ring */
4899 ring->q_vector = q_vector;
4900
4901 /* update q_vector Rx values */
4902 ixgbe_add_ring(ring, &q_vector->rx);
4903
4904 /*
4905 * 82599 errata, UDP frames with a 0 checksum
4906 * can be marked as checksum errors.
4907 */
4908 if (adapter->hw.mac.type == ixgbe_mac_82599EB)
4909 set_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state);
4910
4911 /* apply Rx specific ring traits */
4912 ring->count = adapter->rx_ring_count;
4913 ring->queue_index = rxr_idx;
4914
4915 /* assign ring to adapter */
4916 adapter->rx_ring[rxr_idx] = ring;
4917
4918 /* update count and index */
4919 rxr_count--;
4920 rxr_idx++;
4921
4922 /* push pointer to next ring */
4923 ring++;
4924 }
4925
4926 return 0;
4927}
4928
4929/**
4930 * ixgbe_free_q_vector - Free memory allocated for specific interrupt vector
4931 * @adapter: board private structure to initialize
4932 * @v_idx: Index of vector to be freed
4933 *
4934 * This function frees the memory allocated to the q_vector. In addition if
4935 * NAPI is enabled it will delete any references to the NAPI struct prior
4936 * to freeing the q_vector.
4937 **/
4938static void ixgbe_free_q_vector(struct ixgbe_adapter *adapter, int v_idx)
4939{
4940 struct ixgbe_q_vector *q_vector = adapter->q_vector[v_idx];
4941 struct ixgbe_ring *ring;
4942
Alexander Duycka5579282012-02-08 07:50:04 +00004943 ixgbe_for_each_ring(ring, q_vector->tx)
Alexander Duyckde88eee2012-02-08 07:49:59 +00004944 adapter->tx_ring[ring->queue_index] = NULL;
4945
Alexander Duycka5579282012-02-08 07:50:04 +00004946 ixgbe_for_each_ring(ring, q_vector->rx)
Alexander Duyckde88eee2012-02-08 07:49:59 +00004947 adapter->rx_ring[ring->queue_index] = NULL;
4948
4949 adapter->q_vector[v_idx] = NULL;
4950 netif_napi_del(&q_vector->napi);
4951
4952 /*
4953 * ixgbe_get_stats64() might access the rings on this vector,
4954 * we must wait a grace period before freeing it.
4955 */
4956 kfree_rcu(q_vector, rcu);
4957}
4958
Alexander Duyck7a921c92009-05-06 10:43:28 +00004959/**
4960 * ixgbe_alloc_q_vectors - Allocate memory for interrupt vectors
4961 * @adapter: board private structure to initialize
4962 *
4963 * We allocate one q_vector per queue interrupt. If allocation fails we
4964 * return -ENOMEM.
4965 **/
4966static int ixgbe_alloc_q_vectors(struct ixgbe_adapter *adapter)
4967{
Alexander Duyckde88eee2012-02-08 07:49:59 +00004968 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
4969 int rxr_remaining = adapter->num_rx_queues;
4970 int txr_remaining = adapter->num_tx_queues;
4971 int rxr_idx = 0, txr_idx = 0, v_idx = 0;
4972 int err;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004973
Alexander Duyckde88eee2012-02-08 07:49:59 +00004974 /* only one q_vector if MSI-X is disabled. */
4975 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
4976 q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004977
Alexander Duyckde88eee2012-02-08 07:49:59 +00004978 if (q_vectors >= (rxr_remaining + txr_remaining)) {
4979 for (; rxr_remaining; v_idx++, q_vectors--) {
4980 int rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors);
4981 err = ixgbe_alloc_q_vector(adapter, v_idx,
4982 0, 0, rqpv, rxr_idx);
4983
4984 if (err)
4985 goto err_out;
4986
4987 /* update counts and index */
4988 rxr_remaining -= rqpv;
4989 rxr_idx += rqpv;
4990 }
4991 }
4992
4993 for (; q_vectors; v_idx++, q_vectors--) {
4994 int rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors);
4995 int tqpv = DIV_ROUND_UP(txr_remaining, q_vectors);
4996 err = ixgbe_alloc_q_vector(adapter, v_idx,
4997 tqpv, txr_idx,
4998 rqpv, rxr_idx);
4999
5000 if (err)
Alexander Duyck7a921c92009-05-06 10:43:28 +00005001 goto err_out;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00005002
Alexander Duyckde88eee2012-02-08 07:49:59 +00005003 /* update counts and index */
5004 rxr_remaining -= rqpv;
5005 rxr_idx += rqpv;
5006 txr_remaining -= tqpv;
5007 txr_idx += tqpv;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005008 }
5009
5010 return 0;
5011
5012err_out:
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00005013 while (v_idx) {
5014 v_idx--;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005015 ixgbe_free_q_vector(adapter, v_idx);
Alexander Duyck7a921c92009-05-06 10:43:28 +00005016 }
Alexander Duyckde88eee2012-02-08 07:49:59 +00005017
Alexander Duyck7a921c92009-05-06 10:43:28 +00005018 return -ENOMEM;
5019}
5020
5021/**
5022 * ixgbe_free_q_vectors - Free memory allocated for interrupt vectors
5023 * @adapter: board private structure to initialize
5024 *
5025 * This function frees the memory allocated to the q_vectors. In addition if
5026 * NAPI is enabled it will delete any references to the NAPI struct prior
5027 * to freeing the q_vector.
5028 **/
5029static void ixgbe_free_q_vectors(struct ixgbe_adapter *adapter)
5030{
Alexander Duyckde88eee2012-02-08 07:49:59 +00005031 int v_idx, q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005032
Alexander Duyck91281fd2009-06-04 16:00:27 +00005033 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyckde88eee2012-02-08 07:49:59 +00005034 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck91281fd2009-06-04 16:00:27 +00005035 else
Alexander Duyckde88eee2012-02-08 07:49:59 +00005036 q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005037
Alexander Duyckde88eee2012-02-08 07:49:59 +00005038 for (v_idx = 0; v_idx < q_vectors; v_idx++)
5039 ixgbe_free_q_vector(adapter, v_idx);
Alexander Duyck7a921c92009-05-06 10:43:28 +00005040}
5041
Don Skidmore7b25cdb2009-08-25 04:47:32 +00005042static void ixgbe_reset_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005043{
5044 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
5045 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
5046 pci_disable_msix(adapter->pdev);
5047 kfree(adapter->msix_entries);
5048 adapter->msix_entries = NULL;
5049 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
5050 adapter->flags &= ~IXGBE_FLAG_MSI_ENABLED;
5051 pci_disable_msi(adapter->pdev);
5052 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005053}
5054
5055/**
5056 * ixgbe_init_interrupt_scheme - Determine proper interrupt scheme
5057 * @adapter: board private structure to initialize
5058 *
5059 * We determine which interrupt scheme to use based on...
5060 * - Kernel support (MSI, MSI-X)
5061 * - which can be user-defined (via MODULE_PARAM)
5062 * - Hardware queue count (num_*_queues)
5063 * - defined by miscellaneous hardware support/features (RSS, etc.)
5064 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08005065int ixgbe_init_interrupt_scheme(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005066{
5067 int err;
5068
5069 /* Number of supported queues */
Ben Hutchings847f53f2010-09-27 08:28:56 +00005070 err = ixgbe_set_num_queues(adapter);
5071 if (err)
5072 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005073
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005074 err = ixgbe_set_interrupt_capability(adapter);
5075 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005076 e_dev_err("Unable to setup interrupt capabilities\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005077 goto err_set_interrupt;
5078 }
5079
Alexander Duyck7a921c92009-05-06 10:43:28 +00005080 err = ixgbe_alloc_q_vectors(adapter);
5081 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005082 e_dev_err("Unable to allocate memory for queue vectors\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00005083 goto err_alloc_q_vectors;
5084 }
5085
Alexander Duyckde88eee2012-02-08 07:49:59 +00005086 ixgbe_cache_ring_register(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00005087
Emil Tantilov849c4542010-06-03 16:53:41 +00005088 e_dev_info("Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
Emil Tantilov396e7992010-07-01 20:05:12 +00005089 (adapter->num_rx_queues > 1) ? "Enabled" : "Disabled",
5090 adapter->num_rx_queues, adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005091
5092 set_bit(__IXGBE_DOWN, &adapter->state);
5093
5094 return 0;
5095
Alexander Duyck7a921c92009-05-06 10:43:28 +00005096err_alloc_q_vectors:
5097 ixgbe_reset_interrupt_capability(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005098err_set_interrupt:
Alexander Duyck7a921c92009-05-06 10:43:28 +00005099 return err;
5100}
5101
5102/**
5103 * ixgbe_clear_interrupt_scheme - Clear the current interrupt scheme settings
5104 * @adapter: board private structure to clear interrupt scheme on
5105 *
5106 * We go through and clear interrupt specific resources and reset the structure
5107 * to pre-load conditions
5108 **/
5109void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter)
5110{
Don Skidmoreb8eb3a12010-12-01 20:54:53 +00005111 adapter->num_tx_queues = 0;
5112 adapter->num_rx_queues = 0;
5113
Alexander Duyck7a921c92009-05-06 10:43:28 +00005114 ixgbe_free_q_vectors(adapter);
5115 ixgbe_reset_interrupt_capability(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005116}
5117
5118/**
5119 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
5120 * @adapter: board private structure to initialize
5121 *
5122 * ixgbe_sw_init initializes the Adapter private data structure.
5123 * Fields are initialized based on PCI device information and
5124 * OS network device settings (MTU size).
5125 **/
5126static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
5127{
5128 struct ixgbe_hw *hw = &adapter->hw;
5129 struct pci_dev *pdev = adapter->pdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005130 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005131#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08005132 int j;
5133 struct tc_configuration *tc;
5134#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005135
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005136 /* PCI config space info */
5137
5138 hw->vendor_id = pdev->vendor;
5139 hw->device_id = pdev->device;
5140 hw->revision_id = pdev->revision;
5141 hw->subsystem_vendor_id = pdev->subsystem_vendor;
5142 hw->subsystem_device_id = pdev->subsystem_device;
5143
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005144 /* Set capability flags */
5145 rss = min(IXGBE_MAX_RSS_INDICES, (int)num_online_cpus());
5146 adapter->ring_feature[RING_F_RSS].indices = rss;
5147 adapter->flags |= IXGBE_FLAG_RSS_ENABLED;
Alexander Duyckbd508172010-11-16 19:27:03 -08005148 switch (hw->mac.type) {
5149 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00005150 if (hw->device_id == IXGBE_DEV_ID_82598AT)
5151 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005152 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08005153 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005154 case ixgbe_mac_X540:
Jacob Keller4f51bf72011-08-20 04:49:45 +00005155 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
5156 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005157 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00005158 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
5159 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07005160 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
5161 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00005162 /* Flow Director hash filters enabled */
5163 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
5164 adapter->atr_sample_rate = 20;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005165 adapter->ring_feature[RING_F_FDIR].indices =
Joe Perchese8e9f692010-09-07 21:34:53 +00005166 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00005167 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00005168#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00005169 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
5170 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5171 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou61a0f422009-12-03 11:32:22 +00005172#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00005173 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00005174 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00005175#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00005176#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005177 break;
5178 default:
5179 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00005180 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08005181
Alexander Duyck1fc5f032011-06-02 04:28:39 +00005182 /* n-tuple support exists, always init our spinlock */
5183 spin_lock_init(&adapter->fdir_perfect_lock);
5184
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005185#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00005186 switch (hw->mac.type) {
5187 case ixgbe_mac_X540:
5188 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
5189 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
5190 break;
5191 default:
5192 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
5193 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
5194 break;
5195 }
5196
Alexander Duyck2f90b862008-11-20 20:52:10 -08005197 /* Configure DCB traffic classes */
5198 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
5199 tc = &adapter->dcb_cfg.tc_config[j];
5200 tc->path[DCB_TX_CONFIG].bwg_id = 0;
5201 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
5202 tc->path[DCB_RX_CONFIG].bwg_id = 0;
5203 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
5204 tc->dcb_pfc = pfc_disabled;
5205 }
John Fastabend4de2a022011-09-27 03:52:01 +00005206
5207 /* Initialize default user to priority mapping, UPx->TC0 */
5208 tc = &adapter->dcb_cfg.tc_config[0];
5209 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
5210 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
5211
Alexander Duyck2f90b862008-11-20 20:52:10 -08005212 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
5213 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005214 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005215 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00005216 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005217 ixgbe_copy_dcb_cfg(&adapter->dcb_cfg, &adapter->temp_dcb_cfg,
John Fastabende5b64632011-03-08 03:44:52 +00005218 MAX_TRAFFIC_CLASS);
Alexander Duyck2f90b862008-11-20 20:52:10 -08005219
5220#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005221
5222 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005223 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005224 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005225#ifdef CONFIG_DCB
5226 adapter->last_lfc_mode = hw->fc.current_mode;
5227#endif
John Fastabend9da712d2011-08-23 03:14:22 +00005228 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005229 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5230 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00005231 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07005232
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005233 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005234 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005235 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005236
5237 /* set defaults for eitr in MegaBytes */
5238 adapter->eitr_low = 10;
5239 adapter->eitr_high = 20;
5240
5241 /* set default ring sizes */
5242 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5243 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5244
Alexander Duyckbd198052011-06-11 01:45:08 +00005245 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00005246 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00005247
Auke Kok9a799d72007-09-15 14:07:45 -07005248 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005249 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005250 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005251 return -EIO;
5252 }
5253
Auke Kok9a799d72007-09-15 14:07:45 -07005254 set_bit(__IXGBE_DOWN, &adapter->state);
5255
5256 return 0;
5257}
5258
5259/**
5260 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005261 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005262 *
5263 * Return 0 on success, negative on failure
5264 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005265int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005266{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005267 struct device *dev = tx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005268 int orig_node = dev_to_node(dev);
5269 int numa_node = -1;
Auke Kok9a799d72007-09-15 14:07:45 -07005270 int size;
5271
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005272 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005273
5274 if (tx_ring->q_vector)
5275 numa_node = tx_ring->q_vector->numa_node;
5276
5277 tx_ring->tx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005278 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005279 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005280 if (!tx_ring->tx_buffer_info)
5281 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005282
5283 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005284 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005285 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005286
Alexander Duyckde88eee2012-02-08 07:49:59 +00005287 set_dev_node(dev, numa_node);
5288 tx_ring->desc = dma_alloc_coherent(dev,
5289 tx_ring->size,
5290 &tx_ring->dma,
5291 GFP_KERNEL);
5292 set_dev_node(dev, orig_node);
5293 if (!tx_ring->desc)
5294 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
5295 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005296 if (!tx_ring->desc)
5297 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005298
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005299 tx_ring->next_to_use = 0;
5300 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005301 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005302
5303err:
5304 vfree(tx_ring->tx_buffer_info);
5305 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005306 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005307 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005308}
5309
5310/**
Alexander Duyck69888672008-09-11 20:05:39 -07005311 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5312 * @adapter: board private structure
5313 *
5314 * If this function returns with an error, then it's possible one or
5315 * more of the rings is populated (while the rest are not). It is the
5316 * callers duty to clean those orphaned rings.
5317 *
5318 * Return 0 on success, negative on failure
5319 **/
5320static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5321{
5322 int i, err = 0;
5323
5324 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005325 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005326 if (!err)
5327 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005328 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005329 break;
5330 }
5331
5332 return err;
5333}
5334
5335/**
Auke Kok9a799d72007-09-15 14:07:45 -07005336 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005337 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005338 *
5339 * Returns 0 on success, negative on failure
5340 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005341int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005342{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005343 struct device *dev = rx_ring->dev;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005344 int orig_node = dev_to_node(dev);
5345 int numa_node = -1;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005346 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005347
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005348 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckde88eee2012-02-08 07:49:59 +00005349
5350 if (rx_ring->q_vector)
5351 numa_node = rx_ring->q_vector->numa_node;
5352
5353 rx_ring->rx_buffer_info = vzalloc_node(size, numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005354 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005355 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005356 if (!rx_ring->rx_buffer_info)
5357 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005358
Auke Kok9a799d72007-09-15 14:07:45 -07005359 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005360 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5361 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005362
Alexander Duyckde88eee2012-02-08 07:49:59 +00005363 set_dev_node(dev, numa_node);
5364 rx_ring->desc = dma_alloc_coherent(dev,
5365 rx_ring->size,
5366 &rx_ring->dma,
5367 GFP_KERNEL);
5368 set_dev_node(dev, orig_node);
5369 if (!rx_ring->desc)
5370 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
5371 &rx_ring->dma, GFP_KERNEL);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005372 if (!rx_ring->desc)
5373 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005374
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005375 rx_ring->next_to_clean = 0;
5376 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005377
5378 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005379err:
5380 vfree(rx_ring->rx_buffer_info);
5381 rx_ring->rx_buffer_info = NULL;
5382 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005383 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005384}
5385
5386/**
Alexander Duyck69888672008-09-11 20:05:39 -07005387 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5388 * @adapter: board private structure
5389 *
5390 * If this function returns with an error, then it's possible one or
5391 * more of the rings is populated (while the rest are not). It is the
5392 * callers duty to clean those orphaned rings.
5393 *
5394 * Return 0 on success, negative on failure
5395 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005396static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5397{
5398 int i, err = 0;
5399
5400 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005401 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005402 if (!err)
5403 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005404 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005405 break;
5406 }
5407
5408 return err;
5409}
5410
5411/**
Auke Kok9a799d72007-09-15 14:07:45 -07005412 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005413 * @tx_ring: Tx descriptor ring for a specific queue
5414 *
5415 * Free all transmit software resources
5416 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005417void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005418{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005419 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005420
5421 vfree(tx_ring->tx_buffer_info);
5422 tx_ring->tx_buffer_info = NULL;
5423
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005424 /* if not set, then don't free */
5425 if (!tx_ring->desc)
5426 return;
5427
5428 dma_free_coherent(tx_ring->dev, tx_ring->size,
5429 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005430
5431 tx_ring->desc = NULL;
5432}
5433
5434/**
5435 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5436 * @adapter: board private structure
5437 *
5438 * Free all transmit software resources
5439 **/
5440static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5441{
5442 int i;
5443
5444 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005445 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005446 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005447}
5448
5449/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005450 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005451 * @rx_ring: ring to clean the resources from
5452 *
5453 * Free all receive software resources
5454 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005455void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005456{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005457 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005458
5459 vfree(rx_ring->rx_buffer_info);
5460 rx_ring->rx_buffer_info = NULL;
5461
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005462 /* if not set, then don't free */
5463 if (!rx_ring->desc)
5464 return;
5465
5466 dma_free_coherent(rx_ring->dev, rx_ring->size,
5467 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005468
5469 rx_ring->desc = NULL;
5470}
5471
5472/**
5473 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5474 * @adapter: board private structure
5475 *
5476 * Free all receive software resources
5477 **/
5478static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5479{
5480 int i;
5481
5482 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005483 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005484 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005485}
5486
5487/**
Auke Kok9a799d72007-09-15 14:07:45 -07005488 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5489 * @netdev: network interface device structure
5490 * @new_mtu: new value for maximum frame size
5491 *
5492 * Returns 0 on success, negative on failure
5493 **/
5494static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5495{
5496 struct ixgbe_adapter *adapter = netdev_priv(netdev);
John Fastabend16b61be2010-11-16 19:26:44 -08005497 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07005498 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5499
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005500 /* MTU < 68 is an error and causes problems on some kernels */
Greg Rosee9f98072011-01-26 01:06:07 +00005501 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED &&
5502 hw->mac.type != ixgbe_mac_X540) {
5503 if ((new_mtu < 68) || (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
5504 return -EINVAL;
5505 } else {
5506 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
5507 return -EINVAL;
5508 }
Auke Kok9a799d72007-09-15 14:07:45 -07005509
Emil Tantilov396e7992010-07-01 20:05:12 +00005510 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005511 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005512 netdev->mtu = new_mtu;
5513
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005514 if (netif_running(netdev))
5515 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005516
5517 return 0;
5518}
5519
5520/**
5521 * ixgbe_open - Called when a network interface is made active
5522 * @netdev: network interface device structure
5523 *
5524 * Returns 0 on success, negative value on failure
5525 *
5526 * The open entry point is called when a network interface is made
5527 * active by the system (IFF_UP). At this point all resources needed
5528 * for transmit and receive operations are allocated, the interrupt
5529 * handler is registered with the OS, the watchdog timer is started,
5530 * and the stack is notified that the interface is ready.
5531 **/
5532static int ixgbe_open(struct net_device *netdev)
5533{
5534 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5535 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07005536
Auke Kok4bebfaa2008-02-11 09:26:01 -08005537 /* disallow open during test */
5538 if (test_bit(__IXGBE_TESTING, &adapter->state))
5539 return -EBUSY;
5540
Jesse Brandeburg54386462009-04-17 20:44:27 +00005541 netif_carrier_off(netdev);
5542
Auke Kok9a799d72007-09-15 14:07:45 -07005543 /* allocate transmit descriptors */
5544 err = ixgbe_setup_all_tx_resources(adapter);
5545 if (err)
5546 goto err_setup_tx;
5547
Auke Kok9a799d72007-09-15 14:07:45 -07005548 /* allocate receive descriptors */
5549 err = ixgbe_setup_all_rx_resources(adapter);
5550 if (err)
5551 goto err_setup_rx;
5552
5553 ixgbe_configure(adapter);
5554
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005555 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005556 if (err)
5557 goto err_req_irq;
5558
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005559 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005560
5561 return 0;
5562
Auke Kok9a799d72007-09-15 14:07:45 -07005563err_req_irq:
Auke Kok9a799d72007-09-15 14:07:45 -07005564err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005565 ixgbe_free_all_rx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005566err_setup_tx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005567 ixgbe_free_all_tx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005568 ixgbe_reset(adapter);
5569
5570 return err;
5571}
5572
5573/**
5574 * ixgbe_close - Disables a network interface
5575 * @netdev: network interface device structure
5576 *
5577 * Returns 0, this is not allowed to fail
5578 *
5579 * The close entry point is called when an interface is de-activated
5580 * by the OS. The hardware is still under the drivers control, but
5581 * needs to be disabled. A global MAC reset is issued to stop the
5582 * hardware, and all transmit and receive resources are freed.
5583 **/
5584static int ixgbe_close(struct net_device *netdev)
5585{
5586 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005587
5588 ixgbe_down(adapter);
5589 ixgbe_free_irq(adapter);
5590
Alexander Duycke4911d52011-05-11 07:18:52 +00005591 ixgbe_fdir_filter_exit(adapter);
5592
Auke Kok9a799d72007-09-15 14:07:45 -07005593 ixgbe_free_all_tx_resources(adapter);
5594 ixgbe_free_all_rx_resources(adapter);
5595
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005596 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005597
5598 return 0;
5599}
5600
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005601#ifdef CONFIG_PM
5602static int ixgbe_resume(struct pci_dev *pdev)
5603{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005604 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5605 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005606 u32 err;
5607
5608 pci_set_power_state(pdev, PCI_D0);
5609 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08005610 /*
5611 * pci_restore_state clears dev->state_saved so call
5612 * pci_save_state to restore it.
5613 */
5614 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005615
5616 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005617 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005618 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005619 return err;
5620 }
5621 pci_set_master(pdev);
5622
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005623 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005624
5625 err = ixgbe_init_interrupt_scheme(adapter);
5626 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005627 e_dev_err("Cannot initialize interrupts for device\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005628 return err;
5629 }
5630
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005631 ixgbe_reset(adapter);
5632
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005633 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5634
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005635 if (netif_running(netdev)) {
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005636 err = ixgbe_open(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005637 if (err)
5638 return err;
5639 }
5640
5641 netif_device_attach(netdev);
5642
5643 return 0;
5644}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005645#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005646
5647static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005648{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005649 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5650 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005651 struct ixgbe_hw *hw = &adapter->hw;
5652 u32 ctrl, fctrl;
5653 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005654#ifdef CONFIG_PM
5655 int retval = 0;
5656#endif
5657
5658 netif_device_detach(netdev);
5659
5660 if (netif_running(netdev)) {
5661 ixgbe_down(adapter);
5662 ixgbe_free_irq(adapter);
5663 ixgbe_free_all_tx_resources(adapter);
5664 ixgbe_free_all_rx_resources(adapter);
5665 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005666
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005667 ixgbe_clear_interrupt_scheme(adapter);
John Fastabendd033d522011-02-10 14:40:01 +00005668#ifdef CONFIG_DCB
5669 kfree(adapter->ixgbe_ieee_pfc);
5670 kfree(adapter->ixgbe_ieee_ets);
5671#endif
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005672
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005673#ifdef CONFIG_PM
5674 retval = pci_save_state(pdev);
5675 if (retval)
5676 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005677
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005678#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005679 if (wufc) {
5680 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005681
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005682 /* turn on all-multi mode if wake on multicast is enabled */
5683 if (wufc & IXGBE_WUFC_MC) {
5684 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5685 fctrl |= IXGBE_FCTRL_MPE;
5686 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5687 }
5688
5689 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5690 ctrl |= IXGBE_CTRL_GIO_DIS;
5691 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5692
5693 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5694 } else {
5695 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5696 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5697 }
5698
Alexander Duyckbd508172010-11-16 19:27:03 -08005699 switch (hw->mac.type) {
5700 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005701 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005702 break;
5703 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005704 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005705 pci_wake_from_d3(pdev, !!wufc);
5706 break;
5707 default:
5708 break;
5709 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005710
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005711 *enable_wake = !!wufc;
5712
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005713 ixgbe_release_hw_control(adapter);
5714
5715 pci_disable_device(pdev);
5716
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005717 return 0;
5718}
5719
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005720#ifdef CONFIG_PM
5721static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5722{
5723 int retval;
5724 bool wake;
5725
5726 retval = __ixgbe_shutdown(pdev, &wake);
5727 if (retval)
5728 return retval;
5729
5730 if (wake) {
5731 pci_prepare_to_sleep(pdev);
5732 } else {
5733 pci_wake_from_d3(pdev, false);
5734 pci_set_power_state(pdev, PCI_D3hot);
5735 }
5736
5737 return 0;
5738}
5739#endif /* CONFIG_PM */
5740
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005741static void ixgbe_shutdown(struct pci_dev *pdev)
5742{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005743 bool wake;
5744
5745 __ixgbe_shutdown(pdev, &wake);
5746
5747 if (system_state == SYSTEM_POWER_OFF) {
5748 pci_wake_from_d3(pdev, wake);
5749 pci_set_power_state(pdev, PCI_D3hot);
5750 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005751}
5752
5753/**
Auke Kok9a799d72007-09-15 14:07:45 -07005754 * ixgbe_update_stats - Update the board statistics counters.
5755 * @adapter: board private structure
5756 **/
5757void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5758{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005759 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005760 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005761 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005762 u64 total_mpc = 0;
5763 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005764 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5765 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005766 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005767#ifdef IXGBE_FCOE
5768 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5769 unsigned int cpu;
5770 u64 fcoe_noddp_counts_sum = 0, fcoe_noddp_ext_buff_counts_sum = 0;
5771#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07005772
Don Skidmored08935c2010-06-11 13:20:29 +00005773 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5774 test_bit(__IXGBE_RESETTING, &adapter->state))
5775 return;
5776
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005777 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005778 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005779 u64 rsc_flush = 0;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005780 for (i = 0; i < 16; i++)
5781 adapter->hw_rx_no_dma_resources +=
Joe Perches7ca647b2010-09-07 21:35:40 +00005782 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005783 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005784 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5785 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005786 }
5787 adapter->rsc_total_count = rsc_count;
5788 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005789 }
5790
Alexander Duyck5b7da512010-11-16 19:26:50 -08005791 for (i = 0; i < adapter->num_rx_queues; i++) {
5792 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5793 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5794 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5795 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005796 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005797 bytes += rx_ring->stats.bytes;
5798 packets += rx_ring->stats.packets;
5799 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005800 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005801 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5802 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005803 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005804 netdev->stats.rx_bytes = bytes;
5805 netdev->stats.rx_packets = packets;
5806
5807 bytes = 0;
5808 packets = 0;
5809 /* gather some stats to the adapter struct that are per queue */
5810 for (i = 0; i < adapter->num_tx_queues; i++) {
5811 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5812 restart_queue += tx_ring->tx_stats.restart_queue;
5813 tx_busy += tx_ring->tx_stats.tx_busy;
5814 bytes += tx_ring->stats.bytes;
5815 packets += tx_ring->stats.packets;
5816 }
5817 adapter->restart_queue = restart_queue;
5818 adapter->tx_busy = tx_busy;
5819 netdev->stats.tx_bytes = bytes;
5820 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005821
Joe Perches7ca647b2010-09-07 21:35:40 +00005822 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005823
5824 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005825 for (i = 0; i < 8; i++) {
5826 /* for packet buffers not used, the register should read 0 */
5827 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5828 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005829 hwstats->mpc[i] += mpc;
5830 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005831 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5832 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005833 switch (hw->mac.type) {
5834 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005835 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5836 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5837 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005838 hwstats->pxonrxc[i] +=
5839 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005840 break;
5841 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005842 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005843 hwstats->pxonrxc[i] +=
5844 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005845 break;
5846 default:
5847 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005848 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005849 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005850
5851 /*16 register reads */
5852 for (i = 0; i < 16; i++) {
5853 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5854 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5855 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5856 (hw->mac.type == ixgbe_mac_X540)) {
5857 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5858 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5859 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5860 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5861 }
5862 }
5863
Joe Perches7ca647b2010-09-07 21:35:40 +00005864 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005865 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005866 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005867
John Fastabendc84d3242010-11-16 19:27:12 -08005868 ixgbe_update_xoff_received(adapter);
5869
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005870 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005871 switch (hw->mac.type) {
5872 case ixgbe_mac_82598EB:
5873 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005874 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5875 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5876 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5877 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005878 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005879 /* OS2BMC stats are X540 only*/
5880 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5881 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5882 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5883 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5884 case ixgbe_mac_82599EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005885 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005886 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005887 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005888 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005889 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005890 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005891 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005892 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5893 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005894#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005895 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5896 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5897 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5898 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5899 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5900 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005901 /* Add up per cpu counters for total ddp aloc fail */
5902 if (fcoe->pcpu_noddp && fcoe->pcpu_noddp_ext_buff) {
5903 for_each_possible_cpu(cpu) {
5904 fcoe_noddp_counts_sum +=
5905 *per_cpu_ptr(fcoe->pcpu_noddp, cpu);
5906 fcoe_noddp_ext_buff_counts_sum +=
5907 *per_cpu_ptr(fcoe->
5908 pcpu_noddp_ext_buff, cpu);
5909 }
5910 }
5911 hwstats->fcoe_noddp = fcoe_noddp_counts_sum;
5912 hwstats->fcoe_noddp_ext_buff = fcoe_noddp_ext_buff_counts_sum;
Yi Zou6d455222009-05-13 13:12:16 +00005913#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005914 break;
5915 default:
5916 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005917 }
Auke Kok9a799d72007-09-15 14:07:45 -07005918 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005919 hwstats->bprc += bprc;
5920 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005921 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005922 hwstats->mprc -= bprc;
5923 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5924 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5925 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5926 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5927 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5928 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5929 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5930 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005931 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005932 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005933 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005934 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005935 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5936 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005937 /*
5938 * 82598 errata - tx of flow control packets is included in tx counters
5939 */
5940 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005941 hwstats->gptc -= xon_off_tot;
5942 hwstats->mptc -= xon_off_tot;
5943 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5944 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5945 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5946 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5947 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5948 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5949 hwstats->ptc64 -= xon_off_tot;
5950 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5951 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5952 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5953 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5954 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5955 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005956
5957 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005958 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005959
5960 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005961 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005962 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005963 netdev->stats.rx_length_errors = hwstats->rlec;
5964 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005965 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005966}
5967
5968/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005969 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
5970 * @adapter - pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005971 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005972static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005973{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005974 struct ixgbe_hw *hw = &adapter->hw;
5975 int i;
5976
Alexander Duyckd034acf2011-04-27 09:25:34 +00005977 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5978 return;
5979
5980 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5981
5982 /* if interface is down do nothing */
5983 if (test_bit(__IXGBE_DOWN, &adapter->state))
5984 return;
5985
5986 /* do nothing if we are not using signature filters */
5987 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5988 return;
5989
5990 adapter->fdir_overflow++;
5991
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005992 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5993 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005994 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005995 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005996 /* re-enable flow director interrupts */
5997 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005998 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005999 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00006000 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006001 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006002}
6003
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006004/**
6005 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
6006 * @adapter - pointer to the device adapter structure
6007 *
6008 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006009 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006010 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006011 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006012 */
6013static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
6014{
Auke Kok9a799d72007-09-15 14:07:45 -07006015 struct ixgbe_hw *hw = &adapter->hw;
6016 u64 eics = 0;
6017 int i;
6018
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006019 /* If we're down or resetting, just bail */
6020 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6021 test_bit(__IXGBE_RESETTING, &adapter->state))
6022 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00006023
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006024 /* Force detection of hung controller */
6025 if (netif_carrier_ok(adapter->netdev)) {
6026 for (i = 0; i < adapter->num_tx_queues; i++)
6027 set_check_for_tx_hang(adapter->tx_ring[i]);
6028 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00006029
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00006030 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00006031 /*
6032 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00006033 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00006034 * would set *both* EIMS and EICS for any bit in EIAM
6035 */
6036 IXGBE_WRITE_REG(hw, IXGBE_EICS,
6037 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006038 } else {
6039 /* get one bit for every active tx/rx interrupt vector */
6040 for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
6041 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00006042 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006043 eics |= ((u64)1 << i);
6044 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00006045 }
6046
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006047 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00006048 ixgbe_irq_rearm_queues(adapter, eics);
6049
Alexander Duyckfe49f042009-06-04 16:00:09 +00006050}
6051
6052/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006053 * ixgbe_watchdog_update_link - update the link status
6054 * @adapter - pointer to the device adapter structure
6055 * @link_speed - pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006056 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006057static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006058{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006059 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006060 u32 link_speed = adapter->link_speed;
6061 bool link_up = adapter->link_up;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006062 int i;
6063
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006064 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
6065 return;
6066
6067 if (hw->mac.ops.check_link) {
6068 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006069 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006070 /* always assume link is up, if no check link function */
6071 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
6072 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006073 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006074 if (link_up) {
6075 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6076 for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
6077 hw->mac.ops.fc_enable(hw, i);
6078 } else {
6079 hw->mac.ops.fc_enable(hw, 0);
6080 }
6081 }
6082
6083 if (link_up ||
6084 time_after(jiffies, (adapter->link_check_timeout +
6085 IXGBE_TRY_LINK_TIMEOUT))) {
6086 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
6087 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
6088 IXGBE_WRITE_FLUSH(hw);
6089 }
6090
6091 adapter->link_up = link_up;
6092 adapter->link_speed = link_speed;
6093}
6094
6095/**
6096 * ixgbe_watchdog_link_is_up - update netif_carrier status and
6097 * print link up message
6098 * @adapter - pointer to the device adapter structure
6099 **/
6100static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
6101{
6102 struct net_device *netdev = adapter->netdev;
6103 struct ixgbe_hw *hw = &adapter->hw;
6104 u32 link_speed = adapter->link_speed;
6105 bool flow_rx, flow_tx;
6106
6107 /* only continue if link was previously down */
6108 if (netif_carrier_ok(netdev))
6109 return;
6110
6111 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
6112
6113 switch (hw->mac.type) {
6114 case ixgbe_mac_82598EB: {
6115 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6116 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
6117 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
6118 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
6119 }
6120 break;
6121 case ixgbe_mac_X540:
6122 case ixgbe_mac_82599EB: {
6123 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
6124 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
6125 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
6126 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
6127 }
6128 break;
6129 default:
6130 flow_tx = false;
6131 flow_rx = false;
6132 break;
6133 }
6134 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
6135 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
6136 "10 Gbps" :
6137 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
6138 "1 Gbps" :
6139 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
6140 "100 Mbps" :
6141 "unknown speed"))),
6142 ((flow_rx && flow_tx) ? "RX/TX" :
6143 (flow_rx ? "RX" :
6144 (flow_tx ? "TX" : "None"))));
6145
6146 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006147 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006148}
6149
6150/**
6151 * ixgbe_watchdog_link_is_down - update netif_carrier status and
6152 * print link down message
6153 * @adapter - pointer to the adapter structure
6154 **/
6155static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter* adapter)
6156{
6157 struct net_device *netdev = adapter->netdev;
6158 struct ixgbe_hw *hw = &adapter->hw;
6159
6160 adapter->link_up = false;
6161 adapter->link_speed = 0;
6162
6163 /* only continue if link was up previously */
6164 if (!netif_carrier_ok(netdev))
6165 return;
6166
6167 /* poll for SFP+ cable when link is down */
6168 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
6169 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
6170
6171 e_info(drv, "NIC Link is Down\n");
6172 netif_carrier_off(netdev);
6173}
6174
6175/**
6176 * ixgbe_watchdog_flush_tx - flush queues on link down
6177 * @adapter - pointer to the device adapter structure
6178 **/
6179static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
6180{
6181 int i;
6182 int some_tx_pending = 0;
6183
6184 if (!netif_carrier_ok(adapter->netdev)) {
6185 for (i = 0; i < adapter->num_tx_queues; i++) {
6186 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6187 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
6188 some_tx_pending = 1;
6189 break;
6190 }
6191 }
6192
6193 if (some_tx_pending) {
6194 /* We've lost link, so the controller stops DMA,
6195 * but we've got queued Tx work that's never going
6196 * to get done, so reset controller to flush Tx.
6197 * (Do the reset outside of interrupt context).
6198 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006199 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006200 }
6201 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006202}
6203
Greg Rosea985b6c32010-11-18 03:02:52 +00006204static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
6205{
6206 u32 ssvpc;
6207
6208 /* Do not perform spoof check for 82598 */
6209 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6210 return;
6211
6212 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
6213
6214 /*
6215 * ssvpc register is cleared on read, if zero then no
6216 * spoofed packets in the last interval.
6217 */
6218 if (!ssvpc)
6219 return;
6220
6221 e_warn(drv, "%d Spoofed packets detected\n", ssvpc);
6222}
6223
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006224/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006225 * ixgbe_watchdog_subtask - check and bring link up
6226 * @adapter - pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006227 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006228static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006229{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006230 /* if interface is down do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00006231 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6232 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006233 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006234
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006235 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00006236
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006237 if (adapter->link_up)
6238 ixgbe_watchdog_link_is_up(adapter);
6239 else
6240 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00006241
Greg Rosea985b6c32010-11-18 03:02:52 +00006242 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006243 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006244
6245 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006246}
6247
Alexander Duyck70864002011-04-27 09:13:56 +00006248/**
6249 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
6250 * @adapter - the ixgbe adapter structure
6251 **/
6252static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
6253{
6254 struct ixgbe_hw *hw = &adapter->hw;
6255 s32 err;
6256
6257 /* not searching for SFP so there is nothing to do here */
6258 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
6259 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6260 return;
6261
6262 /* someone else is in init, wait until next service event */
6263 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6264 return;
6265
6266 err = hw->phy.ops.identify_sfp(hw);
6267 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6268 goto sfp_out;
6269
6270 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
6271 /* If no cable is present, then we need to reset
6272 * the next time we find a good cable. */
6273 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
6274 }
6275
6276 /* exit on error */
6277 if (err)
6278 goto sfp_out;
6279
6280 /* exit if reset not needed */
6281 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6282 goto sfp_out;
6283
6284 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
6285
6286 /*
6287 * A module may be identified correctly, but the EEPROM may not have
6288 * support for that module. setup_sfp() will fail in that case, so
6289 * we should not allow that module to load.
6290 */
6291 if (hw->mac.type == ixgbe_mac_82598EB)
6292 err = hw->phy.ops.reset(hw);
6293 else
6294 err = hw->mac.ops.setup_sfp(hw);
6295
6296 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6297 goto sfp_out;
6298
6299 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
6300 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
6301
6302sfp_out:
6303 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6304
6305 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
6306 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
6307 e_dev_err("failed to initialize because an unsupported "
6308 "SFP+ module type was detected.\n");
6309 e_dev_err("Reload the driver after installing a "
6310 "supported module.\n");
6311 unregister_netdev(adapter->netdev);
6312 }
6313}
6314
6315/**
6316 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
6317 * @adapter - the ixgbe adapter structure
6318 **/
6319static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
6320{
6321 struct ixgbe_hw *hw = &adapter->hw;
6322 u32 autoneg;
6323 bool negotiation;
6324
6325 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
6326 return;
6327
6328 /* someone else is in init, wait until next service event */
6329 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6330 return;
6331
6332 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
6333
6334 autoneg = hw->phy.autoneg_advertised;
6335 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
6336 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Alexander Duyck70864002011-04-27 09:13:56 +00006337 if (hw->mac.ops.setup_link)
6338 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
6339
6340 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
6341 adapter->link_check_timeout = jiffies;
6342 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6343}
6344
Greg Rose83c61fa2011-09-07 05:59:35 +00006345#ifdef CONFIG_PCI_IOV
6346static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
6347{
6348 int vf;
6349 struct ixgbe_hw *hw = &adapter->hw;
6350 struct net_device *netdev = adapter->netdev;
6351 u32 gpc;
6352 u32 ciaa, ciad;
6353
6354 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
6355 if (gpc) /* If incrementing then no need for the check below */
6356 return;
6357 /*
6358 * Check to see if a bad DMA write target from an errant or
6359 * malicious VF has caused a PCIe error. If so then we can
6360 * issue a VFLR to the offending VF(s) and then resume without
6361 * requesting a full slot reset.
6362 */
6363
6364 for (vf = 0; vf < adapter->num_vfs; vf++) {
6365 ciaa = (vf << 16) | 0x80000000;
6366 /* 32 bit read so align, we really want status at offset 6 */
6367 ciaa |= PCI_COMMAND;
6368 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6369 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
6370 ciaa &= 0x7FFFFFFF;
6371 /* disable debug mode asap after reading data */
6372 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6373 /* Get the upper 16 bits which will be the PCI status reg */
6374 ciad >>= 16;
6375 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
6376 netdev_err(netdev, "VF %d Hung DMA\n", vf);
6377 /* Issue VFLR */
6378 ciaa = (vf << 16) | 0x80000000;
6379 ciaa |= 0xA8;
6380 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6381 ciad = 0x00008000; /* VFLR */
6382 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
6383 ciaa &= 0x7FFFFFFF;
6384 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6385 }
6386 }
6387}
6388
6389#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006390/**
6391 * ixgbe_service_timer - Timer Call-back
6392 * @data: pointer to adapter cast into an unsigned long
6393 **/
6394static void ixgbe_service_timer(unsigned long data)
6395{
6396 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
6397 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00006398 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00006399
Greg Rose83c61fa2011-09-07 05:59:35 +00006400#ifdef CONFIG_PCI_IOV
6401 ready = false;
6402
6403 /*
6404 * don't bother with SR-IOV VF DMA hang check if there are
6405 * no VFs or the link is down
6406 */
6407 if (!adapter->num_vfs ||
6408 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)) {
6409 ready = true;
6410 goto normal_timer_service;
6411 }
6412
6413 /* If we have VFs allocated then we must check for DMA hangs */
6414 ixgbe_check_for_bad_vf(adapter);
6415 next_event_offset = HZ / 50;
6416 adapter->timer_event_accumulator++;
6417
6418 if (adapter->timer_event_accumulator >= 100) {
6419 ready = true;
6420 adapter->timer_event_accumulator = 0;
6421 }
6422
6423 goto schedule_event;
6424
6425normal_timer_service:
6426#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006427 /* poll faster when waiting for link */
6428 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
6429 next_event_offset = HZ / 10;
6430 else
6431 next_event_offset = HZ * 2;
6432
Greg Rose83c61fa2011-09-07 05:59:35 +00006433#ifdef CONFIG_PCI_IOV
6434schedule_event:
6435#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006436 /* Reset the timer */
6437 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
6438
Greg Rose83c61fa2011-09-07 05:59:35 +00006439 if (ready)
6440 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006441}
6442
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006443static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
6444{
6445 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
6446 return;
6447
6448 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
6449
6450 /* If we're already down or resetting, just bail */
6451 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6452 test_bit(__IXGBE_RESETTING, &adapter->state))
6453 return;
6454
6455 ixgbe_dump(adapter);
6456 netdev_err(adapter->netdev, "Reset adapter\n");
6457 adapter->tx_timeout_count++;
6458
6459 ixgbe_reinit_locked(adapter);
6460}
6461
Alexander Duyck70864002011-04-27 09:13:56 +00006462/**
6463 * ixgbe_service_task - manages and runs subtasks
6464 * @work: pointer to work_struct containing our data
6465 **/
6466static void ixgbe_service_task(struct work_struct *work)
6467{
6468 struct ixgbe_adapter *adapter = container_of(work,
6469 struct ixgbe_adapter,
6470 service_task);
6471
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006472 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006473 ixgbe_sfp_detection_subtask(adapter);
6474 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00006475 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006476 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00006477 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006478 ixgbe_check_hang_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006479
6480 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006481}
6482
Alexander Duyck897ab152011-05-27 05:31:47 +00006483void ixgbe_tx_ctxtdesc(struct ixgbe_ring *tx_ring, u32 vlan_macip_lens,
6484 u32 fcoe_sof_eof, u32 type_tucmd, u32 mss_l4len_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07006485{
6486 struct ixgbe_adv_tx_context_desc *context_desc;
Alexander Duyck897ab152011-05-27 05:31:47 +00006487 u16 i = tx_ring->next_to_use;
6488
Alexander Duycke4f74022012-01-31 02:59:44 +00006489 context_desc = IXGBE_TX_CTXTDESC(tx_ring, i);
Alexander Duyck897ab152011-05-27 05:31:47 +00006490
6491 i++;
6492 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
6493
6494 /* set bits to identify this as an advanced context descriptor */
6495 type_tucmd |= IXGBE_TXD_CMD_DEXT | IXGBE_ADVTXD_DTYP_CTXT;
6496
6497 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6498 context_desc->seqnum_seed = cpu_to_le32(fcoe_sof_eof);
6499 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd);
6500 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
6501}
6502
6503static int ixgbe_tso(struct ixgbe_ring *tx_ring, struct sk_buff *skb,
6504 u32 tx_flags, __be16 protocol, u8 *hdr_len)
6505{
Auke Kok9a799d72007-09-15 14:07:45 -07006506 int err;
Alexander Duyck897ab152011-05-27 05:31:47 +00006507 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006508 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07006509
Alexander Duyck897ab152011-05-27 05:31:47 +00006510 if (!skb_is_gso(skb))
6511 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006512
Alexander Duyck897ab152011-05-27 05:31:47 +00006513 if (skb_header_cloned(skb)) {
6514 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
6515 if (err)
6516 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00006517 }
6518
Alexander Duyck897ab152011-05-27 05:31:47 +00006519 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
6520 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
6521
6522 if (protocol == __constant_htons(ETH_P_IP)) {
6523 struct iphdr *iph = ip_hdr(skb);
6524 iph->tot_len = 0;
6525 iph->check = 0;
6526 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6527 iph->daddr, 0,
6528 IPPROTO_TCP,
6529 0);
6530 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6531 } else if (skb_is_gso_v6(skb)) {
6532 ipv6_hdr(skb)->payload_len = 0;
6533 tcp_hdr(skb)->check =
6534 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
6535 &ipv6_hdr(skb)->daddr,
6536 0, IPPROTO_TCP, 0);
6537 }
6538
6539 l4len = tcp_hdrlen(skb);
6540 *hdr_len = skb_transport_offset(skb) + l4len;
6541
6542 /* mss_l4len_id: use 1 as index for TSO */
6543 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
6544 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
6545 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
6546
6547 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
6548 vlan_macip_lens = skb_network_header_len(skb);
6549 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6550 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6551
6552 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
6553 mss_l4len_idx);
6554
6555 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00006556}
6557
Alexander Duyck897ab152011-05-27 05:31:47 +00006558static bool ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
Hao Zheng5e09a102010-11-11 13:47:59 +00006559 struct sk_buff *skb, u32 tx_flags,
6560 __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07006561{
Alexander Duyck897ab152011-05-27 05:31:47 +00006562 u32 vlan_macip_lens = 0;
6563 u32 mss_l4len_idx = 0;
6564 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006565
Alexander Duyck897ab152011-05-27 05:31:47 +00006566 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006567 if (!(tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
6568 !(tx_flags & IXGBE_TX_FLAGS_TXSW))
Alexander Duyck897ab152011-05-27 05:31:47 +00006569 return false;
6570 } else {
6571 u8 l4_hdr = 0;
6572 switch (protocol) {
6573 case __constant_htons(ETH_P_IP):
6574 vlan_macip_lens |= skb_network_header_len(skb);
6575 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6576 l4_hdr = ip_hdr(skb)->protocol;
6577 break;
6578 case __constant_htons(ETH_P_IPV6):
6579 vlan_macip_lens |= skb_network_header_len(skb);
6580 l4_hdr = ipv6_hdr(skb)->nexthdr;
6581 break;
6582 default:
6583 if (unlikely(net_ratelimit())) {
6584 dev_warn(tx_ring->dev,
6585 "partial checksum but proto=%x!\n",
6586 skb->protocol);
6587 }
6588 break;
6589 }
Auke Kok9a799d72007-09-15 14:07:45 -07006590
Alexander Duyck897ab152011-05-27 05:31:47 +00006591 switch (l4_hdr) {
6592 case IPPROTO_TCP:
6593 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6594 mss_l4len_idx = tcp_hdrlen(skb) <<
6595 IXGBE_ADVTXD_L4LEN_SHIFT;
6596 break;
6597 case IPPROTO_SCTP:
6598 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6599 mss_l4len_idx = sizeof(struct sctphdr) <<
6600 IXGBE_ADVTXD_L4LEN_SHIFT;
6601 break;
6602 case IPPROTO_UDP:
6603 mss_l4len_idx = sizeof(struct udphdr) <<
6604 IXGBE_ADVTXD_L4LEN_SHIFT;
6605 break;
6606 default:
6607 if (unlikely(net_ratelimit())) {
6608 dev_warn(tx_ring->dev,
6609 "partial checksum but l4 proto=%x!\n",
6610 skb->protocol);
6611 }
6612 break;
6613 }
Auke Kok9a799d72007-09-15 14:07:45 -07006614 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006615
Alexander Duyck897ab152011-05-27 05:31:47 +00006616 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6617 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6618
6619 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
6620 type_tucmd, mss_l4len_idx);
6621
6622 return (skb->ip_summed == CHECKSUM_PARTIAL);
Auke Kok9a799d72007-09-15 14:07:45 -07006623}
6624
Alexander Duyckd3d00232011-07-15 02:31:25 +00006625static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
6626{
6627 /* set type for advanced descriptor with frame checksum insertion */
6628 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
6629 IXGBE_ADVTXD_DCMD_IFCS |
6630 IXGBE_ADVTXD_DCMD_DEXT);
6631
6632 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006633 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006634 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
6635
6636 /* set segmentation enable bits for TSO/FSO */
6637#ifdef IXGBE_FCOE
6638 if ((tx_flags & IXGBE_TX_FLAGS_TSO) || (tx_flags & IXGBE_TX_FLAGS_FSO))
6639#else
6640 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6641#endif
6642 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
6643
6644 return cmd_type;
6645}
6646
6647static __le32 ixgbe_tx_olinfo_status(u32 tx_flags, unsigned int paylen)
6648{
6649 __le32 olinfo_status =
6650 cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
6651
6652 if (tx_flags & IXGBE_TX_FLAGS_TSO) {
6653 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM |
6654 (1 << IXGBE_ADVTXD_IDX_SHIFT));
6655 /* enble IPv4 checksum for TSO */
6656 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6657 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
6658 }
6659
6660 /* enable L4 checksum for TSO and TX checksum offload */
6661 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6662 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
6663
6664#ifdef IXGBE_FCOE
6665 /* use index 1 context for FCOE/FSO */
6666 if (tx_flags & IXGBE_TX_FLAGS_FCOE)
6667 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC |
6668 (1 << IXGBE_ADVTXD_IDX_SHIFT));
6669
6670#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006671 /*
6672 * Check Context must be set if Tx switch is enabled, which it
6673 * always is for case where virtual functions are running
6674 */
6675 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
6676 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
6677
Alexander Duyckd3d00232011-07-15 02:31:25 +00006678 return olinfo_status;
6679}
6680
6681#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6682 IXGBE_TXD_CMD_RS)
6683
6684static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
6685 struct sk_buff *skb,
6686 struct ixgbe_tx_buffer *first,
6687 u32 tx_flags,
6688 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006689{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006690 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07006691 struct ixgbe_tx_buffer *tx_buffer_info;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006692 union ixgbe_adv_tx_desc *tx_desc;
6693 dma_addr_t dma;
6694 __le32 cmd_type, olinfo_status;
6695 struct skb_frag_struct *frag;
6696 unsigned int f = 0;
6697 unsigned int data_len = skb->data_len;
6698 unsigned int size = skb_headlen(skb);
6699 u32 offset = 0;
6700 u32 paylen = skb->len - hdr_len;
6701 u16 i = tx_ring->next_to_use;
6702 u16 gso_segs;
Auke Kok9a799d72007-09-15 14:07:45 -07006703
Alexander Duyckd3d00232011-07-15 02:31:25 +00006704#ifdef IXGBE_FCOE
6705 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6706 if (data_len >= sizeof(struct fcoe_crc_eof)) {
6707 data_len -= sizeof(struct fcoe_crc_eof);
6708 } else {
6709 size -= sizeof(struct fcoe_crc_eof) - data_len;
6710 data_len = 0;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006711 }
Auke Kok9a799d72007-09-15 14:07:45 -07006712 }
6713
Alexander Duyckd3d00232011-07-15 02:31:25 +00006714#endif
6715 dma = dma_map_single(dev, skb->data, size, DMA_TO_DEVICE);
6716 if (dma_mapping_error(dev, dma))
6717 goto dma_error;
6718
6719 cmd_type = ixgbe_tx_cmd_type(tx_flags);
6720 olinfo_status = ixgbe_tx_olinfo_status(tx_flags, paylen);
6721
Alexander Duycke4f74022012-01-31 02:59:44 +00006722 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006723
6724 for (;;) {
6725 while (size > IXGBE_MAX_DATA_PER_TXD) {
6726 tx_desc->read.buffer_addr = cpu_to_le64(dma + offset);
6727 tx_desc->read.cmd_type_len =
6728 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
6729 tx_desc->read.olinfo_status = olinfo_status;
6730
6731 offset += IXGBE_MAX_DATA_PER_TXD;
6732 size -= IXGBE_MAX_DATA_PER_TXD;
6733
6734 tx_desc++;
6735 i++;
6736 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006737 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006738 i = 0;
6739 }
6740 }
6741
6742 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6743 tx_buffer_info->length = offset + size;
6744 tx_buffer_info->tx_flags = tx_flags;
6745 tx_buffer_info->dma = dma;
6746
6747 tx_desc->read.buffer_addr = cpu_to_le64(dma + offset);
6748 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
6749 tx_desc->read.olinfo_status = olinfo_status;
6750
6751 if (!data_len)
6752 break;
Auke Kok9a799d72007-09-15 14:07:45 -07006753
6754 frag = &skb_shinfo(skb)->frags[f];
Alexander Duyckd3d00232011-07-15 02:31:25 +00006755#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006756 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006757#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006758 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006759#endif
6760 data_len -= size;
6761 f++;
Auke Kok9a799d72007-09-15 14:07:45 -07006762
Alexander Duyckd3d00232011-07-15 02:31:25 +00006763 offset = 0;
6764 tx_flags |= IXGBE_TX_FLAGS_MAPPED_AS_PAGE;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006765
Ian Campbell877749b2011-08-29 23:18:26 +00006766 dma = skb_frag_dma_map(dev, frag, 0, size, DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006767 if (dma_mapping_error(dev, dma))
6768 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006769
Alexander Duyckd3d00232011-07-15 02:31:25 +00006770 tx_desc++;
6771 i++;
6772 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006773 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006774 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006775 }
6776 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006777
Alexander Duyckd3d00232011-07-15 02:31:25 +00006778 tx_desc->read.cmd_type_len |= cpu_to_le32(IXGBE_TXD_CMD);
6779
6780 i++;
6781 if (i == tx_ring->count)
6782 i = 0;
6783
6784 tx_ring->next_to_use = i;
6785
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006786 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6787 gso_segs = skb_shinfo(skb)->gso_segs;
6788#ifdef IXGBE_FCOE
6789 /* adjust for FCoE Sequence Offload */
6790 else if (tx_flags & IXGBE_TX_FLAGS_FSO)
6791 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
6792 skb_shinfo(skb)->gso_size);
6793#endif /* IXGBE_FCOE */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006794 else
6795 gso_segs = 1;
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006796
6797 /* multiply data chunks by size of headers */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006798 tx_buffer_info->bytecount = paylen + (gso_segs * hdr_len);
6799 tx_buffer_info->gso_segs = gso_segs;
6800 tx_buffer_info->skb = skb;
Auke Kok9a799d72007-09-15 14:07:45 -07006801
Alexander Duyckb2d96e02012-02-07 08:14:33 +00006802 netdev_tx_sent_queue(txring_txq(tx_ring), tx_buffer_info->bytecount);
6803
Alexander Duyckd3d00232011-07-15 02:31:25 +00006804 /* set the timestamp */
6805 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006806
6807 /*
6808 * Force memory writes to complete before letting h/w
6809 * know there are new descriptors to fetch. (Only
6810 * applicable for weak-ordered memory model archs,
6811 * such as IA-64).
6812 */
6813 wmb();
6814
Alexander Duyckd3d00232011-07-15 02:31:25 +00006815 /* set next_to_watch value indicating a packet is present */
6816 first->next_to_watch = tx_desc;
6817
6818 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006819 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006820
6821 return;
6822dma_error:
6823 dev_err(dev, "TX DMA map failed\n");
6824
6825 /* clear dma mappings for failed tx_buffer_info map */
6826 for (;;) {
6827 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6828 ixgbe_unmap_tx_resource(tx_ring, tx_buffer_info);
6829 if (tx_buffer_info == first)
6830 break;
6831 if (i == 0)
6832 i = tx_ring->count;
6833 i--;
6834 }
6835
6836 dev_kfree_skb_any(skb);
6837
6838 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006839}
6840
Alexander Duyck69830522011-01-06 14:29:58 +00006841static void ixgbe_atr(struct ixgbe_ring *ring, struct sk_buff *skb,
6842 u32 tx_flags, __be16 protocol)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006843{
Alexander Duyck69830522011-01-06 14:29:58 +00006844 struct ixgbe_q_vector *q_vector = ring->q_vector;
6845 union ixgbe_atr_hash_dword input = { .dword = 0 };
6846 union ixgbe_atr_hash_dword common = { .dword = 0 };
6847 union {
6848 unsigned char *network;
6849 struct iphdr *ipv4;
6850 struct ipv6hdr *ipv6;
6851 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006852 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006853 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006854
Alexander Duyck69830522011-01-06 14:29:58 +00006855 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6856 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006857 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006858
Alexander Duyck69830522011-01-06 14:29:58 +00006859 /* do nothing if sampling is disabled */
6860 if (!ring->atr_sample_rate)
6861 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006862
Alexander Duyck69830522011-01-06 14:29:58 +00006863 ring->atr_count++;
6864
6865 /* snag network header to get L4 type and address */
6866 hdr.network = skb_network_header(skb);
6867
6868 /* Currently only IPv4/IPv6 with TCP is supported */
6869 if ((protocol != __constant_htons(ETH_P_IPV6) ||
6870 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
6871 (protocol != __constant_htons(ETH_P_IP) ||
6872 hdr.ipv4->protocol != IPPROTO_TCP))
6873 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006874
6875 th = tcp_hdr(skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006876
Alexander Duyck66f32a82011-06-29 05:43:22 +00006877 /* skip this packet since it is invalid or the socket is closing */
6878 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006879 return;
6880
6881 /* sample on all syn packets or once every atr sample count */
6882 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6883 return;
6884
6885 /* reset sample count */
6886 ring->atr_count = 0;
6887
6888 vlan_id = htons(tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
6889
6890 /*
6891 * src and dst are inverted, think how the receiver sees them
6892 *
6893 * The input is broken into two sections, a non-compressed section
6894 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6895 * is XORed together and stored in the compressed dword.
6896 */
6897 input.formatted.vlan_id = vlan_id;
6898
6899 /*
6900 * since src port and flex bytes occupy the same word XOR them together
6901 * and write the value to source port portion of compressed dword
6902 */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006903 if (tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006904 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6905 else
6906 common.port.src ^= th->dest ^ protocol;
6907 common.port.dst ^= th->source;
6908
6909 if (protocol == __constant_htons(ETH_P_IP)) {
6910 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6911 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6912 } else {
6913 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6914 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6915 hdr.ipv6->saddr.s6_addr32[1] ^
6916 hdr.ipv6->saddr.s6_addr32[2] ^
6917 hdr.ipv6->saddr.s6_addr32[3] ^
6918 hdr.ipv6->daddr.s6_addr32[0] ^
6919 hdr.ipv6->daddr.s6_addr32[1] ^
6920 hdr.ipv6->daddr.s6_addr32[2] ^
6921 hdr.ipv6->daddr.s6_addr32[3];
6922 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006923
6924 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006925 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6926 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006927}
6928
Alexander Duyck63544e92011-05-27 05:31:42 +00006929static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006930{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006931 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006932 /* Herbert's original patch had:
6933 * smp_mb__after_netif_stop_queue();
6934 * but since that doesn't exist yet, just open code it. */
6935 smp_mb();
6936
6937 /* We need to check again in a case another CPU has just
6938 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006939 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006940 return -EBUSY;
6941
6942 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006943 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006944 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006945 return 0;
6946}
6947
Alexander Duyck82d4e462011-06-11 01:44:58 +00006948static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006949{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006950 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006951 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006952 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006953}
6954
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006955static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6956{
6957 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006958 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6959 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006960#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006961 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006962
John Fastabende5b64632011-03-08 03:44:52 +00006963 if (((protocol == htons(ETH_P_FCOE)) ||
6964 (protocol == htons(ETH_P_FIP))) &&
6965 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
6966 txq &= (adapter->ring_feature[RING_F_FCOE].indices - 1);
6967 txq += adapter->ring_feature[RING_F_FCOE].mask;
6968 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006969 }
6970#endif
6971
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006972 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6973 while (unlikely(txq >= dev->real_num_tx_queues))
6974 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006975 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006976 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006977
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006978 return skb_tx_hash(dev, skb);
6979}
6980
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006981netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006982 struct ixgbe_adapter *adapter,
6983 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006984{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006985 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006986 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006987 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006988#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6989 unsigned short f;
6990#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006991 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006992 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006993 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006994
Alexander Duycka535c302011-05-27 05:31:52 +00006995 /*
6996 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00006997 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00006998 * + 2 desc gap to keep tail from touching head,
6999 * + 1 desc for context descriptor,
7000 * otherwise try next time
7001 */
7002#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
7003 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
7004 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
7005#else
7006 count += skb_shinfo(skb)->nr_frags;
7007#endif
7008 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
7009 tx_ring->tx_stats.tx_busy++;
7010 return NETDEV_TX_BUSY;
7011 }
7012
Alexander Duyck66f32a82011-06-29 05:43:22 +00007013 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00007014 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007015 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
7016 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7017 /* else if it is a SW VLAN check the next protocol and store the tag */
7018 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
7019 struct vlan_hdr *vhdr, _vhdr;
7020 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
7021 if (!vhdr)
7022 goto out_drop;
7023
7024 protocol = vhdr->h_vlan_encapsulated_proto;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007025 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
7026 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007027 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07007028 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007029
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007030#ifdef CONFIG_PCI_IOV
7031 /*
7032 * Use the l2switch_enable flag - would be false if the DMA
7033 * Tx switch had been disabled.
7034 */
7035 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7036 tx_flags |= IXGBE_TX_FLAGS_TXSW;
7037
7038#endif
John Fastabend32701dc2011-09-27 03:51:56 +00007039 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00007040 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00007041 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
7042 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007043 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00007044 tx_flags |= (skb->priority & 0x7) <<
7045 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007046 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
7047 struct vlan_ethhdr *vhdr;
7048 if (skb_header_cloned(skb) &&
7049 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
7050 goto out_drop;
7051 vhdr = (struct vlan_ethhdr *)skb->data;
7052 vhdr->h_vlan_TCI = htons(tx_flags >>
7053 IXGBE_TX_FLAGS_VLAN_SHIFT);
7054 } else {
7055 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7056 }
7057 }
Alexander Duycka535c302011-05-27 05:31:52 +00007058
Alexander Duycka535c302011-05-27 05:31:52 +00007059 /* record the location of the first descriptor for this packet */
Alexander Duyckd3d00232011-07-15 02:31:25 +00007060 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
Alexander Duycka535c302011-05-27 05:31:52 +00007061
Yi Zoueacd73f2009-05-13 13:11:06 +00007062#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00007063 /* setup tx offload for FCoE */
7064 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
7065 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00007066 tso = ixgbe_fso(tx_ring, skb, tx_flags, &hdr_len);
7067 if (tso < 0)
7068 goto out_drop;
7069 else if (tso)
Alexander Duyck66f32a82011-06-29 05:43:22 +00007070 tx_flags |= IXGBE_TX_FLAGS_FSO |
7071 IXGBE_TX_FLAGS_FCOE;
7072 else
7073 tx_flags |= IXGBE_TX_FLAGS_FCOE;
Auke Kok9a799d72007-09-15 14:07:45 -07007074
Alexander Duyck66f32a82011-06-29 05:43:22 +00007075 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00007076 }
Auke Kok9a799d72007-09-15 14:07:45 -07007077
Auke Kok9a799d72007-09-15 14:07:45 -07007078#endif /* IXGBE_FCOE */
Alexander Duyck66f32a82011-06-29 05:43:22 +00007079 /* setup IPv4/IPv6 offloads */
7080 if (protocol == __constant_htons(ETH_P_IP))
7081 tx_flags |= IXGBE_TX_FLAGS_IPV4;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007082
Alexander Duyck66f32a82011-06-29 05:43:22 +00007083 tso = ixgbe_tso(tx_ring, skb, tx_flags, protocol, &hdr_len);
7084 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07007085 goto out_drop;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007086 else if (tso)
7087 tx_flags |= IXGBE_TX_FLAGS_TSO;
7088 else if (ixgbe_tx_csum(tx_ring, skb, tx_flags, protocol))
7089 tx_flags |= IXGBE_TX_FLAGS_CSUM;
7090
7091 /* add the ATR filter if ATR is on */
7092 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
7093 ixgbe_atr(tx_ring, skb, tx_flags, protocol);
7094
7095#ifdef IXGBE_FCOE
7096xmit_fcoe:
7097#endif /* IXGBE_FCOE */
Alexander Duyckd3d00232011-07-15 02:31:25 +00007098 ixgbe_tx_map(tx_ring, skb, first, tx_flags, hdr_len);
7099
7100 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07007101
7102 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00007103
7104out_drop:
7105 dev_kfree_skb_any(skb);
7106 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07007107}
7108
7109static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
7110{
7111 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7112 struct ixgbe_ring *tx_ring;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007113
Auke Kok9a799d72007-09-15 14:07:45 -07007114 tx_ring = adapter->tx_ring[skb->queue_mapping];
7115 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
7116}
7117
7118/**
7119 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007120 * @netdev: network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07007121 * @p: pointer to an address structure
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007122 *
Auke Kok9a799d72007-09-15 14:07:45 -07007123 * Returns 0 on success, negative on failure
7124 **/
7125static int ixgbe_set_mac(struct net_device *netdev, void *p)
7126{
Ben Hutchings6b73e102009-04-29 08:08:58 +00007127 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7128 struct ixgbe_hw *hw = &adapter->hw;
7129 struct sockaddr *addr = p;
7130
7131 if (!is_valid_ether_addr(addr->sa_data))
7132 return -EADDRNOTAVAIL;
7133
7134 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
7135 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
7136
7137 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
7138 IXGBE_RAH_AV);
7139
7140 return 0;
7141}
7142
7143static int
7144ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
7145{
7146 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7147 struct ixgbe_hw *hw = &adapter->hw;
7148 u16 value;
7149 int rc;
7150
7151 if (prtad != hw->phy.mdio.prtad)
7152 return -EINVAL;
7153 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
7154 if (!rc)
7155 rc = value;
7156 return rc;
7157}
7158
7159static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
7160 u16 addr, u16 value)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007161{
7162 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jiri Pirko31278e72009-06-17 01:12:19 +00007163 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007164
7165 if (prtad != hw->phy.mdio.prtad)
7166 return -EINVAL;
7167 return hw->phy.ops.write_reg(hw, addr, devad, value);
7168}
7169
7170static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
7171{
7172 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7173
7174 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
7175}
7176
7177/**
7178 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
7179 * netdev->dev_addrs
7180 * @netdev: network interface device structure
7181 *
7182 * Returns non-zero on failure
7183 **/
Jiri Pirko31278e72009-06-17 01:12:19 +00007184static int ixgbe_add_sanmac_netdev(struct net_device *dev)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007185{
7186 int err = 0;
7187 struct ixgbe_adapter *adapter = netdev_priv(dev);
7188 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7189
7190 if (is_valid_ether_addr(mac->san_addr)) {
7191 rtnl_lock();
7192 err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
7193 rtnl_unlock();
7194 }
7195 return err;
7196}
7197
7198/**
7199 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
7200 * netdev->dev_addrs
7201 * @netdev: network interface device structure
7202 *
Auke Kok9a799d72007-09-15 14:07:45 -07007203 * Returns non-zero on failure
7204 **/
7205static int ixgbe_del_sanmac_netdev(struct net_device *dev)
7206{
7207 int err = 0;
7208 struct ixgbe_adapter *adapter = netdev_priv(dev);
7209 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7210
7211 if (is_valid_ether_addr(mac->san_addr)) {
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007212 rtnl_lock();
Auke Kok9a799d72007-09-15 14:07:45 -07007213 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
Alexander Duyck1a647bd2010-01-13 01:49:13 +00007214 rtnl_unlock();
7215 }
7216 return err;
7217}
Auke Kok9a799d72007-09-15 14:07:45 -07007218
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007219#ifdef CONFIG_NET_POLL_CONTROLLER
7220/*
7221 * Polling 'interrupt' - used by things like netconsole to send skbs
7222 * without having to re-enable interrupts. It's not called while
7223 * the interrupt routine is executing.
7224 */
7225static void ixgbe_netpoll(struct net_device *netdev)
7226{
7227 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007228 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07007229
7230 /* if interface is down do nothing */
7231 if (test_bit(__IXGBE_DOWN, &adapter->state))
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007232 return;
7233
7234 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Stephen Hemminger00829822008-11-20 20:14:53 -08007235 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007236 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Chris Leeche90d4002009-03-10 16:00:24 +00007237 for (i = 0; i < num_q_vectors; i++) {
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007238 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00007239 ixgbe_msix_clean_rings(0, q_vector);
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007240 }
7241 } else {
7242 ixgbe_intr(adapter->pdev->irq, netdev);
7243 }
7244 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
7245}
7246#endif
7247
Eric Dumazetde1036b2010-10-20 23:00:04 +00007248static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
7249 struct rtnl_link_stats64 *stats)
7250{
7251 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7252 int i;
7253
Eric Dumazet1a515022010-11-16 19:26:42 -08007254 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007255 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08007256 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00007257 u64 bytes, packets;
7258 unsigned int start;
7259
Eric Dumazet1a515022010-11-16 19:26:42 -08007260 if (ring) {
7261 do {
7262 start = u64_stats_fetch_begin_bh(&ring->syncp);
7263 packets = ring->stats.packets;
7264 bytes = ring->stats.bytes;
7265 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7266 stats->rx_packets += packets;
7267 stats->rx_bytes += bytes;
7268 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00007269 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00007270
7271 for (i = 0; i < adapter->num_tx_queues; i++) {
7272 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
7273 u64 bytes, packets;
7274 unsigned int start;
7275
7276 if (ring) {
7277 do {
7278 start = u64_stats_fetch_begin_bh(&ring->syncp);
7279 packets = ring->stats.packets;
7280 bytes = ring->stats.bytes;
7281 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7282 stats->tx_packets += packets;
7283 stats->tx_bytes += bytes;
7284 }
7285 }
Eric Dumazet1a515022010-11-16 19:26:42 -08007286 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007287 /* following stats updated by ixgbe_watchdog_task() */
7288 stats->multicast = netdev->stats.multicast;
7289 stats->rx_errors = netdev->stats.rx_errors;
7290 stats->rx_length_errors = netdev->stats.rx_length_errors;
7291 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
7292 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
7293 return stats;
7294}
7295
John Fastabend8b1c0b22011-05-03 02:26:48 +00007296/* ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
7297 * #adapter: pointer to ixgbe_adapter
7298 * @tc: number of traffic classes currently enabled
7299 *
7300 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
7301 * 802.1Q priority maps to a packet buffer that exists.
7302 */
7303static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
7304{
7305 struct ixgbe_hw *hw = &adapter->hw;
7306 u32 reg, rsave;
7307 int i;
7308
7309 /* 82598 have a static priority to TC mapping that can not
7310 * be changed so no validation is needed.
7311 */
7312 if (hw->mac.type == ixgbe_mac_82598EB)
7313 return;
7314
7315 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
7316 rsave = reg;
7317
7318 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
7319 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
7320
7321 /* If up2tc is out of bounds default to zero */
7322 if (up2tc > tc)
7323 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
7324 }
7325
7326 if (reg != rsave)
7327 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
7328
7329 return;
7330}
7331
7332
7333/* ixgbe_setup_tc - routine to configure net_device for multiple traffic
7334 * classes.
7335 *
7336 * @netdev: net device to configure
7337 * @tc: number of traffic classes to enable
7338 */
7339int ixgbe_setup_tc(struct net_device *dev, u8 tc)
7340{
John Fastabend8b1c0b22011-05-03 02:26:48 +00007341 struct ixgbe_adapter *adapter = netdev_priv(dev);
7342 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00007343
John Fastabende7589ea2011-07-18 22:38:36 +00007344 /* Multiple traffic classes requires multiple queues */
7345 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
7346 e_err(drv, "Enable failed, needs MSI-X\n");
7347 return -EINVAL;
7348 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00007349
7350 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00007351 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
John Fastabend8b1c0b22011-05-03 02:26:48 +00007352 (hw->mac.type == ixgbe_mac_82598EB && tc < MAX_TRAFFIC_CLASS))
7353 return -EINVAL;
7354
7355 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00007356 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00007357 * hardware is not flexible enough to do this dynamically.
7358 */
7359 if (netif_running(dev))
7360 ixgbe_close(dev);
7361 ixgbe_clear_interrupt_scheme(adapter);
7362
John Fastabende7589ea2011-07-18 22:38:36 +00007363 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007364 netdev_set_num_tc(dev, tc);
John Fastabende7589ea2011-07-18 22:38:36 +00007365 adapter->last_lfc_mode = adapter->hw.fc.current_mode;
7366
7367 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
7368 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7369
7370 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
7371 adapter->hw.fc.requested_mode = ixgbe_fc_none;
7372 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007373 netdev_reset_tc(dev);
7374
John Fastabende7589ea2011-07-18 22:38:36 +00007375 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
7376
7377 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
7378 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7379
7380 adapter->temp_dcb_cfg.pfc_mode_enable = false;
7381 adapter->dcb_cfg.pfc_mode_enable = false;
7382 }
7383
John Fastabend8b1c0b22011-05-03 02:26:48 +00007384 ixgbe_init_interrupt_scheme(adapter);
7385 ixgbe_validate_rtr(adapter, tc);
7386 if (netif_running(dev))
7387 ixgbe_open(dev);
7388
7389 return 0;
7390}
Eric Dumazetde1036b2010-10-20 23:00:04 +00007391
Don Skidmore082757a2011-07-21 05:55:00 +00007392void ixgbe_do_reset(struct net_device *netdev)
7393{
7394 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7395
7396 if (netif_running(netdev))
7397 ixgbe_reinit_locked(adapter);
7398 else
7399 ixgbe_reset(adapter);
7400}
7401
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007402static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
7403 netdev_features_t data)
Don Skidmore082757a2011-07-21 05:55:00 +00007404{
7405 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7406
7407#ifdef CONFIG_DCB
7408 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED)
7409 data &= ~NETIF_F_HW_VLAN_RX;
7410#endif
7411
7412 /* return error if RXHASH is being enabled when RSS is not supported */
7413 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
7414 data &= ~NETIF_F_RXHASH;
7415
7416 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
7417 if (!(data & NETIF_F_RXCSUM))
7418 data &= ~NETIF_F_LRO;
7419
7420 /* Turn off LRO if not RSC capable or invalid ITR settings */
7421 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)) {
7422 data &= ~NETIF_F_LRO;
7423 } else if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
7424 (adapter->rx_itr_setting != 1 &&
7425 adapter->rx_itr_setting > IXGBE_MAX_RSC_INT_RATE)) {
7426 data &= ~NETIF_F_LRO;
7427 e_info(probe, "rx-usecs set too low, not enabling RSC\n");
7428 }
7429
7430 return data;
7431}
7432
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007433static int ixgbe_set_features(struct net_device *netdev,
7434 netdev_features_t data)
Don Skidmore082757a2011-07-21 05:55:00 +00007435{
7436 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7437 bool need_reset = false;
7438
Don Skidmore082757a2011-07-21 05:55:00 +00007439 /* Make sure RSC matches LRO, reset if change */
7440 if (!!(data & NETIF_F_LRO) !=
7441 !!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
7442 adapter->flags2 ^= IXGBE_FLAG2_RSC_ENABLED;
7443 switch (adapter->hw.mac.type) {
7444 case ixgbe_mac_X540:
7445 case ixgbe_mac_82599EB:
7446 need_reset = true;
7447 break;
7448 default:
7449 break;
7450 }
7451 }
7452
7453 /*
7454 * Check if Flow Director n-tuple support was enabled or disabled. If
7455 * the state changed, we need to reset.
7456 */
7457 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
7458 /* turn off ATR, enable perfect filters and reset */
7459 if (data & NETIF_F_NTUPLE) {
7460 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7461 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7462 need_reset = true;
7463 }
7464 } else if (!(data & NETIF_F_NTUPLE)) {
7465 /* turn off Flow Director, set ATR and reset */
7466 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7467 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
7468 !(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
7469 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7470 need_reset = true;
7471 }
7472
7473 if (need_reset)
7474 ixgbe_do_reset(netdev);
7475
7476 return 0;
7477
7478}
7479
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007480static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00007481 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007482 .ndo_stop = ixgbe_close,
7483 .ndo_start_xmit = ixgbe_xmit_frame,
7484 .ndo_select_queue = ixgbe_select_queue,
7485 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007486 .ndo_validate_addr = eth_validate_addr,
7487 .ndo_set_mac_address = ixgbe_set_mac,
7488 .ndo_change_mtu = ixgbe_change_mtu,
7489 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007490 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
7491 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00007492 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00007493 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
7494 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
7495 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Greg Rosede4c7f62011-09-29 05:57:33 +00007496 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00007497 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00007498 .ndo_get_stats64 = ixgbe_get_stats64,
John Fastabend24095aa2011-02-23 05:58:03 +00007499 .ndo_setup_tc = ixgbe_setup_tc,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007500#ifdef CONFIG_NET_POLL_CONTROLLER
7501 .ndo_poll_controller = ixgbe_netpoll,
7502#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007503#ifdef IXGBE_FCOE
7504 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007505 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007506 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007507 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7508 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007509 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00007510 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00007511#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00007512 .ndo_set_features = ixgbe_set_features,
7513 .ndo_fix_features = ixgbe_fix_features,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007514};
7515
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007516static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
7517 const struct ixgbe_info *ii)
7518{
7519#ifdef CONFIG_PCI_IOV
7520 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007521
Greg Rosec6bda302011-08-24 02:37:55 +00007522 if (hw->mac.type == ixgbe_mac_82598EB)
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007523 return;
7524
7525 /* The 82599 supports up to 64 VFs per physical function
7526 * but this implementation limits allocation to 63 so that
7527 * basic networking resources are still available to the
7528 * physical function
7529 */
7530 adapter->num_vfs = (max_vfs > 63) ? 63 : max_vfs;
Greg Rosec6bda302011-08-24 02:37:55 +00007531 ixgbe_enable_sriov(adapter, ii);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007532#endif /* CONFIG_PCI_IOV */
7533}
7534
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007535/**
Auke Kok9a799d72007-09-15 14:07:45 -07007536 * ixgbe_probe - Device Initialization Routine
7537 * @pdev: PCI device information struct
7538 * @ent: entry in ixgbe_pci_tbl
7539 *
7540 * Returns 0 on success, negative on failure
7541 *
7542 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7543 * The OS initialization, configuring of the adapter private structure,
7544 * and a hardware reset occur.
7545 **/
7546static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007547 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007548{
7549 struct net_device *netdev;
7550 struct ixgbe_adapter *adapter = NULL;
7551 struct ixgbe_hw *hw;
7552 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007553 static int cards_found;
7554 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00007555 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007556 unsigned int indices = num_possible_cpus();
Yi Zoueacd73f2009-05-13 13:11:06 +00007557#ifdef IXGBE_FCOE
7558 u16 device_caps;
7559#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007560 u32 eec;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007561 u16 wol_cap;
Auke Kok9a799d72007-09-15 14:07:45 -07007562
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007563 /* Catch broken hardware that put the wrong VF device ID in
7564 * the PCIe SR-IOV capability.
7565 */
7566 if (pdev->is_virtfn) {
7567 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7568 pci_name(pdev), pdev->vendor, pdev->device);
7569 return -EINVAL;
7570 }
7571
gouji-new9ce77662009-05-06 10:44:45 +00007572 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007573 if (err)
7574 return err;
7575
Nick Nunley1b507732010-04-27 13:10:27 +00007576 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7577 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007578 pci_using_dac = 1;
7579 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007580 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007581 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007582 err = dma_set_coherent_mask(&pdev->dev,
7583 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007584 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007585 dev_err(&pdev->dev,
7586 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007587 goto err_dma;
7588 }
7589 }
7590 pci_using_dac = 0;
7591 }
7592
gouji-new9ce77662009-05-06 10:44:45 +00007593 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007594 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007595 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007596 dev_err(&pdev->dev,
7597 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007598 goto err_pci_reg;
7599 }
7600
Frans Pop19d5afd2009-10-02 10:04:12 -07007601 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007602
Auke Kok9a799d72007-09-15 14:07:45 -07007603 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007604 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007605
John Fastabende901acd2011-04-26 07:26:08 +00007606#ifdef CONFIG_IXGBE_DCB
7607 indices *= MAX_TRAFFIC_CLASS;
7608#endif
7609
John Fastabendc85a2612010-02-25 23:15:21 +00007610 if (ii->mac == ixgbe_mac_82598EB)
7611 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7612 else
7613 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7614
John Fastabende901acd2011-04-26 07:26:08 +00007615#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007616 indices += min_t(unsigned int, num_possible_cpus(),
7617 IXGBE_MAX_FCOE_INDICES);
7618#endif
John Fastabendc85a2612010-02-25 23:15:21 +00007619 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007620 if (!netdev) {
7621 err = -ENOMEM;
7622 goto err_alloc_etherdev;
7623 }
7624
Auke Kok9a799d72007-09-15 14:07:45 -07007625 SET_NETDEV_DEV(netdev, &pdev->dev);
7626
Auke Kok9a799d72007-09-15 14:07:45 -07007627 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007628 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007629
7630 adapter->netdev = netdev;
7631 adapter->pdev = pdev;
7632 hw = &adapter->hw;
7633 hw->back = adapter;
7634 adapter->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
7635
Jeff Kirsher05857982008-09-11 19:57:00 -07007636 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007637 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007638 if (!hw->hw_addr) {
7639 err = -EIO;
7640 goto err_ioremap;
7641 }
7642
7643 for (i = 1; i <= 5; i++) {
7644 if (pci_resource_len(pdev, i) == 0)
7645 continue;
7646 }
7647
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007648 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007649 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007650 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007651 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007652
Auke Kok9a799d72007-09-15 14:07:45 -07007653 adapter->bd_number = cards_found;
7654
Auke Kok9a799d72007-09-15 14:07:45 -07007655 /* Setup hw api */
7656 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007657 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007658
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007659 /* EEPROM */
7660 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7661 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7662 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7663 if (!(eec & (1 << 8)))
7664 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7665
7666 /* PHY */
7667 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007668 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007669 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7670 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7671 hw->phy.mdio.mmds = 0;
7672 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7673 hw->phy.mdio.dev = netdev;
7674 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7675 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007676
Don Skidmore8ca783a2009-05-26 20:40:47 -07007677 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007678
7679 /* setup the private structure */
7680 err = ixgbe_sw_init(adapter);
7681 if (err)
7682 goto err_sw_init;
7683
Don Skidmoree86bff02010-02-11 04:14:08 +00007684 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007685 switch (adapter->hw.mac.type) {
7686 case ixgbe_mac_82599EB:
7687 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007688 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007689 break;
7690 default:
7691 break;
7692 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007693
Don Skidmorebf069c92009-05-07 10:39:54 +00007694 /*
7695 * If there is a fan on this device and it has failed log the
7696 * failure.
7697 */
7698 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7699 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7700 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007701 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007702 }
7703
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00007704 if (allow_unsupported_sfp)
7705 hw->allow_unsupported_sfp = allow_unsupported_sfp;
7706
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007707 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007708 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007709 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007710 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007711 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7712 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007713 err = 0;
7714 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007715 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007716 "module type was detected.\n");
7717 e_dev_err("Reload the driver after installing a supported "
7718 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007719 goto err_sw_init;
7720 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007721 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007722 goto err_sw_init;
7723 }
7724
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007725 ixgbe_probe_vf(adapter, ii);
7726
Emil Tantilov396e7992010-07-01 20:05:12 +00007727 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007728 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00007729 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00007730 NETIF_F_HW_VLAN_TX |
7731 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00007732 NETIF_F_HW_VLAN_FILTER |
7733 NETIF_F_TSO |
7734 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00007735 NETIF_F_RXHASH |
7736 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007737
Don Skidmore082757a2011-07-21 05:55:00 +00007738 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007739
Don Skidmore58be7662011-04-12 09:42:11 +00007740 switch (adapter->hw.mac.type) {
7741 case ixgbe_mac_82599EB:
7742 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007743 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00007744 netdev->hw_features |= NETIF_F_SCTP_CSUM |
7745 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00007746 break;
7747 default:
7748 break;
7749 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007750
Jeff Kirsherad31c402008-06-05 04:05:30 -07007751 netdev->vlan_features |= NETIF_F_TSO;
7752 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007753 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007754 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007755 netdev->vlan_features |= NETIF_F_SG;
7756
Jiri Pirko01789342011-08-16 06:29:00 +00007757 netdev->priv_flags |= IFF_UNICAST_FLT;
7758
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007759 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7760 adapter->flags &= ~(IXGBE_FLAG_RSS_ENABLED |
7761 IXGBE_FLAG_DCB_ENABLED);
Alexander Duyck2f90b862008-11-20 20:52:10 -08007762
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007763#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007764 netdev->dcbnl_ops = &dcbnl_ops;
7765#endif
7766
Yi Zoueacd73f2009-05-13 13:11:06 +00007767#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007768 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007769 if (hw->mac.ops.get_device_caps) {
7770 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007771 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7772 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007773 }
7774 }
Yi Zou5e09d7f2010-07-19 13:59:52 +00007775 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
7776 netdev->vlan_features |= NETIF_F_FCOE_CRC;
7777 netdev->vlan_features |= NETIF_F_FSO;
7778 netdev->vlan_features |= NETIF_F_FCOE_MTU;
7779 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007780#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007781 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007782 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007783 netdev->vlan_features |= NETIF_F_HIGHDMA;
7784 }
Auke Kok9a799d72007-09-15 14:07:45 -07007785
Don Skidmore082757a2011-07-21 05:55:00 +00007786 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
7787 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007788 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007789 netdev->features |= NETIF_F_LRO;
7790
Auke Kok9a799d72007-09-15 14:07:45 -07007791 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007792 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007793 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007794 err = -EIO;
7795 goto err_eeprom;
7796 }
7797
7798 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7799 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7800
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007801 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007802 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007803 err = -EIO;
7804 goto err_eeprom;
7805 }
7806
Alexander Duyck70864002011-04-27 09:13:56 +00007807 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
7808 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007809
Alexander Duyck70864002011-04-27 09:13:56 +00007810 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7811 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007812
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007813 err = ixgbe_init_interrupt_scheme(adapter);
7814 if (err)
7815 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007816
Don Skidmore082757a2011-07-21 05:55:00 +00007817 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
7818 netdev->hw_features &= ~NETIF_F_RXHASH;
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007819 netdev->features &= ~NETIF_F_RXHASH;
Don Skidmore082757a2011-07-21 05:55:00 +00007820 }
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007821
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007822 /* WOL not supported for all but the following */
7823 adapter->wol = 0;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007824 switch (pdev->device) {
Don Skidmore0b077fe2010-12-03 03:32:13 +00007825 case IXGBE_DEV_ID_82599_SFP:
Don Skidmore0e22d042011-12-10 06:49:43 +00007826 /* Only these subdevice supports WOL */
7827 switch (pdev->subsystem_device) {
7828 case IXGBE_SUBDEV_ID_82599_560FLR:
7829 /* only support first port */
7830 if (hw->bus.func != 0)
7831 break;
7832 case IXGBE_SUBDEV_ID_82599_SFP:
Andy Gospodarek9417c462011-07-16 07:31:33 +00007833 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0e22d042011-12-10 06:49:43 +00007834 break;
7835 }
Don Skidmore0b077fe2010-12-03 03:32:13 +00007836 break;
Alexander Duyck50d6c682010-11-16 19:27:05 -08007837 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7838 /* All except this subdevice support WOL */
Don Skidmore0b077fe2010-12-03 03:32:13 +00007839 if (pdev->subsystem_device != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
Andy Gospodarek9417c462011-07-16 07:31:33 +00007840 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0b077fe2010-12-03 03:32:13 +00007841 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007842 case IXGBE_DEV_ID_82599_KX4:
Andy Gospodarek9417c462011-07-16 07:31:33 +00007843 adapter->wol = IXGBE_WUFC_MAG;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007844 break;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007845 case IXGBE_DEV_ID_X540T:
7846 /* Check eeprom to see if it is enabled */
7847 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
7848 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
7849
7850 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
7851 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7852 (hw->bus.func == 0)))
7853 adapter->wol = IXGBE_WUFC_MAG;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007854 break;
7855 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007856 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7857
Emil Tantilov15e52092011-09-29 05:01:29 +00007858 /* save off EEPROM version number */
7859 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
7860 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
7861
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007862 /* pick up the PCI bus settings for reporting later */
7863 hw->mac.ops.get_bus_info(hw);
7864
Auke Kok9a799d72007-09-15 14:07:45 -07007865 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007866 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007867 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7868 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007869 "Unknown"),
7870 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7871 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7872 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7873 "Unknown"),
7874 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007875
7876 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7877 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007878 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007879 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007880 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007881 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007882 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007883 else
Don Skidmore289700db2010-12-03 03:32:58 +00007884 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7885 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007886
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007887 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007888 e_dev_warn("PCI-Express bandwidth available for this card is "
7889 "not sufficient for optimal performance.\n");
7890 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7891 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007892 }
7893
Auke Kok9a799d72007-09-15 14:07:45 -07007894 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007895 err = hw->mac.ops.start_hw(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007896
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007897 if (err == IXGBE_ERR_EEPROM_VERSION) {
7898 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007899 e_dev_warn("This device is a pre-production adapter/LOM. "
7900 "Please be aware there may be issues associated "
7901 "with your hardware. If you are experiencing "
7902 "problems please contact your Intel or hardware "
7903 "representative who provided you with this "
7904 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007905 }
Auke Kok9a799d72007-09-15 14:07:45 -07007906 strcpy(netdev->name, "eth%d");
7907 err = register_netdev(netdev);
7908 if (err)
7909 goto err_register;
7910
Emil Tantilov93d3ce82011-10-19 07:59:55 +00007911 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7912 if (hw->mac.ops.disable_tx_laser &&
7913 ((hw->phy.multispeed_fiber) ||
7914 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
7915 (hw->mac.type == ixgbe_mac_82599EB))))
7916 hw->mac.ops.disable_tx_laser(hw);
7917
Jesse Brandeburg54386462009-04-17 20:44:27 +00007918 /* carrier off reporting is important to ethtool even BEFORE open */
7919 netif_carrier_off(netdev);
7920
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007921#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007922 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007923 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007924 ixgbe_setup_dca(adapter);
7925 }
7926#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007927 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007928 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007929 for (i = 0; i < adapter->num_vfs; i++)
7930 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7931 }
7932
Jacob Keller2466dd92011-09-08 03:50:54 +00007933 /* firmware requires driver version to be 0xFFFFFFFF
7934 * since os does not support feature
7935 */
Emil Tantilov9612de92011-05-07 07:40:20 +00007936 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00007937 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
7938 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00007939
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007940 /* add san mac addr to netdev */
7941 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007942
Neerav Parikhea818752012-01-04 20:23:40 +00007943 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07007944 cards_found++;
7945 return 0;
7946
7947err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007948 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007949 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007950err_sw_init:
7951err_eeprom:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007952 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7953 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007954 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007955 iounmap(hw->hw_addr);
7956err_ioremap:
7957 free_netdev(netdev);
7958err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007959 pci_release_selected_regions(pdev,
7960 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007961err_pci_reg:
7962err_dma:
7963 pci_disable_device(pdev);
7964 return err;
7965}
7966
7967/**
7968 * ixgbe_remove - Device Removal Routine
7969 * @pdev: PCI device information struct
7970 *
7971 * ixgbe_remove is called by the PCI subsystem to alert the driver
7972 * that it should release a PCI device. The could be caused by a
7973 * Hot-Plug event, or because the driver is going to be removed from
7974 * memory.
7975 **/
7976static void __devexit ixgbe_remove(struct pci_dev *pdev)
7977{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007978 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7979 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007980
7981 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007982 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007983
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007984#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007985 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7986 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7987 dca_remove_requester(&pdev->dev);
7988 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7989 }
7990
7991#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007992#ifdef IXGBE_FCOE
7993 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
7994 ixgbe_cleanup_fcoe(adapter);
7995
7996#endif /* IXGBE_FCOE */
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007997
7998 /* remove the added san mac */
7999 ixgbe_del_sanmac_netdev(netdev);
8000
Donald Skidmorec4900be2008-11-20 21:11:42 -08008001 if (netdev->reg_state == NETREG_REGISTERED)
8002 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008003
Greg Rosec6bda302011-08-24 02:37:55 +00008004 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
8005 if (!(ixgbe_check_vf_assignment(adapter)))
8006 ixgbe_disable_sriov(adapter);
8007 else
8008 e_dev_warn("Unloading driver while VFs are assigned "
8009 "- VFs will not be deallocated\n");
8010 }
Greg Rose1cdd1ec2010-01-09 02:26:46 +00008011
Alexander Duyck7a921c92009-05-06 10:43:28 +00008012 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08008013
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008014 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008015
8016 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00008017 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00008018 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07008019
Emil Tantilov849c4542010-06-03 16:53:41 +00008020 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008021
Auke Kok9a799d72007-09-15 14:07:45 -07008022 free_netdev(netdev);
8023
Frans Pop19d5afd2009-10-02 10:04:12 -07008024 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008025
Auke Kok9a799d72007-09-15 14:07:45 -07008026 pci_disable_device(pdev);
8027}
8028
8029/**
8030 * ixgbe_io_error_detected - called when PCI error is detected
8031 * @pdev: Pointer to PCI device
8032 * @state: The current pci connection state
8033 *
8034 * This function is called after a PCI bus error affecting
8035 * this device has been detected.
8036 */
8037static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00008038 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07008039{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008040 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8041 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008042
Greg Rose83c61fa2011-09-07 05:59:35 +00008043#ifdef CONFIG_PCI_IOV
8044 struct pci_dev *bdev, *vfdev;
8045 u32 dw0, dw1, dw2, dw3;
8046 int vf, pos;
8047 u16 req_id, pf_func;
8048
8049 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
8050 adapter->num_vfs == 0)
8051 goto skip_bad_vf_detection;
8052
8053 bdev = pdev->bus->self;
8054 while (bdev && (bdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT))
8055 bdev = bdev->bus->self;
8056
8057 if (!bdev)
8058 goto skip_bad_vf_detection;
8059
8060 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
8061 if (!pos)
8062 goto skip_bad_vf_detection;
8063
8064 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
8065 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
8066 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
8067 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
8068
8069 req_id = dw1 >> 16;
8070 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
8071 if (!(req_id & 0x0080))
8072 goto skip_bad_vf_detection;
8073
8074 pf_func = req_id & 0x01;
8075 if ((pf_func & 1) == (pdev->devfn & 1)) {
8076 unsigned int device_id;
8077
8078 vf = (req_id & 0x7F) >> 1;
8079 e_dev_err("VF %d has caused a PCIe error\n", vf);
8080 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
8081 "%8.8x\tdw3: %8.8x\n",
8082 dw0, dw1, dw2, dw3);
8083 switch (adapter->hw.mac.type) {
8084 case ixgbe_mac_82599EB:
8085 device_id = IXGBE_82599_VF_DEVICE_ID;
8086 break;
8087 case ixgbe_mac_X540:
8088 device_id = IXGBE_X540_VF_DEVICE_ID;
8089 break;
8090 default:
8091 device_id = 0;
8092 break;
8093 }
8094
8095 /* Find the pci device of the offending VF */
8096 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID, device_id, NULL);
8097 while (vfdev) {
8098 if (vfdev->devfn == (req_id & 0xFF))
8099 break;
8100 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID,
8101 device_id, vfdev);
8102 }
8103 /*
8104 * There's a slim chance the VF could have been hot plugged,
8105 * so if it is no longer present we don't need to issue the
8106 * VFLR. Just clean up the AER in that case.
8107 */
8108 if (vfdev) {
8109 e_dev_err("Issuing VFLR to VF %d\n", vf);
8110 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
8111 }
8112
8113 pci_cleanup_aer_uncorrect_error_status(pdev);
8114 }
8115
8116 /*
8117 * Even though the error may have occurred on the other port
8118 * we still need to increment the vf error reference count for
8119 * both ports because the I/O resume function will be called
8120 * for both of them.
8121 */
8122 adapter->vferr_refcount++;
8123
8124 return PCI_ERS_RESULT_RECOVERED;
8125
8126skip_bad_vf_detection:
8127#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07008128 netif_device_detach(netdev);
8129
Breno Leitao3044b8d2009-05-06 10:44:26 +00008130 if (state == pci_channel_io_perm_failure)
8131 return PCI_ERS_RESULT_DISCONNECT;
8132
Auke Kok9a799d72007-09-15 14:07:45 -07008133 if (netif_running(netdev))
8134 ixgbe_down(adapter);
8135 pci_disable_device(pdev);
8136
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07008137 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07008138 return PCI_ERS_RESULT_NEED_RESET;
8139}
8140
8141/**
8142 * ixgbe_io_slot_reset - called after the pci bus has been reset.
8143 * @pdev: Pointer to PCI device
8144 *
8145 * Restart the card from scratch, as if from a cold-boot.
8146 */
8147static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
8148{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008149 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008150 pci_ers_result_t result;
8151 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07008152
gouji-new9ce77662009-05-06 10:44:45 +00008153 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00008154 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008155 result = PCI_ERS_RESULT_DISCONNECT;
8156 } else {
8157 pci_set_master(pdev);
8158 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00008159 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008160
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07008161 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008162
8163 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00008164 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008165 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07008166 }
Auke Kok9a799d72007-09-15 14:07:45 -07008167
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008168 err = pci_cleanup_aer_uncorrect_error_status(pdev);
8169 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00008170 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
8171 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008172 /* non-fatal, continue */
8173 }
Auke Kok9a799d72007-09-15 14:07:45 -07008174
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008175 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07008176}
8177
8178/**
8179 * ixgbe_io_resume - called when traffic can start flowing again.
8180 * @pdev: Pointer to PCI device
8181 *
8182 * This callback is called when the error recovery driver tells us that
8183 * its OK to resume normal operation.
8184 */
8185static void ixgbe_io_resume(struct pci_dev *pdev)
8186{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008187 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8188 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008189
Greg Rose83c61fa2011-09-07 05:59:35 +00008190#ifdef CONFIG_PCI_IOV
8191 if (adapter->vferr_refcount) {
8192 e_info(drv, "Resuming after VF err\n");
8193 adapter->vferr_refcount--;
8194 return;
8195 }
8196
8197#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00008198 if (netif_running(netdev))
8199 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008200
8201 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008202}
8203
8204static struct pci_error_handlers ixgbe_err_handler = {
8205 .error_detected = ixgbe_io_error_detected,
8206 .slot_reset = ixgbe_io_slot_reset,
8207 .resume = ixgbe_io_resume,
8208};
8209
8210static struct pci_driver ixgbe_driver = {
8211 .name = ixgbe_driver_name,
8212 .id_table = ixgbe_pci_tbl,
8213 .probe = ixgbe_probe,
8214 .remove = __devexit_p(ixgbe_remove),
8215#ifdef CONFIG_PM
8216 .suspend = ixgbe_suspend,
8217 .resume = ixgbe_resume,
8218#endif
8219 .shutdown = ixgbe_shutdown,
8220 .err_handler = &ixgbe_err_handler
8221};
8222
8223/**
8224 * ixgbe_init_module - Driver Registration Routine
8225 *
8226 * ixgbe_init_module is the first routine called when the driver is
8227 * loaded. All it does is register with the PCI subsystem.
8228 **/
8229static int __init ixgbe_init_module(void)
8230{
8231 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00008232 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00008233 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07008234
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008235#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008236 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008237#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008238
Auke Kok9a799d72007-09-15 14:07:45 -07008239 ret = pci_register_driver(&ixgbe_driver);
8240 return ret;
8241}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07008242
Auke Kok9a799d72007-09-15 14:07:45 -07008243module_init(ixgbe_init_module);
8244
8245/**
8246 * ixgbe_exit_module - Driver Exit Cleanup Routine
8247 *
8248 * ixgbe_exit_module is called just before the driver is removed
8249 * from memory.
8250 **/
8251static void __exit ixgbe_exit_module(void)
8252{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008253#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008254 dca_unregister_notify(&dca_notifier);
8255#endif
Auke Kok9a799d72007-09-15 14:07:45 -07008256 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08008257 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07008258}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008259
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008260#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008261static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008262 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008263{
8264 int ret_val;
8265
8266 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008267 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008268
8269 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
8270}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008271
Alexander Duyckb4533682009-03-31 21:32:42 +00008272#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00008273
Auke Kok9a799d72007-09-15 14:07:45 -07008274module_exit(ixgbe_exit_module);
8275
8276/* ixgbe_main.c */