blob: 060964378e584113bcf73a99c6940d8e8304827a [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore94971822012-01-06 03:24:16 +00004 Copyright(c) 1999 - 2012 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
Auke Kok9a799d72007-09-15 14:07:45 -070023 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28#include <linux/types.h>
29#include <linux/module.h>
30#include <linux/pci.h>
31#include <linux/netdevice.h>
32#include <linux/vmalloc.h>
33#include <linux/string.h>
34#include <linux/in.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000035#include <linux/interrupt.h>
Auke Kok9a799d72007-09-15 14:07:45 -070036#include <linux/ip.h>
37#include <linux/tcp.h>
Alexander Duyck897ab152011-05-27 05:31:47 +000038#include <linux/sctp.h>
Lucy Liu60127862009-07-22 14:07:33 +000039#include <linux/pkt_sched.h>
Auke Kok9a799d72007-09-15 14:07:45 -070040#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Auke Kok9a799d72007-09-15 14:07:45 -070042#include <net/checksum.h>
43#include <net/ip6_checksum.h>
44#include <linux/ethtool.h>
Jiri Pirko01789342011-08-16 06:29:00 +000045#include <linux/if.h>
Auke Kok9a799d72007-09-15 14:07:45 -070046#include <linux/if_vlan.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040047#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000048#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070049
50#include "ixgbe.h"
51#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000052#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000053#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070054
55char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070056static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000057 "Intel(R) 10 Gigabit PCI Express Network Driver";
Neerav Parikhea818752012-01-04 20:23:40 +000058char ixgbe_default_device_descr[] =
59 "Intel(R) 10 Gigabit Network Connection";
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000060#define MAJ 3
Don Skidmore19d478b2011-10-07 03:53:51 +000061#define MIN 6
62#define BUILD 7
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000063#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
Don Skidmorea38a1042011-05-20 03:05:14 +000064 __stringify(BUILD) "-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070065const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000066static const char ixgbe_copyright[] =
Don Skidmore94971822012-01-06 03:24:16 +000067 "Copyright (c) 1999-2012 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070068
69static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070070 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000071 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e12010-11-16 19:27:16 -080072 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070073};
74
75/* ixgbe_pci_tbl - PCI Device ID Table
76 *
77 * Wildcard entries (PCI_ANY_ID) should come last
78 * Last entry must be all 0s
79 *
80 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
81 * Class, Class Mask, private data (not used) }
82 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000083static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Alexander Duyck54239c62011-07-15 03:06:06 +000084 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
85 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
86 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
87 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
88 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
89 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
90 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
91 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
92 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
93 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
94 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
95 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
96 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
97 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
98 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
99 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
Emil Tantilov7d145282011-09-08 08:30:14 +0000110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
Emil Tantilov9e791e42011-11-04 06:43:29 +0000111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
Auke Kok9a799d72007-09-15 14:07:45 -0700112 /* required last entry */
113 {0, }
114};
115MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
116
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400117#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800118static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000119 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800120static struct notifier_block dca_notifier = {
121 .notifier_call = ixgbe_notify_dca,
122 .next = NULL,
123 .priority = 0
124};
125#endif
126
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000127#ifdef CONFIG_PCI_IOV
128static unsigned int max_vfs;
129module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000130MODULE_PARM_DESC(max_vfs,
131 "Maximum number of virtual functions to allocate per physical function");
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000132#endif /* CONFIG_PCI_IOV */
133
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000134static unsigned int allow_unsupported_sfp;
135module_param(allow_unsupported_sfp, uint, 0);
136MODULE_PARM_DESC(allow_unsupported_sfp,
137 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
138
Auke Kok9a799d72007-09-15 14:07:45 -0700139MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
140MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
141MODULE_LICENSE("GPL");
142MODULE_VERSION(DRV_VERSION);
143
144#define DEFAULT_DEBUG_LEVEL_SHIFT 3
145
Alexander Duyck70864002011-04-27 09:13:56 +0000146static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
147{
148 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
149 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
150 schedule_work(&adapter->service_task);
151}
152
153static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
154{
155 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
156
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000157 /* flush memory to make sure state is correct before next watchdog */
Alexander Duyck70864002011-04-27 09:13:56 +0000158 smp_mb__before_clear_bit();
159 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
160}
161
Taku Izumidcd79ae2010-04-27 14:39:53 +0000162struct ixgbe_reg_info {
163 u32 ofs;
164 char *name;
165};
166
167static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
168
169 /* General Registers */
170 {IXGBE_CTRL, "CTRL"},
171 {IXGBE_STATUS, "STATUS"},
172 {IXGBE_CTRL_EXT, "CTRL_EXT"},
173
174 /* Interrupt Registers */
175 {IXGBE_EICR, "EICR"},
176
177 /* RX Registers */
178 {IXGBE_SRRCTL(0), "SRRCTL"},
179 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
180 {IXGBE_RDLEN(0), "RDLEN"},
181 {IXGBE_RDH(0), "RDH"},
182 {IXGBE_RDT(0), "RDT"},
183 {IXGBE_RXDCTL(0), "RXDCTL"},
184 {IXGBE_RDBAL(0), "RDBAL"},
185 {IXGBE_RDBAH(0), "RDBAH"},
186
187 /* TX Registers */
188 {IXGBE_TDBAL(0), "TDBAL"},
189 {IXGBE_TDBAH(0), "TDBAH"},
190 {IXGBE_TDLEN(0), "TDLEN"},
191 {IXGBE_TDH(0), "TDH"},
192 {IXGBE_TDT(0), "TDT"},
193 {IXGBE_TXDCTL(0), "TXDCTL"},
194
195 /* List Terminator */
196 {}
197};
198
199
200/*
201 * ixgbe_regdump - register printout routine
202 */
203static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
204{
205 int i = 0, j = 0;
206 char rname[16];
207 u32 regs[64];
208
209 switch (reginfo->ofs) {
210 case IXGBE_SRRCTL(0):
211 for (i = 0; i < 64; i++)
212 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
213 break;
214 case IXGBE_DCA_RXCTRL(0):
215 for (i = 0; i < 64; i++)
216 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
217 break;
218 case IXGBE_RDLEN(0):
219 for (i = 0; i < 64; i++)
220 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
221 break;
222 case IXGBE_RDH(0):
223 for (i = 0; i < 64; i++)
224 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
225 break;
226 case IXGBE_RDT(0):
227 for (i = 0; i < 64; i++)
228 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
229 break;
230 case IXGBE_RXDCTL(0):
231 for (i = 0; i < 64; i++)
232 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
233 break;
234 case IXGBE_RDBAL(0):
235 for (i = 0; i < 64; i++)
236 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
237 break;
238 case IXGBE_RDBAH(0):
239 for (i = 0; i < 64; i++)
240 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
241 break;
242 case IXGBE_TDBAL(0):
243 for (i = 0; i < 64; i++)
244 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
245 break;
246 case IXGBE_TDBAH(0):
247 for (i = 0; i < 64; i++)
248 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
249 break;
250 case IXGBE_TDLEN(0):
251 for (i = 0; i < 64; i++)
252 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
253 break;
254 case IXGBE_TDH(0):
255 for (i = 0; i < 64; i++)
256 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
257 break;
258 case IXGBE_TDT(0):
259 for (i = 0; i < 64; i++)
260 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
261 break;
262 case IXGBE_TXDCTL(0):
263 for (i = 0; i < 64; i++)
264 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
265 break;
266 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000267 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000268 IXGBE_READ_REG(hw, reginfo->ofs));
269 return;
270 }
271
272 for (i = 0; i < 8; i++) {
273 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000274 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000275 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000276 pr_cont(" %08x", regs[i*8+j]);
277 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000278 }
279
280}
281
282/*
283 * ixgbe_dump - Print registers, tx-rings and rx-rings
284 */
285static void ixgbe_dump(struct ixgbe_adapter *adapter)
286{
287 struct net_device *netdev = adapter->netdev;
288 struct ixgbe_hw *hw = &adapter->hw;
289 struct ixgbe_reg_info *reginfo;
290 int n = 0;
291 struct ixgbe_ring *tx_ring;
292 struct ixgbe_tx_buffer *tx_buffer_info;
293 union ixgbe_adv_tx_desc *tx_desc;
294 struct my_u0 { u64 a; u64 b; } *u0;
295 struct ixgbe_ring *rx_ring;
296 union ixgbe_adv_rx_desc *rx_desc;
297 struct ixgbe_rx_buffer *rx_buffer_info;
298 u32 staterr;
299 int i = 0;
300
301 if (!netif_msg_hw(adapter))
302 return;
303
304 /* Print netdevice Info */
305 if (netdev) {
306 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000307 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000308 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000309 pr_info("%-15s %016lX %016lX %016lX\n",
310 netdev->name,
311 netdev->state,
312 netdev->trans_start,
313 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000314 }
315
316 /* Print Registers */
317 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000318 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000319 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
320 reginfo->name; reginfo++) {
321 ixgbe_regdump(hw, reginfo);
322 }
323
324 /* Print TX Ring Summary */
325 if (!netdev || !netif_running(netdev))
326 goto exit;
327
328 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000329 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000330 for (n = 0; n < adapter->num_tx_queues; n++) {
331 tx_ring = adapter->tx_ring[n];
332 tx_buffer_info =
333 &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Alexander Duyckd3d00232011-07-15 02:31:25 +0000334 pr_info(" %5d %5X %5X %016llX %04X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000335 n, tx_ring->next_to_use, tx_ring->next_to_clean,
336 (u64)tx_buffer_info->dma,
337 tx_buffer_info->length,
338 tx_buffer_info->next_to_watch,
339 (u64)tx_buffer_info->time_stamp);
340 }
341
342 /* Print TX Rings */
343 if (!netif_msg_tx_done(adapter))
344 goto rx_ring_summary;
345
346 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
347
348 /* Transmit Descriptor Formats
349 *
350 * Advanced Transmit Descriptor
351 * +--------------------------------------------------------------+
352 * 0 | Buffer Address [63:0] |
353 * +--------------------------------------------------------------+
354 * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
355 * +--------------------------------------------------------------+
356 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
357 */
358
359 for (n = 0; n < adapter->num_tx_queues; n++) {
360 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000361 pr_info("------------------------------------\n");
362 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
363 pr_info("------------------------------------\n");
364 pr_info("T [desc] [address 63:0 ] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000365 "[PlPOIdStDDt Ln] [bi->dma ] "
366 "leng ntw timestamp bi->skb\n");
367
368 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duycke4f74022012-01-31 02:59:44 +0000369 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000370 tx_buffer_info = &tx_ring->tx_buffer_info[i];
371 u0 = (struct my_u0 *)tx_desc;
Joe Perchesc7689572010-09-07 21:35:17 +0000372 pr_info("T [0x%03X] %016llX %016llX %016llX"
Alexander Duyckd3d00232011-07-15 02:31:25 +0000373 " %04X %p %016llX %p", i,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000374 le64_to_cpu(u0->a),
375 le64_to_cpu(u0->b),
376 (u64)tx_buffer_info->dma,
377 tx_buffer_info->length,
378 tx_buffer_info->next_to_watch,
379 (u64)tx_buffer_info->time_stamp,
380 tx_buffer_info->skb);
381 if (i == tx_ring->next_to_use &&
382 i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000383 pr_cont(" NTC/U\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000384 else if (i == tx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000385 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000386 else if (i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000387 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000388 else
Joe Perchesc7689572010-09-07 21:35:17 +0000389 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000390
391 if (netif_msg_pktdata(adapter) &&
392 tx_buffer_info->dma != 0)
393 print_hex_dump(KERN_INFO, "",
394 DUMP_PREFIX_ADDRESS, 16, 1,
395 phys_to_virt(tx_buffer_info->dma),
396 tx_buffer_info->length, true);
397 }
398 }
399
400 /* Print RX Rings Summary */
401rx_ring_summary:
402 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000403 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000404 for (n = 0; n < adapter->num_rx_queues; n++) {
405 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000406 pr_info("%5d %5X %5X\n",
407 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000408 }
409
410 /* Print RX Rings */
411 if (!netif_msg_rx_status(adapter))
412 goto exit;
413
414 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
415
416 /* Advanced Receive Descriptor (Read) Format
417 * 63 1 0
418 * +-----------------------------------------------------+
419 * 0 | Packet Buffer Address [63:1] |A0/NSE|
420 * +----------------------------------------------+------+
421 * 8 | Header Buffer Address [63:1] | DD |
422 * +-----------------------------------------------------+
423 *
424 *
425 * Advanced Receive Descriptor (Write-Back) Format
426 *
427 * 63 48 47 32 31 30 21 20 16 15 4 3 0
428 * +------------------------------------------------------+
429 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
430 * | Checksum Ident | | | | Type | Type |
431 * +------------------------------------------------------+
432 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
433 * +------------------------------------------------------+
434 * 63 48 47 32 31 20 19 0
435 */
436 for (n = 0; n < adapter->num_rx_queues; n++) {
437 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000438 pr_info("------------------------------------\n");
439 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
440 pr_info("------------------------------------\n");
441 pr_info("R [desc] [ PktBuf A0] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000442 "[ HeadBuf DD] [bi->dma ] [bi->skb] "
443 "<-- Adv Rx Read format\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000444 pr_info("RWB[desc] [PcsmIpSHl PtRs] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000445 "[vl er S cks ln] ---------------- [bi->skb] "
446 "<-- Adv Rx Write-Back format\n");
447
448 for (i = 0; i < rx_ring->count; i++) {
449 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000450 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000451 u0 = (struct my_u0 *)rx_desc;
452 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
453 if (staterr & IXGBE_RXD_STAT_DD) {
454 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000455 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000456 "%016llX ---------------- %p", i,
457 le64_to_cpu(u0->a),
458 le64_to_cpu(u0->b),
459 rx_buffer_info->skb);
460 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000461 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000462 "%016llX %016llX %p", i,
463 le64_to_cpu(u0->a),
464 le64_to_cpu(u0->b),
465 (u64)rx_buffer_info->dma,
466 rx_buffer_info->skb);
467
468 if (netif_msg_pktdata(adapter)) {
469 print_hex_dump(KERN_INFO, "",
470 DUMP_PREFIX_ADDRESS, 16, 1,
471 phys_to_virt(rx_buffer_info->dma),
472 rx_ring->rx_buf_len, true);
473
474 if (rx_ring->rx_buf_len
Alexander Duyck919e78a2011-08-26 09:52:38 +0000475 < IXGBE_RXBUFFER_2K)
Taku Izumidcd79ae2010-04-27 14:39:53 +0000476 print_hex_dump(KERN_INFO, "",
477 DUMP_PREFIX_ADDRESS, 16, 1,
478 phys_to_virt(
479 rx_buffer_info->page_dma +
480 rx_buffer_info->page_offset
481 ),
482 PAGE_SIZE/2, true);
483 }
484 }
485
486 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000487 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000488 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000489 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000490 else
Joe Perchesc7689572010-09-07 21:35:17 +0000491 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000492
493 }
494 }
495
496exit:
497 return;
498}
499
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800500static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
501{
502 u32 ctrl_ext;
503
504 /* Let firmware take over control of h/w */
505 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
506 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000507 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800508}
509
510static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
511{
512 u32 ctrl_ext;
513
514 /* Let firmware know the driver has taken over */
515 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
516 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000517 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800518}
Auke Kok9a799d72007-09-15 14:07:45 -0700519
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000520/*
521 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
522 * @adapter: pointer to adapter struct
523 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
524 * @queue: queue to map the corresponding interrupt to
525 * @msix_vector: the vector to map to the corresponding queue
526 *
527 */
528static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000529 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700530{
531 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000532 struct ixgbe_hw *hw = &adapter->hw;
533 switch (hw->mac.type) {
534 case ixgbe_mac_82598EB:
535 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
536 if (direction == -1)
537 direction = 0;
538 index = (((direction * 64) + queue) >> 2) & 0x1F;
539 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
540 ivar &= ~(0xFF << (8 * (queue & 0x3)));
541 ivar |= (msix_vector << (8 * (queue & 0x3)));
542 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
543 break;
544 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800545 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000546 if (direction == -1) {
547 /* other causes */
548 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
549 index = ((queue & 1) * 8);
550 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
551 ivar &= ~(0xFF << index);
552 ivar |= (msix_vector << index);
553 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
554 break;
555 } else {
556 /* tx or rx causes */
557 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
558 index = ((16 * (queue & 1)) + (8 * direction));
559 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
560 ivar &= ~(0xFF << index);
561 ivar |= (msix_vector << index);
562 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
563 break;
564 }
565 default:
566 break;
567 }
Auke Kok9a799d72007-09-15 14:07:45 -0700568}
569
Alexander Duyckfe49f042009-06-04 16:00:09 +0000570static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000571 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000572{
573 u32 mask;
574
Alexander Duyckbd508172010-11-16 19:27:03 -0800575 switch (adapter->hw.mac.type) {
576 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000577 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
578 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800579 break;
580 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800581 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000582 mask = (qmask & 0xFFFFFFFF);
583 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
584 mask = (qmask >> 32);
585 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800586 break;
587 default:
588 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000589 }
590}
591
Alexander Duyckd3d00232011-07-15 02:31:25 +0000592static inline void ixgbe_unmap_tx_resource(struct ixgbe_ring *ring,
593 struct ixgbe_tx_buffer *tx_buffer)
594{
595 if (tx_buffer->dma) {
596 if (tx_buffer->tx_flags & IXGBE_TX_FLAGS_MAPPED_AS_PAGE)
597 dma_unmap_page(ring->dev,
598 tx_buffer->dma,
599 tx_buffer->length,
600 DMA_TO_DEVICE);
601 else
602 dma_unmap_single(ring->dev,
603 tx_buffer->dma,
604 tx_buffer->length,
605 DMA_TO_DEVICE);
606 }
607 tx_buffer->dma = 0;
608}
609
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800610void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *tx_ring,
611 struct ixgbe_tx_buffer *tx_buffer_info)
Auke Kok9a799d72007-09-15 14:07:45 -0700612{
Alexander Duyckd3d00232011-07-15 02:31:25 +0000613 ixgbe_unmap_tx_resource(tx_ring, tx_buffer_info);
614 if (tx_buffer_info->skb)
Auke Kok9a799d72007-09-15 14:07:45 -0700615 dev_kfree_skb_any(tx_buffer_info->skb);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000616 tx_buffer_info->skb = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -0700617 /* tx_buffer_info must be completely set up in the transmit path */
618}
619
John Fastabendc84d3242010-11-16 19:27:12 -0800620static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700621{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700622 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800623 struct ixgbe_hw_stats *hwstats = &adapter->stats;
624 u32 data = 0;
625 u32 xoff[8] = {0};
626 int i;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700627
John Fastabendc84d3242010-11-16 19:27:12 -0800628 if ((hw->fc.current_mode == ixgbe_fc_full) ||
629 (hw->fc.current_mode == ixgbe_fc_rx_pause)) {
630 switch (hw->mac.type) {
631 case ixgbe_mac_82598EB:
632 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
633 break;
634 default:
635 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
636 }
637 hwstats->lxoffrxc += data;
638
639 /* refill credits (no tx hang) if we received xoff */
640 if (!data)
641 return;
642
643 for (i = 0; i < adapter->num_tx_queues; i++)
644 clear_bit(__IXGBE_HANG_CHECK_ARMED,
645 &adapter->tx_ring[i]->state);
646 return;
647 } else if (!(adapter->dcb_cfg.pfc_mode_enable))
648 return;
649
650 /* update stats for each tc, only valid with PFC enabled */
651 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
652 switch (hw->mac.type) {
653 case ixgbe_mac_82598EB:
654 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
655 break;
656 default:
657 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
658 }
659 hwstats->pxoffrxc[i] += xoff[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700660 }
661
John Fastabendc84d3242010-11-16 19:27:12 -0800662 /* disarm tx queues that have received xoff frames */
663 for (i = 0; i < adapter->num_tx_queues; i++) {
664 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendfb5475f2011-04-26 07:26:36 +0000665 u8 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800666
667 if (xoff[tc])
668 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
669 }
670}
671
672static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
673{
674 return ring->tx_stats.completed;
675}
676
677static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
678{
679 struct ixgbe_adapter *adapter = netdev_priv(ring->netdev);
680 struct ixgbe_hw *hw = &adapter->hw;
681
682 u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
683 u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
684
685 if (head != tail)
686 return (head < tail) ?
687 tail - head : (tail + ring->count - head);
688
689 return 0;
690}
691
692static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
693{
694 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
695 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
696 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
697 bool ret = false;
698
699 clear_check_for_tx_hang(tx_ring);
700
701 /*
702 * Check for a hung queue, but be thorough. This verifies
703 * that a transmit has been completed since the previous
704 * check AND there is at least one packet pending. The
705 * ARMED bit is set to indicate a potential hang. The
706 * bit is cleared if a pause frame is received to remove
707 * false hang detection due to PFC or 802.3x frames. By
708 * requiring this to fail twice we avoid races with
709 * pfc clearing the ARMED bit and conditions where we
710 * run the check_tx_hang logic with a transmit completion
711 * pending but without time to complete it yet.
712 */
713 if ((tx_done_old == tx_done) && tx_pending) {
714 /* make sure it is true for two checks in a row */
715 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
716 &tx_ring->state);
717 } else {
718 /* update completed stats and continue */
719 tx_ring->tx_stats.tx_done_old = tx_done;
720 /* reset the countdown */
721 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
722 }
723
724 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700725}
726
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000727/**
728 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
729 * @adapter: driver private struct
730 **/
731static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
732{
733
734 /* Do the reset outside of interrupt context */
735 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
736 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
737 ixgbe_service_event_schedule(adapter);
738 }
739}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700740
Auke Kok9a799d72007-09-15 14:07:45 -0700741/**
742 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000743 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700744 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700745 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000746static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000747 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700748{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000749 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000750 struct ixgbe_tx_buffer *tx_buffer;
751 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700752 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +0000753 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000754 u16 i = tx_ring->next_to_clean;
Auke Kok9a799d72007-09-15 14:07:45 -0700755
Alexander Duyckd3d00232011-07-15 02:31:25 +0000756 tx_buffer = &tx_ring->tx_buffer_info[i];
Alexander Duycke4f74022012-01-31 02:59:44 +0000757 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800758
Alexander Duyck30065e62011-07-15 03:05:14 +0000759 for (; budget; budget--) {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000760 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -0700761
Alexander Duyckd3d00232011-07-15 02:31:25 +0000762 /* if next_to_watch is not set then there is no work pending */
763 if (!eop_desc)
764 break;
765
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;
Alexander Duycke4f74022012-01-31 02:59:44 +0000798 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000799 }
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 Duycke4f74022012-01-31 02:59:44 +0000815 tx_desc = IXGBE_TX_DESC(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
Alexander Duyckb2d96e02012-02-07 08:14:33 +0000843 netdev_tx_completed_queue(txring_txq(tx_ring),
844 total_packets, total_bytes);
845
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800846#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +0000847 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +0000848 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800849 /* Make sure that anybody stopping the queue after this
850 * sees the new next_to_clean.
851 */
852 smp_mb();
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800853 if (__netif_subqueue_stopped(tx_ring->netdev, tx_ring->queue_index) &&
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800854 !test_bit(__IXGBE_DOWN, &adapter->state)) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800855 netif_wake_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800856 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800857 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800858 }
Auke Kok9a799d72007-09-15 14:07:45 -0700859
Alexander Duyck59224552011-08-31 00:01:06 +0000860 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -0700861}
862
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400863#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800864static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800865 struct ixgbe_ring *rx_ring,
866 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800867{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800868 struct ixgbe_hw *hw = &adapter->hw;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800869 u32 rxctrl;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800870 u8 reg_idx = rx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800871
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800872 rxctrl = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(reg_idx));
873 switch (hw->mac.type) {
874 case ixgbe_mac_82598EB:
875 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000876 rxctrl |= dca3_get_tag(rx_ring->dev, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800877 break;
878 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800879 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800880 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK_82599;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000881 rxctrl |= (dca3_get_tag(rx_ring->dev, cpu) <<
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800882 IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599);
883 break;
884 default:
885 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800886 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800887 rxctrl |= IXGBE_DCA_RXCTRL_DESC_DCA_EN;
888 rxctrl |= IXGBE_DCA_RXCTRL_HEAD_DCA_EN;
889 rxctrl &= ~(IXGBE_DCA_RXCTRL_DESC_RRO_EN);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800890 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800891}
892
893static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800894 struct ixgbe_ring *tx_ring,
895 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800896{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000897 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800898 u32 txctrl;
899 u8 reg_idx = tx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800900
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800901 switch (hw->mac.type) {
902 case ixgbe_mac_82598EB:
903 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(reg_idx));
904 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000905 txctrl |= dca3_get_tag(tx_ring->dev, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800906 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800907 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(reg_idx), txctrl);
908 break;
909 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800910 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800911 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx));
912 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK_82599;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000913 txctrl |= (dca3_get_tag(tx_ring->dev, cpu) <<
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800914 IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599);
915 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800916 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx), txctrl);
917 break;
918 default:
919 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800920 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800921}
922
923static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
924{
925 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000926 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800927 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800928
929 if (q_vector->cpu == cpu)
930 goto out_no_update;
931
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000932 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
933 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800934
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000935 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
936 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800937
938 q_vector->cpu = cpu;
939out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800940 put_cpu();
941}
942
943static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
944{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800945 int num_q_vectors;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800946 int i;
947
948 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
949 return;
950
Alexander Duycke35ec122009-05-21 13:07:12 +0000951 /* always use CB2 mode, difference is masked in the CB driver */
952 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
953
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800954 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
955 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
956 else
957 num_q_vectors = 1;
958
959 for (i = 0; i < num_q_vectors; i++) {
960 adapter->q_vector[i]->cpu = -1;
961 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800962 }
963}
964
965static int __ixgbe_notify_dca(struct device *dev, void *data)
966{
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800967 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800968 unsigned long event = *(unsigned long *)data;
969
Don Skidmore2a72c312011-07-20 02:27:05 +0000970 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800971 return 0;
972
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800973 switch (event) {
974 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -0700975 /* if we're already enabled, don't do it again */
976 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
977 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +0300978 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -0700979 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800980 ixgbe_setup_dca(adapter);
981 break;
982 }
983 /* Fall Through since DCA is disabled. */
984 case DCA_PROVIDER_REMOVE:
985 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
986 dca_remove_requester(dev);
987 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
988 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
989 }
990 break;
991 }
992
Denis V. Lunev652f0932008-03-27 14:39:17 +0300993 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800994}
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400995#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov67a74ee2011-04-23 04:50:40 +0000996
Alexander Duyck8a0da212012-01-31 02:59:49 +0000997static inline void ixgbe_rx_hash(struct ixgbe_ring *ring,
998 union ixgbe_adv_rx_desc *rx_desc,
Emil Tantilov67a74ee2011-04-23 04:50:40 +0000999 struct sk_buff *skb)
1000{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001001 if (ring->netdev->features & NETIF_F_RXHASH)
1002 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001003}
1004
Auke Kok9a799d72007-09-15 14:07:45 -07001005/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001006 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
1007 * @adapter: address of board private structure
1008 * @rx_desc: advanced rx descriptor
1009 *
1010 * Returns : true if it is FCoE pkt
1011 */
1012static inline bool ixgbe_rx_is_fcoe(struct ixgbe_adapter *adapter,
1013 union ixgbe_adv_rx_desc *rx_desc)
1014{
1015 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1016
1017 return (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
1018 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1019 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1020 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1021}
1022
1023/**
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001024 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
Alexander Duyck8a0da212012-01-31 02:59:49 +00001025 * @ring: structure containing ring specific data
1026 * @rx_desc: current Rx descriptor being processed
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001027 * @skb: skb currently being received and modified
1028 **/
Alexander Duyck8a0da212012-01-31 02:59:49 +00001029static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001030 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001031 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001032{
Alexander Duyck8a0da212012-01-31 02:59:49 +00001033 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001034
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001035 /* Rx csum disabled */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001036 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Auke Kok9a799d72007-09-15 14:07:45 -07001037 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001038
1039 /* if IP and error */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001040 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
1041 ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Alexander Duyck8a0da212012-01-31 02:59:49 +00001042 ring->rx_stats.csum_err++;
Auke Kok9a799d72007-09-15 14:07:45 -07001043 return;
1044 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001045
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001046 if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001047 return;
1048
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001049 if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Don Skidmore8bae1b22009-07-23 18:00:39 +00001050 u16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1051
1052 /*
1053 * 82599 errata, UDP frames with a 0 checksum can be marked as
1054 * checksum errors.
1055 */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001056 if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) &&
1057 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state))
Don Skidmore8bae1b22009-07-23 18:00:39 +00001058 return;
1059
Alexander Duyck8a0da212012-01-31 02:59:49 +00001060 ring->rx_stats.csum_err++;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001061 return;
1062 }
1063
Auke Kok9a799d72007-09-15 14:07:45 -07001064 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001065 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001066}
1067
Alexander Duyck84ea2592010-11-16 19:26:49 -08001068static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001069{
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001070 rx_ring->next_to_use = val;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001071 /*
1072 * Force memory writes to complete before letting h/w
1073 * know there are new descriptors to fetch. (Only
1074 * applicable for weak-ordered memory model archs,
1075 * such as IA-64).
1076 */
1077 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001078 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001079}
1080
Alexander Duyckf990b792012-01-31 02:59:34 +00001081static bool ixgbe_alloc_mapped_skb(struct ixgbe_ring *rx_ring,
1082 struct ixgbe_rx_buffer *bi)
1083{
1084 struct sk_buff *skb = bi->skb;
1085 dma_addr_t dma = bi->dma;
1086
1087 if (dma)
1088 return true;
1089
1090 if (likely(!skb)) {
1091 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1092 rx_ring->rx_buf_len);
1093 bi->skb = skb;
1094 if (!skb) {
1095 rx_ring->rx_stats.alloc_rx_buff_failed++;
1096 return false;
1097 }
Alexander Duyckf990b792012-01-31 02:59:34 +00001098 }
1099
1100 dma = dma_map_single(rx_ring->dev, skb->data,
1101 rx_ring->rx_buf_len, DMA_FROM_DEVICE);
1102
1103 if (dma_mapping_error(rx_ring->dev, dma)) {
1104 rx_ring->rx_stats.alloc_rx_buff_failed++;
1105 return false;
1106 }
1107
1108 bi->dma = dma;
1109 return true;
1110}
1111
1112static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring,
1113 struct ixgbe_rx_buffer *bi)
1114{
1115 struct page *page = bi->page;
1116 dma_addr_t page_dma = bi->page_dma;
1117 unsigned int page_offset = bi->page_offset ^ (PAGE_SIZE / 2);
1118
1119 if (page_dma)
1120 return true;
1121
1122 if (!page) {
1123 page = alloc_page(GFP_ATOMIC | __GFP_COLD);
1124 bi->page = page;
1125 if (unlikely(!page)) {
1126 rx_ring->rx_stats.alloc_rx_page_failed++;
1127 return false;
1128 }
1129 }
1130
1131 page_dma = dma_map_page(rx_ring->dev, page,
1132 page_offset, PAGE_SIZE / 2,
1133 DMA_FROM_DEVICE);
1134
1135 if (dma_mapping_error(rx_ring->dev, page_dma)) {
1136 rx_ring->rx_stats.alloc_rx_page_failed++;
1137 return false;
1138 }
1139
1140 bi->page_dma = page_dma;
1141 bi->page_offset = page_offset;
1142 return true;
1143}
1144
Auke Kok9a799d72007-09-15 14:07:45 -07001145/**
Alexander Duyckf990b792012-01-31 02:59:34 +00001146 * ixgbe_alloc_rx_buffers - Replace used receive buffers
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001147 * @rx_ring: ring to place buffers on
1148 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001149 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001150void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001151{
Auke Kok9a799d72007-09-15 14:07:45 -07001152 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07001153 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001154 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001155
Alexander Duyckf990b792012-01-31 02:59:34 +00001156 /* nothing to do or no valid netdev defined */
1157 if (!cleaned_count || !rx_ring->netdev)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001158 return;
1159
Alexander Duycke4f74022012-01-31 02:59:44 +00001160 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Alexander Duyckf990b792012-01-31 02:59:34 +00001161 bi = &rx_ring->rx_buffer_info[i];
1162 i -= rx_ring->count;
1163
Auke Kok9a799d72007-09-15 14:07:45 -07001164 while (cleaned_count--) {
Alexander Duyckf990b792012-01-31 02:59:34 +00001165 if (!ixgbe_alloc_mapped_skb(rx_ring, bi))
1166 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001167
Alexander Duyckf990b792012-01-31 02:59:34 +00001168 /* Refresh the desc even if buffer_addrs didn't change
1169 * because each write-back erases this info. */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001170 if (ring_is_ps_enabled(rx_ring)) {
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07001171 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
Alexander Duyckf990b792012-01-31 02:59:34 +00001172
1173 if (!ixgbe_alloc_mapped_page(rx_ring, bi))
1174 break;
1175
1176 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001177 } else {
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07001178 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001179 }
1180
Alexander Duyckf990b792012-01-31 02:59:34 +00001181 rx_desc++;
1182 bi++;
Auke Kok9a799d72007-09-15 14:07:45 -07001183 i++;
Alexander Duyckf990b792012-01-31 02:59:34 +00001184 if (unlikely(!i)) {
Alexander Duycke4f74022012-01-31 02:59:44 +00001185 rx_desc = IXGBE_RX_DESC(rx_ring, 0);
Alexander Duyckf990b792012-01-31 02:59:34 +00001186 bi = rx_ring->rx_buffer_info;
1187 i -= rx_ring->count;
1188 }
1189
1190 /* clear the hdr_addr for the next_to_use descriptor */
1191 rx_desc->read.hdr_addr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001192 }
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001193
Alexander Duyckf990b792012-01-31 02:59:34 +00001194 i += rx_ring->count;
1195
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001196 if (rx_ring->next_to_use != i)
Alexander Duyck84ea2592010-11-16 19:26:49 -08001197 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001198}
1199
Alexander Duyckc267fc12010-11-16 19:27:00 -08001200static inline u16 ixgbe_get_hlen(union ixgbe_adv_rx_desc *rx_desc)
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001201{
Alexander Duyckc267fc12010-11-16 19:27:00 -08001202 /* HW will not DMA in data larger than the given buffer, even if it
1203 * parses the (NFS, of course) header to be larger. In that case, it
1204 * fills the header buffer and spills the rest into the page.
1205 */
1206 u16 hdr_info = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.hdr_info);
1207 u16 hlen = (hdr_info & IXGBE_RXDADV_HDRBUFLEN_MASK) >>
1208 IXGBE_RXDADV_HDRBUFLEN_SHIFT;
1209 if (hlen > IXGBE_RX_HDR_SIZE)
1210 hlen = IXGBE_RX_HDR_SIZE;
1211 return hlen;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001212}
1213
Alexander Duyckf8212f92009-04-27 22:42:37 +00001214/**
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001215 * ixgbe_merge_active_tail - merge active tail into lro skb
1216 * @tail: pointer to active tail in frag_list
Alexander Duyckf8212f92009-04-27 22:42:37 +00001217 *
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001218 * This function merges the length and data of an active tail into the
1219 * skb containing the frag_list. It resets the tail's pointer to the head,
1220 * but it leaves the heads pointer to tail intact.
Alexander Duyckf8212f92009-04-27 22:42:37 +00001221 **/
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001222static inline struct sk_buff *ixgbe_merge_active_tail(struct sk_buff *tail)
Alexander Duyckf8212f92009-04-27 22:42:37 +00001223{
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001224 struct sk_buff *head = IXGBE_CB(tail)->head;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001225
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001226 if (!head)
1227 return tail;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001228
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001229 head->len += tail->len;
1230 head->data_len += tail->len;
1231 head->truesize += tail->len;
Alexander Duyckaa801752010-11-16 19:27:02 -08001232
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001233 IXGBE_CB(tail)->head = NULL;
1234
1235 return head;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001236}
1237
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001238/**
1239 * ixgbe_add_active_tail - adds an active tail into the skb frag_list
1240 * @head: pointer to the start of the skb
1241 * @tail: pointer to active tail to add to frag_list
1242 *
1243 * This function adds an active tail to the end of the frag list. This tail
1244 * will still be receiving data so we cannot yet ad it's stats to the main
1245 * skb. That is done via ixgbe_merge_active_tail.
1246 **/
1247static inline void ixgbe_add_active_tail(struct sk_buff *head,
1248 struct sk_buff *tail)
Alexander Duyckaa801752010-11-16 19:27:02 -08001249{
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001250 struct sk_buff *old_tail = IXGBE_CB(head)->tail;
1251
1252 if (old_tail) {
1253 ixgbe_merge_active_tail(old_tail);
1254 old_tail->next = tail;
1255 } else {
1256 skb_shinfo(head)->frag_list = tail;
1257 }
1258
1259 IXGBE_CB(tail)->head = head;
1260 IXGBE_CB(head)->tail = tail;
1261}
1262
1263/**
1264 * ixgbe_close_active_frag_list - cleanup pointers on a frag_list skb
1265 * @head: pointer to head of an active frag list
1266 *
1267 * This function will clear the frag_tail_tracker pointer on an active
1268 * frag_list and returns true if the pointer was actually set
1269 **/
1270static inline bool ixgbe_close_active_frag_list(struct sk_buff *head)
1271{
1272 struct sk_buff *tail = IXGBE_CB(head)->tail;
1273
1274 if (!tail)
1275 return false;
1276
1277 ixgbe_merge_active_tail(tail);
1278
1279 IXGBE_CB(head)->tail = NULL;
1280
1281 return true;
1282}
1283
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001284/**
1285 * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE
1286 * @data: pointer to the start of the headers
1287 * @max_len: total length of section to find headers in
1288 *
1289 * This function is meant to determine the length of headers that will
1290 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1291 * motivation of doing this is to only perform one pull for IPv4 TCP
1292 * packets so that we can do basic things like calculating the gso_size
1293 * based on the average data per packet.
1294 **/
1295static unsigned int ixgbe_get_headlen(unsigned char *data,
1296 unsigned int max_len)
1297{
1298 union {
1299 unsigned char *network;
1300 /* l2 headers */
1301 struct ethhdr *eth;
1302 struct vlan_hdr *vlan;
1303 /* l3 headers */
1304 struct iphdr *ipv4;
1305 } hdr;
1306 __be16 protocol;
1307 u8 nexthdr = 0; /* default to not TCP */
1308 u8 hlen;
1309
1310 /* this should never happen, but better safe than sorry */
1311 if (max_len < ETH_HLEN)
1312 return max_len;
1313
1314 /* initialize network frame pointer */
1315 hdr.network = data;
1316
1317 /* set first protocol and move network header forward */
1318 protocol = hdr.eth->h_proto;
1319 hdr.network += ETH_HLEN;
1320
1321 /* handle any vlan tag if present */
1322 if (protocol == __constant_htons(ETH_P_8021Q)) {
1323 if ((hdr.network - data) > (max_len - VLAN_HLEN))
1324 return max_len;
1325
1326 protocol = hdr.vlan->h_vlan_encapsulated_proto;
1327 hdr.network += VLAN_HLEN;
1328 }
1329
1330 /* handle L3 protocols */
1331 if (protocol == __constant_htons(ETH_P_IP)) {
1332 if ((hdr.network - data) > (max_len - sizeof(struct iphdr)))
1333 return max_len;
1334
1335 /* access ihl as a u8 to avoid unaligned access on ia64 */
1336 hlen = (hdr.network[0] & 0x0F) << 2;
1337
1338 /* verify hlen meets minimum size requirements */
1339 if (hlen < sizeof(struct iphdr))
1340 return hdr.network - data;
1341
1342 /* record next protocol */
1343 nexthdr = hdr.ipv4->protocol;
1344 hdr.network += hlen;
1345#ifdef CONFIG_FCOE
1346 } else if (protocol == __constant_htons(ETH_P_FCOE)) {
1347 if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN))
1348 return max_len;
1349 hdr.network += FCOE_HEADER_LEN;
1350#endif
1351 } else {
1352 return hdr.network - data;
1353 }
1354
1355 /* finally sort out TCP */
1356 if (nexthdr == IPPROTO_TCP) {
1357 if ((hdr.network - data) > (max_len - sizeof(struct tcphdr)))
1358 return max_len;
1359
1360 /* access doff as a u8 to avoid unaligned access on ia64 */
1361 hlen = (hdr.network[12] & 0xF0) >> 2;
1362
1363 /* verify hlen meets minimum size requirements */
1364 if (hlen < sizeof(struct tcphdr))
1365 return hdr.network - data;
1366
1367 hdr.network += hlen;
1368 }
1369
1370 /*
1371 * If everything has gone correctly hdr.network should be the
1372 * data section of the packet and will be the end of the header.
1373 * If not then it probably represents the end of the last recognized
1374 * header.
1375 */
1376 if ((hdr.network - data) < max_len)
1377 return hdr.network - data;
1378 else
1379 return max_len;
1380}
1381
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001382static void ixgbe_get_rsc_cnt(struct ixgbe_ring *rx_ring,
1383 union ixgbe_adv_rx_desc *rx_desc,
1384 struct sk_buff *skb)
1385{
1386 __le32 rsc_enabled;
1387 u32 rsc_cnt;
1388
1389 if (!ring_is_rsc_enabled(rx_ring))
1390 return;
1391
1392 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1393 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1394
1395 /* If this is an RSC frame rsc_cnt should be non-zero */
1396 if (!rsc_enabled)
1397 return;
1398
1399 rsc_cnt = le32_to_cpu(rsc_enabled);
1400 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1401
1402 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
Alexander Duyckaa801752010-11-16 19:27:02 -08001403}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001404
Alexander Duyck1d2024f2012-01-31 02:59:29 +00001405static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring,
1406 struct sk_buff *skb)
1407{
1408 u16 hdr_len = ixgbe_get_headlen(skb->data, skb_headlen(skb));
1409
1410 /* set gso_size to avoid messing up TCP MSS */
1411 skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len),
1412 IXGBE_CB(skb)->append_cnt);
1413}
1414
1415static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring,
1416 struct sk_buff *skb)
1417{
1418 /* if append_cnt is 0 then frame is not RSC */
1419 if (!IXGBE_CB(skb)->append_cnt)
1420 return;
1421
1422 rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt;
1423 rx_ring->rx_stats.rsc_flush++;
1424
1425 ixgbe_set_rsc_gso_size(rx_ring, skb);
1426
1427 /* gso_size is computed using append_cnt so always clear it last */
1428 IXGBE_CB(skb)->append_cnt = 0;
1429}
1430
Alexander Duyck8a0da212012-01-31 02:59:49 +00001431/**
1432 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1433 * @rx_ring: rx descriptor ring packet is being transacted on
1434 * @rx_desc: pointer to the EOP Rx descriptor
1435 * @skb: pointer to current skb being populated
1436 *
1437 * This function checks the ring, descriptor, and packet information in
1438 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1439 * other fields within the skb.
1440 **/
1441static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring,
1442 union ixgbe_adv_rx_desc *rx_desc,
1443 struct sk_buff *skb)
1444{
1445 ixgbe_update_rsc_stats(rx_ring, skb);
1446
1447 ixgbe_rx_hash(rx_ring, rx_desc, skb);
1448
1449 ixgbe_rx_checksum(rx_ring, rx_desc, skb);
1450
1451 if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
1452 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
1453 __vlan_hwaccel_put_tag(skb, vid);
1454 }
1455
1456 skb_record_rx_queue(skb, rx_ring->queue_index);
1457
1458 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
1459}
1460
1461static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector,
1462 struct sk_buff *skb)
1463{
1464 struct ixgbe_adapter *adapter = q_vector->adapter;
1465
1466 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1467 napi_gro_receive(&q_vector->napi, skb);
1468 else
1469 netif_rx(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001470}
1471
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001472static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001473 struct ixgbe_ring *rx_ring,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001474 int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001475{
Auke Kok9a799d72007-09-15 14:07:45 -07001476 union ixgbe_adv_rx_desc *rx_desc, *next_rxd;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001477 struct ixgbe_rx_buffer *rx_buffer_info;
Auke Kok9a799d72007-09-15 14:07:45 -07001478 struct sk_buff *skb;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001479 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001480 const int current_node = numa_node_id();
Yi Zou3d8fd382009-06-08 14:38:44 +00001481#ifdef IXGBE_FCOE
Alexander Duyck8a0da212012-01-31 02:59:49 +00001482 struct ixgbe_adapter *adapter = q_vector->adapter;
Yi Zou3d8fd382009-06-08 14:38:44 +00001483 int ddp_bytes = 0;
1484#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001485 u16 i;
1486 u16 cleaned_count = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001487
1488 i = rx_ring->next_to_clean;
Alexander Duycke4f74022012-01-31 02:59:44 +00001489 rx_desc = IXGBE_RX_DESC(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001490
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001491 while (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD)) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001492 u32 upper_len = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001493
Milton Miller3c945e52010-02-19 17:44:42 +00001494 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kok9a799d72007-09-15 14:07:45 -07001495
Alexander Duyckc267fc12010-11-16 19:27:00 -08001496 rx_buffer_info = &rx_ring->rx_buffer_info[i];
1497
Auke Kok9a799d72007-09-15 14:07:45 -07001498 skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001499 rx_buffer_info->skb = NULL;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001500 prefetch(skb->data);
Auke Kok9a799d72007-09-15 14:07:45 -07001501
David S. Miller8decf862011-09-22 03:23:13 -04001502 /* linear means we are building an skb from multiple pages */
1503 if (!skb_is_nonlinear(skb)) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001504 u16 hlen;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001505 if (ring_is_ps_enabled(rx_ring)) {
1506 hlen = ixgbe_get_hlen(rx_desc);
1507 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
1508 } else {
1509 hlen = le16_to_cpu(rx_desc->wb.upper.length);
1510 }
1511
1512 skb_put(skb, hlen);
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001513
1514 /*
1515 * Delay unmapping of the first packet. It carries the
1516 * header information, HW may still access the header
1517 * after writeback. Only unmap it when EOP is reached
1518 */
1519 if (!IXGBE_CB(skb)->head) {
1520 IXGBE_CB(skb)->delay_unmap = true;
1521 IXGBE_CB(skb)->dma = rx_buffer_info->dma;
1522 } else {
1523 skb = ixgbe_merge_active_tail(skb);
1524 dma_unmap_single(rx_ring->dev,
1525 rx_buffer_info->dma,
1526 rx_ring->rx_buf_len,
1527 DMA_FROM_DEVICE);
1528 }
1529 rx_buffer_info->dma = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001530 } else {
1531 /* assume packet split since header is unmapped */
1532 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kok9a799d72007-09-15 14:07:45 -07001533 }
1534
1535 if (upper_len) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001536 dma_unmap_page(rx_ring->dev,
1537 rx_buffer_info->page_dma,
1538 PAGE_SIZE / 2,
1539 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001540 rx_buffer_info->page_dma = 0;
1541 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
Joe Perchese8e9f692010-09-07 21:34:53 +00001542 rx_buffer_info->page,
1543 rx_buffer_info->page_offset,
1544 upper_len);
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001545
Alexander Duyckc267fc12010-11-16 19:27:00 -08001546 if ((page_count(rx_buffer_info->page) == 1) &&
1547 (page_to_nid(rx_buffer_info->page) == current_node))
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001548 get_page(rx_buffer_info->page);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001549 else
1550 rx_buffer_info->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001551
1552 skb->len += upper_len;
1553 skb->data_len += upper_len;
Eric Dumazet98130642011-10-13 07:59:41 +00001554 skb->truesize += PAGE_SIZE / 2;
Auke Kok9a799d72007-09-15 14:07:45 -07001555 }
1556
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001557 ixgbe_get_rsc_cnt(rx_ring, rx_desc, skb);
1558
Auke Kok9a799d72007-09-15 14:07:45 -07001559 i++;
1560 if (i == rx_ring->count)
1561 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001562
Alexander Duycke4f74022012-01-31 02:59:44 +00001563 next_rxd = IXGBE_RX_DESC(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001564 prefetch(next_rxd);
Auke Kok9a799d72007-09-15 14:07:45 -07001565 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001566
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001567 if ((!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))) {
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001568 struct ixgbe_rx_buffer *next_buffer;
1569 u32 nextp;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001570
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001571 if (IXGBE_CB(skb)->append_cnt) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001572 nextp = le32_to_cpu(
1573 rx_desc->wb.upper.status_error);
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001574 nextp >>= IXGBE_RXDADV_NEXTP_SHIFT;
1575 } else {
1576 nextp = i;
1577 }
1578
1579 next_buffer = &rx_ring->rx_buffer_info[nextp];
1580
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001581 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001582 rx_buffer_info->skb = next_buffer->skb;
1583 rx_buffer_info->dma = next_buffer->dma;
1584 next_buffer->skb = skb;
1585 next_buffer->dma = 0;
1586 } else {
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001587 struct sk_buff *next_skb = next_buffer->skb;
1588 ixgbe_add_active_tail(skb, next_skb);
1589 IXGBE_CB(next_skb)->head = skb;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001590 }
Alexander Duyck5b7da512010-11-16 19:26:50 -08001591 rx_ring->rx_stats.non_eop_descs++;
Auke Kok9a799d72007-09-15 14:07:45 -07001592 goto next_desc;
1593 }
1594
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001595 dma_unmap_single(rx_ring->dev,
1596 IXGBE_CB(skb)->dma,
1597 rx_ring->rx_buf_len,
1598 DMA_FROM_DEVICE);
1599 IXGBE_CB(skb)->dma = 0;
1600 IXGBE_CB(skb)->delay_unmap = false;
1601
1602 if (ixgbe_close_active_frag_list(skb) &&
1603 !IXGBE_CB(skb)->append_cnt) {
Alexander Duyckaa801752010-11-16 19:27:02 -08001604 /* if we got here without RSC the packet is invalid */
Alexander Duyckff886df2011-06-11 01:45:13 +00001605 dev_kfree_skb_any(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001606 goto next_desc;
1607 }
1608
Auke Kok9a799d72007-09-15 14:07:45 -07001609 /* ERR_MASK will only have valid bits if EOP set */
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001610 if (unlikely(ixgbe_test_staterr(rx_desc,
1611 IXGBE_RXDADV_ERR_FRAME_ERR_MASK))) {
Auke Kok9a799d72007-09-15 14:07:45 -07001612 dev_kfree_skb_any(skb);
1613 goto next_desc;
1614 }
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001615
1616 /* probably a little skewed due to removing CRC */
1617 total_rx_bytes += skb->len;
1618 total_rx_packets++;
1619
Alexander Duyck8a0da212012-01-31 02:59:49 +00001620 /* populate checksum, timestamp, VLAN, and protocol */
1621 ixgbe_process_skb_fields(rx_ring, rx_desc, skb);
1622
Yi Zou332d4a72009-05-13 13:11:53 +00001623#ifdef IXGBE_FCOE
1624 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyckff886df2011-06-11 01:45:13 +00001625 if (ixgbe_rx_is_fcoe(adapter, rx_desc)) {
Alexander Duyckf56e0cb2012-01-31 02:59:39 +00001626 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
David S. Miller823dcd22011-08-20 10:39:12 -07001627 if (!ddp_bytes) {
1628 dev_kfree_skb_any(skb);
Yi Zou332d4a72009-05-13 13:11:53 +00001629 goto next_desc;
David S. Miller823dcd22011-08-20 10:39:12 -07001630 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001631 }
Yi Zou332d4a72009-05-13 13:11:53 +00001632#endif /* IXGBE_FCOE */
Alexander Duyck8a0da212012-01-31 02:59:49 +00001633 ixgbe_rx_skb(q_vector, skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001634
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001635 budget--;
Auke Kok9a799d72007-09-15 14:07:45 -07001636next_desc:
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001637 if (!budget)
Alexander Duyckc267fc12010-11-16 19:27:00 -08001638 break;
1639
Auke Kok9a799d72007-09-15 14:07:45 -07001640 /* return some buffers to hardware, one at a time is too slow */
1641 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001642 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001643 cleaned_count = 0;
1644 }
1645
1646 /* use prefetched values */
1647 rx_desc = next_rxd;
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001648 }
1649
Auke Kok9a799d72007-09-15 14:07:45 -07001650 rx_ring->next_to_clean = i;
Alexander Duyck7d4987d2011-05-27 05:31:37 +00001651 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001652
1653 if (cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001654 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001655
Yi Zou3d8fd382009-06-08 14:38:44 +00001656#ifdef IXGBE_FCOE
1657 /* include DDPed FCoE data */
1658 if (ddp_bytes > 0) {
1659 unsigned int mss;
1660
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001661 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001662 sizeof(struct fc_frame_header) -
1663 sizeof(struct fcoe_crc_eof);
1664 if (mss > 512)
1665 mss &= ~511;
1666 total_rx_bytes += ddp_bytes;
1667 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1668 }
1669#endif /* IXGBE_FCOE */
1670
Alexander Duyckc267fc12010-11-16 19:27:00 -08001671 u64_stats_update_begin(&rx_ring->syncp);
1672 rx_ring->stats.packets += total_rx_packets;
1673 rx_ring->stats.bytes += total_rx_bytes;
1674 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001675 q_vector->rx.total_packets += total_rx_packets;
1676 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001677
1678 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001679}
1680
Auke Kok9a799d72007-09-15 14:07:45 -07001681/**
1682 * ixgbe_configure_msix - Configure MSI-X hardware
1683 * @adapter: board private structure
1684 *
1685 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1686 * interrupts.
1687 **/
1688static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1689{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001690 struct ixgbe_q_vector *q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001691 int q_vectors, v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001692 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001693
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001694 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1695
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00001696 /* Populate MSIX to EITR Select */
1697 if (adapter->num_vfs > 32) {
1698 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
1699 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
1700 }
1701
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001702 /*
1703 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001704 * corresponding register.
1705 */
1706 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001707 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001708 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001709
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001710 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
1711 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001712
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001713 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
1714 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001715
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001716 if (q_vector->tx.ring && !q_vector->rx.ring) {
1717 /* tx only vector */
1718 if (adapter->tx_itr_setting == 1)
1719 q_vector->itr = IXGBE_10K_ITR;
1720 else
1721 q_vector->itr = adapter->tx_itr_setting;
1722 } else {
1723 /* rx or rx/tx vector */
1724 if (adapter->rx_itr_setting == 1)
1725 q_vector->itr = IXGBE_20K_ITR;
1726 else
1727 q_vector->itr = adapter->rx_itr_setting;
1728 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001729
Alexander Duyckfe49f042009-06-04 16:00:09 +00001730 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001731 }
1732
Alexander Duyckbd508172010-11-16 19:27:03 -08001733 switch (adapter->hw.mac.type) {
1734 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001735 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001736 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001737 break;
1738 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001739 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001740 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001741 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08001742 default:
1743 break;
1744 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001745 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001746
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001747 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001748 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001749 mask &= ~(IXGBE_EIMS_OTHER |
1750 IXGBE_EIMS_MAILBOX |
1751 IXGBE_EIMS_LSC);
1752
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001753 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001754}
1755
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001756enum latency_range {
1757 lowest_latency = 0,
1758 low_latency = 1,
1759 bulk_latency = 2,
1760 latency_invalid = 255
1761};
1762
1763/**
1764 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00001765 * @q_vector: structure containing interrupt and ring information
1766 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001767 *
1768 * Stores a new ITR value based on packets and byte
1769 * counts during the last interrupt. The advantage of per interrupt
1770 * computation is faster updates and more accurate ITR for the current
1771 * traffic pattern. Constants in this function were computed
1772 * based on theoretical maximum wire speed and thresholds were set based
1773 * on testing data as well as attempting to minimize response time
1774 * while increasing bulk throughput.
1775 * this functionality is controlled by the InterruptThrottleRate module
1776 * parameter (see ixgbe_param.c)
1777 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00001778static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
1779 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001780{
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001781 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00001782 struct ixgbe_adapter *adapter = q_vector->adapter;
1783 int bytes = ring_container->total_bytes;
1784 int packets = ring_container->total_packets;
1785 u32 timepassed_us;
1786 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001787
1788 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00001789 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001790
1791 /* simple throttlerate management
1792 * 0-20MB/s lowest (100000 ints/s)
1793 * 20-100MB/s low (20000 ints/s)
1794 * 100-1249MB/s bulk (8000 ints/s)
1795 */
1796 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001797 timepassed_us = q_vector->itr >> 2;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001798 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1799
1800 switch (itr_setting) {
1801 case lowest_latency:
1802 if (bytes_perint > adapter->eitr_low)
Alexander Duyckbd198052011-06-11 01:45:08 +00001803 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001804 break;
1805 case low_latency:
1806 if (bytes_perint > adapter->eitr_high)
Alexander Duyckbd198052011-06-11 01:45:08 +00001807 itr_setting = bulk_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001808 else if (bytes_perint <= adapter->eitr_low)
Alexander Duyckbd198052011-06-11 01:45:08 +00001809 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001810 break;
1811 case bulk_latency:
1812 if (bytes_perint <= adapter->eitr_high)
Alexander Duyckbd198052011-06-11 01:45:08 +00001813 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001814 break;
1815 }
1816
Alexander Duyckbd198052011-06-11 01:45:08 +00001817 /* clear work counters since we have the values we need */
1818 ring_container->total_bytes = 0;
1819 ring_container->total_packets = 0;
1820
1821 /* write updated itr to ring container */
1822 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001823}
1824
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001825/**
1826 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001827 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001828 *
1829 * This function is made to be called by ethtool and by the driver
1830 * when it needs to update EITR registers at runtime. Hardware
1831 * specific quirks/differences are taken care of here.
1832 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001833void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001834{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001835 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001836 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001837 int v_idx = q_vector->v_idx;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001838 u32 itr_reg = q_vector->itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001839
Alexander Duyckbd508172010-11-16 19:27:03 -08001840 switch (adapter->hw.mac.type) {
1841 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001842 /* must write high and low 16 bits to reset counter */
1843 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001844 break;
1845 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001846 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001847 /*
1848 * set the WDIS bit to not clear the timer bits and cause an
1849 * immediate assertion of the interrupt
1850 */
1851 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08001852 break;
1853 default:
1854 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001855 }
1856 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
1857}
1858
Alexander Duyckbd198052011-06-11 01:45:08 +00001859static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001860{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001861 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00001862 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001863
Alexander Duyckbd198052011-06-11 01:45:08 +00001864 ixgbe_update_itr(q_vector, &q_vector->tx);
1865 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001866
Alexander Duyck08c88332011-06-11 01:45:03 +00001867 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001868
1869 switch (current_itr) {
1870 /* counts and packets in update_itr are dependent on these numbers */
1871 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001872 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001873 break;
1874 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001875 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001876 break;
1877 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001878 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001879 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00001880 default:
1881 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001882 }
1883
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001884 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00001885 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001886 new_itr = (10 * new_itr * q_vector->itr) /
1887 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001888
Alexander Duyckbd198052011-06-11 01:45:08 +00001889 /* save the algorithm value here */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001890 q_vector->itr = new_itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001891
1892 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001893 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001894}
1895
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001896/**
Alexander Duyckf0f97782011-04-22 04:08:09 +00001897 * ixgbe_check_overtemp_subtask - check for over tempurature
1898 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001899 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00001900static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001901{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001902 struct ixgbe_hw *hw = &adapter->hw;
1903 u32 eicr = adapter->interrupt_event;
1904
Alexander Duyckf0f97782011-04-22 04:08:09 +00001905 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00001906 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001907
Alexander Duyckf0f97782011-04-22 04:08:09 +00001908 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1909 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
1910 return;
1911
1912 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1913
Joe Perches7ca647b2010-09-07 21:35:40 +00001914 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00001915 case IXGBE_DEV_ID_82599_T3_LOM:
1916 /*
1917 * Since the warning interrupt is for both ports
1918 * we don't have to check if:
1919 * - This interrupt wasn't for our port.
1920 * - We may have missed the interrupt so always have to
1921 * check if we got a LSC
1922 */
1923 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
1924 !(eicr & IXGBE_EICR_LSC))
1925 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001926
Alexander Duyckf0f97782011-04-22 04:08:09 +00001927 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
1928 u32 autoneg;
1929 bool link_up = false;
1930
Joe Perches7ca647b2010-09-07 21:35:40 +00001931 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
1932
Alexander Duyckf0f97782011-04-22 04:08:09 +00001933 if (link_up)
1934 return;
1935 }
1936
1937 /* Check if this is not due to overtemp */
1938 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
1939 return;
1940
1941 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00001942 default:
1943 if (!(eicr & IXGBE_EICR_GPI_SDP0))
1944 return;
1945 break;
1946 }
1947 e_crit(drv,
1948 "Network adapter has been stopped because it has over heated. "
1949 "Restart the computer. If the problem persists, "
1950 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00001951
1952 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001953}
1954
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001955static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
1956{
1957 struct ixgbe_hw *hw = &adapter->hw;
1958
1959 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
1960 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00001961 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001962 /* write to clear the interrupt */
1963 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
1964 }
1965}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001966
Jacob Keller4f51bf72011-08-20 04:49:45 +00001967static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
1968{
1969 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
1970 return;
1971
1972 switch (adapter->hw.mac.type) {
1973 case ixgbe_mac_82599EB:
1974 /*
1975 * Need to check link state so complete overtemp check
1976 * on service task
1977 */
1978 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
1979 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
1980 adapter->interrupt_event = eicr;
1981 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1982 ixgbe_service_event_schedule(adapter);
1983 return;
1984 }
1985 return;
1986 case ixgbe_mac_X540:
1987 if (!(eicr & IXGBE_EICR_TS))
1988 return;
1989 break;
1990 default:
1991 return;
1992 }
1993
1994 e_crit(drv,
1995 "Network adapter has been stopped because it has over heated. "
1996 "Restart the computer. If the problem persists, "
1997 "power off the system and replace the adapter\n");
1998}
1999
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002000static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
2001{
2002 struct ixgbe_hw *hw = &adapter->hw;
2003
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002004 if (eicr & IXGBE_EICR_GPI_SDP2) {
2005 /* Clear the interrupt */
2006 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00002007 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2008 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
2009 ixgbe_service_event_schedule(adapter);
2010 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08002011 }
2012
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002013 if (eicr & IXGBE_EICR_GPI_SDP1) {
2014 /* Clear the interrupt */
2015 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00002016 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2017 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
2018 ixgbe_service_event_schedule(adapter);
2019 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002020 }
2021}
2022
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002023static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
2024{
2025 struct ixgbe_hw *hw = &adapter->hw;
2026
2027 adapter->lsc_int++;
2028 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
2029 adapter->link_check_timeout = jiffies;
2030 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2031 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00002032 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00002033 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002034 }
2035}
2036
Alexander Duyckfe49f042009-06-04 16:00:09 +00002037static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
2038 u64 qmask)
2039{
2040 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002041 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002042
Alexander Duyckbd508172010-11-16 19:27:03 -08002043 switch (hw->mac.type) {
2044 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002045 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002046 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
2047 break;
2048 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002049 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002050 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002051 if (mask)
2052 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002053 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002054 if (mask)
2055 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
2056 break;
2057 default:
2058 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002059 }
2060 /* skip the flush */
2061}
2062
2063static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002064 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00002065{
2066 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08002067 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002068
Alexander Duyckbd508172010-11-16 19:27:03 -08002069 switch (hw->mac.type) {
2070 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002071 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08002072 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
2073 break;
2074 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002075 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00002076 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08002077 if (mask)
2078 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00002079 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08002080 if (mask)
2081 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
2082 break;
2083 default:
2084 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002085 }
2086 /* skip the flush */
2087}
2088
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002089/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00002090 * ixgbe_irq_enable - Enable default interrupt generation settings
2091 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002092 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00002093static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2094 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07002095{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002096 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002097
Alexander Duyck2c4af692011-07-15 07:29:55 +00002098 /* don't reenable LSC while waiting for link */
2099 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
2100 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002101
Alexander Duyck2c4af692011-07-15 07:29:55 +00002102 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00002103 switch (adapter->hw.mac.type) {
2104 case ixgbe_mac_82599EB:
2105 mask |= IXGBE_EIMS_GPI_SDP0;
2106 break;
2107 case ixgbe_mac_X540:
2108 mask |= IXGBE_EIMS_TS;
2109 break;
2110 default:
2111 break;
2112 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00002113 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2114 mask |= IXGBE_EIMS_GPI_SDP1;
2115 switch (adapter->hw.mac.type) {
2116 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00002117 mask |= IXGBE_EIMS_GPI_SDP1;
2118 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00002119 case ixgbe_mac_X540:
2120 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00002121 mask |= IXGBE_EIMS_MAILBOX;
2122 break;
2123 default:
2124 break;
2125 }
2126 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2127 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
2128 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002129
Alexander Duyck2c4af692011-07-15 07:29:55 +00002130 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
2131 if (queues)
2132 ixgbe_irq_enable_queues(adapter, ~0);
2133 if (flush)
2134 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07002135}
2136
Alexander Duyck2c4af692011-07-15 07:29:55 +00002137static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002138{
Alexander Duyck2c4af692011-07-15 07:29:55 +00002139 struct ixgbe_adapter *adapter = data;
2140 struct ixgbe_hw *hw = &adapter->hw;
2141 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002142
Alexander Duyck2c4af692011-07-15 07:29:55 +00002143 /*
2144 * Workaround for Silicon errata. Use clear-by-write instead
2145 * of clear-by-read. Reading with EICS will return the
2146 * interrupt causes without clearing, which later be done
2147 * with the write to EICR.
2148 */
2149 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
2150 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002151
Alexander Duyck2c4af692011-07-15 07:29:55 +00002152 if (eicr & IXGBE_EICR_LSC)
2153 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002154
Alexander Duyck2c4af692011-07-15 07:29:55 +00002155 if (eicr & IXGBE_EICR_MAILBOX)
2156 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002157
Alexander Duyck2c4af692011-07-15 07:29:55 +00002158 switch (hw->mac.type) {
2159 case ixgbe_mac_82599EB:
2160 case ixgbe_mac_X540:
2161 if (eicr & IXGBE_EICR_ECC)
2162 e_info(link, "Received unrecoverable ECC Err, please "
2163 "reboot\n");
2164 /* Handle Flow Director Full threshold interrupt */
2165 if (eicr & IXGBE_EICR_FLOW_DIR) {
2166 int reinit_count = 0;
2167 int i;
2168 for (i = 0; i < adapter->num_tx_queues; i++) {
2169 struct ixgbe_ring *ring = adapter->tx_ring[i];
2170 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2171 &ring->state))
2172 reinit_count++;
2173 }
2174 if (reinit_count) {
2175 /* no more flow director interrupts until after init */
2176 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2177 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2178 ixgbe_service_event_schedule(adapter);
2179 }
2180 }
2181 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002182 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002183 break;
2184 default:
2185 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002186 }
2187
Alexander Duyck2c4af692011-07-15 07:29:55 +00002188 ixgbe_check_fan_failure(adapter, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07002189
Alexander Duyck2c4af692011-07-15 07:29:55 +00002190 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002191 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002192 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002193
Alexander Duyck2c4af692011-07-15 07:29:55 +00002194 return IRQ_HANDLED;
2195}
2196
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002197static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002198{
2199 struct ixgbe_q_vector *q_vector = data;
2200
Auke Kok9a799d72007-09-15 14:07:45 -07002201 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002202
2203 if (q_vector->rx.ring || q_vector->tx.ring)
2204 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002205
2206 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002207}
2208
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002209static inline void map_vector_to_rxq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002210 int r_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07002211{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002212 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08002213 struct ixgbe_ring *rx_ring = a->rx_ring[r_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002214
Alexander Duyck22745432010-11-16 19:27:10 -08002215 rx_ring->q_vector = q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002216 rx_ring->next = q_vector->rx.ring;
2217 q_vector->rx.ring = rx_ring;
2218 q_vector->rx.count++;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002219}
Auke Kok9a799d72007-09-15 14:07:45 -07002220
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002221static inline void map_vector_to_txq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002222 int t_idx)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002223{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002224 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08002225 struct ixgbe_ring *tx_ring = a->tx_ring[t_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002226
Alexander Duyck22745432010-11-16 19:27:10 -08002227 tx_ring->q_vector = q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002228 tx_ring->next = q_vector->tx.ring;
2229 q_vector->tx.ring = tx_ring;
2230 q_vector->tx.count++;
Alexander Duyckbd198052011-06-11 01:45:08 +00002231 q_vector->tx.work_limit = a->tx_work_limit;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002232}
Auke Kok9a799d72007-09-15 14:07:45 -07002233
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002234/**
2235 * ixgbe_map_rings_to_vectors - Maps descriptor rings to vectors
2236 * @adapter: board private structure to initialize
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002237 *
2238 * This function maps descriptor rings to the queue-specific vectors
2239 * we were allotted through the MSI-X enabling code. Ideally, we'd have
2240 * one vector per ring/queue, but on a constrained vector budget, we
2241 * group the rings as "efficiently" as possible. You would add new
2242 * mapping configurations in here.
2243 **/
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002244static void ixgbe_map_rings_to_vectors(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002245{
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002246 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2247 int rxr_remaining = adapter->num_rx_queues, rxr_idx = 0;
2248 int txr_remaining = adapter->num_tx_queues, txr_idx = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002249 int v_start = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002250
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002251 /* only one q_vector if MSI-X is disabled. */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002252 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002253 q_vectors = 1;
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002254
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002255 /*
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002256 * If we don't have enough vectors for a 1-to-1 mapping, we'll have to
2257 * group them so there are multiple queues per vector.
2258 *
2259 * Re-adjusting *qpv takes care of the remainder.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002260 */
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002261 for (; v_start < q_vectors && rxr_remaining; v_start++) {
2262 int rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - v_start);
2263 for (; rqpv; rqpv--, rxr_idx++, rxr_remaining--)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002264 map_vector_to_rxq(adapter, v_start, rxr_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002265 }
2266
2267 /*
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002268 * If there are not enough q_vectors for each ring to have it's own
2269 * vector then we must pair up Rx/Tx on a each vector
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002270 */
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002271 if ((v_start + txr_remaining) > q_vectors)
2272 v_start = 0;
2273
2274 for (; v_start < q_vectors && txr_remaining; v_start++) {
2275 int tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - v_start);
2276 for (; tqpv; tqpv--, txr_idx++, txr_remaining--)
2277 map_vector_to_txq(adapter, v_start, txr_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07002278 }
Auke Kok9a799d72007-09-15 14:07:45 -07002279}
2280
2281/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002282 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2283 * @adapter: board private structure
2284 *
2285 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2286 * interrupts from the kernel.
2287 **/
2288static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2289{
2290 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002291 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2292 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002293 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002294
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002295 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002296 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002297 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002298
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002299 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002300 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002301 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002302 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002303 } else if (q_vector->rx.ring) {
2304 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2305 "%s-%s-%d", netdev->name, "rx", ri++);
2306 } else if (q_vector->tx.ring) {
2307 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2308 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002309 } else {
2310 /* skip this unused q_vector */
2311 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002312 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002313 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2314 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002315 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002316 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002317 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002318 goto free_queue_irqs;
2319 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002320 /* If Flow Director is enabled, set interrupt affinity */
2321 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2322 /* assign the mask for this irq */
2323 irq_set_affinity_hint(entry->vector,
2324 q_vector->affinity_mask);
2325 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002326 }
2327
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002328 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002329 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002330 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002331 e_err(probe, "request_irq for msix_lsc failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002332 goto free_queue_irqs;
2333 }
2334
2335 return 0;
2336
2337free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002338 while (vector) {
2339 vector--;
2340 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2341 NULL);
2342 free_irq(adapter->msix_entries[vector].vector,
2343 adapter->q_vector[vector]);
2344 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002345 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2346 pci_disable_msix(adapter->pdev);
2347 kfree(adapter->msix_entries);
2348 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002349 return err;
2350}
2351
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002352/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002353 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002354 * @irq: interrupt number
2355 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002356 **/
2357static irqreturn_t ixgbe_intr(int irq, void *data)
2358{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002359 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002360 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002361 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002362 u32 eicr;
2363
Don Skidmore54037502009-02-21 15:42:56 -08002364 /*
Alexander Duyck24ddd962012-02-10 02:08:32 +00002365 * Workaround for silicon errata #26 on 82598. Mask the interrupt
Don Skidmore54037502009-02-21 15:42:56 -08002366 * before the read of EICR.
2367 */
2368 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2369
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002370 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002371 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002372 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002373 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002374 /*
2375 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002376 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002377 * have disabled interrupts due to EIAM
2378 * finish the workaround of silicon errata on 82598. Unmask
2379 * the interrupt that we masked before the EICR read.
2380 */
2381 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2382 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002383 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002384 }
Auke Kok9a799d72007-09-15 14:07:45 -07002385
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002386 if (eicr & IXGBE_EICR_LSC)
2387 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002388
Alexander Duyckbd508172010-11-16 19:27:03 -08002389 switch (hw->mac.type) {
2390 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002391 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002392 /* Fall through */
2393 case ixgbe_mac_X540:
2394 if (eicr & IXGBE_EICR_ECC)
2395 e_info(link, "Received unrecoverable ECC err, please "
2396 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002397 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002398 break;
2399 default:
2400 break;
2401 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002402
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002403 ixgbe_check_fan_failure(adapter, eicr);
2404
Alexander Duyck7a921c92009-05-06 10:43:28 +00002405 if (napi_schedule_prep(&(q_vector->napi))) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002406 /* would disable interrupts here but EIAM disabled it */
Alexander Duyck7a921c92009-05-06 10:43:28 +00002407 __napi_schedule(&(q_vector->napi));
Auke Kok9a799d72007-09-15 14:07:45 -07002408 }
2409
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002410 /*
2411 * re-enable link(maybe) and non-queue interrupts, no flush.
2412 * ixgbe_poll will re-enable the queue interrupts
2413 */
2414
2415 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2416 ixgbe_irq_enable(adapter, false, false);
2417
Auke Kok9a799d72007-09-15 14:07:45 -07002418 return IRQ_HANDLED;
2419}
2420
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002421static inline void ixgbe_reset_q_vectors(struct ixgbe_adapter *adapter)
2422{
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002423 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2424 int i;
2425
2426 /* legacy and MSI only use one vector */
2427 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
2428 q_vectors = 1;
2429
2430 for (i = 0; i < adapter->num_rx_queues; i++) {
2431 adapter->rx_ring[i]->q_vector = NULL;
2432 adapter->rx_ring[i]->next = NULL;
2433 }
2434 for (i = 0; i < adapter->num_tx_queues; i++) {
2435 adapter->tx_ring[i]->q_vector = NULL;
2436 adapter->tx_ring[i]->next = NULL;
2437 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002438
2439 for (i = 0; i < q_vectors; i++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00002440 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002441 memset(&q_vector->rx, 0, sizeof(struct ixgbe_ring_container));
2442 memset(&q_vector->tx, 0, sizeof(struct ixgbe_ring_container));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002443 }
2444}
2445
Auke Kok9a799d72007-09-15 14:07:45 -07002446/**
2447 * ixgbe_request_irq - initialize interrupts
2448 * @adapter: board private structure
2449 *
2450 * Attempts to configure interrupts using the best available
2451 * capabilities of the hardware and kernel.
2452 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002453static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002454{
2455 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002456 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002457
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002458 /* map all of the rings to the q_vectors */
2459 ixgbe_map_rings_to_vectors(adapter);
2460
2461 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002462 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002463 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002464 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002465 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002466 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002467 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002468 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002469
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002470 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002471 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002472
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002473 /* place q_vectors and rings back into a known good state */
2474 ixgbe_reset_q_vectors(adapter);
2475 }
2476
Auke Kok9a799d72007-09-15 14:07:45 -07002477 return err;
2478}
2479
2480static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2481{
Auke Kok9a799d72007-09-15 14:07:45 -07002482 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002483 int i, q_vectors;
Auke Kok9a799d72007-09-15 14:07:45 -07002484
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002485 q_vectors = adapter->num_msix_vectors;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002486 i = q_vectors - 1;
Alexander Duycka65151ba22011-05-27 05:31:32 +00002487 free_irq(adapter->msix_entries[i].vector, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002488 i--;
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002489
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002490 for (; i >= 0; i--) {
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002491 /* free only the irqs that were actually requested */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002492 if (!adapter->q_vector[i]->rx.ring &&
2493 !adapter->q_vector[i]->tx.ring)
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002494 continue;
2495
Alexander Duyck207867f2011-07-15 03:05:37 +00002496 /* clear the affinity_mask in the IRQ descriptor */
2497 irq_set_affinity_hint(adapter->msix_entries[i].vector,
2498 NULL);
2499
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002500 free_irq(adapter->msix_entries[i].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002501 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002502 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002503 } else {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002504 free_irq(adapter->pdev->irq, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002505 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002506
2507 /* clear q_vector state information */
2508 ixgbe_reset_q_vectors(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002509}
2510
2511/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002512 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2513 * @adapter: board private structure
2514 **/
2515static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2516{
Alexander Duyckbd508172010-11-16 19:27:03 -08002517 switch (adapter->hw.mac.type) {
2518 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002519 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002520 break;
2521 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002522 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002523 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2524 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002525 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002526 break;
2527 default:
2528 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002529 }
2530 IXGBE_WRITE_FLUSH(&adapter->hw);
2531 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2532 int i;
2533 for (i = 0; i < adapter->num_msix_vectors; i++)
2534 synchronize_irq(adapter->msix_entries[i].vector);
2535 } else {
2536 synchronize_irq(adapter->pdev->irq);
2537 }
2538}
2539
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002540/**
Auke Kok9a799d72007-09-15 14:07:45 -07002541 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2542 *
2543 **/
2544static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2545{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002546 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002547
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002548 /* rx/tx vector */
2549 if (adapter->rx_itr_setting == 1)
2550 q_vector->itr = IXGBE_20K_ITR;
2551 else
2552 q_vector->itr = adapter->rx_itr_setting;
2553
2554 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002555
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002556 ixgbe_set_ivar(adapter, 0, 0, 0);
2557 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002558
Emil Tantilov396e7992010-07-01 20:05:12 +00002559 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002560}
2561
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002562/**
2563 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2564 * @adapter: board private structure
2565 * @ring: structure containing ring specific data
2566 *
2567 * Configure the Tx descriptor ring after a reset.
2568 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002569void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2570 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002571{
2572 struct ixgbe_hw *hw = &adapter->hw;
2573 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002574 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002575 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002576 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002577
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002578 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002579 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002580 IXGBE_WRITE_FLUSH(hw);
2581
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002582 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002583 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002584 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2585 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2586 ring->count * sizeof(union ixgbe_adv_tx_desc));
2587 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2588 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002589 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002590
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002591 /*
2592 * set WTHRESH to encourage burst writeback, it should not be set
2593 * higher than 1 when ITR is 0 as it could cause false TX hangs
2594 *
2595 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2596 * to or less than the number of on chip descriptors, which is
2597 * currently 40.
2598 */
2599 if (!adapter->tx_itr_setting || !adapter->rx_itr_setting)
2600 txdctl |= (1 << 16); /* WTHRESH = 1 */
2601 else
2602 txdctl |= (8 << 16); /* WTHRESH = 8 */
2603
2604 /* PTHRESH=32 is needed to avoid a Tx hang with DFP enabled. */
2605 txdctl |= (1 << 8) | /* HTHRESH = 1 */
2606 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002607
2608 /* reinitialize flowdirector state */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002609 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2610 adapter->atr_sample_rate) {
2611 ring->atr_sample_rate = adapter->atr_sample_rate;
2612 ring->atr_count = 0;
2613 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2614 } else {
2615 ring->atr_sample_rate = 0;
2616 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002617
John Fastabendc84d3242010-11-16 19:27:12 -08002618 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2619
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002620 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002621 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2622
Alexander Duyckb2d96e02012-02-07 08:14:33 +00002623 netdev_tx_reset_queue(txring_txq(ring));
2624
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002625 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2626 if (hw->mac.type == ixgbe_mac_82598EB &&
2627 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2628 return;
2629
2630 /* poll to verify queue is enabled */
2631 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002632 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002633 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2634 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2635 if (!wait_loop)
2636 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002637}
2638
Alexander Duyck120ff942010-08-19 13:34:50 +00002639static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2640{
2641 struct ixgbe_hw *hw = &adapter->hw;
2642 u32 rttdcs;
John Fastabend72a32f12011-04-26 07:25:58 +00002643 u32 reg;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002644 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002645
2646 if (hw->mac.type == ixgbe_mac_82598EB)
2647 return;
2648
2649 /* disable the arbiter while setting MTQC */
2650 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2651 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2652 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2653
2654 /* set transmit pool layout */
John Fastabend8b1c0b22011-05-03 02:26:48 +00002655 switch (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Alexander Duyck120ff942010-08-19 13:34:50 +00002656 case (IXGBE_FLAG_SRIOV_ENABLED):
2657 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2658 (IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF));
2659 break;
Alexander Duyck120ff942010-08-19 13:34:50 +00002660 default:
John Fastabend8b1c0b22011-05-03 02:26:48 +00002661 if (!tcs)
2662 reg = IXGBE_MTQC_64Q_1PB;
2663 else if (tcs <= 4)
2664 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2665 else
2666 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2667
2668 IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
2669
2670 /* Enable Security TX Buffer IFG for multiple pb */
2671 if (tcs) {
2672 reg = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2673 reg |= IXGBE_SECTX_DCB;
2674 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, reg);
2675 }
Alexander Duyck120ff942010-08-19 13:34:50 +00002676 break;
2677 }
2678
2679 /* re-enable the arbiter */
2680 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2681 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2682}
2683
Auke Kok9a799d72007-09-15 14:07:45 -07002684/**
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07002685 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002686 * @adapter: board private structure
2687 *
2688 * Configure the Tx unit of the MAC after a reset.
2689 **/
2690static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2691{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002692 struct ixgbe_hw *hw = &adapter->hw;
2693 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002694 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002695
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002696 ixgbe_setup_mtqc(adapter);
2697
2698 if (hw->mac.type != ixgbe_mac_82598EB) {
2699 /* DMATXCTL.EN must be before Tx queues are enabled */
2700 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2701 dmatxctl |= IXGBE_DMATXCTL_TE;
2702 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2703 }
2704
Auke Kok9a799d72007-09-15 14:07:45 -07002705 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002706 for (i = 0; i < adapter->num_tx_queues; i++)
2707 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002708}
2709
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002710#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002711
Yi Zoua6616b42009-08-06 13:05:23 +00002712static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002713 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002714{
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002715 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002716 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002717
Alexander Duyckbd508172010-11-16 19:27:03 -08002718 switch (adapter->hw.mac.type) {
2719 case ixgbe_mac_82598EB: {
2720 struct ixgbe_ring_feature *feature = adapter->ring_feature;
2721 const int mask = feature[RING_F_RSS].mask;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002722 reg_idx = reg_idx & mask;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002723 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002724 break;
2725 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002726 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08002727 default:
2728 break;
2729 }
2730
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002731 srrctl = IXGBE_READ_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx));
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002732
2733 srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
2734 srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002735 if (adapter->num_vfs)
2736 srrctl |= IXGBE_SRRCTL_DROP_EN;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002737
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002738 srrctl |= (IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
2739 IXGBE_SRRCTL_BSIZEHDR_MASK;
2740
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002741 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002742#if (PAGE_SIZE / 2) > IXGBE_MAX_RXBUFFER
2743 srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2744#else
2745 srrctl |= (PAGE_SIZE / 2) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2746#endif
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002747 srrctl |= IXGBE_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002748 } else {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002749 srrctl |= ALIGN(rx_ring->rx_buf_len, 1024) >>
2750 IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002751 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002752 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002753
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002754 IXGBE_WRITE_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002755}
2756
Alexander Duyck05abb122010-08-19 13:35:41 +00002757static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002758{
Alexander Duyck05abb122010-08-19 13:35:41 +00002759 struct ixgbe_hw *hw = &adapter->hw;
2760 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002761 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2762 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002763 u32 mrqc = 0, reta = 0;
2764 u32 rxcsum;
2765 int i, j;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002766 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend86b4db32011-04-26 07:26:19 +00002767 int maxq = adapter->ring_feature[RING_F_RSS].indices;
2768
2769 if (tcs)
2770 maxq = min(maxq, adapter->num_tx_queues / tcs);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002771
Alexander Duyck05abb122010-08-19 13:35:41 +00002772 /* Fill out hash function seeds */
2773 for (i = 0; i < 10; i++)
2774 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002775
Alexander Duyck05abb122010-08-19 13:35:41 +00002776 /* Fill out redirection table */
2777 for (i = 0, j = 0; i < 128; i++, j++) {
John Fastabend86b4db32011-04-26 07:26:19 +00002778 if (j == maxq)
Alexander Duyck05abb122010-08-19 13:35:41 +00002779 j = 0;
2780 /* reta = 4-byte sliding window of
2781 * 0x00..(indices-1)(indices-1)00..etc. */
2782 reta = (reta << 8) | (j * 0x11);
2783 if ((i & 3) == 3)
2784 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2785 }
2786
2787 /* Disable indicating checksum in descriptor, enables RSS hash */
2788 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2789 rxcsum |= IXGBE_RXCSUM_PCSD;
2790 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2791
John Fastabend8b1c0b22011-05-03 02:26:48 +00002792 if (adapter->hw.mac.type == ixgbe_mac_82598EB &&
2793 (adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002794 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002795 } else {
2796 int mask = adapter->flags & (IXGBE_FLAG_RSS_ENABLED
2797 | IXGBE_FLAG_SRIOV_ENABLED);
2798
2799 switch (mask) {
2800 case (IXGBE_FLAG_RSS_ENABLED):
2801 if (!tcs)
2802 mrqc = IXGBE_MRQC_RSSEN;
2803 else if (tcs <= 4)
2804 mrqc = IXGBE_MRQC_RTRSS4TCEN;
2805 else
2806 mrqc = IXGBE_MRQC_RTRSS8TCEN;
2807 break;
2808 case (IXGBE_FLAG_SRIOV_ENABLED):
2809 mrqc = IXGBE_MRQC_VMDQEN;
2810 break;
2811 default:
2812 break;
2813 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002814 }
2815
Alexander Duyck05abb122010-08-19 13:35:41 +00002816 /* Perform hash on these packet types */
2817 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2818 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2819 | IXGBE_MRQC_RSS_FIELD_IPV6
2820 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2821
2822 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002823}
2824
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002825/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002826 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2827 * @adapter: address of board private structure
2828 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002829 **/
Don Skidmore082757a2011-07-21 05:55:00 +00002830static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00002831 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002832{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002833 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002834 u32 rscctrl;
Mallikarjuna R Chilakalaedd2ea552009-11-23 10:45:11 -08002835 int rx_buf_len;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002836 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002837
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002838 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002839 return;
2840
2841 rx_buf_len = ring->rx_buf_len;
2842 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002843 rscctrl |= IXGBE_RSCCTL_RSCEN;
2844 /*
2845 * we must limit the number of descriptors so that the
2846 * total size of max desc * buf_len is not greater
Alexander Duyck642c6802011-11-10 09:09:17 +00002847 * than 65536
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002848 */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002849 if (ring_is_ps_enabled(ring)) {
Alexander Duyck642c6802011-11-10 09:09:17 +00002850#if (PAGE_SIZE < 8192)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002851 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck642c6802011-11-10 09:09:17 +00002852#elif (PAGE_SIZE < 16384)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002853 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
Alexander Duyck642c6802011-11-10 09:09:17 +00002854#elif (PAGE_SIZE < 32768)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002855 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2856#else
2857 rscctrl |= IXGBE_RSCCTL_MAXDESC_1;
2858#endif
2859 } else {
Alexander Duyck642c6802011-11-10 09:09:17 +00002860 if (rx_buf_len <= IXGBE_RXBUFFER_4K)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002861 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck642c6802011-11-10 09:09:17 +00002862 else if (rx_buf_len <= IXGBE_RXBUFFER_8K)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002863 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2864 else
2865 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2866 }
Alexander Duyck73670962010-08-19 13:38:34 +00002867 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002868}
2869
Alexander Duyck9e10e042010-08-19 13:40:06 +00002870/**
2871 * ixgbe_set_uta - Set unicast filter table address
2872 * @adapter: board private structure
2873 *
2874 * The unicast table address is a register array of 32-bit registers.
2875 * The table is meant to be used in a way similar to how the MTA is used
2876 * however due to certain limitations in the hardware it is necessary to
2877 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscuous
2878 * enable bit to allow vlan tag stripping when promiscuous mode is enabled
2879 **/
2880static void ixgbe_set_uta(struct ixgbe_adapter *adapter)
2881{
2882 struct ixgbe_hw *hw = &adapter->hw;
2883 int i;
2884
2885 /* The UTA table only exists on 82599 hardware and newer */
2886 if (hw->mac.type < ixgbe_mac_82599EB)
2887 return;
2888
2889 /* we only need to do this if VMDq is enabled */
2890 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2891 return;
2892
2893 for (i = 0; i < 128; i++)
2894 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
2895}
2896
2897#define IXGBE_MAX_RX_DESC_POLL 10
2898static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
2899 struct ixgbe_ring *ring)
2900{
2901 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002902 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2903 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002904 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002905
2906 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2907 if (hw->mac.type == ixgbe_mac_82598EB &&
2908 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2909 return;
2910
2911 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002912 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002913 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2914 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
2915
2916 if (!wait_loop) {
2917 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
2918 "the polling period\n", reg_idx);
2919 }
2920}
2921
Yi Zou2d39d572011-01-06 14:29:56 +00002922void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
2923 struct ixgbe_ring *ring)
2924{
2925 struct ixgbe_hw *hw = &adapter->hw;
2926 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2927 u32 rxdctl;
2928 u8 reg_idx = ring->reg_idx;
2929
2930 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2931 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
2932
2933 /* write value back with RXDCTL.ENABLE bit cleared */
2934 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2935
2936 if (hw->mac.type == ixgbe_mac_82598EB &&
2937 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2938 return;
2939
2940 /* the hardware may take up to 100us to really disable the rx queue */
2941 do {
2942 udelay(10);
2943 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2944 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
2945
2946 if (!wait_loop) {
2947 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
2948 "the polling period\n", reg_idx);
2949 }
2950}
2951
Alexander Duyck84418e32010-08-19 13:40:54 +00002952void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
2953 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00002954{
2955 struct ixgbe_hw *hw = &adapter->hw;
2956 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002957 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002958 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00002959
Alexander Duyck9e10e042010-08-19 13:40:06 +00002960 /* disable queue to avoid issues while updating state */
2961 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00002962 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002963
Alexander Duyckacd37172010-08-19 13:36:05 +00002964 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
2965 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
2966 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
2967 ring->count * sizeof(union ixgbe_adv_rx_desc));
2968 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
2969 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002970 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002971
2972 ixgbe_configure_srrctl(adapter, ring);
2973 ixgbe_configure_rscctl(adapter, ring);
2974
Greg Rosee9f98072011-01-26 01:06:07 +00002975 /* If operating in IOV mode set RLPML for X540 */
2976 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
2977 hw->mac.type == ixgbe_mac_X540) {
2978 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
2979 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
2980 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
2981 }
2982
Alexander Duyck9e10e042010-08-19 13:40:06 +00002983 if (hw->mac.type == ixgbe_mac_82598EB) {
2984 /*
2985 * enable cache line friendly hardware writes:
2986 * PTHRESH=32 descriptors (half the internal cache),
2987 * this also removes ugly rx_no_buffer_count increment
2988 * HTHRESH=4 descriptors (to minimize latency on fetch)
2989 * WTHRESH=8 burst writeback up to two cache lines
2990 */
2991 rxdctl &= ~0x3FFFFF;
2992 rxdctl |= 0x080420;
2993 }
2994
2995 /* enable receive descriptor ring */
2996 rxdctl |= IXGBE_RXDCTL_ENABLE;
2997 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2998
2999 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003000 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003001}
3002
Alexander Duyck48654522010-08-19 13:36:27 +00003003static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3004{
3005 struct ixgbe_hw *hw = &adapter->hw;
3006 int p;
3007
3008 /* PSRTYPE must be initialized in non 82598 adapters */
3009 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003010 IXGBE_PSRTYPE_UDPHDR |
3011 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003012 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003013 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003014
3015 if (hw->mac.type == ixgbe_mac_82598EB)
3016 return;
3017
3018 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED)
3019 psrtype |= (adapter->num_rx_queues_per_pool << 29);
3020
3021 for (p = 0; p < adapter->num_rx_pools; p++)
3022 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(adapter->num_vfs + p),
3023 psrtype);
3024}
3025
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003026static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3027{
3028 struct ixgbe_hw *hw = &adapter->hw;
3029 u32 gcr_ext;
3030 u32 vt_reg_bits;
3031 u32 reg_offset, vf_shift;
3032 u32 vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00003033 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003034
3035 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3036 return;
3037
3038 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
3039 vt_reg_bits = IXGBE_VMD_CTL_VMDQ_EN | IXGBE_VT_CTL_REPLEN;
3040 vt_reg_bits |= (adapter->num_vfs << IXGBE_VT_CTL_POOL_SHIFT);
3041 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl | vt_reg_bits);
3042
3043 vf_shift = adapter->num_vfs % 32;
Greg Rose4cd69232012-01-25 07:59:37 +00003044 reg_offset = (adapter->num_vfs >= 32) ? 1 : 0;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003045
3046 /* Enable only the PF's pool for Tx/Rx */
3047 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (1 << vf_shift));
3048 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), 0);
3049 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (1 << vf_shift));
3050 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), 0);
3051 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3052
3053 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
3054 hw->mac.ops.set_vmdq(hw, 0, adapter->num_vfs);
3055
3056 /*
3057 * Set up VF register offsets for selected VT Mode,
3058 * i.e. 32 or 64 VFs for SR-IOV
3059 */
3060 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
3061 gcr_ext |= IXGBE_GCR_EXT_MSIX_EN;
3062 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
3063 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3064
3065 /* enable Tx loopback for VF/PF communication */
3066 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Greg Rosea985b6c32010-11-18 03:02:52 +00003067 /* Enable MAC Anti-Spoofing */
Greg Rosea1cbb15c2011-05-13 01:33:48 +00003068 hw->mac.ops.set_mac_anti_spoofing(hw,
Greg Rosede4c7f62011-09-29 05:57:33 +00003069 (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00003070 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00003071 /* For VFs that have spoof checking turned off */
3072 for (i = 0; i < adapter->num_vfs; i++) {
3073 if (!adapter->vfinfo[i].spoofchk_enabled)
3074 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
3075 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003076}
3077
Alexander Duyck477de6e2010-08-19 13:38:11 +00003078static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003079{
Auke Kok9a799d72007-09-15 14:07:45 -07003080 struct ixgbe_hw *hw = &adapter->hw;
3081 struct net_device *netdev = adapter->netdev;
3082 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003083 int rx_buf_len;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003084 struct ixgbe_ring *rx_ring;
3085 int i;
3086 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003087
Auke Kok9a799d72007-09-15 14:07:45 -07003088 /* Decide whether to use packet split mode or not */
Don Skidmorea1243392011-01-18 22:53:47 +00003089 /* On by default */
3090 adapter->flags |= IXGBE_FLAG_RX_PS_ENABLED;
3091
Greg Rose1cdd1ec2010-01-09 02:26:46 +00003092 /* Do not use packet split if we're in SR-IOV Mode */
Don Skidmorea1243392011-01-18 22:53:47 +00003093 if (adapter->num_vfs)
3094 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
3095
3096 /* Disable packet split due to 82599 erratum #45 */
3097 if (hw->mac.type == ixgbe_mac_82599EB)
3098 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
Auke Kok9a799d72007-09-15 14:07:45 -07003099
Alexander Duyck477de6e2010-08-19 13:38:11 +00003100#ifdef IXGBE_FCOE
3101 /* adjust max frame to be able to do baby jumbo for FCoE */
3102 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3103 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3104 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3105
3106#endif /* IXGBE_FCOE */
3107 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3108 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3109 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3110 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3111
3112 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003113 }
3114
Alexander Duyck919e78a2011-08-26 09:52:38 +00003115 /* MHADD will allow an extra 4 bytes past for vlan tagged frames */
3116 max_frame += VLAN_HLEN;
3117
3118 /* Set the RX buffer length according to the mode */
3119 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED) {
3120 rx_buf_len = IXGBE_RX_HDR_SIZE;
3121 } else {
3122 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
3123 (netdev->mtu <= ETH_DATA_LEN))
3124 rx_buf_len = MAXIMUM_ETHERNET_VLAN_SIZE;
3125 /*
3126 * Make best use of allocation by using all but 1K of a
3127 * power of 2 allocation that will be used for skb->head.
3128 */
3129 else if (max_frame <= IXGBE_RXBUFFER_3K)
3130 rx_buf_len = IXGBE_RXBUFFER_3K;
3131 else if (max_frame <= IXGBE_RXBUFFER_7K)
3132 rx_buf_len = IXGBE_RXBUFFER_7K;
3133 else if (max_frame <= IXGBE_RXBUFFER_15K)
3134 rx_buf_len = IXGBE_RXBUFFER_15K;
3135 else
3136 rx_buf_len = IXGBE_MAX_RXBUFFER;
3137 }
3138
Auke Kok9a799d72007-09-15 14:07:45 -07003139 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003140 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3141 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003142 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3143
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003144 /*
3145 * Setup the HW Rx Head and Tail Descriptor Pointers and
3146 * the Base and Length of the Rx Descriptor Ring
3147 */
Auke Kok9a799d72007-09-15 14:07:45 -07003148 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003149 rx_ring = adapter->rx_ring[i];
Yi Zoua6616b42009-08-06 13:05:23 +00003150 rx_ring->rx_buf_len = rx_buf_len;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003151
Yi Zou6e455b892009-08-06 13:05:44 +00003152 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003153 set_ring_ps_enabled(rx_ring);
Peter P Waskiewicz Jr1b3ff022009-09-14 07:47:27 +00003154 else
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003155 clear_ring_ps_enabled(rx_ring);
3156
3157 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3158 set_ring_rsc_enabled(rx_ring);
3159 else
3160 clear_ring_rsc_enabled(rx_ring);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003161
Yi Zou63f39bd2009-05-17 12:34:35 +00003162#ifdef IXGBE_FCOE
Joe Perchese8e9f692010-09-07 21:34:53 +00003163 if (netdev->features & NETIF_F_FCOE_MTU) {
Yi Zou63f39bd2009-05-17 12:34:35 +00003164 struct ixgbe_ring_feature *f;
3165 f = &adapter->ring_feature[RING_F_FCOE];
Yi Zou6e455b892009-08-06 13:05:44 +00003166 if ((i >= f->mask) && (i < f->mask + f->indices)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003167 clear_ring_ps_enabled(rx_ring);
Yi Zou6e455b892009-08-06 13:05:44 +00003168 if (rx_buf_len < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3169 rx_ring->rx_buf_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00003170 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003171 } else if (!ring_is_rsc_enabled(rx_ring) &&
3172 !ring_is_ps_enabled(rx_ring)) {
3173 rx_ring->rx_buf_len =
3174 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Yi Zou6e455b892009-08-06 13:05:44 +00003175 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003176 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003177#endif /* IXGBE_FCOE */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003178 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003179}
3180
Alexander Duyck73670962010-08-19 13:38:34 +00003181static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3182{
3183 struct ixgbe_hw *hw = &adapter->hw;
3184 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3185
3186 switch (hw->mac.type) {
3187 case ixgbe_mac_82598EB:
3188 /*
3189 * For VMDq support of different descriptor types or
3190 * buffer sizes through the use of multiple SRRCTL
3191 * registers, RDRXCTL.MVMEN must be set to 1
3192 *
3193 * also, the manual doesn't mention it clearly but DCA hints
3194 * will only use queue 0's tags unless this bit is set. Side
3195 * effects of setting this bit are only that SRRCTL must be
3196 * fully programmed [0..15]
3197 */
3198 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3199 break;
3200 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003201 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003202 /* Disable RSC for ACK packets */
3203 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3204 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3205 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3206 /* hardware requires some bits to be set by default */
3207 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3208 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3209 break;
3210 default:
3211 /* We should do nothing since we don't know this hardware */
3212 return;
3213 }
3214
3215 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3216}
3217
Alexander Duyck477de6e2010-08-19 13:38:11 +00003218/**
3219 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3220 * @adapter: board private structure
3221 *
3222 * Configure the Rx unit of the MAC after a reset.
3223 **/
3224static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3225{
3226 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003227 int i;
3228 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003229
3230 /* disable receives while setting up the descriptors */
3231 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3232 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3233
3234 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003235 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003236
Alexander Duyck9e10e042010-08-19 13:40:06 +00003237 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003238 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003239
Alexander Duyck9e10e042010-08-19 13:40:06 +00003240 ixgbe_set_uta(adapter);
3241
Alexander Duyck477de6e2010-08-19 13:38:11 +00003242 /* set_rx_buffer_len must be called before ring initialization */
3243 ixgbe_set_rx_buffer_len(adapter);
3244
3245 /*
3246 * Setup the HW Rx Head and Tail Descriptor Pointers and
3247 * the Base and Length of the Rx Descriptor Ring
3248 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003249 for (i = 0; i < adapter->num_rx_queues; i++)
3250 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003251
Alexander Duyck9e10e042010-08-19 13:40:06 +00003252 /* disable drop enable for 82598 parts */
3253 if (hw->mac.type == ixgbe_mac_82598EB)
3254 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3255
3256 /* enable all receives */
3257 rxctrl |= IXGBE_RXCTRL_RXEN;
3258 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003259}
3260
Jiri Pirko8e586132011-12-08 19:52:37 -05003261static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003262{
3263 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003264 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003265 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003266
3267 /* add VID to filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003268 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003269 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003270
3271 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003272}
3273
Jiri Pirko8e586132011-12-08 19:52:37 -05003274static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003275{
3276 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003277 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003278 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003279
Auke Kok9a799d72007-09-15 14:07:45 -07003280 /* remove VID from filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003281 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003282 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003283
3284 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003285}
3286
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003287/**
3288 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3289 * @adapter: driver data
3290 */
3291static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3292{
3293 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003294 u32 vlnctrl;
3295
3296 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3297 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3298 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3299}
3300
3301/**
3302 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3303 * @adapter: driver data
3304 */
3305static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3306{
3307 struct ixgbe_hw *hw = &adapter->hw;
3308 u32 vlnctrl;
3309
3310 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3311 vlnctrl |= IXGBE_VLNCTRL_VFE;
3312 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3313 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3314}
3315
3316/**
3317 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3318 * @adapter: driver data
3319 */
3320static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3321{
3322 struct ixgbe_hw *hw = &adapter->hw;
3323 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003324 int i, j;
3325
3326 switch (hw->mac.type) {
3327 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003328 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3329 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003330 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3331 break;
3332 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003333 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003334 for (i = 0; i < adapter->num_rx_queues; i++) {
3335 j = adapter->rx_ring[i]->reg_idx;
3336 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3337 vlnctrl &= ~IXGBE_RXDCTL_VME;
3338 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3339 }
3340 break;
3341 default:
3342 break;
3343 }
3344}
3345
3346/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003347 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003348 * @adapter: driver data
3349 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003350static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003351{
3352 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003353 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003354 int i, j;
3355
3356 switch (hw->mac.type) {
3357 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003358 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3359 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003360 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3361 break;
3362 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003363 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003364 for (i = 0; i < adapter->num_rx_queues; i++) {
3365 j = adapter->rx_ring[i]->reg_idx;
3366 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3367 vlnctrl |= IXGBE_RXDCTL_VME;
3368 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3369 }
3370 break;
3371 default:
3372 break;
3373 }
3374}
3375
Auke Kok9a799d72007-09-15 14:07:45 -07003376static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3377{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003378 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003379
Jesse Grossf62bbb52010-10-20 13:56:10 +00003380 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3381
3382 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3383 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003384}
3385
3386/**
Alexander Duyck28500622010-06-15 09:25:48 +00003387 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3388 * @netdev: network interface device structure
3389 *
3390 * Writes unicast address list to the RAR table.
3391 * Returns: -ENOMEM on failure/insufficient address space
3392 * 0 on no addresses written
3393 * X on writing X addresses to the RAR table
3394 **/
3395static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3396{
3397 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3398 struct ixgbe_hw *hw = &adapter->hw;
3399 unsigned int vfn = adapter->num_vfs;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00003400 unsigned int rar_entries = IXGBE_MAX_PF_MACVLANS;
Alexander Duyck28500622010-06-15 09:25:48 +00003401 int count = 0;
3402
3403 /* return ENOMEM indicating insufficient memory for addresses */
3404 if (netdev_uc_count(netdev) > rar_entries)
3405 return -ENOMEM;
3406
3407 if (!netdev_uc_empty(netdev) && rar_entries) {
3408 struct netdev_hw_addr *ha;
3409 /* return error if we do not support writing to RAR table */
3410 if (!hw->mac.ops.set_rar)
3411 return -ENOMEM;
3412
3413 netdev_for_each_uc_addr(ha, netdev) {
3414 if (!rar_entries)
3415 break;
3416 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
3417 vfn, IXGBE_RAH_AV);
3418 count++;
3419 }
3420 }
3421 /* write the addresses in reverse order to avoid write combining */
3422 for (; rar_entries > 0 ; rar_entries--)
3423 hw->mac.ops.clear_rar(hw, rar_entries);
3424
3425 return count;
3426}
3427
3428/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003429 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003430 * @netdev: network interface device structure
3431 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003432 * The set_rx_method entry point is called whenever the unicast/multicast
3433 * address list or the network interface flags are updated. This routine is
3434 * responsible for configuring the hardware for proper unicast, multicast and
3435 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003436 **/
Greg Rose7f870472010-01-09 02:25:29 +00003437void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003438{
3439 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3440 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003441 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3442 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003443
3444 /* Check for Promiscuous and All Multicast modes */
3445
3446 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3447
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003448 /* set all bits that we expect to always be set */
3449 fctrl |= IXGBE_FCTRL_BAM;
3450 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3451 fctrl |= IXGBE_FCTRL_PMCF;
3452
Alexander Duyck28500622010-06-15 09:25:48 +00003453 /* clear the bits we are changing the status of */
3454 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3455
Auke Kok9a799d72007-09-15 14:07:45 -07003456 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003457 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003458 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003459 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003460 /* don't hardware filter vlans in promisc mode */
3461 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003462 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003463 if (netdev->flags & IFF_ALLMULTI) {
3464 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003465 vmolr |= IXGBE_VMOLR_MPE;
3466 } else {
3467 /*
3468 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003469 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003470 * that we can at least receive multicast traffic
3471 */
3472 hw->mac.ops.update_mc_addr_list(hw, netdev);
3473 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003474 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003475 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003476 hw->addr_ctrl.user_set_promisc = false;
Alexander Duyck28500622010-06-15 09:25:48 +00003477 /*
3478 * Write addresses to available RAR registers, if there is not
3479 * sufficient space to store all the addresses then enable
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003480 * unicast promiscuous mode
Alexander Duyck28500622010-06-15 09:25:48 +00003481 */
3482 count = ixgbe_write_uc_addr_list(netdev);
3483 if (count < 0) {
3484 fctrl |= IXGBE_FCTRL_UPE;
3485 vmolr |= IXGBE_VMOLR_ROPE;
3486 }
3487 }
3488
3489 if (adapter->num_vfs) {
3490 ixgbe_restore_vf_multicasts(adapter);
3491 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(adapter->num_vfs)) &
3492 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3493 IXGBE_VMOLR_ROPE);
3494 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(adapter->num_vfs), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003495 }
3496
3497 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003498
3499 if (netdev->features & NETIF_F_HW_VLAN_RX)
3500 ixgbe_vlan_strip_enable(adapter);
3501 else
3502 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003503}
3504
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003505static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3506{
3507 int q_idx;
3508 struct ixgbe_q_vector *q_vector;
3509 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3510
3511 /* legacy and MSI only use one vector */
3512 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3513 q_vectors = 1;
3514
3515 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003516 q_vector = adapter->q_vector[q_idx];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00003517 napi_enable(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003518 }
3519}
3520
3521static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3522{
3523 int q_idx;
3524 struct ixgbe_q_vector *q_vector;
3525 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3526
3527 /* legacy and MSI only use one vector */
3528 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3529 q_vectors = 1;
3530
3531 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003532 q_vector = adapter->q_vector[q_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003533 napi_disable(&q_vector->napi);
3534 }
3535}
3536
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003537#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08003538/*
3539 * ixgbe_configure_dcb - Configure DCB hardware
3540 * @adapter: ixgbe adapter struct
3541 *
3542 * This is called by the driver on open to configure the DCB hardware.
3543 * This is also called by the gennetlink interface when reconfiguring
3544 * the DCB state.
3545 */
3546static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3547{
3548 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend98063072010-10-28 00:59:57 +00003549 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003550
Alexander Duyck67ebd792010-08-19 13:34:04 +00003551 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3552 if (hw->mac.type == ixgbe_mac_82598EB)
3553 netif_set_gso_max_size(adapter->netdev, 65536);
3554 return;
3555 }
3556
3557 if (hw->mac.type == ixgbe_mac_82598EB)
3558 netif_set_gso_max_size(adapter->netdev, 32768);
3559
Alexander Duyck2f90b862008-11-20 20:52:10 -08003560
Alexander Duyck2f90b862008-11-20 20:52:10 -08003561 /* Enable VLAN tag insert/strip */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003562 adapter->netdev->features |= NETIF_F_HW_VLAN_RX;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003563
Alexander Duyck2f90b862008-11-20 20:52:10 -08003564 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003565
John Fastabendb1208182011-10-15 05:00:10 +00003566#ifdef IXGBE_FCOE
3567 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3568 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3569#endif
3570
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003571 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003572 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003573 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3574 DCB_TX_CONFIG);
3575 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3576 DCB_RX_CONFIG);
3577 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003578 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3579 ixgbe_dcb_hw_ets(&adapter->hw,
3580 adapter->ixgbe_ieee_ets,
3581 max_frame);
3582 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3583 adapter->ixgbe_ieee_pfc->pfc_en,
3584 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003585 }
John Fastabend8187cd42011-02-23 05:58:08 +00003586
3587 /* Enable RSS Hash per TC */
3588 if (hw->mac.type != ixgbe_mac_82598EB) {
3589 int i;
3590 u32 reg = 0;
3591
3592 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
3593 u8 msb = 0;
3594 u8 cnt = adapter->netdev->tc_to_txq[i].count;
3595
3596 while (cnt >>= 1)
3597 msb++;
3598
3599 reg |= msb << IXGBE_RQTC_SHIFT_TC(i);
3600 }
3601 IXGBE_WRITE_REG(hw, IXGBE_RQTC, reg);
3602 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003603}
John Fastabend9da712d2011-08-23 03:14:22 +00003604#endif
3605
3606/* Additional bittime to account for IXGBE framing */
3607#define IXGBE_ETH_FRAMING 20
3608
3609/*
3610 * ixgbe_hpbthresh - calculate high water mark for flow control
3611 *
3612 * @adapter: board private structure to calculate for
3613 * @pb - packet buffer to calculate
3614 */
3615static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
3616{
3617 struct ixgbe_hw *hw = &adapter->hw;
3618 struct net_device *dev = adapter->netdev;
3619 int link, tc, kb, marker;
3620 u32 dv_id, rx_pba;
3621
3622 /* Calculate max LAN frame size */
3623 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
3624
3625#ifdef IXGBE_FCOE
3626 /* FCoE traffic class uses FCOE jumbo frames */
3627 if (dev->features & NETIF_F_FCOE_MTU) {
3628 int fcoe_pb = 0;
3629
3630#ifdef CONFIG_IXGBE_DCB
3631 fcoe_pb = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003632
3633#endif
John Fastabend9da712d2011-08-23 03:14:22 +00003634 if (fcoe_pb == pb && tc < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3635 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3636 }
3637#endif
3638
3639 /* Calculate delay value for device */
3640 switch (hw->mac.type) {
3641 case ixgbe_mac_X540:
3642 dv_id = IXGBE_DV_X540(link, tc);
3643 break;
3644 default:
3645 dv_id = IXGBE_DV(link, tc);
3646 break;
3647 }
3648
3649 /* Loopback switch introduces additional latency */
3650 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3651 dv_id += IXGBE_B2BT(tc);
3652
3653 /* Delay value is calculated in bit times convert to KB */
3654 kb = IXGBE_BT2KB(dv_id);
3655 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
3656
3657 marker = rx_pba - kb;
3658
3659 /* It is possible that the packet buffer is not large enough
3660 * to provide required headroom. In this case throw an error
3661 * to user and a do the best we can.
3662 */
3663 if (marker < 0) {
3664 e_warn(drv, "Packet Buffer(%i) can not provide enough"
3665 "headroom to support flow control."
3666 "Decrease MTU or number of traffic classes\n", pb);
3667 marker = tc + 1;
3668 }
3669
3670 return marker;
3671}
3672
3673/*
3674 * ixgbe_lpbthresh - calculate low water mark for for flow control
3675 *
3676 * @adapter: board private structure to calculate for
3677 * @pb - packet buffer to calculate
3678 */
3679static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
3680{
3681 struct ixgbe_hw *hw = &adapter->hw;
3682 struct net_device *dev = adapter->netdev;
3683 int tc;
3684 u32 dv_id;
3685
3686 /* Calculate max LAN frame size */
3687 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3688
3689 /* Calculate delay value for device */
3690 switch (hw->mac.type) {
3691 case ixgbe_mac_X540:
3692 dv_id = IXGBE_LOW_DV_X540(tc);
3693 break;
3694 default:
3695 dv_id = IXGBE_LOW_DV(tc);
3696 break;
3697 }
3698
3699 /* Delay value is calculated in bit times convert to KB */
3700 return IXGBE_BT2KB(dv_id);
3701}
3702
3703/*
3704 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3705 */
3706static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
3707{
3708 struct ixgbe_hw *hw = &adapter->hw;
3709 int num_tc = netdev_get_num_tc(adapter->netdev);
3710 int i;
3711
3712 if (!num_tc)
3713 num_tc = 1;
3714
3715 hw->fc.low_water = ixgbe_lpbthresh(adapter);
3716
3717 for (i = 0; i < num_tc; i++) {
3718 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
3719
3720 /* Low water marks must not be larger than high water marks */
3721 if (hw->fc.low_water > hw->fc.high_water[i])
3722 hw->fc.low_water = 0;
3723 }
3724}
John Fastabend80605c652011-05-02 12:34:10 +00003725
3726static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3727{
John Fastabend80605c652011-05-02 12:34:10 +00003728 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00003729 int hdrm;
3730 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00003731
3732 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3733 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00003734 hdrm = 32 << adapter->fdir_pballoc;
3735 else
3736 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00003737
Alexander Duyckf7e10272011-07-21 00:40:35 +00003738 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00003739 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00003740}
3741
Alexander Duycke4911d52011-05-11 07:18:52 +00003742static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3743{
3744 struct ixgbe_hw *hw = &adapter->hw;
3745 struct hlist_node *node, *node2;
3746 struct ixgbe_fdir_filter *filter;
3747
3748 spin_lock(&adapter->fdir_perfect_lock);
3749
3750 if (!hlist_empty(&adapter->fdir_filter_list))
3751 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3752
3753 hlist_for_each_entry_safe(filter, node, node2,
3754 &adapter->fdir_filter_list, fdir_node) {
3755 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003756 &filter->filter,
3757 filter->sw_idx,
3758 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3759 IXGBE_FDIR_DROP_QUEUE :
3760 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003761 }
3762
3763 spin_unlock(&adapter->fdir_perfect_lock);
3764}
3765
Auke Kok9a799d72007-09-15 14:07:45 -07003766static void ixgbe_configure(struct ixgbe_adapter *adapter)
3767{
John Fastabend80605c652011-05-02 12:34:10 +00003768 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003769#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003770 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003771#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003772
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003773 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003774 ixgbe_restore_vlan(adapter);
3775
Yi Zoueacd73f2009-05-13 13:11:06 +00003776#ifdef IXGBE_FCOE
3777 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
3778 ixgbe_configure_fcoe(adapter);
3779
3780#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003781 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003782 ixgbe_init_fdir_signature_82599(&adapter->hw,
3783 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003784 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3785 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3786 adapter->fdir_pballoc);
3787 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003788 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003789
Alexander Duyck933d41f2010-09-07 21:34:29 +00003790 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003791
Auke Kok9a799d72007-09-15 14:07:45 -07003792 ixgbe_configure_tx(adapter);
3793 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003794}
3795
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003796static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3797{
3798 switch (hw->phy.type) {
3799 case ixgbe_phy_sfp_avago:
3800 case ixgbe_phy_sfp_ftl:
3801 case ixgbe_phy_sfp_intel:
3802 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003803 case ixgbe_phy_sfp_passive_tyco:
3804 case ixgbe_phy_sfp_passive_unknown:
3805 case ixgbe_phy_sfp_active_unknown:
3806 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003807 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00003808 case ixgbe_phy_nl:
3809 if (hw->mac.type == ixgbe_mac_82598EB)
3810 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003811 default:
3812 return false;
3813 }
3814}
3815
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003816/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003817 * ixgbe_sfp_link_config - set up SFP+ link
3818 * @adapter: pointer to private adapter struct
3819 **/
3820static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3821{
Alexander Duyck70864002011-04-27 09:13:56 +00003822 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003823 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00003824 * is that an SFP was inserted/removed after the reset
3825 * but before SFP detection was enabled. As such the best
3826 * solution is to just start searching as soon as we start
3827 */
3828 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3829 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003830
Alexander Duyck70864002011-04-27 09:13:56 +00003831 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003832}
3833
3834/**
3835 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003836 * @hw: pointer to private hardware struct
3837 *
3838 * Returns 0 on success, negative on failure
3839 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003840static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003841{
3842 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003843 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003844 u32 ret = IXGBE_ERR_LINK_SETUP;
3845
3846 if (hw->mac.ops.check_link)
3847 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3848
3849 if (ret)
3850 goto link_cfg_out;
3851
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003852 autoneg = hw->phy.autoneg_advertised;
3853 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003854 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3855 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003856 if (ret)
3857 goto link_cfg_out;
3858
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003859 if (hw->mac.ops.setup_link)
3860 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003861link_cfg_out:
3862 return ret;
3863}
3864
Alexander Duycka34bcff2010-08-19 13:39:20 +00003865static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003866{
Auke Kok9a799d72007-09-15 14:07:45 -07003867 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003868 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003869
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003870 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003871 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3872 IXGBE_GPIE_OCD;
3873 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003874 /*
3875 * use EIAM to auto-mask when MSI-X interrupt is asserted
3876 * this saves a register write for every interrupt
3877 */
3878 switch (hw->mac.type) {
3879 case ixgbe_mac_82598EB:
3880 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3881 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003882 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003883 case ixgbe_mac_X540:
3884 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003885 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3886 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3887 break;
3888 }
3889 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003890 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3891 * specifically only auto mask tx and rx interrupts */
3892 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003893 }
3894
Alexander Duycka34bcff2010-08-19 13:39:20 +00003895 /* XXX: to interrupt immediately for EICS writes, enable this */
3896 /* gpie |= IXGBE_GPIE_EIMEN; */
3897
3898 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3899 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
3900 gpie |= IXGBE_GPIE_VTMODE_64;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003901 }
3902
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003903 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00003904 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
3905 switch (adapter->hw.mac.type) {
3906 case ixgbe_mac_82599EB:
3907 gpie |= IXGBE_SDP0_GPIEN;
3908 break;
3909 case ixgbe_mac_X540:
3910 gpie |= IXGBE_EIMS_TS;
3911 break;
3912 default:
3913 break;
3914 }
3915 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003916
Alexander Duycka34bcff2010-08-19 13:39:20 +00003917 /* Enable fan failure interrupt */
3918 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003919 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003920
Don Skidmore2698b202011-04-13 07:01:52 +00003921 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003922 gpie |= IXGBE_SDP1_GPIEN;
3923 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00003924 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00003925
3926 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3927}
3928
Alexander Duyckc7ccde02011-07-21 00:40:40 +00003929static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00003930{
3931 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003932 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003933 u32 ctrl_ext;
3934
3935 ixgbe_get_hw_control(adapter);
3936 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003937
Auke Kok9a799d72007-09-15 14:07:45 -07003938 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
3939 ixgbe_configure_msix(adapter);
3940 else
3941 ixgbe_configure_msi_and_legacy(adapter);
3942
Don Skidmorec6ecf392010-12-03 03:31:51 +00003943 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
3944 if (hw->mac.ops.enable_tx_laser &&
3945 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00003946 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00003947 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00003948 hw->mac.ops.enable_tx_laser(hw);
3949
Auke Kok9a799d72007-09-15 14:07:45 -07003950 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003951 ixgbe_napi_enable_all(adapter);
3952
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003953 if (ixgbe_is_sfp(hw)) {
3954 ixgbe_sfp_link_config(adapter);
3955 } else {
3956 err = ixgbe_non_sfp_link_config(hw);
3957 if (err)
3958 e_err(probe, "link_config FAILED %d\n", err);
3959 }
3960
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003961 /* clear any pending interrupts, may auto mask */
3962 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003963 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07003964
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003965 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00003966 * If this adapter has a fan, check to see if we had a failure
3967 * before we enabled the interrupt.
3968 */
3969 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
3970 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3971 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00003972 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00003973 }
3974
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003975 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003976 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003977
Auke Kok9a799d72007-09-15 14:07:45 -07003978 /* bring the link up in the watchdog, this could race with our first
3979 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003980 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3981 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00003982 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00003983
3984 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
3985 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
3986 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
3987 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07003988}
3989
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003990void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
3991{
3992 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00003993 /* put off any impending NetWatchDogTimeout */
3994 adapter->netdev->trans_start = jiffies;
3995
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003996 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00003997 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003998 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00003999 /*
4000 * If SR-IOV enabled then wait a bit before bringing the adapter
4001 * back up to give the VFs time to respond to the reset. The
4002 * two second wait is based upon the watchdog timer cycle in
4003 * the VF driver.
4004 */
4005 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4006 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004007 ixgbe_up(adapter);
4008 clear_bit(__IXGBE_RESETTING, &adapter->state);
4009}
4010
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004011void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004012{
4013 /* hardware has been reset, we need to reload some things */
4014 ixgbe_configure(adapter);
4015
Alexander Duyckc7ccde02011-07-21 00:40:40 +00004016 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004017}
4018
4019void ixgbe_reset(struct ixgbe_adapter *adapter)
4020{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004021 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004022 int err;
4023
Alexander Duyck70864002011-04-27 09:13:56 +00004024 /* lock SFP init bit to prevent race conditions with the watchdog */
4025 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4026 usleep_range(1000, 2000);
4027
4028 /* clear all SFP and link config related flags while holding SFP_INIT */
4029 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4030 IXGBE_FLAG2_SFP_NEEDS_RESET);
4031 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4032
Don Skidmore8ca783a2009-05-26 20:40:47 -07004033 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004034 switch (err) {
4035 case 0:
4036 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004037 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004038 break;
4039 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004040 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004041 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004042 case IXGBE_ERR_EEPROM_VERSION:
4043 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004044 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00004045 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00004046 "your hardware. If you are experiencing problems "
4047 "please contact your Intel or hardware "
4048 "representative who provided you with this "
4049 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004050 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004051 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004052 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004053 }
Auke Kok9a799d72007-09-15 14:07:45 -07004054
Alexander Duyck70864002011-04-27 09:13:56 +00004055 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4056
Auke Kok9a799d72007-09-15 14:07:45 -07004057 /* reprogram the RAR[0] in case user changed it. */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004058 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
4059 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07004060}
4061
Auke Kok9a799d72007-09-15 14:07:45 -07004062/**
4063 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004064 * @rx_ring: ring to free buffers from
4065 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004066static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004067{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004068 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004069 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004070 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004071
Alexander Duyck84418e32010-08-19 13:40:54 +00004072 /* ring already cleared, nothing to do */
4073 if (!rx_ring->rx_buffer_info)
4074 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004075
Alexander Duyck84418e32010-08-19 13:40:54 +00004076 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004077 for (i = 0; i < rx_ring->count; i++) {
4078 struct ixgbe_rx_buffer *rx_buffer_info;
4079
4080 rx_buffer_info = &rx_ring->rx_buffer_info[i];
4081 if (rx_buffer_info->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004082 dma_unmap_single(rx_ring->dev, rx_buffer_info->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00004083 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00004084 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07004085 rx_buffer_info->dma = 0;
4086 }
4087 if (rx_buffer_info->skb) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00004088 struct sk_buff *skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07004089 rx_buffer_info->skb = NULL;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00004090 /* We need to clean up RSC frag lists */
4091 skb = ixgbe_merge_active_tail(skb);
4092 ixgbe_close_active_frag_list(skb);
4093 if (IXGBE_CB(skb)->delay_unmap) {
4094 dma_unmap_single(dev,
4095 IXGBE_CB(skb)->dma,
4096 rx_ring->rx_buf_len,
4097 DMA_FROM_DEVICE);
4098 IXGBE_CB(skb)->dma = 0;
4099 IXGBE_CB(skb)->delay_unmap = false;
4100 }
4101 dev_kfree_skb(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07004102 }
4103 if (!rx_buffer_info->page)
4104 continue;
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00004105 if (rx_buffer_info->page_dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004106 dma_unmap_page(dev, rx_buffer_info->page_dma,
Nick Nunley1b507732010-04-27 13:10:27 +00004107 PAGE_SIZE / 2, DMA_FROM_DEVICE);
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00004108 rx_buffer_info->page_dma = 0;
4109 }
Auke Kok9a799d72007-09-15 14:07:45 -07004110 put_page(rx_buffer_info->page);
4111 rx_buffer_info->page = NULL;
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07004112 rx_buffer_info->page_offset = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004113 }
4114
4115 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4116 memset(rx_ring->rx_buffer_info, 0, size);
4117
4118 /* Zero out the descriptor ring */
4119 memset(rx_ring->desc, 0, rx_ring->size);
4120
4121 rx_ring->next_to_clean = 0;
4122 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004123}
4124
4125/**
4126 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004127 * @tx_ring: ring to be cleaned
4128 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004129static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004130{
4131 struct ixgbe_tx_buffer *tx_buffer_info;
4132 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004133 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004134
Alexander Duyck84418e32010-08-19 13:40:54 +00004135 /* ring already cleared, nothing to do */
4136 if (!tx_ring->tx_buffer_info)
4137 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004138
Alexander Duyck84418e32010-08-19 13:40:54 +00004139 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004140 for (i = 0; i < tx_ring->count; i++) {
4141 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004142 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004143 }
4144
4145 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4146 memset(tx_ring->tx_buffer_info, 0, size);
4147
4148 /* Zero out the descriptor ring */
4149 memset(tx_ring->desc, 0, tx_ring->size);
4150
4151 tx_ring->next_to_use = 0;
4152 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004153}
4154
4155/**
Auke Kok9a799d72007-09-15 14:07:45 -07004156 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4157 * @adapter: board private structure
4158 **/
4159static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4160{
4161 int i;
4162
4163 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004164 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004165}
4166
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004167/**
4168 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4169 * @adapter: board private structure
4170 **/
4171static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4172{
4173 int i;
4174
4175 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004176 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004177}
4178
Alexander Duycke4911d52011-05-11 07:18:52 +00004179static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4180{
4181 struct hlist_node *node, *node2;
4182 struct ixgbe_fdir_filter *filter;
4183
4184 spin_lock(&adapter->fdir_perfect_lock);
4185
4186 hlist_for_each_entry_safe(filter, node, node2,
4187 &adapter->fdir_filter_list, fdir_node) {
4188 hlist_del(&filter->fdir_node);
4189 kfree(filter);
4190 }
4191 adapter->fdir_filter_count = 0;
4192
4193 spin_unlock(&adapter->fdir_perfect_lock);
4194}
4195
Auke Kok9a799d72007-09-15 14:07:45 -07004196void ixgbe_down(struct ixgbe_adapter *adapter)
4197{
4198 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004199 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004200 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004201 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004202
4203 /* signal that we are down to the interrupt handler */
4204 set_bit(__IXGBE_DOWN, &adapter->state);
4205
4206 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004207 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4208 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004209
Yi Zou2d39d572011-01-06 14:29:56 +00004210 /* disable all enabled rx queues */
4211 for (i = 0; i < adapter->num_rx_queues; i++)
4212 /* this call also flushes the previous write */
4213 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4214
Don Skidmore032b4322011-03-18 09:32:53 +00004215 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004216
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004217 netif_tx_stop_all_queues(netdev);
4218
Alexander Duyck70864002011-04-27 09:13:56 +00004219 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004220 netif_carrier_off(netdev);
4221 netif_tx_disable(netdev);
4222
4223 ixgbe_irq_disable(adapter);
4224
4225 ixgbe_napi_disable_all(adapter);
4226
Alexander Duyckd034acf2011-04-27 09:25:34 +00004227 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4228 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004229 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4230
4231 del_timer_sync(&adapter->service_timer);
4232
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004233 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004234 /* Clear EITR Select mapping */
4235 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4236
4237 /* Mark all the VFs as inactive */
4238 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004239 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004240
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004241 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004242 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004243
Auke Kok9a799d72007-09-15 14:07:45 -07004244 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004245 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004246 }
4247
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004248 /* disable transmits in the hardware now that interrupts are off */
4249 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004250 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004251 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004252 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004253
4254 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004255 switch (hw->mac.type) {
4256 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004257 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004258 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004259 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4260 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004261 break;
4262 default:
4263 break;
4264 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004265
Paul Larson6f4a0e42008-06-24 17:00:56 -07004266 if (!pci_channel_offline(adapter->pdev))
4267 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004268
4269 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4270 if (hw->mac.ops.disable_tx_laser &&
4271 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004272 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004273 (hw->mac.type == ixgbe_mac_82599EB))))
4274 hw->mac.ops.disable_tx_laser(hw);
4275
Auke Kok9a799d72007-09-15 14:07:45 -07004276 ixgbe_clean_all_tx_rings(adapter);
4277 ixgbe_clean_all_rx_rings(adapter);
4278
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004279#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004280 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004281 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004282#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004283}
4284
Auke Kok9a799d72007-09-15 14:07:45 -07004285/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004286 * ixgbe_poll - NAPI Rx polling callback
4287 * @napi: structure for representing this polling device
4288 * @budget: how many packets driver is allowed to clean
4289 *
4290 * This function is used for legacy and MSI, NAPI mode
Auke Kok9a799d72007-09-15 14:07:45 -07004291 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004292static int ixgbe_poll(struct napi_struct *napi, int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07004293{
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004294 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00004295 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004296 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004297 struct ixgbe_ring *ring;
4298 int per_ring_budget;
4299 bool clean_complete = true;
Auke Kok9a799d72007-09-15 14:07:45 -07004300
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004301#ifdef CONFIG_IXGBE_DCA
Alexander Duyck33cf09c2010-11-16 19:26:55 -08004302 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
4303 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08004304#endif
4305
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004306 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
4307 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004308
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004309 /* attempt to distribute budget to each queue fairly, but don't allow
4310 * the budget to go below 1 because we'll exit polling */
4311 if (q_vector->rx.count > 1)
4312 per_ring_budget = max(budget/q_vector->rx.count, 1);
4313 else
4314 per_ring_budget = budget;
David S. Millerd2c7ddd2008-01-15 22:43:24 -08004315
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004316 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
4317 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
4318 per_ring_budget);
4319
4320 /* If all work not completed, return budget and keep polling */
4321 if (!clean_complete)
4322 return budget;
4323
4324 /* all work done, exit the polling mode */
4325 napi_complete(napi);
4326 if (adapter->rx_itr_setting & 1)
4327 ixgbe_set_itr(q_vector);
4328 if (!test_bit(__IXGBE_DOWN, &adapter->state))
4329 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
4330
4331 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004332}
4333
4334/**
4335 * ixgbe_tx_timeout - Respond to a Tx Hang
4336 * @netdev: network interface device structure
4337 **/
4338static void ixgbe_tx_timeout(struct net_device *netdev)
4339{
4340 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4341
4342 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004343 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004344}
4345
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004346/**
4347 * ixgbe_set_rss_queues: Allocate queues for RSS
4348 * @adapter: board private structure to initialize
4349 *
4350 * This is our "base" multiqueue mode. RSS (Receive Side Scaling) will try
4351 * to allocate one Rx queue per CPU, and if available, one Tx queue per CPU.
4352 *
4353 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004354static inline bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter)
4355{
4356 bool ret = false;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004357 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_RSS];
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004358
4359 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004360 f->mask = 0xF;
4361 adapter->num_rx_queues = f->indices;
4362 adapter->num_tx_queues = f->indices;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004363 ret = true;
4364 } else {
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004365 ret = false;
4366 }
4367
4368 return ret;
4369}
4370
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004371/**
4372 * ixgbe_set_fdir_queues: Allocate queues for Flow Director
4373 * @adapter: board private structure to initialize
4374 *
4375 * Flow Director is an advanced Rx filter, attempting to get Rx flows back
4376 * to the original CPU that initiated the Tx session. This runs in addition
4377 * to RSS, so if a packet doesn't match an FDIR filter, we can still spread the
4378 * Rx load across CPUs using RSS.
4379 *
4380 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004381static inline bool ixgbe_set_fdir_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004382{
4383 bool ret = false;
4384 struct ixgbe_ring_feature *f_fdir = &adapter->ring_feature[RING_F_FDIR];
4385
4386 f_fdir->indices = min((int)num_online_cpus(), f_fdir->indices);
4387 f_fdir->mask = 0;
4388
Alexander Duyck24ddd962012-02-10 02:08:32 +00004389 /*
4390 * Use RSS in addition to Flow Director to ensure the best
4391 * distribution of flows across cores, even when an FDIR flow
4392 * isn't matched.
4393 */
Alexander Duyck03ecf912011-05-20 07:36:17 +00004394 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4395 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004396 adapter->num_tx_queues = f_fdir->indices;
4397 adapter->num_rx_queues = f_fdir->indices;
4398 ret = true;
4399 } else {
4400 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004401 }
4402 return ret;
4403}
4404
Yi Zou0331a832009-05-17 12:33:52 +00004405#ifdef IXGBE_FCOE
4406/**
4407 * ixgbe_set_fcoe_queues: Allocate queues for Fiber Channel over Ethernet (FCoE)
4408 * @adapter: board private structure to initialize
4409 *
4410 * FCoE RX FCRETA can use up to 8 rx queues for up to 8 different exchanges.
4411 * The ring feature mask is not used as a mask for FCoE, as it can take any 8
4412 * rx queues out of the max number of rx queues, instead, it is used as the
4413 * index of the first rx queue used by FCoE.
4414 *
4415 **/
4416static inline bool ixgbe_set_fcoe_queues(struct ixgbe_adapter *adapter)
4417{
Yi Zou0331a832009-05-17 12:33:52 +00004418 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
4419
John Fastabende5b64632011-03-08 03:44:52 +00004420 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4421 return false;
4422
John Fastabende901acd2011-04-26 07:26:08 +00004423 f->indices = min((int)num_online_cpus(), f->indices);
John Fastabende5b64632011-03-08 03:44:52 +00004424
John Fastabende901acd2011-04-26 07:26:08 +00004425 adapter->num_rx_queues = 1;
4426 adapter->num_tx_queues = 1;
John Fastabende5b64632011-03-08 03:44:52 +00004427
John Fastabende901acd2011-04-26 07:26:08 +00004428 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
4429 e_info(probe, "FCoE enabled with RSS\n");
Alexander Duyck03ecf912011-05-20 07:36:17 +00004430 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
John Fastabende901acd2011-04-26 07:26:08 +00004431 ixgbe_set_fdir_queues(adapter);
4432 else
4433 ixgbe_set_rss_queues(adapter);
Yi Zou0331a832009-05-17 12:33:52 +00004434 }
Alexander Duyck03ecf912011-05-20 07:36:17 +00004435
John Fastabende901acd2011-04-26 07:26:08 +00004436 /* adding FCoE rx rings to the end */
4437 f->mask = adapter->num_rx_queues;
4438 adapter->num_rx_queues += f->indices;
4439 adapter->num_tx_queues += f->indices;
Yi Zou0331a832009-05-17 12:33:52 +00004440
John Fastabende5b64632011-03-08 03:44:52 +00004441 return true;
4442}
4443#endif /* IXGBE_FCOE */
4444
John Fastabende901acd2011-04-26 07:26:08 +00004445/* Artificial max queue cap per traffic class in DCB mode */
4446#define DCB_QUEUE_CAP 8
4447
John Fastabende5b64632011-03-08 03:44:52 +00004448#ifdef CONFIG_IXGBE_DCB
4449static inline bool ixgbe_set_dcb_queues(struct ixgbe_adapter *adapter)
4450{
John Fastabende901acd2011-04-26 07:26:08 +00004451 int per_tc_q, q, i, offset = 0;
4452 struct net_device *dev = adapter->netdev;
4453 int tcs = netdev_get_num_tc(dev);
John Fastabende5b64632011-03-08 03:44:52 +00004454
John Fastabende901acd2011-04-26 07:26:08 +00004455 if (!tcs)
4456 return false;
John Fastabende5b64632011-03-08 03:44:52 +00004457
John Fastabende901acd2011-04-26 07:26:08 +00004458 /* Map queue offset and counts onto allocated tx queues */
4459 per_tc_q = min(dev->num_tx_queues / tcs, (unsigned int)DCB_QUEUE_CAP);
4460 q = min((int)num_online_cpus(), per_tc_q);
John Fastabend8b1c0b22011-05-03 02:26:48 +00004461
John Fastabend8b1c0b22011-05-03 02:26:48 +00004462 for (i = 0; i < tcs; i++) {
John Fastabende901acd2011-04-26 07:26:08 +00004463 netdev_set_tc_queue(dev, i, q, offset);
4464 offset += q;
John Fastabende5b64632011-03-08 03:44:52 +00004465 }
4466
John Fastabende901acd2011-04-26 07:26:08 +00004467 adapter->num_tx_queues = q * tcs;
4468 adapter->num_rx_queues = q * tcs;
John Fastabende5b64632011-03-08 03:44:52 +00004469
4470#ifdef IXGBE_FCOE
John Fastabende901acd2011-04-26 07:26:08 +00004471 /* FCoE enabled queues require special configuration indexed
4472 * by feature specific indices and mask. Here we map FCoE
4473 * indices onto the DCB queue pairs allowing FCoE to own
4474 * configuration later.
John Fastabende5b64632011-03-08 03:44:52 +00004475 */
John Fastabende901acd2011-04-26 07:26:08 +00004476 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
4477 int tc;
4478 struct ixgbe_ring_feature *f =
4479 &adapter->ring_feature[RING_F_FCOE];
4480
4481 tc = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
4482 f->indices = dev->tc_to_txq[tc].count;
4483 f->mask = dev->tc_to_txq[tc].offset;
4484 }
John Fastabende5b64632011-03-08 03:44:52 +00004485#endif
4486
John Fastabende901acd2011-04-26 07:26:08 +00004487 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004488}
John Fastabende5b64632011-03-08 03:44:52 +00004489#endif
Yi Zou0331a832009-05-17 12:33:52 +00004490
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004491/**
4492 * ixgbe_set_sriov_queues: Allocate queues for IOV use
4493 * @adapter: board private structure to initialize
4494 *
4495 * IOV doesn't actually use anything, so just NAK the
4496 * request for now and let the other queue routines
4497 * figure out what to do.
4498 */
4499static inline bool ixgbe_set_sriov_queues(struct ixgbe_adapter *adapter)
4500{
4501 return false;
4502}
4503
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004504/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004505 * ixgbe_set_num_queues: Allocate queues for device, feature dependent
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004506 * @adapter: board private structure to initialize
4507 *
4508 * This is the top level queue allocation routine. The order here is very
4509 * important, starting with the "most" number of features turned on at once,
4510 * and ending with the smallest set of features. This way large combinations
4511 * can be allocated if they're turned on, and smaller combinations are the
4512 * fallthrough conditions.
4513 *
4514 **/
Ben Hutchings847f53f2010-09-27 08:28:56 +00004515static int ixgbe_set_num_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004516{
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004517 /* Start with base case */
4518 adapter->num_rx_queues = 1;
4519 adapter->num_tx_queues = 1;
4520 adapter->num_rx_pools = adapter->num_rx_queues;
4521 adapter->num_rx_queues_per_pool = 1;
4522
4523 if (ixgbe_set_sriov_queues(adapter))
Ben Hutchings847f53f2010-09-27 08:28:56 +00004524 goto done;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004525
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004526#ifdef CONFIG_IXGBE_DCB
4527 if (ixgbe_set_dcb_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004528 goto done;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004529
4530#endif
John Fastabende5b64632011-03-08 03:44:52 +00004531#ifdef IXGBE_FCOE
4532 if (ixgbe_set_fcoe_queues(adapter))
4533 goto done;
4534
4535#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004536 if (ixgbe_set_fdir_queues(adapter))
4537 goto done;
4538
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004539 if (ixgbe_set_rss_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004540 goto done;
4541
4542 /* fallback to base case */
4543 adapter->num_rx_queues = 1;
4544 adapter->num_tx_queues = 1;
4545
4546done:
Yi Zou9d837ea2012-01-07 08:39:50 +00004547 if ((adapter->netdev->reg_state == NETREG_UNREGISTERED) ||
4548 (adapter->netdev->reg_state == NETREG_UNREGISTERING))
4549 return 0;
4550
Ben Hutchings847f53f2010-09-27 08:28:56 +00004551 /* Notify the stack of the (possibly) reduced queue counts. */
John Fastabendf0796d52010-07-01 13:21:57 +00004552 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
Ben Hutchings847f53f2010-09-27 08:28:56 +00004553 return netif_set_real_num_rx_queues(adapter->netdev,
4554 adapter->num_rx_queues);
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004555}
4556
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004557static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00004558 int vectors)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004559{
4560 int err, vector_threshold;
4561
4562 /* We'll want at least 3 (vector_threshold):
4563 * 1) TxQ[0] Cleanup
4564 * 2) RxQ[0] Cleanup
4565 * 3) Other (Link Status Change, etc.)
4566 * 4) TCP Timer (optional)
4567 */
4568 vector_threshold = MIN_MSIX_COUNT;
4569
Alexander Duyck24ddd962012-02-10 02:08:32 +00004570 /*
4571 * The more we get, the more we will assign to Tx/Rx Cleanup
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004572 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
4573 * Right now, we simply care about how many we'll get; we'll
4574 * set them up later while requesting irq's.
4575 */
4576 while (vectors >= vector_threshold) {
4577 err = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Joe Perchese8e9f692010-09-07 21:34:53 +00004578 vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004579 if (!err) /* Success in acquiring all requested vectors. */
4580 break;
4581 else if (err < 0)
4582 vectors = 0; /* Nasty failure, quit now */
4583 else /* err == number of vectors we should try again with */
4584 vectors = err;
4585 }
4586
4587 if (vectors < vector_threshold) {
4588 /* Can't allocate enough MSI-X interrupts? Oh well.
4589 * This just means we'll go with either a single MSI
4590 * vector or fall back to legacy interrupts.
4591 */
Emil Tantilov849c4542010-06-03 16:53:41 +00004592 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4593 "Unable to allocate MSI-X interrupts\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004594 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4595 kfree(adapter->msix_entries);
4596 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004597 } else {
4598 adapter->flags |= IXGBE_FLAG_MSIX_ENABLED; /* Woot! */
Peter P Waskiewicz Jreb7f1392009-02-01 01:18:58 -08004599 /*
4600 * Adjust for only the vectors we'll use, which is minimum
4601 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
4602 * vectors we were allocated.
4603 */
4604 adapter->num_msix_vectors = min(vectors,
Joe Perchese8e9f692010-09-07 21:34:53 +00004605 adapter->max_msix_q_vectors + NON_Q_VECTORS);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004606 }
4607}
4608
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004609/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004610 * ixgbe_cache_ring_rss - Descriptor ring to register mapping for RSS
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004611 * @adapter: board private structure to initialize
4612 *
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004613 * Cache the descriptor ring offsets for RSS to the assigned rings.
4614 *
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004615 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004616static inline bool ixgbe_cache_ring_rss(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004617{
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004618 int i;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004619
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004620 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
4621 return false;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004622
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004623 for (i = 0; i < adapter->num_rx_queues; i++)
4624 adapter->rx_ring[i]->reg_idx = i;
4625 for (i = 0; i < adapter->num_tx_queues; i++)
4626 adapter->tx_ring[i]->reg_idx = i;
4627
4628 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004629}
4630
4631#ifdef CONFIG_IXGBE_DCB
John Fastabende5b64632011-03-08 03:44:52 +00004632
4633/* ixgbe_get_first_reg_idx - Return first register index associated with ring */
John Fastabendb32c8dc2011-04-12 02:44:55 +00004634static void ixgbe_get_first_reg_idx(struct ixgbe_adapter *adapter, u8 tc,
4635 unsigned int *tx, unsigned int *rx)
John Fastabende5b64632011-03-08 03:44:52 +00004636{
4637 struct net_device *dev = adapter->netdev;
4638 struct ixgbe_hw *hw = &adapter->hw;
4639 u8 num_tcs = netdev_get_num_tc(dev);
4640
4641 *tx = 0;
4642 *rx = 0;
4643
4644 switch (hw->mac.type) {
4645 case ixgbe_mac_82598EB:
John Fastabendaba70d52011-04-26 07:26:14 +00004646 *tx = tc << 2;
4647 *rx = tc << 3;
John Fastabende5b64632011-03-08 03:44:52 +00004648 break;
4649 case ixgbe_mac_82599EB:
4650 case ixgbe_mac_X540:
John Fastabend4fa2e0e2011-07-18 22:38:25 +00004651 if (num_tcs > 4) {
John Fastabende5b64632011-03-08 03:44:52 +00004652 if (tc < 3) {
4653 *tx = tc << 5;
4654 *rx = tc << 4;
4655 } else if (tc < 5) {
4656 *tx = ((tc + 2) << 4);
4657 *rx = tc << 4;
4658 } else if (tc < num_tcs) {
4659 *tx = ((tc + 8) << 3);
4660 *rx = tc << 4;
4661 }
John Fastabend4fa2e0e2011-07-18 22:38:25 +00004662 } else {
John Fastabende5b64632011-03-08 03:44:52 +00004663 *rx = tc << 5;
4664 switch (tc) {
4665 case 0:
4666 *tx = 0;
4667 break;
4668 case 1:
4669 *tx = 64;
4670 break;
4671 case 2:
4672 *tx = 96;
4673 break;
4674 case 3:
4675 *tx = 112;
4676 break;
4677 default:
4678 break;
4679 }
4680 }
4681 break;
4682 default:
4683 break;
4684 }
4685}
4686
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004687/**
4688 * ixgbe_cache_ring_dcb - Descriptor ring to register mapping for DCB
4689 * @adapter: board private structure to initialize
4690 *
4691 * Cache the descriptor ring offsets for DCB to the assigned rings.
4692 *
4693 **/
4694static inline bool ixgbe_cache_ring_dcb(struct ixgbe_adapter *adapter)
4695{
John Fastabende5b64632011-03-08 03:44:52 +00004696 struct net_device *dev = adapter->netdev;
4697 int i, j, k;
4698 u8 num_tcs = netdev_get_num_tc(dev);
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004699
John Fastabend8b1c0b22011-05-03 02:26:48 +00004700 if (!num_tcs)
Alexander Duyckbd508172010-11-16 19:27:03 -08004701 return false;
4702
John Fastabende5b64632011-03-08 03:44:52 +00004703 for (i = 0, k = 0; i < num_tcs; i++) {
4704 unsigned int tx_s, rx_s;
4705 u16 count = dev->tc_to_txq[i].count;
4706
4707 ixgbe_get_first_reg_idx(adapter, i, &tx_s, &rx_s);
4708 for (j = 0; j < count; j++, k++) {
4709 adapter->tx_ring[k]->reg_idx = tx_s + j;
4710 adapter->rx_ring[k]->reg_idx = rx_s + j;
4711 adapter->tx_ring[k]->dcb_tc = i;
4712 adapter->rx_ring[k]->dcb_tc = i;
Alexander Duyckbd508172010-11-16 19:27:03 -08004713 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004714 }
John Fastabende5b64632011-03-08 03:44:52 +00004715
4716 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004717}
4718#endif
4719
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004720/**
4721 * ixgbe_cache_ring_fdir - Descriptor ring to register mapping for Flow Director
4722 * @adapter: board private structure to initialize
4723 *
4724 * Cache the descriptor ring offsets for Flow Director to the assigned rings.
4725 *
4726 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004727static inline bool ixgbe_cache_ring_fdir(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004728{
4729 int i;
4730 bool ret = false;
4731
Alexander Duyck03ecf912011-05-20 07:36:17 +00004732 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4733 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004734 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004735 adapter->rx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004736 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004737 adapter->tx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004738 ret = true;
4739 }
4740
4741 return ret;
4742}
4743
Yi Zou0331a832009-05-17 12:33:52 +00004744#ifdef IXGBE_FCOE
4745/**
4746 * ixgbe_cache_ring_fcoe - Descriptor ring to register mapping for the FCoE
4747 * @adapter: board private structure to initialize
4748 *
4749 * Cache the descriptor ring offsets for FCoE mode to the assigned rings.
4750 *
4751 */
4752static inline bool ixgbe_cache_ring_fcoe(struct ixgbe_adapter *adapter)
4753{
Yi Zou0331a832009-05-17 12:33:52 +00004754 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004755 int i;
4756 u8 fcoe_rx_i = 0, fcoe_tx_i = 0;
Yi Zou0331a832009-05-17 12:33:52 +00004757
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004758 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4759 return false;
4760
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004761 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Alexander Duyck03ecf912011-05-20 07:36:17 +00004762 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004763 ixgbe_cache_ring_fdir(adapter);
4764 else
4765 ixgbe_cache_ring_rss(adapter);
4766
4767 fcoe_rx_i = f->mask;
4768 fcoe_tx_i = f->mask;
4769 }
4770 for (i = 0; i < f->indices; i++, fcoe_rx_i++, fcoe_tx_i++) {
4771 adapter->rx_ring[f->mask + i]->reg_idx = fcoe_rx_i;
4772 adapter->tx_ring[f->mask + i]->reg_idx = fcoe_tx_i;
4773 }
4774 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004775}
4776
4777#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004778/**
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004779 * ixgbe_cache_ring_sriov - Descriptor ring to register mapping for sriov
4780 * @adapter: board private structure to initialize
4781 *
4782 * SR-IOV doesn't use any descriptor rings but changes the default if
4783 * no other mapping is used.
4784 *
4785 */
4786static inline bool ixgbe_cache_ring_sriov(struct ixgbe_adapter *adapter)
4787{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004788 adapter->rx_ring[0]->reg_idx = adapter->num_vfs * 2;
4789 adapter->tx_ring[0]->reg_idx = adapter->num_vfs * 2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004790 if (adapter->num_vfs)
4791 return true;
4792 else
4793 return false;
4794}
4795
4796/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004797 * ixgbe_cache_ring_register - Descriptor ring to register mapping
4798 * @adapter: board private structure to initialize
4799 *
4800 * Once we know the feature-set enabled for the device, we'll cache
4801 * the register offset the descriptor ring is assigned to.
4802 *
4803 * Note, the order the various feature calls is important. It must start with
4804 * the "most" features enabled at the same time, then trickle down to the
4805 * least amount of features turned on at once.
4806 **/
4807static void ixgbe_cache_ring_register(struct ixgbe_adapter *adapter)
4808{
4809 /* start with default case */
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004810 adapter->rx_ring[0]->reg_idx = 0;
4811 adapter->tx_ring[0]->reg_idx = 0;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004812
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004813 if (ixgbe_cache_ring_sriov(adapter))
4814 return;
4815
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004816#ifdef CONFIG_IXGBE_DCB
4817 if (ixgbe_cache_ring_dcb(adapter))
4818 return;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004819#endif
John Fastabende5b64632011-03-08 03:44:52 +00004820
4821#ifdef IXGBE_FCOE
4822 if (ixgbe_cache_ring_fcoe(adapter))
4823 return;
4824#endif /* IXGBE_FCOE */
4825
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004826 if (ixgbe_cache_ring_fdir(adapter))
4827 return;
4828
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004829 if (ixgbe_cache_ring_rss(adapter))
4830 return;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004831}
4832
Auke Kok9a799d72007-09-15 14:07:45 -07004833/**
4834 * ixgbe_alloc_queues - Allocate memory for all rings
4835 * @adapter: board private structure to initialize
4836 *
4837 * We allocate one ring per queue at run-time since we don't know the
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004838 * number of queues at compile-time. The polling_netdev array is
4839 * intended for Multiqueue, but should work fine with a single queue.
Auke Kok9a799d72007-09-15 14:07:45 -07004840 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004841static int ixgbe_alloc_queues(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004842{
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004843 int rx = 0, tx = 0, nid = adapter->node;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004844
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004845 if (nid < 0 || !node_online(nid))
4846 nid = first_online_node;
4847
4848 for (; tx < adapter->num_tx_queues; tx++) {
4849 struct ixgbe_ring *ring;
4850
4851 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004852 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004853 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004854 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004855 goto err_allocation;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004856 ring->count = adapter->tx_ring_count;
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004857 ring->queue_index = tx;
4858 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004859 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004860 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004861
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004862 adapter->tx_ring[tx] = ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004863 }
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004864
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004865 for (; rx < adapter->num_rx_queues; rx++) {
4866 struct ixgbe_ring *ring;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004867
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004868 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004869 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004870 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004871 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004872 goto err_allocation;
4873 ring->count = adapter->rx_ring_count;
4874 ring->queue_index = rx;
4875 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004876 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004877 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004878
Alexander Duyck8a0da212012-01-31 02:59:49 +00004879 /*
4880 * 82599 errata, UDP frames with a 0 checksum can be marked as
4881 * checksum errors.
4882 */
4883 if (adapter->hw.mac.type == ixgbe_mac_82599EB)
4884 set_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state);
4885
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004886 adapter->rx_ring[rx] = ring;
Auke Kok9a799d72007-09-15 14:07:45 -07004887 }
4888
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004889 ixgbe_cache_ring_register(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004890
4891 return 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004892
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004893err_allocation:
4894 while (tx)
4895 kfree(adapter->tx_ring[--tx]);
4896
4897 while (rx)
4898 kfree(adapter->rx_ring[--rx]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004899 return -ENOMEM;
4900}
4901
4902/**
4903 * ixgbe_set_interrupt_capability - set MSI-X or MSI if supported
4904 * @adapter: board private structure to initialize
4905 *
4906 * Attempt to configure the interrupts using the best available
4907 * capabilities of the hardware and the kernel.
4908 **/
Al Virofeea6a52008-11-27 15:34:07 -08004909static int ixgbe_set_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004910{
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004911 struct ixgbe_hw *hw = &adapter->hw;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004912 int err = 0;
4913 int vector, v_budget;
4914
4915 /*
4916 * It's easy to be greedy for MSI-X vectors, but it really
4917 * doesn't do us much good if we have a lot more vectors
4918 * than CPU's. So let's be conservative and only ask for
PJ Waskiewicz342bde12009-11-12 23:50:43 +00004919 * (roughly) the same number of vectors as there are CPU's.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004920 */
4921 v_budget = min(adapter->num_rx_queues + adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00004922 (int)num_online_cpus()) + NON_Q_VECTORS;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004923
4924 /*
4925 * At the same time, hardware can only support a maximum of
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004926 * hw.mac->max_msix_vectors vectors. With features
4927 * such as RSS and VMDq, we can easily surpass the number of Rx and Tx
4928 * descriptor queues supported by our device. Thus, we cap it off in
4929 * those rare cases where the cpu count also exceeds our vector limit.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004930 */
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004931 v_budget = min(v_budget, (int)hw->mac.max_msix_vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004932
4933 /* A failure in MSI-X entry allocation isn't fatal, but it does
4934 * mean we disable MSI-X capabilities of the adapter. */
4935 adapter->msix_entries = kcalloc(v_budget,
Joe Perchese8e9f692010-09-07 21:34:53 +00004936 sizeof(struct msix_entry), GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004937 if (adapter->msix_entries) {
4938 for (vector = 0; vector < v_budget; vector++)
4939 adapter->msix_entries[vector].entry = vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004940
Alexander Duyck7a921c92009-05-06 10:43:28 +00004941 ixgbe_acquire_msix_vectors(adapter, v_budget);
4942
4943 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4944 goto out;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004945 }
David S. Miller26d27842010-05-03 15:18:22 -07004946
Alexander Duyck7a921c92009-05-06 10:43:28 +00004947 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
4948 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
Alexander Duyck03ecf912011-05-20 07:36:17 +00004949 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck45b9f502011-01-06 14:29:59 +00004950 e_err(probe,
Alexander Duyck03ecf912011-05-20 07:36:17 +00004951 "ATR is not supported while multiple "
Alexander Duyck45b9f502011-01-06 14:29:59 +00004952 "queues are disabled. Disabling Flow Director\n");
4953 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004954 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004955 adapter->atr_sample_rate = 0;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004956 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4957 ixgbe_disable_sriov(adapter);
4958
Ben Hutchings847f53f2010-09-27 08:28:56 +00004959 err = ixgbe_set_num_queues(adapter);
4960 if (err)
4961 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004962
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004963 err = pci_enable_msi(adapter->pdev);
4964 if (!err) {
4965 adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
4966 } else {
Emil Tantilov849c4542010-06-03 16:53:41 +00004967 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4968 "Unable to allocate MSI interrupt, "
4969 "falling back to legacy. Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004970 /* reset err */
4971 err = 0;
4972 }
4973
4974out:
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004975 return err;
4976}
4977
Alexander Duyck7a921c92009-05-06 10:43:28 +00004978/**
4979 * ixgbe_alloc_q_vectors - Allocate memory for interrupt vectors
4980 * @adapter: board private structure to initialize
4981 *
4982 * We allocate one q_vector per queue interrupt. If allocation fails we
4983 * return -ENOMEM.
4984 **/
4985static int ixgbe_alloc_q_vectors(struct ixgbe_adapter *adapter)
4986{
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004987 int v_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004988 struct ixgbe_q_vector *q_vector;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004989
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004990 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00004991 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004992 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00004993 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004994
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004995 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004996 q_vector = kzalloc_node(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004997 GFP_KERNEL, adapter->node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004998 if (!q_vector)
4999 q_vector = kzalloc(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00005000 GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00005001 if (!q_vector)
5002 goto err_out;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00005003
Alexander Duyck7a921c92009-05-06 10:43:28 +00005004 q_vector->adapter = adapter;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00005005 q_vector->v_idx = v_idx;
5006
Alexander Duyck207867f2011-07-15 03:05:37 +00005007 /* Allocate the affinity_hint cpumask, configure the mask */
5008 if (!alloc_cpumask_var(&q_vector->affinity_mask, GFP_KERNEL))
5009 goto err_out;
5010 cpumask_set_cpu(v_idx, q_vector->affinity_mask);
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00005011 netif_napi_add(adapter->netdev, &q_vector->napi,
5012 ixgbe_poll, 64);
5013 adapter->q_vector[v_idx] = q_vector;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005014 }
5015
5016 return 0;
5017
5018err_out:
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00005019 while (v_idx) {
5020 v_idx--;
5021 q_vector = adapter->q_vector[v_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00005022 netif_napi_del(&q_vector->napi);
Alexander Duyck207867f2011-07-15 03:05:37 +00005023 free_cpumask_var(q_vector->affinity_mask);
Alexander Duyck7a921c92009-05-06 10:43:28 +00005024 kfree(q_vector);
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00005025 adapter->q_vector[v_idx] = NULL;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005026 }
5027 return -ENOMEM;
5028}
5029
5030/**
5031 * ixgbe_free_q_vectors - Free memory allocated for interrupt vectors
5032 * @adapter: board private structure to initialize
5033 *
5034 * This function frees the memory allocated to the q_vectors. In addition if
5035 * NAPI is enabled it will delete any references to the NAPI struct prior
5036 * to freeing the q_vector.
5037 **/
5038static void ixgbe_free_q_vectors(struct ixgbe_adapter *adapter)
5039{
Alexander Duyck207867f2011-07-15 03:05:37 +00005040 int v_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005041
Alexander Duyck91281fd2009-06-04 16:00:27 +00005042 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00005043 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck91281fd2009-06-04 16:00:27 +00005044 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00005045 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005046
Alexander Duyck207867f2011-07-15 03:05:37 +00005047 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
5048 struct ixgbe_q_vector *q_vector = adapter->q_vector[v_idx];
5049 adapter->q_vector[v_idx] = NULL;
Alexander Duyck91281fd2009-06-04 16:00:27 +00005050 netif_napi_del(&q_vector->napi);
Alexander Duyck207867f2011-07-15 03:05:37 +00005051 free_cpumask_var(q_vector->affinity_mask);
Alexander Duyck7a921c92009-05-06 10:43:28 +00005052 kfree(q_vector);
5053 }
5054}
5055
Don Skidmore7b25cdb2009-08-25 04:47:32 +00005056static void ixgbe_reset_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005057{
5058 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
5059 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
5060 pci_disable_msix(adapter->pdev);
5061 kfree(adapter->msix_entries);
5062 adapter->msix_entries = NULL;
5063 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
5064 adapter->flags &= ~IXGBE_FLAG_MSI_ENABLED;
5065 pci_disable_msi(adapter->pdev);
5066 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005067}
5068
5069/**
5070 * ixgbe_init_interrupt_scheme - Determine proper interrupt scheme
5071 * @adapter: board private structure to initialize
5072 *
5073 * We determine which interrupt scheme to use based on...
5074 * - Kernel support (MSI, MSI-X)
5075 * - which can be user-defined (via MODULE_PARAM)
5076 * - Hardware queue count (num_*_queues)
5077 * - defined by miscellaneous hardware support/features (RSS, etc.)
5078 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08005079int ixgbe_init_interrupt_scheme(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005080{
5081 int err;
5082
5083 /* Number of supported queues */
Ben Hutchings847f53f2010-09-27 08:28:56 +00005084 err = ixgbe_set_num_queues(adapter);
5085 if (err)
5086 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005087
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005088 err = ixgbe_set_interrupt_capability(adapter);
5089 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005090 e_dev_err("Unable to setup interrupt capabilities\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005091 goto err_set_interrupt;
5092 }
5093
Alexander Duyck7a921c92009-05-06 10:43:28 +00005094 err = ixgbe_alloc_q_vectors(adapter);
5095 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005096 e_dev_err("Unable to allocate memory for queue vectors\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00005097 goto err_alloc_q_vectors;
5098 }
5099
5100 err = ixgbe_alloc_queues(adapter);
5101 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005102 e_dev_err("Unable to allocate memory for queues\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00005103 goto err_alloc_queues;
5104 }
5105
Emil Tantilov849c4542010-06-03 16:53:41 +00005106 e_dev_info("Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
Emil Tantilov396e7992010-07-01 20:05:12 +00005107 (adapter->num_rx_queues > 1) ? "Enabled" : "Disabled",
5108 adapter->num_rx_queues, adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005109
5110 set_bit(__IXGBE_DOWN, &adapter->state);
5111
5112 return 0;
5113
Alexander Duyck7a921c92009-05-06 10:43:28 +00005114err_alloc_queues:
5115 ixgbe_free_q_vectors(adapter);
5116err_alloc_q_vectors:
5117 ixgbe_reset_interrupt_capability(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005118err_set_interrupt:
Alexander Duyck7a921c92009-05-06 10:43:28 +00005119 return err;
5120}
5121
5122/**
5123 * ixgbe_clear_interrupt_scheme - Clear the current interrupt scheme settings
5124 * @adapter: board private structure to clear interrupt scheme on
5125 *
5126 * We go through and clear interrupt specific resources and reset the structure
5127 * to pre-load conditions
5128 **/
5129void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter)
5130{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005131 int i;
5132
5133 for (i = 0; i < adapter->num_tx_queues; i++) {
5134 kfree(adapter->tx_ring[i]);
5135 adapter->tx_ring[i] = NULL;
5136 }
5137 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08005138 struct ixgbe_ring *ring = adapter->rx_ring[i];
5139
5140 /* ixgbe_get_stats64() might access this ring, we must wait
5141 * a grace period before freeing it.
5142 */
Lai Jiangshanbcec8b62011-03-18 11:57:21 +08005143 kfree_rcu(ring, rcu);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005144 adapter->rx_ring[i] = NULL;
5145 }
Alexander Duyck7a921c92009-05-06 10:43:28 +00005146
Don Skidmoreb8eb3a102010-12-01 20:54:53 +00005147 adapter->num_tx_queues = 0;
5148 adapter->num_rx_queues = 0;
5149
Alexander Duyck7a921c92009-05-06 10:43:28 +00005150 ixgbe_free_q_vectors(adapter);
5151 ixgbe_reset_interrupt_capability(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005152}
5153
5154/**
5155 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
5156 * @adapter: board private structure to initialize
5157 *
5158 * ixgbe_sw_init initializes the Adapter private data structure.
5159 * Fields are initialized based on PCI device information and
5160 * OS network device settings (MTU size).
5161 **/
5162static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
5163{
5164 struct ixgbe_hw *hw = &adapter->hw;
5165 struct pci_dev *pdev = adapter->pdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005166 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005167#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08005168 int j;
5169 struct tc_configuration *tc;
5170#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005171
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005172 /* PCI config space info */
5173
5174 hw->vendor_id = pdev->vendor;
5175 hw->device_id = pdev->device;
5176 hw->revision_id = pdev->revision;
5177 hw->subsystem_vendor_id = pdev->subsystem_vendor;
5178 hw->subsystem_device_id = pdev->subsystem_device;
5179
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005180 /* Set capability flags */
5181 rss = min(IXGBE_MAX_RSS_INDICES, (int)num_online_cpus());
5182 adapter->ring_feature[RING_F_RSS].indices = rss;
5183 adapter->flags |= IXGBE_FLAG_RSS_ENABLED;
Alexander Duyckbd508172010-11-16 19:27:03 -08005184 switch (hw->mac.type) {
5185 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00005186 if (hw->device_id == IXGBE_DEV_ID_82598AT)
5187 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005188 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08005189 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005190 case ixgbe_mac_X540:
Jacob Keller4f51bf72011-08-20 04:49:45 +00005191 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
5192 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005193 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00005194 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
5195 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07005196 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
5197 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00005198 /* Flow Director hash filters enabled */
5199 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
5200 adapter->atr_sample_rate = 20;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005201 adapter->ring_feature[RING_F_FDIR].indices =
Joe Perchese8e9f692010-09-07 21:34:53 +00005202 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00005203 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00005204#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00005205 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
5206 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5207 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou61a0f422009-12-03 11:32:22 +00005208#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00005209 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00005210 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00005211#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00005212#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005213 break;
5214 default:
5215 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00005216 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08005217
Alexander Duyck1fc5f032011-06-02 04:28:39 +00005218 /* n-tuple support exists, always init our spinlock */
5219 spin_lock_init(&adapter->fdir_perfect_lock);
5220
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005221#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00005222 switch (hw->mac.type) {
5223 case ixgbe_mac_X540:
5224 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
5225 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
5226 break;
5227 default:
5228 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
5229 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
5230 break;
5231 }
5232
Alexander Duyck2f90b862008-11-20 20:52:10 -08005233 /* Configure DCB traffic classes */
5234 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
5235 tc = &adapter->dcb_cfg.tc_config[j];
5236 tc->path[DCB_TX_CONFIG].bwg_id = 0;
5237 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
5238 tc->path[DCB_RX_CONFIG].bwg_id = 0;
5239 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
5240 tc->dcb_pfc = pfc_disabled;
5241 }
John Fastabend4de2a022011-09-27 03:52:01 +00005242
5243 /* Initialize default user to priority mapping, UPx->TC0 */
5244 tc = &adapter->dcb_cfg.tc_config[0];
5245 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
5246 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
5247
Alexander Duyck2f90b862008-11-20 20:52:10 -08005248 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
5249 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005250 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005251 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00005252 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005253 ixgbe_copy_dcb_cfg(&adapter->dcb_cfg, &adapter->temp_dcb_cfg,
John Fastabende5b64632011-03-08 03:44:52 +00005254 MAX_TRAFFIC_CLASS);
Alexander Duyck2f90b862008-11-20 20:52:10 -08005255
5256#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005257
5258 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005259 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005260 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005261#ifdef CONFIG_DCB
5262 adapter->last_lfc_mode = hw->fc.current_mode;
5263#endif
John Fastabend9da712d2011-08-23 03:14:22 +00005264 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005265 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5266 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00005267 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07005268
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005269 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005270 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005271 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005272
5273 /* set defaults for eitr in MegaBytes */
5274 adapter->eitr_low = 10;
5275 adapter->eitr_high = 20;
5276
5277 /* set default ring sizes */
5278 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5279 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5280
Alexander Duyckbd198052011-06-11 01:45:08 +00005281 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00005282 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00005283
Auke Kok9a799d72007-09-15 14:07:45 -07005284 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005285 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005286 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005287 return -EIO;
5288 }
5289
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005290 /* get assigned NUMA node */
5291 adapter->node = dev_to_node(&pdev->dev);
5292
Auke Kok9a799d72007-09-15 14:07:45 -07005293 set_bit(__IXGBE_DOWN, &adapter->state);
5294
5295 return 0;
5296}
5297
5298/**
5299 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07005300 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005301 *
5302 * Return 0 on success, negative on failure
5303 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005304int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005305{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005306 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07005307 int size;
5308
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07005309 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005310 tx_ring->tx_buffer_info = vzalloc_node(size, tx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005311 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005312 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005313 if (!tx_ring->tx_buffer_info)
5314 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005315
5316 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005317 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07005318 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005319
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005320 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005321 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005322 if (!tx_ring->desc)
5323 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005324
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07005325 tx_ring->next_to_use = 0;
5326 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005327 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005328
5329err:
5330 vfree(tx_ring->tx_buffer_info);
5331 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005332 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005333 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005334}
5335
5336/**
Alexander Duyck69888672008-09-11 20:05:39 -07005337 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5338 * @adapter: board private structure
5339 *
5340 * If this function returns with an error, then it's possible one or
5341 * more of the rings is populated (while the rest are not). It is the
5342 * callers duty to clean those orphaned rings.
5343 *
5344 * Return 0 on success, negative on failure
5345 **/
5346static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5347{
5348 int i, err = 0;
5349
5350 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005351 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005352 if (!err)
5353 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005354 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005355 break;
5356 }
5357
5358 return err;
5359}
5360
5361/**
Auke Kok9a799d72007-09-15 14:07:45 -07005362 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07005363 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005364 *
5365 * Returns 0 on success, negative on failure
5366 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005367int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005368{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005369 struct device *dev = rx_ring->dev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005370 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005371
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07005372 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005373 rx_ring->rx_buffer_info = vzalloc_node(size, rx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005374 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005375 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005376 if (!rx_ring->rx_buffer_info)
5377 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005378
Auke Kok9a799d72007-09-15 14:07:45 -07005379 /* Round up to nearest 4K */
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07005380 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5381 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005382
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005383 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005384 &rx_ring->dma, GFP_KERNEL);
Auke Kok9a799d72007-09-15 14:07:45 -07005385
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005386 if (!rx_ring->desc)
5387 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005388
Jesse Brandeburg3a5810732008-08-26 04:27:08 -07005389 rx_ring->next_to_clean = 0;
5390 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005391
5392 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005393err:
5394 vfree(rx_ring->rx_buffer_info);
5395 rx_ring->rx_buffer_info = NULL;
5396 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005397 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005398}
5399
5400/**
Alexander Duyck69888672008-09-11 20:05:39 -07005401 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5402 * @adapter: board private structure
5403 *
5404 * If this function returns with an error, then it's possible one or
5405 * more of the rings is populated (while the rest are not). It is the
5406 * callers duty to clean those orphaned rings.
5407 *
5408 * Return 0 on success, negative on failure
5409 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005410static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5411{
5412 int i, err = 0;
5413
5414 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005415 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005416 if (!err)
5417 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005418 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005419 break;
5420 }
5421
5422 return err;
5423}
5424
5425/**
Auke Kok9a799d72007-09-15 14:07:45 -07005426 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005427 * @tx_ring: Tx descriptor ring for a specific queue
5428 *
5429 * Free all transmit software resources
5430 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005431void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005432{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005433 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005434
5435 vfree(tx_ring->tx_buffer_info);
5436 tx_ring->tx_buffer_info = NULL;
5437
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005438 /* if not set, then don't free */
5439 if (!tx_ring->desc)
5440 return;
5441
5442 dma_free_coherent(tx_ring->dev, tx_ring->size,
5443 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005444
5445 tx_ring->desc = NULL;
5446}
5447
5448/**
5449 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5450 * @adapter: board private structure
5451 *
5452 * Free all transmit software resources
5453 **/
5454static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5455{
5456 int i;
5457
5458 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005459 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005460 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005461}
5462
5463/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005464 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005465 * @rx_ring: ring to clean the resources from
5466 *
5467 * Free all receive software resources
5468 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005469void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005470{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005471 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005472
5473 vfree(rx_ring->rx_buffer_info);
5474 rx_ring->rx_buffer_info = NULL;
5475
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005476 /* if not set, then don't free */
5477 if (!rx_ring->desc)
5478 return;
5479
5480 dma_free_coherent(rx_ring->dev, rx_ring->size,
5481 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005482
5483 rx_ring->desc = NULL;
5484}
5485
5486/**
5487 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5488 * @adapter: board private structure
5489 *
5490 * Free all receive software resources
5491 **/
5492static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5493{
5494 int i;
5495
5496 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005497 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005498 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005499}
5500
5501/**
Auke Kok9a799d72007-09-15 14:07:45 -07005502 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5503 * @netdev: network interface device structure
5504 * @new_mtu: new value for maximum frame size
5505 *
5506 * Returns 0 on success, negative on failure
5507 **/
5508static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5509{
5510 struct ixgbe_adapter *adapter = netdev_priv(netdev);
John Fastabend16b61be2010-11-16 19:26:44 -08005511 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07005512 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5513
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005514 /* MTU < 68 is an error and causes problems on some kernels */
Greg Rosee9f98072011-01-26 01:06:07 +00005515 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED &&
5516 hw->mac.type != ixgbe_mac_X540) {
5517 if ((new_mtu < 68) || (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
5518 return -EINVAL;
5519 } else {
5520 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
5521 return -EINVAL;
5522 }
Auke Kok9a799d72007-09-15 14:07:45 -07005523
Emil Tantilov396e7992010-07-01 20:05:12 +00005524 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005525 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005526 netdev->mtu = new_mtu;
5527
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005528 if (netif_running(netdev))
5529 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005530
5531 return 0;
5532}
5533
5534/**
5535 * ixgbe_open - Called when a network interface is made active
5536 * @netdev: network interface device structure
5537 *
5538 * Returns 0 on success, negative value on failure
5539 *
5540 * The open entry point is called when a network interface is made
5541 * active by the system (IFF_UP). At this point all resources needed
5542 * for transmit and receive operations are allocated, the interrupt
5543 * handler is registered with the OS, the watchdog timer is started,
5544 * and the stack is notified that the interface is ready.
5545 **/
5546static int ixgbe_open(struct net_device *netdev)
5547{
5548 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5549 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07005550
Auke Kok4bebfaa2008-02-11 09:26:01 -08005551 /* disallow open during test */
5552 if (test_bit(__IXGBE_TESTING, &adapter->state))
5553 return -EBUSY;
5554
Jesse Brandeburg54386462009-04-17 20:44:27 +00005555 netif_carrier_off(netdev);
5556
Auke Kok9a799d72007-09-15 14:07:45 -07005557 /* allocate transmit descriptors */
5558 err = ixgbe_setup_all_tx_resources(adapter);
5559 if (err)
5560 goto err_setup_tx;
5561
Auke Kok9a799d72007-09-15 14:07:45 -07005562 /* allocate receive descriptors */
5563 err = ixgbe_setup_all_rx_resources(adapter);
5564 if (err)
5565 goto err_setup_rx;
5566
5567 ixgbe_configure(adapter);
5568
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005569 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005570 if (err)
5571 goto err_req_irq;
5572
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005573 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005574
5575 return 0;
5576
Auke Kok9a799d72007-09-15 14:07:45 -07005577err_req_irq:
Auke Kok9a799d72007-09-15 14:07:45 -07005578err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005579 ixgbe_free_all_rx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005580err_setup_tx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005581 ixgbe_free_all_tx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005582 ixgbe_reset(adapter);
5583
5584 return err;
5585}
5586
5587/**
5588 * ixgbe_close - Disables a network interface
5589 * @netdev: network interface device structure
5590 *
5591 * Returns 0, this is not allowed to fail
5592 *
5593 * The close entry point is called when an interface is de-activated
5594 * by the OS. The hardware is still under the drivers control, but
5595 * needs to be disabled. A global MAC reset is issued to stop the
5596 * hardware, and all transmit and receive resources are freed.
5597 **/
5598static int ixgbe_close(struct net_device *netdev)
5599{
5600 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005601
5602 ixgbe_down(adapter);
5603 ixgbe_free_irq(adapter);
5604
Alexander Duycke4911d52011-05-11 07:18:52 +00005605 ixgbe_fdir_filter_exit(adapter);
5606
Auke Kok9a799d72007-09-15 14:07:45 -07005607 ixgbe_free_all_tx_resources(adapter);
5608 ixgbe_free_all_rx_resources(adapter);
5609
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005610 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005611
5612 return 0;
5613}
5614
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005615#ifdef CONFIG_PM
5616static int ixgbe_resume(struct pci_dev *pdev)
5617{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005618 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5619 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005620 u32 err;
5621
5622 pci_set_power_state(pdev, PCI_D0);
5623 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08005624 /*
5625 * pci_restore_state clears dev->state_saved so call
5626 * pci_save_state to restore it.
5627 */
5628 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005629
5630 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005631 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005632 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005633 return err;
5634 }
5635 pci_set_master(pdev);
5636
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005637 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005638
5639 err = ixgbe_init_interrupt_scheme(adapter);
5640 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005641 e_dev_err("Cannot initialize interrupts for device\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005642 return err;
5643 }
5644
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005645 ixgbe_reset(adapter);
5646
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005647 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5648
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005649 if (netif_running(netdev)) {
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005650 err = ixgbe_open(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005651 if (err)
5652 return err;
5653 }
5654
5655 netif_device_attach(netdev);
5656
5657 return 0;
5658}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005659#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005660
5661static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005662{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005663 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5664 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005665 struct ixgbe_hw *hw = &adapter->hw;
5666 u32 ctrl, fctrl;
5667 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005668#ifdef CONFIG_PM
5669 int retval = 0;
5670#endif
5671
5672 netif_device_detach(netdev);
5673
5674 if (netif_running(netdev)) {
5675 ixgbe_down(adapter);
5676 ixgbe_free_irq(adapter);
5677 ixgbe_free_all_tx_resources(adapter);
5678 ixgbe_free_all_rx_resources(adapter);
5679 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005680
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005681 ixgbe_clear_interrupt_scheme(adapter);
John Fastabendd033d522011-02-10 14:40:01 +00005682#ifdef CONFIG_DCB
5683 kfree(adapter->ixgbe_ieee_pfc);
5684 kfree(adapter->ixgbe_ieee_ets);
5685#endif
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005686
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005687#ifdef CONFIG_PM
5688 retval = pci_save_state(pdev);
5689 if (retval)
5690 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005691
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005692#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005693 if (wufc) {
5694 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005695
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005696 /* turn on all-multi mode if wake on multicast is enabled */
5697 if (wufc & IXGBE_WUFC_MC) {
5698 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5699 fctrl |= IXGBE_FCTRL_MPE;
5700 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5701 }
5702
5703 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5704 ctrl |= IXGBE_CTRL_GIO_DIS;
5705 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5706
5707 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5708 } else {
5709 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5710 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5711 }
5712
Alexander Duyckbd508172010-11-16 19:27:03 -08005713 switch (hw->mac.type) {
5714 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005715 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005716 break;
5717 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005718 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005719 pci_wake_from_d3(pdev, !!wufc);
5720 break;
5721 default:
5722 break;
5723 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005724
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005725 *enable_wake = !!wufc;
5726
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005727 ixgbe_release_hw_control(adapter);
5728
5729 pci_disable_device(pdev);
5730
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005731 return 0;
5732}
5733
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005734#ifdef CONFIG_PM
5735static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5736{
5737 int retval;
5738 bool wake;
5739
5740 retval = __ixgbe_shutdown(pdev, &wake);
5741 if (retval)
5742 return retval;
5743
5744 if (wake) {
5745 pci_prepare_to_sleep(pdev);
5746 } else {
5747 pci_wake_from_d3(pdev, false);
5748 pci_set_power_state(pdev, PCI_D3hot);
5749 }
5750
5751 return 0;
5752}
5753#endif /* CONFIG_PM */
5754
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005755static void ixgbe_shutdown(struct pci_dev *pdev)
5756{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005757 bool wake;
5758
5759 __ixgbe_shutdown(pdev, &wake);
5760
5761 if (system_state == SYSTEM_POWER_OFF) {
5762 pci_wake_from_d3(pdev, wake);
5763 pci_set_power_state(pdev, PCI_D3hot);
5764 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005765}
5766
5767/**
Auke Kok9a799d72007-09-15 14:07:45 -07005768 * ixgbe_update_stats - Update the board statistics counters.
5769 * @adapter: board private structure
5770 **/
5771void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5772{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005773 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005774 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005775 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005776 u64 total_mpc = 0;
5777 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005778 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5779 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005780 u64 bytes = 0, packets = 0, hw_csum_rx_error = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005781#ifdef IXGBE_FCOE
5782 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5783 unsigned int cpu;
5784 u64 fcoe_noddp_counts_sum = 0, fcoe_noddp_ext_buff_counts_sum = 0;
5785#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07005786
Don Skidmored08935c2010-06-11 13:20:29 +00005787 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5788 test_bit(__IXGBE_RESETTING, &adapter->state))
5789 return;
5790
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005791 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005792 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005793 u64 rsc_flush = 0;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005794 for (i = 0; i < 16; i++)
5795 adapter->hw_rx_no_dma_resources +=
Joe Perches7ca647b2010-09-07 21:35:40 +00005796 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005797 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005798 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5799 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005800 }
5801 adapter->rsc_total_count = rsc_count;
5802 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005803 }
5804
Alexander Duyck5b7da512010-11-16 19:26:50 -08005805 for (i = 0; i < adapter->num_rx_queues; i++) {
5806 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5807 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5808 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5809 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005810 hw_csum_rx_error += rx_ring->rx_stats.csum_err;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005811 bytes += rx_ring->stats.bytes;
5812 packets += rx_ring->stats.packets;
5813 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005814 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005815 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5816 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
Alexander Duyck8a0da212012-01-31 02:59:49 +00005817 adapter->hw_csum_rx_error = hw_csum_rx_error;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005818 netdev->stats.rx_bytes = bytes;
5819 netdev->stats.rx_packets = packets;
5820
5821 bytes = 0;
5822 packets = 0;
5823 /* gather some stats to the adapter struct that are per queue */
5824 for (i = 0; i < adapter->num_tx_queues; i++) {
5825 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5826 restart_queue += tx_ring->tx_stats.restart_queue;
5827 tx_busy += tx_ring->tx_stats.tx_busy;
5828 bytes += tx_ring->stats.bytes;
5829 packets += tx_ring->stats.packets;
5830 }
5831 adapter->restart_queue = restart_queue;
5832 adapter->tx_busy = tx_busy;
5833 netdev->stats.tx_bytes = bytes;
5834 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005835
Joe Perches7ca647b2010-09-07 21:35:40 +00005836 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005837
5838 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005839 for (i = 0; i < 8; i++) {
5840 /* for packet buffers not used, the register should read 0 */
5841 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5842 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005843 hwstats->mpc[i] += mpc;
5844 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005845 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5846 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005847 switch (hw->mac.type) {
5848 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005849 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5850 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5851 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005852 hwstats->pxonrxc[i] +=
5853 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005854 break;
5855 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005856 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005857 hwstats->pxonrxc[i] +=
5858 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005859 break;
5860 default:
5861 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005862 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005863 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005864
5865 /*16 register reads */
5866 for (i = 0; i < 16; i++) {
5867 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5868 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5869 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5870 (hw->mac.type == ixgbe_mac_X540)) {
5871 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5872 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5873 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5874 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5875 }
5876 }
5877
Joe Perches7ca647b2010-09-07 21:35:40 +00005878 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005879 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005880 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005881
John Fastabendc84d3242010-11-16 19:27:12 -08005882 ixgbe_update_xoff_received(adapter);
5883
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005884 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005885 switch (hw->mac.type) {
5886 case ixgbe_mac_82598EB:
5887 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005888 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5889 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5890 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5891 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005892 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005893 /* OS2BMC stats are X540 only*/
5894 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5895 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5896 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5897 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5898 case ixgbe_mac_82599EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005899 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005900 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005901 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005902 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005903 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005904 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005905 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005906 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5907 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005908#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005909 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5910 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5911 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5912 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5913 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5914 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005915 /* Add up per cpu counters for total ddp aloc fail */
5916 if (fcoe->pcpu_noddp && fcoe->pcpu_noddp_ext_buff) {
5917 for_each_possible_cpu(cpu) {
5918 fcoe_noddp_counts_sum +=
5919 *per_cpu_ptr(fcoe->pcpu_noddp, cpu);
5920 fcoe_noddp_ext_buff_counts_sum +=
5921 *per_cpu_ptr(fcoe->
5922 pcpu_noddp_ext_buff, cpu);
5923 }
5924 }
5925 hwstats->fcoe_noddp = fcoe_noddp_counts_sum;
5926 hwstats->fcoe_noddp_ext_buff = fcoe_noddp_ext_buff_counts_sum;
Yi Zou6d455222009-05-13 13:12:16 +00005927#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005928 break;
5929 default:
5930 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005931 }
Auke Kok9a799d72007-09-15 14:07:45 -07005932 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005933 hwstats->bprc += bprc;
5934 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005935 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005936 hwstats->mprc -= bprc;
5937 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5938 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5939 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5940 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5941 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5942 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5943 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5944 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005945 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005946 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005947 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005948 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005949 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5950 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005951 /*
5952 * 82598 errata - tx of flow control packets is included in tx counters
5953 */
5954 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005955 hwstats->gptc -= xon_off_tot;
5956 hwstats->mptc -= xon_off_tot;
5957 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5958 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5959 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5960 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5961 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5962 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5963 hwstats->ptc64 -= xon_off_tot;
5964 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5965 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5966 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5967 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5968 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5969 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005970
5971 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005972 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005973
5974 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005975 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005976 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005977 netdev->stats.rx_length_errors = hwstats->rlec;
5978 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005979 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005980}
5981
5982/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005983 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
5984 * @adapter - pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005985 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005986static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005987{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005988 struct ixgbe_hw *hw = &adapter->hw;
5989 int i;
5990
Alexander Duyckd034acf2011-04-27 09:25:34 +00005991 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5992 return;
5993
5994 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5995
5996 /* if interface is down do nothing */
5997 if (test_bit(__IXGBE_DOWN, &adapter->state))
5998 return;
5999
6000 /* do nothing if we are not using signature filters */
6001 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
6002 return;
6003
6004 adapter->fdir_overflow++;
6005
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006006 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
6007 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08006008 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00006009 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00006010 /* re-enable flow director interrupts */
6011 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006012 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00006013 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00006014 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006015 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006016}
6017
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006018/**
6019 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
6020 * @adapter - pointer to the device adapter structure
6021 *
6022 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006023 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006024 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00006025 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006026 */
6027static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
6028{
Auke Kok9a799d72007-09-15 14:07:45 -07006029 struct ixgbe_hw *hw = &adapter->hw;
6030 u64 eics = 0;
6031 int i;
6032
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006033 /* If we're down or resetting, just bail */
6034 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6035 test_bit(__IXGBE_RESETTING, &adapter->state))
6036 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00006037
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006038 /* Force detection of hung controller */
6039 if (netif_carrier_ok(adapter->netdev)) {
6040 for (i = 0; i < adapter->num_tx_queues; i++)
6041 set_check_for_tx_hang(adapter->tx_ring[i]);
6042 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00006043
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00006044 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00006045 /*
6046 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00006047 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00006048 * would set *both* EIMS and EICS for any bit in EIAM
6049 */
6050 IXGBE_WRITE_REG(hw, IXGBE_EICS,
6051 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006052 } else {
6053 /* get one bit for every active tx/rx interrupt vector */
6054 for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
6055 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00006056 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006057 eics |= ((u64)1 << i);
6058 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00006059 }
6060
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006061 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00006062 ixgbe_irq_rearm_queues(adapter, eics);
6063
Alexander Duyckfe49f042009-06-04 16:00:09 +00006064}
6065
6066/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006067 * ixgbe_watchdog_update_link - update the link status
6068 * @adapter - pointer to the device adapter structure
6069 * @link_speed - pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006070 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006071static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006072{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006073 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006074 u32 link_speed = adapter->link_speed;
6075 bool link_up = adapter->link_up;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006076 int i;
6077
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006078 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
6079 return;
6080
6081 if (hw->mac.ops.check_link) {
6082 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006083 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006084 /* always assume link is up, if no check link function */
6085 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
6086 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006087 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006088 if (link_up) {
6089 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6090 for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
6091 hw->mac.ops.fc_enable(hw, i);
6092 } else {
6093 hw->mac.ops.fc_enable(hw, 0);
6094 }
6095 }
6096
6097 if (link_up ||
6098 time_after(jiffies, (adapter->link_check_timeout +
6099 IXGBE_TRY_LINK_TIMEOUT))) {
6100 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
6101 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
6102 IXGBE_WRITE_FLUSH(hw);
6103 }
6104
6105 adapter->link_up = link_up;
6106 adapter->link_speed = link_speed;
6107}
6108
6109/**
6110 * ixgbe_watchdog_link_is_up - update netif_carrier status and
6111 * print link up message
6112 * @adapter - pointer to the device adapter structure
6113 **/
6114static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
6115{
6116 struct net_device *netdev = adapter->netdev;
6117 struct ixgbe_hw *hw = &adapter->hw;
6118 u32 link_speed = adapter->link_speed;
6119 bool flow_rx, flow_tx;
6120
6121 /* only continue if link was previously down */
6122 if (netif_carrier_ok(netdev))
6123 return;
6124
6125 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
6126
6127 switch (hw->mac.type) {
6128 case ixgbe_mac_82598EB: {
6129 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6130 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
6131 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
6132 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
6133 }
6134 break;
6135 case ixgbe_mac_X540:
6136 case ixgbe_mac_82599EB: {
6137 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
6138 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
6139 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
6140 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
6141 }
6142 break;
6143 default:
6144 flow_tx = false;
6145 flow_rx = false;
6146 break;
6147 }
6148 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
6149 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
6150 "10 Gbps" :
6151 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
6152 "1 Gbps" :
6153 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
6154 "100 Mbps" :
6155 "unknown speed"))),
6156 ((flow_rx && flow_tx) ? "RX/TX" :
6157 (flow_rx ? "RX" :
6158 (flow_tx ? "TX" : "None"))));
6159
6160 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006161 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006162}
6163
6164/**
6165 * ixgbe_watchdog_link_is_down - update netif_carrier status and
6166 * print link down message
6167 * @adapter - pointer to the adapter structure
6168 **/
6169static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter* adapter)
6170{
6171 struct net_device *netdev = adapter->netdev;
6172 struct ixgbe_hw *hw = &adapter->hw;
6173
6174 adapter->link_up = false;
6175 adapter->link_speed = 0;
6176
6177 /* only continue if link was up previously */
6178 if (!netif_carrier_ok(netdev))
6179 return;
6180
6181 /* poll for SFP+ cable when link is down */
6182 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
6183 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
6184
6185 e_info(drv, "NIC Link is Down\n");
6186 netif_carrier_off(netdev);
6187}
6188
6189/**
6190 * ixgbe_watchdog_flush_tx - flush queues on link down
6191 * @adapter - pointer to the device adapter structure
6192 **/
6193static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
6194{
6195 int i;
6196 int some_tx_pending = 0;
6197
6198 if (!netif_carrier_ok(adapter->netdev)) {
6199 for (i = 0; i < adapter->num_tx_queues; i++) {
6200 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6201 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
6202 some_tx_pending = 1;
6203 break;
6204 }
6205 }
6206
6207 if (some_tx_pending) {
6208 /* We've lost link, so the controller stops DMA,
6209 * but we've got queued Tx work that's never going
6210 * to get done, so reset controller to flush Tx.
6211 * (Do the reset outside of interrupt context).
6212 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006213 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006214 }
6215 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006216}
6217
Greg Rosea985b6c32010-11-18 03:02:52 +00006218static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
6219{
6220 u32 ssvpc;
6221
6222 /* Do not perform spoof check for 82598 */
6223 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6224 return;
6225
6226 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
6227
6228 /*
6229 * ssvpc register is cleared on read, if zero then no
6230 * spoofed packets in the last interval.
6231 */
6232 if (!ssvpc)
6233 return;
6234
6235 e_warn(drv, "%d Spoofed packets detected\n", ssvpc);
6236}
6237
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006238/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006239 * ixgbe_watchdog_subtask - check and bring link up
6240 * @adapter - pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006241 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006242static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006243{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006244 /* if interface is down do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00006245 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6246 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006247 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006248
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006249 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00006250
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006251 if (adapter->link_up)
6252 ixgbe_watchdog_link_is_up(adapter);
6253 else
6254 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00006255
Greg Rosea985b6c32010-11-18 03:02:52 +00006256 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006257 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006258
6259 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006260}
6261
Alexander Duyck70864002011-04-27 09:13:56 +00006262/**
6263 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
6264 * @adapter - the ixgbe adapter structure
6265 **/
6266static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
6267{
6268 struct ixgbe_hw *hw = &adapter->hw;
6269 s32 err;
6270
6271 /* not searching for SFP so there is nothing to do here */
6272 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
6273 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6274 return;
6275
6276 /* someone else is in init, wait until next service event */
6277 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6278 return;
6279
6280 err = hw->phy.ops.identify_sfp(hw);
6281 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6282 goto sfp_out;
6283
6284 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
6285 /* If no cable is present, then we need to reset
6286 * the next time we find a good cable. */
6287 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
6288 }
6289
6290 /* exit on error */
6291 if (err)
6292 goto sfp_out;
6293
6294 /* exit if reset not needed */
6295 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6296 goto sfp_out;
6297
6298 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
6299
6300 /*
6301 * A module may be identified correctly, but the EEPROM may not have
6302 * support for that module. setup_sfp() will fail in that case, so
6303 * we should not allow that module to load.
6304 */
6305 if (hw->mac.type == ixgbe_mac_82598EB)
6306 err = hw->phy.ops.reset(hw);
6307 else
6308 err = hw->mac.ops.setup_sfp(hw);
6309
6310 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6311 goto sfp_out;
6312
6313 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
6314 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
6315
6316sfp_out:
6317 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6318
6319 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
6320 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
6321 e_dev_err("failed to initialize because an unsupported "
6322 "SFP+ module type was detected.\n");
6323 e_dev_err("Reload the driver after installing a "
6324 "supported module.\n");
6325 unregister_netdev(adapter->netdev);
6326 }
6327}
6328
6329/**
6330 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
6331 * @adapter - the ixgbe adapter structure
6332 **/
6333static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
6334{
6335 struct ixgbe_hw *hw = &adapter->hw;
6336 u32 autoneg;
6337 bool negotiation;
6338
6339 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
6340 return;
6341
6342 /* someone else is in init, wait until next service event */
6343 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6344 return;
6345
6346 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
6347
6348 autoneg = hw->phy.autoneg_advertised;
6349 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
6350 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Alexander Duyck70864002011-04-27 09:13:56 +00006351 if (hw->mac.ops.setup_link)
6352 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
6353
6354 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
6355 adapter->link_check_timeout = jiffies;
6356 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6357}
6358
Greg Rose83c61fa2011-09-07 05:59:35 +00006359#ifdef CONFIG_PCI_IOV
6360static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
6361{
6362 int vf;
6363 struct ixgbe_hw *hw = &adapter->hw;
6364 struct net_device *netdev = adapter->netdev;
6365 u32 gpc;
6366 u32 ciaa, ciad;
6367
6368 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
6369 if (gpc) /* If incrementing then no need for the check below */
6370 return;
6371 /*
6372 * Check to see if a bad DMA write target from an errant or
6373 * malicious VF has caused a PCIe error. If so then we can
6374 * issue a VFLR to the offending VF(s) and then resume without
6375 * requesting a full slot reset.
6376 */
6377
6378 for (vf = 0; vf < adapter->num_vfs; vf++) {
6379 ciaa = (vf << 16) | 0x80000000;
6380 /* 32 bit read so align, we really want status at offset 6 */
6381 ciaa |= PCI_COMMAND;
6382 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6383 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
6384 ciaa &= 0x7FFFFFFF;
6385 /* disable debug mode asap after reading data */
6386 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6387 /* Get the upper 16 bits which will be the PCI status reg */
6388 ciad >>= 16;
6389 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
6390 netdev_err(netdev, "VF %d Hung DMA\n", vf);
6391 /* Issue VFLR */
6392 ciaa = (vf << 16) | 0x80000000;
6393 ciaa |= 0xA8;
6394 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6395 ciad = 0x00008000; /* VFLR */
6396 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
6397 ciaa &= 0x7FFFFFFF;
6398 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6399 }
6400 }
6401}
6402
6403#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006404/**
6405 * ixgbe_service_timer - Timer Call-back
6406 * @data: pointer to adapter cast into an unsigned long
6407 **/
6408static void ixgbe_service_timer(unsigned long data)
6409{
6410 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
6411 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00006412 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00006413
Greg Rose83c61fa2011-09-07 05:59:35 +00006414#ifdef CONFIG_PCI_IOV
6415 ready = false;
6416
6417 /*
6418 * don't bother with SR-IOV VF DMA hang check if there are
6419 * no VFs or the link is down
6420 */
6421 if (!adapter->num_vfs ||
6422 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)) {
6423 ready = true;
6424 goto normal_timer_service;
6425 }
6426
6427 /* If we have VFs allocated then we must check for DMA hangs */
6428 ixgbe_check_for_bad_vf(adapter);
6429 next_event_offset = HZ / 50;
6430 adapter->timer_event_accumulator++;
6431
6432 if (adapter->timer_event_accumulator >= 100) {
6433 ready = true;
6434 adapter->timer_event_accumulator = 0;
6435 }
6436
6437 goto schedule_event;
6438
6439normal_timer_service:
6440#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006441 /* poll faster when waiting for link */
6442 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
6443 next_event_offset = HZ / 10;
6444 else
6445 next_event_offset = HZ * 2;
6446
Greg Rose83c61fa2011-09-07 05:59:35 +00006447#ifdef CONFIG_PCI_IOV
6448schedule_event:
6449#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006450 /* Reset the timer */
6451 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
6452
Greg Rose83c61fa2011-09-07 05:59:35 +00006453 if (ready)
6454 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006455}
6456
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006457static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
6458{
6459 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
6460 return;
6461
6462 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
6463
6464 /* If we're already down or resetting, just bail */
6465 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6466 test_bit(__IXGBE_RESETTING, &adapter->state))
6467 return;
6468
6469 ixgbe_dump(adapter);
6470 netdev_err(adapter->netdev, "Reset adapter\n");
6471 adapter->tx_timeout_count++;
6472
6473 ixgbe_reinit_locked(adapter);
6474}
6475
Alexander Duyck70864002011-04-27 09:13:56 +00006476/**
6477 * ixgbe_service_task - manages and runs subtasks
6478 * @work: pointer to work_struct containing our data
6479 **/
6480static void ixgbe_service_task(struct work_struct *work)
6481{
6482 struct ixgbe_adapter *adapter = container_of(work,
6483 struct ixgbe_adapter,
6484 service_task);
6485
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006486 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006487 ixgbe_sfp_detection_subtask(adapter);
6488 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00006489 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006490 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00006491 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006492 ixgbe_check_hang_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006493
6494 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006495}
6496
Alexander Duyck897ab152011-05-27 05:31:47 +00006497void ixgbe_tx_ctxtdesc(struct ixgbe_ring *tx_ring, u32 vlan_macip_lens,
6498 u32 fcoe_sof_eof, u32 type_tucmd, u32 mss_l4len_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07006499{
6500 struct ixgbe_adv_tx_context_desc *context_desc;
Alexander Duyck897ab152011-05-27 05:31:47 +00006501 u16 i = tx_ring->next_to_use;
6502
Alexander Duycke4f74022012-01-31 02:59:44 +00006503 context_desc = IXGBE_TX_CTXTDESC(tx_ring, i);
Alexander Duyck897ab152011-05-27 05:31:47 +00006504
6505 i++;
6506 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
6507
6508 /* set bits to identify this as an advanced context descriptor */
6509 type_tucmd |= IXGBE_TXD_CMD_DEXT | IXGBE_ADVTXD_DTYP_CTXT;
6510
6511 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6512 context_desc->seqnum_seed = cpu_to_le32(fcoe_sof_eof);
6513 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd);
6514 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
6515}
6516
6517static int ixgbe_tso(struct ixgbe_ring *tx_ring, struct sk_buff *skb,
6518 u32 tx_flags, __be16 protocol, u8 *hdr_len)
6519{
Auke Kok9a799d72007-09-15 14:07:45 -07006520 int err;
Alexander Duyck897ab152011-05-27 05:31:47 +00006521 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006522 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07006523
Alexander Duyck897ab152011-05-27 05:31:47 +00006524 if (!skb_is_gso(skb))
6525 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006526
Alexander Duyck897ab152011-05-27 05:31:47 +00006527 if (skb_header_cloned(skb)) {
6528 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
6529 if (err)
6530 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00006531 }
6532
Alexander Duyck897ab152011-05-27 05:31:47 +00006533 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
6534 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
6535
6536 if (protocol == __constant_htons(ETH_P_IP)) {
6537 struct iphdr *iph = ip_hdr(skb);
6538 iph->tot_len = 0;
6539 iph->check = 0;
6540 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6541 iph->daddr, 0,
6542 IPPROTO_TCP,
6543 0);
6544 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6545 } else if (skb_is_gso_v6(skb)) {
6546 ipv6_hdr(skb)->payload_len = 0;
6547 tcp_hdr(skb)->check =
6548 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
6549 &ipv6_hdr(skb)->daddr,
6550 0, IPPROTO_TCP, 0);
6551 }
6552
6553 l4len = tcp_hdrlen(skb);
6554 *hdr_len = skb_transport_offset(skb) + l4len;
6555
6556 /* mss_l4len_id: use 1 as index for TSO */
6557 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
6558 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
6559 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
6560
6561 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
6562 vlan_macip_lens = skb_network_header_len(skb);
6563 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6564 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6565
6566 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
6567 mss_l4len_idx);
6568
6569 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00006570}
6571
Alexander Duyck897ab152011-05-27 05:31:47 +00006572static bool ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
Hao Zheng5e09a102010-11-11 13:47:59 +00006573 struct sk_buff *skb, u32 tx_flags,
6574 __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07006575{
Alexander Duyck897ab152011-05-27 05:31:47 +00006576 u32 vlan_macip_lens = 0;
6577 u32 mss_l4len_idx = 0;
6578 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006579
Alexander Duyck897ab152011-05-27 05:31:47 +00006580 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006581 if (!(tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
6582 !(tx_flags & IXGBE_TX_FLAGS_TXSW))
Alexander Duyck897ab152011-05-27 05:31:47 +00006583 return false;
6584 } else {
6585 u8 l4_hdr = 0;
6586 switch (protocol) {
6587 case __constant_htons(ETH_P_IP):
6588 vlan_macip_lens |= skb_network_header_len(skb);
6589 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6590 l4_hdr = ip_hdr(skb)->protocol;
6591 break;
6592 case __constant_htons(ETH_P_IPV6):
6593 vlan_macip_lens |= skb_network_header_len(skb);
6594 l4_hdr = ipv6_hdr(skb)->nexthdr;
6595 break;
6596 default:
6597 if (unlikely(net_ratelimit())) {
6598 dev_warn(tx_ring->dev,
6599 "partial checksum but proto=%x!\n",
6600 skb->protocol);
6601 }
6602 break;
6603 }
Auke Kok9a799d72007-09-15 14:07:45 -07006604
Alexander Duyck897ab152011-05-27 05:31:47 +00006605 switch (l4_hdr) {
6606 case IPPROTO_TCP:
6607 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6608 mss_l4len_idx = tcp_hdrlen(skb) <<
6609 IXGBE_ADVTXD_L4LEN_SHIFT;
6610 break;
6611 case IPPROTO_SCTP:
6612 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6613 mss_l4len_idx = sizeof(struct sctphdr) <<
6614 IXGBE_ADVTXD_L4LEN_SHIFT;
6615 break;
6616 case IPPROTO_UDP:
6617 mss_l4len_idx = sizeof(struct udphdr) <<
6618 IXGBE_ADVTXD_L4LEN_SHIFT;
6619 break;
6620 default:
6621 if (unlikely(net_ratelimit())) {
6622 dev_warn(tx_ring->dev,
6623 "partial checksum but l4 proto=%x!\n",
6624 skb->protocol);
6625 }
6626 break;
6627 }
Auke Kok9a799d72007-09-15 14:07:45 -07006628 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006629
Alexander Duyck897ab152011-05-27 05:31:47 +00006630 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6631 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6632
6633 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
6634 type_tucmd, mss_l4len_idx);
6635
6636 return (skb->ip_summed == CHECKSUM_PARTIAL);
Auke Kok9a799d72007-09-15 14:07:45 -07006637}
6638
Alexander Duyckd3d00232011-07-15 02:31:25 +00006639static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
6640{
6641 /* set type for advanced descriptor with frame checksum insertion */
6642 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
6643 IXGBE_ADVTXD_DCMD_IFCS |
6644 IXGBE_ADVTXD_DCMD_DEXT);
6645
6646 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006647 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006648 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
6649
6650 /* set segmentation enable bits for TSO/FSO */
6651#ifdef IXGBE_FCOE
6652 if ((tx_flags & IXGBE_TX_FLAGS_TSO) || (tx_flags & IXGBE_TX_FLAGS_FSO))
6653#else
6654 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6655#endif
6656 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
6657
6658 return cmd_type;
6659}
6660
6661static __le32 ixgbe_tx_olinfo_status(u32 tx_flags, unsigned int paylen)
6662{
6663 __le32 olinfo_status =
6664 cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
6665
6666 if (tx_flags & IXGBE_TX_FLAGS_TSO) {
6667 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM |
6668 (1 << IXGBE_ADVTXD_IDX_SHIFT));
6669 /* enble IPv4 checksum for TSO */
6670 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6671 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
6672 }
6673
6674 /* enable L4 checksum for TSO and TX checksum offload */
6675 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6676 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
6677
6678#ifdef IXGBE_FCOE
6679 /* use index 1 context for FCOE/FSO */
6680 if (tx_flags & IXGBE_TX_FLAGS_FCOE)
6681 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC |
6682 (1 << IXGBE_ADVTXD_IDX_SHIFT));
6683
6684#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006685 /*
6686 * Check Context must be set if Tx switch is enabled, which it
6687 * always is for case where virtual functions are running
6688 */
6689 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
6690 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
6691
Alexander Duyckd3d00232011-07-15 02:31:25 +00006692 return olinfo_status;
6693}
6694
6695#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6696 IXGBE_TXD_CMD_RS)
6697
6698static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
6699 struct sk_buff *skb,
6700 struct ixgbe_tx_buffer *first,
6701 u32 tx_flags,
6702 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006703{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006704 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07006705 struct ixgbe_tx_buffer *tx_buffer_info;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006706 union ixgbe_adv_tx_desc *tx_desc;
6707 dma_addr_t dma;
6708 __le32 cmd_type, olinfo_status;
6709 struct skb_frag_struct *frag;
6710 unsigned int f = 0;
6711 unsigned int data_len = skb->data_len;
6712 unsigned int size = skb_headlen(skb);
6713 u32 offset = 0;
6714 u32 paylen = skb->len - hdr_len;
6715 u16 i = tx_ring->next_to_use;
6716 u16 gso_segs;
Auke Kok9a799d72007-09-15 14:07:45 -07006717
Alexander Duyckd3d00232011-07-15 02:31:25 +00006718#ifdef IXGBE_FCOE
6719 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6720 if (data_len >= sizeof(struct fcoe_crc_eof)) {
6721 data_len -= sizeof(struct fcoe_crc_eof);
6722 } else {
6723 size -= sizeof(struct fcoe_crc_eof) - data_len;
6724 data_len = 0;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006725 }
Auke Kok9a799d72007-09-15 14:07:45 -07006726 }
6727
Alexander Duyckd3d00232011-07-15 02:31:25 +00006728#endif
6729 dma = dma_map_single(dev, skb->data, size, DMA_TO_DEVICE);
6730 if (dma_mapping_error(dev, dma))
6731 goto dma_error;
6732
6733 cmd_type = ixgbe_tx_cmd_type(tx_flags);
6734 olinfo_status = ixgbe_tx_olinfo_status(tx_flags, paylen);
6735
Alexander Duycke4f74022012-01-31 02:59:44 +00006736 tx_desc = IXGBE_TX_DESC(tx_ring, i);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006737
6738 for (;;) {
6739 while (size > IXGBE_MAX_DATA_PER_TXD) {
6740 tx_desc->read.buffer_addr = cpu_to_le64(dma + offset);
6741 tx_desc->read.cmd_type_len =
6742 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
6743 tx_desc->read.olinfo_status = olinfo_status;
6744
6745 offset += IXGBE_MAX_DATA_PER_TXD;
6746 size -= IXGBE_MAX_DATA_PER_TXD;
6747
6748 tx_desc++;
6749 i++;
6750 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006751 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006752 i = 0;
6753 }
6754 }
6755
6756 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6757 tx_buffer_info->length = offset + size;
6758 tx_buffer_info->tx_flags = tx_flags;
6759 tx_buffer_info->dma = dma;
6760
6761 tx_desc->read.buffer_addr = cpu_to_le64(dma + offset);
6762 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
6763 tx_desc->read.olinfo_status = olinfo_status;
6764
6765 if (!data_len)
6766 break;
Auke Kok9a799d72007-09-15 14:07:45 -07006767
6768 frag = &skb_shinfo(skb)->frags[f];
Alexander Duyckd3d00232011-07-15 02:31:25 +00006769#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006770 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006771#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006772 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006773#endif
6774 data_len -= size;
6775 f++;
Auke Kok9a799d72007-09-15 14:07:45 -07006776
Alexander Duyckd3d00232011-07-15 02:31:25 +00006777 offset = 0;
6778 tx_flags |= IXGBE_TX_FLAGS_MAPPED_AS_PAGE;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006779
Ian Campbell877749b2011-08-29 23:18:26 +00006780 dma = skb_frag_dma_map(dev, frag, 0, size, DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006781 if (dma_mapping_error(dev, dma))
6782 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006783
Alexander Duyckd3d00232011-07-15 02:31:25 +00006784 tx_desc++;
6785 i++;
6786 if (i == tx_ring->count) {
Alexander Duycke4f74022012-01-31 02:59:44 +00006787 tx_desc = IXGBE_TX_DESC(tx_ring, 0);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006788 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006789 }
6790 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006791
Alexander Duyckd3d00232011-07-15 02:31:25 +00006792 tx_desc->read.cmd_type_len |= cpu_to_le32(IXGBE_TXD_CMD);
6793
6794 i++;
6795 if (i == tx_ring->count)
6796 i = 0;
6797
6798 tx_ring->next_to_use = i;
6799
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006800 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6801 gso_segs = skb_shinfo(skb)->gso_segs;
6802#ifdef IXGBE_FCOE
6803 /* adjust for FCoE Sequence Offload */
6804 else if (tx_flags & IXGBE_TX_FLAGS_FSO)
6805 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
6806 skb_shinfo(skb)->gso_size);
6807#endif /* IXGBE_FCOE */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006808 else
6809 gso_segs = 1;
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006810
6811 /* multiply data chunks by size of headers */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006812 tx_buffer_info->bytecount = paylen + (gso_segs * hdr_len);
6813 tx_buffer_info->gso_segs = gso_segs;
6814 tx_buffer_info->skb = skb;
Auke Kok9a799d72007-09-15 14:07:45 -07006815
Alexander Duyckb2d96e02012-02-07 08:14:33 +00006816 netdev_tx_sent_queue(txring_txq(tx_ring), tx_buffer_info->bytecount);
6817
Alexander Duyckd3d00232011-07-15 02:31:25 +00006818 /* set the timestamp */
6819 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006820
6821 /*
6822 * Force memory writes to complete before letting h/w
6823 * know there are new descriptors to fetch. (Only
6824 * applicable for weak-ordered memory model archs,
6825 * such as IA-64).
6826 */
6827 wmb();
6828
Alexander Duyckd3d00232011-07-15 02:31:25 +00006829 /* set next_to_watch value indicating a packet is present */
6830 first->next_to_watch = tx_desc;
6831
6832 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006833 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006834
6835 return;
6836dma_error:
6837 dev_err(dev, "TX DMA map failed\n");
6838
6839 /* clear dma mappings for failed tx_buffer_info map */
6840 for (;;) {
6841 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6842 ixgbe_unmap_tx_resource(tx_ring, tx_buffer_info);
6843 if (tx_buffer_info == first)
6844 break;
6845 if (i == 0)
6846 i = tx_ring->count;
6847 i--;
6848 }
6849
6850 dev_kfree_skb_any(skb);
6851
6852 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006853}
6854
Alexander Duyck69830522011-01-06 14:29:58 +00006855static void ixgbe_atr(struct ixgbe_ring *ring, struct sk_buff *skb,
6856 u32 tx_flags, __be16 protocol)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006857{
Alexander Duyck69830522011-01-06 14:29:58 +00006858 struct ixgbe_q_vector *q_vector = ring->q_vector;
6859 union ixgbe_atr_hash_dword input = { .dword = 0 };
6860 union ixgbe_atr_hash_dword common = { .dword = 0 };
6861 union {
6862 unsigned char *network;
6863 struct iphdr *ipv4;
6864 struct ipv6hdr *ipv6;
6865 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006866 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006867 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006868
Alexander Duyck69830522011-01-06 14:29:58 +00006869 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6870 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006871 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006872
Alexander Duyck69830522011-01-06 14:29:58 +00006873 /* do nothing if sampling is disabled */
6874 if (!ring->atr_sample_rate)
6875 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006876
Alexander Duyck69830522011-01-06 14:29:58 +00006877 ring->atr_count++;
6878
6879 /* snag network header to get L4 type and address */
6880 hdr.network = skb_network_header(skb);
6881
6882 /* Currently only IPv4/IPv6 with TCP is supported */
6883 if ((protocol != __constant_htons(ETH_P_IPV6) ||
6884 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
6885 (protocol != __constant_htons(ETH_P_IP) ||
6886 hdr.ipv4->protocol != IPPROTO_TCP))
6887 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006888
6889 th = tcp_hdr(skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006890
Alexander Duyck66f32a82011-06-29 05:43:22 +00006891 /* skip this packet since it is invalid or the socket is closing */
6892 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006893 return;
6894
6895 /* sample on all syn packets or once every atr sample count */
6896 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6897 return;
6898
6899 /* reset sample count */
6900 ring->atr_count = 0;
6901
6902 vlan_id = htons(tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
6903
6904 /*
6905 * src and dst are inverted, think how the receiver sees them
6906 *
6907 * The input is broken into two sections, a non-compressed section
6908 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6909 * is XORed together and stored in the compressed dword.
6910 */
6911 input.formatted.vlan_id = vlan_id;
6912
6913 /*
6914 * since src port and flex bytes occupy the same word XOR them together
6915 * and write the value to source port portion of compressed dword
6916 */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006917 if (tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006918 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6919 else
6920 common.port.src ^= th->dest ^ protocol;
6921 common.port.dst ^= th->source;
6922
6923 if (protocol == __constant_htons(ETH_P_IP)) {
6924 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6925 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6926 } else {
6927 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6928 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6929 hdr.ipv6->saddr.s6_addr32[1] ^
6930 hdr.ipv6->saddr.s6_addr32[2] ^
6931 hdr.ipv6->saddr.s6_addr32[3] ^
6932 hdr.ipv6->daddr.s6_addr32[0] ^
6933 hdr.ipv6->daddr.s6_addr32[1] ^
6934 hdr.ipv6->daddr.s6_addr32[2] ^
6935 hdr.ipv6->daddr.s6_addr32[3];
6936 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006937
6938 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006939 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6940 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006941}
6942
Alexander Duyck63544e92011-05-27 05:31:42 +00006943static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006944{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006945 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006946 /* Herbert's original patch had:
6947 * smp_mb__after_netif_stop_queue();
6948 * but since that doesn't exist yet, just open code it. */
6949 smp_mb();
6950
6951 /* We need to check again in a case another CPU has just
6952 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006953 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006954 return -EBUSY;
6955
6956 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006957 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006958 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006959 return 0;
6960}
6961
Alexander Duyck82d4e462011-06-11 01:44:58 +00006962static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006963{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006964 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006965 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006966 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006967}
6968
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006969static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6970{
6971 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006972 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6973 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006974#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006975 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006976
John Fastabende5b64632011-03-08 03:44:52 +00006977 if (((protocol == htons(ETH_P_FCOE)) ||
6978 (protocol == htons(ETH_P_FIP))) &&
6979 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
6980 txq &= (adapter->ring_feature[RING_F_FCOE].indices - 1);
6981 txq += adapter->ring_feature[RING_F_FCOE].mask;
6982 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006983 }
6984#endif
6985
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006986 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6987 while (unlikely(txq >= dev->real_num_tx_queues))
6988 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006989 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006990 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006991
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006992 return skb_tx_hash(dev, skb);
6993}
6994
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006995netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006996 struct ixgbe_adapter *adapter,
6997 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006998{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006999 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00007000 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00007001 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00007002#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
7003 unsigned short f;
7004#endif
Alexander Duycka535c302011-05-27 05:31:52 +00007005 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00007006 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00007007 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00007008
Alexander Duycka535c302011-05-27 05:31:52 +00007009 /*
7010 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck24ddd962012-02-10 02:08:32 +00007011 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
Alexander Duycka535c302011-05-27 05:31:52 +00007012 * + 2 desc gap to keep tail from touching head,
7013 * + 1 desc for context descriptor,
7014 * otherwise try next time
7015 */
7016#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
7017 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
7018 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
7019#else
7020 count += skb_shinfo(skb)->nr_frags;
7021#endif
7022 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
7023 tx_ring->tx_stats.tx_busy++;
7024 return NETDEV_TX_BUSY;
7025 }
7026
Alexander Duyck66f32a82011-06-29 05:43:22 +00007027 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00007028 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007029 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
7030 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7031 /* else if it is a SW VLAN check the next protocol and store the tag */
7032 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
7033 struct vlan_hdr *vhdr, _vhdr;
7034 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
7035 if (!vhdr)
7036 goto out_drop;
7037
7038 protocol = vhdr->h_vlan_encapsulated_proto;
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007039 tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
7040 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007041 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07007042 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007043
Alexander Duyck9e0c5642012-02-08 07:49:33 +00007044#ifdef CONFIG_PCI_IOV
7045 /*
7046 * Use the l2switch_enable flag - would be false if the DMA
7047 * Tx switch had been disabled.
7048 */
7049 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7050 tx_flags |= IXGBE_TX_FLAGS_TXSW;
7051
7052#endif
John Fastabend32701dc2011-09-27 03:51:56 +00007053 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00007054 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00007055 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
7056 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00007057 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00007058 tx_flags |= (skb->priority & 0x7) <<
7059 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007060 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
7061 struct vlan_ethhdr *vhdr;
7062 if (skb_header_cloned(skb) &&
7063 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
7064 goto out_drop;
7065 vhdr = (struct vlan_ethhdr *)skb->data;
7066 vhdr->h_vlan_TCI = htons(tx_flags >>
7067 IXGBE_TX_FLAGS_VLAN_SHIFT);
7068 } else {
7069 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
7070 }
7071 }
Alexander Duycka535c302011-05-27 05:31:52 +00007072
Alexander Duycka535c302011-05-27 05:31:52 +00007073 /* record the location of the first descriptor for this packet */
Alexander Duyckd3d00232011-07-15 02:31:25 +00007074 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
Alexander Duycka535c302011-05-27 05:31:52 +00007075
Yi Zoueacd73f2009-05-13 13:11:06 +00007076#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00007077 /* setup tx offload for FCoE */
7078 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
7079 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00007080 tso = ixgbe_fso(tx_ring, skb, tx_flags, &hdr_len);
7081 if (tso < 0)
7082 goto out_drop;
7083 else if (tso)
Alexander Duyck66f32a82011-06-29 05:43:22 +00007084 tx_flags |= IXGBE_TX_FLAGS_FSO |
7085 IXGBE_TX_FLAGS_FCOE;
7086 else
7087 tx_flags |= IXGBE_TX_FLAGS_FCOE;
Auke Kok9a799d72007-09-15 14:07:45 -07007088
Alexander Duyck66f32a82011-06-29 05:43:22 +00007089 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00007090 }
Auke Kok9a799d72007-09-15 14:07:45 -07007091
Auke Kok9a799d72007-09-15 14:07:45 -07007092#endif /* IXGBE_FCOE */
Alexander Duyck66f32a82011-06-29 05:43:22 +00007093 /* setup IPv4/IPv6 offloads */
7094 if (protocol == __constant_htons(ETH_P_IP))
7095 tx_flags |= IXGBE_TX_FLAGS_IPV4;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007096
Alexander Duyck66f32a82011-06-29 05:43:22 +00007097 tso = ixgbe_tso(tx_ring, skb, tx_flags, protocol, &hdr_len);
7098 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07007099 goto out_drop;
Alexander Duyck66f32a82011-06-29 05:43:22 +00007100 else if (tso)
7101 tx_flags |= IXGBE_TX_FLAGS_TSO;
7102 else if (ixgbe_tx_csum(tx_ring, skb, tx_flags, protocol))
7103 tx_flags |= IXGBE_TX_FLAGS_CSUM;
7104
7105 /* add the ATR filter if ATR is on */
7106 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
7107 ixgbe_atr(tx_ring, skb, tx_flags, protocol);
7108
7109#ifdef IXGBE_FCOE
7110xmit_fcoe:
7111#endif /* IXGBE_FCOE */
Alexander Duyckd3d00232011-07-15 02:31:25 +00007112 ixgbe_tx_map(tx_ring, skb, first, tx_flags, hdr_len);
7113
7114 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07007115
7116 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00007117
7118out_drop:
7119 dev_kfree_skb_any(skb);
7120 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07007121}
7122
7123static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
7124{
7125 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7126 struct ixgbe_ring *tx_ring;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007127
Auke Kok9a799d72007-09-15 14:07:45 -07007128 tx_ring = adapter->tx_ring[skb->queue_mapping];
7129 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
7130}
7131
7132/**
7133 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007134 * @netdev: network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07007135 * @p: pointer to an address structure
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007136 *
Auke Kok9a799d72007-09-15 14:07:45 -07007137 * Returns 0 on success, negative on failure
7138 **/
7139static int ixgbe_set_mac(struct net_device *netdev, void *p)
7140{
Ben Hutchings6b73e102009-04-29 08:08:58 +00007141 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7142 struct ixgbe_hw *hw = &adapter->hw;
7143 struct sockaddr *addr = p;
7144
7145 if (!is_valid_ether_addr(addr->sa_data))
7146 return -EADDRNOTAVAIL;
7147
7148 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
7149 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
7150
7151 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
7152 IXGBE_RAH_AV);
7153
7154 return 0;
7155}
7156
7157static int
7158ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
7159{
7160 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7161 struct ixgbe_hw *hw = &adapter->hw;
7162 u16 value;
7163 int rc;
7164
7165 if (prtad != hw->phy.mdio.prtad)
7166 return -EINVAL;
7167 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
7168 if (!rc)
7169 rc = value;
7170 return rc;
7171}
7172
7173static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
7174 u16 addr, u16 value)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007175{
7176 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jiri Pirko31278e72009-06-17 01:12:19 +00007177 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007178
7179 if (prtad != hw->phy.mdio.prtad)
7180 return -EINVAL;
7181 return hw->phy.ops.write_reg(hw, addr, devad, value);
7182}
7183
7184static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
7185{
7186 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7187
7188 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
7189}
7190
7191/**
7192 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
7193 * netdev->dev_addrs
7194 * @netdev: network interface device structure
7195 *
7196 * Returns non-zero on failure
7197 **/
Jiri Pirko31278e72009-06-17 01:12:19 +00007198static int ixgbe_add_sanmac_netdev(struct net_device *dev)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007199{
7200 int err = 0;
7201 struct ixgbe_adapter *adapter = netdev_priv(dev);
7202 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7203
7204 if (is_valid_ether_addr(mac->san_addr)) {
7205 rtnl_lock();
7206 err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
7207 rtnl_unlock();
7208 }
7209 return err;
7210}
7211
7212/**
7213 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
7214 * netdev->dev_addrs
7215 * @netdev: network interface device structure
7216 *
Auke Kok9a799d72007-09-15 14:07:45 -07007217 * Returns non-zero on failure
7218 **/
7219static int ixgbe_del_sanmac_netdev(struct net_device *dev)
7220{
7221 int err = 0;
7222 struct ixgbe_adapter *adapter = netdev_priv(dev);
7223 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7224
7225 if (is_valid_ether_addr(mac->san_addr)) {
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007226 rtnl_lock();
Auke Kok9a799d72007-09-15 14:07:45 -07007227 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
Alexander Duyck1a647bd2010-01-13 01:49:13 +00007228 rtnl_unlock();
7229 }
7230 return err;
7231}
Auke Kok9a799d72007-09-15 14:07:45 -07007232
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007233#ifdef CONFIG_NET_POLL_CONTROLLER
7234/*
7235 * Polling 'interrupt' - used by things like netconsole to send skbs
7236 * without having to re-enable interrupts. It's not called while
7237 * the interrupt routine is executing.
7238 */
7239static void ixgbe_netpoll(struct net_device *netdev)
7240{
7241 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007242 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07007243
7244 /* if interface is down do nothing */
7245 if (test_bit(__IXGBE_DOWN, &adapter->state))
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007246 return;
7247
7248 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Stephen Hemminger00829822008-11-20 20:14:53 -08007249 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007250 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Chris Leeche90d4002009-03-10 16:00:24 +00007251 for (i = 0; i < num_q_vectors; i++) {
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007252 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00007253 ixgbe_msix_clean_rings(0, q_vector);
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007254 }
7255 } else {
7256 ixgbe_intr(adapter->pdev->irq, netdev);
7257 }
7258 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
7259}
7260#endif
7261
Eric Dumazetde1036b2010-10-20 23:00:04 +00007262static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
7263 struct rtnl_link_stats64 *stats)
7264{
7265 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7266 int i;
7267
Eric Dumazet1a515022010-11-16 19:26:42 -08007268 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007269 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08007270 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00007271 u64 bytes, packets;
7272 unsigned int start;
7273
Eric Dumazet1a515022010-11-16 19:26:42 -08007274 if (ring) {
7275 do {
7276 start = u64_stats_fetch_begin_bh(&ring->syncp);
7277 packets = ring->stats.packets;
7278 bytes = ring->stats.bytes;
7279 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7280 stats->rx_packets += packets;
7281 stats->rx_bytes += bytes;
7282 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00007283 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00007284
7285 for (i = 0; i < adapter->num_tx_queues; i++) {
7286 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
7287 u64 bytes, packets;
7288 unsigned int start;
7289
7290 if (ring) {
7291 do {
7292 start = u64_stats_fetch_begin_bh(&ring->syncp);
7293 packets = ring->stats.packets;
7294 bytes = ring->stats.bytes;
7295 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7296 stats->tx_packets += packets;
7297 stats->tx_bytes += bytes;
7298 }
7299 }
Eric Dumazet1a515022010-11-16 19:26:42 -08007300 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007301 /* following stats updated by ixgbe_watchdog_task() */
7302 stats->multicast = netdev->stats.multicast;
7303 stats->rx_errors = netdev->stats.rx_errors;
7304 stats->rx_length_errors = netdev->stats.rx_length_errors;
7305 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
7306 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
7307 return stats;
7308}
7309
John Fastabend8b1c0b22011-05-03 02:26:48 +00007310/* ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
7311 * #adapter: pointer to ixgbe_adapter
7312 * @tc: number of traffic classes currently enabled
7313 *
7314 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
7315 * 802.1Q priority maps to a packet buffer that exists.
7316 */
7317static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
7318{
7319 struct ixgbe_hw *hw = &adapter->hw;
7320 u32 reg, rsave;
7321 int i;
7322
7323 /* 82598 have a static priority to TC mapping that can not
7324 * be changed so no validation is needed.
7325 */
7326 if (hw->mac.type == ixgbe_mac_82598EB)
7327 return;
7328
7329 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
7330 rsave = reg;
7331
7332 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
7333 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
7334
7335 /* If up2tc is out of bounds default to zero */
7336 if (up2tc > tc)
7337 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
7338 }
7339
7340 if (reg != rsave)
7341 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
7342
7343 return;
7344}
7345
7346
7347/* ixgbe_setup_tc - routine to configure net_device for multiple traffic
7348 * classes.
7349 *
7350 * @netdev: net device to configure
7351 * @tc: number of traffic classes to enable
7352 */
7353int ixgbe_setup_tc(struct net_device *dev, u8 tc)
7354{
John Fastabend8b1c0b22011-05-03 02:26:48 +00007355 struct ixgbe_adapter *adapter = netdev_priv(dev);
7356 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00007357
John Fastabende7589ea2011-07-18 22:38:36 +00007358 /* Multiple traffic classes requires multiple queues */
7359 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
7360 e_err(drv, "Enable failed, needs MSI-X\n");
7361 return -EINVAL;
7362 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00007363
7364 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00007365 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
John Fastabend8b1c0b22011-05-03 02:26:48 +00007366 (hw->mac.type == ixgbe_mac_82598EB && tc < MAX_TRAFFIC_CLASS))
7367 return -EINVAL;
7368
7369 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00007370 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00007371 * hardware is not flexible enough to do this dynamically.
7372 */
7373 if (netif_running(dev))
7374 ixgbe_close(dev);
7375 ixgbe_clear_interrupt_scheme(adapter);
7376
John Fastabende7589ea2011-07-18 22:38:36 +00007377 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007378 netdev_set_num_tc(dev, tc);
John Fastabende7589ea2011-07-18 22:38:36 +00007379 adapter->last_lfc_mode = adapter->hw.fc.current_mode;
7380
7381 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
7382 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7383
7384 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
7385 adapter->hw.fc.requested_mode = ixgbe_fc_none;
7386 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007387 netdev_reset_tc(dev);
7388
John Fastabende7589ea2011-07-18 22:38:36 +00007389 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
7390
7391 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
7392 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7393
7394 adapter->temp_dcb_cfg.pfc_mode_enable = false;
7395 adapter->dcb_cfg.pfc_mode_enable = false;
7396 }
7397
John Fastabend8b1c0b22011-05-03 02:26:48 +00007398 ixgbe_init_interrupt_scheme(adapter);
7399 ixgbe_validate_rtr(adapter, tc);
7400 if (netif_running(dev))
7401 ixgbe_open(dev);
7402
7403 return 0;
7404}
Eric Dumazetde1036b2010-10-20 23:00:04 +00007405
Don Skidmore082757a2011-07-21 05:55:00 +00007406void ixgbe_do_reset(struct net_device *netdev)
7407{
7408 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7409
7410 if (netif_running(netdev))
7411 ixgbe_reinit_locked(adapter);
7412 else
7413 ixgbe_reset(adapter);
7414}
7415
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007416static netdev_features_t ixgbe_fix_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
7421#ifdef CONFIG_DCB
7422 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED)
7423 data &= ~NETIF_F_HW_VLAN_RX;
7424#endif
7425
7426 /* return error if RXHASH is being enabled when RSS is not supported */
7427 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
7428 data &= ~NETIF_F_RXHASH;
7429
7430 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
7431 if (!(data & NETIF_F_RXCSUM))
7432 data &= ~NETIF_F_LRO;
7433
7434 /* Turn off LRO if not RSC capable or invalid ITR settings */
7435 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)) {
7436 data &= ~NETIF_F_LRO;
7437 } else if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
7438 (adapter->rx_itr_setting != 1 &&
7439 adapter->rx_itr_setting > IXGBE_MAX_RSC_INT_RATE)) {
7440 data &= ~NETIF_F_LRO;
7441 e_info(probe, "rx-usecs set too low, not enabling RSC\n");
7442 }
7443
7444 return data;
7445}
7446
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007447static int ixgbe_set_features(struct net_device *netdev,
7448 netdev_features_t data)
Don Skidmore082757a2011-07-21 05:55:00 +00007449{
7450 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7451 bool need_reset = false;
7452
Don Skidmore082757a2011-07-21 05:55:00 +00007453 /* Make sure RSC matches LRO, reset if change */
7454 if (!!(data & NETIF_F_LRO) !=
7455 !!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
7456 adapter->flags2 ^= IXGBE_FLAG2_RSC_ENABLED;
7457 switch (adapter->hw.mac.type) {
7458 case ixgbe_mac_X540:
7459 case ixgbe_mac_82599EB:
7460 need_reset = true;
7461 break;
7462 default:
7463 break;
7464 }
7465 }
7466
7467 /*
7468 * Check if Flow Director n-tuple support was enabled or disabled. If
7469 * the state changed, we need to reset.
7470 */
7471 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
7472 /* turn off ATR, enable perfect filters and reset */
7473 if (data & NETIF_F_NTUPLE) {
7474 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7475 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7476 need_reset = true;
7477 }
7478 } else if (!(data & NETIF_F_NTUPLE)) {
7479 /* turn off Flow Director, set ATR and reset */
7480 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7481 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
7482 !(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
7483 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7484 need_reset = true;
7485 }
7486
7487 if (need_reset)
7488 ixgbe_do_reset(netdev);
7489
7490 return 0;
7491
7492}
7493
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007494static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00007495 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007496 .ndo_stop = ixgbe_close,
7497 .ndo_start_xmit = ixgbe_xmit_frame,
7498 .ndo_select_queue = ixgbe_select_queue,
7499 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007500 .ndo_validate_addr = eth_validate_addr,
7501 .ndo_set_mac_address = ixgbe_set_mac,
7502 .ndo_change_mtu = ixgbe_change_mtu,
7503 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007504 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
7505 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00007506 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00007507 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
7508 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
7509 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Greg Rosede4c7f62011-09-29 05:57:33 +00007510 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00007511 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00007512 .ndo_get_stats64 = ixgbe_get_stats64,
John Fastabend24095aa2011-02-23 05:58:03 +00007513 .ndo_setup_tc = ixgbe_setup_tc,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007514#ifdef CONFIG_NET_POLL_CONTROLLER
7515 .ndo_poll_controller = ixgbe_netpoll,
7516#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007517#ifdef IXGBE_FCOE
7518 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007519 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007520 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007521 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7522 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007523 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00007524 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00007525#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00007526 .ndo_set_features = ixgbe_set_features,
7527 .ndo_fix_features = ixgbe_fix_features,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007528};
7529
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007530static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
7531 const struct ixgbe_info *ii)
7532{
7533#ifdef CONFIG_PCI_IOV
7534 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007535
Greg Rosec6bda302011-08-24 02:37:55 +00007536 if (hw->mac.type == ixgbe_mac_82598EB)
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007537 return;
7538
7539 /* The 82599 supports up to 64 VFs per physical function
7540 * but this implementation limits allocation to 63 so that
7541 * basic networking resources are still available to the
7542 * physical function
7543 */
7544 adapter->num_vfs = (max_vfs > 63) ? 63 : max_vfs;
Greg Rosec6bda302011-08-24 02:37:55 +00007545 ixgbe_enable_sriov(adapter, ii);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007546#endif /* CONFIG_PCI_IOV */
7547}
7548
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007549/**
Auke Kok9a799d72007-09-15 14:07:45 -07007550 * ixgbe_probe - Device Initialization Routine
7551 * @pdev: PCI device information struct
7552 * @ent: entry in ixgbe_pci_tbl
7553 *
7554 * Returns 0 on success, negative on failure
7555 *
7556 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7557 * The OS initialization, configuring of the adapter private structure,
7558 * and a hardware reset occur.
7559 **/
7560static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007561 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007562{
7563 struct net_device *netdev;
7564 struct ixgbe_adapter *adapter = NULL;
7565 struct ixgbe_hw *hw;
7566 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007567 static int cards_found;
7568 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00007569 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007570 unsigned int indices = num_possible_cpus();
Yi Zoueacd73f2009-05-13 13:11:06 +00007571#ifdef IXGBE_FCOE
7572 u16 device_caps;
7573#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007574 u32 eec;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007575 u16 wol_cap;
Auke Kok9a799d72007-09-15 14:07:45 -07007576
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007577 /* Catch broken hardware that put the wrong VF device ID in
7578 * the PCIe SR-IOV capability.
7579 */
7580 if (pdev->is_virtfn) {
7581 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7582 pci_name(pdev), pdev->vendor, pdev->device);
7583 return -EINVAL;
7584 }
7585
gouji-new9ce77662009-05-06 10:44:45 +00007586 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007587 if (err)
7588 return err;
7589
Nick Nunley1b507732010-04-27 13:10:27 +00007590 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7591 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007592 pci_using_dac = 1;
7593 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007594 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007595 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007596 err = dma_set_coherent_mask(&pdev->dev,
7597 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007598 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007599 dev_err(&pdev->dev,
7600 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007601 goto err_dma;
7602 }
7603 }
7604 pci_using_dac = 0;
7605 }
7606
gouji-new9ce77662009-05-06 10:44:45 +00007607 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007608 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007609 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007610 dev_err(&pdev->dev,
7611 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007612 goto err_pci_reg;
7613 }
7614
Frans Pop19d5afd2009-10-02 10:04:12 -07007615 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007616
Auke Kok9a799d72007-09-15 14:07:45 -07007617 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007618 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007619
John Fastabende901acd2011-04-26 07:26:08 +00007620#ifdef CONFIG_IXGBE_DCB
7621 indices *= MAX_TRAFFIC_CLASS;
7622#endif
7623
John Fastabendc85a2612010-02-25 23:15:21 +00007624 if (ii->mac == ixgbe_mac_82598EB)
7625 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7626 else
7627 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7628
John Fastabende901acd2011-04-26 07:26:08 +00007629#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007630 indices += min_t(unsigned int, num_possible_cpus(),
7631 IXGBE_MAX_FCOE_INDICES);
7632#endif
John Fastabendc85a2612010-02-25 23:15:21 +00007633 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007634 if (!netdev) {
7635 err = -ENOMEM;
7636 goto err_alloc_etherdev;
7637 }
7638
Auke Kok9a799d72007-09-15 14:07:45 -07007639 SET_NETDEV_DEV(netdev, &pdev->dev);
7640
Auke Kok9a799d72007-09-15 14:07:45 -07007641 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007642 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007643
7644 adapter->netdev = netdev;
7645 adapter->pdev = pdev;
7646 hw = &adapter->hw;
7647 hw->back = adapter;
7648 adapter->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
7649
Jeff Kirsher05857982008-09-11 19:57:00 -07007650 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007651 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007652 if (!hw->hw_addr) {
7653 err = -EIO;
7654 goto err_ioremap;
7655 }
7656
7657 for (i = 1; i <= 5; i++) {
7658 if (pci_resource_len(pdev, i) == 0)
7659 continue;
7660 }
7661
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007662 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007663 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007664 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007665 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007666
Auke Kok9a799d72007-09-15 14:07:45 -07007667 adapter->bd_number = cards_found;
7668
Auke Kok9a799d72007-09-15 14:07:45 -07007669 /* Setup hw api */
7670 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007671 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007672
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007673 /* EEPROM */
7674 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7675 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7676 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7677 if (!(eec & (1 << 8)))
7678 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7679
7680 /* PHY */
7681 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007682 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007683 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7684 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7685 hw->phy.mdio.mmds = 0;
7686 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7687 hw->phy.mdio.dev = netdev;
7688 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7689 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007690
Don Skidmore8ca783a2009-05-26 20:40:47 -07007691 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007692
7693 /* setup the private structure */
7694 err = ixgbe_sw_init(adapter);
7695 if (err)
7696 goto err_sw_init;
7697
Don Skidmoree86bff02010-02-11 04:14:08 +00007698 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007699 switch (adapter->hw.mac.type) {
7700 case ixgbe_mac_82599EB:
7701 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007702 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007703 break;
7704 default:
7705 break;
7706 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007707
Don Skidmorebf069c92009-05-07 10:39:54 +00007708 /*
7709 * If there is a fan on this device and it has failed log the
7710 * failure.
7711 */
7712 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7713 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7714 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007715 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007716 }
7717
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00007718 if (allow_unsupported_sfp)
7719 hw->allow_unsupported_sfp = allow_unsupported_sfp;
7720
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007721 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007722 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007723 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007724 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007725 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7726 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007727 err = 0;
7728 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007729 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007730 "module type was detected.\n");
7731 e_dev_err("Reload the driver after installing a supported "
7732 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007733 goto err_sw_init;
7734 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007735 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007736 goto err_sw_init;
7737 }
7738
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007739 ixgbe_probe_vf(adapter, ii);
7740
Emil Tantilov396e7992010-07-01 20:05:12 +00007741 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007742 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00007743 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00007744 NETIF_F_HW_VLAN_TX |
7745 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00007746 NETIF_F_HW_VLAN_FILTER |
7747 NETIF_F_TSO |
7748 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00007749 NETIF_F_RXHASH |
7750 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007751
Don Skidmore082757a2011-07-21 05:55:00 +00007752 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007753
Don Skidmore58be7662011-04-12 09:42:11 +00007754 switch (adapter->hw.mac.type) {
7755 case ixgbe_mac_82599EB:
7756 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007757 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00007758 netdev->hw_features |= NETIF_F_SCTP_CSUM |
7759 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00007760 break;
7761 default:
7762 break;
7763 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007764
Jeff Kirsherad31c402008-06-05 04:05:30 -07007765 netdev->vlan_features |= NETIF_F_TSO;
7766 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007767 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007768 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007769 netdev->vlan_features |= NETIF_F_SG;
7770
Jiri Pirko01789342011-08-16 06:29:00 +00007771 netdev->priv_flags |= IFF_UNICAST_FLT;
7772
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007773 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7774 adapter->flags &= ~(IXGBE_FLAG_RSS_ENABLED |
7775 IXGBE_FLAG_DCB_ENABLED);
Alexander Duyck2f90b862008-11-20 20:52:10 -08007776
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007777#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007778 netdev->dcbnl_ops = &dcbnl_ops;
7779#endif
7780
Yi Zoueacd73f2009-05-13 13:11:06 +00007781#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007782 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007783 if (hw->mac.ops.get_device_caps) {
7784 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007785 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7786 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007787 }
7788 }
Yi Zou5e09d7f2010-07-19 13:59:52 +00007789 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
7790 netdev->vlan_features |= NETIF_F_FCOE_CRC;
7791 netdev->vlan_features |= NETIF_F_FSO;
7792 netdev->vlan_features |= NETIF_F_FCOE_MTU;
7793 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007794#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007795 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007796 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007797 netdev->vlan_features |= NETIF_F_HIGHDMA;
7798 }
Auke Kok9a799d72007-09-15 14:07:45 -07007799
Don Skidmore082757a2011-07-21 05:55:00 +00007800 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
7801 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007802 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007803 netdev->features |= NETIF_F_LRO;
7804
Auke Kok9a799d72007-09-15 14:07:45 -07007805 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007806 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007807 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007808 err = -EIO;
7809 goto err_eeprom;
7810 }
7811
7812 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7813 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7814
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007815 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007816 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007817 err = -EIO;
7818 goto err_eeprom;
7819 }
7820
Alexander Duyck70864002011-04-27 09:13:56 +00007821 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
7822 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007823
Alexander Duyck70864002011-04-27 09:13:56 +00007824 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7825 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007826
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007827 err = ixgbe_init_interrupt_scheme(adapter);
7828 if (err)
7829 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007830
Don Skidmore082757a2011-07-21 05:55:00 +00007831 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
7832 netdev->hw_features &= ~NETIF_F_RXHASH;
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007833 netdev->features &= ~NETIF_F_RXHASH;
Don Skidmore082757a2011-07-21 05:55:00 +00007834 }
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007835
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007836 /* WOL not supported for all but the following */
7837 adapter->wol = 0;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007838 switch (pdev->device) {
Don Skidmore0b077fe2010-12-03 03:32:13 +00007839 case IXGBE_DEV_ID_82599_SFP:
Don Skidmore0e22d042011-12-10 06:49:43 +00007840 /* Only these subdevice supports WOL */
7841 switch (pdev->subsystem_device) {
7842 case IXGBE_SUBDEV_ID_82599_560FLR:
7843 /* only support first port */
7844 if (hw->bus.func != 0)
7845 break;
7846 case IXGBE_SUBDEV_ID_82599_SFP:
Andy Gospodarek9417c462011-07-16 07:31:33 +00007847 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0e22d042011-12-10 06:49:43 +00007848 break;
7849 }
Don Skidmore0b077fe2010-12-03 03:32:13 +00007850 break;
Alexander Duyck50d6c682010-11-16 19:27:05 -08007851 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7852 /* All except this subdevice support WOL */
Don Skidmore0b077fe2010-12-03 03:32:13 +00007853 if (pdev->subsystem_device != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
Andy Gospodarek9417c462011-07-16 07:31:33 +00007854 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0b077fe2010-12-03 03:32:13 +00007855 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007856 case IXGBE_DEV_ID_82599_KX4:
Andy Gospodarek9417c462011-07-16 07:31:33 +00007857 adapter->wol = IXGBE_WUFC_MAG;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007858 break;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007859 case IXGBE_DEV_ID_X540T:
7860 /* Check eeprom to see if it is enabled */
7861 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
7862 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
7863
7864 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
7865 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7866 (hw->bus.func == 0)))
7867 adapter->wol = IXGBE_WUFC_MAG;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007868 break;
7869 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007870 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7871
Emil Tantilov15e52092011-09-29 05:01:29 +00007872 /* save off EEPROM version number */
7873 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
7874 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
7875
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007876 /* pick up the PCI bus settings for reporting later */
7877 hw->mac.ops.get_bus_info(hw);
7878
Auke Kok9a799d72007-09-15 14:07:45 -07007879 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007880 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007881 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7882 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007883 "Unknown"),
7884 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7885 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7886 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7887 "Unknown"),
7888 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007889
7890 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7891 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007892 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007893 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007894 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007895 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007896 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007897 else
Don Skidmore289700db2010-12-03 03:32:58 +00007898 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7899 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007900
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007901 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007902 e_dev_warn("PCI-Express bandwidth available for this card is "
7903 "not sufficient for optimal performance.\n");
7904 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7905 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007906 }
7907
Auke Kok9a799d72007-09-15 14:07:45 -07007908 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007909 err = hw->mac.ops.start_hw(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007910
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007911 if (err == IXGBE_ERR_EEPROM_VERSION) {
7912 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007913 e_dev_warn("This device is a pre-production adapter/LOM. "
7914 "Please be aware there may be issues associated "
7915 "with your hardware. If you are experiencing "
7916 "problems please contact your Intel or hardware "
7917 "representative who provided you with this "
7918 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007919 }
Auke Kok9a799d72007-09-15 14:07:45 -07007920 strcpy(netdev->name, "eth%d");
7921 err = register_netdev(netdev);
7922 if (err)
7923 goto err_register;
7924
Emil Tantilov93d3ce82011-10-19 07:59:55 +00007925 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7926 if (hw->mac.ops.disable_tx_laser &&
7927 ((hw->phy.multispeed_fiber) ||
7928 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
7929 (hw->mac.type == ixgbe_mac_82599EB))))
7930 hw->mac.ops.disable_tx_laser(hw);
7931
Jesse Brandeburg54386462009-04-17 20:44:27 +00007932 /* carrier off reporting is important to ethtool even BEFORE open */
7933 netif_carrier_off(netdev);
7934
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007935#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007936 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007937 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007938 ixgbe_setup_dca(adapter);
7939 }
7940#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007941 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007942 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007943 for (i = 0; i < adapter->num_vfs; i++)
7944 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7945 }
7946
Jacob Keller2466dd92011-09-08 03:50:54 +00007947 /* firmware requires driver version to be 0xFFFFFFFF
7948 * since os does not support feature
7949 */
Emil Tantilov9612de92011-05-07 07:40:20 +00007950 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00007951 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
7952 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00007953
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007954 /* add san mac addr to netdev */
7955 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007956
Neerav Parikhea818752012-01-04 20:23:40 +00007957 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07007958 cards_found++;
7959 return 0;
7960
7961err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007962 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007963 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007964err_sw_init:
7965err_eeprom:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007966 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7967 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007968 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007969 iounmap(hw->hw_addr);
7970err_ioremap:
7971 free_netdev(netdev);
7972err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007973 pci_release_selected_regions(pdev,
7974 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007975err_pci_reg:
7976err_dma:
7977 pci_disable_device(pdev);
7978 return err;
7979}
7980
7981/**
7982 * ixgbe_remove - Device Removal Routine
7983 * @pdev: PCI device information struct
7984 *
7985 * ixgbe_remove is called by the PCI subsystem to alert the driver
7986 * that it should release a PCI device. The could be caused by a
7987 * Hot-Plug event, or because the driver is going to be removed from
7988 * memory.
7989 **/
7990static void __devexit ixgbe_remove(struct pci_dev *pdev)
7991{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007992 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7993 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007994
7995 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007996 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007997
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007998#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007999 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
8000 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
8001 dca_remove_requester(&pdev->dev);
8002 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
8003 }
8004
8005#endif
Yi Zou332d4a72009-05-13 13:11:53 +00008006#ifdef IXGBE_FCOE
8007 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
8008 ixgbe_cleanup_fcoe(adapter);
8009
8010#endif /* IXGBE_FCOE */
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00008011
8012 /* remove the added san mac */
8013 ixgbe_del_sanmac_netdev(netdev);
8014
Donald Skidmorec4900be2008-11-20 21:11:42 -08008015 if (netdev->reg_state == NETREG_REGISTERED)
8016 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008017
Greg Rosec6bda302011-08-24 02:37:55 +00008018 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
8019 if (!(ixgbe_check_vf_assignment(adapter)))
8020 ixgbe_disable_sriov(adapter);
8021 else
8022 e_dev_warn("Unloading driver while VFs are assigned "
8023 "- VFs will not be deallocated\n");
8024 }
Greg Rose1cdd1ec2010-01-09 02:26:46 +00008025
Alexander Duyck7a921c92009-05-06 10:43:28 +00008026 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08008027
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008028 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008029
8030 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00008031 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00008032 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07008033
Emil Tantilov849c4542010-06-03 16:53:41 +00008034 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08008035
Auke Kok9a799d72007-09-15 14:07:45 -07008036 free_netdev(netdev);
8037
Frans Pop19d5afd2009-10-02 10:04:12 -07008038 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008039
Auke Kok9a799d72007-09-15 14:07:45 -07008040 pci_disable_device(pdev);
8041}
8042
8043/**
8044 * ixgbe_io_error_detected - called when PCI error is detected
8045 * @pdev: Pointer to PCI device
8046 * @state: The current pci connection state
8047 *
8048 * This function is called after a PCI bus error affecting
8049 * this device has been detected.
8050 */
8051static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00008052 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07008053{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008054 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8055 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008056
Greg Rose83c61fa2011-09-07 05:59:35 +00008057#ifdef CONFIG_PCI_IOV
8058 struct pci_dev *bdev, *vfdev;
8059 u32 dw0, dw1, dw2, dw3;
8060 int vf, pos;
8061 u16 req_id, pf_func;
8062
8063 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
8064 adapter->num_vfs == 0)
8065 goto skip_bad_vf_detection;
8066
8067 bdev = pdev->bus->self;
8068 while (bdev && (bdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT))
8069 bdev = bdev->bus->self;
8070
8071 if (!bdev)
8072 goto skip_bad_vf_detection;
8073
8074 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
8075 if (!pos)
8076 goto skip_bad_vf_detection;
8077
8078 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
8079 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
8080 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
8081 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
8082
8083 req_id = dw1 >> 16;
8084 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
8085 if (!(req_id & 0x0080))
8086 goto skip_bad_vf_detection;
8087
8088 pf_func = req_id & 0x01;
8089 if ((pf_func & 1) == (pdev->devfn & 1)) {
8090 unsigned int device_id;
8091
8092 vf = (req_id & 0x7F) >> 1;
8093 e_dev_err("VF %d has caused a PCIe error\n", vf);
8094 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
8095 "%8.8x\tdw3: %8.8x\n",
8096 dw0, dw1, dw2, dw3);
8097 switch (adapter->hw.mac.type) {
8098 case ixgbe_mac_82599EB:
8099 device_id = IXGBE_82599_VF_DEVICE_ID;
8100 break;
8101 case ixgbe_mac_X540:
8102 device_id = IXGBE_X540_VF_DEVICE_ID;
8103 break;
8104 default:
8105 device_id = 0;
8106 break;
8107 }
8108
8109 /* Find the pci device of the offending VF */
8110 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID, device_id, NULL);
8111 while (vfdev) {
8112 if (vfdev->devfn == (req_id & 0xFF))
8113 break;
8114 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID,
8115 device_id, vfdev);
8116 }
8117 /*
8118 * There's a slim chance the VF could have been hot plugged,
8119 * so if it is no longer present we don't need to issue the
8120 * VFLR. Just clean up the AER in that case.
8121 */
8122 if (vfdev) {
8123 e_dev_err("Issuing VFLR to VF %d\n", vf);
8124 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
8125 }
8126
8127 pci_cleanup_aer_uncorrect_error_status(pdev);
8128 }
8129
8130 /*
8131 * Even though the error may have occurred on the other port
8132 * we still need to increment the vf error reference count for
8133 * both ports because the I/O resume function will be called
8134 * for both of them.
8135 */
8136 adapter->vferr_refcount++;
8137
8138 return PCI_ERS_RESULT_RECOVERED;
8139
8140skip_bad_vf_detection:
8141#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07008142 netif_device_detach(netdev);
8143
Breno Leitao3044b8d2009-05-06 10:44:26 +00008144 if (state == pci_channel_io_perm_failure)
8145 return PCI_ERS_RESULT_DISCONNECT;
8146
Auke Kok9a799d72007-09-15 14:07:45 -07008147 if (netif_running(netdev))
8148 ixgbe_down(adapter);
8149 pci_disable_device(pdev);
8150
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07008151 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07008152 return PCI_ERS_RESULT_NEED_RESET;
8153}
8154
8155/**
8156 * ixgbe_io_slot_reset - called after the pci bus has been reset.
8157 * @pdev: Pointer to PCI device
8158 *
8159 * Restart the card from scratch, as if from a cold-boot.
8160 */
8161static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
8162{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008163 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008164 pci_ers_result_t result;
8165 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07008166
gouji-new9ce77662009-05-06 10:44:45 +00008167 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00008168 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008169 result = PCI_ERS_RESULT_DISCONNECT;
8170 } else {
8171 pci_set_master(pdev);
8172 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00008173 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008174
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07008175 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008176
8177 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00008178 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008179 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07008180 }
Auke Kok9a799d72007-09-15 14:07:45 -07008181
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008182 err = pci_cleanup_aer_uncorrect_error_status(pdev);
8183 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00008184 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
8185 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008186 /* non-fatal, continue */
8187 }
Auke Kok9a799d72007-09-15 14:07:45 -07008188
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008189 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07008190}
8191
8192/**
8193 * ixgbe_io_resume - called when traffic can start flowing again.
8194 * @pdev: Pointer to PCI device
8195 *
8196 * This callback is called when the error recovery driver tells us that
8197 * its OK to resume normal operation.
8198 */
8199static void ixgbe_io_resume(struct pci_dev *pdev)
8200{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008201 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8202 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008203
Greg Rose83c61fa2011-09-07 05:59:35 +00008204#ifdef CONFIG_PCI_IOV
8205 if (adapter->vferr_refcount) {
8206 e_info(drv, "Resuming after VF err\n");
8207 adapter->vferr_refcount--;
8208 return;
8209 }
8210
8211#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00008212 if (netif_running(netdev))
8213 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008214
8215 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008216}
8217
8218static struct pci_error_handlers ixgbe_err_handler = {
8219 .error_detected = ixgbe_io_error_detected,
8220 .slot_reset = ixgbe_io_slot_reset,
8221 .resume = ixgbe_io_resume,
8222};
8223
8224static struct pci_driver ixgbe_driver = {
8225 .name = ixgbe_driver_name,
8226 .id_table = ixgbe_pci_tbl,
8227 .probe = ixgbe_probe,
8228 .remove = __devexit_p(ixgbe_remove),
8229#ifdef CONFIG_PM
8230 .suspend = ixgbe_suspend,
8231 .resume = ixgbe_resume,
8232#endif
8233 .shutdown = ixgbe_shutdown,
8234 .err_handler = &ixgbe_err_handler
8235};
8236
8237/**
8238 * ixgbe_init_module - Driver Registration Routine
8239 *
8240 * ixgbe_init_module is the first routine called when the driver is
8241 * loaded. All it does is register with the PCI subsystem.
8242 **/
8243static int __init ixgbe_init_module(void)
8244{
8245 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00008246 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00008247 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07008248
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008249#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008250 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008251#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008252
Auke Kok9a799d72007-09-15 14:07:45 -07008253 ret = pci_register_driver(&ixgbe_driver);
8254 return ret;
8255}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07008256
Auke Kok9a799d72007-09-15 14:07:45 -07008257module_init(ixgbe_init_module);
8258
8259/**
8260 * ixgbe_exit_module - Driver Exit Cleanup Routine
8261 *
8262 * ixgbe_exit_module is called just before the driver is removed
8263 * from memory.
8264 **/
8265static void __exit ixgbe_exit_module(void)
8266{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008267#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008268 dca_unregister_notify(&dca_notifier);
8269#endif
Auke Kok9a799d72007-09-15 14:07:45 -07008270 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08008271 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07008272}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008273
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008274#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008275static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008276 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008277{
8278 int ret_val;
8279
8280 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008281 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008282
8283 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
8284}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008285
Alexander Duyckb4533682009-03-31 21:32:42 +00008286#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00008287
Auke Kok9a799d72007-09-15 14:07:45 -07008288module_exit(ixgbe_exit_module);
8289
8290/* ixgbe_main.c */