blob: 538577b08e25d4a758530bae63f143a2d3649bfd [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 Skidmorefe15e8e2010-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 Duyck31f05a22010-08-19 13:40:31 +0000369 tx_desc = IXGBE_TX_DESC_ADV(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 Duyck31f05a22010-08-19 13:40:31 +0000450 rx_desc = IXGBE_RX_DESC_ADV(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];
757 tx_desc = IXGBE_TX_DESC_ADV(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
766 /* if DD is not set pending work has not been completed */
767 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
768 break;
769
770 /* count the packet as being completed */
771 tx_ring->tx_stats.completed++;
772
773 /* clear next_to_watch to prevent false hangs */
774 tx_buffer->next_to_watch = NULL;
775
776 /* prevent any other reads prior to eop_desc being verified */
777 rmb();
778
779 do {
780 ixgbe_unmap_tx_resource(tx_ring, tx_buffer);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800781 tx_desc->wb.status = 0;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000782 if (likely(tx_desc == eop_desc)) {
783 eop_desc = NULL;
784 dev_kfree_skb_any(tx_buffer->skb);
785 tx_buffer->skb = NULL;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800786
Alexander Duyckd3d00232011-07-15 02:31:25 +0000787 total_bytes += tx_buffer->bytecount;
788 total_packets += tx_buffer->gso_segs;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800789 }
790
Alexander Duyckd3d00232011-07-15 02:31:25 +0000791 tx_buffer++;
792 tx_desc++;
793 i++;
794 if (unlikely(i == tx_ring->count)) {
795 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700796
Alexander Duyckd3d00232011-07-15 02:31:25 +0000797 tx_buffer = tx_ring->tx_buffer_info;
798 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, 0);
799 }
800
801 } while (eop_desc);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800802 }
803
Auke Kok9a799d72007-09-15 14:07:45 -0700804 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000805 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -0800806 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +0000807 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000808 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +0000809 q_vector->tx.total_bytes += total_bytes;
810 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -0800811
John Fastabendc84d3242010-11-16 19:27:12 -0800812 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -0800813 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -0800814 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000815 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
John Fastabendc84d3242010-11-16 19:27:12 -0800816 e_err(drv, "Detected Tx Unit Hang\n"
817 " Tx Queue <%d>\n"
818 " TDH, TDT <%x>, <%x>\n"
819 " next_to_use <%x>\n"
820 " next_to_clean <%x>\n"
821 "tx_buffer_info[next_to_clean]\n"
822 " time_stamp <%lx>\n"
823 " jiffies <%lx>\n",
824 tx_ring->queue_index,
825 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
826 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +0000827 tx_ring->next_to_use, i,
828 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -0800829
830 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
831
832 e_info(probe,
833 "tx hang %d detected on queue %d, resetting adapter\n",
834 adapter->tx_timeout_count + 1, tx_ring->queue_index);
835
836 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000837 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -0800838
839 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +0000840 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -0800841 }
Auke Kok9a799d72007-09-15 14:07:45 -0700842
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800843#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +0000844 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +0000845 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800846 /* Make sure that anybody stopping the queue after this
847 * sees the new next_to_clean.
848 */
849 smp_mb();
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800850 if (__netif_subqueue_stopped(tx_ring->netdev, tx_ring->queue_index) &&
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800851 !test_bit(__IXGBE_DOWN, &adapter->state)) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800852 netif_wake_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800853 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800854 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800855 }
Auke Kok9a799d72007-09-15 14:07:45 -0700856
Alexander Duyck59224552011-08-31 00:01:06 +0000857 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -0700858}
859
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400860#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800861static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800862 struct ixgbe_ring *rx_ring,
863 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800864{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800865 struct ixgbe_hw *hw = &adapter->hw;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800866 u32 rxctrl;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800867 u8 reg_idx = rx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800868
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800869 rxctrl = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(reg_idx));
870 switch (hw->mac.type) {
871 case ixgbe_mac_82598EB:
872 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000873 rxctrl |= dca3_get_tag(rx_ring->dev, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800874 break;
875 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800876 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800877 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK_82599;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000878 rxctrl |= (dca3_get_tag(rx_ring->dev, cpu) <<
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800879 IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599);
880 break;
881 default:
882 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800883 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800884 rxctrl |= IXGBE_DCA_RXCTRL_DESC_DCA_EN;
885 rxctrl |= IXGBE_DCA_RXCTRL_HEAD_DCA_EN;
886 rxctrl &= ~(IXGBE_DCA_RXCTRL_DESC_RRO_EN);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800887 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800888}
889
890static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800891 struct ixgbe_ring *tx_ring,
892 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800893{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000894 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800895 u32 txctrl;
896 u8 reg_idx = tx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800897
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800898 switch (hw->mac.type) {
899 case ixgbe_mac_82598EB:
900 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(reg_idx));
901 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000902 txctrl |= dca3_get_tag(tx_ring->dev, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800903 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800904 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(reg_idx), txctrl);
905 break;
906 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800907 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800908 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx));
909 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK_82599;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000910 txctrl |= (dca3_get_tag(tx_ring->dev, cpu) <<
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800911 IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599);
912 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800913 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx), txctrl);
914 break;
915 default:
916 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800917 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800918}
919
920static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
921{
922 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000923 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800924 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800925
926 if (q_vector->cpu == cpu)
927 goto out_no_update;
928
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000929 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
930 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800931
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000932 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
933 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800934
935 q_vector->cpu = cpu;
936out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800937 put_cpu();
938}
939
940static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
941{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800942 int num_q_vectors;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800943 int i;
944
945 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
946 return;
947
Alexander Duycke35ec122009-05-21 13:07:12 +0000948 /* always use CB2 mode, difference is masked in the CB driver */
949 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
950
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800951 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
952 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
953 else
954 num_q_vectors = 1;
955
956 for (i = 0; i < num_q_vectors; i++) {
957 adapter->q_vector[i]->cpu = -1;
958 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800959 }
960}
961
962static int __ixgbe_notify_dca(struct device *dev, void *data)
963{
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800964 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800965 unsigned long event = *(unsigned long *)data;
966
Don Skidmore2a72c312011-07-20 02:27:05 +0000967 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800968 return 0;
969
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800970 switch (event) {
971 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -0700972 /* if we're already enabled, don't do it again */
973 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
974 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +0300975 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -0700976 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800977 ixgbe_setup_dca(adapter);
978 break;
979 }
980 /* Fall Through since DCA is disabled. */
981 case DCA_PROVIDER_REMOVE:
982 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
983 dca_remove_requester(dev);
984 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
985 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
986 }
987 break;
988 }
989
Denis V. Lunev652f0932008-03-27 14:39:17 +0300990 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800991}
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400992#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov67a74ee2011-04-23 04:50:40 +0000993
994static inline void ixgbe_rx_hash(union ixgbe_adv_rx_desc *rx_desc,
995 struct sk_buff *skb)
996{
997 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
998}
999
Auke Kok9a799d72007-09-15 14:07:45 -07001000/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001001 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
1002 * @adapter: address of board private structure
1003 * @rx_desc: advanced rx descriptor
1004 *
1005 * Returns : true if it is FCoE pkt
1006 */
1007static inline bool ixgbe_rx_is_fcoe(struct ixgbe_adapter *adapter,
1008 union ixgbe_adv_rx_desc *rx_desc)
1009{
1010 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1011
1012 return (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
1013 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1014 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1015 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1016}
1017
1018/**
Auke Kok9a799d72007-09-15 14:07:45 -07001019 * ixgbe_receive_skb - Send a completed packet up the stack
1020 * @adapter: board private structure
1021 * @skb: packet to send up
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001022 * @status: hardware indication of status of receive
1023 * @rx_ring: rx descriptor ring (for a specific queue) to setup
1024 * @rx_desc: rx descriptor
Auke Kok9a799d72007-09-15 14:07:45 -07001025 **/
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001026static void ixgbe_receive_skb(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001027 struct sk_buff *skb, u8 status,
1028 struct ixgbe_ring *ring,
1029 union ixgbe_adv_rx_desc *rx_desc)
Auke Kok9a799d72007-09-15 14:07:45 -07001030{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001031 struct ixgbe_adapter *adapter = q_vector->adapter;
1032 struct napi_struct *napi = &q_vector->napi;
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001033 bool is_vlan = (status & IXGBE_RXD_STAT_VP);
1034 u16 tag = le16_to_cpu(rx_desc->wb.upper.vlan);
Auke Kok9a799d72007-09-15 14:07:45 -07001035
Jesse Grossf62bbb52010-10-20 13:56:10 +00001036 if (is_vlan && (tag & VLAN_VID_MASK))
1037 __vlan_hwaccel_put_tag(skb, tag);
1038
1039 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1040 napi_gro_receive(napi, skb);
1041 else
1042 netif_rx(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001043}
1044
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001045/**
1046 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
1047 * @adapter: address of board private structure
1048 * @status_err: hardware indication of status of receive
1049 * @skb: skb currently being received and modified
Alexander Duyckff886df2011-06-11 01:45:13 +00001050 * @status_err: status error value of last descriptor in packet
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001051 **/
Auke Kok9a799d72007-09-15 14:07:45 -07001052static inline void ixgbe_rx_checksum(struct ixgbe_adapter *adapter,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001053 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckff886df2011-06-11 01:45:13 +00001054 struct sk_buff *skb,
1055 u32 status_err)
Auke Kok9a799d72007-09-15 14:07:45 -07001056{
Alexander Duyckff886df2011-06-11 01:45:13 +00001057 skb->ip_summed = CHECKSUM_NONE;
Auke Kok9a799d72007-09-15 14:07:45 -07001058
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001059 /* Rx csum disabled */
1060 if (!(adapter->flags & IXGBE_FLAG_RX_CSUM_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07001061 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001062
1063 /* if IP and error */
1064 if ((status_err & IXGBE_RXD_STAT_IPCS) &&
1065 (status_err & IXGBE_RXDADV_ERR_IPE)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001066 adapter->hw_csum_rx_error++;
1067 return;
1068 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001069
1070 if (!(status_err & IXGBE_RXD_STAT_L4CS))
1071 return;
1072
1073 if (status_err & IXGBE_RXDADV_ERR_TCPE) {
Don Skidmore8bae1b22009-07-23 18:00:39 +00001074 u16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1075
1076 /*
1077 * 82599 errata, UDP frames with a 0 checksum can be marked as
1078 * checksum errors.
1079 */
1080 if ((pkt_info & IXGBE_RXDADV_PKTTYPE_UDP) &&
1081 (adapter->hw.mac.type == ixgbe_mac_82599EB))
1082 return;
1083
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001084 adapter->hw_csum_rx_error++;
1085 return;
1086 }
1087
Auke Kok9a799d72007-09-15 14:07:45 -07001088 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001089 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001090}
1091
Alexander Duyck84ea2592010-11-16 19:26:49 -08001092static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001093{
1094 /*
1095 * Force memory writes to complete before letting h/w
1096 * know there are new descriptors to fetch. (Only
1097 * applicable for weak-ordered memory model archs,
1098 * such as IA-64).
1099 */
1100 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001101 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001102}
1103
Alexander Duyckf990b792012-01-31 02:59:34 +00001104static bool ixgbe_alloc_mapped_skb(struct ixgbe_ring *rx_ring,
1105 struct ixgbe_rx_buffer *bi)
1106{
1107 struct sk_buff *skb = bi->skb;
1108 dma_addr_t dma = bi->dma;
1109
1110 if (dma)
1111 return true;
1112
1113 if (likely(!skb)) {
1114 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1115 rx_ring->rx_buf_len);
1116 bi->skb = skb;
1117 if (!skb) {
1118 rx_ring->rx_stats.alloc_rx_buff_failed++;
1119 return false;
1120 }
1121
1122 /* initialize skb for ring */
1123 skb_record_rx_queue(skb, rx_ring->queue_index);
1124 }
1125
1126 dma = dma_map_single(rx_ring->dev, skb->data,
1127 rx_ring->rx_buf_len, DMA_FROM_DEVICE);
1128
1129 if (dma_mapping_error(rx_ring->dev, dma)) {
1130 rx_ring->rx_stats.alloc_rx_buff_failed++;
1131 return false;
1132 }
1133
1134 bi->dma = dma;
1135 return true;
1136}
1137
1138static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1139 struct ixgbe_rx_buffer *bi)
1140{
1141 struct page *page = bi->page;
1142 dma_addr_t page_dma = bi->page_dma;
1143 unsigned int page_offset = bi->page_offset ^ (PAGE_SIZE / 2);
1144
1145 if (page_dma)
1146 return true;
1147
1148 if (!page) {
1149 page = alloc_page(GFP_ATOMIC | __GFP_COLD);
1150 bi->page = page;
1151 if (unlikely(!page)) {
1152 rx_ring->rx_stats.alloc_rx_page_failed++;
1153 return false;
1154 }
1155 }
1156
1157 page_dma = dma_map_page(rx_ring->dev, page,
1158 page_offset, PAGE_SIZE / 2,
1159 DMA_FROM_DEVICE);
1160
1161 if (dma_mapping_error(rx_ring->dev, page_dma)) {
1162 rx_ring->rx_stats.alloc_rx_page_failed++;
1163 return false;
1164 }
1165
1166 bi->page_dma = page_dma;
1167 bi->page_offset = page_offset;
1168 return true;
1169}
1170
Auke Kok9a799d72007-09-15 14:07:45 -07001171/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001172 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001173 * @rx_ring: ring to place buffers on
1174 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001175 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001176void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001177{
Auke Kok9a799d72007-09-15 14:07:45 -07001178 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001179 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001180 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001181
Alexander Duyckf990b792012-01-31 02:59:34 +00001182 /* nothing to do or no valid netdev defined */
1183 if (!cleaned_count || !rx_ring->netdev)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001184 return;
1185
Alexander Duyckf990b792012-01-31 02:59:34 +00001186 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
1187 bi = &rx_ring->rx_buffer_info[i];
1188 i -= rx_ring->count;
1189
Auke Kok9a799d72007-09-15 14:07:45 -07001190 while (cleaned_count--) {
Alexander Duyckf990b792012-01-31 02:59:34 +00001191 if (!ixgbe_alloc_mapped_skb(rx_ring, bi))
1192 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001193
Alexander Duyckf990b792012-01-31 02:59:34 +00001194 /* Refresh the desc even if buffer_addrs didn't change
1195 * because each write-back erases this info. */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001196 if (ring_is_ps_enabled(rx_ring)) {
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001197 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
Alexander Duyckf990b792012-01-31 02:59:34 +00001198
1199 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
1200 break;
1201
1202 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001203 } else {
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001204 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001205 }
1206
Alexander Duyckf990b792012-01-31 02:59:34 +00001207 rx_desc++;
1208 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001209 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001210 if (unlikely(!i)) {
1211 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, 0);
1212 bi = rx_ring->rx_buffer_info;
1213 i -= rx_ring->count;
1214 }
1215
1216 /* clear the hdr_addr for the next_to_use descriptor */
1217 rx_desc->read.hdr_addr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001218 }
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001219
Alexander Duyckf990b792012-01-31 02:59:34 +00001220 i += rx_ring->count;
1221
Auke Kok9a799d72007-09-15 14:07:45 -07001222 if (rx_ring->next_to_use != i) {
1223 rx_ring->next_to_use = i;
Alexander Duyck84ea2592010-11-16 19:26:49 -08001224 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001225 }
1226}
1227
Alexander Duyckc267fc12010-11-16 19:27:00 -08001228static inline u16 ixgbe_get_hlen(union ixgbe_adv_rx_desc *rx_desc)
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001229{
Alexander Duyckc267fc12010-11-16 19:27:00 -08001230 /* HW will not DMA in data larger than the given buffer, even if it
1231 * parses the (NFS, of course) header to be larger. In that case, it
1232 * fills the header buffer and spills the rest into the page.
1233 */
1234 u16 hdr_info = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.hdr_info);
1235 u16 hlen = (hdr_info & IXGBE_RXDADV_HDRBUFLEN_MASK) >>
1236 IXGBE_RXDADV_HDRBUFLEN_SHIFT;
1237 if (hlen > IXGBE_RX_HDR_SIZE)
1238 hlen = IXGBE_RX_HDR_SIZE;
1239 return hlen;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001240}
1241
Alexander Duyckf8212f92009-04-27 22:42:37 +00001242/**
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001243 * ixgbe_merge_active_tail - merge active tail into lro skb
1244 * @tail: pointer to active tail in frag_list
Alexander Duyckf8212f92009-04-27 22:42:37 +00001245 *
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001246 * This function merges the length and data of an active tail into the
1247 * skb containing the frag_list. It resets the tail's pointer to the head,
1248 * but it leaves the heads pointer to tail intact.
Alexander Duyckf8212f92009-04-27 22:42:37 +00001249 **/
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001250static inline struct sk_buff *ixgbe_merge_active_tail(struct sk_buff *tail)
Alexander Duyckf8212f92009-04-27 22:42:37 +00001251{
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001252 struct sk_buff *head = IXGBE_CB(tail)->head;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001253
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001254 if (!head)
1255 return tail;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001256
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001257 head->len += tail->len;
1258 head->data_len += tail->len;
1259 head->truesize += tail->len;
Alexander Duyckaa801752010-11-16 19:27:02 -08001260
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001261 IXGBE_CB(tail)->head = NULL;
1262
1263 return head;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001264}
1265
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001266/**
1267 * ixgbe_add_active_tail - adds an active tail into the skb frag_list
1268 * @head: pointer to the start of the skb
1269 * @tail: pointer to active tail to add to frag_list
1270 *
1271 * This function adds an active tail to the end of the frag list. This tail
1272 * will still be receiving data so we cannot yet ad it's stats to the main
1273 * skb. That is done via ixgbe_merge_active_tail.
1274 **/
1275static inline void ixgbe_add_active_tail(struct sk_buff *head,
1276 struct sk_buff *tail)
Alexander Duyckaa801752010-11-16 19:27:02 -08001277{
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001278 struct sk_buff *old_tail = IXGBE_CB(head)->tail;
1279
1280 if (old_tail) {
1281 ixgbe_merge_active_tail(old_tail);
1282 old_tail->next = tail;
1283 } else {
1284 skb_shinfo(head)->frag_list = tail;
1285 }
1286
1287 IXGBE_CB(tail)->head = head;
1288 IXGBE_CB(head)->tail = tail;
1289}
1290
1291/**
1292 * ixgbe_close_active_frag_list - cleanup pointers on a frag_list skb
1293 * @head: pointer to head of an active frag list
1294 *
1295 * This function will clear the frag_tail_tracker pointer on an active
1296 * frag_list and returns true if the pointer was actually set
1297 **/
1298static inline bool ixgbe_close_active_frag_list(struct sk_buff *head)
1299{
1300 struct sk_buff *tail = IXGBE_CB(head)->tail;
1301
1302 if (!tail)
1303 return false;
1304
1305 ixgbe_merge_active_tail(tail);
1306
1307 IXGBE_CB(head)->tail = NULL;
1308
1309 return true;
1310}
1311
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001312/**
1313 * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE
1314 * @data: pointer to the start of the headers
1315 * @max_len: total length of section to find headers in
1316 *
1317 * This function is meant to determine the length of headers that will
1318 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1319 * motivation of doing this is to only perform one pull for IPv4 TCP
1320 * packets so that we can do basic things like calculating the gso_size
1321 * based on the average data per packet.
1322 **/
1323static unsigned int ixgbe_get_headlen(unsigned char *data,
1324 unsigned int max_len)
1325{
1326 union {
1327 unsigned char *network;
1328 /* l2 headers */
1329 struct ethhdr *eth;
1330 struct vlan_hdr *vlan;
1331 /* l3 headers */
1332 struct iphdr *ipv4;
1333 } hdr;
1334 __be16 protocol;
1335 u8 nexthdr = 0; /* default to not TCP */
1336 u8 hlen;
1337
1338 /* this should never happen, but better safe than sorry */
1339 if (max_len < ETH_HLEN)
1340 return max_len;
1341
1342 /* initialize network frame pointer */
1343 hdr.network = data;
1344
1345 /* set first protocol and move network header forward */
1346 protocol = hdr.eth->h_proto;
1347 hdr.network += ETH_HLEN;
1348
1349 /* handle any vlan tag if present */
1350 if (protocol == __constant_htons(ETH_P_8021Q)) {
1351 if ((hdr.network - data) > (max_len - VLAN_HLEN))
1352 return max_len;
1353
1354 protocol = hdr.vlan->h_vlan_encapsulated_proto;
1355 hdr.network += VLAN_HLEN;
1356 }
1357
1358 /* handle L3 protocols */
1359 if (protocol == __constant_htons(ETH_P_IP)) {
1360 if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
1361 return max_len;
1362
1363 /* access ihl as a u8 to avoid unaligned access on ia64 */
1364 hlen = (hdr.network[0] & 0x0F) << 2;
1365
1366 /* verify hlen meets minimum size requirements */
1367 if (hlen < sizeof(struct iphdr))
1368 return hdr.network - data;
1369
1370 /* record next protocol */
1371 nexthdr = hdr.ipv4->protocol;
1372 hdr.network += hlen;
1373#ifdef CONFIG_FCOE
1374 } else if (protocol == __constant_htons(ETH_P_FCOE)) {
1375 if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN))
1376 return max_len;
1377 hdr.network += FCOE_HEADER_LEN;
1378#endif
1379 } else {
1380 return hdr.network - data;
1381 }
1382
1383 /* finally sort out TCP */
1384 if (nexthdr == IPPROTO_TCP) {
1385 if ((hdr.network - data) > (max_len - sizeof(struct tcphdr)))
1386 return max_len;
1387
1388 /* access doff as a u8 to avoid unaligned access on ia64 */
1389 hlen = (hdr.network[12] & 0xF0) >> 2;
1390
1391 /* verify hlen meets minimum size requirements */
1392 if (hlen < sizeof(struct tcphdr))
1393 return hdr.network - data;
1394
1395 hdr.network += hlen;
1396 }
1397
1398 /*
1399 * If everything has gone correctly hdr.network should be the
1400 * data section of the packet and will be the end of the header.
1401 * If not then it probably represents the end of the last recognized
1402 * header.
1403 */
1404 if ((hdr.network - data) < max_len)
1405 return hdr.network - data;
1406 else
1407 return max_len;
1408}
1409
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001410static void ixgbe_get_rsc_cnt(struct ixgbe_ring *rx_ring,
1411 union ixgbe_adv_rx_desc *rx_desc,
1412 struct sk_buff *skb)
1413{
1414 __le32 rsc_enabled;
1415 u32 rsc_cnt;
1416
1417 if (!ring_is_rsc_enabled(rx_ring))
1418 return;
1419
1420 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1421 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1422
1423 /* If this is an RSC frame rsc_cnt should be non-zero */
1424 if (!rsc_enabled)
1425 return;
1426
1427 rsc_cnt = le32_to_cpu(rsc_enabled);
1428 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1429
1430 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
Alexander Duyckaa801752010-11-16 19:27:02 -08001431}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001432
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001433static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1434 struct sk_buff *skb)
1435{
1436 u16 hdr_len = ixgbe_get_headlen(skb->data, skb_headlen(skb));
1437
1438 /* set gso_size to avoid messing up TCP MSS */
1439 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1440 IXGBE_CB(skb)->append_cnt);
1441}
1442
1443static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1444 struct sk_buff *skb)
1445{
1446 /* if append_cnt is 0 then frame is not RSC */
1447 if (!IXGBE_CB(skb)->append_cnt)
1448 return;
1449
1450 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1451 rx_ring->rx_stats.rsc_flush++;
1452
1453 ixgbe_set_rsc_gso_size(rx_ring, skb);
1454
1455 /* gso_size is computed using append_cnt so always clear it last */
1456 IXGBE_CB(skb)->append_cnt = 0;
1457}
1458
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001459static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001460 struct ixgbe_ring *rx_ring,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001461 int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001462{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001463 struct ixgbe_adapter *adapter = q_vector->adapter;
Auke Kok9a799d72007-09-15 14:07:45 -07001464 union ixgbe_adv_rx_desc *rx_desc, *next_rxd;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001465 struct ixgbe_rx_buffer *rx_buffer_info;
Auke Kok9a799d72007-09-15 14:07:45 -07001466 struct sk_buff *skb;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001467 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001468 const int current_node = numa_node_id();
Yi Zou3d8fd382009-06-08 14:38:44 +00001469#ifdef IXGBE_FCOE
1470 int ddp_bytes = 0;
1471#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001472 u32 staterr;
1473 u16 i;
1474 u16 cleaned_count = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001475
1476 i = rx_ring->next_to_clean;
Alexander Duyck31f05a22010-08-19 13:40:31 +00001477 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001478 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kok9a799d72007-09-15 14:07:45 -07001479
1480 while (staterr & IXGBE_RXD_STAT_DD) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001481 u32 upper_len = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001482
Milton Miller3c945e52010-02-19 17:44:42 +00001483 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kok9a799d72007-09-15 14:07:45 -07001484
Alexander Duyckc267fc12010-11-16 19:27:00 -08001485 rx_buffer_info = &rx_ring->rx_buffer_info[i];
1486
Auke Kok9a799d72007-09-15 14:07:45 -07001487 skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001488 rx_buffer_info->skb = NULL;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001489 prefetch(skb->data);
Auke Kok9a799d72007-09-15 14:07:45 -07001490
David S. Miller8decf862011-09-22 03:23:13 -04001491 /* linear means we are building an skb from multiple pages */
1492 if (!skb_is_nonlinear(skb)) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001493 u16 hlen;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001494 if (ring_is_ps_enabled(rx_ring)) {
1495 hlen = ixgbe_get_hlen(rx_desc);
1496 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
1497 } else {
1498 hlen = le16_to_cpu(rx_desc->wb.upper.length);
1499 }
1500
1501 skb_put(skb, hlen);
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001502
1503 /*
1504 * Delay unmapping of the first packet. It carries the
1505 * header information, HW may still access the header
1506 * after writeback. Only unmap it when EOP is reached
1507 */
1508 if (!IXGBE_CB(skb)->head) {
1509 IXGBE_CB(skb)->delay_unmap = true;
1510 IXGBE_CB(skb)->dma = rx_buffer_info->dma;
1511 } else {
1512 skb = ixgbe_merge_active_tail(skb);
1513 dma_unmap_single(rx_ring->dev,
1514 rx_buffer_info->dma,
1515 rx_ring->rx_buf_len,
1516 DMA_FROM_DEVICE);
1517 }
1518 rx_buffer_info->dma = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001519 } else {
1520 /* assume packet split since header is unmapped */
1521 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kok9a799d72007-09-15 14:07:45 -07001522 }
1523
1524 if (upper_len) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001525 dma_unmap_page(rx_ring->dev,
1526 rx_buffer_info->page_dma,
1527 PAGE_SIZE / 2,
1528 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001529 rx_buffer_info->page_dma = 0;
1530 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
Joe Perchese8e9f692010-09-07 21:34:53 +00001531 rx_buffer_info->page,
1532 rx_buffer_info->page_offset,
1533 upper_len);
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001534
Alexander Duyckc267fc12010-11-16 19:27:00 -08001535 if ((page_count(rx_buffer_info->page) == 1) &&
1536 (page_to_nid(rx_buffer_info->page) == current_node))
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001537 get_page(rx_buffer_info->page);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001538 else
1539 rx_buffer_info->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001540
1541 skb->len += upper_len;
1542 skb->data_len += upper_len;
Eric Dumazet98130642011-10-13 07:59:41 +00001543 skb->truesize += PAGE_SIZE / 2;
Auke Kok9a799d72007-09-15 14:07:45 -07001544 }
1545
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001546 ixgbe_get_rsc_cnt(rx_ring, rx_desc, skb);
1547
Auke Kok9a799d72007-09-15 14:07:45 -07001548 i++;
1549 if (i == rx_ring->count)
1550 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001551
Alexander Duyck31f05a22010-08-19 13:40:31 +00001552 next_rxd = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001553 prefetch(next_rxd);
Auke Kok9a799d72007-09-15 14:07:45 -07001554 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001555
Alexander Duyckc267fc12010-11-16 19:27:00 -08001556 if (!(staterr & IXGBE_RXD_STAT_EOP)) {
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001557 struct ixgbe_rx_buffer *next_buffer;
1558 u32 nextp;
1559
1560 if (IXGBE_CB(skb)->append_cnt) {
1561 nextp = staterr & IXGBE_RXDADV_NEXTP_MASK;
1562 nextp >>= IXGBE_RXDADV_NEXTP_SHIFT;
1563 } else {
1564 nextp = i;
1565 }
1566
1567 next_buffer = &rx_ring->rx_buffer_info[nextp];
1568
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001569 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001570 rx_buffer_info->skb = next_buffer->skb;
1571 rx_buffer_info->dma = next_buffer->dma;
1572 next_buffer->skb = skb;
1573 next_buffer->dma = 0;
1574 } else {
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001575 struct sk_buff *next_skb = next_buffer->skb;
1576 ixgbe_add_active_tail(skb, next_skb);
1577 IXGBE_CB(next_skb)->head = skb;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001578 }
Alexander Duyck5b7da512010-11-16 19:26:50 -08001579 rx_ring->rx_stats.non_eop_descs++;
Auke Kok9a799d72007-09-15 14:07:45 -07001580 goto next_desc;
1581 }
1582
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001583 dma_unmap_single(rx_ring->dev,
1584 IXGBE_CB(skb)->dma,
1585 rx_ring->rx_buf_len,
1586 DMA_FROM_DEVICE);
1587 IXGBE_CB(skb)->dma = 0;
1588 IXGBE_CB(skb)->delay_unmap = false;
1589
1590 if (ixgbe_close_active_frag_list(skb) &&
1591 !IXGBE_CB(skb)->append_cnt) {
Alexander Duyckaa801752010-11-16 19:27:02 -08001592 /* if we got here without RSC the packet is invalid */
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001593 dev_kfree_skb_any(skb);
1594 goto next_desc;
Alexander Duyckaa801752010-11-16 19:27:02 -08001595 }
Alexander Duyckc267fc12010-11-16 19:27:00 -08001596
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001597 ixgbe_update_rsc_stats(rx_ring, skb);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001598
1599 /* ERR_MASK will only have valid bits if EOP set */
Alexander Duyckff886df2011-06-11 01:45:13 +00001600 if (unlikely(staterr & IXGBE_RXDADV_ERR_FRAME_ERR_MASK)) {
1601 dev_kfree_skb_any(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001602 goto next_desc;
1603 }
1604
Alexander Duyckff886df2011-06-11 01:45:13 +00001605 ixgbe_rx_checksum(adapter, rx_desc, skb, staterr);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001606 if (adapter->netdev->features & NETIF_F_RXHASH)
1607 ixgbe_rx_hash(rx_desc, skb);
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001608
1609 /* probably a little skewed due to removing CRC */
1610 total_rx_bytes += skb->len;
1611 total_rx_packets++;
1612
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001613 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Yi Zou332d4a72009-05-13 13:11:53 +00001614#ifdef IXGBE_FCOE
1615 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyckff886df2011-06-11 01:45:13 +00001616 if (ixgbe_rx_is_fcoe(adapter, rx_desc)) {
1617 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb,
1618 staterr);
David S. Miller823dcd22011-08-20 10:39:12 -07001619 if (!ddp_bytes) {
1620 dev_kfree_skb_any(skb);
Yi Zou332d4a72009-05-13 13:11:53 +00001621 goto next_desc;
David S. Miller823dcd22011-08-20 10:39:12 -07001622 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001623 }
Yi Zou332d4a72009-05-13 13:11:53 +00001624#endif /* IXGBE_FCOE */
Alexander Duyckfdaff1c2009-05-06 10:43:47 +00001625 ixgbe_receive_skb(q_vector, skb, staterr, rx_ring, rx_desc);
Auke Kok9a799d72007-09-15 14:07:45 -07001626
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001627 budget--;
Auke Kok9a799d72007-09-15 14:07:45 -07001628next_desc:
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001629 if (!budget)
Alexander Duyckc267fc12010-11-16 19:27:00 -08001630 break;
1631
Auke Kok9a799d72007-09-15 14:07:45 -07001632 /* return some buffers to hardware, one at a time is too slow */
1633 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001634 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001635 cleaned_count = 0;
1636 }
1637
1638 /* use prefetched values */
1639 rx_desc = next_rxd;
Auke Kok9a799d72007-09-15 14:07:45 -07001640 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001641 }
1642
Auke Kok9a799d72007-09-15 14:07:45 -07001643 rx_ring->next_to_clean = i;
Alexander Duyck7d4987d2011-05-27 05:31:37 +00001644 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001645
1646 if (cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001647 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001648
Yi Zou3d8fd382009-06-08 14:38:44 +00001649#ifdef IXGBE_FCOE
1650 /* include DDPed FCoE data */
1651 if (ddp_bytes > 0) {
1652 unsigned int mss;
1653
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001654 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001655 sizeof(struct fc_frame_header) -
1656 sizeof(struct fcoe_crc_eof);
1657 if (mss > 512)
1658 mss &= ~511;
1659 total_rx_bytes += ddp_bytes;
1660 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1661 }
1662#endif /* IXGBE_FCOE */
1663
Alexander Duyckc267fc12010-11-16 19:27:00 -08001664 u64_stats_update_begin(&rx_ring->syncp);
1665 rx_ring->stats.packets += total_rx_packets;
1666 rx_ring->stats.bytes += total_rx_bytes;
1667 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001668 q_vector->rx.total_packets += total_rx_packets;
1669 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001670
1671 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001672}
1673
Auke Kok9a799d72007-09-15 14:07:45 -07001674/**
1675 * ixgbe_configure_msix - Configure MSI-X hardware
1676 * @adapter: board private structure
1677 *
1678 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1679 * interrupts.
1680 **/
1681static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1682{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001683 struct ixgbe_q_vector *q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001684 int q_vectors, v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001685 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001686
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001687 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1688
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00001689 /* Populate MSIX to EITR Select */
1690 if (adapter->num_vfs > 32) {
1691 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
1692 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
1693 }
1694
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001695 /*
1696 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001697 * corresponding register.
1698 */
1699 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001700 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001701 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001702
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001703 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
1704 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001705
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001706 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
1707 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001708
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001709 if (q_vector->tx.ring && !q_vector->rx.ring) {
1710 /* tx only vector */
1711 if (adapter->tx_itr_setting == 1)
1712 q_vector->itr = IXGBE_10K_ITR;
1713 else
1714 q_vector->itr = adapter->tx_itr_setting;
1715 } else {
1716 /* rx or rx/tx vector */
1717 if (adapter->rx_itr_setting == 1)
1718 q_vector->itr = IXGBE_20K_ITR;
1719 else
1720 q_vector->itr = adapter->rx_itr_setting;
1721 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001722
Alexander Duyckfe49f042009-06-04 16:00:09 +00001723 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001724 }
1725
Alexander Duyckbd508172010-11-16 19:27:03 -08001726 switch (adapter->hw.mac.type) {
1727 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001728 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001729 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001730 break;
1731 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001732 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001733 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001734 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08001735 default:
1736 break;
1737 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001738 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001739
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001740 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001741 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001742 mask &= ~(IXGBE_EIMS_OTHER |
1743 IXGBE_EIMS_MAILBOX |
1744 IXGBE_EIMS_LSC);
1745
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001746 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001747}
1748
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001749enum latency_range {
1750 lowest_latency = 0,
1751 low_latency = 1,
1752 bulk_latency = 2,
1753 latency_invalid = 255
1754};
1755
1756/**
1757 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00001758 * @q_vector: structure containing interrupt and ring information
1759 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001760 *
1761 * Stores a new ITR value based on packets and byte
1762 * counts during the last interrupt. The advantage of per interrupt
1763 * computation is faster updates and more accurate ITR for the current
1764 * traffic pattern. Constants in this function were computed
1765 * based on theoretical maximum wire speed and thresholds were set based
1766 * on testing data as well as attempting to minimize response time
1767 * while increasing bulk throughput.
1768 * this functionality is controlled by the InterruptThrottleRate module
1769 * parameter (see ixgbe_param.c)
1770 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00001771static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
1772 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001773{
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001774 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00001775 struct ixgbe_adapter *adapter = q_vector->adapter;
1776 int bytes = ring_container->total_bytes;
1777 int packets = ring_container->total_packets;
1778 u32 timepassed_us;
1779 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001780
1781 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00001782 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001783
1784 /* simple throttlerate management
1785 * 0-20MB/s lowest (100000 ints/s)
1786 * 20-100MB/s low (20000 ints/s)
1787 * 100-1249MB/s bulk (8000 ints/s)
1788 */
1789 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001790 timepassed_us = q_vector->itr >> 2;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001791 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1792
1793 switch (itr_setting) {
1794 case lowest_latency:
1795 if (bytes_perint > adapter->eitr_low)
Alexander Duyckbd198052011-06-11 01:45:08 +00001796 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001797 break;
1798 case low_latency:
1799 if (bytes_perint > adapter->eitr_high)
Alexander Duyckbd198052011-06-11 01:45:08 +00001800 itr_setting = bulk_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001801 else if (bytes_perint <= adapter->eitr_low)
Alexander Duyckbd198052011-06-11 01:45:08 +00001802 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001803 break;
1804 case bulk_latency:
1805 if (bytes_perint <= adapter->eitr_high)
Alexander Duyckbd198052011-06-11 01:45:08 +00001806 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001807 break;
1808 }
1809
Alexander Duyckbd198052011-06-11 01:45:08 +00001810 /* clear work counters since we have the values we need */
1811 ring_container->total_bytes = 0;
1812 ring_container->total_packets = 0;
1813
1814 /* write updated itr to ring container */
1815 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001816}
1817
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001818/**
1819 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001820 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001821 *
1822 * This function is made to be called by ethtool and by the driver
1823 * when it needs to update EITR registers at runtime. Hardware
1824 * specific quirks/differences are taken care of here.
1825 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001826void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001827{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001828 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001829 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001830 int v_idx = q_vector->v_idx;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001831 u32 itr_reg = q_vector->itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001832
Alexander Duyckbd508172010-11-16 19:27:03 -08001833 switch (adapter->hw.mac.type) {
1834 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001835 /* must write high and low 16 bits to reset counter */
1836 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001837 break;
1838 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001839 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001840 /*
1841 * set the WDIS bit to not clear the timer bits and cause an
1842 * immediate assertion of the interrupt
1843 */
1844 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08001845 break;
1846 default:
1847 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001848 }
1849 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
1850}
1851
Alexander Duyckbd198052011-06-11 01:45:08 +00001852static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001853{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001854 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00001855 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001856
Alexander Duyckbd198052011-06-11 01:45:08 +00001857 ixgbe_update_itr(q_vector, &q_vector->tx);
1858 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001859
Alexander Duyck08c88332011-06-11 01:45:03 +00001860 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001861
1862 switch (current_itr) {
1863 /* counts and packets in update_itr are dependent on these numbers */
1864 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001865 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001866 break;
1867 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001868 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001869 break;
1870 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001871 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001872 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00001873 default:
1874 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001875 }
1876
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001877 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00001878 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001879 new_itr = (10 * new_itr * q_vector->itr) /
1880 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001881
Alexander Duyckbd198052011-06-11 01:45:08 +00001882 /* save the algorithm value here */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001883 q_vector->itr = new_itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001884
1885 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001886 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001887}
1888
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001889/**
Alexander Duyckf0f97782011-04-22 04:08:09 +00001890 * ixgbe_check_overtemp_subtask - check for over tempurature
1891 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001892 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00001893static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001894{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001895 struct ixgbe_hw *hw = &adapter->hw;
1896 u32 eicr = adapter->interrupt_event;
1897
Alexander Duyckf0f97782011-04-22 04:08:09 +00001898 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00001899 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001900
Alexander Duyckf0f97782011-04-22 04:08:09 +00001901 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1902 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
1903 return;
1904
1905 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1906
Joe Perches7ca647b2010-09-07 21:35:40 +00001907 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00001908 case IXGBE_DEV_ID_82599_T3_LOM:
1909 /*
1910 * Since the warning interrupt is for both ports
1911 * we don't have to check if:
1912 * - This interrupt wasn't for our port.
1913 * - We may have missed the interrupt so always have to
1914 * check if we got a LSC
1915 */
1916 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
1917 !(eicr & IXGBE_EICR_LSC))
1918 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001919
Alexander Duyckf0f97782011-04-22 04:08:09 +00001920 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
1921 u32 autoneg;
1922 bool link_up = false;
1923
Joe Perches7ca647b2010-09-07 21:35:40 +00001924 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
1925
Alexander Duyckf0f97782011-04-22 04:08:09 +00001926 if (link_up)
1927 return;
1928 }
1929
1930 /* Check if this is not due to overtemp */
1931 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
1932 return;
1933
1934 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00001935 default:
1936 if (!(eicr & IXGBE_EICR_GPI_SDP0))
1937 return;
1938 break;
1939 }
1940 e_crit(drv,
1941 "Network adapter has been stopped because it has over heated. "
1942 "Restart the computer. If the problem persists, "
1943 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00001944
1945 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001946}
1947
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001948static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
1949{
1950 struct ixgbe_hw *hw = &adapter->hw;
1951
1952 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
1953 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00001954 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001955 /* write to clear the interrupt */
1956 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
1957 }
1958}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001959
Jacob Keller4f51bf72011-08-20 04:49:45 +00001960static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
1961{
1962 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
1963 return;
1964
1965 switch (adapter->hw.mac.type) {
1966 case ixgbe_mac_82599EB:
1967 /*
1968 * Need to check link state so complete overtemp check
1969 * on service task
1970 */
1971 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
1972 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
1973 adapter->interrupt_event = eicr;
1974 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1975 ixgbe_service_event_schedule(adapter);
1976 return;
1977 }
1978 return;
1979 case ixgbe_mac_X540:
1980 if (!(eicr & IXGBE_EICR_TS))
1981 return;
1982 break;
1983 default:
1984 return;
1985 }
1986
1987 e_crit(drv,
1988 "Network adapter has been stopped because it has over heated. "
1989 "Restart the computer. If the problem persists, "
1990 "power off the system and replace the adapter\n");
1991}
1992
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001993static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
1994{
1995 struct ixgbe_hw *hw = &adapter->hw;
1996
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001997 if (eicr & IXGBE_EICR_GPI_SDP2) {
1998 /* Clear the interrupt */
1999 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002000 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2001 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2002 ixgbe_service_event_schedule(adapter);
2003 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002004 }
2005
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002006 if (eicr & IXGBE_EICR_GPI_SDP1) {
2007 /* Clear the interrupt */
2008 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002009 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2010 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2011 ixgbe_service_event_schedule(adapter);
2012 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002013 }
2014}
2015
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002016static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2017{
2018 struct ixgbe_hw *hw = &adapter->hw;
2019
2020 adapter->lsc_int++;
2021 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2022 adapter->link_check_timeout = jiffies;
2023 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2024 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002025 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002026 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002027 }
2028}
2029
Alexander Duyckfe49f042009-06-04 16:00:09 +00002030static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2031 u64 qmask)
2032{
2033 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002034 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002035
Alexander Duyckbd508172010-11-16 19:27:03 -08002036 switch (hw->mac.type) {
2037 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002038 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002039 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2040 break;
2041 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002042 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002043 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002044 if (mask)
2045 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002046 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002047 if (mask)
2048 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2049 break;
2050 default:
2051 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002052 }
2053 /* skip the flush */
2054}
2055
2056static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002057 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002058{
2059 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002060 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002061
Alexander Duyckbd508172010-11-16 19:27:03 -08002062 switch (hw->mac.type) {
2063 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002064 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002065 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2066 break;
2067 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002068 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002069 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002070 if (mask)
2071 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002072 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002073 if (mask)
2074 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2075 break;
2076 default:
2077 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002078 }
2079 /* skip the flush */
2080}
2081
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002082/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002083 * ixgbe_irq_enable - Enable default interrupt generation settings
2084 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002085 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002086static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2087 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002088{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002089 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002090
Alexander Duyck2c4af692011-07-15 07:29:55 +00002091 /* don't reenable LSC while waiting for link */
2092 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2093 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002094
Alexander Duyck2c4af692011-07-15 07:29:55 +00002095 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002096 switch (adapter->hw.mac.type) {
2097 case ixgbe_mac_82599EB:
2098 mask |= IXGBE_EIMS_GPI_SDP0;
2099 break;
2100 case ixgbe_mac_X540:
2101 mask |= IXGBE_EIMS_TS;
2102 break;
2103 default:
2104 break;
2105 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002106 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2107 mask |= IXGBE_EIMS_GPI_SDP1;
2108 switch (adapter->hw.mac.type) {
2109 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002110 mask |= IXGBE_EIMS_GPI_SDP1;
2111 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002112 case ixgbe_mac_X540:
2113 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002114 mask |= IXGBE_EIMS_MAILBOX;
2115 break;
2116 default:
2117 break;
2118 }
2119 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2120 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2121 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002122
Alexander Duyck2c4af692011-07-15 07:29:55 +00002123 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2124 if (queues)
2125 ixgbe_irq_enable_queues(adapter, ~0);
2126 if (flush)
2127 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002128}
2129
Alexander Duyck2c4af692011-07-15 07:29:55 +00002130static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002131{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002132 struct ixgbe_adapter *adapter = data;
2133 struct ixgbe_hw *hw = &adapter->hw;
2134 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002135
Alexander Duyck2c4af692011-07-15 07:29:55 +00002136 /*
2137 * Workaround for Silicon errata. Use clear-by-write instead
2138 * of clear-by-read. Reading with EICS will return the
2139 * interrupt causes without clearing, which later be done
2140 * with the write to EICR.
2141 */
2142 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
2143 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002144
Alexander Duyck2c4af692011-07-15 07:29:55 +00002145 if (eicr & IXGBE_EICR_LSC)
2146 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002147
Alexander Duyck2c4af692011-07-15 07:29:55 +00002148 if (eicr & IXGBE_EICR_MAILBOX)
2149 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002150
Alexander Duyck2c4af692011-07-15 07:29:55 +00002151 switch (hw->mac.type) {
2152 case ixgbe_mac_82599EB:
2153 case ixgbe_mac_X540:
2154 if (eicr & IXGBE_EICR_ECC)
2155 e_info(link, "Received unrecoverable ECC Err, please "
2156 "reboot\n");
2157 /* Handle Flow Director Full threshold interrupt */
2158 if (eicr & IXGBE_EICR_FLOW_DIR) {
2159 int reinit_count = 0;
2160 int i;
2161 for (i = 0; i < adapter->num_tx_queues; i++) {
2162 struct ixgbe_ring *ring = adapter->tx_ring[i];
2163 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2164 &ring->state))
2165 reinit_count++;
2166 }
2167 if (reinit_count) {
2168 /* no more flow director interrupts until after init */
2169 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2170 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2171 ixgbe_service_event_schedule(adapter);
2172 }
2173 }
2174 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002175 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002176 break;
2177 default:
2178 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002179 }
2180
Alexander Duyck2c4af692011-07-15 07:29:55 +00002181 ixgbe_check_fan_failure(adapter, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07002182
Alexander Duyck2c4af692011-07-15 07:29:55 +00002183 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002184 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002185 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002186
Alexander Duyck2c4af692011-07-15 07:29:55 +00002187 return IRQ_HANDLED;
2188}
2189
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002190static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002191{
2192 struct ixgbe_q_vector *q_vector = data;
2193
Auke Kok9a799d72007-09-15 14:07:45 -07002194 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002195
2196 if (q_vector->rx.ring || q_vector->tx.ring)
2197 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002198
2199 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002200}
2201
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002202static inline void map_vector_to_rxq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002203 int r_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07002204{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002205 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08002206 struct ixgbe_ring *rx_ring = a->rx_ring[r_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002207
Alexander Duyck22745432010-11-16 19:27:10 -08002208 rx_ring->q_vector = q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002209 rx_ring->next = q_vector->rx.ring;
2210 q_vector->rx.ring = rx_ring;
2211 q_vector->rx.count++;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002212}
Auke Kok9a799d72007-09-15 14:07:45 -07002213
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002214static inline void map_vector_to_txq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002215 int t_idx)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002216{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002217 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08002218 struct ixgbe_ring *tx_ring = a->tx_ring[t_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002219
Alexander Duyck22745432010-11-16 19:27:10 -08002220 tx_ring->q_vector = q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002221 tx_ring->next = q_vector->tx.ring;
2222 q_vector->tx.ring = tx_ring;
2223 q_vector->tx.count++;
Alexander Duyckbd198052011-06-11 01:45:08 +00002224 q_vector->tx.work_limit = a->tx_work_limit;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002225}
Auke Kok9a799d72007-09-15 14:07:45 -07002226
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002227/**
2228 * ixgbe_map_rings_to_vectors - Maps descriptor rings to vectors
2229 * @adapter: board private structure to initialize
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002230 *
2231 * This function maps descriptor rings to the queue-specific vectors
2232 * we were allotted through the MSI-X enabling code. Ideally, we'd have
2233 * one vector per ring/queue, but on a constrained vector budget, we
2234 * group the rings as "efficiently" as possible. You would add new
2235 * mapping configurations in here.
2236 **/
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002237static void ixgbe_map_rings_to_vectors(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002238{
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002239 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2240 int rxr_remaining = adapter->num_rx_queues, rxr_idx = 0;
2241 int txr_remaining = adapter->num_tx_queues, txr_idx = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002242 int v_start = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002243
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002244 /* only one q_vector if MSI-X is disabled. */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002245 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002246 q_vectors = 1;
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002247
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002248 /*
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002249 * If we don't have enough vectors for a 1-to-1 mapping, we'll have to
2250 * group them so there are multiple queues per vector.
2251 *
2252 * Re-adjusting *qpv takes care of the remainder.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002253 */
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002254 for (; v_start < q_vectors && rxr_remaining; v_start++) {
2255 int rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - v_start);
2256 for (; rqpv; rqpv--, rxr_idx++, rxr_remaining--)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002257 map_vector_to_rxq(adapter, v_start, rxr_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002258 }
2259
2260 /*
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002261 * If there are not enough q_vectors for each ring to have it's own
2262 * vector then we must pair up Rx/Tx on a each vector
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002263 */
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002264 if ((v_start + txr_remaining) > q_vectors)
2265 v_start = 0;
2266
2267 for (; v_start < q_vectors && txr_remaining; v_start++) {
2268 int tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - v_start);
2269 for (; tqpv; tqpv--, txr_idx++, txr_remaining--)
2270 map_vector_to_txq(adapter, v_start, txr_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07002271 }
Auke Kok9a799d72007-09-15 14:07:45 -07002272}
2273
2274/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002275 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2276 * @adapter: board private structure
2277 *
2278 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2279 * interrupts from the kernel.
2280 **/
2281static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2282{
2283 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002284 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2285 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002286 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002287
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002288 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002289 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002290 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002291
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002292 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002293 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002294 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002295 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002296 } else if (q_vector->rx.ring) {
2297 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2298 "%s-%s-%d", netdev->name, "rx", ri++);
2299 } else if (q_vector->tx.ring) {
2300 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2301 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002302 } else {
2303 /* skip this unused q_vector */
2304 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002305 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002306 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2307 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002308 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002309 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002310 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002311 goto free_queue_irqs;
2312 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002313 /* If Flow Director is enabled, set interrupt affinity */
2314 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2315 /* assign the mask for this irq */
2316 irq_set_affinity_hint(entry->vector,
2317 q_vector->affinity_mask);
2318 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002319 }
2320
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002321 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002322 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002323 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002324 e_err(probe, "request_irq for msix_lsc failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002325 goto free_queue_irqs;
2326 }
2327
2328 return 0;
2329
2330free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002331 while (vector) {
2332 vector--;
2333 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2334 NULL);
2335 free_irq(adapter->msix_entries[vector].vector,
2336 adapter->q_vector[vector]);
2337 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002338 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2339 pci_disable_msix(adapter->pdev);
2340 kfree(adapter->msix_entries);
2341 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002342 return err;
2343}
2344
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002345/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002346 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002347 * @irq: interrupt number
2348 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002349 **/
2350static irqreturn_t ixgbe_intr(int irq, void *data)
2351{
Alexander Duycka65151b2011-05-27 05:31:32 +00002352 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002353 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002354 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002355 u32 eicr;
2356
Don Skidmore54037502009-02-21 15:42:56 -08002357 /*
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002358 * Workaround for silicon errata on 82598. Mask the interrupts
Don Skidmore54037502009-02-21 15:42:56 -08002359 * before the read of EICR.
2360 */
2361 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2362
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002363 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002364 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002365 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002366 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002367 /*
2368 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002369 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002370 * have disabled interrupts due to EIAM
2371 * finish the workaround of silicon errata on 82598. Unmask
2372 * the interrupt that we masked before the EICR read.
2373 */
2374 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2375 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002376 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002377 }
Auke Kok9a799d72007-09-15 14:07:45 -07002378
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002379 if (eicr & IXGBE_EICR_LSC)
2380 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002381
Alexander Duyckbd508172010-11-16 19:27:03 -08002382 switch (hw->mac.type) {
2383 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002384 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002385 /* Fall through */
2386 case ixgbe_mac_X540:
2387 if (eicr & IXGBE_EICR_ECC)
2388 e_info(link, "Received unrecoverable ECC err, please "
2389 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002390 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002391 break;
2392 default:
2393 break;
2394 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002395
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002396 ixgbe_check_fan_failure(adapter, eicr);
2397
Alexander Duyck7a921c92009-05-06 10:43:28 +00002398 if (napi_schedule_prep(&(q_vector->napi))) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002399 /* would disable interrupts here but EIAM disabled it */
Alexander Duyck7a921c92009-05-06 10:43:28 +00002400 __napi_schedule(&(q_vector->napi));
Auke Kok9a799d72007-09-15 14:07:45 -07002401 }
2402
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002403 /*
2404 * re-enable link(maybe) and non-queue interrupts, no flush.
2405 * ixgbe_poll will re-enable the queue interrupts
2406 */
2407
2408 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2409 ixgbe_irq_enable(adapter, false, false);
2410
Auke Kok9a799d72007-09-15 14:07:45 -07002411 return IRQ_HANDLED;
2412}
2413
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002414static inline void ixgbe_reset_q_vectors(struct ixgbe_adapter *adapter)
2415{
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002416 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2417 int i;
2418
2419 /* legacy and MSI only use one vector */
2420 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
2421 q_vectors = 1;
2422
2423 for (i = 0; i < adapter->num_rx_queues; i++) {
2424 adapter->rx_ring[i]->q_vector = NULL;
2425 adapter->rx_ring[i]->next = NULL;
2426 }
2427 for (i = 0; i < adapter->num_tx_queues; i++) {
2428 adapter->tx_ring[i]->q_vector = NULL;
2429 adapter->tx_ring[i]->next = NULL;
2430 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002431
2432 for (i = 0; i < q_vectors; i++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00002433 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002434 memset(&q_vector->rx, 0, sizeof(struct ixgbe_ring_container));
2435 memset(&q_vector->tx, 0, sizeof(struct ixgbe_ring_container));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002436 }
2437}
2438
Auke Kok9a799d72007-09-15 14:07:45 -07002439/**
2440 * ixgbe_request_irq - initialize interrupts
2441 * @adapter: board private structure
2442 *
2443 * Attempts to configure interrupts using the best available
2444 * capabilities of the hardware and kernel.
2445 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002446static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002447{
2448 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002449 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002450
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002451 /* map all of the rings to the q_vectors */
2452 ixgbe_map_rings_to_vectors(adapter);
2453
2454 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002455 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002456 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002457 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151b2011-05-27 05:31:32 +00002458 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002459 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002460 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151b2011-05-27 05:31:32 +00002461 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002462
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002463 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002464 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002465
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002466 /* place q_vectors and rings back into a known good state */
2467 ixgbe_reset_q_vectors(adapter);
2468 }
2469
Auke Kok9a799d72007-09-15 14:07:45 -07002470 return err;
2471}
2472
2473static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2474{
Auke Kok9a799d72007-09-15 14:07:45 -07002475 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002476 int i, q_vectors;
Auke Kok9a799d72007-09-15 14:07:45 -07002477
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002478 q_vectors = adapter->num_msix_vectors;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002479 i = q_vectors - 1;
Alexander Duycka65151b2011-05-27 05:31:32 +00002480 free_irq(adapter->msix_entries[i].vector, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002481 i--;
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002482
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002483 for (; i >= 0; i--) {
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002484 /* free only the irqs that were actually requested */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002485 if (!adapter->q_vector[i]->rx.ring &&
2486 !adapter->q_vector[i]->tx.ring)
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002487 continue;
2488
Alexander Duyck207867f2011-07-15 03:05:37 +00002489 /* clear the affinity_mask in the IRQ descriptor */
2490 irq_set_affinity_hint(adapter->msix_entries[i].vector,
2491 NULL);
2492
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002493 free_irq(adapter->msix_entries[i].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002494 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002495 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002496 } else {
Alexander Duycka65151b2011-05-27 05:31:32 +00002497 free_irq(adapter->pdev->irq, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002498 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002499
2500 /* clear q_vector state information */
2501 ixgbe_reset_q_vectors(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002502}
2503
2504/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002505 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2506 * @adapter: board private structure
2507 **/
2508static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2509{
Alexander Duyckbd508172010-11-16 19:27:03 -08002510 switch (adapter->hw.mac.type) {
2511 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002512 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002513 break;
2514 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002515 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002516 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2517 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002518 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002519 break;
2520 default:
2521 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002522 }
2523 IXGBE_WRITE_FLUSH(&adapter->hw);
2524 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2525 int i;
2526 for (i = 0; i < adapter->num_msix_vectors; i++)
2527 synchronize_irq(adapter->msix_entries[i].vector);
2528 } else {
2529 synchronize_irq(adapter->pdev->irq);
2530 }
2531}
2532
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002533/**
Auke Kok9a799d72007-09-15 14:07:45 -07002534 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2535 *
2536 **/
2537static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2538{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002539 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002540
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002541 /* rx/tx vector */
2542 if (adapter->rx_itr_setting == 1)
2543 q_vector->itr = IXGBE_20K_ITR;
2544 else
2545 q_vector->itr = adapter->rx_itr_setting;
2546
2547 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002548
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002549 ixgbe_set_ivar(adapter, 0, 0, 0);
2550 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002551
Emil Tantilov396e7992010-07-01 20:05:12 +00002552 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002553}
2554
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002555/**
2556 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2557 * @adapter: board private structure
2558 * @ring: structure containing ring specific data
2559 *
2560 * Configure the Tx descriptor ring after a reset.
2561 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002562void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2563 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002564{
2565 struct ixgbe_hw *hw = &adapter->hw;
2566 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002567 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002568 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002569 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002570
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002571 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002572 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002573 IXGBE_WRITE_FLUSH(hw);
2574
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002575 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002576 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002577 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2578 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2579 ring->count * sizeof(union ixgbe_adv_tx_desc));
2580 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2581 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002582 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002583
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002584 /*
2585 * set WTHRESH to encourage burst writeback, it should not be set
2586 * higher than 1 when ITR is 0 as it could cause false TX hangs
2587 *
2588 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2589 * to or less than the number of on chip descriptors, which is
2590 * currently 40.
2591 */
2592 if (!adapter->tx_itr_setting || !adapter->rx_itr_setting)
2593 txdctl |= (1 << 16); /* WTHRESH = 1 */
2594 else
2595 txdctl |= (8 << 16); /* WTHRESH = 8 */
2596
2597 /* PTHRESH=32 is needed to avoid a Tx hang with DFP enabled. */
2598 txdctl |= (1 << 8) | /* HTHRESH = 1 */
2599 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002600
2601 /* reinitialize flowdirector state */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002602 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2603 adapter->atr_sample_rate) {
2604 ring->atr_sample_rate = adapter->atr_sample_rate;
2605 ring->atr_count = 0;
2606 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2607 } else {
2608 ring->atr_sample_rate = 0;
2609 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002610
John Fastabendc84d3242010-11-16 19:27:12 -08002611 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2612
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002613 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002614 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2615
2616 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2617 if (hw->mac.type == ixgbe_mac_82598EB &&
2618 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2619 return;
2620
2621 /* poll to verify queue is enabled */
2622 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002623 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002624 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2625 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2626 if (!wait_loop)
2627 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002628}
2629
Alexander Duyck120ff942010-08-19 13:34:50 +00002630static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2631{
2632 struct ixgbe_hw *hw = &adapter->hw;
2633 u32 rttdcs;
John Fastabend72a32f12011-04-26 07:25:58 +00002634 u32 reg;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002635 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002636
2637 if (hw->mac.type == ixgbe_mac_82598EB)
2638 return;
2639
2640 /* disable the arbiter while setting MTQC */
2641 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2642 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2643 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2644
2645 /* set transmit pool layout */
John Fastabend8b1c0b22011-05-03 02:26:48 +00002646 switch (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Alexander Duyck120ff942010-08-19 13:34:50 +00002647 case (IXGBE_FLAG_SRIOV_ENABLED):
2648 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2649 (IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF));
2650 break;
Alexander Duyck120ff942010-08-19 13:34:50 +00002651 default:
John Fastabend8b1c0b22011-05-03 02:26:48 +00002652 if (!tcs)
2653 reg = IXGBE_MTQC_64Q_1PB;
2654 else if (tcs <= 4)
2655 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2656 else
2657 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2658
2659 IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
2660
2661 /* Enable Security TX Buffer IFG for multiple pb */
2662 if (tcs) {
2663 reg = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2664 reg |= IXGBE_SECTX_DCB;
2665 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, reg);
2666 }
Alexander Duyck120ff942010-08-19 13:34:50 +00002667 break;
2668 }
2669
2670 /* re-enable the arbiter */
2671 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2672 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2673}
2674
Auke Kok9a799d72007-09-15 14:07:45 -07002675/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002676 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002677 * @adapter: board private structure
2678 *
2679 * Configure the Tx unit of the MAC after a reset.
2680 **/
2681static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2682{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002683 struct ixgbe_hw *hw = &adapter->hw;
2684 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002685 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002686
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002687 ixgbe_setup_mtqc(adapter);
2688
2689 if (hw->mac.type != ixgbe_mac_82598EB) {
2690 /* DMATXCTL.EN must be before Tx queues are enabled */
2691 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2692 dmatxctl |= IXGBE_DMATXCTL_TE;
2693 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2694 }
2695
Auke Kok9a799d72007-09-15 14:07:45 -07002696 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002697 for (i = 0; i < adapter->num_tx_queues; i++)
2698 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002699}
2700
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002701#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002702
Yi Zoua6616b42009-08-06 13:05:23 +00002703static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002704 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002705{
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002706 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002707 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002708
Alexander Duyckbd508172010-11-16 19:27:03 -08002709 switch (adapter->hw.mac.type) {
2710 case ixgbe_mac_82598EB: {
2711 struct ixgbe_ring_feature *feature = adapter->ring_feature;
2712 const int mask = feature[RING_F_RSS].mask;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002713 reg_idx = reg_idx & mask;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002714 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002715 break;
2716 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002717 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08002718 default:
2719 break;
2720 }
2721
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002722 srrctl = IXGBE_READ_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx));
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002723
2724 srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
2725 srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002726 if (adapter->num_vfs)
2727 srrctl |= IXGBE_SRRCTL_DROP_EN;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002728
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002729 srrctl |= (IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
2730 IXGBE_SRRCTL_BSIZEHDR_MASK;
2731
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002732 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002733#if (PAGE_SIZE / 2) > IXGBE_MAX_RXBUFFER
2734 srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2735#else
2736 srrctl |= (PAGE_SIZE / 2) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2737#endif
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002738 srrctl |= IXGBE_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002739 } else {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002740 srrctl |= ALIGN(rx_ring->rx_buf_len, 1024) >>
2741 IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002742 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002743 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002744
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002745 IXGBE_WRITE_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002746}
2747
Alexander Duyck05abb122010-08-19 13:35:41 +00002748static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002749{
Alexander Duyck05abb122010-08-19 13:35:41 +00002750 struct ixgbe_hw *hw = &adapter->hw;
2751 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002752 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2753 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002754 u32 mrqc = 0, reta = 0;
2755 u32 rxcsum;
2756 int i, j;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002757 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend86b4db32011-04-26 07:26:19 +00002758 int maxq = adapter->ring_feature[RING_F_RSS].indices;
2759
2760 if (tcs)
2761 maxq = min(maxq, adapter->num_tx_queues / tcs);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002762
Alexander Duyck05abb122010-08-19 13:35:41 +00002763 /* Fill out hash function seeds */
2764 for (i = 0; i < 10; i++)
2765 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002766
Alexander Duyck05abb122010-08-19 13:35:41 +00002767 /* Fill out redirection table */
2768 for (i = 0, j = 0; i < 128; i++, j++) {
John Fastabend86b4db32011-04-26 07:26:19 +00002769 if (j == maxq)
Alexander Duyck05abb122010-08-19 13:35:41 +00002770 j = 0;
2771 /* reta = 4-byte sliding window of
2772 * 0x00..(indices-1)(indices-1)00..etc. */
2773 reta = (reta << 8) | (j * 0x11);
2774 if ((i & 3) == 3)
2775 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2776 }
2777
2778 /* Disable indicating checksum in descriptor, enables RSS hash */
2779 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2780 rxcsum |= IXGBE_RXCSUM_PCSD;
2781 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2782
John Fastabend8b1c0b22011-05-03 02:26:48 +00002783 if (adapter->hw.mac.type == ixgbe_mac_82598EB &&
2784 (adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002785 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002786 } else {
2787 int mask = adapter->flags & (IXGBE_FLAG_RSS_ENABLED
2788 | IXGBE_FLAG_SRIOV_ENABLED);
2789
2790 switch (mask) {
2791 case (IXGBE_FLAG_RSS_ENABLED):
2792 if (!tcs)
2793 mrqc = IXGBE_MRQC_RSSEN;
2794 else if (tcs <= 4)
2795 mrqc = IXGBE_MRQC_RTRSS4TCEN;
2796 else
2797 mrqc = IXGBE_MRQC_RTRSS8TCEN;
2798 break;
2799 case (IXGBE_FLAG_SRIOV_ENABLED):
2800 mrqc = IXGBE_MRQC_VMDQEN;
2801 break;
2802 default:
2803 break;
2804 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002805 }
2806
Alexander Duyck05abb122010-08-19 13:35:41 +00002807 /* Perform hash on these packet types */
2808 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2809 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2810 | IXGBE_MRQC_RSS_FIELD_IPV6
2811 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2812
2813 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002814}
2815
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002816/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002817 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2818 * @adapter: address of board private structure
2819 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002820 **/
Don Skidmore082757a2011-07-21 05:55:00 +00002821static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00002822 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002823{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002824 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002825 u32 rscctrl;
Mallikarjuna R Chilakalaedd2ea52009-11-23 10:45:11 -08002826 int rx_buf_len;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002827 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002828
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002829 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002830 return;
2831
2832 rx_buf_len = ring->rx_buf_len;
2833 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002834 rscctrl |= IXGBE_RSCCTL_RSCEN;
2835 /*
2836 * we must limit the number of descriptors so that the
2837 * total size of max desc * buf_len is not greater
2838 * than 65535
2839 */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002840 if (ring_is_ps_enabled(ring)) {
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002841#if (MAX_SKB_FRAGS > 16)
2842 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2843#elif (MAX_SKB_FRAGS > 8)
2844 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2845#elif (MAX_SKB_FRAGS > 4)
2846 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2847#else
2848 rscctrl |= IXGBE_RSCCTL_MAXDESC_1;
2849#endif
2850 } else {
Alexander Duyck919e78a2011-08-26 09:52:38 +00002851 if (rx_buf_len < IXGBE_RXBUFFER_4K)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002852 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck919e78a2011-08-26 09:52:38 +00002853 else if (rx_buf_len < IXGBE_RXBUFFER_8K)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002854 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2855 else
2856 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2857 }
Alexander Duyck73670962010-08-19 13:38:34 +00002858 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002859}
2860
Alexander Duyck9e10e042010-08-19 13:40:06 +00002861/**
2862 * ixgbe_set_uta - Set unicast filter table address
2863 * @adapter: board private structure
2864 *
2865 * The unicast table address is a register array of 32-bit registers.
2866 * The table is meant to be used in a way similar to how the MTA is used
2867 * however due to certain limitations in the hardware it is necessary to
2868 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscuous
2869 * enable bit to allow vlan tag stripping when promiscuous mode is enabled
2870 **/
2871static void ixgbe_set_uta(struct ixgbe_adapter *adapter)
2872{
2873 struct ixgbe_hw *hw = &adapter->hw;
2874 int i;
2875
2876 /* The UTA table only exists on 82599 hardware and newer */
2877 if (hw->mac.type < ixgbe_mac_82599EB)
2878 return;
2879
2880 /* we only need to do this if VMDq is enabled */
2881 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2882 return;
2883
2884 for (i = 0; i < 128; i++)
2885 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
2886}
2887
2888#define IXGBE_MAX_RX_DESC_POLL 10
2889static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
2890 struct ixgbe_ring *ring)
2891{
2892 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002893 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2894 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002895 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002896
2897 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2898 if (hw->mac.type == ixgbe_mac_82598EB &&
2899 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2900 return;
2901
2902 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002903 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002904 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2905 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
2906
2907 if (!wait_loop) {
2908 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
2909 "the polling period\n", reg_idx);
2910 }
2911}
2912
Yi Zou2d39d572011-01-06 14:29:56 +00002913void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
2914 struct ixgbe_ring *ring)
2915{
2916 struct ixgbe_hw *hw = &adapter->hw;
2917 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2918 u32 rxdctl;
2919 u8 reg_idx = ring->reg_idx;
2920
2921 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2922 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
2923
2924 /* write value back with RXDCTL.ENABLE bit cleared */
2925 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2926
2927 if (hw->mac.type == ixgbe_mac_82598EB &&
2928 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2929 return;
2930
2931 /* the hardware may take up to 100us to really disable the rx queue */
2932 do {
2933 udelay(10);
2934 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2935 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
2936
2937 if (!wait_loop) {
2938 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
2939 "the polling period\n", reg_idx);
2940 }
2941}
2942
Alexander Duyck84418e32010-08-19 13:40:54 +00002943void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
2944 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00002945{
2946 struct ixgbe_hw *hw = &adapter->hw;
2947 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002948 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002949 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00002950
Alexander Duyck9e10e042010-08-19 13:40:06 +00002951 /* disable queue to avoid issues while updating state */
2952 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00002953 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002954
Alexander Duyckacd37172010-08-19 13:36:05 +00002955 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
2956 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
2957 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
2958 ring->count * sizeof(union ixgbe_adv_rx_desc));
2959 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
2960 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002961 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002962
2963 ixgbe_configure_srrctl(adapter, ring);
2964 ixgbe_configure_rscctl(adapter, ring);
2965
Greg Rosee9f98072011-01-26 01:06:07 +00002966 /* If operating in IOV mode set RLPML for X540 */
2967 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
2968 hw->mac.type == ixgbe_mac_X540) {
2969 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
2970 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
2971 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
2972 }
2973
Alexander Duyck9e10e042010-08-19 13:40:06 +00002974 if (hw->mac.type == ixgbe_mac_82598EB) {
2975 /*
2976 * enable cache line friendly hardware writes:
2977 * PTHRESH=32 descriptors (half the internal cache),
2978 * this also removes ugly rx_no_buffer_count increment
2979 * HTHRESH=4 descriptors (to minimize latency on fetch)
2980 * WTHRESH=8 burst writeback up to two cache lines
2981 */
2982 rxdctl &= ~0x3FFFFF;
2983 rxdctl |= 0x080420;
2984 }
2985
2986 /* enable receive descriptor ring */
2987 rxdctl |= IXGBE_RXDCTL_ENABLE;
2988 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2989
2990 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00002991 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00002992}
2993
Alexander Duyck48654522010-08-19 13:36:27 +00002994static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
2995{
2996 struct ixgbe_hw *hw = &adapter->hw;
2997 int p;
2998
2999 /* PSRTYPE must be initialized in non 82598 adapters */
3000 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003001 IXGBE_PSRTYPE_UDPHDR |
3002 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003003 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003004 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003005
3006 if (hw->mac.type == ixgbe_mac_82598EB)
3007 return;
3008
3009 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED)
3010 psrtype |= (adapter->num_rx_queues_per_pool << 29);
3011
3012 for (p = 0; p < adapter->num_rx_pools; p++)
3013 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(adapter->num_vfs + p),
3014 psrtype);
3015}
3016
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003017static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3018{
3019 struct ixgbe_hw *hw = &adapter->hw;
3020 u32 gcr_ext;
3021 u32 vt_reg_bits;
3022 u32 reg_offset, vf_shift;
3023 u32 vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003024 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003025
3026 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3027 return;
3028
3029 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
3030 vt_reg_bits = IXGBE_VMD_CTL_VMDQ_EN | IXGBE_VT_CTL_REPLEN;
3031 vt_reg_bits |= (adapter->num_vfs << IXGBE_VT_CTL_POOL_SHIFT);
3032 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl | vt_reg_bits);
3033
3034 vf_shift = adapter->num_vfs % 32;
3035 reg_offset = (adapter->num_vfs > 32) ? 1 : 0;
3036
3037 /* Enable only the PF's pool for Tx/Rx */
3038 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (1 << vf_shift));
3039 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), 0);
3040 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (1 << vf_shift));
3041 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), 0);
3042 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3043
3044 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
3045 hw->mac.ops.set_vmdq(hw, 0, adapter->num_vfs);
3046
3047 /*
3048 * Set up VF register offsets for selected VT Mode,
3049 * i.e. 32 or 64 VFs for SR-IOV
3050 */
3051 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
3052 gcr_ext |= IXGBE_GCR_EXT_MSIX_EN;
3053 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
3054 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3055
3056 /* enable Tx loopback for VF/PF communication */
3057 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Greg Rosea985b6c32010-11-18 03:02:52 +00003058 /* Enable MAC Anti-Spoofing */
Greg Rosea1cbb152011-05-13 01:33:48 +00003059 hw->mac.ops.set_mac_anti_spoofing(hw,
Greg Rosede4c7f62011-09-29 05:57:33 +00003060 (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003061 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00003062 /* For VFs that have spoof checking turned off */
3063 for (i = 0; i < adapter->num_vfs; i++) {
3064 if (!adapter->vfinfo[i].spoofchk_enabled)
3065 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
3066 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003067}
3068
Alexander Duyck477de6e2010-08-19 13:38:11 +00003069static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003070{
Auke Kok9a799d72007-09-15 14:07:45 -07003071 struct ixgbe_hw *hw = &adapter->hw;
3072 struct net_device *netdev = adapter->netdev;
3073 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003074 int rx_buf_len;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003075 struct ixgbe_ring *rx_ring;
3076 int i;
3077 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003078
Auke Kok9a799d72007-09-15 14:07:45 -07003079 /* Decide whether to use packet split mode or not */
Don Skidmorea1243392011-01-18 22:53:47 +00003080 /* On by default */
3081 adapter->flags |= IXGBE_FLAG_RX_PS_ENABLED;
3082
Greg Rose1cdd1ec2010-01-09 02:26:46 +00003083 /* Do not use packet split if we're in SR-IOV Mode */
Don Skidmorea1243392011-01-18 22:53:47 +00003084 if (adapter->num_vfs)
3085 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
3086
3087 /* Disable packet split due to 82599 erratum #45 */
3088 if (hw->mac.type == ixgbe_mac_82599EB)
3089 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
Auke Kok9a799d72007-09-15 14:07:45 -07003090
Alexander Duyck477de6e2010-08-19 13:38:11 +00003091#ifdef IXGBE_FCOE
3092 /* adjust max frame to be able to do baby jumbo for FCoE */
3093 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3094 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3095 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3096
3097#endif /* IXGBE_FCOE */
3098 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3099 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3100 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3101 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3102
3103 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003104 }
3105
Alexander Duyck919e78a2011-08-26 09:52:38 +00003106 /* MHADD will allow an extra 4 bytes past for vlan tagged frames */
3107 max_frame += VLAN_HLEN;
3108
3109 /* Set the RX buffer length according to the mode */
3110 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED) {
3111 rx_buf_len = IXGBE_RX_HDR_SIZE;
3112 } else {
3113 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
3114 (netdev->mtu <= ETH_DATA_LEN))
3115 rx_buf_len = MAXIMUM_ETHERNET_VLAN_SIZE;
3116 /*
3117 * Make best use of allocation by using all but 1K of a
3118 * power of 2 allocation that will be used for skb->head.
3119 */
3120 else if (max_frame <= IXGBE_RXBUFFER_3K)
3121 rx_buf_len = IXGBE_RXBUFFER_3K;
3122 else if (max_frame <= IXGBE_RXBUFFER_7K)
3123 rx_buf_len = IXGBE_RXBUFFER_7K;
3124 else if (max_frame <= IXGBE_RXBUFFER_15K)
3125 rx_buf_len = IXGBE_RXBUFFER_15K;
3126 else
3127 rx_buf_len = IXGBE_MAX_RXBUFFER;
3128 }
3129
Auke Kok9a799d72007-09-15 14:07:45 -07003130 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003131 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3132 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003133 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3134
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003135 /*
3136 * Setup the HW Rx Head and Tail Descriptor Pointers and
3137 * the Base and Length of the Rx Descriptor Ring
3138 */
Auke Kok9a799d72007-09-15 14:07:45 -07003139 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003140 rx_ring = adapter->rx_ring[i];
Yi Zoua6616b42009-08-06 13:05:23 +00003141 rx_ring->rx_buf_len = rx_buf_len;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003142
Yi Zou6e455b892009-08-06 13:05:44 +00003143 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003144 set_ring_ps_enabled(rx_ring);
Peter P Waskiewicz Jr1b3ff022009-09-14 07:47:27 +00003145 else
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003146 clear_ring_ps_enabled(rx_ring);
3147
3148 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3149 set_ring_rsc_enabled(rx_ring);
3150 else
3151 clear_ring_rsc_enabled(rx_ring);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003152
Yi Zou63f39bd2009-05-17 12:34:35 +00003153#ifdef IXGBE_FCOE
Joe Perchese8e9f692010-09-07 21:34:53 +00003154 if (netdev->features & NETIF_F_FCOE_MTU) {
Yi Zou63f39bd2009-05-17 12:34:35 +00003155 struct ixgbe_ring_feature *f;
3156 f = &adapter->ring_feature[RING_F_FCOE];
Yi Zou6e455b892009-08-06 13:05:44 +00003157 if ((i >= f->mask) && (i < f->mask + f->indices)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003158 clear_ring_ps_enabled(rx_ring);
Yi Zou6e455b892009-08-06 13:05:44 +00003159 if (rx_buf_len < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3160 rx_ring->rx_buf_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00003161 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003162 } else if (!ring_is_rsc_enabled(rx_ring) &&
3163 !ring_is_ps_enabled(rx_ring)) {
3164 rx_ring->rx_buf_len =
3165 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Yi Zou6e455b892009-08-06 13:05:44 +00003166 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003167 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003168#endif /* IXGBE_FCOE */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003169 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003170}
3171
Alexander Duyck73670962010-08-19 13:38:34 +00003172static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3173{
3174 struct ixgbe_hw *hw = &adapter->hw;
3175 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3176
3177 switch (hw->mac.type) {
3178 case ixgbe_mac_82598EB:
3179 /*
3180 * For VMDq support of different descriptor types or
3181 * buffer sizes through the use of multiple SRRCTL
3182 * registers, RDRXCTL.MVMEN must be set to 1
3183 *
3184 * also, the manual doesn't mention it clearly but DCA hints
3185 * will only use queue 0's tags unless this bit is set. Side
3186 * effects of setting this bit are only that SRRCTL must be
3187 * fully programmed [0..15]
3188 */
3189 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3190 break;
3191 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003192 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003193 /* Disable RSC for ACK packets */
3194 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3195 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3196 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3197 /* hardware requires some bits to be set by default */
3198 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3199 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3200 break;
3201 default:
3202 /* We should do nothing since we don't know this hardware */
3203 return;
3204 }
3205
3206 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3207}
3208
Alexander Duyck477de6e2010-08-19 13:38:11 +00003209/**
3210 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3211 * @adapter: board private structure
3212 *
3213 * Configure the Rx unit of the MAC after a reset.
3214 **/
3215static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3216{
3217 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003218 int i;
3219 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003220
3221 /* disable receives while setting up the descriptors */
3222 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3223 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3224
3225 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003226 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003227
Alexander Duyck9e10e042010-08-19 13:40:06 +00003228 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003229 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003230
Alexander Duyck9e10e042010-08-19 13:40:06 +00003231 ixgbe_set_uta(adapter);
3232
Alexander Duyck477de6e2010-08-19 13:38:11 +00003233 /* set_rx_buffer_len must be called before ring initialization */
3234 ixgbe_set_rx_buffer_len(adapter);
3235
3236 /*
3237 * Setup the HW Rx Head and Tail Descriptor Pointers and
3238 * the Base and Length of the Rx Descriptor Ring
3239 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003240 for (i = 0; i < adapter->num_rx_queues; i++)
3241 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003242
Alexander Duyck9e10e042010-08-19 13:40:06 +00003243 /* disable drop enable for 82598 parts */
3244 if (hw->mac.type == ixgbe_mac_82598EB)
3245 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3246
3247 /* enable all receives */
3248 rxctrl |= IXGBE_RXCTRL_RXEN;
3249 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003250}
3251
Jiri Pirko8e586132011-12-08 19:52:37 -05003252static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003253{
3254 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003255 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003256 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003257
3258 /* add VID to filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003259 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003260 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003261
3262 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003263}
3264
Jiri Pirko8e586132011-12-08 19:52:37 -05003265static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003266{
3267 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003268 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003269 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003270
Auke Kok9a799d72007-09-15 14:07:45 -07003271 /* remove VID from filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003272 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003273 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003274
3275 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003276}
3277
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003278/**
3279 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3280 * @adapter: driver data
3281 */
3282static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3283{
3284 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003285 u32 vlnctrl;
3286
3287 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3288 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3289 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3290}
3291
3292/**
3293 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3294 * @adapter: driver data
3295 */
3296static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3297{
3298 struct ixgbe_hw *hw = &adapter->hw;
3299 u32 vlnctrl;
3300
3301 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3302 vlnctrl |= IXGBE_VLNCTRL_VFE;
3303 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3304 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3305}
3306
3307/**
3308 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3309 * @adapter: driver data
3310 */
3311static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3312{
3313 struct ixgbe_hw *hw = &adapter->hw;
3314 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003315 int i, j;
3316
3317 switch (hw->mac.type) {
3318 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003319 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3320 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003321 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3322 break;
3323 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003324 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003325 for (i = 0; i < adapter->num_rx_queues; i++) {
3326 j = adapter->rx_ring[i]->reg_idx;
3327 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3328 vlnctrl &= ~IXGBE_RXDCTL_VME;
3329 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3330 }
3331 break;
3332 default:
3333 break;
3334 }
3335}
3336
3337/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003338 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003339 * @adapter: driver data
3340 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003341static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003342{
3343 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003344 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003345 int i, j;
3346
3347 switch (hw->mac.type) {
3348 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003349 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3350 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003351 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3352 break;
3353 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003354 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003355 for (i = 0; i < adapter->num_rx_queues; i++) {
3356 j = adapter->rx_ring[i]->reg_idx;
3357 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3358 vlnctrl |= IXGBE_RXDCTL_VME;
3359 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3360 }
3361 break;
3362 default:
3363 break;
3364 }
3365}
3366
Auke Kok9a799d72007-09-15 14:07:45 -07003367static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3368{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003369 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003370
Jesse Grossf62bbb52010-10-20 13:56:10 +00003371 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3372
3373 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3374 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003375}
3376
3377/**
Alexander Duyck28500622010-06-15 09:25:48 +00003378 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3379 * @netdev: network interface device structure
3380 *
3381 * Writes unicast address list to the RAR table.
3382 * Returns: -ENOMEM on failure/insufficient address space
3383 * 0 on no addresses written
3384 * X on writing X addresses to the RAR table
3385 **/
3386static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3387{
3388 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3389 struct ixgbe_hw *hw = &adapter->hw;
3390 unsigned int vfn = adapter->num_vfs;
Greg Rosea1cbb152011-05-13 01:33:48 +00003391 unsigned int rar_entries = IXGBE_MAX_PF_MACVLANS;
Alexander Duyck28500622010-06-15 09:25:48 +00003392 int count = 0;
3393
3394 /* return ENOMEM indicating insufficient memory for addresses */
3395 if (netdev_uc_count(netdev) > rar_entries)
3396 return -ENOMEM;
3397
3398 if (!netdev_uc_empty(netdev) && rar_entries) {
3399 struct netdev_hw_addr *ha;
3400 /* return error if we do not support writing to RAR table */
3401 if (!hw->mac.ops.set_rar)
3402 return -ENOMEM;
3403
3404 netdev_for_each_uc_addr(ha, netdev) {
3405 if (!rar_entries)
3406 break;
3407 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
3408 vfn, IXGBE_RAH_AV);
3409 count++;
3410 }
3411 }
3412 /* write the addresses in reverse order to avoid write combining */
3413 for (; rar_entries > 0 ; rar_entries--)
3414 hw->mac.ops.clear_rar(hw, rar_entries);
3415
3416 return count;
3417}
3418
3419/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003420 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003421 * @netdev: network interface device structure
3422 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003423 * The set_rx_method entry point is called whenever the unicast/multicast
3424 * address list or the network interface flags are updated. This routine is
3425 * responsible for configuring the hardware for proper unicast, multicast and
3426 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003427 **/
Greg Rose7f870472010-01-09 02:25:29 +00003428void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003429{
3430 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3431 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003432 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3433 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003434
3435 /* Check for Promiscuous and All Multicast modes */
3436
3437 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3438
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003439 /* set all bits that we expect to always be set */
3440 fctrl |= IXGBE_FCTRL_BAM;
3441 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3442 fctrl |= IXGBE_FCTRL_PMCF;
3443
Alexander Duyck28500622010-06-15 09:25:48 +00003444 /* clear the bits we are changing the status of */
3445 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3446
Auke Kok9a799d72007-09-15 14:07:45 -07003447 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003448 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003449 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003450 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003451 /* don't hardware filter vlans in promisc mode */
3452 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003453 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003454 if (netdev->flags & IFF_ALLMULTI) {
3455 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003456 vmolr |= IXGBE_VMOLR_MPE;
3457 } else {
3458 /*
3459 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003460 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003461 * that we can at least receive multicast traffic
3462 */
3463 hw->mac.ops.update_mc_addr_list(hw, netdev);
3464 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003465 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003466 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003467 hw->addr_ctrl.user_set_promisc = false;
Alexander Duyck28500622010-06-15 09:25:48 +00003468 /*
3469 * Write addresses to available RAR registers, if there is not
3470 * sufficient space to store all the addresses then enable
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003471 * unicast promiscuous mode
Alexander Duyck28500622010-06-15 09:25:48 +00003472 */
3473 count = ixgbe_write_uc_addr_list(netdev);
3474 if (count < 0) {
3475 fctrl |= IXGBE_FCTRL_UPE;
3476 vmolr |= IXGBE_VMOLR_ROPE;
3477 }
3478 }
3479
3480 if (adapter->num_vfs) {
3481 ixgbe_restore_vf_multicasts(adapter);
3482 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(adapter->num_vfs)) &
3483 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3484 IXGBE_VMOLR_ROPE);
3485 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(adapter->num_vfs), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003486 }
3487
3488 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003489
3490 if (netdev->features & NETIF_F_HW_VLAN_RX)
3491 ixgbe_vlan_strip_enable(adapter);
3492 else
3493 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003494}
3495
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003496static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3497{
3498 int q_idx;
3499 struct ixgbe_q_vector *q_vector;
3500 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3501
3502 /* legacy and MSI only use one vector */
3503 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3504 q_vectors = 1;
3505
3506 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003507 q_vector = adapter->q_vector[q_idx];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00003508 napi_enable(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003509 }
3510}
3511
3512static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3513{
3514 int q_idx;
3515 struct ixgbe_q_vector *q_vector;
3516 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3517
3518 /* legacy and MSI only use one vector */
3519 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3520 q_vectors = 1;
3521
3522 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003523 q_vector = adapter->q_vector[q_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003524 napi_disable(&q_vector->napi);
3525 }
3526}
3527
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003528#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08003529/*
3530 * ixgbe_configure_dcb - Configure DCB hardware
3531 * @adapter: ixgbe adapter struct
3532 *
3533 * This is called by the driver on open to configure the DCB hardware.
3534 * This is also called by the gennetlink interface when reconfiguring
3535 * the DCB state.
3536 */
3537static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3538{
3539 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend98063072010-10-28 00:59:57 +00003540 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003541
Alexander Duyck67ebd792010-08-19 13:34:04 +00003542 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3543 if (hw->mac.type == ixgbe_mac_82598EB)
3544 netif_set_gso_max_size(adapter->netdev, 65536);
3545 return;
3546 }
3547
3548 if (hw->mac.type == ixgbe_mac_82598EB)
3549 netif_set_gso_max_size(adapter->netdev, 32768);
3550
Alexander Duyck2f90b862008-11-20 20:52:10 -08003551
Alexander Duyck2f90b862008-11-20 20:52:10 -08003552 /* Enable VLAN tag insert/strip */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003553 adapter->netdev->features |= NETIF_F_HW_VLAN_RX;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003554
Alexander Duyck2f90b862008-11-20 20:52:10 -08003555 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003556
John Fastabendb1208182011-10-15 05:00:10 +00003557#ifdef IXGBE_FCOE
3558 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3559 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3560#endif
3561
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003562 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003563 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003564 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3565 DCB_TX_CONFIG);
3566 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3567 DCB_RX_CONFIG);
3568 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003569 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3570 ixgbe_dcb_hw_ets(&adapter->hw,
3571 adapter->ixgbe_ieee_ets,
3572 max_frame);
3573 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3574 adapter->ixgbe_ieee_pfc->pfc_en,
3575 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003576 }
John Fastabend8187cd42011-02-23 05:58:08 +00003577
3578 /* Enable RSS Hash per TC */
3579 if (hw->mac.type != ixgbe_mac_82598EB) {
3580 int i;
3581 u32 reg = 0;
3582
3583 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
3584 u8 msb = 0;
3585 u8 cnt = adapter->netdev->tc_to_txq[i].count;
3586
3587 while (cnt >>= 1)
3588 msb++;
3589
3590 reg |= msb << IXGBE_RQTC_SHIFT_TC(i);
3591 }
3592 IXGBE_WRITE_REG(hw, IXGBE_RQTC, reg);
3593 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003594}
John Fastabend9da712d2011-08-23 03:14:22 +00003595#endif
3596
3597/* Additional bittime to account for IXGBE framing */
3598#define IXGBE_ETH_FRAMING 20
3599
3600/*
3601 * ixgbe_hpbthresh - calculate high water mark for flow control
3602 *
3603 * @adapter: board private structure to calculate for
3604 * @pb - packet buffer to calculate
3605 */
3606static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
3607{
3608 struct ixgbe_hw *hw = &adapter->hw;
3609 struct net_device *dev = adapter->netdev;
3610 int link, tc, kb, marker;
3611 u32 dv_id, rx_pba;
3612
3613 /* Calculate max LAN frame size */
3614 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
3615
3616#ifdef IXGBE_FCOE
3617 /* FCoE traffic class uses FCOE jumbo frames */
3618 if (dev->features & NETIF_F_FCOE_MTU) {
3619 int fcoe_pb = 0;
3620
3621#ifdef CONFIG_IXGBE_DCB
3622 fcoe_pb = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003623
3624#endif
John Fastabend9da712d2011-08-23 03:14:22 +00003625 if (fcoe_pb == pb && tc < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3626 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3627 }
3628#endif
3629
3630 /* Calculate delay value for device */
3631 switch (hw->mac.type) {
3632 case ixgbe_mac_X540:
3633 dv_id = IXGBE_DV_X540(link, tc);
3634 break;
3635 default:
3636 dv_id = IXGBE_DV(link, tc);
3637 break;
3638 }
3639
3640 /* Loopback switch introduces additional latency */
3641 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3642 dv_id += IXGBE_B2BT(tc);
3643
3644 /* Delay value is calculated in bit times convert to KB */
3645 kb = IXGBE_BT2KB(dv_id);
3646 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
3647
3648 marker = rx_pba - kb;
3649
3650 /* It is possible that the packet buffer is not large enough
3651 * to provide required headroom. In this case throw an error
3652 * to user and a do the best we can.
3653 */
3654 if (marker < 0) {
3655 e_warn(drv, "Packet Buffer(%i) can not provide enough"
3656 "headroom to support flow control."
3657 "Decrease MTU or number of traffic classes\n", pb);
3658 marker = tc + 1;
3659 }
3660
3661 return marker;
3662}
3663
3664/*
3665 * ixgbe_lpbthresh - calculate low water mark for for flow control
3666 *
3667 * @adapter: board private structure to calculate for
3668 * @pb - packet buffer to calculate
3669 */
3670static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
3671{
3672 struct ixgbe_hw *hw = &adapter->hw;
3673 struct net_device *dev = adapter->netdev;
3674 int tc;
3675 u32 dv_id;
3676
3677 /* Calculate max LAN frame size */
3678 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3679
3680 /* Calculate delay value for device */
3681 switch (hw->mac.type) {
3682 case ixgbe_mac_X540:
3683 dv_id = IXGBE_LOW_DV_X540(tc);
3684 break;
3685 default:
3686 dv_id = IXGBE_LOW_DV(tc);
3687 break;
3688 }
3689
3690 /* Delay value is calculated in bit times convert to KB */
3691 return IXGBE_BT2KB(dv_id);
3692}
3693
3694/*
3695 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3696 */
3697static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
3698{
3699 struct ixgbe_hw *hw = &adapter->hw;
3700 int num_tc = netdev_get_num_tc(adapter->netdev);
3701 int i;
3702
3703 if (!num_tc)
3704 num_tc = 1;
3705
3706 hw->fc.low_water = ixgbe_lpbthresh(adapter);
3707
3708 for (i = 0; i < num_tc; i++) {
3709 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
3710
3711 /* Low water marks must not be larger than high water marks */
3712 if (hw->fc.low_water > hw->fc.high_water[i])
3713 hw->fc.low_water = 0;
3714 }
3715}
John Fastabend80605c652011-05-02 12:34:10 +00003716
3717static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3718{
John Fastabend80605c652011-05-02 12:34:10 +00003719 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00003720 int hdrm;
3721 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00003722
3723 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3724 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00003725 hdrm = 32 << adapter->fdir_pballoc;
3726 else
3727 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00003728
Alexander Duyckf7e10272011-07-21 00:40:35 +00003729 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00003730 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00003731}
3732
Alexander Duycke4911d52011-05-11 07:18:52 +00003733static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3734{
3735 struct ixgbe_hw *hw = &adapter->hw;
3736 struct hlist_node *node, *node2;
3737 struct ixgbe_fdir_filter *filter;
3738
3739 spin_lock(&adapter->fdir_perfect_lock);
3740
3741 if (!hlist_empty(&adapter->fdir_filter_list))
3742 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3743
3744 hlist_for_each_entry_safe(filter, node, node2,
3745 &adapter->fdir_filter_list, fdir_node) {
3746 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003747 &filter->filter,
3748 filter->sw_idx,
3749 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3750 IXGBE_FDIR_DROP_QUEUE :
3751 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003752 }
3753
3754 spin_unlock(&adapter->fdir_perfect_lock);
3755}
3756
Auke Kok9a799d72007-09-15 14:07:45 -07003757static void ixgbe_configure(struct ixgbe_adapter *adapter)
3758{
John Fastabend80605c652011-05-02 12:34:10 +00003759 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003760#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003761 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003762#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003763
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003764 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003765 ixgbe_restore_vlan(adapter);
3766
Yi Zoueacd73f2009-05-13 13:11:06 +00003767#ifdef IXGBE_FCOE
3768 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
3769 ixgbe_configure_fcoe(adapter);
3770
3771#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003772 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003773 ixgbe_init_fdir_signature_82599(&adapter->hw,
3774 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003775 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3776 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3777 adapter->fdir_pballoc);
3778 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003779 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003780
Alexander Duyck933d41f2010-09-07 21:34:29 +00003781 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003782
Auke Kok9a799d72007-09-15 14:07:45 -07003783 ixgbe_configure_tx(adapter);
3784 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003785}
3786
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003787static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3788{
3789 switch (hw->phy.type) {
3790 case ixgbe_phy_sfp_avago:
3791 case ixgbe_phy_sfp_ftl:
3792 case ixgbe_phy_sfp_intel:
3793 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003794 case ixgbe_phy_sfp_passive_tyco:
3795 case ixgbe_phy_sfp_passive_unknown:
3796 case ixgbe_phy_sfp_active_unknown:
3797 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003798 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00003799 case ixgbe_phy_nl:
3800 if (hw->mac.type == ixgbe_mac_82598EB)
3801 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003802 default:
3803 return false;
3804 }
3805}
3806
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003807/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003808 * ixgbe_sfp_link_config - set up SFP+ link
3809 * @adapter: pointer to private adapter struct
3810 **/
3811static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3812{
Alexander Duyck70864002011-04-27 09:13:56 +00003813 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003814 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00003815 * is that an SFP was inserted/removed after the reset
3816 * but before SFP detection was enabled. As such the best
3817 * solution is to just start searching as soon as we start
3818 */
3819 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3820 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003821
Alexander Duyck70864002011-04-27 09:13:56 +00003822 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003823}
3824
3825/**
3826 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003827 * @hw: pointer to private hardware struct
3828 *
3829 * Returns 0 on success, negative on failure
3830 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003831static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003832{
3833 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003834 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003835 u32 ret = IXGBE_ERR_LINK_SETUP;
3836
3837 if (hw->mac.ops.check_link)
3838 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3839
3840 if (ret)
3841 goto link_cfg_out;
3842
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003843 autoneg = hw->phy.autoneg_advertised;
3844 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003845 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3846 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003847 if (ret)
3848 goto link_cfg_out;
3849
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003850 if (hw->mac.ops.setup_link)
3851 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003852link_cfg_out:
3853 return ret;
3854}
3855
Alexander Duycka34bcff2010-08-19 13:39:20 +00003856static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003857{
Auke Kok9a799d72007-09-15 14:07:45 -07003858 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003859 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003860
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003861 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003862 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3863 IXGBE_GPIE_OCD;
3864 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003865 /*
3866 * use EIAM to auto-mask when MSI-X interrupt is asserted
3867 * this saves a register write for every interrupt
3868 */
3869 switch (hw->mac.type) {
3870 case ixgbe_mac_82598EB:
3871 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3872 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003873 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003874 case ixgbe_mac_X540:
3875 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003876 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3877 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3878 break;
3879 }
3880 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003881 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3882 * specifically only auto mask tx and rx interrupts */
3883 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003884 }
3885
Alexander Duycka34bcff2010-08-19 13:39:20 +00003886 /* XXX: to interrupt immediately for EICS writes, enable this */
3887 /* gpie |= IXGBE_GPIE_EIMEN; */
3888
3889 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3890 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
3891 gpie |= IXGBE_GPIE_VTMODE_64;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003892 }
3893
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003894 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00003895 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
3896 switch (adapter->hw.mac.type) {
3897 case ixgbe_mac_82599EB:
3898 gpie |= IXGBE_SDP0_GPIEN;
3899 break;
3900 case ixgbe_mac_X540:
3901 gpie |= IXGBE_EIMS_TS;
3902 break;
3903 default:
3904 break;
3905 }
3906 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003907
Alexander Duycka34bcff2010-08-19 13:39:20 +00003908 /* Enable fan failure interrupt */
3909 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003910 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003911
Don Skidmore2698b202011-04-13 07:01:52 +00003912 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003913 gpie |= IXGBE_SDP1_GPIEN;
3914 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00003915 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00003916
3917 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3918}
3919
Alexander Duyckc7ccde02011-07-21 00:40:40 +00003920static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00003921{
3922 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003923 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003924 u32 ctrl_ext;
3925
3926 ixgbe_get_hw_control(adapter);
3927 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003928
Auke Kok9a799d72007-09-15 14:07:45 -07003929 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
3930 ixgbe_configure_msix(adapter);
3931 else
3932 ixgbe_configure_msi_and_legacy(adapter);
3933
Don Skidmorec6ecf392010-12-03 03:31:51 +00003934 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
3935 if (hw->mac.ops.enable_tx_laser &&
3936 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00003937 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00003938 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00003939 hw->mac.ops.enable_tx_laser(hw);
3940
Auke Kok9a799d72007-09-15 14:07:45 -07003941 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003942 ixgbe_napi_enable_all(adapter);
3943
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003944 if (ixgbe_is_sfp(hw)) {
3945 ixgbe_sfp_link_config(adapter);
3946 } else {
3947 err = ixgbe_non_sfp_link_config(hw);
3948 if (err)
3949 e_err(probe, "link_config FAILED %d\n", err);
3950 }
3951
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003952 /* clear any pending interrupts, may auto mask */
3953 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003954 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07003955
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003956 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00003957 * If this adapter has a fan, check to see if we had a failure
3958 * before we enabled the interrupt.
3959 */
3960 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
3961 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3962 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00003963 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00003964 }
3965
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003966 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003967 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003968
Auke Kok9a799d72007-09-15 14:07:45 -07003969 /* bring the link up in the watchdog, this could race with our first
3970 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003971 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3972 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00003973 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00003974
3975 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
3976 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
3977 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
3978 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07003979}
3980
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003981void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
3982{
3983 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00003984 /* put off any impending NetWatchDogTimeout */
3985 adapter->netdev->trans_start = jiffies;
3986
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003987 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00003988 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003989 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00003990 /*
3991 * If SR-IOV enabled then wait a bit before bringing the adapter
3992 * back up to give the VFs time to respond to the reset. The
3993 * two second wait is based upon the watchdog timer cycle in
3994 * the VF driver.
3995 */
3996 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3997 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003998 ixgbe_up(adapter);
3999 clear_bit(__IXGBE_RESETTING, &adapter->state);
4000}
4001
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004002void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004003{
4004 /* hardware has been reset, we need to reload some things */
4005 ixgbe_configure(adapter);
4006
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004007 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004008}
4009
4010void ixgbe_reset(struct ixgbe_adapter *adapter)
4011{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004012 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004013 int err;
4014
Alexander Duyck70864002011-04-27 09:13:56 +00004015 /* lock SFP init bit to prevent race conditions with the watchdog */
4016 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4017 usleep_range(1000, 2000);
4018
4019 /* clear all SFP and link config related flags while holding SFP_INIT */
4020 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4021 IXGBE_FLAG2_SFP_NEEDS_RESET);
4022 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4023
Don Skidmore8ca783a2009-05-26 20:40:47 -07004024 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004025 switch (err) {
4026 case 0:
4027 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004028 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004029 break;
4030 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004031 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004032 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004033 case IXGBE_ERR_EEPROM_VERSION:
4034 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004035 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004036 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00004037 "your hardware. If you are experiencing problems "
4038 "please contact your Intel or hardware "
4039 "representative who provided you with this "
4040 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004041 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004042 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004043 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004044 }
Auke Kok9a799d72007-09-15 14:07:45 -07004045
Alexander Duyck70864002011-04-27 09:13:56 +00004046 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4047
Auke Kok9a799d72007-09-15 14:07:45 -07004048 /* reprogram the RAR[0] in case user changed it. */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004049 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
4050 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07004051}
4052
Auke Kok9a799d72007-09-15 14:07:45 -07004053/**
4054 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004055 * @rx_ring: ring to free buffers from
4056 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004057static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004058{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004059 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004060 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004061 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004062
Alexander Duyck84418e32010-08-19 13:40:54 +00004063 /* ring already cleared, nothing to do */
4064 if (!rx_ring->rx_buffer_info)
4065 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004066
Alexander Duyck84418e32010-08-19 13:40:54 +00004067 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004068 for (i = 0; i < rx_ring->count; i++) {
4069 struct ixgbe_rx_buffer *rx_buffer_info;
4070
4071 rx_buffer_info = &rx_ring->rx_buffer_info[i];
4072 if (rx_buffer_info->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004073 dma_unmap_single(rx_ring->dev, rx_buffer_info->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00004074 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00004075 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07004076 rx_buffer_info->dma = 0;
4077 }
4078 if (rx_buffer_info->skb) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00004079 struct sk_buff *skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07004080 rx_buffer_info->skb = NULL;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00004081 /* We need to clean up RSC frag lists */
4082 skb = ixgbe_merge_active_tail(skb);
4083 ixgbe_close_active_frag_list(skb);
4084 if (IXGBE_CB(skb)->delay_unmap) {
4085 dma_unmap_single(dev,
4086 IXGBE_CB(skb)->dma,
4087 rx_ring->rx_buf_len,
4088 DMA_FROM_DEVICE);
4089 IXGBE_CB(skb)->dma = 0;
4090 IXGBE_CB(skb)->delay_unmap = false;
4091 }
4092 dev_kfree_skb(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07004093 }
4094 if (!rx_buffer_info->page)
4095 continue;
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00004096 if (rx_buffer_info->page_dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004097 dma_unmap_page(dev, rx_buffer_info->page_dma,
Nick Nunley1b507732010-04-27 13:10:27 +00004098 PAGE_SIZE / 2, DMA_FROM_DEVICE);
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00004099 rx_buffer_info->page_dma = 0;
4100 }
Auke Kok9a799d72007-09-15 14:07:45 -07004101 put_page(rx_buffer_info->page);
4102 rx_buffer_info->page = NULL;
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07004103 rx_buffer_info->page_offset = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004104 }
4105
4106 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4107 memset(rx_ring->rx_buffer_info, 0, size);
4108
4109 /* Zero out the descriptor ring */
4110 memset(rx_ring->desc, 0, rx_ring->size);
4111
4112 rx_ring->next_to_clean = 0;
4113 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004114}
4115
4116/**
4117 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004118 * @tx_ring: ring to be cleaned
4119 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004120static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004121{
4122 struct ixgbe_tx_buffer *tx_buffer_info;
4123 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004124 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004125
Alexander Duyck84418e32010-08-19 13:40:54 +00004126 /* ring already cleared, nothing to do */
4127 if (!tx_ring->tx_buffer_info)
4128 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004129
Alexander Duyck84418e32010-08-19 13:40:54 +00004130 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004131 for (i = 0; i < tx_ring->count; i++) {
4132 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004133 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004134 }
4135
4136 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4137 memset(tx_ring->tx_buffer_info, 0, size);
4138
4139 /* Zero out the descriptor ring */
4140 memset(tx_ring->desc, 0, tx_ring->size);
4141
4142 tx_ring->next_to_use = 0;
4143 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004144}
4145
4146/**
Auke Kok9a799d72007-09-15 14:07:45 -07004147 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4148 * @adapter: board private structure
4149 **/
4150static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4151{
4152 int i;
4153
4154 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004155 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004156}
4157
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004158/**
4159 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4160 * @adapter: board private structure
4161 **/
4162static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4163{
4164 int i;
4165
4166 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004167 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004168}
4169
Alexander Duycke4911d52011-05-11 07:18:52 +00004170static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4171{
4172 struct hlist_node *node, *node2;
4173 struct ixgbe_fdir_filter *filter;
4174
4175 spin_lock(&adapter->fdir_perfect_lock);
4176
4177 hlist_for_each_entry_safe(filter, node, node2,
4178 &adapter->fdir_filter_list, fdir_node) {
4179 hlist_del(&filter->fdir_node);
4180 kfree(filter);
4181 }
4182 adapter->fdir_filter_count = 0;
4183
4184 spin_unlock(&adapter->fdir_perfect_lock);
4185}
4186
Auke Kok9a799d72007-09-15 14:07:45 -07004187void ixgbe_down(struct ixgbe_adapter *adapter)
4188{
4189 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004190 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004191 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004192 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004193
4194 /* signal that we are down to the interrupt handler */
4195 set_bit(__IXGBE_DOWN, &adapter->state);
4196
4197 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004198 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4199 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004200
Yi Zou2d39d572011-01-06 14:29:56 +00004201 /* disable all enabled rx queues */
4202 for (i = 0; i < adapter->num_rx_queues; i++)
4203 /* this call also flushes the previous write */
4204 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4205
Don Skidmore032b4322011-03-18 09:32:53 +00004206 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004207
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004208 netif_tx_stop_all_queues(netdev);
4209
Alexander Duyck70864002011-04-27 09:13:56 +00004210 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004211 netif_carrier_off(netdev);
4212 netif_tx_disable(netdev);
4213
4214 ixgbe_irq_disable(adapter);
4215
4216 ixgbe_napi_disable_all(adapter);
4217
Alexander Duyckd034acf2011-04-27 09:25:34 +00004218 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4219 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004220 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4221
4222 del_timer_sync(&adapter->service_timer);
4223
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004224 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004225 /* Clear EITR Select mapping */
4226 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4227
4228 /* Mark all the VFs as inactive */
4229 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004230 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004231
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004232 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004233 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004234
Auke Kok9a799d72007-09-15 14:07:45 -07004235 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004236 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004237 }
4238
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004239 /* disable transmits in the hardware now that interrupts are off */
4240 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004241 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004242 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004243 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004244
4245 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004246 switch (hw->mac.type) {
4247 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004248 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004249 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004250 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4251 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004252 break;
4253 default:
4254 break;
4255 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004256
Paul Larson6f4a0e42008-06-24 17:00:56 -07004257 if (!pci_channel_offline(adapter->pdev))
4258 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004259
4260 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4261 if (hw->mac.ops.disable_tx_laser &&
4262 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004263 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004264 (hw->mac.type == ixgbe_mac_82599EB))))
4265 hw->mac.ops.disable_tx_laser(hw);
4266
Auke Kok9a799d72007-09-15 14:07:45 -07004267 ixgbe_clean_all_tx_rings(adapter);
4268 ixgbe_clean_all_rx_rings(adapter);
4269
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004270#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004271 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004272 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004273#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004274}
4275
Auke Kok9a799d72007-09-15 14:07:45 -07004276/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004277 * ixgbe_poll - NAPI Rx polling callback
4278 * @napi: structure for representing this polling device
4279 * @budget: how many packets driver is allowed to clean
4280 *
4281 * This function is used for legacy and MSI, NAPI mode
Auke Kok9a799d72007-09-15 14:07:45 -07004282 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004283static int ixgbe_poll(struct napi_struct *napi, int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07004284{
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004285 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00004286 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004287 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004288 struct ixgbe_ring *ring;
4289 int per_ring_budget;
4290 bool clean_complete = true;
Auke Kok9a799d72007-09-15 14:07:45 -07004291
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004292#ifdef CONFIG_IXGBE_DCA
Alexander Duyck33cf09c2010-11-16 19:26:55 -08004293 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
4294 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08004295#endif
4296
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004297 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
4298 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004299
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004300 /* attempt to distribute budget to each queue fairly, but don't allow
4301 * the budget to go below 1 because we'll exit polling */
4302 if (q_vector->rx.count > 1)
4303 per_ring_budget = max(budget/q_vector->rx.count, 1);
4304 else
4305 per_ring_budget = budget;
David S. Millerd2c7ddd2008-01-15 22:43:24 -08004306
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004307 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
4308 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
4309 per_ring_budget);
4310
4311 /* If all work not completed, return budget and keep polling */
4312 if (!clean_complete)
4313 return budget;
4314
4315 /* all work done, exit the polling mode */
4316 napi_complete(napi);
4317 if (adapter->rx_itr_setting & 1)
4318 ixgbe_set_itr(q_vector);
4319 if (!test_bit(__IXGBE_DOWN, &adapter->state))
4320 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
4321
4322 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004323}
4324
4325/**
4326 * ixgbe_tx_timeout - Respond to a Tx Hang
4327 * @netdev: network interface device structure
4328 **/
4329static void ixgbe_tx_timeout(struct net_device *netdev)
4330{
4331 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4332
4333 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004334 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004335}
4336
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004337/**
4338 * ixgbe_set_rss_queues: Allocate queues for RSS
4339 * @adapter: board private structure to initialize
4340 *
4341 * This is our "base" multiqueue mode. RSS (Receive Side Scaling) will try
4342 * to allocate one Rx queue per CPU, and if available, one Tx queue per CPU.
4343 *
4344 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004345static inline bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter)
4346{
4347 bool ret = false;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004348 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_RSS];
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004349
4350 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004351 f->mask = 0xF;
4352 adapter->num_rx_queues = f->indices;
4353 adapter->num_tx_queues = f->indices;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004354 ret = true;
4355 } else {
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004356 ret = false;
4357 }
4358
4359 return ret;
4360}
4361
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004362/**
4363 * ixgbe_set_fdir_queues: Allocate queues for Flow Director
4364 * @adapter: board private structure to initialize
4365 *
4366 * Flow Director is an advanced Rx filter, attempting to get Rx flows back
4367 * to the original CPU that initiated the Tx session. This runs in addition
4368 * to RSS, so if a packet doesn't match an FDIR filter, we can still spread the
4369 * Rx load across CPUs using RSS.
4370 *
4371 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004372static inline bool ixgbe_set_fdir_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004373{
4374 bool ret = false;
4375 struct ixgbe_ring_feature *f_fdir = &adapter->ring_feature[RING_F_FDIR];
4376
4377 f_fdir->indices = min((int)num_online_cpus(), f_fdir->indices);
4378 f_fdir->mask = 0;
4379
4380 /* Flow Director must have RSS enabled */
Alexander Duyck03ecf912011-05-20 07:36:17 +00004381 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4382 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004383 adapter->num_tx_queues = f_fdir->indices;
4384 adapter->num_rx_queues = f_fdir->indices;
4385 ret = true;
4386 } else {
4387 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004388 }
4389 return ret;
4390}
4391
Yi Zou0331a832009-05-17 12:33:52 +00004392#ifdef IXGBE_FCOE
4393/**
4394 * ixgbe_set_fcoe_queues: Allocate queues for Fiber Channel over Ethernet (FCoE)
4395 * @adapter: board private structure to initialize
4396 *
4397 * FCoE RX FCRETA can use up to 8 rx queues for up to 8 different exchanges.
4398 * The ring feature mask is not used as a mask for FCoE, as it can take any 8
4399 * rx queues out of the max number of rx queues, instead, it is used as the
4400 * index of the first rx queue used by FCoE.
4401 *
4402 **/
4403static inline bool ixgbe_set_fcoe_queues(struct ixgbe_adapter *adapter)
4404{
Yi Zou0331a832009-05-17 12:33:52 +00004405 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
4406
John Fastabende5b64632011-03-08 03:44:52 +00004407 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4408 return false;
4409
John Fastabende901acd2011-04-26 07:26:08 +00004410 f->indices = min((int)num_online_cpus(), f->indices);
John Fastabende5b64632011-03-08 03:44:52 +00004411
John Fastabende901acd2011-04-26 07:26:08 +00004412 adapter->num_rx_queues = 1;
4413 adapter->num_tx_queues = 1;
John Fastabende5b64632011-03-08 03:44:52 +00004414
John Fastabende901acd2011-04-26 07:26:08 +00004415 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
4416 e_info(probe, "FCoE enabled with RSS\n");
Alexander Duyck03ecf912011-05-20 07:36:17 +00004417 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
John Fastabende901acd2011-04-26 07:26:08 +00004418 ixgbe_set_fdir_queues(adapter);
4419 else
4420 ixgbe_set_rss_queues(adapter);
Yi Zou0331a832009-05-17 12:33:52 +00004421 }
Alexander Duyck03ecf912011-05-20 07:36:17 +00004422
John Fastabende901acd2011-04-26 07:26:08 +00004423 /* adding FCoE rx rings to the end */
4424 f->mask = adapter->num_rx_queues;
4425 adapter->num_rx_queues += f->indices;
4426 adapter->num_tx_queues += f->indices;
Yi Zou0331a832009-05-17 12:33:52 +00004427
John Fastabende5b64632011-03-08 03:44:52 +00004428 return true;
4429}
4430#endif /* IXGBE_FCOE */
4431
John Fastabende901acd2011-04-26 07:26:08 +00004432/* Artificial max queue cap per traffic class in DCB mode */
4433#define DCB_QUEUE_CAP 8
4434
John Fastabende5b64632011-03-08 03:44:52 +00004435#ifdef CONFIG_IXGBE_DCB
4436static inline bool ixgbe_set_dcb_queues(struct ixgbe_adapter *adapter)
4437{
John Fastabende901acd2011-04-26 07:26:08 +00004438 int per_tc_q, q, i, offset = 0;
4439 struct net_device *dev = adapter->netdev;
4440 int tcs = netdev_get_num_tc(dev);
John Fastabende5b64632011-03-08 03:44:52 +00004441
John Fastabende901acd2011-04-26 07:26:08 +00004442 if (!tcs)
4443 return false;
John Fastabende5b64632011-03-08 03:44:52 +00004444
John Fastabende901acd2011-04-26 07:26:08 +00004445 /* Map queue offset and counts onto allocated tx queues */
4446 per_tc_q = min(dev->num_tx_queues / tcs, (unsigned int)DCB_QUEUE_CAP);
4447 q = min((int)num_online_cpus(), per_tc_q);
John Fastabend8b1c0b22011-05-03 02:26:48 +00004448
John Fastabend8b1c0b22011-05-03 02:26:48 +00004449 for (i = 0; i < tcs; i++) {
John Fastabende901acd2011-04-26 07:26:08 +00004450 netdev_set_tc_queue(dev, i, q, offset);
4451 offset += q;
John Fastabende5b64632011-03-08 03:44:52 +00004452 }
4453
John Fastabende901acd2011-04-26 07:26:08 +00004454 adapter->num_tx_queues = q * tcs;
4455 adapter->num_rx_queues = q * tcs;
John Fastabende5b64632011-03-08 03:44:52 +00004456
4457#ifdef IXGBE_FCOE
John Fastabende901acd2011-04-26 07:26:08 +00004458 /* FCoE enabled queues require special configuration indexed
4459 * by feature specific indices and mask. Here we map FCoE
4460 * indices onto the DCB queue pairs allowing FCoE to own
4461 * configuration later.
John Fastabende5b64632011-03-08 03:44:52 +00004462 */
John Fastabende901acd2011-04-26 07:26:08 +00004463 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
4464 int tc;
4465 struct ixgbe_ring_feature *f =
4466 &adapter->ring_feature[RING_F_FCOE];
4467
4468 tc = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
4469 f->indices = dev->tc_to_txq[tc].count;
4470 f->mask = dev->tc_to_txq[tc].offset;
4471 }
John Fastabende5b64632011-03-08 03:44:52 +00004472#endif
4473
John Fastabende901acd2011-04-26 07:26:08 +00004474 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004475}
John Fastabende5b64632011-03-08 03:44:52 +00004476#endif
Yi Zou0331a832009-05-17 12:33:52 +00004477
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004478/**
4479 * ixgbe_set_sriov_queues: Allocate queues for IOV use
4480 * @adapter: board private structure to initialize
4481 *
4482 * IOV doesn't actually use anything, so just NAK the
4483 * request for now and let the other queue routines
4484 * figure out what to do.
4485 */
4486static inline bool ixgbe_set_sriov_queues(struct ixgbe_adapter *adapter)
4487{
4488 return false;
4489}
4490
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004491/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004492 * ixgbe_set_num_queues: Allocate queues for device, feature dependent
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004493 * @adapter: board private structure to initialize
4494 *
4495 * This is the top level queue allocation routine. The order here is very
4496 * important, starting with the "most" number of features turned on at once,
4497 * and ending with the smallest set of features. This way large combinations
4498 * can be allocated if they're turned on, and smaller combinations are the
4499 * fallthrough conditions.
4500 *
4501 **/
Ben Hutchings847f53f2010-09-27 08:28:56 +00004502static int ixgbe_set_num_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004503{
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004504 /* Start with base case */
4505 adapter->num_rx_queues = 1;
4506 adapter->num_tx_queues = 1;
4507 adapter->num_rx_pools = adapter->num_rx_queues;
4508 adapter->num_rx_queues_per_pool = 1;
4509
4510 if (ixgbe_set_sriov_queues(adapter))
Ben Hutchings847f53f2010-09-27 08:28:56 +00004511 goto done;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004512
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004513#ifdef CONFIG_IXGBE_DCB
4514 if (ixgbe_set_dcb_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004515 goto done;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004516
4517#endif
John Fastabende5b64632011-03-08 03:44:52 +00004518#ifdef IXGBE_FCOE
4519 if (ixgbe_set_fcoe_queues(adapter))
4520 goto done;
4521
4522#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004523 if (ixgbe_set_fdir_queues(adapter))
4524 goto done;
4525
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004526 if (ixgbe_set_rss_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004527 goto done;
4528
4529 /* fallback to base case */
4530 adapter->num_rx_queues = 1;
4531 adapter->num_tx_queues = 1;
4532
4533done:
Ben Hutchings847f53f2010-09-27 08:28:56 +00004534 /* Notify the stack of the (possibly) reduced queue counts. */
John Fastabendf0796d52010-07-01 13:21:57 +00004535 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
Ben Hutchings847f53f2010-09-27 08:28:56 +00004536 return netif_set_real_num_rx_queues(adapter->netdev,
4537 adapter->num_rx_queues);
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004538}
4539
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004540static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00004541 int vectors)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004542{
4543 int err, vector_threshold;
4544
4545 /* We'll want at least 3 (vector_threshold):
4546 * 1) TxQ[0] Cleanup
4547 * 2) RxQ[0] Cleanup
4548 * 3) Other (Link Status Change, etc.)
4549 * 4) TCP Timer (optional)
4550 */
4551 vector_threshold = MIN_MSIX_COUNT;
4552
4553 /* The more we get, the more we will assign to Tx/Rx Cleanup
4554 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
4555 * Right now, we simply care about how many we'll get; we'll
4556 * set them up later while requesting irq's.
4557 */
4558 while (vectors >= vector_threshold) {
4559 err = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Joe Perchese8e9f692010-09-07 21:34:53 +00004560 vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004561 if (!err) /* Success in acquiring all requested vectors. */
4562 break;
4563 else if (err < 0)
4564 vectors = 0; /* Nasty failure, quit now */
4565 else /* err == number of vectors we should try again with */
4566 vectors = err;
4567 }
4568
4569 if (vectors < vector_threshold) {
4570 /* Can't allocate enough MSI-X interrupts? Oh well.
4571 * This just means we'll go with either a single MSI
4572 * vector or fall back to legacy interrupts.
4573 */
Emil Tantilov849c4542010-06-03 16:53:41 +00004574 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4575 "Unable to allocate MSI-X interrupts\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004576 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4577 kfree(adapter->msix_entries);
4578 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004579 } else {
4580 adapter->flags |= IXGBE_FLAG_MSIX_ENABLED; /* Woot! */
Peter P Waskiewicz Jreb7f1392009-02-01 01:18:58 -08004581 /*
4582 * Adjust for only the vectors we'll use, which is minimum
4583 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
4584 * vectors we were allocated.
4585 */
4586 adapter->num_msix_vectors = min(vectors,
Joe Perchese8e9f692010-09-07 21:34:53 +00004587 adapter->max_msix_q_vectors + NON_Q_VECTORS);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004588 }
4589}
4590
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004591/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004592 * ixgbe_cache_ring_rss - Descriptor ring to register mapping for RSS
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004593 * @adapter: board private structure to initialize
4594 *
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004595 * Cache the descriptor ring offsets for RSS to the assigned rings.
4596 *
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004597 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004598static inline bool ixgbe_cache_ring_rss(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004599{
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004600 int i;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004601
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004602 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
4603 return false;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004604
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004605 for (i = 0; i < adapter->num_rx_queues; i++)
4606 adapter->rx_ring[i]->reg_idx = i;
4607 for (i = 0; i < adapter->num_tx_queues; i++)
4608 adapter->tx_ring[i]->reg_idx = i;
4609
4610 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004611}
4612
4613#ifdef CONFIG_IXGBE_DCB
John Fastabende5b64632011-03-08 03:44:52 +00004614
4615/* ixgbe_get_first_reg_idx - Return first register index associated with ring */
John Fastabendb32c8dc2011-04-12 02:44:55 +00004616static void ixgbe_get_first_reg_idx(struct ixgbe_adapter *adapter, u8 tc,
4617 unsigned int *tx, unsigned int *rx)
John Fastabende5b64632011-03-08 03:44:52 +00004618{
4619 struct net_device *dev = adapter->netdev;
4620 struct ixgbe_hw *hw = &adapter->hw;
4621 u8 num_tcs = netdev_get_num_tc(dev);
4622
4623 *tx = 0;
4624 *rx = 0;
4625
4626 switch (hw->mac.type) {
4627 case ixgbe_mac_82598EB:
John Fastabendaba70d52011-04-26 07:26:14 +00004628 *tx = tc << 2;
4629 *rx = tc << 3;
John Fastabende5b64632011-03-08 03:44:52 +00004630 break;
4631 case ixgbe_mac_82599EB:
4632 case ixgbe_mac_X540:
John Fastabend4fa2e0e2011-07-18 22:38:25 +00004633 if (num_tcs > 4) {
John Fastabende5b64632011-03-08 03:44:52 +00004634 if (tc < 3) {
4635 *tx = tc << 5;
4636 *rx = tc << 4;
4637 } else if (tc < 5) {
4638 *tx = ((tc + 2) << 4);
4639 *rx = tc << 4;
4640 } else if (tc < num_tcs) {
4641 *tx = ((tc + 8) << 3);
4642 *rx = tc << 4;
4643 }
John Fastabend4fa2e0e2011-07-18 22:38:25 +00004644 } else {
John Fastabende5b64632011-03-08 03:44:52 +00004645 *rx = tc << 5;
4646 switch (tc) {
4647 case 0:
4648 *tx = 0;
4649 break;
4650 case 1:
4651 *tx = 64;
4652 break;
4653 case 2:
4654 *tx = 96;
4655 break;
4656 case 3:
4657 *tx = 112;
4658 break;
4659 default:
4660 break;
4661 }
4662 }
4663 break;
4664 default:
4665 break;
4666 }
4667}
4668
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004669/**
4670 * ixgbe_cache_ring_dcb - Descriptor ring to register mapping for DCB
4671 * @adapter: board private structure to initialize
4672 *
4673 * Cache the descriptor ring offsets for DCB to the assigned rings.
4674 *
4675 **/
4676static inline bool ixgbe_cache_ring_dcb(struct ixgbe_adapter *adapter)
4677{
John Fastabende5b64632011-03-08 03:44:52 +00004678 struct net_device *dev = adapter->netdev;
4679 int i, j, k;
4680 u8 num_tcs = netdev_get_num_tc(dev);
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004681
John Fastabend8b1c0b22011-05-03 02:26:48 +00004682 if (!num_tcs)
Alexander Duyckbd508172010-11-16 19:27:03 -08004683 return false;
4684
John Fastabende5b64632011-03-08 03:44:52 +00004685 for (i = 0, k = 0; i < num_tcs; i++) {
4686 unsigned int tx_s, rx_s;
4687 u16 count = dev->tc_to_txq[i].count;
4688
4689 ixgbe_get_first_reg_idx(adapter, i, &tx_s, &rx_s);
4690 for (j = 0; j < count; j++, k++) {
4691 adapter->tx_ring[k]->reg_idx = tx_s + j;
4692 adapter->rx_ring[k]->reg_idx = rx_s + j;
4693 adapter->tx_ring[k]->dcb_tc = i;
4694 adapter->rx_ring[k]->dcb_tc = i;
Alexander Duyckbd508172010-11-16 19:27:03 -08004695 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004696 }
John Fastabende5b64632011-03-08 03:44:52 +00004697
4698 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004699}
4700#endif
4701
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004702/**
4703 * ixgbe_cache_ring_fdir - Descriptor ring to register mapping for Flow Director
4704 * @adapter: board private structure to initialize
4705 *
4706 * Cache the descriptor ring offsets for Flow Director to the assigned rings.
4707 *
4708 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004709static inline bool ixgbe_cache_ring_fdir(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004710{
4711 int i;
4712 bool ret = false;
4713
Alexander Duyck03ecf912011-05-20 07:36:17 +00004714 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4715 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004716 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004717 adapter->rx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004718 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004719 adapter->tx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004720 ret = true;
4721 }
4722
4723 return ret;
4724}
4725
Yi Zou0331a832009-05-17 12:33:52 +00004726#ifdef IXGBE_FCOE
4727/**
4728 * ixgbe_cache_ring_fcoe - Descriptor ring to register mapping for the FCoE
4729 * @adapter: board private structure to initialize
4730 *
4731 * Cache the descriptor ring offsets for FCoE mode to the assigned rings.
4732 *
4733 */
4734static inline bool ixgbe_cache_ring_fcoe(struct ixgbe_adapter *adapter)
4735{
Yi Zou0331a832009-05-17 12:33:52 +00004736 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004737 int i;
4738 u8 fcoe_rx_i = 0, fcoe_tx_i = 0;
Yi Zou0331a832009-05-17 12:33:52 +00004739
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004740 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4741 return false;
4742
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004743 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Alexander Duyck03ecf912011-05-20 07:36:17 +00004744 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004745 ixgbe_cache_ring_fdir(adapter);
4746 else
4747 ixgbe_cache_ring_rss(adapter);
4748
4749 fcoe_rx_i = f->mask;
4750 fcoe_tx_i = f->mask;
4751 }
4752 for (i = 0; i < f->indices; i++, fcoe_rx_i++, fcoe_tx_i++) {
4753 adapter->rx_ring[f->mask + i]->reg_idx = fcoe_rx_i;
4754 adapter->tx_ring[f->mask + i]->reg_idx = fcoe_tx_i;
4755 }
4756 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004757}
4758
4759#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004760/**
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004761 * ixgbe_cache_ring_sriov - Descriptor ring to register mapping for sriov
4762 * @adapter: board private structure to initialize
4763 *
4764 * SR-IOV doesn't use any descriptor rings but changes the default if
4765 * no other mapping is used.
4766 *
4767 */
4768static inline bool ixgbe_cache_ring_sriov(struct ixgbe_adapter *adapter)
4769{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004770 adapter->rx_ring[0]->reg_idx = adapter->num_vfs * 2;
4771 adapter->tx_ring[0]->reg_idx = adapter->num_vfs * 2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004772 if (adapter->num_vfs)
4773 return true;
4774 else
4775 return false;
4776}
4777
4778/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004779 * ixgbe_cache_ring_register - Descriptor ring to register mapping
4780 * @adapter: board private structure to initialize
4781 *
4782 * Once we know the feature-set enabled for the device, we'll cache
4783 * the register offset the descriptor ring is assigned to.
4784 *
4785 * Note, the order the various feature calls is important. It must start with
4786 * the "most" features enabled at the same time, then trickle down to the
4787 * least amount of features turned on at once.
4788 **/
4789static void ixgbe_cache_ring_register(struct ixgbe_adapter *adapter)
4790{
4791 /* start with default case */
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004792 adapter->rx_ring[0]->reg_idx = 0;
4793 adapter->tx_ring[0]->reg_idx = 0;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004794
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004795 if (ixgbe_cache_ring_sriov(adapter))
4796 return;
4797
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004798#ifdef CONFIG_IXGBE_DCB
4799 if (ixgbe_cache_ring_dcb(adapter))
4800 return;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004801#endif
John Fastabende5b64632011-03-08 03:44:52 +00004802
4803#ifdef IXGBE_FCOE
4804 if (ixgbe_cache_ring_fcoe(adapter))
4805 return;
4806#endif /* IXGBE_FCOE */
4807
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004808 if (ixgbe_cache_ring_fdir(adapter))
4809 return;
4810
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004811 if (ixgbe_cache_ring_rss(adapter))
4812 return;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004813}
4814
Auke Kok9a799d72007-09-15 14:07:45 -07004815/**
4816 * ixgbe_alloc_queues - Allocate memory for all rings
4817 * @adapter: board private structure to initialize
4818 *
4819 * We allocate one ring per queue at run-time since we don't know the
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004820 * number of queues at compile-time. The polling_netdev array is
4821 * intended for Multiqueue, but should work fine with a single queue.
Auke Kok9a799d72007-09-15 14:07:45 -07004822 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004823static int ixgbe_alloc_queues(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004824{
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004825 int rx = 0, tx = 0, nid = adapter->node;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004826
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004827 if (nid < 0 || !node_online(nid))
4828 nid = first_online_node;
4829
4830 for (; tx < adapter->num_tx_queues; tx++) {
4831 struct ixgbe_ring *ring;
4832
4833 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004834 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004835 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004836 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004837 goto err_allocation;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004838 ring->count = adapter->tx_ring_count;
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004839 ring->queue_index = tx;
4840 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004841 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004842 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004843
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004844 adapter->tx_ring[tx] = ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004845 }
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004846
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004847 for (; rx < adapter->num_rx_queues; rx++) {
4848 struct ixgbe_ring *ring;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004849
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004850 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004851 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004852 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004853 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004854 goto err_allocation;
4855 ring->count = adapter->rx_ring_count;
4856 ring->queue_index = rx;
4857 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004858 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004859 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004860
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004861 adapter->rx_ring[rx] = ring;
Auke Kok9a799d72007-09-15 14:07:45 -07004862 }
4863
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004864 ixgbe_cache_ring_register(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004865
4866 return 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004867
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004868err_allocation:
4869 while (tx)
4870 kfree(adapter->tx_ring[--tx]);
4871
4872 while (rx)
4873 kfree(adapter->rx_ring[--rx]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004874 return -ENOMEM;
4875}
4876
4877/**
4878 * ixgbe_set_interrupt_capability - set MSI-X or MSI if supported
4879 * @adapter: board private structure to initialize
4880 *
4881 * Attempt to configure the interrupts using the best available
4882 * capabilities of the hardware and the kernel.
4883 **/
Al Virofeea6a52008-11-27 15:34:07 -08004884static int ixgbe_set_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004885{
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004886 struct ixgbe_hw *hw = &adapter->hw;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004887 int err = 0;
4888 int vector, v_budget;
4889
4890 /*
4891 * It's easy to be greedy for MSI-X vectors, but it really
4892 * doesn't do us much good if we have a lot more vectors
4893 * than CPU's. So let's be conservative and only ask for
PJ Waskiewicz342bde12009-11-12 23:50:43 +00004894 * (roughly) the same number of vectors as there are CPU's.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004895 */
4896 v_budget = min(adapter->num_rx_queues + adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00004897 (int)num_online_cpus()) + NON_Q_VECTORS;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004898
4899 /*
4900 * At the same time, hardware can only support a maximum of
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004901 * hw.mac->max_msix_vectors vectors. With features
4902 * such as RSS and VMDq, we can easily surpass the number of Rx and Tx
4903 * descriptor queues supported by our device. Thus, we cap it off in
4904 * those rare cases where the cpu count also exceeds our vector limit.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004905 */
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004906 v_budget = min(v_budget, (int)hw->mac.max_msix_vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004907
4908 /* A failure in MSI-X entry allocation isn't fatal, but it does
4909 * mean we disable MSI-X capabilities of the adapter. */
4910 adapter->msix_entries = kcalloc(v_budget,
Joe Perchese8e9f692010-09-07 21:34:53 +00004911 sizeof(struct msix_entry), GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004912 if (adapter->msix_entries) {
4913 for (vector = 0; vector < v_budget; vector++)
4914 adapter->msix_entries[vector].entry = vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004915
Alexander Duyck7a921c92009-05-06 10:43:28 +00004916 ixgbe_acquire_msix_vectors(adapter, v_budget);
4917
4918 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4919 goto out;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004920 }
David S. Miller26d27842010-05-03 15:18:22 -07004921
Alexander Duyck7a921c92009-05-06 10:43:28 +00004922 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
4923 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
Alexander Duyck03ecf912011-05-20 07:36:17 +00004924 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck45b9f502011-01-06 14:29:59 +00004925 e_err(probe,
Alexander Duyck03ecf912011-05-20 07:36:17 +00004926 "ATR is not supported while multiple "
Alexander Duyck45b9f502011-01-06 14:29:59 +00004927 "queues are disabled. Disabling Flow Director\n");
4928 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004929 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004930 adapter->atr_sample_rate = 0;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004931 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4932 ixgbe_disable_sriov(adapter);
4933
Ben Hutchings847f53f2010-09-27 08:28:56 +00004934 err = ixgbe_set_num_queues(adapter);
4935 if (err)
4936 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004937
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004938 err = pci_enable_msi(adapter->pdev);
4939 if (!err) {
4940 adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
4941 } else {
Emil Tantilov849c4542010-06-03 16:53:41 +00004942 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4943 "Unable to allocate MSI interrupt, "
4944 "falling back to legacy. Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004945 /* reset err */
4946 err = 0;
4947 }
4948
4949out:
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004950 return err;
4951}
4952
Alexander Duyck7a921c92009-05-06 10:43:28 +00004953/**
4954 * ixgbe_alloc_q_vectors - Allocate memory for interrupt vectors
4955 * @adapter: board private structure to initialize
4956 *
4957 * We allocate one q_vector per queue interrupt. If allocation fails we
4958 * return -ENOMEM.
4959 **/
4960static int ixgbe_alloc_q_vectors(struct ixgbe_adapter *adapter)
4961{
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004962 int v_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004963 struct ixgbe_q_vector *q_vector;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004964
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004965 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00004966 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004967 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00004968 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004969
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004970 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004971 q_vector = kzalloc_node(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004972 GFP_KERNEL, adapter->node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004973 if (!q_vector)
4974 q_vector = kzalloc(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004975 GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004976 if (!q_vector)
4977 goto err_out;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004978
Alexander Duyck7a921c92009-05-06 10:43:28 +00004979 q_vector->adapter = adapter;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004980 q_vector->v_idx = v_idx;
4981
Alexander Duyck207867f2011-07-15 03:05:37 +00004982 /* Allocate the affinity_hint cpumask, configure the mask */
4983 if (!alloc_cpumask_var(&q_vector->affinity_mask, GFP_KERNEL))
4984 goto err_out;
4985 cpumask_set_cpu(v_idx, q_vector->affinity_mask);
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004986 netif_napi_add(adapter->netdev, &q_vector->napi,
4987 ixgbe_poll, 64);
4988 adapter->q_vector[v_idx] = q_vector;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004989 }
4990
4991 return 0;
4992
4993err_out:
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004994 while (v_idx) {
4995 v_idx--;
4996 q_vector = adapter->q_vector[v_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00004997 netif_napi_del(&q_vector->napi);
Alexander Duyck207867f2011-07-15 03:05:37 +00004998 free_cpumask_var(q_vector->affinity_mask);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004999 kfree(q_vector);
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00005000 adapter->q_vector[v_idx] = NULL;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005001 }
5002 return -ENOMEM;
5003}
5004
5005/**
5006 * ixgbe_free_q_vectors - Free memory allocated for interrupt vectors
5007 * @adapter: board private structure to initialize
5008 *
5009 * This function frees the memory allocated to the q_vectors. In addition if
5010 * NAPI is enabled it will delete any references to the NAPI struct prior
5011 * to freeing the q_vector.
5012 **/
5013static void ixgbe_free_q_vectors(struct ixgbe_adapter *adapter)
5014{
Alexander Duyck207867f2011-07-15 03:05:37 +00005015 int v_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005016
Alexander Duyck91281fd2009-06-04 16:00:27 +00005017 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00005018 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck91281fd2009-06-04 16:00:27 +00005019 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00005020 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005021
Alexander Duyck207867f2011-07-15 03:05:37 +00005022 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
5023 struct ixgbe_q_vector *q_vector = adapter->q_vector[v_idx];
5024 adapter->q_vector[v_idx] = NULL;
Alexander Duyck91281fd2009-06-04 16:00:27 +00005025 netif_napi_del(&q_vector->napi);
Alexander Duyck207867f2011-07-15 03:05:37 +00005026 free_cpumask_var(q_vector->affinity_mask);
Alexander Duyck7a921c92009-05-06 10:43:28 +00005027 kfree(q_vector);
5028 }
5029}
5030
Don Skidmore7b25cdb2009-08-25 04:47:32 +00005031static void ixgbe_reset_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005032{
5033 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
5034 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
5035 pci_disable_msix(adapter->pdev);
5036 kfree(adapter->msix_entries);
5037 adapter->msix_entries = NULL;
5038 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
5039 adapter->flags &= ~IXGBE_FLAG_MSI_ENABLED;
5040 pci_disable_msi(adapter->pdev);
5041 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005042}
5043
5044/**
5045 * ixgbe_init_interrupt_scheme - Determine proper interrupt scheme
5046 * @adapter: board private structure to initialize
5047 *
5048 * We determine which interrupt scheme to use based on...
5049 * - Kernel support (MSI, MSI-X)
5050 * - which can be user-defined (via MODULE_PARAM)
5051 * - Hardware queue count (num_*_queues)
5052 * - defined by miscellaneous hardware support/features (RSS, etc.)
5053 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08005054int ixgbe_init_interrupt_scheme(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005055{
5056 int err;
5057
5058 /* Number of supported queues */
Ben Hutchings847f53f2010-09-27 08:28:56 +00005059 err = ixgbe_set_num_queues(adapter);
5060 if (err)
5061 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005062
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005063 err = ixgbe_set_interrupt_capability(adapter);
5064 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005065 e_dev_err("Unable to setup interrupt capabilities\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005066 goto err_set_interrupt;
5067 }
5068
Alexander Duyck7a921c92009-05-06 10:43:28 +00005069 err = ixgbe_alloc_q_vectors(adapter);
5070 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005071 e_dev_err("Unable to allocate memory for queue vectors\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00005072 goto err_alloc_q_vectors;
5073 }
5074
5075 err = ixgbe_alloc_queues(adapter);
5076 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005077 e_dev_err("Unable to allocate memory for queues\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00005078 goto err_alloc_queues;
5079 }
5080
Emil Tantilov849c4542010-06-03 16:53:41 +00005081 e_dev_info("Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
Emil Tantilov396e7992010-07-01 20:05:12 +00005082 (adapter->num_rx_queues > 1) ? "Enabled" : "Disabled",
5083 adapter->num_rx_queues, adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005084
5085 set_bit(__IXGBE_DOWN, &adapter->state);
5086
5087 return 0;
5088
Alexander Duyck7a921c92009-05-06 10:43:28 +00005089err_alloc_queues:
5090 ixgbe_free_q_vectors(adapter);
5091err_alloc_q_vectors:
5092 ixgbe_reset_interrupt_capability(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005093err_set_interrupt:
Alexander Duyck7a921c92009-05-06 10:43:28 +00005094 return err;
5095}
5096
5097/**
5098 * ixgbe_clear_interrupt_scheme - Clear the current interrupt scheme settings
5099 * @adapter: board private structure to clear interrupt scheme on
5100 *
5101 * We go through and clear interrupt specific resources and reset the structure
5102 * to pre-load conditions
5103 **/
5104void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter)
5105{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005106 int i;
5107
5108 for (i = 0; i < adapter->num_tx_queues; i++) {
5109 kfree(adapter->tx_ring[i]);
5110 adapter->tx_ring[i] = NULL;
5111 }
5112 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08005113 struct ixgbe_ring *ring = adapter->rx_ring[i];
5114
5115 /* ixgbe_get_stats64() might access this ring, we must wait
5116 * a grace period before freeing it.
5117 */
Lai Jiangshanbcec8b62011-03-18 11:57:21 +08005118 kfree_rcu(ring, rcu);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005119 adapter->rx_ring[i] = NULL;
5120 }
Alexander Duyck7a921c92009-05-06 10:43:28 +00005121
Don Skidmoreb8eb3a12010-12-01 20:54:53 +00005122 adapter->num_tx_queues = 0;
5123 adapter->num_rx_queues = 0;
5124
Alexander Duyck7a921c92009-05-06 10:43:28 +00005125 ixgbe_free_q_vectors(adapter);
5126 ixgbe_reset_interrupt_capability(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005127}
5128
5129/**
5130 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
5131 * @adapter: board private structure to initialize
5132 *
5133 * ixgbe_sw_init initializes the Adapter private data structure.
5134 * Fields are initialized based on PCI device information and
5135 * OS network device settings (MTU size).
5136 **/
5137static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
5138{
5139 struct ixgbe_hw *hw = &adapter->hw;
5140 struct pci_dev *pdev = adapter->pdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005141 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005142#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08005143 int j;
5144 struct tc_configuration *tc;
5145#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005146
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005147 /* PCI config space info */
5148
5149 hw->vendor_id = pdev->vendor;
5150 hw->device_id = pdev->device;
5151 hw->revision_id = pdev->revision;
5152 hw->subsystem_vendor_id = pdev->subsystem_vendor;
5153 hw->subsystem_device_id = pdev->subsystem_device;
5154
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005155 /* Set capability flags */
5156 rss = min(IXGBE_MAX_RSS_INDICES, (int)num_online_cpus());
5157 adapter->ring_feature[RING_F_RSS].indices = rss;
5158 adapter->flags |= IXGBE_FLAG_RSS_ENABLED;
Alexander Duyckbd508172010-11-16 19:27:03 -08005159 switch (hw->mac.type) {
5160 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00005161 if (hw->device_id == IXGBE_DEV_ID_82598AT)
5162 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005163 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08005164 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005165 case ixgbe_mac_X540:
Jacob Keller4f51bf72011-08-20 04:49:45 +00005166 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
5167 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005168 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00005169 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
5170 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07005171 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
5172 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00005173 /* Flow Director hash filters enabled */
5174 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
5175 adapter->atr_sample_rate = 20;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005176 adapter->ring_feature[RING_F_FDIR].indices =
Joe Perchese8e9f692010-09-07 21:34:53 +00005177 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00005178 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00005179#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00005180 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
5181 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5182 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou61a0f422009-12-03 11:32:22 +00005183#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00005184 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00005185 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00005186#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00005187#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005188 break;
5189 default:
5190 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00005191 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08005192
Alexander Duyck1fc5f032011-06-02 04:28:39 +00005193 /* n-tuple support exists, always init our spinlock */
5194 spin_lock_init(&adapter->fdir_perfect_lock);
5195
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005196#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00005197 switch (hw->mac.type) {
5198 case ixgbe_mac_X540:
5199 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
5200 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
5201 break;
5202 default:
5203 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
5204 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
5205 break;
5206 }
5207
Alexander Duyck2f90b862008-11-20 20:52:10 -08005208 /* Configure DCB traffic classes */
5209 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
5210 tc = &adapter->dcb_cfg.tc_config[j];
5211 tc->path[DCB_TX_CONFIG].bwg_id = 0;
5212 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
5213 tc->path[DCB_RX_CONFIG].bwg_id = 0;
5214 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
5215 tc->dcb_pfc = pfc_disabled;
5216 }
John Fastabend4de2a022011-09-27 03:52:01 +00005217
5218 /* Initialize default user to priority mapping, UPx->TC0 */
5219 tc = &adapter->dcb_cfg.tc_config[0];
5220 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
5221 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
5222
Alexander Duyck2f90b862008-11-20 20:52:10 -08005223 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
5224 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005225 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005226 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00005227 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005228 ixgbe_copy_dcb_cfg(&adapter->dcb_cfg, &adapter->temp_dcb_cfg,
John Fastabende5b64632011-03-08 03:44:52 +00005229 MAX_TRAFFIC_CLASS);
Alexander Duyck2f90b862008-11-20 20:52:10 -08005230
5231#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005232
5233 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005234 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005235 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005236#ifdef CONFIG_DCB
5237 adapter->last_lfc_mode = hw->fc.current_mode;
5238#endif
John Fastabend9da712d2011-08-23 03:14:22 +00005239 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005240 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5241 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00005242 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07005243
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005244 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005245 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005246 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005247
5248 /* set defaults for eitr in MegaBytes */
5249 adapter->eitr_low = 10;
5250 adapter->eitr_high = 20;
5251
5252 /* set default ring sizes */
5253 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5254 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5255
Alexander Duyckbd198052011-06-11 01:45:08 +00005256 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00005257 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00005258
Auke Kok9a799d72007-09-15 14:07:45 -07005259 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005260 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005261 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005262 return -EIO;
5263 }
5264
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005265 /* enable rx csum by default */
Auke Kok9a799d72007-09-15 14:07:45 -07005266 adapter->flags |= IXGBE_FLAG_RX_CSUM_ENABLED;
5267
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005268 /* get assigned NUMA node */
5269 adapter->node = dev_to_node(&pdev->dev);
5270
Auke Kok9a799d72007-09-15 14:07:45 -07005271 set_bit(__IXGBE_DOWN, &adapter->state);
5272
5273 return 0;
5274}
5275
5276/**
5277 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005278 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005279 *
5280 * Return 0 on success, negative on failure
5281 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005282int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005283{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005284 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07005285 int size;
5286
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005287 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005288 tx_ring->tx_buffer_info = vzalloc_node(size, tx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005289 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005290 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005291 if (!tx_ring->tx_buffer_info)
5292 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005293
5294 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005295 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005296 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005297
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005298 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005299 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005300 if (!tx_ring->desc)
5301 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005302
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005303 tx_ring->next_to_use = 0;
5304 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005305 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005306
5307err:
5308 vfree(tx_ring->tx_buffer_info);
5309 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005310 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005311 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005312}
5313
5314/**
Alexander Duyck69888672008-09-11 20:05:39 -07005315 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5316 * @adapter: board private structure
5317 *
5318 * If this function returns with an error, then it's possible one or
5319 * more of the rings is populated (while the rest are not). It is the
5320 * callers duty to clean those orphaned rings.
5321 *
5322 * Return 0 on success, negative on failure
5323 **/
5324static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5325{
5326 int i, err = 0;
5327
5328 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005329 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005330 if (!err)
5331 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005332 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005333 break;
5334 }
5335
5336 return err;
5337}
5338
5339/**
Auke Kok9a799d72007-09-15 14:07:45 -07005340 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005341 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005342 *
5343 * Returns 0 on success, negative on failure
5344 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005345int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005346{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005347 struct device *dev = rx_ring->dev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005348 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005349
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005350 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005351 rx_ring->rx_buffer_info = vzalloc_node(size, rx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005352 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005353 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005354 if (!rx_ring->rx_buffer_info)
5355 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005356
Auke Kok9a799d72007-09-15 14:07:45 -07005357 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005358 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5359 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005360
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005361 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005362 &rx_ring->dma, GFP_KERNEL);
Auke Kok9a799d72007-09-15 14:07:45 -07005363
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005364 if (!rx_ring->desc)
5365 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005366
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005367 rx_ring->next_to_clean = 0;
5368 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005369
5370 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005371err:
5372 vfree(rx_ring->rx_buffer_info);
5373 rx_ring->rx_buffer_info = NULL;
5374 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005375 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005376}
5377
5378/**
Alexander Duyck69888672008-09-11 20:05:39 -07005379 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5380 * @adapter: board private structure
5381 *
5382 * If this function returns with an error, then it's possible one or
5383 * more of the rings is populated (while the rest are not). It is the
5384 * callers duty to clean those orphaned rings.
5385 *
5386 * Return 0 on success, negative on failure
5387 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005388static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5389{
5390 int i, err = 0;
5391
5392 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005393 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005394 if (!err)
5395 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005396 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005397 break;
5398 }
5399
5400 return err;
5401}
5402
5403/**
Auke Kok9a799d72007-09-15 14:07:45 -07005404 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005405 * @tx_ring: Tx descriptor ring for a specific queue
5406 *
5407 * Free all transmit software resources
5408 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005409void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005410{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005411 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005412
5413 vfree(tx_ring->tx_buffer_info);
5414 tx_ring->tx_buffer_info = NULL;
5415
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005416 /* if not set, then don't free */
5417 if (!tx_ring->desc)
5418 return;
5419
5420 dma_free_coherent(tx_ring->dev, tx_ring->size,
5421 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005422
5423 tx_ring->desc = NULL;
5424}
5425
5426/**
5427 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5428 * @adapter: board private structure
5429 *
5430 * Free all transmit software resources
5431 **/
5432static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5433{
5434 int i;
5435
5436 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005437 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005438 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005439}
5440
5441/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005442 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005443 * @rx_ring: ring to clean the resources from
5444 *
5445 * Free all receive software resources
5446 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005447void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005448{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005449 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005450
5451 vfree(rx_ring->rx_buffer_info);
5452 rx_ring->rx_buffer_info = NULL;
5453
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005454 /* if not set, then don't free */
5455 if (!rx_ring->desc)
5456 return;
5457
5458 dma_free_coherent(rx_ring->dev, rx_ring->size,
5459 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005460
5461 rx_ring->desc = NULL;
5462}
5463
5464/**
5465 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5466 * @adapter: board private structure
5467 *
5468 * Free all receive software resources
5469 **/
5470static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5471{
5472 int i;
5473
5474 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005475 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005476 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005477}
5478
5479/**
Auke Kok9a799d72007-09-15 14:07:45 -07005480 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5481 * @netdev: network interface device structure
5482 * @new_mtu: new value for maximum frame size
5483 *
5484 * Returns 0 on success, negative on failure
5485 **/
5486static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5487{
5488 struct ixgbe_adapter *adapter = netdev_priv(netdev);
John Fastabend16b61be2010-11-16 19:26:44 -08005489 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07005490 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5491
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005492 /* MTU < 68 is an error and causes problems on some kernels */
Greg Rosee9f98072011-01-26 01:06:07 +00005493 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED &&
5494 hw->mac.type != ixgbe_mac_X540) {
5495 if ((new_mtu < 68) || (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
5496 return -EINVAL;
5497 } else {
5498 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
5499 return -EINVAL;
5500 }
Auke Kok9a799d72007-09-15 14:07:45 -07005501
Emil Tantilov396e7992010-07-01 20:05:12 +00005502 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005503 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005504 netdev->mtu = new_mtu;
5505
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005506 if (netif_running(netdev))
5507 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005508
5509 return 0;
5510}
5511
5512/**
5513 * ixgbe_open - Called when a network interface is made active
5514 * @netdev: network interface device structure
5515 *
5516 * Returns 0 on success, negative value on failure
5517 *
5518 * The open entry point is called when a network interface is made
5519 * active by the system (IFF_UP). At this point all resources needed
5520 * for transmit and receive operations are allocated, the interrupt
5521 * handler is registered with the OS, the watchdog timer is started,
5522 * and the stack is notified that the interface is ready.
5523 **/
5524static int ixgbe_open(struct net_device *netdev)
5525{
5526 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5527 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07005528
Auke Kok4bebfaa2008-02-11 09:26:01 -08005529 /* disallow open during test */
5530 if (test_bit(__IXGBE_TESTING, &adapter->state))
5531 return -EBUSY;
5532
Jesse Brandeburg54386462009-04-17 20:44:27 +00005533 netif_carrier_off(netdev);
5534
Auke Kok9a799d72007-09-15 14:07:45 -07005535 /* allocate transmit descriptors */
5536 err = ixgbe_setup_all_tx_resources(adapter);
5537 if (err)
5538 goto err_setup_tx;
5539
Auke Kok9a799d72007-09-15 14:07:45 -07005540 /* allocate receive descriptors */
5541 err = ixgbe_setup_all_rx_resources(adapter);
5542 if (err)
5543 goto err_setup_rx;
5544
5545 ixgbe_configure(adapter);
5546
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005547 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005548 if (err)
5549 goto err_req_irq;
5550
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005551 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005552
5553 return 0;
5554
Auke Kok9a799d72007-09-15 14:07:45 -07005555err_req_irq:
Auke Kok9a799d72007-09-15 14:07:45 -07005556err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005557 ixgbe_free_all_rx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005558err_setup_tx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005559 ixgbe_free_all_tx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005560 ixgbe_reset(adapter);
5561
5562 return err;
5563}
5564
5565/**
5566 * ixgbe_close - Disables a network interface
5567 * @netdev: network interface device structure
5568 *
5569 * Returns 0, this is not allowed to fail
5570 *
5571 * The close entry point is called when an interface is de-activated
5572 * by the OS. The hardware is still under the drivers control, but
5573 * needs to be disabled. A global MAC reset is issued to stop the
5574 * hardware, and all transmit and receive resources are freed.
5575 **/
5576static int ixgbe_close(struct net_device *netdev)
5577{
5578 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005579
5580 ixgbe_down(adapter);
5581 ixgbe_free_irq(adapter);
5582
Alexander Duycke4911d52011-05-11 07:18:52 +00005583 ixgbe_fdir_filter_exit(adapter);
5584
Auke Kok9a799d72007-09-15 14:07:45 -07005585 ixgbe_free_all_tx_resources(adapter);
5586 ixgbe_free_all_rx_resources(adapter);
5587
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005588 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005589
5590 return 0;
5591}
5592
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005593#ifdef CONFIG_PM
5594static int ixgbe_resume(struct pci_dev *pdev)
5595{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005596 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5597 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005598 u32 err;
5599
5600 pci_set_power_state(pdev, PCI_D0);
5601 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08005602 /*
5603 * pci_restore_state clears dev->state_saved so call
5604 * pci_save_state to restore it.
5605 */
5606 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005607
5608 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005609 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005610 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005611 return err;
5612 }
5613 pci_set_master(pdev);
5614
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005615 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005616
5617 err = ixgbe_init_interrupt_scheme(adapter);
5618 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005619 e_dev_err("Cannot initialize interrupts for device\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005620 return err;
5621 }
5622
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005623 ixgbe_reset(adapter);
5624
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005625 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5626
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005627 if (netif_running(netdev)) {
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005628 err = ixgbe_open(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005629 if (err)
5630 return err;
5631 }
5632
5633 netif_device_attach(netdev);
5634
5635 return 0;
5636}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005637#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005638
5639static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005640{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005641 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5642 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005643 struct ixgbe_hw *hw = &adapter->hw;
5644 u32 ctrl, fctrl;
5645 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005646#ifdef CONFIG_PM
5647 int retval = 0;
5648#endif
5649
5650 netif_device_detach(netdev);
5651
5652 if (netif_running(netdev)) {
5653 ixgbe_down(adapter);
5654 ixgbe_free_irq(adapter);
5655 ixgbe_free_all_tx_resources(adapter);
5656 ixgbe_free_all_rx_resources(adapter);
5657 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005658
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005659 ixgbe_clear_interrupt_scheme(adapter);
John Fastabendd033d522011-02-10 14:40:01 +00005660#ifdef CONFIG_DCB
5661 kfree(adapter->ixgbe_ieee_pfc);
5662 kfree(adapter->ixgbe_ieee_ets);
5663#endif
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005664
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005665#ifdef CONFIG_PM
5666 retval = pci_save_state(pdev);
5667 if (retval)
5668 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005669
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005670#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005671 if (wufc) {
5672 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005673
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005674 /* turn on all-multi mode if wake on multicast is enabled */
5675 if (wufc & IXGBE_WUFC_MC) {
5676 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5677 fctrl |= IXGBE_FCTRL_MPE;
5678 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5679 }
5680
5681 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5682 ctrl |= IXGBE_CTRL_GIO_DIS;
5683 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5684
5685 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5686 } else {
5687 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5688 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5689 }
5690
Alexander Duyckbd508172010-11-16 19:27:03 -08005691 switch (hw->mac.type) {
5692 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005693 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005694 break;
5695 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005696 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005697 pci_wake_from_d3(pdev, !!wufc);
5698 break;
5699 default:
5700 break;
5701 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005702
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005703 *enable_wake = !!wufc;
5704
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005705 ixgbe_release_hw_control(adapter);
5706
5707 pci_disable_device(pdev);
5708
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005709 return 0;
5710}
5711
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005712#ifdef CONFIG_PM
5713static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5714{
5715 int retval;
5716 bool wake;
5717
5718 retval = __ixgbe_shutdown(pdev, &wake);
5719 if (retval)
5720 return retval;
5721
5722 if (wake) {
5723 pci_prepare_to_sleep(pdev);
5724 } else {
5725 pci_wake_from_d3(pdev, false);
5726 pci_set_power_state(pdev, PCI_D3hot);
5727 }
5728
5729 return 0;
5730}
5731#endif /* CONFIG_PM */
5732
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005733static void ixgbe_shutdown(struct pci_dev *pdev)
5734{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005735 bool wake;
5736
5737 __ixgbe_shutdown(pdev, &wake);
5738
5739 if (system_state == SYSTEM_POWER_OFF) {
5740 pci_wake_from_d3(pdev, wake);
5741 pci_set_power_state(pdev, PCI_D3hot);
5742 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005743}
5744
5745/**
Auke Kok9a799d72007-09-15 14:07:45 -07005746 * ixgbe_update_stats - Update the board statistics counters.
5747 * @adapter: board private structure
5748 **/
5749void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5750{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005751 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005752 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005753 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005754 u64 total_mpc = 0;
5755 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005756 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5757 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
5758 u64 bytes = 0, packets = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005759#ifdef IXGBE_FCOE
5760 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5761 unsigned int cpu;
5762 u64 fcoe_noddp_counts_sum = 0, fcoe_noddp_ext_buff_counts_sum = 0;
5763#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07005764
Don Skidmored08935c2010-06-11 13:20:29 +00005765 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5766 test_bit(__IXGBE_RESETTING, &adapter->state))
5767 return;
5768
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005769 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005770 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005771 u64 rsc_flush = 0;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005772 for (i = 0; i < 16; i++)
5773 adapter->hw_rx_no_dma_resources +=
Joe Perches7ca647b2010-09-07 21:35:40 +00005774 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005775 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005776 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5777 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005778 }
5779 adapter->rsc_total_count = rsc_count;
5780 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005781 }
5782
Alexander Duyck5b7da512010-11-16 19:26:50 -08005783 for (i = 0; i < adapter->num_rx_queues; i++) {
5784 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5785 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5786 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5787 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
5788 bytes += rx_ring->stats.bytes;
5789 packets += rx_ring->stats.packets;
5790 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005791 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005792 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5793 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
5794 netdev->stats.rx_bytes = bytes;
5795 netdev->stats.rx_packets = packets;
5796
5797 bytes = 0;
5798 packets = 0;
5799 /* gather some stats to the adapter struct that are per queue */
5800 for (i = 0; i < adapter->num_tx_queues; i++) {
5801 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5802 restart_queue += tx_ring->tx_stats.restart_queue;
5803 tx_busy += tx_ring->tx_stats.tx_busy;
5804 bytes += tx_ring->stats.bytes;
5805 packets += tx_ring->stats.packets;
5806 }
5807 adapter->restart_queue = restart_queue;
5808 adapter->tx_busy = tx_busy;
5809 netdev->stats.tx_bytes = bytes;
5810 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005811
Joe Perches7ca647b2010-09-07 21:35:40 +00005812 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005813
5814 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005815 for (i = 0; i < 8; i++) {
5816 /* for packet buffers not used, the register should read 0 */
5817 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5818 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005819 hwstats->mpc[i] += mpc;
5820 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005821 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5822 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005823 switch (hw->mac.type) {
5824 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005825 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5826 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5827 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005828 hwstats->pxonrxc[i] +=
5829 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005830 break;
5831 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005832 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005833 hwstats->pxonrxc[i] +=
5834 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005835 break;
5836 default:
5837 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005838 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005839 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005840
5841 /*16 register reads */
5842 for (i = 0; i < 16; i++) {
5843 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5844 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5845 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5846 (hw->mac.type == ixgbe_mac_X540)) {
5847 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5848 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5849 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5850 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5851 }
5852 }
5853
Joe Perches7ca647b2010-09-07 21:35:40 +00005854 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005855 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005856 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005857
John Fastabendc84d3242010-11-16 19:27:12 -08005858 ixgbe_update_xoff_received(adapter);
5859
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005860 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005861 switch (hw->mac.type) {
5862 case ixgbe_mac_82598EB:
5863 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005864 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5865 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5866 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5867 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005868 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005869 /* OS2BMC stats are X540 only*/
5870 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5871 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5872 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5873 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5874 case ixgbe_mac_82599EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005875 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005876 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005877 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005878 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005879 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005880 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005881 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005882 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5883 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005884#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005885 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5886 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5887 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5888 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5889 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5890 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005891 /* Add up per cpu counters for total ddp aloc fail */
5892 if (fcoe->pcpu_noddp && fcoe->pcpu_noddp_ext_buff) {
5893 for_each_possible_cpu(cpu) {
5894 fcoe_noddp_counts_sum +=
5895 *per_cpu_ptr(fcoe->pcpu_noddp, cpu);
5896 fcoe_noddp_ext_buff_counts_sum +=
5897 *per_cpu_ptr(fcoe->
5898 pcpu_noddp_ext_buff, cpu);
5899 }
5900 }
5901 hwstats->fcoe_noddp = fcoe_noddp_counts_sum;
5902 hwstats->fcoe_noddp_ext_buff = fcoe_noddp_ext_buff_counts_sum;
Yi Zou6d455222009-05-13 13:12:16 +00005903#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005904 break;
5905 default:
5906 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005907 }
Auke Kok9a799d72007-09-15 14:07:45 -07005908 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005909 hwstats->bprc += bprc;
5910 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005911 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005912 hwstats->mprc -= bprc;
5913 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5914 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5915 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5916 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5917 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5918 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5919 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5920 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005921 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005922 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005923 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005924 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005925 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5926 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005927 /*
5928 * 82598 errata - tx of flow control packets is included in tx counters
5929 */
5930 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005931 hwstats->gptc -= xon_off_tot;
5932 hwstats->mptc -= xon_off_tot;
5933 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5934 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5935 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5936 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5937 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5938 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5939 hwstats->ptc64 -= xon_off_tot;
5940 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5941 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5942 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5943 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5944 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5945 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005946
5947 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005948 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005949
5950 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005951 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005952 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005953 netdev->stats.rx_length_errors = hwstats->rlec;
5954 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005955 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005956}
5957
5958/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005959 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
5960 * @adapter - pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005961 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005962static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005963{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005964 struct ixgbe_hw *hw = &adapter->hw;
5965 int i;
5966
Alexander Duyckd034acf2011-04-27 09:25:34 +00005967 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5968 return;
5969
5970 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5971
5972 /* if interface is down do nothing */
5973 if (test_bit(__IXGBE_DOWN, &adapter->state))
5974 return;
5975
5976 /* do nothing if we are not using signature filters */
5977 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5978 return;
5979
5980 adapter->fdir_overflow++;
5981
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005982 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5983 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005984 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005985 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005986 /* re-enable flow director interrupts */
5987 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005988 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005989 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005990 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005991 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005992}
5993
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005994/**
5995 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
5996 * @adapter - pointer to the device adapter structure
5997 *
5998 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005999 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006000 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006001 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006002 */
6003static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
6004{
Auke Kok9a799d72007-09-15 14:07:45 -07006005 struct ixgbe_hw *hw = &adapter->hw;
6006 u64 eics = 0;
6007 int i;
6008
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006009 /* If we're down or resetting, just bail */
6010 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6011 test_bit(__IXGBE_RESETTING, &adapter->state))
6012 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00006013
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006014 /* Force detection of hung controller */
6015 if (netif_carrier_ok(adapter->netdev)) {
6016 for (i = 0; i < adapter->num_tx_queues; i++)
6017 set_check_for_tx_hang(adapter->tx_ring[i]);
6018 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00006019
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00006020 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00006021 /*
6022 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00006023 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00006024 * would set *both* EIMS and EICS for any bit in EIAM
6025 */
6026 IXGBE_WRITE_REG(hw, IXGBE_EICS,
6027 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006028 } else {
6029 /* get one bit for every active tx/rx interrupt vector */
6030 for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
6031 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00006032 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006033 eics |= ((u64)1 << i);
6034 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00006035 }
6036
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006037 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00006038 ixgbe_irq_rearm_queues(adapter, eics);
6039
Alexander Duyckfe49f042009-06-04 16:00:09 +00006040}
6041
6042/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006043 * ixgbe_watchdog_update_link - update the link status
6044 * @adapter - pointer to the device adapter structure
6045 * @link_speed - pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006046 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006047static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006048{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006049 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006050 u32 link_speed = adapter->link_speed;
6051 bool link_up = adapter->link_up;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006052 int i;
6053
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006054 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
6055 return;
6056
6057 if (hw->mac.ops.check_link) {
6058 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006059 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006060 /* always assume link is up, if no check link function */
6061 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
6062 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006063 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006064 if (link_up) {
6065 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6066 for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
6067 hw->mac.ops.fc_enable(hw, i);
6068 } else {
6069 hw->mac.ops.fc_enable(hw, 0);
6070 }
6071 }
6072
6073 if (link_up ||
6074 time_after(jiffies, (adapter->link_check_timeout +
6075 IXGBE_TRY_LINK_TIMEOUT))) {
6076 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
6077 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
6078 IXGBE_WRITE_FLUSH(hw);
6079 }
6080
6081 adapter->link_up = link_up;
6082 adapter->link_speed = link_speed;
6083}
6084
6085/**
6086 * ixgbe_watchdog_link_is_up - update netif_carrier status and
6087 * print link up message
6088 * @adapter - pointer to the device adapter structure
6089 **/
6090static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
6091{
6092 struct net_device *netdev = adapter->netdev;
6093 struct ixgbe_hw *hw = &adapter->hw;
6094 u32 link_speed = adapter->link_speed;
6095 bool flow_rx, flow_tx;
6096
6097 /* only continue if link was previously down */
6098 if (netif_carrier_ok(netdev))
6099 return;
6100
6101 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
6102
6103 switch (hw->mac.type) {
6104 case ixgbe_mac_82598EB: {
6105 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6106 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
6107 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
6108 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
6109 }
6110 break;
6111 case ixgbe_mac_X540:
6112 case ixgbe_mac_82599EB: {
6113 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
6114 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
6115 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
6116 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
6117 }
6118 break;
6119 default:
6120 flow_tx = false;
6121 flow_rx = false;
6122 break;
6123 }
6124 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
6125 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
6126 "10 Gbps" :
6127 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
6128 "1 Gbps" :
6129 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
6130 "100 Mbps" :
6131 "unknown speed"))),
6132 ((flow_rx && flow_tx) ? "RX/TX" :
6133 (flow_rx ? "RX" :
6134 (flow_tx ? "TX" : "None"))));
6135
6136 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006137 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006138}
6139
6140/**
6141 * ixgbe_watchdog_link_is_down - update netif_carrier status and
6142 * print link down message
6143 * @adapter - pointer to the adapter structure
6144 **/
6145static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter* adapter)
6146{
6147 struct net_device *netdev = adapter->netdev;
6148 struct ixgbe_hw *hw = &adapter->hw;
6149
6150 adapter->link_up = false;
6151 adapter->link_speed = 0;
6152
6153 /* only continue if link was up previously */
6154 if (!netif_carrier_ok(netdev))
6155 return;
6156
6157 /* poll for SFP+ cable when link is down */
6158 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
6159 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
6160
6161 e_info(drv, "NIC Link is Down\n");
6162 netif_carrier_off(netdev);
6163}
6164
6165/**
6166 * ixgbe_watchdog_flush_tx - flush queues on link down
6167 * @adapter - pointer to the device adapter structure
6168 **/
6169static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
6170{
6171 int i;
6172 int some_tx_pending = 0;
6173
6174 if (!netif_carrier_ok(adapter->netdev)) {
6175 for (i = 0; i < adapter->num_tx_queues; i++) {
6176 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6177 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
6178 some_tx_pending = 1;
6179 break;
6180 }
6181 }
6182
6183 if (some_tx_pending) {
6184 /* We've lost link, so the controller stops DMA,
6185 * but we've got queued Tx work that's never going
6186 * to get done, so reset controller to flush Tx.
6187 * (Do the reset outside of interrupt context).
6188 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006189 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006190 }
6191 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006192}
6193
Greg Rosea985b6c32010-11-18 03:02:52 +00006194static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
6195{
6196 u32 ssvpc;
6197
6198 /* Do not perform spoof check for 82598 */
6199 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6200 return;
6201
6202 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
6203
6204 /*
6205 * ssvpc register is cleared on read, if zero then no
6206 * spoofed packets in the last interval.
6207 */
6208 if (!ssvpc)
6209 return;
6210
6211 e_warn(drv, "%d Spoofed packets detected\n", ssvpc);
6212}
6213
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006214/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006215 * ixgbe_watchdog_subtask - check and bring link up
6216 * @adapter - pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006217 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006218static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006219{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006220 /* if interface is down do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00006221 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6222 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006223 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006224
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006225 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00006226
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006227 if (adapter->link_up)
6228 ixgbe_watchdog_link_is_up(adapter);
6229 else
6230 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00006231
Greg Rosea985b6c32010-11-18 03:02:52 +00006232 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006233 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006234
6235 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006236}
6237
Alexander Duyck70864002011-04-27 09:13:56 +00006238/**
6239 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
6240 * @adapter - the ixgbe adapter structure
6241 **/
6242static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
6243{
6244 struct ixgbe_hw *hw = &adapter->hw;
6245 s32 err;
6246
6247 /* not searching for SFP so there is nothing to do here */
6248 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
6249 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6250 return;
6251
6252 /* someone else is in init, wait until next service event */
6253 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6254 return;
6255
6256 err = hw->phy.ops.identify_sfp(hw);
6257 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6258 goto sfp_out;
6259
6260 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
6261 /* If no cable is present, then we need to reset
6262 * the next time we find a good cable. */
6263 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
6264 }
6265
6266 /* exit on error */
6267 if (err)
6268 goto sfp_out;
6269
6270 /* exit if reset not needed */
6271 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6272 goto sfp_out;
6273
6274 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
6275
6276 /*
6277 * A module may be identified correctly, but the EEPROM may not have
6278 * support for that module. setup_sfp() will fail in that case, so
6279 * we should not allow that module to load.
6280 */
6281 if (hw->mac.type == ixgbe_mac_82598EB)
6282 err = hw->phy.ops.reset(hw);
6283 else
6284 err = hw->mac.ops.setup_sfp(hw);
6285
6286 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6287 goto sfp_out;
6288
6289 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
6290 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
6291
6292sfp_out:
6293 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6294
6295 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
6296 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
6297 e_dev_err("failed to initialize because an unsupported "
6298 "SFP+ module type was detected.\n");
6299 e_dev_err("Reload the driver after installing a "
6300 "supported module.\n");
6301 unregister_netdev(adapter->netdev);
6302 }
6303}
6304
6305/**
6306 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
6307 * @adapter - the ixgbe adapter structure
6308 **/
6309static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
6310{
6311 struct ixgbe_hw *hw = &adapter->hw;
6312 u32 autoneg;
6313 bool negotiation;
6314
6315 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
6316 return;
6317
6318 /* someone else is in init, wait until next service event */
6319 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6320 return;
6321
6322 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
6323
6324 autoneg = hw->phy.autoneg_advertised;
6325 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
6326 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Alexander Duyck70864002011-04-27 09:13:56 +00006327 if (hw->mac.ops.setup_link)
6328 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
6329
6330 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
6331 adapter->link_check_timeout = jiffies;
6332 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6333}
6334
Greg Rose83c61fa2011-09-07 05:59:35 +00006335#ifdef CONFIG_PCI_IOV
6336static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
6337{
6338 int vf;
6339 struct ixgbe_hw *hw = &adapter->hw;
6340 struct net_device *netdev = adapter->netdev;
6341 u32 gpc;
6342 u32 ciaa, ciad;
6343
6344 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
6345 if (gpc) /* If incrementing then no need for the check below */
6346 return;
6347 /*
6348 * Check to see if a bad DMA write target from an errant or
6349 * malicious VF has caused a PCIe error. If so then we can
6350 * issue a VFLR to the offending VF(s) and then resume without
6351 * requesting a full slot reset.
6352 */
6353
6354 for (vf = 0; vf < adapter->num_vfs; vf++) {
6355 ciaa = (vf << 16) | 0x80000000;
6356 /* 32 bit read so align, we really want status at offset 6 */
6357 ciaa |= PCI_COMMAND;
6358 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6359 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
6360 ciaa &= 0x7FFFFFFF;
6361 /* disable debug mode asap after reading data */
6362 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6363 /* Get the upper 16 bits which will be the PCI status reg */
6364 ciad >>= 16;
6365 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
6366 netdev_err(netdev, "VF %d Hung DMA\n", vf);
6367 /* Issue VFLR */
6368 ciaa = (vf << 16) | 0x80000000;
6369 ciaa |= 0xA8;
6370 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6371 ciad = 0x00008000; /* VFLR */
6372 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
6373 ciaa &= 0x7FFFFFFF;
6374 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6375 }
6376 }
6377}
6378
6379#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006380/**
6381 * ixgbe_service_timer - Timer Call-back
6382 * @data: pointer to adapter cast into an unsigned long
6383 **/
6384static void ixgbe_service_timer(unsigned long data)
6385{
6386 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
6387 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00006388 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00006389
Greg Rose83c61fa2011-09-07 05:59:35 +00006390#ifdef CONFIG_PCI_IOV
6391 ready = false;
6392
6393 /*
6394 * don't bother with SR-IOV VF DMA hang check if there are
6395 * no VFs or the link is down
6396 */
6397 if (!adapter->num_vfs ||
6398 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)) {
6399 ready = true;
6400 goto normal_timer_service;
6401 }
6402
6403 /* If we have VFs allocated then we must check for DMA hangs */
6404 ixgbe_check_for_bad_vf(adapter);
6405 next_event_offset = HZ / 50;
6406 adapter->timer_event_accumulator++;
6407
6408 if (adapter->timer_event_accumulator >= 100) {
6409 ready = true;
6410 adapter->timer_event_accumulator = 0;
6411 }
6412
6413 goto schedule_event;
6414
6415normal_timer_service:
6416#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006417 /* poll faster when waiting for link */
6418 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
6419 next_event_offset = HZ / 10;
6420 else
6421 next_event_offset = HZ * 2;
6422
Greg Rose83c61fa2011-09-07 05:59:35 +00006423#ifdef CONFIG_PCI_IOV
6424schedule_event:
6425#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006426 /* Reset the timer */
6427 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
6428
Greg Rose83c61fa2011-09-07 05:59:35 +00006429 if (ready)
6430 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006431}
6432
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006433static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
6434{
6435 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
6436 return;
6437
6438 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
6439
6440 /* If we're already down or resetting, just bail */
6441 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6442 test_bit(__IXGBE_RESETTING, &adapter->state))
6443 return;
6444
6445 ixgbe_dump(adapter);
6446 netdev_err(adapter->netdev, "Reset adapter\n");
6447 adapter->tx_timeout_count++;
6448
6449 ixgbe_reinit_locked(adapter);
6450}
6451
Alexander Duyck70864002011-04-27 09:13:56 +00006452/**
6453 * ixgbe_service_task - manages and runs subtasks
6454 * @work: pointer to work_struct containing our data
6455 **/
6456static void ixgbe_service_task(struct work_struct *work)
6457{
6458 struct ixgbe_adapter *adapter = container_of(work,
6459 struct ixgbe_adapter,
6460 service_task);
6461
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006462 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006463 ixgbe_sfp_detection_subtask(adapter);
6464 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00006465 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006466 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00006467 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006468 ixgbe_check_hang_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006469
6470 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006471}
6472
Alexander Duyck897ab152011-05-27 05:31:47 +00006473void ixgbe_tx_ctxtdesc(struct ixgbe_ring *tx_ring, u32 vlan_macip_lens,
6474 u32 fcoe_sof_eof, u32 type_tucmd, u32 mss_l4len_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07006475{
6476 struct ixgbe_adv_tx_context_desc *context_desc;
Alexander Duyck897ab152011-05-27 05:31:47 +00006477 u16 i = tx_ring->next_to_use;
6478
6479 context_desc = IXGBE_TX_CTXTDESC_ADV(tx_ring, i);
6480
6481 i++;
6482 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
6483
6484 /* set bits to identify this as an advanced context descriptor */
6485 type_tucmd |= IXGBE_TXD_CMD_DEXT | IXGBE_ADVTXD_DTYP_CTXT;
6486
6487 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6488 context_desc->seqnum_seed = cpu_to_le32(fcoe_sof_eof);
6489 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd);
6490 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
6491}
6492
6493static int ixgbe_tso(struct ixgbe_ring *tx_ring, struct sk_buff *skb,
6494 u32 tx_flags, __be16 protocol, u8 *hdr_len)
6495{
Auke Kok9a799d72007-09-15 14:07:45 -07006496 int err;
Alexander Duyck897ab152011-05-27 05:31:47 +00006497 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006498 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07006499
Alexander Duyck897ab152011-05-27 05:31:47 +00006500 if (!skb_is_gso(skb))
6501 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006502
Alexander Duyck897ab152011-05-27 05:31:47 +00006503 if (skb_header_cloned(skb)) {
6504 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
6505 if (err)
6506 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00006507 }
6508
Alexander Duyck897ab152011-05-27 05:31:47 +00006509 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
6510 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
6511
6512 if (protocol == __constant_htons(ETH_P_IP)) {
6513 struct iphdr *iph = ip_hdr(skb);
6514 iph->tot_len = 0;
6515 iph->check = 0;
6516 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6517 iph->daddr, 0,
6518 IPPROTO_TCP,
6519 0);
6520 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6521 } else if (skb_is_gso_v6(skb)) {
6522 ipv6_hdr(skb)->payload_len = 0;
6523 tcp_hdr(skb)->check =
6524 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
6525 &ipv6_hdr(skb)->daddr,
6526 0, IPPROTO_TCP, 0);
6527 }
6528
6529 l4len = tcp_hdrlen(skb);
6530 *hdr_len = skb_transport_offset(skb) + l4len;
6531
6532 /* mss_l4len_id: use 1 as index for TSO */
6533 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
6534 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
6535 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
6536
6537 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
6538 vlan_macip_lens = skb_network_header_len(skb);
6539 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6540 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6541
6542 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
6543 mss_l4len_idx);
6544
6545 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00006546}
6547
Alexander Duyck897ab152011-05-27 05:31:47 +00006548static bool ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
Hao Zheng5e09a102010-11-11 13:47:59 +00006549 struct sk_buff *skb, u32 tx_flags,
6550 __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07006551{
Alexander Duyck897ab152011-05-27 05:31:47 +00006552 u32 vlan_macip_lens = 0;
6553 u32 mss_l4len_idx = 0;
6554 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006555
Alexander Duyck897ab152011-05-27 05:31:47 +00006556 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006557 if (!(tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
6558 !(tx_flags & IXGBE_TX_FLAGS_TXSW))
Alexander Duyck897ab152011-05-27 05:31:47 +00006559 return false;
6560 } else {
6561 u8 l4_hdr = 0;
6562 switch (protocol) {
6563 case __constant_htons(ETH_P_IP):
6564 vlan_macip_lens |= skb_network_header_len(skb);
6565 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6566 l4_hdr = ip_hdr(skb)->protocol;
6567 break;
6568 case __constant_htons(ETH_P_IPV6):
6569 vlan_macip_lens |= skb_network_header_len(skb);
6570 l4_hdr = ipv6_hdr(skb)->nexthdr;
6571 break;
6572 default:
6573 if (unlikely(net_ratelimit())) {
6574 dev_warn(tx_ring->dev,
6575 "partial checksum but proto=%x!\n",
6576 skb->protocol);
6577 }
6578 break;
6579 }
Auke Kok9a799d72007-09-15 14:07:45 -07006580
Alexander Duyck897ab152011-05-27 05:31:47 +00006581 switch (l4_hdr) {
6582 case IPPROTO_TCP:
6583 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6584 mss_l4len_idx = tcp_hdrlen(skb) <<
6585 IXGBE_ADVTXD_L4LEN_SHIFT;
6586 break;
6587 case IPPROTO_SCTP:
6588 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6589 mss_l4len_idx = sizeof(struct sctphdr) <<
6590 IXGBE_ADVTXD_L4LEN_SHIFT;
6591 break;
6592 case IPPROTO_UDP:
6593 mss_l4len_idx = sizeof(struct udphdr) <<
6594 IXGBE_ADVTXD_L4LEN_SHIFT;
6595 break;
6596 default:
6597 if (unlikely(net_ratelimit())) {
6598 dev_warn(tx_ring->dev,
6599 "partial checksum but l4 proto=%x!\n",
6600 skb->protocol);
6601 }
6602 break;
6603 }
Auke Kok9a799d72007-09-15 14:07:45 -07006604 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006605
Alexander Duyck897ab152011-05-27 05:31:47 +00006606 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6607 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6608
6609 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
6610 type_tucmd, mss_l4len_idx);
6611
6612 return (skb->ip_summed == CHECKSUM_PARTIAL);
Auke Kok9a799d72007-09-15 14:07:45 -07006613}
6614
Alexander Duyckd3d00232011-07-15 02:31:25 +00006615static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
6616{
6617 /* set type for advanced descriptor with frame checksum insertion */
6618 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
6619 IXGBE_ADVTXD_DCMD_IFCS |
6620 IXGBE_ADVTXD_DCMD_DEXT);
6621
6622 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006623 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006624 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
6625
6626 /* set segmentation enable bits for TSO/FSO */
6627#ifdef IXGBE_FCOE
6628 if ((tx_flags & IXGBE_TX_FLAGS_TSO) || (tx_flags & IXGBE_TX_FLAGS_FSO))
6629#else
6630 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6631#endif
6632 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
6633
6634 return cmd_type;
6635}
6636
6637static __le32 ixgbe_tx_olinfo_status(u32 tx_flags, unsigned int paylen)
6638{
6639 __le32 olinfo_status =
6640 cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
6641
6642 if (tx_flags & IXGBE_TX_FLAGS_TSO) {
6643 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM |
6644 (1 << IXGBE_ADVTXD_IDX_SHIFT));
6645 /* enble IPv4 checksum for TSO */
6646 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6647 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
6648 }
6649
6650 /* enable L4 checksum for TSO and TX checksum offload */
6651 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6652 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
6653
6654#ifdef IXGBE_FCOE
6655 /* use index 1 context for FCOE/FSO */
6656 if (tx_flags & IXGBE_TX_FLAGS_FCOE)
6657 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC |
6658 (1 << IXGBE_ADVTXD_IDX_SHIFT));
6659
6660#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006661 /*
6662 * Check Context must be set if Tx switch is enabled, which it
6663 * always is for case where virtual functions are running
6664 */
6665 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
6666 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
6667
Alexander Duyckd3d00232011-07-15 02:31:25 +00006668 return olinfo_status;
6669}
6670
6671#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6672 IXGBE_TXD_CMD_RS)
6673
6674static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
6675 struct sk_buff *skb,
6676 struct ixgbe_tx_buffer *first,
6677 u32 tx_flags,
6678 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006679{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006680 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07006681 struct ixgbe_tx_buffer *tx_buffer_info;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006682 union ixgbe_adv_tx_desc *tx_desc;
6683 dma_addr_t dma;
6684 __le32 cmd_type, olinfo_status;
6685 struct skb_frag_struct *frag;
6686 unsigned int f = 0;
6687 unsigned int data_len = skb->data_len;
6688 unsigned int size = skb_headlen(skb);
6689 u32 offset = 0;
6690 u32 paylen = skb->len - hdr_len;
6691 u16 i = tx_ring->next_to_use;
6692 u16 gso_segs;
Auke Kok9a799d72007-09-15 14:07:45 -07006693
Alexander Duyckd3d00232011-07-15 02:31:25 +00006694#ifdef IXGBE_FCOE
6695 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6696 if (data_len >= sizeof(struct fcoe_crc_eof)) {
6697 data_len -= sizeof(struct fcoe_crc_eof);
6698 } else {
6699 size -= sizeof(struct fcoe_crc_eof) - data_len;
6700 data_len = 0;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006701 }
Auke Kok9a799d72007-09-15 14:07:45 -07006702 }
6703
Alexander Duyckd3d00232011-07-15 02:31:25 +00006704#endif
6705 dma = dma_map_single(dev, skb->data, size, DMA_TO_DEVICE);
6706 if (dma_mapping_error(dev, dma))
6707 goto dma_error;
6708
6709 cmd_type = ixgbe_tx_cmd_type(tx_flags);
6710 olinfo_status = ixgbe_tx_olinfo_status(tx_flags, paylen);
6711
6712 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
6713
6714 for (;;) {
6715 while (size > IXGBE_MAX_DATA_PER_TXD) {
6716 tx_desc->read.buffer_addr = cpu_to_le64(dma + offset);
6717 tx_desc->read.cmd_type_len =
6718 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
6719 tx_desc->read.olinfo_status = olinfo_status;
6720
6721 offset += IXGBE_MAX_DATA_PER_TXD;
6722 size -= IXGBE_MAX_DATA_PER_TXD;
6723
6724 tx_desc++;
6725 i++;
6726 if (i == tx_ring->count) {
6727 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, 0);
6728 i = 0;
6729 }
6730 }
6731
6732 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6733 tx_buffer_info->length = offset + size;
6734 tx_buffer_info->tx_flags = tx_flags;
6735 tx_buffer_info->dma = dma;
6736
6737 tx_desc->read.buffer_addr = cpu_to_le64(dma + offset);
6738 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
6739 tx_desc->read.olinfo_status = olinfo_status;
6740
6741 if (!data_len)
6742 break;
Auke Kok9a799d72007-09-15 14:07:45 -07006743
6744 frag = &skb_shinfo(skb)->frags[f];
Alexander Duyckd3d00232011-07-15 02:31:25 +00006745#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006746 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006747#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006748 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006749#endif
6750 data_len -= size;
6751 f++;
Auke Kok9a799d72007-09-15 14:07:45 -07006752
Alexander Duyckd3d00232011-07-15 02:31:25 +00006753 offset = 0;
6754 tx_flags |= IXGBE_TX_FLAGS_MAPPED_AS_PAGE;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006755
Ian Campbell877749b2011-08-29 23:18:26 +00006756 dma = skb_frag_dma_map(dev, frag, 0, size, DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006757 if (dma_mapping_error(dev, dma))
6758 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006759
Alexander Duyckd3d00232011-07-15 02:31:25 +00006760 tx_desc++;
6761 i++;
6762 if (i == tx_ring->count) {
6763 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, 0);
6764 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006765 }
6766 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006767
Alexander Duyckd3d00232011-07-15 02:31:25 +00006768 tx_desc->read.cmd_type_len |= cpu_to_le32(IXGBE_TXD_CMD);
6769
6770 i++;
6771 if (i == tx_ring->count)
6772 i = 0;
6773
6774 tx_ring->next_to_use = i;
6775
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006776 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6777 gso_segs = skb_shinfo(skb)->gso_segs;
6778#ifdef IXGBE_FCOE
6779 /* adjust for FCoE Sequence Offload */
6780 else if (tx_flags & IXGBE_TX_FLAGS_FSO)
6781 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
6782 skb_shinfo(skb)->gso_size);
6783#endif /* IXGBE_FCOE */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006784 else
6785 gso_segs = 1;
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006786
6787 /* multiply data chunks by size of headers */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006788 tx_buffer_info->bytecount = paylen + (gso_segs * hdr_len);
6789 tx_buffer_info->gso_segs = gso_segs;
6790 tx_buffer_info->skb = skb;
Auke Kok9a799d72007-09-15 14:07:45 -07006791
Alexander Duyckd3d00232011-07-15 02:31:25 +00006792 /* set the timestamp */
6793 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006794
6795 /*
6796 * Force memory writes to complete before letting h/w
6797 * know there are new descriptors to fetch. (Only
6798 * applicable for weak-ordered memory model archs,
6799 * such as IA-64).
6800 */
6801 wmb();
6802
Alexander Duyckd3d00232011-07-15 02:31:25 +00006803 /* set next_to_watch value indicating a packet is present */
6804 first->next_to_watch = tx_desc;
6805
6806 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006807 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006808
6809 return;
6810dma_error:
6811 dev_err(dev, "TX DMA map failed\n");
6812
6813 /* clear dma mappings for failed tx_buffer_info map */
6814 for (;;) {
6815 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6816 ixgbe_unmap_tx_resource(tx_ring, tx_buffer_info);
6817 if (tx_buffer_info == first)
6818 break;
6819 if (i == 0)
6820 i = tx_ring->count;
6821 i--;
6822 }
6823
6824 dev_kfree_skb_any(skb);
6825
6826 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006827}
6828
Alexander Duyck69830522011-01-06 14:29:58 +00006829static void ixgbe_atr(struct ixgbe_ring *ring, struct sk_buff *skb,
6830 u32 tx_flags, __be16 protocol)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006831{
Alexander Duyck69830522011-01-06 14:29:58 +00006832 struct ixgbe_q_vector *q_vector = ring->q_vector;
6833 union ixgbe_atr_hash_dword input = { .dword = 0 };
6834 union ixgbe_atr_hash_dword common = { .dword = 0 };
6835 union {
6836 unsigned char *network;
6837 struct iphdr *ipv4;
6838 struct ipv6hdr *ipv6;
6839 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006840 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006841 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006842
Alexander Duyck69830522011-01-06 14:29:58 +00006843 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6844 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006845 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006846
Alexander Duyck69830522011-01-06 14:29:58 +00006847 /* do nothing if sampling is disabled */
6848 if (!ring->atr_sample_rate)
6849 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006850
Alexander Duyck69830522011-01-06 14:29:58 +00006851 ring->atr_count++;
6852
6853 /* snag network header to get L4 type and address */
6854 hdr.network = skb_network_header(skb);
6855
6856 /* Currently only IPv4/IPv6 with TCP is supported */
6857 if ((protocol != __constant_htons(ETH_P_IPV6) ||
6858 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
6859 (protocol != __constant_htons(ETH_P_IP) ||
6860 hdr.ipv4->protocol != IPPROTO_TCP))
6861 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006862
6863 th = tcp_hdr(skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006864
Alexander Duyck66f32a82011-06-29 05:43:22 +00006865 /* skip this packet since it is invalid or the socket is closing */
6866 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006867 return;
6868
6869 /* sample on all syn packets or once every atr sample count */
6870 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6871 return;
6872
6873 /* reset sample count */
6874 ring->atr_count = 0;
6875
6876 vlan_id = htons(tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
6877
6878 /*
6879 * src and dst are inverted, think how the receiver sees them
6880 *
6881 * The input is broken into two sections, a non-compressed section
6882 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6883 * is XORed together and stored in the compressed dword.
6884 */
6885 input.formatted.vlan_id = vlan_id;
6886
6887 /*
6888 * since src port and flex bytes occupy the same word XOR them together
6889 * and write the value to source port portion of compressed dword
6890 */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006891 if (tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006892 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6893 else
6894 common.port.src ^= th->dest ^ protocol;
6895 common.port.dst ^= th->source;
6896
6897 if (protocol == __constant_htons(ETH_P_IP)) {
6898 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6899 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6900 } else {
6901 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6902 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6903 hdr.ipv6->saddr.s6_addr32[1] ^
6904 hdr.ipv6->saddr.s6_addr32[2] ^
6905 hdr.ipv6->saddr.s6_addr32[3] ^
6906 hdr.ipv6->daddr.s6_addr32[0] ^
6907 hdr.ipv6->daddr.s6_addr32[1] ^
6908 hdr.ipv6->daddr.s6_addr32[2] ^
6909 hdr.ipv6->daddr.s6_addr32[3];
6910 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006911
6912 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006913 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6914 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006915}
6916
Alexander Duyck63544e92011-05-27 05:31:42 +00006917static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006918{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006919 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006920 /* Herbert's original patch had:
6921 * smp_mb__after_netif_stop_queue();
6922 * but since that doesn't exist yet, just open code it. */
6923 smp_mb();
6924
6925 /* We need to check again in a case another CPU has just
6926 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006927 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006928 return -EBUSY;
6929
6930 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006931 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006932 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006933 return 0;
6934}
6935
Alexander Duyck82d4e462011-06-11 01:44:58 +00006936static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006937{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006938 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006939 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006940 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006941}
6942
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006943static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6944{
6945 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006946 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6947 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006948#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006949 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006950
John Fastabende5b64632011-03-08 03:44:52 +00006951 if (((protocol == htons(ETH_P_FCOE)) ||
6952 (protocol == htons(ETH_P_FIP))) &&
6953 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
6954 txq &= (adapter->ring_feature[RING_F_FCOE].indices - 1);
6955 txq += adapter->ring_feature[RING_F_FCOE].mask;
6956 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006957 }
6958#endif
6959
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006960 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6961 while (unlikely(txq >= dev->real_num_tx_queues))
6962 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006963 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006964 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006965
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006966 return skb_tx_hash(dev, skb);
6967}
6968
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006969netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006970 struct ixgbe_adapter *adapter,
6971 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006972{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006973 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006974 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006975 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006976#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6977 unsigned short f;
6978#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006979 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006980 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006981 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006982
Alexander Duycka535c302011-05-27 05:31:52 +00006983 /*
6984 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
6985 * + 1 desc for skb_head_len/IXGBE_MAX_DATA_PER_TXD,
6986 * + 2 desc gap to keep tail from touching head,
6987 * + 1 desc for context descriptor,
6988 * otherwise try next time
6989 */
6990#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6991 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6992 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6993#else
6994 count += skb_shinfo(skb)->nr_frags;
6995#endif
6996 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6997 tx_ring->tx_stats.tx_busy++;
6998 return NETDEV_TX_BUSY;
6999 }
7000
Alexander Duyck7f9643f2011-06-29 05:43:27 +00007001#ifdef CONFIG_PCI_IOV
7002 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7003 tx_flags |= IXGBE_TX_FLAGS_TXSW;
7004
7005#endif
Alexander Duyck66f32a82011-06-29 05:43:22 +00007006 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00007007 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007008 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
7009 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7010 /* else if it is a SW VLAN check the next protocol and store the tag */
7011 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
7012 struct vlan_hdr *vhdr, _vhdr;
7013 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
7014 if (!vhdr)
7015 goto out_drop;
7016
7017 protocol = vhdr->h_vlan_encapsulated_proto;
7018 tx_flags |= ntohs(vhdr->h_vlan_TCI) << IXGBE_TX_FLAGS_VLAN_SHIFT;
7019 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07007020 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007021
John Fastabend32701dc2011-09-27 03:51:56 +00007022 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00007023 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00007024 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
7025 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007026 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00007027 tx_flags |= (skb->priority & 0x7) <<
7028 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007029 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
7030 struct vlan_ethhdr *vhdr;
7031 if (skb_header_cloned(skb) &&
7032 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
7033 goto out_drop;
7034 vhdr = (struct vlan_ethhdr *)skb->data;
7035 vhdr->h_vlan_TCI = htons(tx_flags >>
7036 IXGBE_TX_FLAGS_VLAN_SHIFT);
7037 } else {
7038 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7039 }
7040 }
Alexander Duycka535c302011-05-27 05:31:52 +00007041
Alexander Duycka535c302011-05-27 05:31:52 +00007042 /* record the location of the first descriptor for this packet */
Alexander Duyckd3d00232011-07-15 02:31:25 +00007043 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
Alexander Duycka535c302011-05-27 05:31:52 +00007044
Yi Zoueacd73f2009-05-13 13:11:06 +00007045#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00007046 /* setup tx offload for FCoE */
7047 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
7048 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00007049 tso = ixgbe_fso(tx_ring, skb, tx_flags, &hdr_len);
7050 if (tso < 0)
7051 goto out_drop;
7052 else if (tso)
Alexander Duyck66f32a82011-06-29 05:43:22 +00007053 tx_flags |= IXGBE_TX_FLAGS_FSO |
7054 IXGBE_TX_FLAGS_FCOE;
7055 else
7056 tx_flags |= IXGBE_TX_FLAGS_FCOE;
Auke Kok9a799d72007-09-15 14:07:45 -07007057
Alexander Duyck66f32a82011-06-29 05:43:22 +00007058 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00007059 }
Auke Kok9a799d72007-09-15 14:07:45 -07007060
Auke Kok9a799d72007-09-15 14:07:45 -07007061#endif /* IXGBE_FCOE */
Alexander Duyck66f32a82011-06-29 05:43:22 +00007062 /* setup IPv4/IPv6 offloads */
7063 if (protocol == __constant_htons(ETH_P_IP))
7064 tx_flags |= IXGBE_TX_FLAGS_IPV4;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007065
Alexander Duyck66f32a82011-06-29 05:43:22 +00007066 tso = ixgbe_tso(tx_ring, skb, tx_flags, protocol, &hdr_len);
7067 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07007068 goto out_drop;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007069 else if (tso)
7070 tx_flags |= IXGBE_TX_FLAGS_TSO;
7071 else if (ixgbe_tx_csum(tx_ring, skb, tx_flags, protocol))
7072 tx_flags |= IXGBE_TX_FLAGS_CSUM;
7073
7074 /* add the ATR filter if ATR is on */
7075 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
7076 ixgbe_atr(tx_ring, skb, tx_flags, protocol);
7077
7078#ifdef IXGBE_FCOE
7079xmit_fcoe:
7080#endif /* IXGBE_FCOE */
Alexander Duyckd3d00232011-07-15 02:31:25 +00007081 ixgbe_tx_map(tx_ring, skb, first, tx_flags, hdr_len);
7082
7083 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07007084
7085 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00007086
7087out_drop:
7088 dev_kfree_skb_any(skb);
7089 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07007090}
7091
7092static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
7093{
7094 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7095 struct ixgbe_ring *tx_ring;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007096
Auke Kok9a799d72007-09-15 14:07:45 -07007097 tx_ring = adapter->tx_ring[skb->queue_mapping];
7098 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
7099}
7100
7101/**
7102 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007103 * @netdev: network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07007104 * @p: pointer to an address structure
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007105 *
Auke Kok9a799d72007-09-15 14:07:45 -07007106 * Returns 0 on success, negative on failure
7107 **/
7108static int ixgbe_set_mac(struct net_device *netdev, void *p)
7109{
Ben Hutchings6b73e102009-04-29 08:08:58 +00007110 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7111 struct ixgbe_hw *hw = &adapter->hw;
7112 struct sockaddr *addr = p;
7113
7114 if (!is_valid_ether_addr(addr->sa_data))
7115 return -EADDRNOTAVAIL;
7116
7117 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
7118 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
7119
7120 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
7121 IXGBE_RAH_AV);
7122
7123 return 0;
7124}
7125
7126static int
7127ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
7128{
7129 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7130 struct ixgbe_hw *hw = &adapter->hw;
7131 u16 value;
7132 int rc;
7133
7134 if (prtad != hw->phy.mdio.prtad)
7135 return -EINVAL;
7136 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
7137 if (!rc)
7138 rc = value;
7139 return rc;
7140}
7141
7142static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
7143 u16 addr, u16 value)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007144{
7145 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jiri Pirko31278e72009-06-17 01:12:19 +00007146 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007147
7148 if (prtad != hw->phy.mdio.prtad)
7149 return -EINVAL;
7150 return hw->phy.ops.write_reg(hw, addr, devad, value);
7151}
7152
7153static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
7154{
7155 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7156
7157 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
7158}
7159
7160/**
7161 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
7162 * netdev->dev_addrs
7163 * @netdev: network interface device structure
7164 *
7165 * Returns non-zero on failure
7166 **/
Jiri Pirko31278e72009-06-17 01:12:19 +00007167static int ixgbe_add_sanmac_netdev(struct net_device *dev)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007168{
7169 int err = 0;
7170 struct ixgbe_adapter *adapter = netdev_priv(dev);
7171 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7172
7173 if (is_valid_ether_addr(mac->san_addr)) {
7174 rtnl_lock();
7175 err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
7176 rtnl_unlock();
7177 }
7178 return err;
7179}
7180
7181/**
7182 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
7183 * netdev->dev_addrs
7184 * @netdev: network interface device structure
7185 *
Auke Kok9a799d72007-09-15 14:07:45 -07007186 * Returns non-zero on failure
7187 **/
7188static int ixgbe_del_sanmac_netdev(struct net_device *dev)
7189{
7190 int err = 0;
7191 struct ixgbe_adapter *adapter = netdev_priv(dev);
7192 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7193
7194 if (is_valid_ether_addr(mac->san_addr)) {
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007195 rtnl_lock();
Auke Kok9a799d72007-09-15 14:07:45 -07007196 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
Alexander Duyck1a647bd2010-01-13 01:49:13 +00007197 rtnl_unlock();
7198 }
7199 return err;
7200}
Auke Kok9a799d72007-09-15 14:07:45 -07007201
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007202#ifdef CONFIG_NET_POLL_CONTROLLER
7203/*
7204 * Polling 'interrupt' - used by things like netconsole to send skbs
7205 * without having to re-enable interrupts. It's not called while
7206 * the interrupt routine is executing.
7207 */
7208static void ixgbe_netpoll(struct net_device *netdev)
7209{
7210 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007211 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07007212
7213 /* if interface is down do nothing */
7214 if (test_bit(__IXGBE_DOWN, &adapter->state))
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007215 return;
7216
7217 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Stephen Hemminger00829822008-11-20 20:14:53 -08007218 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007219 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Chris Leeche90d4002009-03-10 16:00:24 +00007220 for (i = 0; i < num_q_vectors; i++) {
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007221 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00007222 ixgbe_msix_clean_rings(0, q_vector);
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007223 }
7224 } else {
7225 ixgbe_intr(adapter->pdev->irq, netdev);
7226 }
7227 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
7228}
7229#endif
7230
Eric Dumazetde1036b2010-10-20 23:00:04 +00007231static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
7232 struct rtnl_link_stats64 *stats)
7233{
7234 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7235 int i;
7236
Eric Dumazet1a515022010-11-16 19:26:42 -08007237 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007238 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08007239 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00007240 u64 bytes, packets;
7241 unsigned int start;
7242
Eric Dumazet1a515022010-11-16 19:26:42 -08007243 if (ring) {
7244 do {
7245 start = u64_stats_fetch_begin_bh(&ring->syncp);
7246 packets = ring->stats.packets;
7247 bytes = ring->stats.bytes;
7248 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7249 stats->rx_packets += packets;
7250 stats->rx_bytes += bytes;
7251 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00007252 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00007253
7254 for (i = 0; i < adapter->num_tx_queues; i++) {
7255 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
7256 u64 bytes, packets;
7257 unsigned int start;
7258
7259 if (ring) {
7260 do {
7261 start = u64_stats_fetch_begin_bh(&ring->syncp);
7262 packets = ring->stats.packets;
7263 bytes = ring->stats.bytes;
7264 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7265 stats->tx_packets += packets;
7266 stats->tx_bytes += bytes;
7267 }
7268 }
Eric Dumazet1a515022010-11-16 19:26:42 -08007269 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007270 /* following stats updated by ixgbe_watchdog_task() */
7271 stats->multicast = netdev->stats.multicast;
7272 stats->rx_errors = netdev->stats.rx_errors;
7273 stats->rx_length_errors = netdev->stats.rx_length_errors;
7274 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
7275 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
7276 return stats;
7277}
7278
John Fastabend8b1c0b22011-05-03 02:26:48 +00007279/* ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
7280 * #adapter: pointer to ixgbe_adapter
7281 * @tc: number of traffic classes currently enabled
7282 *
7283 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
7284 * 802.1Q priority maps to a packet buffer that exists.
7285 */
7286static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
7287{
7288 struct ixgbe_hw *hw = &adapter->hw;
7289 u32 reg, rsave;
7290 int i;
7291
7292 /* 82598 have a static priority to TC mapping that can not
7293 * be changed so no validation is needed.
7294 */
7295 if (hw->mac.type == ixgbe_mac_82598EB)
7296 return;
7297
7298 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
7299 rsave = reg;
7300
7301 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
7302 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
7303
7304 /* If up2tc is out of bounds default to zero */
7305 if (up2tc > tc)
7306 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
7307 }
7308
7309 if (reg != rsave)
7310 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
7311
7312 return;
7313}
7314
7315
7316/* ixgbe_setup_tc - routine to configure net_device for multiple traffic
7317 * classes.
7318 *
7319 * @netdev: net device to configure
7320 * @tc: number of traffic classes to enable
7321 */
7322int ixgbe_setup_tc(struct net_device *dev, u8 tc)
7323{
John Fastabend8b1c0b22011-05-03 02:26:48 +00007324 struct ixgbe_adapter *adapter = netdev_priv(dev);
7325 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00007326
John Fastabende7589ea2011-07-18 22:38:36 +00007327 /* Multiple traffic classes requires multiple queues */
7328 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
7329 e_err(drv, "Enable failed, needs MSI-X\n");
7330 return -EINVAL;
7331 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00007332
7333 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00007334 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
John Fastabend8b1c0b22011-05-03 02:26:48 +00007335 (hw->mac.type == ixgbe_mac_82598EB && tc < MAX_TRAFFIC_CLASS))
7336 return -EINVAL;
7337
7338 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00007339 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00007340 * hardware is not flexible enough to do this dynamically.
7341 */
7342 if (netif_running(dev))
7343 ixgbe_close(dev);
7344 ixgbe_clear_interrupt_scheme(adapter);
7345
John Fastabende7589ea2011-07-18 22:38:36 +00007346 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007347 netdev_set_num_tc(dev, tc);
John Fastabende7589ea2011-07-18 22:38:36 +00007348 adapter->last_lfc_mode = adapter->hw.fc.current_mode;
7349
7350 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
7351 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7352
7353 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
7354 adapter->hw.fc.requested_mode = ixgbe_fc_none;
7355 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007356 netdev_reset_tc(dev);
7357
John Fastabende7589ea2011-07-18 22:38:36 +00007358 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
7359
7360 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
7361 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7362
7363 adapter->temp_dcb_cfg.pfc_mode_enable = false;
7364 adapter->dcb_cfg.pfc_mode_enable = false;
7365 }
7366
John Fastabend8b1c0b22011-05-03 02:26:48 +00007367 ixgbe_init_interrupt_scheme(adapter);
7368 ixgbe_validate_rtr(adapter, tc);
7369 if (netif_running(dev))
7370 ixgbe_open(dev);
7371
7372 return 0;
7373}
Eric Dumazetde1036b2010-10-20 23:00:04 +00007374
Don Skidmore082757a2011-07-21 05:55:00 +00007375void ixgbe_do_reset(struct net_device *netdev)
7376{
7377 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7378
7379 if (netif_running(netdev))
7380 ixgbe_reinit_locked(adapter);
7381 else
7382 ixgbe_reset(adapter);
7383}
7384
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007385static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
7386 netdev_features_t data)
Don Skidmore082757a2011-07-21 05:55:00 +00007387{
7388 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7389
7390#ifdef CONFIG_DCB
7391 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED)
7392 data &= ~NETIF_F_HW_VLAN_RX;
7393#endif
7394
7395 /* return error if RXHASH is being enabled when RSS is not supported */
7396 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
7397 data &= ~NETIF_F_RXHASH;
7398
7399 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
7400 if (!(data & NETIF_F_RXCSUM))
7401 data &= ~NETIF_F_LRO;
7402
7403 /* Turn off LRO if not RSC capable or invalid ITR settings */
7404 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)) {
7405 data &= ~NETIF_F_LRO;
7406 } else if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
7407 (adapter->rx_itr_setting != 1 &&
7408 adapter->rx_itr_setting > IXGBE_MAX_RSC_INT_RATE)) {
7409 data &= ~NETIF_F_LRO;
7410 e_info(probe, "rx-usecs set too low, not enabling RSC\n");
7411 }
7412
7413 return data;
7414}
7415
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007416static int ixgbe_set_features(struct net_device *netdev,
7417 netdev_features_t data)
Don Skidmore082757a2011-07-21 05:55:00 +00007418{
7419 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7420 bool need_reset = false;
7421
7422 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
7423 if (!(data & NETIF_F_RXCSUM))
7424 adapter->flags &= ~IXGBE_FLAG_RX_CSUM_ENABLED;
7425 else
7426 adapter->flags |= IXGBE_FLAG_RX_CSUM_ENABLED;
7427
7428 /* Make sure RSC matches LRO, reset if change */
7429 if (!!(data & NETIF_F_LRO) !=
7430 !!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
7431 adapter->flags2 ^= IXGBE_FLAG2_RSC_ENABLED;
7432 switch (adapter->hw.mac.type) {
7433 case ixgbe_mac_X540:
7434 case ixgbe_mac_82599EB:
7435 need_reset = true;
7436 break;
7437 default:
7438 break;
7439 }
7440 }
7441
7442 /*
7443 * Check if Flow Director n-tuple support was enabled or disabled. If
7444 * the state changed, we need to reset.
7445 */
7446 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
7447 /* turn off ATR, enable perfect filters and reset */
7448 if (data & NETIF_F_NTUPLE) {
7449 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7450 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7451 need_reset = true;
7452 }
7453 } else if (!(data & NETIF_F_NTUPLE)) {
7454 /* turn off Flow Director, set ATR and reset */
7455 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7456 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
7457 !(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
7458 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7459 need_reset = true;
7460 }
7461
7462 if (need_reset)
7463 ixgbe_do_reset(netdev);
7464
7465 return 0;
7466
7467}
7468
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007469static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00007470 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007471 .ndo_stop = ixgbe_close,
7472 .ndo_start_xmit = ixgbe_xmit_frame,
7473 .ndo_select_queue = ixgbe_select_queue,
7474 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007475 .ndo_validate_addr = eth_validate_addr,
7476 .ndo_set_mac_address = ixgbe_set_mac,
7477 .ndo_change_mtu = ixgbe_change_mtu,
7478 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007479 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
7480 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00007481 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00007482 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
7483 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
7484 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Greg Rosede4c7f62011-09-29 05:57:33 +00007485 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00007486 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00007487 .ndo_get_stats64 = ixgbe_get_stats64,
John Fastabend24095aa2011-02-23 05:58:03 +00007488 .ndo_setup_tc = ixgbe_setup_tc,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007489#ifdef CONFIG_NET_POLL_CONTROLLER
7490 .ndo_poll_controller = ixgbe_netpoll,
7491#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007492#ifdef IXGBE_FCOE
7493 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007494 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007495 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007496 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7497 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007498 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00007499 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00007500#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00007501 .ndo_set_features = ixgbe_set_features,
7502 .ndo_fix_features = ixgbe_fix_features,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007503};
7504
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007505static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
7506 const struct ixgbe_info *ii)
7507{
7508#ifdef CONFIG_PCI_IOV
7509 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007510
Greg Rosec6bda302011-08-24 02:37:55 +00007511 if (hw->mac.type == ixgbe_mac_82598EB)
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007512 return;
7513
7514 /* The 82599 supports up to 64 VFs per physical function
7515 * but this implementation limits allocation to 63 so that
7516 * basic networking resources are still available to the
7517 * physical function
7518 */
7519 adapter->num_vfs = (max_vfs > 63) ? 63 : max_vfs;
Greg Rosec6bda302011-08-24 02:37:55 +00007520 ixgbe_enable_sriov(adapter, ii);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007521#endif /* CONFIG_PCI_IOV */
7522}
7523
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007524/**
Auke Kok9a799d72007-09-15 14:07:45 -07007525 * ixgbe_probe - Device Initialization Routine
7526 * @pdev: PCI device information struct
7527 * @ent: entry in ixgbe_pci_tbl
7528 *
7529 * Returns 0 on success, negative on failure
7530 *
7531 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7532 * The OS initialization, configuring of the adapter private structure,
7533 * and a hardware reset occur.
7534 **/
7535static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007536 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007537{
7538 struct net_device *netdev;
7539 struct ixgbe_adapter *adapter = NULL;
7540 struct ixgbe_hw *hw;
7541 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007542 static int cards_found;
7543 int i, err, pci_using_dac;
Don Skidmore289700d2010-12-03 03:32:58 +00007544 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007545 unsigned int indices = num_possible_cpus();
Yi Zoueacd73f2009-05-13 13:11:06 +00007546#ifdef IXGBE_FCOE
7547 u16 device_caps;
7548#endif
Don Skidmore289700d2010-12-03 03:32:58 +00007549 u32 eec;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007550 u16 wol_cap;
Auke Kok9a799d72007-09-15 14:07:45 -07007551
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007552 /* Catch broken hardware that put the wrong VF device ID in
7553 * the PCIe SR-IOV capability.
7554 */
7555 if (pdev->is_virtfn) {
7556 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7557 pci_name(pdev), pdev->vendor, pdev->device);
7558 return -EINVAL;
7559 }
7560
gouji-new9ce77662009-05-06 10:44:45 +00007561 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007562 if (err)
7563 return err;
7564
Nick Nunley1b507732010-04-27 13:10:27 +00007565 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7566 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007567 pci_using_dac = 1;
7568 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007569 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007570 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007571 err = dma_set_coherent_mask(&pdev->dev,
7572 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007573 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007574 dev_err(&pdev->dev,
7575 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007576 goto err_dma;
7577 }
7578 }
7579 pci_using_dac = 0;
7580 }
7581
gouji-new9ce77662009-05-06 10:44:45 +00007582 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007583 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007584 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007585 dev_err(&pdev->dev,
7586 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007587 goto err_pci_reg;
7588 }
7589
Frans Pop19d5afd2009-10-02 10:04:12 -07007590 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007591
Auke Kok9a799d72007-09-15 14:07:45 -07007592 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007593 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007594
John Fastabende901acd2011-04-26 07:26:08 +00007595#ifdef CONFIG_IXGBE_DCB
7596 indices *= MAX_TRAFFIC_CLASS;
7597#endif
7598
John Fastabendc85a2612010-02-25 23:15:21 +00007599 if (ii->mac == ixgbe_mac_82598EB)
7600 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7601 else
7602 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7603
John Fastabende901acd2011-04-26 07:26:08 +00007604#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007605 indices += min_t(unsigned int, num_possible_cpus(),
7606 IXGBE_MAX_FCOE_INDICES);
7607#endif
John Fastabendc85a2612010-02-25 23:15:21 +00007608 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007609 if (!netdev) {
7610 err = -ENOMEM;
7611 goto err_alloc_etherdev;
7612 }
7613
Auke Kok9a799d72007-09-15 14:07:45 -07007614 SET_NETDEV_DEV(netdev, &pdev->dev);
7615
Auke Kok9a799d72007-09-15 14:07:45 -07007616 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007617 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007618
7619 adapter->netdev = netdev;
7620 adapter->pdev = pdev;
7621 hw = &adapter->hw;
7622 hw->back = adapter;
7623 adapter->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
7624
Jeff Kirsher05857982008-09-11 19:57:00 -07007625 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007626 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007627 if (!hw->hw_addr) {
7628 err = -EIO;
7629 goto err_ioremap;
7630 }
7631
7632 for (i = 1; i <= 5; i++) {
7633 if (pci_resource_len(pdev, i) == 0)
7634 continue;
7635 }
7636
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007637 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007638 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007639 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007640 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007641
Auke Kok9a799d72007-09-15 14:07:45 -07007642 adapter->bd_number = cards_found;
7643
Auke Kok9a799d72007-09-15 14:07:45 -07007644 /* Setup hw api */
7645 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007646 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007647
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007648 /* EEPROM */
7649 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7650 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7651 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7652 if (!(eec & (1 << 8)))
7653 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7654
7655 /* PHY */
7656 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007657 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007658 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7659 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7660 hw->phy.mdio.mmds = 0;
7661 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7662 hw->phy.mdio.dev = netdev;
7663 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7664 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007665
Don Skidmore8ca783a2009-05-26 20:40:47 -07007666 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007667
7668 /* setup the private structure */
7669 err = ixgbe_sw_init(adapter);
7670 if (err)
7671 goto err_sw_init;
7672
Don Skidmoree86bff02010-02-11 04:14:08 +00007673 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007674 switch (adapter->hw.mac.type) {
7675 case ixgbe_mac_82599EB:
7676 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007677 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007678 break;
7679 default:
7680 break;
7681 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007682
Don Skidmorebf069c92009-05-07 10:39:54 +00007683 /*
7684 * If there is a fan on this device and it has failed log the
7685 * failure.
7686 */
7687 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7688 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7689 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007690 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007691 }
7692
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00007693 if (allow_unsupported_sfp)
7694 hw->allow_unsupported_sfp = allow_unsupported_sfp;
7695
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007696 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007697 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007698 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007699 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007700 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7701 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007702 err = 0;
7703 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007704 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007705 "module type was detected.\n");
7706 e_dev_err("Reload the driver after installing a supported "
7707 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007708 goto err_sw_init;
7709 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007710 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007711 goto err_sw_init;
7712 }
7713
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007714 ixgbe_probe_vf(adapter, ii);
7715
Emil Tantilov396e7992010-07-01 20:05:12 +00007716 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007717 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00007718 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00007719 NETIF_F_HW_VLAN_TX |
7720 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00007721 NETIF_F_HW_VLAN_FILTER |
7722 NETIF_F_TSO |
7723 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00007724 NETIF_F_RXHASH |
7725 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007726
Don Skidmore082757a2011-07-21 05:55:00 +00007727 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007728
Don Skidmore58be7662011-04-12 09:42:11 +00007729 switch (adapter->hw.mac.type) {
7730 case ixgbe_mac_82599EB:
7731 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007732 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00007733 netdev->hw_features |= NETIF_F_SCTP_CSUM |
7734 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00007735 break;
7736 default:
7737 break;
7738 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007739
Jeff Kirsherad31c402008-06-05 04:05:30 -07007740 netdev->vlan_features |= NETIF_F_TSO;
7741 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007742 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007743 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007744 netdev->vlan_features |= NETIF_F_SG;
7745
Jiri Pirko01789342011-08-16 06:29:00 +00007746 netdev->priv_flags |= IFF_UNICAST_FLT;
7747
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007748 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7749 adapter->flags &= ~(IXGBE_FLAG_RSS_ENABLED |
7750 IXGBE_FLAG_DCB_ENABLED);
Alexander Duyck2f90b862008-11-20 20:52:10 -08007751
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007752#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007753 netdev->dcbnl_ops = &dcbnl_ops;
7754#endif
7755
Yi Zoueacd73f2009-05-13 13:11:06 +00007756#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007757 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007758 if (hw->mac.ops.get_device_caps) {
7759 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007760 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7761 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007762 }
7763 }
Yi Zou5e09d7f2010-07-19 13:59:52 +00007764 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
7765 netdev->vlan_features |= NETIF_F_FCOE_CRC;
7766 netdev->vlan_features |= NETIF_F_FSO;
7767 netdev->vlan_features |= NETIF_F_FCOE_MTU;
7768 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007769#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007770 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007771 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007772 netdev->vlan_features |= NETIF_F_HIGHDMA;
7773 }
Auke Kok9a799d72007-09-15 14:07:45 -07007774
Don Skidmore082757a2011-07-21 05:55:00 +00007775 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
7776 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007777 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007778 netdev->features |= NETIF_F_LRO;
7779
Auke Kok9a799d72007-09-15 14:07:45 -07007780 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007781 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007782 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007783 err = -EIO;
7784 goto err_eeprom;
7785 }
7786
7787 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7788 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7789
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007790 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007791 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007792 err = -EIO;
7793 goto err_eeprom;
7794 }
7795
Alexander Duyck70864002011-04-27 09:13:56 +00007796 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
7797 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007798
Alexander Duyck70864002011-04-27 09:13:56 +00007799 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7800 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007801
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007802 err = ixgbe_init_interrupt_scheme(adapter);
7803 if (err)
7804 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007805
Don Skidmore082757a2011-07-21 05:55:00 +00007806 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
7807 netdev->hw_features &= ~NETIF_F_RXHASH;
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007808 netdev->features &= ~NETIF_F_RXHASH;
Don Skidmore082757a2011-07-21 05:55:00 +00007809 }
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007810
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007811 /* WOL not supported for all but the following */
7812 adapter->wol = 0;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007813 switch (pdev->device) {
Don Skidmore0b077fe2010-12-03 03:32:13 +00007814 case IXGBE_DEV_ID_82599_SFP:
Don Skidmore0e22d042011-12-10 06:49:43 +00007815 /* Only these subdevice supports WOL */
7816 switch (pdev->subsystem_device) {
7817 case IXGBE_SUBDEV_ID_82599_560FLR:
7818 /* only support first port */
7819 if (hw->bus.func != 0)
7820 break;
7821 case IXGBE_SUBDEV_ID_82599_SFP:
Andy Gospodarek9417c462011-07-16 07:31:33 +00007822 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0e22d042011-12-10 06:49:43 +00007823 break;
7824 }
Don Skidmore0b077fe2010-12-03 03:32:13 +00007825 break;
Alexander Duyck50d6c682010-11-16 19:27:05 -08007826 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7827 /* All except this subdevice support WOL */
Don Skidmore0b077fe2010-12-03 03:32:13 +00007828 if (pdev->subsystem_device != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
Andy Gospodarek9417c462011-07-16 07:31:33 +00007829 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0b077fe2010-12-03 03:32:13 +00007830 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007831 case IXGBE_DEV_ID_82599_KX4:
Andy Gospodarek9417c462011-07-16 07:31:33 +00007832 adapter->wol = IXGBE_WUFC_MAG;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007833 break;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007834 case IXGBE_DEV_ID_X540T:
7835 /* Check eeprom to see if it is enabled */
7836 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
7837 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
7838
7839 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
7840 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7841 (hw->bus.func == 0)))
7842 adapter->wol = IXGBE_WUFC_MAG;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007843 break;
7844 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007845 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7846
Emil Tantilov15e52092011-09-29 05:01:29 +00007847 /* save off EEPROM version number */
7848 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
7849 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
7850
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007851 /* pick up the PCI bus settings for reporting later */
7852 hw->mac.ops.get_bus_info(hw);
7853
Auke Kok9a799d72007-09-15 14:07:45 -07007854 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007855 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007856 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7857 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007858 "Unknown"),
7859 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7860 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7861 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7862 "Unknown"),
7863 netdev->dev_addr);
Don Skidmore289700d2010-12-03 03:32:58 +00007864
7865 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7866 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007867 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007868 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700d2010-12-03 03:32:58 +00007869 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007870 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700d2010-12-03 03:32:58 +00007871 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007872 else
Don Skidmore289700d2010-12-03 03:32:58 +00007873 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7874 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007875
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007876 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007877 e_dev_warn("PCI-Express bandwidth available for this card is "
7878 "not sufficient for optimal performance.\n");
7879 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7880 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007881 }
7882
Auke Kok9a799d72007-09-15 14:07:45 -07007883 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007884 err = hw->mac.ops.start_hw(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007885
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007886 if (err == IXGBE_ERR_EEPROM_VERSION) {
7887 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007888 e_dev_warn("This device is a pre-production adapter/LOM. "
7889 "Please be aware there may be issues associated "
7890 "with your hardware. If you are experiencing "
7891 "problems please contact your Intel or hardware "
7892 "representative who provided you with this "
7893 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007894 }
Auke Kok9a799d72007-09-15 14:07:45 -07007895 strcpy(netdev->name, "eth%d");
7896 err = register_netdev(netdev);
7897 if (err)
7898 goto err_register;
7899
Emil Tantilov93d3ce82011-10-19 07:59:55 +00007900 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7901 if (hw->mac.ops.disable_tx_laser &&
7902 ((hw->phy.multispeed_fiber) ||
7903 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
7904 (hw->mac.type == ixgbe_mac_82599EB))))
7905 hw->mac.ops.disable_tx_laser(hw);
7906
Jesse Brandeburg54386462009-04-17 20:44:27 +00007907 /* carrier off reporting is important to ethtool even BEFORE open */
7908 netif_carrier_off(netdev);
7909
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007910#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007911 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007912 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007913 ixgbe_setup_dca(adapter);
7914 }
7915#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007916 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007917 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007918 for (i = 0; i < adapter->num_vfs; i++)
7919 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7920 }
7921
Jacob Keller2466dd92011-09-08 03:50:54 +00007922 /* firmware requires driver version to be 0xFFFFFFFF
7923 * since os does not support feature
7924 */
Emil Tantilov9612de92011-05-07 07:40:20 +00007925 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00007926 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
7927 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00007928
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007929 /* add san mac addr to netdev */
7930 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007931
Neerav Parikhea818752012-01-04 20:23:40 +00007932 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07007933 cards_found++;
7934 return 0;
7935
7936err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007937 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007938 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007939err_sw_init:
7940err_eeprom:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007941 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7942 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007943 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007944 iounmap(hw->hw_addr);
7945err_ioremap:
7946 free_netdev(netdev);
7947err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007948 pci_release_selected_regions(pdev,
7949 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007950err_pci_reg:
7951err_dma:
7952 pci_disable_device(pdev);
7953 return err;
7954}
7955
7956/**
7957 * ixgbe_remove - Device Removal Routine
7958 * @pdev: PCI device information struct
7959 *
7960 * ixgbe_remove is called by the PCI subsystem to alert the driver
7961 * that it should release a PCI device. The could be caused by a
7962 * Hot-Plug event, or because the driver is going to be removed from
7963 * memory.
7964 **/
7965static void __devexit ixgbe_remove(struct pci_dev *pdev)
7966{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007967 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7968 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007969
7970 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007971 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007972
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007973#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007974 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7975 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7976 dca_remove_requester(&pdev->dev);
7977 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7978 }
7979
7980#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007981#ifdef IXGBE_FCOE
7982 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
7983 ixgbe_cleanup_fcoe(adapter);
7984
7985#endif /* IXGBE_FCOE */
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007986
7987 /* remove the added san mac */
7988 ixgbe_del_sanmac_netdev(netdev);
7989
Donald Skidmorec4900be2008-11-20 21:11:42 -08007990 if (netdev->reg_state == NETREG_REGISTERED)
7991 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007992
Greg Rosec6bda302011-08-24 02:37:55 +00007993 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
7994 if (!(ixgbe_check_vf_assignment(adapter)))
7995 ixgbe_disable_sriov(adapter);
7996 else
7997 e_dev_warn("Unloading driver while VFs are assigned "
7998 "- VFs will not be deallocated\n");
7999 }
Greg Rose1cdd1ec2010-01-09 02:26:46 +00008000
Alexander Duyck7a921c92009-05-06 10:43:28 +00008001 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08008002
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008003 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008004
8005 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00008006 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00008007 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07008008
Emil Tantilov849c4542010-06-03 16:53:41 +00008009 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008010
Auke Kok9a799d72007-09-15 14:07:45 -07008011 free_netdev(netdev);
8012
Frans Pop19d5afd2009-10-02 10:04:12 -07008013 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008014
Auke Kok9a799d72007-09-15 14:07:45 -07008015 pci_disable_device(pdev);
8016}
8017
8018/**
8019 * ixgbe_io_error_detected - called when PCI error is detected
8020 * @pdev: Pointer to PCI device
8021 * @state: The current pci connection state
8022 *
8023 * This function is called after a PCI bus error affecting
8024 * this device has been detected.
8025 */
8026static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00008027 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07008028{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008029 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8030 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008031
Greg Rose83c61fa2011-09-07 05:59:35 +00008032#ifdef CONFIG_PCI_IOV
8033 struct pci_dev *bdev, *vfdev;
8034 u32 dw0, dw1, dw2, dw3;
8035 int vf, pos;
8036 u16 req_id, pf_func;
8037
8038 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
8039 adapter->num_vfs == 0)
8040 goto skip_bad_vf_detection;
8041
8042 bdev = pdev->bus->self;
8043 while (bdev && (bdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT))
8044 bdev = bdev->bus->self;
8045
8046 if (!bdev)
8047 goto skip_bad_vf_detection;
8048
8049 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
8050 if (!pos)
8051 goto skip_bad_vf_detection;
8052
8053 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
8054 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
8055 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
8056 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
8057
8058 req_id = dw1 >> 16;
8059 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
8060 if (!(req_id & 0x0080))
8061 goto skip_bad_vf_detection;
8062
8063 pf_func = req_id & 0x01;
8064 if ((pf_func & 1) == (pdev->devfn & 1)) {
8065 unsigned int device_id;
8066
8067 vf = (req_id & 0x7F) >> 1;
8068 e_dev_err("VF %d has caused a PCIe error\n", vf);
8069 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
8070 "%8.8x\tdw3: %8.8x\n",
8071 dw0, dw1, dw2, dw3);
8072 switch (adapter->hw.mac.type) {
8073 case ixgbe_mac_82599EB:
8074 device_id = IXGBE_82599_VF_DEVICE_ID;
8075 break;
8076 case ixgbe_mac_X540:
8077 device_id = IXGBE_X540_VF_DEVICE_ID;
8078 break;
8079 default:
8080 device_id = 0;
8081 break;
8082 }
8083
8084 /* Find the pci device of the offending VF */
8085 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID, device_id, NULL);
8086 while (vfdev) {
8087 if (vfdev->devfn == (req_id & 0xFF))
8088 break;
8089 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID,
8090 device_id, vfdev);
8091 }
8092 /*
8093 * There's a slim chance the VF could have been hot plugged,
8094 * so if it is no longer present we don't need to issue the
8095 * VFLR. Just clean up the AER in that case.
8096 */
8097 if (vfdev) {
8098 e_dev_err("Issuing VFLR to VF %d\n", vf);
8099 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
8100 }
8101
8102 pci_cleanup_aer_uncorrect_error_status(pdev);
8103 }
8104
8105 /*
8106 * Even though the error may have occurred on the other port
8107 * we still need to increment the vf error reference count for
8108 * both ports because the I/O resume function will be called
8109 * for both of them.
8110 */
8111 adapter->vferr_refcount++;
8112
8113 return PCI_ERS_RESULT_RECOVERED;
8114
8115skip_bad_vf_detection:
8116#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07008117 netif_device_detach(netdev);
8118
Breno Leitao3044b8d2009-05-06 10:44:26 +00008119 if (state == pci_channel_io_perm_failure)
8120 return PCI_ERS_RESULT_DISCONNECT;
8121
Auke Kok9a799d72007-09-15 14:07:45 -07008122 if (netif_running(netdev))
8123 ixgbe_down(adapter);
8124 pci_disable_device(pdev);
8125
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07008126 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07008127 return PCI_ERS_RESULT_NEED_RESET;
8128}
8129
8130/**
8131 * ixgbe_io_slot_reset - called after the pci bus has been reset.
8132 * @pdev: Pointer to PCI device
8133 *
8134 * Restart the card from scratch, as if from a cold-boot.
8135 */
8136static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
8137{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008138 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008139 pci_ers_result_t result;
8140 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07008141
gouji-new9ce77662009-05-06 10:44:45 +00008142 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00008143 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008144 result = PCI_ERS_RESULT_DISCONNECT;
8145 } else {
8146 pci_set_master(pdev);
8147 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00008148 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008149
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07008150 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008151
8152 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00008153 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008154 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07008155 }
Auke Kok9a799d72007-09-15 14:07:45 -07008156
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008157 err = pci_cleanup_aer_uncorrect_error_status(pdev);
8158 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00008159 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
8160 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008161 /* non-fatal, continue */
8162 }
Auke Kok9a799d72007-09-15 14:07:45 -07008163
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008164 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07008165}
8166
8167/**
8168 * ixgbe_io_resume - called when traffic can start flowing again.
8169 * @pdev: Pointer to PCI device
8170 *
8171 * This callback is called when the error recovery driver tells us that
8172 * its OK to resume normal operation.
8173 */
8174static void ixgbe_io_resume(struct pci_dev *pdev)
8175{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008176 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8177 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008178
Greg Rose83c61fa2011-09-07 05:59:35 +00008179#ifdef CONFIG_PCI_IOV
8180 if (adapter->vferr_refcount) {
8181 e_info(drv, "Resuming after VF err\n");
8182 adapter->vferr_refcount--;
8183 return;
8184 }
8185
8186#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00008187 if (netif_running(netdev))
8188 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008189
8190 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008191}
8192
8193static struct pci_error_handlers ixgbe_err_handler = {
8194 .error_detected = ixgbe_io_error_detected,
8195 .slot_reset = ixgbe_io_slot_reset,
8196 .resume = ixgbe_io_resume,
8197};
8198
8199static struct pci_driver ixgbe_driver = {
8200 .name = ixgbe_driver_name,
8201 .id_table = ixgbe_pci_tbl,
8202 .probe = ixgbe_probe,
8203 .remove = __devexit_p(ixgbe_remove),
8204#ifdef CONFIG_PM
8205 .suspend = ixgbe_suspend,
8206 .resume = ixgbe_resume,
8207#endif
8208 .shutdown = ixgbe_shutdown,
8209 .err_handler = &ixgbe_err_handler
8210};
8211
8212/**
8213 * ixgbe_init_module - Driver Registration Routine
8214 *
8215 * ixgbe_init_module is the first routine called when the driver is
8216 * loaded. All it does is register with the PCI subsystem.
8217 **/
8218static int __init ixgbe_init_module(void)
8219{
8220 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00008221 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00008222 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07008223
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008224#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008225 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008226#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008227
Auke Kok9a799d72007-09-15 14:07:45 -07008228 ret = pci_register_driver(&ixgbe_driver);
8229 return ret;
8230}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07008231
Auke Kok9a799d72007-09-15 14:07:45 -07008232module_init(ixgbe_init_module);
8233
8234/**
8235 * ixgbe_exit_module - Driver Exit Cleanup Routine
8236 *
8237 * ixgbe_exit_module is called just before the driver is removed
8238 * from memory.
8239 **/
8240static void __exit ixgbe_exit_module(void)
8241{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008242#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008243 dca_unregister_notify(&dca_notifier);
8244#endif
Auke Kok9a799d72007-09-15 14:07:45 -07008245 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08008246 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07008247}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008248
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008249#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008250static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008251 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008252{
8253 int ret_val;
8254
8255 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008256 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008257
8258 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
8259}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008260
Alexander Duyckb4533682009-03-31 21:32:42 +00008261#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00008262
Auke Kok9a799d72007-09-15 14:07:45 -07008263module_exit(ixgbe_exit_module);
8264
8265/* ixgbe_main.c */