blob: 18e474c25e61f6f74f6fa94c0d0d2f66217bf851 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore94971822012-01-06 03:24:16 +00004 Copyright(c) 1999 - 2012 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
Auke Kok9a799d72007-09-15 14:07:45 -070023 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28#include <linux/types.h>
29#include <linux/module.h>
30#include <linux/pci.h>
31#include <linux/netdevice.h>
32#include <linux/vmalloc.h>
33#include <linux/string.h>
34#include <linux/in.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000035#include <linux/interrupt.h>
Auke Kok9a799d72007-09-15 14:07:45 -070036#include <linux/ip.h>
37#include <linux/tcp.h>
Alexander Duyck897ab152011-05-27 05:31:47 +000038#include <linux/sctp.h>
Lucy Liu60127862009-07-22 14:07:33 +000039#include <linux/pkt_sched.h>
Auke Kok9a799d72007-09-15 14:07:45 -070040#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Auke Kok9a799d72007-09-15 14:07:45 -070042#include <net/checksum.h>
43#include <net/ip6_checksum.h>
44#include <linux/ethtool.h>
Jiri Pirko01789342011-08-16 06:29:00 +000045#include <linux/if.h>
Auke Kok9a799d72007-09-15 14:07:45 -070046#include <linux/if_vlan.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040047#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000048#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070049
50#include "ixgbe.h"
51#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000052#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000053#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070054
55char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070056static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000057 "Intel(R) 10 Gigabit PCI Express Network Driver";
Neerav Parikhea818752012-01-04 20:23:40 +000058char ixgbe_default_device_descr[] =
59 "Intel(R) 10 Gigabit Network Connection";
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000060#define MAJ 3
Don Skidmore19d478b2011-10-07 03:53:51 +000061#define MIN 6
62#define BUILD 7
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000063#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
Don Skidmorea38a1042011-05-20 03:05:14 +000064 __stringify(BUILD) "-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070065const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000066static const char ixgbe_copyright[] =
Don Skidmore94971822012-01-06 03:24:16 +000067 "Copyright (c) 1999-2012 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070068
69static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070070 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000071 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e2010-11-16 19:27:16 -080072 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070073};
74
75/* ixgbe_pci_tbl - PCI Device ID Table
76 *
77 * Wildcard entries (PCI_ANY_ID) should come last
78 * Last entry must be all 0s
79 *
80 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
81 * Class, Class Mask, private data (not used) }
82 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000083static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Alexander Duyck54239c62011-07-15 03:06:06 +000084 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 },
85 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 },
86 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 },
87 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 },
88 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 },
89 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 },
90 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 },
91 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 },
92 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 },
93 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 },
94 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 },
95 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 },
96 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 },
97 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 },
98 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 },
99 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 },
100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 },
101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 },
102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 },
103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 },
104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 },
105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 },
106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 },
107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 },
108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 },
109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 },
Emil Tantilov7d145282011-09-08 08:30:14 +0000110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 },
Emil Tantilov9e791e42011-11-04 06:43:29 +0000111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 },
Auke Kok9a799d72007-09-15 14:07:45 -0700112 /* required last entry */
113 {0, }
114};
115MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
116
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400117#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800118static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000119 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800120static struct notifier_block dca_notifier = {
121 .notifier_call = ixgbe_notify_dca,
122 .next = NULL,
123 .priority = 0
124};
125#endif
126
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000127#ifdef CONFIG_PCI_IOV
128static unsigned int max_vfs;
129module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000130MODULE_PARM_DESC(max_vfs,
131 "Maximum number of virtual functions to allocate per physical function");
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000132#endif /* CONFIG_PCI_IOV */
133
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +0000134static unsigned int allow_unsupported_sfp;
135module_param(allow_unsupported_sfp, uint, 0);
136MODULE_PARM_DESC(allow_unsupported_sfp,
137 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
138
Auke Kok9a799d72007-09-15 14:07:45 -0700139MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
140MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
141MODULE_LICENSE("GPL");
142MODULE_VERSION(DRV_VERSION);
143
144#define DEFAULT_DEBUG_LEVEL_SHIFT 3
145
Alexander Duyck70864002011-04-27 09:13:56 +0000146static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
147{
148 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
149 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
150 schedule_work(&adapter->service_task);
151}
152
153static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
154{
155 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
156
Stephen Hemminger52f33af2011-12-22 16:34:52 +0000157 /* flush memory to make sure state is correct before next watchdog */
Alexander Duyck70864002011-04-27 09:13:56 +0000158 smp_mb__before_clear_bit();
159 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
160}
161
Taku Izumidcd79ae2010-04-27 14:39:53 +0000162struct ixgbe_reg_info {
163 u32 ofs;
164 char *name;
165};
166
167static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
168
169 /* General Registers */
170 {IXGBE_CTRL, "CTRL"},
171 {IXGBE_STATUS, "STATUS"},
172 {IXGBE_CTRL_EXT, "CTRL_EXT"},
173
174 /* Interrupt Registers */
175 {IXGBE_EICR, "EICR"},
176
177 /* RX Registers */
178 {IXGBE_SRRCTL(0), "SRRCTL"},
179 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
180 {IXGBE_RDLEN(0), "RDLEN"},
181 {IXGBE_RDH(0), "RDH"},
182 {IXGBE_RDT(0), "RDT"},
183 {IXGBE_RXDCTL(0), "RXDCTL"},
184 {IXGBE_RDBAL(0), "RDBAL"},
185 {IXGBE_RDBAH(0), "RDBAH"},
186
187 /* TX Registers */
188 {IXGBE_TDBAL(0), "TDBAL"},
189 {IXGBE_TDBAH(0), "TDBAH"},
190 {IXGBE_TDLEN(0), "TDLEN"},
191 {IXGBE_TDH(0), "TDH"},
192 {IXGBE_TDT(0), "TDT"},
193 {IXGBE_TXDCTL(0), "TXDCTL"},
194
195 /* List Terminator */
196 {}
197};
198
199
200/*
201 * ixgbe_regdump - register printout routine
202 */
203static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
204{
205 int i = 0, j = 0;
206 char rname[16];
207 u32 regs[64];
208
209 switch (reginfo->ofs) {
210 case IXGBE_SRRCTL(0):
211 for (i = 0; i < 64; i++)
212 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
213 break;
214 case IXGBE_DCA_RXCTRL(0):
215 for (i = 0; i < 64; i++)
216 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
217 break;
218 case IXGBE_RDLEN(0):
219 for (i = 0; i < 64; i++)
220 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
221 break;
222 case IXGBE_RDH(0):
223 for (i = 0; i < 64; i++)
224 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
225 break;
226 case IXGBE_RDT(0):
227 for (i = 0; i < 64; i++)
228 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
229 break;
230 case IXGBE_RXDCTL(0):
231 for (i = 0; i < 64; i++)
232 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
233 break;
234 case IXGBE_RDBAL(0):
235 for (i = 0; i < 64; i++)
236 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
237 break;
238 case IXGBE_RDBAH(0):
239 for (i = 0; i < 64; i++)
240 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
241 break;
242 case IXGBE_TDBAL(0):
243 for (i = 0; i < 64; i++)
244 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
245 break;
246 case IXGBE_TDBAH(0):
247 for (i = 0; i < 64; i++)
248 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
249 break;
250 case IXGBE_TDLEN(0):
251 for (i = 0; i < 64; i++)
252 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
253 break;
254 case IXGBE_TDH(0):
255 for (i = 0; i < 64; i++)
256 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
257 break;
258 case IXGBE_TDT(0):
259 for (i = 0; i < 64; i++)
260 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
261 break;
262 case IXGBE_TXDCTL(0):
263 for (i = 0; i < 64; i++)
264 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
265 break;
266 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000267 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000268 IXGBE_READ_REG(hw, reginfo->ofs));
269 return;
270 }
271
272 for (i = 0; i < 8; i++) {
273 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000274 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000275 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000276 pr_cont(" %08x", regs[i*8+j]);
277 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000278 }
279
280}
281
282/*
283 * ixgbe_dump - Print registers, tx-rings and rx-rings
284 */
285static void ixgbe_dump(struct ixgbe_adapter *adapter)
286{
287 struct net_device *netdev = adapter->netdev;
288 struct ixgbe_hw *hw = &adapter->hw;
289 struct ixgbe_reg_info *reginfo;
290 int n = 0;
291 struct ixgbe_ring *tx_ring;
292 struct ixgbe_tx_buffer *tx_buffer_info;
293 union ixgbe_adv_tx_desc *tx_desc;
294 struct my_u0 { u64 a; u64 b; } *u0;
295 struct ixgbe_ring *rx_ring;
296 union ixgbe_adv_rx_desc *rx_desc;
297 struct ixgbe_rx_buffer *rx_buffer_info;
298 u32 staterr;
299 int i = 0;
300
301 if (!netif_msg_hw(adapter))
302 return;
303
304 /* Print netdevice Info */
305 if (netdev) {
306 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000307 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000308 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000309 pr_info("%-15s %016lX %016lX %016lX\n",
310 netdev->name,
311 netdev->state,
312 netdev->trans_start,
313 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000314 }
315
316 /* Print Registers */
317 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000318 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000319 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
320 reginfo->name; reginfo++) {
321 ixgbe_regdump(hw, reginfo);
322 }
323
324 /* Print TX Ring Summary */
325 if (!netdev || !netif_running(netdev))
326 goto exit;
327
328 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000329 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000330 for (n = 0; n < adapter->num_tx_queues; n++) {
331 tx_ring = adapter->tx_ring[n];
332 tx_buffer_info =
333 &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Alexander Duyckd3d00232011-07-15 02:31:25 +0000334 pr_info(" %5d %5X %5X %016llX %04X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000335 n, tx_ring->next_to_use, tx_ring->next_to_clean,
336 (u64)tx_buffer_info->dma,
337 tx_buffer_info->length,
338 tx_buffer_info->next_to_watch,
339 (u64)tx_buffer_info->time_stamp);
340 }
341
342 /* Print TX Rings */
343 if (!netif_msg_tx_done(adapter))
344 goto rx_ring_summary;
345
346 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
347
348 /* Transmit Descriptor Formats
349 *
350 * Advanced Transmit Descriptor
351 * +--------------------------------------------------------------+
352 * 0 | Buffer Address [63:0] |
353 * +--------------------------------------------------------------+
354 * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
355 * +--------------------------------------------------------------+
356 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
357 */
358
359 for (n = 0; n < adapter->num_tx_queues; n++) {
360 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000361 pr_info("------------------------------------\n");
362 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
363 pr_info("------------------------------------\n");
364 pr_info("T [desc] [address 63:0 ] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000365 "[PlPOIdStDDt Ln] [bi->dma ] "
366 "leng ntw timestamp bi->skb\n");
367
368 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duyck31f05a22010-08-19 13:40:31 +0000369 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000370 tx_buffer_info = &tx_ring->tx_buffer_info[i];
371 u0 = (struct my_u0 *)tx_desc;
Joe Perchesc7689572010-09-07 21:35:17 +0000372 pr_info("T [0x%03X] %016llX %016llX %016llX"
Alexander Duyckd3d00232011-07-15 02:31:25 +0000373 " %04X %p %016llX %p", i,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000374 le64_to_cpu(u0->a),
375 le64_to_cpu(u0->b),
376 (u64)tx_buffer_info->dma,
377 tx_buffer_info->length,
378 tx_buffer_info->next_to_watch,
379 (u64)tx_buffer_info->time_stamp,
380 tx_buffer_info->skb);
381 if (i == tx_ring->next_to_use &&
382 i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000383 pr_cont(" NTC/U\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000384 else if (i == tx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000385 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000386 else if (i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000387 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000388 else
Joe Perchesc7689572010-09-07 21:35:17 +0000389 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000390
391 if (netif_msg_pktdata(adapter) &&
392 tx_buffer_info->dma != 0)
393 print_hex_dump(KERN_INFO, "",
394 DUMP_PREFIX_ADDRESS, 16, 1,
395 phys_to_virt(tx_buffer_info->dma),
396 tx_buffer_info->length, true);
397 }
398 }
399
400 /* Print RX Rings Summary */
401rx_ring_summary:
402 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000403 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000404 for (n = 0; n < adapter->num_rx_queues; n++) {
405 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000406 pr_info("%5d %5X %5X\n",
407 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000408 }
409
410 /* Print RX Rings */
411 if (!netif_msg_rx_status(adapter))
412 goto exit;
413
414 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
415
416 /* Advanced Receive Descriptor (Read) Format
417 * 63 1 0
418 * +-----------------------------------------------------+
419 * 0 | Packet Buffer Address [63:1] |A0/NSE|
420 * +----------------------------------------------+------+
421 * 8 | Header Buffer Address [63:1] | DD |
422 * +-----------------------------------------------------+
423 *
424 *
425 * Advanced Receive Descriptor (Write-Back) Format
426 *
427 * 63 48 47 32 31 30 21 20 16 15 4 3 0
428 * +------------------------------------------------------+
429 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
430 * | Checksum Ident | | | | Type | Type |
431 * +------------------------------------------------------+
432 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
433 * +------------------------------------------------------+
434 * 63 48 47 32 31 20 19 0
435 */
436 for (n = 0; n < adapter->num_rx_queues; n++) {
437 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000438 pr_info("------------------------------------\n");
439 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
440 pr_info("------------------------------------\n");
441 pr_info("R [desc] [ PktBuf A0] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000442 "[ HeadBuf DD] [bi->dma ] [bi->skb] "
443 "<-- Adv Rx Read format\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000444 pr_info("RWB[desc] [PcsmIpSHl PtRs] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000445 "[vl er S cks ln] ---------------- [bi->skb] "
446 "<-- Adv Rx Write-Back format\n");
447
448 for (i = 0; i < rx_ring->count; i++) {
449 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +0000450 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000451 u0 = (struct my_u0 *)rx_desc;
452 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
453 if (staterr & IXGBE_RXD_STAT_DD) {
454 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000455 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000456 "%016llX ---------------- %p", i,
457 le64_to_cpu(u0->a),
458 le64_to_cpu(u0->b),
459 rx_buffer_info->skb);
460 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000461 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000462 "%016llX %016llX %p", i,
463 le64_to_cpu(u0->a),
464 le64_to_cpu(u0->b),
465 (u64)rx_buffer_info->dma,
466 rx_buffer_info->skb);
467
468 if (netif_msg_pktdata(adapter)) {
469 print_hex_dump(KERN_INFO, "",
470 DUMP_PREFIX_ADDRESS, 16, 1,
471 phys_to_virt(rx_buffer_info->dma),
472 rx_ring->rx_buf_len, true);
473
474 if (rx_ring->rx_buf_len
Alexander Duyck919e78a2011-08-26 09:52:38 +0000475 < IXGBE_RXBUFFER_2K)
Taku Izumidcd79ae2010-04-27 14:39:53 +0000476 print_hex_dump(KERN_INFO, "",
477 DUMP_PREFIX_ADDRESS, 16, 1,
478 phys_to_virt(
479 rx_buffer_info->page_dma +
480 rx_buffer_info->page_offset
481 ),
482 PAGE_SIZE/2, true);
483 }
484 }
485
486 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000487 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000488 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000489 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000490 else
Joe Perchesc7689572010-09-07 21:35:17 +0000491 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000492
493 }
494 }
495
496exit:
497 return;
498}
499
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800500static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
501{
502 u32 ctrl_ext;
503
504 /* Let firmware take over control of h/w */
505 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
506 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000507 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800508}
509
510static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
511{
512 u32 ctrl_ext;
513
514 /* Let firmware know the driver has taken over */
515 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
516 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000517 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800518}
Auke Kok9a799d72007-09-15 14:07:45 -0700519
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000520/*
521 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
522 * @adapter: pointer to adapter struct
523 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
524 * @queue: queue to map the corresponding interrupt to
525 * @msix_vector: the vector to map to the corresponding queue
526 *
527 */
528static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000529 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700530{
531 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000532 struct ixgbe_hw *hw = &adapter->hw;
533 switch (hw->mac.type) {
534 case ixgbe_mac_82598EB:
535 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
536 if (direction == -1)
537 direction = 0;
538 index = (((direction * 64) + queue) >> 2) & 0x1F;
539 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
540 ivar &= ~(0xFF << (8 * (queue & 0x3)));
541 ivar |= (msix_vector << (8 * (queue & 0x3)));
542 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
543 break;
544 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800545 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000546 if (direction == -1) {
547 /* other causes */
548 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
549 index = ((queue & 1) * 8);
550 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
551 ivar &= ~(0xFF << index);
552 ivar |= (msix_vector << index);
553 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
554 break;
555 } else {
556 /* tx or rx causes */
557 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
558 index = ((16 * (queue & 1)) + (8 * direction));
559 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
560 ivar &= ~(0xFF << index);
561 ivar |= (msix_vector << index);
562 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
563 break;
564 }
565 default:
566 break;
567 }
Auke Kok9a799d72007-09-15 14:07:45 -0700568}
569
Alexander Duyckfe49f042009-06-04 16:00:09 +0000570static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000571 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000572{
573 u32 mask;
574
Alexander Duyckbd508172010-11-16 19:27:03 -0800575 switch (adapter->hw.mac.type) {
576 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000577 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
578 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800579 break;
580 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800581 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000582 mask = (qmask & 0xFFFFFFFF);
583 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
584 mask = (qmask >> 32);
585 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800586 break;
587 default:
588 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000589 }
590}
591
Alexander Duyckd3d00232011-07-15 02:31:25 +0000592static inline void ixgbe_unmap_tx_resource(struct ixgbe_ring *ring,
593 struct ixgbe_tx_buffer *tx_buffer)
594{
595 if (tx_buffer->dma) {
596 if (tx_buffer->tx_flags & IXGBE_TX_FLAGS_MAPPED_AS_PAGE)
597 dma_unmap_page(ring->dev,
598 tx_buffer->dma,
599 tx_buffer->length,
600 DMA_TO_DEVICE);
601 else
602 dma_unmap_single(ring->dev,
603 tx_buffer->dma,
604 tx_buffer->length,
605 DMA_TO_DEVICE);
606 }
607 tx_buffer->dma = 0;
608}
609
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800610void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *tx_ring,
611 struct ixgbe_tx_buffer *tx_buffer_info)
Auke Kok9a799d72007-09-15 14:07:45 -0700612{
Alexander Duyckd3d00232011-07-15 02:31:25 +0000613 ixgbe_unmap_tx_resource(tx_ring, tx_buffer_info);
614 if (tx_buffer_info->skb)
Auke Kok9a799d72007-09-15 14:07:45 -0700615 dev_kfree_skb_any(tx_buffer_info->skb);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000616 tx_buffer_info->skb = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -0700617 /* tx_buffer_info must be completely set up in the transmit path */
618}
619
John Fastabendc84d3242010-11-16 19:27:12 -0800620static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700621{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700622 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800623 struct ixgbe_hw_stats *hwstats = &adapter->stats;
624 u32 data = 0;
625 u32 xoff[8] = {0};
626 int i;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700627
John Fastabendc84d3242010-11-16 19:27:12 -0800628 if ((hw->fc.current_mode == ixgbe_fc_full) ||
629 (hw->fc.current_mode == ixgbe_fc_rx_pause)) {
630 switch (hw->mac.type) {
631 case ixgbe_mac_82598EB:
632 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
633 break;
634 default:
635 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
636 }
637 hwstats->lxoffrxc += data;
638
639 /* refill credits (no tx hang) if we received xoff */
640 if (!data)
641 return;
642
643 for (i = 0; i < adapter->num_tx_queues; i++)
644 clear_bit(__IXGBE_HANG_CHECK_ARMED,
645 &adapter->tx_ring[i]->state);
646 return;
647 } else if (!(adapter->dcb_cfg.pfc_mode_enable))
648 return;
649
650 /* update stats for each tc, only valid with PFC enabled */
651 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
652 switch (hw->mac.type) {
653 case ixgbe_mac_82598EB:
654 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
655 break;
656 default:
657 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
658 }
659 hwstats->pxoffrxc[i] += xoff[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700660 }
661
John Fastabendc84d3242010-11-16 19:27:12 -0800662 /* disarm tx queues that have received xoff frames */
663 for (i = 0; i < adapter->num_tx_queues; i++) {
664 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendfb5475f2011-04-26 07:26:36 +0000665 u8 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800666
667 if (xoff[tc])
668 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
669 }
670}
671
672static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
673{
674 return ring->tx_stats.completed;
675}
676
677static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
678{
679 struct ixgbe_adapter *adapter = netdev_priv(ring->netdev);
680 struct ixgbe_hw *hw = &adapter->hw;
681
682 u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
683 u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
684
685 if (head != tail)
686 return (head < tail) ?
687 tail - head : (tail + ring->count - head);
688
689 return 0;
690}
691
692static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
693{
694 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
695 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
696 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
697 bool ret = false;
698
699 clear_check_for_tx_hang(tx_ring);
700
701 /*
702 * Check for a hung queue, but be thorough. This verifies
703 * that a transmit has been completed since the previous
704 * check AND there is at least one packet pending. The
705 * ARMED bit is set to indicate a potential hang. The
706 * bit is cleared if a pause frame is received to remove
707 * false hang detection due to PFC or 802.3x frames. By
708 * requiring this to fail twice we avoid races with
709 * pfc clearing the ARMED bit and conditions where we
710 * run the check_tx_hang logic with a transmit completion
711 * pending but without time to complete it yet.
712 */
713 if ((tx_done_old == tx_done) && tx_pending) {
714 /* make sure it is true for two checks in a row */
715 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
716 &tx_ring->state);
717 } else {
718 /* update completed stats and continue */
719 tx_ring->tx_stats.tx_done_old = tx_done;
720 /* reset the countdown */
721 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
722 }
723
724 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700725}
726
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000727/**
728 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
729 * @adapter: driver private struct
730 **/
731static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
732{
733
734 /* Do the reset outside of interrupt context */
735 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
736 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
737 ixgbe_service_event_schedule(adapter);
738 }
739}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700740
Auke Kok9a799d72007-09-15 14:07:45 -0700741/**
742 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000743 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700744 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700745 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000746static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000747 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700748{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000749 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000750 struct ixgbe_tx_buffer *tx_buffer;
751 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700752 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +0000753 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000754 u16 i = tx_ring->next_to_clean;
Auke Kok9a799d72007-09-15 14:07:45 -0700755
Alexander Duyckd3d00232011-07-15 02:31:25 +0000756 tx_buffer = &tx_ring->tx_buffer_info[i];
757 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800758
Alexander Duyck30065e62011-07-15 03:05:14 +0000759 for (; budget; budget--) {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000760 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -0700761
Alexander Duyckd3d00232011-07-15 02:31:25 +0000762 /* if next_to_watch is not set then there is no work pending */
763 if (!eop_desc)
764 break;
765
766 /* if DD is not set pending work has not been completed */
767 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
768 break;
769
770 /* count the packet as being completed */
771 tx_ring->tx_stats.completed++;
772
773 /* clear next_to_watch to prevent false hangs */
774 tx_buffer->next_to_watch = NULL;
775
776 /* prevent any other reads prior to eop_desc being verified */
777 rmb();
778
779 do {
780 ixgbe_unmap_tx_resource(tx_ring, tx_buffer);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800781 tx_desc->wb.status = 0;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000782 if (likely(tx_desc == eop_desc)) {
783 eop_desc = NULL;
784 dev_kfree_skb_any(tx_buffer->skb);
785 tx_buffer->skb = NULL;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800786
Alexander Duyckd3d00232011-07-15 02:31:25 +0000787 total_bytes += tx_buffer->bytecount;
788 total_packets += tx_buffer->gso_segs;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800789 }
790
Alexander Duyckd3d00232011-07-15 02:31:25 +0000791 tx_buffer++;
792 tx_desc++;
793 i++;
794 if (unlikely(i == tx_ring->count)) {
795 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700796
Alexander Duyckd3d00232011-07-15 02:31:25 +0000797 tx_buffer = tx_ring->tx_buffer_info;
798 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, 0);
799 }
800
801 } while (eop_desc);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800802 }
803
Auke Kok9a799d72007-09-15 14:07:45 -0700804 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000805 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -0800806 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +0000807 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000808 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +0000809 q_vector->tx.total_bytes += total_bytes;
810 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -0800811
John Fastabendc84d3242010-11-16 19:27:12 -0800812 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -0800813 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -0800814 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000815 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
John Fastabendc84d3242010-11-16 19:27:12 -0800816 e_err(drv, "Detected Tx Unit Hang\n"
817 " Tx Queue <%d>\n"
818 " TDH, TDT <%x>, <%x>\n"
819 " next_to_use <%x>\n"
820 " next_to_clean <%x>\n"
821 "tx_buffer_info[next_to_clean]\n"
822 " time_stamp <%lx>\n"
823 " jiffies <%lx>\n",
824 tx_ring->queue_index,
825 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
826 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +0000827 tx_ring->next_to_use, i,
828 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -0800829
830 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
831
832 e_info(probe,
833 "tx hang %d detected on queue %d, resetting adapter\n",
834 adapter->tx_timeout_count + 1, tx_ring->queue_index);
835
836 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000837 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -0800838
839 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +0000840 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -0800841 }
Auke Kok9a799d72007-09-15 14:07:45 -0700842
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800843#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +0000844 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +0000845 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800846 /* Make sure that anybody stopping the queue after this
847 * sees the new next_to_clean.
848 */
849 smp_mb();
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800850 if (__netif_subqueue_stopped(tx_ring->netdev, tx_ring->queue_index) &&
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800851 !test_bit(__IXGBE_DOWN, &adapter->state)) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800852 netif_wake_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800853 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800854 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800855 }
Auke Kok9a799d72007-09-15 14:07:45 -0700856
Alexander Duyck59224552011-08-31 00:01:06 +0000857 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -0700858}
859
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400860#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800861static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800862 struct ixgbe_ring *rx_ring,
863 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800864{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800865 struct ixgbe_hw *hw = &adapter->hw;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800866 u32 rxctrl;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800867 u8 reg_idx = rx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800868
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800869 rxctrl = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(reg_idx));
870 switch (hw->mac.type) {
871 case ixgbe_mac_82598EB:
872 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000873 rxctrl |= dca3_get_tag(rx_ring->dev, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800874 break;
875 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800876 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800877 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK_82599;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000878 rxctrl |= (dca3_get_tag(rx_ring->dev, cpu) <<
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800879 IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599);
880 break;
881 default:
882 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800883 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800884 rxctrl |= IXGBE_DCA_RXCTRL_DESC_DCA_EN;
885 rxctrl |= IXGBE_DCA_RXCTRL_HEAD_DCA_EN;
886 rxctrl &= ~(IXGBE_DCA_RXCTRL_DESC_RRO_EN);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800887 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800888}
889
890static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800891 struct ixgbe_ring *tx_ring,
892 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800893{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000894 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800895 u32 txctrl;
896 u8 reg_idx = tx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800897
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800898 switch (hw->mac.type) {
899 case ixgbe_mac_82598EB:
900 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(reg_idx));
901 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000902 txctrl |= dca3_get_tag(tx_ring->dev, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800903 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800904 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(reg_idx), txctrl);
905 break;
906 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800907 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800908 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx));
909 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK_82599;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000910 txctrl |= (dca3_get_tag(tx_ring->dev, cpu) <<
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800911 IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599);
912 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800913 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx), txctrl);
914 break;
915 default:
916 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800917 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800918}
919
920static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
921{
922 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000923 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800924 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800925
926 if (q_vector->cpu == cpu)
927 goto out_no_update;
928
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000929 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
930 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800931
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000932 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
933 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800934
935 q_vector->cpu = cpu;
936out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800937 put_cpu();
938}
939
940static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
941{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800942 int num_q_vectors;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800943 int i;
944
945 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
946 return;
947
Alexander Duycke35ec122009-05-21 13:07:12 +0000948 /* always use CB2 mode, difference is masked in the CB driver */
949 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
950
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800951 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
952 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
953 else
954 num_q_vectors = 1;
955
956 for (i = 0; i < num_q_vectors; i++) {
957 adapter->q_vector[i]->cpu = -1;
958 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800959 }
960}
961
962static int __ixgbe_notify_dca(struct device *dev, void *data)
963{
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800964 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800965 unsigned long event = *(unsigned long *)data;
966
Don Skidmore2a72c312011-07-20 02:27:05 +0000967 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800968 return 0;
969
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800970 switch (event) {
971 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -0700972 /* if we're already enabled, don't do it again */
973 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
974 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +0300975 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -0700976 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800977 ixgbe_setup_dca(adapter);
978 break;
979 }
980 /* Fall Through since DCA is disabled. */
981 case DCA_PROVIDER_REMOVE:
982 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
983 dca_remove_requester(dev);
984 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
985 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
986 }
987 break;
988 }
989
Denis V. Lunev652f0932008-03-27 14:39:17 +0300990 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800991}
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400992#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov67a74ee2011-04-23 04:50:40 +0000993
994static inline void ixgbe_rx_hash(union ixgbe_adv_rx_desc *rx_desc,
995 struct sk_buff *skb)
996{
997 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
998}
999
Auke Kok9a799d72007-09-15 14:07:45 -07001000/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001001 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
1002 * @adapter: address of board private structure
1003 * @rx_desc: advanced rx descriptor
1004 *
1005 * Returns : true if it is FCoE pkt
1006 */
1007static inline bool ixgbe_rx_is_fcoe(struct ixgbe_adapter *adapter,
1008 union ixgbe_adv_rx_desc *rx_desc)
1009{
1010 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1011
1012 return (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
1013 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1014 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1015 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1016}
1017
1018/**
Auke Kok9a799d72007-09-15 14:07:45 -07001019 * ixgbe_receive_skb - Send a completed packet up the stack
1020 * @adapter: board private structure
1021 * @skb: packet to send up
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001022 * @status: hardware indication of status of receive
1023 * @rx_ring: rx descriptor ring (for a specific queue) to setup
1024 * @rx_desc: rx descriptor
Auke Kok9a799d72007-09-15 14:07:45 -07001025 **/
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001026static void ixgbe_receive_skb(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001027 struct sk_buff *skb, u8 status,
1028 struct ixgbe_ring *ring,
1029 union ixgbe_adv_rx_desc *rx_desc)
Auke Kok9a799d72007-09-15 14:07:45 -07001030{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001031 struct ixgbe_adapter *adapter = q_vector->adapter;
1032 struct napi_struct *napi = &q_vector->napi;
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001033 bool is_vlan = (status & IXGBE_RXD_STAT_VP);
1034 u16 tag = le16_to_cpu(rx_desc->wb.upper.vlan);
Auke Kok9a799d72007-09-15 14:07:45 -07001035
Jesse Grossf62bbb52010-10-20 13:56:10 +00001036 if (is_vlan && (tag & VLAN_VID_MASK))
1037 __vlan_hwaccel_put_tag(skb, tag);
1038
1039 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1040 napi_gro_receive(napi, skb);
1041 else
1042 netif_rx(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001043}
1044
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001045/**
1046 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
1047 * @adapter: address of board private structure
1048 * @status_err: hardware indication of status of receive
1049 * @skb: skb currently being received and modified
Alexander Duyckff886df2011-06-11 01:45:13 +00001050 * @status_err: status error value of last descriptor in packet
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001051 **/
Auke Kok9a799d72007-09-15 14:07:45 -07001052static inline void ixgbe_rx_checksum(struct ixgbe_adapter *adapter,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001053 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckff886df2011-06-11 01:45:13 +00001054 struct sk_buff *skb,
1055 u32 status_err)
Auke Kok9a799d72007-09-15 14:07:45 -07001056{
Alexander Duyckff886df2011-06-11 01:45:13 +00001057 skb->ip_summed = CHECKSUM_NONE;
Auke Kok9a799d72007-09-15 14:07:45 -07001058
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001059 /* Rx csum disabled */
1060 if (!(adapter->flags & IXGBE_FLAG_RX_CSUM_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07001061 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001062
1063 /* if IP and error */
1064 if ((status_err & IXGBE_RXD_STAT_IPCS) &&
1065 (status_err & IXGBE_RXDADV_ERR_IPE)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001066 adapter->hw_csum_rx_error++;
1067 return;
1068 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001069
1070 if (!(status_err & IXGBE_RXD_STAT_L4CS))
1071 return;
1072
1073 if (status_err & IXGBE_RXDADV_ERR_TCPE) {
Don Skidmore8bae1b22009-07-23 18:00:39 +00001074 u16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1075
1076 /*
1077 * 82599 errata, UDP frames with a 0 checksum can be marked as
1078 * checksum errors.
1079 */
1080 if ((pkt_info & IXGBE_RXDADV_PKTTYPE_UDP) &&
1081 (adapter->hw.mac.type == ixgbe_mac_82599EB))
1082 return;
1083
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001084 adapter->hw_csum_rx_error++;
1085 return;
1086 }
1087
Auke Kok9a799d72007-09-15 14:07:45 -07001088 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001089 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001090}
1091
Alexander Duyck84ea2592010-11-16 19:26:49 -08001092static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001093{
1094 /*
1095 * Force memory writes to complete before letting h/w
1096 * know there are new descriptors to fetch. (Only
1097 * applicable for weak-ordered memory model archs,
1098 * such as IA-64).
1099 */
1100 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001101 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001102}
1103
Auke Kok9a799d72007-09-15 14:07:45 -07001104/**
1105 * ixgbe_alloc_rx_buffers - Replace used receive buffers; packet split
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001106 * @rx_ring: ring to place buffers on
1107 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001108 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001109void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001110{
Auke Kok9a799d72007-09-15 14:07:45 -07001111 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001112 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001113 struct sk_buff *skb;
1114 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001115
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001116 /* do nothing if no valid netdev defined */
1117 if (!rx_ring->netdev)
1118 return;
1119
Auke Kok9a799d72007-09-15 14:07:45 -07001120 while (cleaned_count--) {
Alexander Duyck31f05a22010-08-19 13:40:31 +00001121 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001122 bi = &rx_ring->rx_buffer_info[i];
1123 skb = bi->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001124
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001125 if (!skb) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001126 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001127 rx_ring->rx_buf_len);
Auke Kok9a799d72007-09-15 14:07:45 -07001128 if (!skb) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001129 rx_ring->rx_stats.alloc_rx_buff_failed++;
Auke Kok9a799d72007-09-15 14:07:45 -07001130 goto no_buffers;
1131 }
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001132 /* initialize queue mapping */
1133 skb_record_rx_queue(skb, rx_ring->queue_index);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001134 bi->skb = skb;
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001135 }
Auke Kok9a799d72007-09-15 14:07:45 -07001136
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001137 if (!bi->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001138 bi->dma = dma_map_single(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001139 skb->data,
Joe Perchese8e9f692010-09-07 21:34:53 +00001140 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00001141 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001142 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001143 rx_ring->rx_stats.alloc_rx_buff_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001144 bi->dma = 0;
1145 goto no_buffers;
1146 }
Auke Kok9a799d72007-09-15 14:07:45 -07001147 }
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001148
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001149 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001150 if (!bi->page) {
Eric Dumazet1f2149c2011-11-22 10:57:41 +00001151 bi->page = alloc_page(GFP_ATOMIC | __GFP_COLD);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001152 if (!bi->page) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001153 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001154 goto no_buffers;
1155 }
1156 }
1157
1158 if (!bi->page_dma) {
1159 /* use a half page if we're re-using */
1160 bi->page_offset ^= PAGE_SIZE / 2;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001161 bi->page_dma = dma_map_page(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001162 bi->page,
1163 bi->page_offset,
1164 PAGE_SIZE / 2,
1165 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001166 if (dma_mapping_error(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001167 bi->page_dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001168 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001169 bi->page_dma = 0;
1170 goto no_buffers;
1171 }
1172 }
1173
1174 /* Refresh the desc even if buffer_addrs didn't change
1175 * because each write-back erases this info. */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001176 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
1177 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001178 } else {
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001179 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
Alexander Duyck84418e32010-08-19 13:40:54 +00001180 rx_desc->read.hdr_addr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001181 }
1182
1183 i++;
1184 if (i == rx_ring->count)
1185 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001186 }
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001187
Auke Kok9a799d72007-09-15 14:07:45 -07001188no_buffers:
1189 if (rx_ring->next_to_use != i) {
1190 rx_ring->next_to_use = i;
Alexander Duyck84ea2592010-11-16 19:26:49 -08001191 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001192 }
1193}
1194
Alexander Duyckc267fc12010-11-16 19:27:00 -08001195static inline u16 ixgbe_get_hlen(union ixgbe_adv_rx_desc *rx_desc)
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001196{
Alexander Duyckc267fc12010-11-16 19:27:00 -08001197 /* HW will not DMA in data larger than the given buffer, even if it
1198 * parses the (NFS, of course) header to be larger. In that case, it
1199 * fills the header buffer and spills the rest into the page.
1200 */
1201 u16 hdr_info = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.hdr_info);
1202 u16 hlen = (hdr_info & IXGBE_RXDADV_HDRBUFLEN_MASK) >>
1203 IXGBE_RXDADV_HDRBUFLEN_SHIFT;
1204 if (hlen > IXGBE_RX_HDR_SIZE)
1205 hlen = IXGBE_RX_HDR_SIZE;
1206 return hlen;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001207}
1208
Alexander Duyckf8212f92009-04-27 22:42:37 +00001209/**
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001210 * ixgbe_merge_active_tail - merge active tail into lro skb
1211 * @tail: pointer to active tail in frag_list
Alexander Duyckf8212f92009-04-27 22:42:37 +00001212 *
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001213 * This function merges the length and data of an active tail into the
1214 * skb containing the frag_list. It resets the tail's pointer to the head,
1215 * but it leaves the heads pointer to tail intact.
Alexander Duyckf8212f92009-04-27 22:42:37 +00001216 **/
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001217static inline struct sk_buff *ixgbe_merge_active_tail(struct sk_buff *tail)
Alexander Duyckf8212f92009-04-27 22:42:37 +00001218{
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001219 struct sk_buff *head = IXGBE_CB(tail)->head;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001220
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001221 if (!head)
1222 return tail;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001223
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001224 head->len += tail->len;
1225 head->data_len += tail->len;
1226 head->truesize += tail->len;
Alexander Duyckaa801752010-11-16 19:27:02 -08001227
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001228 IXGBE_CB(tail)->head = NULL;
1229
1230 return head;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001231}
1232
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001233/**
1234 * ixgbe_add_active_tail - adds an active tail into the skb frag_list
1235 * @head: pointer to the start of the skb
1236 * @tail: pointer to active tail to add to frag_list
1237 *
1238 * This function adds an active tail to the end of the frag list. This tail
1239 * will still be receiving data so we cannot yet ad it's stats to the main
1240 * skb. That is done via ixgbe_merge_active_tail.
1241 **/
1242static inline void ixgbe_add_active_tail(struct sk_buff *head,
1243 struct sk_buff *tail)
Alexander Duyckaa801752010-11-16 19:27:02 -08001244{
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001245 struct sk_buff *old_tail = IXGBE_CB(head)->tail;
1246
1247 if (old_tail) {
1248 ixgbe_merge_active_tail(old_tail);
1249 old_tail->next = tail;
1250 } else {
1251 skb_shinfo(head)->frag_list = tail;
1252 }
1253
1254 IXGBE_CB(tail)->head = head;
1255 IXGBE_CB(head)->tail = tail;
1256}
1257
1258/**
1259 * ixgbe_close_active_frag_list - cleanup pointers on a frag_list skb
1260 * @head: pointer to head of an active frag list
1261 *
1262 * This function will clear the frag_tail_tracker pointer on an active
1263 * frag_list and returns true if the pointer was actually set
1264 **/
1265static inline bool ixgbe_close_active_frag_list(struct sk_buff *head)
1266{
1267 struct sk_buff *tail = IXGBE_CB(head)->tail;
1268
1269 if (!tail)
1270 return false;
1271
1272 ixgbe_merge_active_tail(tail);
1273
1274 IXGBE_CB(head)->tail = NULL;
1275
1276 return true;
1277}
1278
1279static void ixgbe_get_rsc_cnt(struct ixgbe_ring *rx_ring,
1280 union ixgbe_adv_rx_desc *rx_desc,
1281 struct sk_buff *skb)
1282{
1283 __le32 rsc_enabled;
1284 u32 rsc_cnt;
1285
1286 if (!ring_is_rsc_enabled(rx_ring))
1287 return;
1288
1289 rsc_enabled = rx_desc->wb.lower.lo_dword.data &
1290 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK);
1291
1292 /* If this is an RSC frame rsc_cnt should be non-zero */
1293 if (!rsc_enabled)
1294 return;
1295
1296 rsc_cnt = le32_to_cpu(rsc_enabled);
1297 rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT;
1298
1299 IXGBE_CB(skb)->append_cnt += rsc_cnt - 1;
Alexander Duyckaa801752010-11-16 19:27:02 -08001300}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001301
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001302static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001303 struct ixgbe_ring *rx_ring,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001304 int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001305{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001306 struct ixgbe_adapter *adapter = q_vector->adapter;
Auke Kok9a799d72007-09-15 14:07:45 -07001307 union ixgbe_adv_rx_desc *rx_desc, *next_rxd;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001308 struct ixgbe_rx_buffer *rx_buffer_info;
Auke Kok9a799d72007-09-15 14:07:45 -07001309 struct sk_buff *skb;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001310 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001311 const int current_node = numa_node_id();
Yi Zou3d8fd382009-06-08 14:38:44 +00001312#ifdef IXGBE_FCOE
1313 int ddp_bytes = 0;
1314#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001315 u32 staterr;
1316 u16 i;
1317 u16 cleaned_count = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001318
1319 i = rx_ring->next_to_clean;
Alexander Duyck31f05a22010-08-19 13:40:31 +00001320 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001321 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kok9a799d72007-09-15 14:07:45 -07001322
1323 while (staterr & IXGBE_RXD_STAT_DD) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001324 u32 upper_len = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001325
Milton Miller3c945e52010-02-19 17:44:42 +00001326 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kok9a799d72007-09-15 14:07:45 -07001327
Alexander Duyckc267fc12010-11-16 19:27:00 -08001328 rx_buffer_info = &rx_ring->rx_buffer_info[i];
1329
Auke Kok9a799d72007-09-15 14:07:45 -07001330 skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001331 rx_buffer_info->skb = NULL;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001332 prefetch(skb->data);
Auke Kok9a799d72007-09-15 14:07:45 -07001333
David S. Miller8decf862011-09-22 03:23:13 -04001334 /* linear means we are building an skb from multiple pages */
1335 if (!skb_is_nonlinear(skb)) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001336 u16 hlen;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001337 if (ring_is_ps_enabled(rx_ring)) {
1338 hlen = ixgbe_get_hlen(rx_desc);
1339 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
1340 } else {
1341 hlen = le16_to_cpu(rx_desc->wb.upper.length);
1342 }
1343
1344 skb_put(skb, hlen);
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001345
1346 /*
1347 * Delay unmapping of the first packet. It carries the
1348 * header information, HW may still access the header
1349 * after writeback. Only unmap it when EOP is reached
1350 */
1351 if (!IXGBE_CB(skb)->head) {
1352 IXGBE_CB(skb)->delay_unmap = true;
1353 IXGBE_CB(skb)->dma = rx_buffer_info->dma;
1354 } else {
1355 skb = ixgbe_merge_active_tail(skb);
1356 dma_unmap_single(rx_ring->dev,
1357 rx_buffer_info->dma,
1358 rx_ring->rx_buf_len,
1359 DMA_FROM_DEVICE);
1360 }
1361 rx_buffer_info->dma = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001362 } else {
1363 /* assume packet split since header is unmapped */
1364 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kok9a799d72007-09-15 14:07:45 -07001365 }
1366
1367 if (upper_len) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001368 dma_unmap_page(rx_ring->dev,
1369 rx_buffer_info->page_dma,
1370 PAGE_SIZE / 2,
1371 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001372 rx_buffer_info->page_dma = 0;
1373 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
Joe Perchese8e9f692010-09-07 21:34:53 +00001374 rx_buffer_info->page,
1375 rx_buffer_info->page_offset,
1376 upper_len);
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001377
Alexander Duyckc267fc12010-11-16 19:27:00 -08001378 if ((page_count(rx_buffer_info->page) == 1) &&
1379 (page_to_nid(rx_buffer_info->page) == current_node))
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001380 get_page(rx_buffer_info->page);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001381 else
1382 rx_buffer_info->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001383
1384 skb->len += upper_len;
1385 skb->data_len += upper_len;
Eric Dumazet98130642011-10-13 07:59:41 +00001386 skb->truesize += PAGE_SIZE / 2;
Auke Kok9a799d72007-09-15 14:07:45 -07001387 }
1388
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001389 ixgbe_get_rsc_cnt(rx_ring, rx_desc, skb);
1390
Auke Kok9a799d72007-09-15 14:07:45 -07001391 i++;
1392 if (i == rx_ring->count)
1393 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001394
Alexander Duyck31f05a22010-08-19 13:40:31 +00001395 next_rxd = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001396 prefetch(next_rxd);
Auke Kok9a799d72007-09-15 14:07:45 -07001397 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001398
Alexander Duyckc267fc12010-11-16 19:27:00 -08001399 if (!(staterr & IXGBE_RXD_STAT_EOP)) {
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001400 struct ixgbe_rx_buffer *next_buffer;
1401 u32 nextp;
1402
1403 if (IXGBE_CB(skb)->append_cnt) {
1404 nextp = staterr & IXGBE_RXDADV_NEXTP_MASK;
1405 nextp >>= IXGBE_RXDADV_NEXTP_SHIFT;
1406 } else {
1407 nextp = i;
1408 }
1409
1410 next_buffer = &rx_ring->rx_buffer_info[nextp];
1411
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001412 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001413 rx_buffer_info->skb = next_buffer->skb;
1414 rx_buffer_info->dma = next_buffer->dma;
1415 next_buffer->skb = skb;
1416 next_buffer->dma = 0;
1417 } else {
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001418 struct sk_buff *next_skb = next_buffer->skb;
1419 ixgbe_add_active_tail(skb, next_skb);
1420 IXGBE_CB(next_skb)->head = skb;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001421 }
Alexander Duyck5b7da512010-11-16 19:26:50 -08001422 rx_ring->rx_stats.non_eop_descs++;
Auke Kok9a799d72007-09-15 14:07:45 -07001423 goto next_desc;
1424 }
1425
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001426 dma_unmap_single(rx_ring->dev,
1427 IXGBE_CB(skb)->dma,
1428 rx_ring->rx_buf_len,
1429 DMA_FROM_DEVICE);
1430 IXGBE_CB(skb)->dma = 0;
1431 IXGBE_CB(skb)->delay_unmap = false;
1432
1433 if (ixgbe_close_active_frag_list(skb) &&
1434 !IXGBE_CB(skb)->append_cnt) {
Alexander Duyckaa801752010-11-16 19:27:02 -08001435 /* if we got here without RSC the packet is invalid */
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001436 dev_kfree_skb_any(skb);
1437 goto next_desc;
Alexander Duyckaa801752010-11-16 19:27:02 -08001438 }
Alexander Duyckc267fc12010-11-16 19:27:00 -08001439
Alexander Duyck4c1975d2012-01-31 02:59:23 +00001440 if (IXGBE_CB(skb)->append_cnt) {
1441 rx_ring->rx_stats.rsc_count +=
1442 IXGBE_CB(skb)->append_cnt;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001443 rx_ring->rx_stats.rsc_flush++;
1444 }
1445
1446 /* ERR_MASK will only have valid bits if EOP set */
Alexander Duyckff886df2011-06-11 01:45:13 +00001447 if (unlikely(staterr & IXGBE_RXDADV_ERR_FRAME_ERR_MASK)) {
1448 dev_kfree_skb_any(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001449 goto next_desc;
1450 }
1451
Alexander Duyckff886df2011-06-11 01:45:13 +00001452 ixgbe_rx_checksum(adapter, rx_desc, skb, staterr);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001453 if (adapter->netdev->features & NETIF_F_RXHASH)
1454 ixgbe_rx_hash(rx_desc, skb);
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001455
1456 /* probably a little skewed due to removing CRC */
1457 total_rx_bytes += skb->len;
1458 total_rx_packets++;
1459
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001460 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Yi Zou332d4a72009-05-13 13:11:53 +00001461#ifdef IXGBE_FCOE
1462 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyckff886df2011-06-11 01:45:13 +00001463 if (ixgbe_rx_is_fcoe(adapter, rx_desc)) {
1464 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb,
1465 staterr);
David S. Miller823dcd22011-08-20 10:39:12 -07001466 if (!ddp_bytes) {
1467 dev_kfree_skb_any(skb);
Yi Zou332d4a72009-05-13 13:11:53 +00001468 goto next_desc;
David S. Miller823dcd22011-08-20 10:39:12 -07001469 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001470 }
Yi Zou332d4a72009-05-13 13:11:53 +00001471#endif /* IXGBE_FCOE */
Alexander Duyckfdaff1c2009-05-06 10:43:47 +00001472 ixgbe_receive_skb(q_vector, skb, staterr, rx_ring, rx_desc);
Auke Kok9a799d72007-09-15 14:07:45 -07001473
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001474 budget--;
Auke Kok9a799d72007-09-15 14:07:45 -07001475next_desc:
1476 rx_desc->wb.upper.status_error = 0;
1477
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001478 if (!budget)
Alexander Duyckc267fc12010-11-16 19:27:00 -08001479 break;
1480
Auke Kok9a799d72007-09-15 14:07:45 -07001481 /* return some buffers to hardware, one at a time is too slow */
1482 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001483 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001484 cleaned_count = 0;
1485 }
1486
1487 /* use prefetched values */
1488 rx_desc = next_rxd;
Auke Kok9a799d72007-09-15 14:07:45 -07001489 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001490 }
1491
Auke Kok9a799d72007-09-15 14:07:45 -07001492 rx_ring->next_to_clean = i;
Alexander Duyck7d4987d2011-05-27 05:31:37 +00001493 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001494
1495 if (cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001496 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001497
Yi Zou3d8fd382009-06-08 14:38:44 +00001498#ifdef IXGBE_FCOE
1499 /* include DDPed FCoE data */
1500 if (ddp_bytes > 0) {
1501 unsigned int mss;
1502
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001503 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001504 sizeof(struct fc_frame_header) -
1505 sizeof(struct fcoe_crc_eof);
1506 if (mss > 512)
1507 mss &= ~511;
1508 total_rx_bytes += ddp_bytes;
1509 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1510 }
1511#endif /* IXGBE_FCOE */
1512
Alexander Duyckc267fc12010-11-16 19:27:00 -08001513 u64_stats_update_begin(&rx_ring->syncp);
1514 rx_ring->stats.packets += total_rx_packets;
1515 rx_ring->stats.bytes += total_rx_bytes;
1516 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001517 q_vector->rx.total_packets += total_rx_packets;
1518 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001519
1520 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001521}
1522
Auke Kok9a799d72007-09-15 14:07:45 -07001523/**
1524 * ixgbe_configure_msix - Configure MSI-X hardware
1525 * @adapter: board private structure
1526 *
1527 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1528 * interrupts.
1529 **/
1530static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1531{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001532 struct ixgbe_q_vector *q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001533 int q_vectors, v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001534 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001535
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001536 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1537
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00001538 /* Populate MSIX to EITR Select */
1539 if (adapter->num_vfs > 32) {
1540 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
1541 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
1542 }
1543
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001544 /*
1545 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001546 * corresponding register.
1547 */
1548 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001549 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001550 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001551
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001552 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
1553 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001554
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001555 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
1556 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001557
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001558 if (q_vector->tx.ring && !q_vector->rx.ring) {
1559 /* tx only vector */
1560 if (adapter->tx_itr_setting == 1)
1561 q_vector->itr = IXGBE_10K_ITR;
1562 else
1563 q_vector->itr = adapter->tx_itr_setting;
1564 } else {
1565 /* rx or rx/tx vector */
1566 if (adapter->rx_itr_setting == 1)
1567 q_vector->itr = IXGBE_20K_ITR;
1568 else
1569 q_vector->itr = adapter->rx_itr_setting;
1570 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001571
Alexander Duyckfe49f042009-06-04 16:00:09 +00001572 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001573 }
1574
Alexander Duyckbd508172010-11-16 19:27:03 -08001575 switch (adapter->hw.mac.type) {
1576 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001577 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001578 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001579 break;
1580 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001581 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001582 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001583 break;
Alexander Duyckbd508172010-11-16 19:27:03 -08001584 default:
1585 break;
1586 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001587 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001588
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001589 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001590 mask = IXGBE_EIMS_ENABLE_MASK;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001591 mask &= ~(IXGBE_EIMS_OTHER |
1592 IXGBE_EIMS_MAILBOX |
1593 IXGBE_EIMS_LSC);
1594
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001595 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001596}
1597
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001598enum latency_range {
1599 lowest_latency = 0,
1600 low_latency = 1,
1601 bulk_latency = 2,
1602 latency_invalid = 255
1603};
1604
1605/**
1606 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00001607 * @q_vector: structure containing interrupt and ring information
1608 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001609 *
1610 * Stores a new ITR value based on packets and byte
1611 * counts during the last interrupt. The advantage of per interrupt
1612 * computation is faster updates and more accurate ITR for the current
1613 * traffic pattern. Constants in this function were computed
1614 * based on theoretical maximum wire speed and thresholds were set based
1615 * on testing data as well as attempting to minimize response time
1616 * while increasing bulk throughput.
1617 * this functionality is controlled by the InterruptThrottleRate module
1618 * parameter (see ixgbe_param.c)
1619 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00001620static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
1621 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001622{
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001623 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00001624 struct ixgbe_adapter *adapter = q_vector->adapter;
1625 int bytes = ring_container->total_bytes;
1626 int packets = ring_container->total_packets;
1627 u32 timepassed_us;
1628 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001629
1630 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00001631 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001632
1633 /* simple throttlerate management
1634 * 0-20MB/s lowest (100000 ints/s)
1635 * 20-100MB/s low (20000 ints/s)
1636 * 100-1249MB/s bulk (8000 ints/s)
1637 */
1638 /* what was last interrupt timeslice? */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001639 timepassed_us = q_vector->itr >> 2;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001640 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1641
1642 switch (itr_setting) {
1643 case lowest_latency:
1644 if (bytes_perint > adapter->eitr_low)
Alexander Duyckbd198052011-06-11 01:45:08 +00001645 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001646 break;
1647 case low_latency:
1648 if (bytes_perint > adapter->eitr_high)
Alexander Duyckbd198052011-06-11 01:45:08 +00001649 itr_setting = bulk_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001650 else if (bytes_perint <= adapter->eitr_low)
Alexander Duyckbd198052011-06-11 01:45:08 +00001651 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001652 break;
1653 case bulk_latency:
1654 if (bytes_perint <= adapter->eitr_high)
Alexander Duyckbd198052011-06-11 01:45:08 +00001655 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001656 break;
1657 }
1658
Alexander Duyckbd198052011-06-11 01:45:08 +00001659 /* clear work counters since we have the values we need */
1660 ring_container->total_bytes = 0;
1661 ring_container->total_packets = 0;
1662
1663 /* write updated itr to ring container */
1664 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001665}
1666
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001667/**
1668 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001669 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001670 *
1671 * This function is made to be called by ethtool and by the driver
1672 * when it needs to update EITR registers at runtime. Hardware
1673 * specific quirks/differences are taken care of here.
1674 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001675void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001676{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001677 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001678 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001679 int v_idx = q_vector->v_idx;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001680 u32 itr_reg = q_vector->itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001681
Alexander Duyckbd508172010-11-16 19:27:03 -08001682 switch (adapter->hw.mac.type) {
1683 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001684 /* must write high and low 16 bits to reset counter */
1685 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001686 break;
1687 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001688 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001689 /*
1690 * set the WDIS bit to not clear the timer bits and cause an
1691 * immediate assertion of the interrupt
1692 */
1693 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08001694 break;
1695 default:
1696 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001697 }
1698 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
1699}
1700
Alexander Duyckbd198052011-06-11 01:45:08 +00001701static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001702{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001703 u32 new_itr = q_vector->itr;
Alexander Duyckbd198052011-06-11 01:45:08 +00001704 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001705
Alexander Duyckbd198052011-06-11 01:45:08 +00001706 ixgbe_update_itr(q_vector, &q_vector->tx);
1707 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001708
Alexander Duyck08c88332011-06-11 01:45:03 +00001709 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001710
1711 switch (current_itr) {
1712 /* counts and packets in update_itr are dependent on these numbers */
1713 case lowest_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001714 new_itr = IXGBE_100K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001715 break;
1716 case low_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001717 new_itr = IXGBE_20K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001718 break;
1719 case bulk_latency:
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001720 new_itr = IXGBE_8K_ITR;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001721 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00001722 default:
1723 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001724 }
1725
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001726 if (new_itr != q_vector->itr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00001727 /* do an exponential smoothing */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001728 new_itr = (10 * new_itr * q_vector->itr) /
1729 ((9 * new_itr) + q_vector->itr);
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001730
Alexander Duyckbd198052011-06-11 01:45:08 +00001731 /* save the algorithm value here */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00001732 q_vector->itr = new_itr & IXGBE_MAX_EITR;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001733
1734 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001735 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001736}
1737
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001738/**
Alexander Duyckf0f97782011-04-22 04:08:09 +00001739 * ixgbe_check_overtemp_subtask - check for over tempurature
1740 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001741 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00001742static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001743{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001744 struct ixgbe_hw *hw = &adapter->hw;
1745 u32 eicr = adapter->interrupt_event;
1746
Alexander Duyckf0f97782011-04-22 04:08:09 +00001747 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00001748 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001749
Alexander Duyckf0f97782011-04-22 04:08:09 +00001750 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1751 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
1752 return;
1753
1754 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1755
Joe Perches7ca647b2010-09-07 21:35:40 +00001756 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00001757 case IXGBE_DEV_ID_82599_T3_LOM:
1758 /*
1759 * Since the warning interrupt is for both ports
1760 * we don't have to check if:
1761 * - This interrupt wasn't for our port.
1762 * - We may have missed the interrupt so always have to
1763 * check if we got a LSC
1764 */
1765 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
1766 !(eicr & IXGBE_EICR_LSC))
1767 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001768
Alexander Duyckf0f97782011-04-22 04:08:09 +00001769 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
1770 u32 autoneg;
1771 bool link_up = false;
1772
Joe Perches7ca647b2010-09-07 21:35:40 +00001773 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
1774
Alexander Duyckf0f97782011-04-22 04:08:09 +00001775 if (link_up)
1776 return;
1777 }
1778
1779 /* Check if this is not due to overtemp */
1780 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
1781 return;
1782
1783 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00001784 default:
1785 if (!(eicr & IXGBE_EICR_GPI_SDP0))
1786 return;
1787 break;
1788 }
1789 e_crit(drv,
1790 "Network adapter has been stopped because it has over heated. "
1791 "Restart the computer. If the problem persists, "
1792 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00001793
1794 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001795}
1796
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001797static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
1798{
1799 struct ixgbe_hw *hw = &adapter->hw;
1800
1801 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
1802 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00001803 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001804 /* write to clear the interrupt */
1805 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
1806 }
1807}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001808
Jacob Keller4f51bf72011-08-20 04:49:45 +00001809static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
1810{
1811 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
1812 return;
1813
1814 switch (adapter->hw.mac.type) {
1815 case ixgbe_mac_82599EB:
1816 /*
1817 * Need to check link state so complete overtemp check
1818 * on service task
1819 */
1820 if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) &&
1821 (!test_bit(__IXGBE_DOWN, &adapter->state))) {
1822 adapter->interrupt_event = eicr;
1823 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1824 ixgbe_service_event_schedule(adapter);
1825 return;
1826 }
1827 return;
1828 case ixgbe_mac_X540:
1829 if (!(eicr & IXGBE_EICR_TS))
1830 return;
1831 break;
1832 default:
1833 return;
1834 }
1835
1836 e_crit(drv,
1837 "Network adapter has been stopped because it has over heated. "
1838 "Restart the computer. If the problem persists, "
1839 "power off the system and replace the adapter\n");
1840}
1841
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001842static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
1843{
1844 struct ixgbe_hw *hw = &adapter->hw;
1845
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001846 if (eicr & IXGBE_EICR_GPI_SDP2) {
1847 /* Clear the interrupt */
1848 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00001849 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1850 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
1851 ixgbe_service_event_schedule(adapter);
1852 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001853 }
1854
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001855 if (eicr & IXGBE_EICR_GPI_SDP1) {
1856 /* Clear the interrupt */
1857 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00001858 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1859 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
1860 ixgbe_service_event_schedule(adapter);
1861 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001862 }
1863}
1864
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001865static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
1866{
1867 struct ixgbe_hw *hw = &adapter->hw;
1868
1869 adapter->lsc_int++;
1870 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
1871 adapter->link_check_timeout = jiffies;
1872 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1873 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00001874 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00001875 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001876 }
1877}
1878
Alexander Duyckfe49f042009-06-04 16:00:09 +00001879static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
1880 u64 qmask)
1881{
1882 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001883 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001884
Alexander Duyckbd508172010-11-16 19:27:03 -08001885 switch (hw->mac.type) {
1886 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001887 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001888 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
1889 break;
1890 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001891 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001892 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001893 if (mask)
1894 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001895 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001896 if (mask)
1897 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
1898 break;
1899 default:
1900 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001901 }
1902 /* skip the flush */
1903}
1904
1905static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00001906 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00001907{
1908 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001909 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001910
Alexander Duyckbd508172010-11-16 19:27:03 -08001911 switch (hw->mac.type) {
1912 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001913 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001914 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
1915 break;
1916 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001917 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001918 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001919 if (mask)
1920 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001921 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001922 if (mask)
1923 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
1924 break;
1925 default:
1926 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001927 }
1928 /* skip the flush */
1929}
1930
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001931/**
Alexander Duyck2c4af692011-07-15 07:29:55 +00001932 * ixgbe_irq_enable - Enable default interrupt generation settings
1933 * @adapter: board private structure
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001934 **/
Alexander Duyck2c4af692011-07-15 07:29:55 +00001935static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
1936 bool flush)
Auke Kok9a799d72007-09-15 14:07:45 -07001937{
Alexander Duyck2c4af692011-07-15 07:29:55 +00001938 u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001939
Alexander Duyck2c4af692011-07-15 07:29:55 +00001940 /* don't reenable LSC while waiting for link */
1941 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
1942 mask &= ~IXGBE_EIMS_LSC;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001943
Alexander Duyck2c4af692011-07-15 07:29:55 +00001944 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Jacob Keller4f51bf72011-08-20 04:49:45 +00001945 switch (adapter->hw.mac.type) {
1946 case ixgbe_mac_82599EB:
1947 mask |= IXGBE_EIMS_GPI_SDP0;
1948 break;
1949 case ixgbe_mac_X540:
1950 mask |= IXGBE_EIMS_TS;
1951 break;
1952 default:
1953 break;
1954 }
Alexander Duyck2c4af692011-07-15 07:29:55 +00001955 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
1956 mask |= IXGBE_EIMS_GPI_SDP1;
1957 switch (adapter->hw.mac.type) {
1958 case ixgbe_mac_82599EB:
Alexander Duyck2c4af692011-07-15 07:29:55 +00001959 mask |= IXGBE_EIMS_GPI_SDP1;
1960 mask |= IXGBE_EIMS_GPI_SDP2;
Don Skidmore858bc082011-08-04 09:28:30 +00001961 case ixgbe_mac_X540:
1962 mask |= IXGBE_EIMS_ECC;
Alexander Duyck2c4af692011-07-15 07:29:55 +00001963 mask |= IXGBE_EIMS_MAILBOX;
1964 break;
1965 default:
1966 break;
1967 }
1968 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
1969 !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
1970 mask |= IXGBE_EIMS_FLOW_DIR;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001971
Alexander Duyck2c4af692011-07-15 07:29:55 +00001972 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
1973 if (queues)
1974 ixgbe_irq_enable_queues(adapter, ~0);
1975 if (flush)
1976 IXGBE_WRITE_FLUSH(&adapter->hw);
Auke Kok9a799d72007-09-15 14:07:45 -07001977}
1978
Alexander Duyck2c4af692011-07-15 07:29:55 +00001979static irqreturn_t ixgbe_msix_other(int irq, void *data)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001980{
Alexander Duyck2c4af692011-07-15 07:29:55 +00001981 struct ixgbe_adapter *adapter = data;
1982 struct ixgbe_hw *hw = &adapter->hw;
1983 u32 eicr;
Alexander Duyck91281fd2009-06-04 16:00:27 +00001984
Alexander Duyck2c4af692011-07-15 07:29:55 +00001985 /*
1986 * Workaround for Silicon errata. Use clear-by-write instead
1987 * of clear-by-read. Reading with EICS will return the
1988 * interrupt causes without clearing, which later be done
1989 * with the write to EICR.
1990 */
1991 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
1992 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Alexander Duyck91281fd2009-06-04 16:00:27 +00001993
Alexander Duyck2c4af692011-07-15 07:29:55 +00001994 if (eicr & IXGBE_EICR_LSC)
1995 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001996
Alexander Duyck2c4af692011-07-15 07:29:55 +00001997 if (eicr & IXGBE_EICR_MAILBOX)
1998 ixgbe_msg_task(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001999
Alexander Duyck2c4af692011-07-15 07:29:55 +00002000 switch (hw->mac.type) {
2001 case ixgbe_mac_82599EB:
2002 case ixgbe_mac_X540:
2003 if (eicr & IXGBE_EICR_ECC)
2004 e_info(link, "Received unrecoverable ECC Err, please "
2005 "reboot\n");
2006 /* Handle Flow Director Full threshold interrupt */
2007 if (eicr & IXGBE_EICR_FLOW_DIR) {
2008 int reinit_count = 0;
2009 int i;
2010 for (i = 0; i < adapter->num_tx_queues; i++) {
2011 struct ixgbe_ring *ring = adapter->tx_ring[i];
2012 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
2013 &ring->state))
2014 reinit_count++;
2015 }
2016 if (reinit_count) {
2017 /* no more flow director interrupts until after init */
2018 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
2019 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
2020 ixgbe_service_event_schedule(adapter);
2021 }
2022 }
2023 ixgbe_check_sfp_event(adapter, eicr);
Jacob Keller4f51bf72011-08-20 04:49:45 +00002024 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyck2c4af692011-07-15 07:29:55 +00002025 break;
2026 default:
2027 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002028 }
2029
Alexander Duyck2c4af692011-07-15 07:29:55 +00002030 ixgbe_check_fan_failure(adapter, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07002031
Alexander Duyck2c4af692011-07-15 07:29:55 +00002032 /* re-enable the original interrupt state, no lsc, no queues */
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002033 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck2c4af692011-07-15 07:29:55 +00002034 ixgbe_irq_enable(adapter, false, false);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002035
Alexander Duyck2c4af692011-07-15 07:29:55 +00002036 return IRQ_HANDLED;
2037}
2038
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002039static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07002040{
2041 struct ixgbe_q_vector *q_vector = data;
2042
Auke Kok9a799d72007-09-15 14:07:45 -07002043 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002044
2045 if (q_vector->rx.ring || q_vector->tx.ring)
2046 napi_schedule(&q_vector->napi);
Auke Kok9a799d72007-09-15 14:07:45 -07002047
2048 return IRQ_HANDLED;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002049}
2050
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002051static inline void map_vector_to_rxq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002052 int r_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07002053{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002054 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08002055 struct ixgbe_ring *rx_ring = a->rx_ring[r_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002056
Alexander Duyck22745432010-11-16 19:27:10 -08002057 rx_ring->q_vector = q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002058 rx_ring->next = q_vector->rx.ring;
2059 q_vector->rx.ring = rx_ring;
2060 q_vector->rx.count++;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002061}
Auke Kok9a799d72007-09-15 14:07:45 -07002062
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002063static inline void map_vector_to_txq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002064 int t_idx)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002065{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002066 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08002067 struct ixgbe_ring *tx_ring = a->tx_ring[t_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002068
Alexander Duyck22745432010-11-16 19:27:10 -08002069 tx_ring->q_vector = q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002070 tx_ring->next = q_vector->tx.ring;
2071 q_vector->tx.ring = tx_ring;
2072 q_vector->tx.count++;
Alexander Duyckbd198052011-06-11 01:45:08 +00002073 q_vector->tx.work_limit = a->tx_work_limit;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002074}
Auke Kok9a799d72007-09-15 14:07:45 -07002075
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002076/**
2077 * ixgbe_map_rings_to_vectors - Maps descriptor rings to vectors
2078 * @adapter: board private structure to initialize
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002079 *
2080 * This function maps descriptor rings to the queue-specific vectors
2081 * we were allotted through the MSI-X enabling code. Ideally, we'd have
2082 * one vector per ring/queue, but on a constrained vector budget, we
2083 * group the rings as "efficiently" as possible. You would add new
2084 * mapping configurations in here.
2085 **/
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002086static void ixgbe_map_rings_to_vectors(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002087{
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002088 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2089 int rxr_remaining = adapter->num_rx_queues, rxr_idx = 0;
2090 int txr_remaining = adapter->num_tx_queues, txr_idx = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002091 int v_start = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002092
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002093 /* only one q_vector if MSI-X is disabled. */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002094 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002095 q_vectors = 1;
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002096
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002097 /*
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002098 * If we don't have enough vectors for a 1-to-1 mapping, we'll have to
2099 * group them so there are multiple queues per vector.
2100 *
2101 * Re-adjusting *qpv takes care of the remainder.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002102 */
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002103 for (; v_start < q_vectors && rxr_remaining; v_start++) {
2104 int rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - v_start);
2105 for (; rqpv; rqpv--, rxr_idx++, rxr_remaining--)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002106 map_vector_to_rxq(adapter, v_start, rxr_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002107 }
2108
2109 /*
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002110 * If there are not enough q_vectors for each ring to have it's own
2111 * vector then we must pair up Rx/Tx on a each vector
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002112 */
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002113 if ((v_start + txr_remaining) > q_vectors)
2114 v_start = 0;
2115
2116 for (; v_start < q_vectors && txr_remaining; v_start++) {
2117 int tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - v_start);
2118 for (; tqpv; tqpv--, txr_idx++, txr_remaining--)
2119 map_vector_to_txq(adapter, v_start, txr_idx);
Auke Kok9a799d72007-09-15 14:07:45 -07002120 }
Auke Kok9a799d72007-09-15 14:07:45 -07002121}
2122
2123/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002124 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2125 * @adapter: board private structure
2126 *
2127 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2128 * interrupts from the kernel.
2129 **/
2130static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2131{
2132 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002133 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2134 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002135 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002136
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002137 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002138 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002139 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002140
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002141 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002142 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002143 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002144 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002145 } else if (q_vector->rx.ring) {
2146 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2147 "%s-%s-%d", netdev->name, "rx", ri++);
2148 } else if (q_vector->tx.ring) {
2149 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2150 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002151 } else {
2152 /* skip this unused q_vector */
2153 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002154 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002155 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2156 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002157 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002158 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002159 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002160 goto free_queue_irqs;
2161 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002162 /* If Flow Director is enabled, set interrupt affinity */
2163 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2164 /* assign the mask for this irq */
2165 irq_set_affinity_hint(entry->vector,
2166 q_vector->affinity_mask);
2167 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002168 }
2169
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002170 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck2c4af692011-07-15 07:29:55 +00002171 ixgbe_msix_other, 0, netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002172 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002173 e_err(probe, "request_irq for msix_lsc failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002174 goto free_queue_irqs;
2175 }
2176
2177 return 0;
2178
2179free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002180 while (vector) {
2181 vector--;
2182 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2183 NULL);
2184 free_irq(adapter->msix_entries[vector].vector,
2185 adapter->q_vector[vector]);
2186 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002187 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2188 pci_disable_msix(adapter->pdev);
2189 kfree(adapter->msix_entries);
2190 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002191 return err;
2192}
2193
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002194/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002195 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002196 * @irq: interrupt number
2197 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002198 **/
2199static irqreturn_t ixgbe_intr(int irq, void *data)
2200{
Alexander Duycka65151b2011-05-27 05:31:32 +00002201 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002202 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002203 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002204 u32 eicr;
2205
Don Skidmore54037502009-02-21 15:42:56 -08002206 /*
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002207 * Workaround for silicon errata on 82598. Mask the interrupts
Don Skidmore54037502009-02-21 15:42:56 -08002208 * before the read of EICR.
2209 */
2210 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2211
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002212 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
Stephen Hemminger52f33af2011-12-22 16:34:52 +00002213 * therefore no explicit interrupt disable is necessary */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002214 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002215 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002216 /*
2217 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002218 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002219 * have disabled interrupts due to EIAM
2220 * finish the workaround of silicon errata on 82598. Unmask
2221 * the interrupt that we masked before the EICR read.
2222 */
2223 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2224 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002225 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002226 }
Auke Kok9a799d72007-09-15 14:07:45 -07002227
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002228 if (eicr & IXGBE_EICR_LSC)
2229 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002230
Alexander Duyckbd508172010-11-16 19:27:03 -08002231 switch (hw->mac.type) {
2232 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002233 ixgbe_check_sfp_event(adapter, eicr);
Don Skidmore0ccb9742011-08-04 02:07:48 +00002234 /* Fall through */
2235 case ixgbe_mac_X540:
2236 if (eicr & IXGBE_EICR_ECC)
2237 e_info(link, "Received unrecoverable ECC err, please "
2238 "reboot\n");
Jacob Keller4f51bf72011-08-20 04:49:45 +00002239 ixgbe_check_overtemp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002240 break;
2241 default:
2242 break;
2243 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002244
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002245 ixgbe_check_fan_failure(adapter, eicr);
2246
Alexander Duyck7a921c92009-05-06 10:43:28 +00002247 if (napi_schedule_prep(&(q_vector->napi))) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002248 /* would disable interrupts here but EIAM disabled it */
Alexander Duyck7a921c92009-05-06 10:43:28 +00002249 __napi_schedule(&(q_vector->napi));
Auke Kok9a799d72007-09-15 14:07:45 -07002250 }
2251
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002252 /*
2253 * re-enable link(maybe) and non-queue interrupts, no flush.
2254 * ixgbe_poll will re-enable the queue interrupts
2255 */
2256
2257 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2258 ixgbe_irq_enable(adapter, false, false);
2259
Auke Kok9a799d72007-09-15 14:07:45 -07002260 return IRQ_HANDLED;
2261}
2262
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002263static inline void ixgbe_reset_q_vectors(struct ixgbe_adapter *adapter)
2264{
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002265 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2266 int i;
2267
2268 /* legacy and MSI only use one vector */
2269 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
2270 q_vectors = 1;
2271
2272 for (i = 0; i < adapter->num_rx_queues; i++) {
2273 adapter->rx_ring[i]->q_vector = NULL;
2274 adapter->rx_ring[i]->next = NULL;
2275 }
2276 for (i = 0; i < adapter->num_tx_queues; i++) {
2277 adapter->tx_ring[i]->q_vector = NULL;
2278 adapter->tx_ring[i]->next = NULL;
2279 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002280
2281 for (i = 0; i < q_vectors; i++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00002282 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002283 memset(&q_vector->rx, 0, sizeof(struct ixgbe_ring_container));
2284 memset(&q_vector->tx, 0, sizeof(struct ixgbe_ring_container));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002285 }
2286}
2287
Auke Kok9a799d72007-09-15 14:07:45 -07002288/**
2289 * ixgbe_request_irq - initialize interrupts
2290 * @adapter: board private structure
2291 *
2292 * Attempts to configure interrupts using the best available
2293 * capabilities of the hardware and kernel.
2294 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002295static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002296{
2297 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002298 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002299
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002300 /* map all of the rings to the q_vectors */
2301 ixgbe_map_rings_to_vectors(adapter);
2302
2303 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002304 err = ixgbe_request_msix_irqs(adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002305 else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED)
Joe Perchesa0607fd2009-11-18 23:29:17 -08002306 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151b2011-05-27 05:31:32 +00002307 netdev->name, adapter);
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002308 else
Joe Perchesa0607fd2009-11-18 23:29:17 -08002309 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151b2011-05-27 05:31:32 +00002310 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002311
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002312 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002313 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002314
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002315 /* place q_vectors and rings back into a known good state */
2316 ixgbe_reset_q_vectors(adapter);
2317 }
2318
Auke Kok9a799d72007-09-15 14:07:45 -07002319 return err;
2320}
2321
2322static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2323{
Auke Kok9a799d72007-09-15 14:07:45 -07002324 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002325 int i, q_vectors;
Auke Kok9a799d72007-09-15 14:07:45 -07002326
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002327 q_vectors = adapter->num_msix_vectors;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002328 i = q_vectors - 1;
Alexander Duycka65151b2011-05-27 05:31:32 +00002329 free_irq(adapter->msix_entries[i].vector, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002330 i--;
Alexander Duyck4cc6df22011-07-15 03:05:51 +00002331
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002332 for (; i >= 0; i--) {
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002333 /* free only the irqs that were actually requested */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002334 if (!adapter->q_vector[i]->rx.ring &&
2335 !adapter->q_vector[i]->tx.ring)
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002336 continue;
2337
Alexander Duyck207867f2011-07-15 03:05:37 +00002338 /* clear the affinity_mask in the IRQ descriptor */
2339 irq_set_affinity_hint(adapter->msix_entries[i].vector,
2340 NULL);
2341
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002342 free_irq(adapter->msix_entries[i].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002343 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002344 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002345 } else {
Alexander Duycka65151b2011-05-27 05:31:32 +00002346 free_irq(adapter->pdev->irq, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002347 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002348
2349 /* clear q_vector state information */
2350 ixgbe_reset_q_vectors(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002351}
2352
2353/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002354 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2355 * @adapter: board private structure
2356 **/
2357static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2358{
Alexander Duyckbd508172010-11-16 19:27:03 -08002359 switch (adapter->hw.mac.type) {
2360 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002361 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002362 break;
2363 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002364 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002365 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2366 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002367 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002368 break;
2369 default:
2370 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002371 }
2372 IXGBE_WRITE_FLUSH(&adapter->hw);
2373 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2374 int i;
2375 for (i = 0; i < adapter->num_msix_vectors; i++)
2376 synchronize_irq(adapter->msix_entries[i].vector);
2377 } else {
2378 synchronize_irq(adapter->pdev->irq);
2379 }
2380}
2381
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002382/**
Auke Kok9a799d72007-09-15 14:07:45 -07002383 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2384 *
2385 **/
2386static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2387{
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002388 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002389
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002390 /* rx/tx vector */
2391 if (adapter->rx_itr_setting == 1)
2392 q_vector->itr = IXGBE_20K_ITR;
2393 else
2394 q_vector->itr = adapter->rx_itr_setting;
2395
2396 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002397
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002398 ixgbe_set_ivar(adapter, 0, 0, 0);
2399 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002400
Emil Tantilov396e7992010-07-01 20:05:12 +00002401 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002402}
2403
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002404/**
2405 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2406 * @adapter: board private structure
2407 * @ring: structure containing ring specific data
2408 *
2409 * Configure the Tx descriptor ring after a reset.
2410 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002411void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2412 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002413{
2414 struct ixgbe_hw *hw = &adapter->hw;
2415 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002416 int wait_loop = 10;
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002417 u32 txdctl = IXGBE_TXDCTL_ENABLE;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002418 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002419
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002420 /* disable queue to avoid issues while updating state */
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002421 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002422 IXGBE_WRITE_FLUSH(hw);
2423
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002424 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002425 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002426 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2427 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2428 ring->count * sizeof(union ixgbe_adv_tx_desc));
2429 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2430 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002431 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002432
Alexander Duyckb88c6de2011-07-15 03:06:12 +00002433 /*
2434 * set WTHRESH to encourage burst writeback, it should not be set
2435 * higher than 1 when ITR is 0 as it could cause false TX hangs
2436 *
2437 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2438 * to or less than the number of on chip descriptors, which is
2439 * currently 40.
2440 */
2441 if (!adapter->tx_itr_setting || !adapter->rx_itr_setting)
2442 txdctl |= (1 << 16); /* WTHRESH = 1 */
2443 else
2444 txdctl |= (8 << 16); /* WTHRESH = 8 */
2445
2446 /* PTHRESH=32 is needed to avoid a Tx hang with DFP enabled. */
2447 txdctl |= (1 << 8) | /* HTHRESH = 1 */
2448 32; /* PTHRESH = 32 */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002449
2450 /* reinitialize flowdirector state */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002451 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2452 adapter->atr_sample_rate) {
2453 ring->atr_sample_rate = adapter->atr_sample_rate;
2454 ring->atr_count = 0;
2455 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2456 } else {
2457 ring->atr_sample_rate = 0;
2458 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002459
John Fastabendc84d3242010-11-16 19:27:12 -08002460 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2461
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002462 /* enable queue */
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002463 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2464
2465 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2466 if (hw->mac.type == ixgbe_mac_82598EB &&
2467 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2468 return;
2469
2470 /* poll to verify queue is enabled */
2471 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002472 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002473 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2474 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2475 if (!wait_loop)
2476 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002477}
2478
Alexander Duyck120ff942010-08-19 13:34:50 +00002479static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2480{
2481 struct ixgbe_hw *hw = &adapter->hw;
2482 u32 rttdcs;
John Fastabend72a32f12011-04-26 07:25:58 +00002483 u32 reg;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002484 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002485
2486 if (hw->mac.type == ixgbe_mac_82598EB)
2487 return;
2488
2489 /* disable the arbiter while setting MTQC */
2490 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2491 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2492 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2493
2494 /* set transmit pool layout */
John Fastabend8b1c0b22011-05-03 02:26:48 +00002495 switch (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Alexander Duyck120ff942010-08-19 13:34:50 +00002496 case (IXGBE_FLAG_SRIOV_ENABLED):
2497 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2498 (IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF));
2499 break;
Alexander Duyck120ff942010-08-19 13:34:50 +00002500 default:
John Fastabend8b1c0b22011-05-03 02:26:48 +00002501 if (!tcs)
2502 reg = IXGBE_MTQC_64Q_1PB;
2503 else if (tcs <= 4)
2504 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2505 else
2506 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2507
2508 IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
2509
2510 /* Enable Security TX Buffer IFG for multiple pb */
2511 if (tcs) {
2512 reg = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2513 reg |= IXGBE_SECTX_DCB;
2514 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, reg);
2515 }
Alexander Duyck120ff942010-08-19 13:34:50 +00002516 break;
2517 }
2518
2519 /* re-enable the arbiter */
2520 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2521 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2522}
2523
Auke Kok9a799d72007-09-15 14:07:45 -07002524/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002525 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002526 * @adapter: board private structure
2527 *
2528 * Configure the Tx unit of the MAC after a reset.
2529 **/
2530static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2531{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002532 struct ixgbe_hw *hw = &adapter->hw;
2533 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002534 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002535
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002536 ixgbe_setup_mtqc(adapter);
2537
2538 if (hw->mac.type != ixgbe_mac_82598EB) {
2539 /* DMATXCTL.EN must be before Tx queues are enabled */
2540 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2541 dmatxctl |= IXGBE_DMATXCTL_TE;
2542 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2543 }
2544
Auke Kok9a799d72007-09-15 14:07:45 -07002545 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002546 for (i = 0; i < adapter->num_tx_queues; i++)
2547 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002548}
2549
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002550#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002551
Yi Zoua6616b42009-08-06 13:05:23 +00002552static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002553 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002554{
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002555 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002556 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002557
Alexander Duyckbd508172010-11-16 19:27:03 -08002558 switch (adapter->hw.mac.type) {
2559 case ixgbe_mac_82598EB: {
2560 struct ixgbe_ring_feature *feature = adapter->ring_feature;
2561 const int mask = feature[RING_F_RSS].mask;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002562 reg_idx = reg_idx & mask;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002563 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002564 break;
2565 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002566 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08002567 default:
2568 break;
2569 }
2570
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002571 srrctl = IXGBE_READ_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx));
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002572
2573 srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
2574 srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002575 if (adapter->num_vfs)
2576 srrctl |= IXGBE_SRRCTL_DROP_EN;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002577
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002578 srrctl |= (IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
2579 IXGBE_SRRCTL_BSIZEHDR_MASK;
2580
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002581 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002582#if (PAGE_SIZE / 2) > IXGBE_MAX_RXBUFFER
2583 srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2584#else
2585 srrctl |= (PAGE_SIZE / 2) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2586#endif
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002587 srrctl |= IXGBE_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002588 } else {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002589 srrctl |= ALIGN(rx_ring->rx_buf_len, 1024) >>
2590 IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002591 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002592 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002593
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002594 IXGBE_WRITE_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002595}
2596
Alexander Duyck05abb122010-08-19 13:35:41 +00002597static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002598{
Alexander Duyck05abb122010-08-19 13:35:41 +00002599 struct ixgbe_hw *hw = &adapter->hw;
2600 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002601 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2602 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002603 u32 mrqc = 0, reta = 0;
2604 u32 rxcsum;
2605 int i, j;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002606 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend86b4db32011-04-26 07:26:19 +00002607 int maxq = adapter->ring_feature[RING_F_RSS].indices;
2608
2609 if (tcs)
2610 maxq = min(maxq, adapter->num_tx_queues / tcs);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002611
Alexander Duyck05abb122010-08-19 13:35:41 +00002612 /* Fill out hash function seeds */
2613 for (i = 0; i < 10; i++)
2614 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002615
Alexander Duyck05abb122010-08-19 13:35:41 +00002616 /* Fill out redirection table */
2617 for (i = 0, j = 0; i < 128; i++, j++) {
John Fastabend86b4db32011-04-26 07:26:19 +00002618 if (j == maxq)
Alexander Duyck05abb122010-08-19 13:35:41 +00002619 j = 0;
2620 /* reta = 4-byte sliding window of
2621 * 0x00..(indices-1)(indices-1)00..etc. */
2622 reta = (reta << 8) | (j * 0x11);
2623 if ((i & 3) == 3)
2624 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2625 }
2626
2627 /* Disable indicating checksum in descriptor, enables RSS hash */
2628 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2629 rxcsum |= IXGBE_RXCSUM_PCSD;
2630 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2631
John Fastabend8b1c0b22011-05-03 02:26:48 +00002632 if (adapter->hw.mac.type == ixgbe_mac_82598EB &&
2633 (adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002634 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002635 } else {
2636 int mask = adapter->flags & (IXGBE_FLAG_RSS_ENABLED
2637 | IXGBE_FLAG_SRIOV_ENABLED);
2638
2639 switch (mask) {
2640 case (IXGBE_FLAG_RSS_ENABLED):
2641 if (!tcs)
2642 mrqc = IXGBE_MRQC_RSSEN;
2643 else if (tcs <= 4)
2644 mrqc = IXGBE_MRQC_RTRSS4TCEN;
2645 else
2646 mrqc = IXGBE_MRQC_RTRSS8TCEN;
2647 break;
2648 case (IXGBE_FLAG_SRIOV_ENABLED):
2649 mrqc = IXGBE_MRQC_VMDQEN;
2650 break;
2651 default:
2652 break;
2653 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002654 }
2655
Alexander Duyck05abb122010-08-19 13:35:41 +00002656 /* Perform hash on these packet types */
2657 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2658 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2659 | IXGBE_MRQC_RSS_FIELD_IPV6
2660 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2661
2662 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002663}
2664
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002665/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002666 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2667 * @adapter: address of board private structure
2668 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002669 **/
Don Skidmore082757a2011-07-21 05:55:00 +00002670static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00002671 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002672{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002673 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002674 u32 rscctrl;
Mallikarjuna R Chilakalaedd2ea52009-11-23 10:45:11 -08002675 int rx_buf_len;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002676 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002677
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002678 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002679 return;
2680
2681 rx_buf_len = ring->rx_buf_len;
2682 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002683 rscctrl |= IXGBE_RSCCTL_RSCEN;
2684 /*
2685 * we must limit the number of descriptors so that the
2686 * total size of max desc * buf_len is not greater
2687 * than 65535
2688 */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002689 if (ring_is_ps_enabled(ring)) {
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002690#if (MAX_SKB_FRAGS > 16)
2691 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2692#elif (MAX_SKB_FRAGS > 8)
2693 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2694#elif (MAX_SKB_FRAGS > 4)
2695 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2696#else
2697 rscctrl |= IXGBE_RSCCTL_MAXDESC_1;
2698#endif
2699 } else {
Alexander Duyck919e78a2011-08-26 09:52:38 +00002700 if (rx_buf_len < IXGBE_RXBUFFER_4K)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002701 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
Alexander Duyck919e78a2011-08-26 09:52:38 +00002702 else if (rx_buf_len < IXGBE_RXBUFFER_8K)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002703 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2704 else
2705 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2706 }
Alexander Duyck73670962010-08-19 13:38:34 +00002707 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002708}
2709
Alexander Duyck9e10e042010-08-19 13:40:06 +00002710/**
2711 * ixgbe_set_uta - Set unicast filter table address
2712 * @adapter: board private structure
2713 *
2714 * The unicast table address is a register array of 32-bit registers.
2715 * The table is meant to be used in a way similar to how the MTA is used
2716 * however due to certain limitations in the hardware it is necessary to
2717 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscuous
2718 * enable bit to allow vlan tag stripping when promiscuous mode is enabled
2719 **/
2720static void ixgbe_set_uta(struct ixgbe_adapter *adapter)
2721{
2722 struct ixgbe_hw *hw = &adapter->hw;
2723 int i;
2724
2725 /* The UTA table only exists on 82599 hardware and newer */
2726 if (hw->mac.type < ixgbe_mac_82599EB)
2727 return;
2728
2729 /* we only need to do this if VMDq is enabled */
2730 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2731 return;
2732
2733 for (i = 0; i < 128; i++)
2734 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
2735}
2736
2737#define IXGBE_MAX_RX_DESC_POLL 10
2738static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
2739 struct ixgbe_ring *ring)
2740{
2741 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002742 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2743 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002744 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002745
2746 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2747 if (hw->mac.type == ixgbe_mac_82598EB &&
2748 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2749 return;
2750
2751 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002752 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002753 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2754 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
2755
2756 if (!wait_loop) {
2757 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
2758 "the polling period\n", reg_idx);
2759 }
2760}
2761
Yi Zou2d39d572011-01-06 14:29:56 +00002762void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
2763 struct ixgbe_ring *ring)
2764{
2765 struct ixgbe_hw *hw = &adapter->hw;
2766 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2767 u32 rxdctl;
2768 u8 reg_idx = ring->reg_idx;
2769
2770 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2771 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
2772
2773 /* write value back with RXDCTL.ENABLE bit cleared */
2774 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2775
2776 if (hw->mac.type == ixgbe_mac_82598EB &&
2777 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2778 return;
2779
2780 /* the hardware may take up to 100us to really disable the rx queue */
2781 do {
2782 udelay(10);
2783 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2784 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
2785
2786 if (!wait_loop) {
2787 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
2788 "the polling period\n", reg_idx);
2789 }
2790}
2791
Alexander Duyck84418e32010-08-19 13:40:54 +00002792void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
2793 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00002794{
2795 struct ixgbe_hw *hw = &adapter->hw;
2796 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002797 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002798 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00002799
Alexander Duyck9e10e042010-08-19 13:40:06 +00002800 /* disable queue to avoid issues while updating state */
2801 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00002802 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002803
Alexander Duyckacd37172010-08-19 13:36:05 +00002804 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
2805 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
2806 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
2807 ring->count * sizeof(union ixgbe_adv_rx_desc));
2808 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
2809 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002810 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002811
2812 ixgbe_configure_srrctl(adapter, ring);
2813 ixgbe_configure_rscctl(adapter, ring);
2814
Greg Rosee9f98072011-01-26 01:06:07 +00002815 /* If operating in IOV mode set RLPML for X540 */
2816 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
2817 hw->mac.type == ixgbe_mac_X540) {
2818 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
2819 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
2820 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
2821 }
2822
Alexander Duyck9e10e042010-08-19 13:40:06 +00002823 if (hw->mac.type == ixgbe_mac_82598EB) {
2824 /*
2825 * enable cache line friendly hardware writes:
2826 * PTHRESH=32 descriptors (half the internal cache),
2827 * this also removes ugly rx_no_buffer_count increment
2828 * HTHRESH=4 descriptors (to minimize latency on fetch)
2829 * WTHRESH=8 burst writeback up to two cache lines
2830 */
2831 rxdctl &= ~0x3FFFFF;
2832 rxdctl |= 0x080420;
2833 }
2834
2835 /* enable receive descriptor ring */
2836 rxdctl |= IXGBE_RXDCTL_ENABLE;
2837 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2838
2839 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00002840 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00002841}
2842
Alexander Duyck48654522010-08-19 13:36:27 +00002843static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
2844{
2845 struct ixgbe_hw *hw = &adapter->hw;
2846 int p;
2847
2848 /* PSRTYPE must be initialized in non 82598 adapters */
2849 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00002850 IXGBE_PSRTYPE_UDPHDR |
2851 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00002852 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00002853 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00002854
2855 if (hw->mac.type == ixgbe_mac_82598EB)
2856 return;
2857
2858 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED)
2859 psrtype |= (adapter->num_rx_queues_per_pool << 29);
2860
2861 for (p = 0; p < adapter->num_rx_pools; p++)
2862 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(adapter->num_vfs + p),
2863 psrtype);
2864}
2865
Alexander Duyckf5b4a522010-08-19 13:38:57 +00002866static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
2867{
2868 struct ixgbe_hw *hw = &adapter->hw;
2869 u32 gcr_ext;
2870 u32 vt_reg_bits;
2871 u32 reg_offset, vf_shift;
2872 u32 vmdctl;
Greg Rosede4c7f62011-09-29 05:57:33 +00002873 int i;
Alexander Duyckf5b4a522010-08-19 13:38:57 +00002874
2875 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2876 return;
2877
2878 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
2879 vt_reg_bits = IXGBE_VMD_CTL_VMDQ_EN | IXGBE_VT_CTL_REPLEN;
2880 vt_reg_bits |= (adapter->num_vfs << IXGBE_VT_CTL_POOL_SHIFT);
2881 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl | vt_reg_bits);
2882
2883 vf_shift = adapter->num_vfs % 32;
2884 reg_offset = (adapter->num_vfs > 32) ? 1 : 0;
2885
2886 /* Enable only the PF's pool for Tx/Rx */
2887 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (1 << vf_shift));
2888 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), 0);
2889 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (1 << vf_shift));
2890 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), 0);
2891 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
2892
2893 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
2894 hw->mac.ops.set_vmdq(hw, 0, adapter->num_vfs);
2895
2896 /*
2897 * Set up VF register offsets for selected VT Mode,
2898 * i.e. 32 or 64 VFs for SR-IOV
2899 */
2900 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
2901 gcr_ext |= IXGBE_GCR_EXT_MSIX_EN;
2902 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
2903 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
2904
2905 /* enable Tx loopback for VF/PF communication */
2906 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Greg Rosea985b6c32010-11-18 03:02:52 +00002907 /* Enable MAC Anti-Spoofing */
Greg Rosea1cbb152011-05-13 01:33:48 +00002908 hw->mac.ops.set_mac_anti_spoofing(hw,
Greg Rosede4c7f62011-09-29 05:57:33 +00002909 (adapter->num_vfs != 0),
Greg Rosea985b6c32010-11-18 03:02:52 +00002910 adapter->num_vfs);
Greg Rosede4c7f62011-09-29 05:57:33 +00002911 /* For VFs that have spoof checking turned off */
2912 for (i = 0; i < adapter->num_vfs; i++) {
2913 if (!adapter->vfinfo[i].spoofchk_enabled)
2914 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false);
2915 }
Alexander Duyckf5b4a522010-08-19 13:38:57 +00002916}
2917
Alexander Duyck477de6e2010-08-19 13:38:11 +00002918static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002919{
Auke Kok9a799d72007-09-15 14:07:45 -07002920 struct ixgbe_hw *hw = &adapter->hw;
2921 struct net_device *netdev = adapter->netdev;
2922 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07002923 int rx_buf_len;
Alexander Duyck477de6e2010-08-19 13:38:11 +00002924 struct ixgbe_ring *rx_ring;
2925 int i;
2926 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00002927
Auke Kok9a799d72007-09-15 14:07:45 -07002928 /* Decide whether to use packet split mode or not */
Don Skidmorea1243392011-01-18 22:53:47 +00002929 /* On by default */
2930 adapter->flags |= IXGBE_FLAG_RX_PS_ENABLED;
2931
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002932 /* Do not use packet split if we're in SR-IOV Mode */
Don Skidmorea1243392011-01-18 22:53:47 +00002933 if (adapter->num_vfs)
2934 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
2935
2936 /* Disable packet split due to 82599 erratum #45 */
2937 if (hw->mac.type == ixgbe_mac_82599EB)
2938 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
Auke Kok9a799d72007-09-15 14:07:45 -07002939
Alexander Duyck477de6e2010-08-19 13:38:11 +00002940#ifdef IXGBE_FCOE
2941 /* adjust max frame to be able to do baby jumbo for FCoE */
2942 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
2943 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
2944 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
2945
2946#endif /* IXGBE_FCOE */
2947 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
2948 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
2949 mhadd &= ~IXGBE_MHADD_MFS_MASK;
2950 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
2951
2952 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07002953 }
2954
Alexander Duyck919e78a2011-08-26 09:52:38 +00002955 /* MHADD will allow an extra 4 bytes past for vlan tagged frames */
2956 max_frame += VLAN_HLEN;
2957
2958 /* Set the RX buffer length according to the mode */
2959 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED) {
2960 rx_buf_len = IXGBE_RX_HDR_SIZE;
2961 } else {
2962 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
2963 (netdev->mtu <= ETH_DATA_LEN))
2964 rx_buf_len = MAXIMUM_ETHERNET_VLAN_SIZE;
2965 /*
2966 * Make best use of allocation by using all but 1K of a
2967 * power of 2 allocation that will be used for skb->head.
2968 */
2969 else if (max_frame <= IXGBE_RXBUFFER_3K)
2970 rx_buf_len = IXGBE_RXBUFFER_3K;
2971 else if (max_frame <= IXGBE_RXBUFFER_7K)
2972 rx_buf_len = IXGBE_RXBUFFER_7K;
2973 else if (max_frame <= IXGBE_RXBUFFER_15K)
2974 rx_buf_len = IXGBE_RXBUFFER_15K;
2975 else
2976 rx_buf_len = IXGBE_MAX_RXBUFFER;
2977 }
2978
Auke Kok9a799d72007-09-15 14:07:45 -07002979 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00002980 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
2981 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07002982 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
2983
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002984 /*
2985 * Setup the HW Rx Head and Tail Descriptor Pointers and
2986 * the Base and Length of the Rx Descriptor Ring
2987 */
Auke Kok9a799d72007-09-15 14:07:45 -07002988 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002989 rx_ring = adapter->rx_ring[i];
Yi Zoua6616b42009-08-06 13:05:23 +00002990 rx_ring->rx_buf_len = rx_buf_len;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002991
Yi Zou6e455b892009-08-06 13:05:44 +00002992 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002993 set_ring_ps_enabled(rx_ring);
Peter P Waskiewicz Jr1b3ff022009-09-14 07:47:27 +00002994 else
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002995 clear_ring_ps_enabled(rx_ring);
2996
2997 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
2998 set_ring_rsc_enabled(rx_ring);
2999 else
3000 clear_ring_rsc_enabled(rx_ring);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003001
Yi Zou63f39bd2009-05-17 12:34:35 +00003002#ifdef IXGBE_FCOE
Joe Perchese8e9f692010-09-07 21:34:53 +00003003 if (netdev->features & NETIF_F_FCOE_MTU) {
Yi Zou63f39bd2009-05-17 12:34:35 +00003004 struct ixgbe_ring_feature *f;
3005 f = &adapter->ring_feature[RING_F_FCOE];
Yi Zou6e455b892009-08-06 13:05:44 +00003006 if ((i >= f->mask) && (i < f->mask + f->indices)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003007 clear_ring_ps_enabled(rx_ring);
Yi Zou6e455b892009-08-06 13:05:44 +00003008 if (rx_buf_len < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3009 rx_ring->rx_buf_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00003010 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003011 } else if (!ring_is_rsc_enabled(rx_ring) &&
3012 !ring_is_ps_enabled(rx_ring)) {
3013 rx_ring->rx_buf_len =
3014 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Yi Zou6e455b892009-08-06 13:05:44 +00003015 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003016 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003017#endif /* IXGBE_FCOE */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003018 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003019}
3020
Alexander Duyck73670962010-08-19 13:38:34 +00003021static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3022{
3023 struct ixgbe_hw *hw = &adapter->hw;
3024 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3025
3026 switch (hw->mac.type) {
3027 case ixgbe_mac_82598EB:
3028 /*
3029 * For VMDq support of different descriptor types or
3030 * buffer sizes through the use of multiple SRRCTL
3031 * registers, RDRXCTL.MVMEN must be set to 1
3032 *
3033 * also, the manual doesn't mention it clearly but DCA hints
3034 * will only use queue 0's tags unless this bit is set. Side
3035 * effects of setting this bit are only that SRRCTL must be
3036 * fully programmed [0..15]
3037 */
3038 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3039 break;
3040 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003041 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003042 /* Disable RSC for ACK packets */
3043 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3044 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3045 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3046 /* hardware requires some bits to be set by default */
3047 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3048 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3049 break;
3050 default:
3051 /* We should do nothing since we don't know this hardware */
3052 return;
3053 }
3054
3055 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3056}
3057
Alexander Duyck477de6e2010-08-19 13:38:11 +00003058/**
3059 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3060 * @adapter: board private structure
3061 *
3062 * Configure the Rx unit of the MAC after a reset.
3063 **/
3064static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3065{
3066 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003067 int i;
3068 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003069
3070 /* disable receives while setting up the descriptors */
3071 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3072 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3073
3074 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003075 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003076
Alexander Duyck9e10e042010-08-19 13:40:06 +00003077 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003078 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003079
Alexander Duyck9e10e042010-08-19 13:40:06 +00003080 ixgbe_set_uta(adapter);
3081
Alexander Duyck477de6e2010-08-19 13:38:11 +00003082 /* set_rx_buffer_len must be called before ring initialization */
3083 ixgbe_set_rx_buffer_len(adapter);
3084
3085 /*
3086 * Setup the HW Rx Head and Tail Descriptor Pointers and
3087 * the Base and Length of the Rx Descriptor Ring
3088 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003089 for (i = 0; i < adapter->num_rx_queues; i++)
3090 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003091
Alexander Duyck9e10e042010-08-19 13:40:06 +00003092 /* disable drop enable for 82598 parts */
3093 if (hw->mac.type == ixgbe_mac_82598EB)
3094 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3095
3096 /* enable all receives */
3097 rxctrl |= IXGBE_RXCTRL_RXEN;
3098 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003099}
3100
Jiri Pirko8e586132011-12-08 19:52:37 -05003101static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003102{
3103 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003104 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003105 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003106
3107 /* add VID to filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003108 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003109 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003110
3111 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003112}
3113
Jiri Pirko8e586132011-12-08 19:52:37 -05003114static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
Auke Kok9a799d72007-09-15 14:07:45 -07003115{
3116 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003117 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003118 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003119
Auke Kok9a799d72007-09-15 14:07:45 -07003120 /* remove VID from filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003121 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003122 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05003123
3124 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003125}
3126
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003127/**
3128 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3129 * @adapter: driver data
3130 */
3131static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3132{
3133 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003134 u32 vlnctrl;
3135
3136 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3137 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3138 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3139}
3140
3141/**
3142 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3143 * @adapter: driver data
3144 */
3145static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3146{
3147 struct ixgbe_hw *hw = &adapter->hw;
3148 u32 vlnctrl;
3149
3150 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3151 vlnctrl |= IXGBE_VLNCTRL_VFE;
3152 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3153 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3154}
3155
3156/**
3157 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3158 * @adapter: driver data
3159 */
3160static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3161{
3162 struct ixgbe_hw *hw = &adapter->hw;
3163 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003164 int i, j;
3165
3166 switch (hw->mac.type) {
3167 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003168 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3169 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003170 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3171 break;
3172 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003173 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003174 for (i = 0; i < adapter->num_rx_queues; i++) {
3175 j = adapter->rx_ring[i]->reg_idx;
3176 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3177 vlnctrl &= ~IXGBE_RXDCTL_VME;
3178 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3179 }
3180 break;
3181 default:
3182 break;
3183 }
3184}
3185
3186/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003187 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003188 * @adapter: driver data
3189 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003190static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003191{
3192 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003193 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003194 int i, j;
3195
3196 switch (hw->mac.type) {
3197 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003198 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3199 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003200 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3201 break;
3202 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003203 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003204 for (i = 0; i < adapter->num_rx_queues; i++) {
3205 j = adapter->rx_ring[i]->reg_idx;
3206 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3207 vlnctrl |= IXGBE_RXDCTL_VME;
3208 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3209 }
3210 break;
3211 default:
3212 break;
3213 }
3214}
3215
Auke Kok9a799d72007-09-15 14:07:45 -07003216static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3217{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003218 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003219
Jesse Grossf62bbb52010-10-20 13:56:10 +00003220 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3221
3222 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3223 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003224}
3225
3226/**
Alexander Duyck28500622010-06-15 09:25:48 +00003227 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3228 * @netdev: network interface device structure
3229 *
3230 * Writes unicast address list to the RAR table.
3231 * Returns: -ENOMEM on failure/insufficient address space
3232 * 0 on no addresses written
3233 * X on writing X addresses to the RAR table
3234 **/
3235static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3236{
3237 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3238 struct ixgbe_hw *hw = &adapter->hw;
3239 unsigned int vfn = adapter->num_vfs;
Greg Rosea1cbb152011-05-13 01:33:48 +00003240 unsigned int rar_entries = IXGBE_MAX_PF_MACVLANS;
Alexander Duyck28500622010-06-15 09:25:48 +00003241 int count = 0;
3242
3243 /* return ENOMEM indicating insufficient memory for addresses */
3244 if (netdev_uc_count(netdev) > rar_entries)
3245 return -ENOMEM;
3246
3247 if (!netdev_uc_empty(netdev) && rar_entries) {
3248 struct netdev_hw_addr *ha;
3249 /* return error if we do not support writing to RAR table */
3250 if (!hw->mac.ops.set_rar)
3251 return -ENOMEM;
3252
3253 netdev_for_each_uc_addr(ha, netdev) {
3254 if (!rar_entries)
3255 break;
3256 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
3257 vfn, IXGBE_RAH_AV);
3258 count++;
3259 }
3260 }
3261 /* write the addresses in reverse order to avoid write combining */
3262 for (; rar_entries > 0 ; rar_entries--)
3263 hw->mac.ops.clear_rar(hw, rar_entries);
3264
3265 return count;
3266}
3267
3268/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003269 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003270 * @netdev: network interface device structure
3271 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003272 * The set_rx_method entry point is called whenever the unicast/multicast
3273 * address list or the network interface flags are updated. This routine is
3274 * responsible for configuring the hardware for proper unicast, multicast and
3275 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003276 **/
Greg Rose7f870472010-01-09 02:25:29 +00003277void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003278{
3279 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3280 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003281 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3282 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003283
3284 /* Check for Promiscuous and All Multicast modes */
3285
3286 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3287
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003288 /* set all bits that we expect to always be set */
3289 fctrl |= IXGBE_FCTRL_BAM;
3290 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3291 fctrl |= IXGBE_FCTRL_PMCF;
3292
Alexander Duyck28500622010-06-15 09:25:48 +00003293 /* clear the bits we are changing the status of */
3294 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3295
Auke Kok9a799d72007-09-15 14:07:45 -07003296 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003297 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003298 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003299 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003300 /* don't hardware filter vlans in promisc mode */
3301 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003302 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003303 if (netdev->flags & IFF_ALLMULTI) {
3304 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003305 vmolr |= IXGBE_VMOLR_MPE;
3306 } else {
3307 /*
3308 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003309 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003310 * that we can at least receive multicast traffic
3311 */
3312 hw->mac.ops.update_mc_addr_list(hw, netdev);
3313 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003314 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003315 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003316 hw->addr_ctrl.user_set_promisc = false;
Alexander Duyck28500622010-06-15 09:25:48 +00003317 /*
3318 * Write addresses to available RAR registers, if there is not
3319 * sufficient space to store all the addresses then enable
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003320 * unicast promiscuous mode
Alexander Duyck28500622010-06-15 09:25:48 +00003321 */
3322 count = ixgbe_write_uc_addr_list(netdev);
3323 if (count < 0) {
3324 fctrl |= IXGBE_FCTRL_UPE;
3325 vmolr |= IXGBE_VMOLR_ROPE;
3326 }
3327 }
3328
3329 if (adapter->num_vfs) {
3330 ixgbe_restore_vf_multicasts(adapter);
3331 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(adapter->num_vfs)) &
3332 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3333 IXGBE_VMOLR_ROPE);
3334 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(adapter->num_vfs), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003335 }
3336
3337 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003338
3339 if (netdev->features & NETIF_F_HW_VLAN_RX)
3340 ixgbe_vlan_strip_enable(adapter);
3341 else
3342 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003343}
3344
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003345static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3346{
3347 int q_idx;
3348 struct ixgbe_q_vector *q_vector;
3349 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3350
3351 /* legacy and MSI only use one vector */
3352 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3353 q_vectors = 1;
3354
3355 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003356 q_vector = adapter->q_vector[q_idx];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00003357 napi_enable(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003358 }
3359}
3360
3361static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3362{
3363 int q_idx;
3364 struct ixgbe_q_vector *q_vector;
3365 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3366
3367 /* legacy and MSI only use one vector */
3368 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3369 q_vectors = 1;
3370
3371 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003372 q_vector = adapter->q_vector[q_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003373 napi_disable(&q_vector->napi);
3374 }
3375}
3376
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003377#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08003378/*
3379 * ixgbe_configure_dcb - Configure DCB hardware
3380 * @adapter: ixgbe adapter struct
3381 *
3382 * This is called by the driver on open to configure the DCB hardware.
3383 * This is also called by the gennetlink interface when reconfiguring
3384 * the DCB state.
3385 */
3386static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3387{
3388 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend98063072010-10-28 00:59:57 +00003389 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003390
Alexander Duyck67ebd792010-08-19 13:34:04 +00003391 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3392 if (hw->mac.type == ixgbe_mac_82598EB)
3393 netif_set_gso_max_size(adapter->netdev, 65536);
3394 return;
3395 }
3396
3397 if (hw->mac.type == ixgbe_mac_82598EB)
3398 netif_set_gso_max_size(adapter->netdev, 32768);
3399
Alexander Duyck2f90b862008-11-20 20:52:10 -08003400
Alexander Duyck2f90b862008-11-20 20:52:10 -08003401 /* Enable VLAN tag insert/strip */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003402 adapter->netdev->features |= NETIF_F_HW_VLAN_RX;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003403
Alexander Duyck2f90b862008-11-20 20:52:10 -08003404 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003405
John Fastabendb1208182011-10-15 05:00:10 +00003406#ifdef IXGBE_FCOE
3407 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3408 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3409#endif
3410
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003411 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003412 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003413 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3414 DCB_TX_CONFIG);
3415 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3416 DCB_RX_CONFIG);
3417 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
John Fastabendb1208182011-10-15 05:00:10 +00003418 } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) {
3419 ixgbe_dcb_hw_ets(&adapter->hw,
3420 adapter->ixgbe_ieee_ets,
3421 max_frame);
3422 ixgbe_dcb_hw_pfc_config(&adapter->hw,
3423 adapter->ixgbe_ieee_pfc->pfc_en,
3424 adapter->ixgbe_ieee_ets->prio_tc);
John Fastabendc27931d2011-02-23 05:58:25 +00003425 }
John Fastabend8187cd42011-02-23 05:58:08 +00003426
3427 /* Enable RSS Hash per TC */
3428 if (hw->mac.type != ixgbe_mac_82598EB) {
3429 int i;
3430 u32 reg = 0;
3431
3432 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
3433 u8 msb = 0;
3434 u8 cnt = adapter->netdev->tc_to_txq[i].count;
3435
3436 while (cnt >>= 1)
3437 msb++;
3438
3439 reg |= msb << IXGBE_RQTC_SHIFT_TC(i);
3440 }
3441 IXGBE_WRITE_REG(hw, IXGBE_RQTC, reg);
3442 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003443}
John Fastabend9da712d2011-08-23 03:14:22 +00003444#endif
3445
3446/* Additional bittime to account for IXGBE framing */
3447#define IXGBE_ETH_FRAMING 20
3448
3449/*
3450 * ixgbe_hpbthresh - calculate high water mark for flow control
3451 *
3452 * @adapter: board private structure to calculate for
3453 * @pb - packet buffer to calculate
3454 */
3455static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb)
3456{
3457 struct ixgbe_hw *hw = &adapter->hw;
3458 struct net_device *dev = adapter->netdev;
3459 int link, tc, kb, marker;
3460 u32 dv_id, rx_pba;
3461
3462 /* Calculate max LAN frame size */
3463 tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING;
3464
3465#ifdef IXGBE_FCOE
3466 /* FCoE traffic class uses FCOE jumbo frames */
3467 if (dev->features & NETIF_F_FCOE_MTU) {
3468 int fcoe_pb = 0;
3469
3470#ifdef CONFIG_IXGBE_DCB
3471 fcoe_pb = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003472
3473#endif
John Fastabend9da712d2011-08-23 03:14:22 +00003474 if (fcoe_pb == pb && tc < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3475 tc = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3476 }
3477#endif
3478
3479 /* Calculate delay value for device */
3480 switch (hw->mac.type) {
3481 case ixgbe_mac_X540:
3482 dv_id = IXGBE_DV_X540(link, tc);
3483 break;
3484 default:
3485 dv_id = IXGBE_DV(link, tc);
3486 break;
3487 }
3488
3489 /* Loopback switch introduces additional latency */
3490 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3491 dv_id += IXGBE_B2BT(tc);
3492
3493 /* Delay value is calculated in bit times convert to KB */
3494 kb = IXGBE_BT2KB(dv_id);
3495 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
3496
3497 marker = rx_pba - kb;
3498
3499 /* It is possible that the packet buffer is not large enough
3500 * to provide required headroom. In this case throw an error
3501 * to user and a do the best we can.
3502 */
3503 if (marker < 0) {
3504 e_warn(drv, "Packet Buffer(%i) can not provide enough"
3505 "headroom to support flow control."
3506 "Decrease MTU or number of traffic classes\n", pb);
3507 marker = tc + 1;
3508 }
3509
3510 return marker;
3511}
3512
3513/*
3514 * ixgbe_lpbthresh - calculate low water mark for for flow control
3515 *
3516 * @adapter: board private structure to calculate for
3517 * @pb - packet buffer to calculate
3518 */
3519static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter)
3520{
3521 struct ixgbe_hw *hw = &adapter->hw;
3522 struct net_device *dev = adapter->netdev;
3523 int tc;
3524 u32 dv_id;
3525
3526 /* Calculate max LAN frame size */
3527 tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3528
3529 /* Calculate delay value for device */
3530 switch (hw->mac.type) {
3531 case ixgbe_mac_X540:
3532 dv_id = IXGBE_LOW_DV_X540(tc);
3533 break;
3534 default:
3535 dv_id = IXGBE_LOW_DV(tc);
3536 break;
3537 }
3538
3539 /* Delay value is calculated in bit times convert to KB */
3540 return IXGBE_BT2KB(dv_id);
3541}
3542
3543/*
3544 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3545 */
3546static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter)
3547{
3548 struct ixgbe_hw *hw = &adapter->hw;
3549 int num_tc = netdev_get_num_tc(adapter->netdev);
3550 int i;
3551
3552 if (!num_tc)
3553 num_tc = 1;
3554
3555 hw->fc.low_water = ixgbe_lpbthresh(adapter);
3556
3557 for (i = 0; i < num_tc; i++) {
3558 hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i);
3559
3560 /* Low water marks must not be larger than high water marks */
3561 if (hw->fc.low_water > hw->fc.high_water[i])
3562 hw->fc.low_water = 0;
3563 }
3564}
John Fastabend80605c652011-05-02 12:34:10 +00003565
3566static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3567{
John Fastabend80605c652011-05-02 12:34:10 +00003568 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckf7e10272011-07-21 00:40:35 +00003569 int hdrm;
3570 u8 tc = netdev_get_num_tc(adapter->netdev);
John Fastabend80605c652011-05-02 12:34:10 +00003571
3572 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3573 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
Alexander Duyckf7e10272011-07-21 00:40:35 +00003574 hdrm = 32 << adapter->fdir_pballoc;
3575 else
3576 hdrm = 0;
John Fastabend80605c652011-05-02 12:34:10 +00003577
Alexander Duyckf7e10272011-07-21 00:40:35 +00003578 hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL);
John Fastabend9da712d2011-08-23 03:14:22 +00003579 ixgbe_pbthresh_setup(adapter);
John Fastabend80605c652011-05-02 12:34:10 +00003580}
3581
Alexander Duycke4911d52011-05-11 07:18:52 +00003582static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3583{
3584 struct ixgbe_hw *hw = &adapter->hw;
3585 struct hlist_node *node, *node2;
3586 struct ixgbe_fdir_filter *filter;
3587
3588 spin_lock(&adapter->fdir_perfect_lock);
3589
3590 if (!hlist_empty(&adapter->fdir_filter_list))
3591 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3592
3593 hlist_for_each_entry_safe(filter, node, node2,
3594 &adapter->fdir_filter_list, fdir_node) {
3595 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003596 &filter->filter,
3597 filter->sw_idx,
3598 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3599 IXGBE_FDIR_DROP_QUEUE :
3600 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003601 }
3602
3603 spin_unlock(&adapter->fdir_perfect_lock);
3604}
3605
Auke Kok9a799d72007-09-15 14:07:45 -07003606static void ixgbe_configure(struct ixgbe_adapter *adapter)
3607{
John Fastabend80605c652011-05-02 12:34:10 +00003608 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003609#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003610 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003611#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003612
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003613 ixgbe_set_rx_mode(adapter->netdev);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003614 ixgbe_restore_vlan(adapter);
3615
Yi Zoueacd73f2009-05-13 13:11:06 +00003616#ifdef IXGBE_FCOE
3617 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
3618 ixgbe_configure_fcoe(adapter);
3619
3620#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003621 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003622 ixgbe_init_fdir_signature_82599(&adapter->hw,
3623 adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003624 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3625 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3626 adapter->fdir_pballoc);
3627 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003628 }
Alexander Duyck4c1d7b42011-07-21 00:40:30 +00003629
Alexander Duyck933d41f2010-09-07 21:34:29 +00003630 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003631
Auke Kok9a799d72007-09-15 14:07:45 -07003632 ixgbe_configure_tx(adapter);
3633 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003634}
3635
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003636static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3637{
3638 switch (hw->phy.type) {
3639 case ixgbe_phy_sfp_avago:
3640 case ixgbe_phy_sfp_ftl:
3641 case ixgbe_phy_sfp_intel:
3642 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003643 case ixgbe_phy_sfp_passive_tyco:
3644 case ixgbe_phy_sfp_passive_unknown:
3645 case ixgbe_phy_sfp_active_unknown:
3646 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003647 return true;
Alexander Duyck8917b442011-07-21 00:40:51 +00003648 case ixgbe_phy_nl:
3649 if (hw->mac.type == ixgbe_mac_82598EB)
3650 return true;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003651 default:
3652 return false;
3653 }
3654}
3655
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003656/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003657 * ixgbe_sfp_link_config - set up SFP+ link
3658 * @adapter: pointer to private adapter struct
3659 **/
3660static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3661{
Alexander Duyck70864002011-04-27 09:13:56 +00003662 /*
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003663 * We are assuming the worst case scenario here, and that
Alexander Duyck70864002011-04-27 09:13:56 +00003664 * is that an SFP was inserted/removed after the reset
3665 * but before SFP detection was enabled. As such the best
3666 * solution is to just start searching as soon as we start
3667 */
3668 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3669 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003670
Alexander Duyck70864002011-04-27 09:13:56 +00003671 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003672}
3673
3674/**
3675 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003676 * @hw: pointer to private hardware struct
3677 *
3678 * Returns 0 on success, negative on failure
3679 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003680static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003681{
3682 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003683 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003684 u32 ret = IXGBE_ERR_LINK_SETUP;
3685
3686 if (hw->mac.ops.check_link)
3687 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3688
3689 if (ret)
3690 goto link_cfg_out;
3691
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003692 autoneg = hw->phy.autoneg_advertised;
3693 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003694 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3695 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003696 if (ret)
3697 goto link_cfg_out;
3698
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003699 if (hw->mac.ops.setup_link)
3700 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003701link_cfg_out:
3702 return ret;
3703}
3704
Alexander Duycka34bcff2010-08-19 13:39:20 +00003705static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003706{
Auke Kok9a799d72007-09-15 14:07:45 -07003707 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003708 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003709
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003710 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003711 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3712 IXGBE_GPIE_OCD;
3713 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003714 /*
3715 * use EIAM to auto-mask when MSI-X interrupt is asserted
3716 * this saves a register write for every interrupt
3717 */
3718 switch (hw->mac.type) {
3719 case ixgbe_mac_82598EB:
3720 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3721 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003722 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003723 case ixgbe_mac_X540:
3724 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003725 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3726 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3727 break;
3728 }
3729 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003730 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3731 * specifically only auto mask tx and rx interrupts */
3732 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003733 }
3734
Alexander Duycka34bcff2010-08-19 13:39:20 +00003735 /* XXX: to interrupt immediately for EICS writes, enable this */
3736 /* gpie |= IXGBE_GPIE_EIMEN; */
3737
3738 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3739 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
3740 gpie |= IXGBE_GPIE_VTMODE_64;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003741 }
3742
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003743 /* Enable Thermal over heat sensor interrupt */
Don Skidmoref3df98e2011-08-17 10:15:21 +00003744 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) {
3745 switch (adapter->hw.mac.type) {
3746 case ixgbe_mac_82599EB:
3747 gpie |= IXGBE_SDP0_GPIEN;
3748 break;
3749 case ixgbe_mac_X540:
3750 gpie |= IXGBE_EIMS_TS;
3751 break;
3752 default:
3753 break;
3754 }
3755 }
Alexander Duyck5fdd31f2011-07-21 00:40:45 +00003756
Alexander Duycka34bcff2010-08-19 13:39:20 +00003757 /* Enable fan failure interrupt */
3758 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003759 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003760
Don Skidmore2698b202011-04-13 07:01:52 +00003761 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003762 gpie |= IXGBE_SDP1_GPIEN;
3763 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00003764 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00003765
3766 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3767}
3768
Alexander Duyckc7ccde02011-07-21 00:40:40 +00003769static void ixgbe_up_complete(struct ixgbe_adapter *adapter)
Alexander Duycka34bcff2010-08-19 13:39:20 +00003770{
3771 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003772 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003773 u32 ctrl_ext;
3774
3775 ixgbe_get_hw_control(adapter);
3776 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003777
Auke Kok9a799d72007-09-15 14:07:45 -07003778 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
3779 ixgbe_configure_msix(adapter);
3780 else
3781 ixgbe_configure_msi_and_legacy(adapter);
3782
Don Skidmorec6ecf392010-12-03 03:31:51 +00003783 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
3784 if (hw->mac.ops.enable_tx_laser &&
3785 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00003786 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00003787 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00003788 hw->mac.ops.enable_tx_laser(hw);
3789
Auke Kok9a799d72007-09-15 14:07:45 -07003790 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003791 ixgbe_napi_enable_all(adapter);
3792
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003793 if (ixgbe_is_sfp(hw)) {
3794 ixgbe_sfp_link_config(adapter);
3795 } else {
3796 err = ixgbe_non_sfp_link_config(hw);
3797 if (err)
3798 e_err(probe, "link_config FAILED %d\n", err);
3799 }
3800
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003801 /* clear any pending interrupts, may auto mask */
3802 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003803 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07003804
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003805 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00003806 * If this adapter has a fan, check to see if we had a failure
3807 * before we enabled the interrupt.
3808 */
3809 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
3810 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3811 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00003812 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00003813 }
3814
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003815 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003816 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003817
Auke Kok9a799d72007-09-15 14:07:45 -07003818 /* bring the link up in the watchdog, this could race with our first
3819 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003820 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3821 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00003822 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00003823
3824 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
3825 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
3826 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
3827 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
Auke Kok9a799d72007-09-15 14:07:45 -07003828}
3829
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003830void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
3831{
3832 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00003833 /* put off any impending NetWatchDogTimeout */
3834 adapter->netdev->trans_start = jiffies;
3835
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003836 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00003837 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003838 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00003839 /*
3840 * If SR-IOV enabled then wait a bit before bringing the adapter
3841 * back up to give the VFs time to respond to the reset. The
3842 * two second wait is based upon the watchdog timer cycle in
3843 * the VF driver.
3844 */
3845 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3846 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003847 ixgbe_up(adapter);
3848 clear_bit(__IXGBE_RESETTING, &adapter->state);
3849}
3850
Alexander Duyckc7ccde02011-07-21 00:40:40 +00003851void ixgbe_up(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003852{
3853 /* hardware has been reset, we need to reload some things */
3854 ixgbe_configure(adapter);
3855
Alexander Duyckc7ccde02011-07-21 00:40:40 +00003856 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003857}
3858
3859void ixgbe_reset(struct ixgbe_adapter *adapter)
3860{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003861 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07003862 int err;
3863
Alexander Duyck70864002011-04-27 09:13:56 +00003864 /* lock SFP init bit to prevent race conditions with the watchdog */
3865 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
3866 usleep_range(1000, 2000);
3867
3868 /* clear all SFP and link config related flags while holding SFP_INIT */
3869 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
3870 IXGBE_FLAG2_SFP_NEEDS_RESET);
3871 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
3872
Don Skidmore8ca783a2009-05-26 20:40:47 -07003873 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003874 switch (err) {
3875 case 0:
3876 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00003877 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003878 break;
3879 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00003880 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003881 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00003882 case IXGBE_ERR_EEPROM_VERSION:
3883 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00003884 e_dev_warn("This device is a pre-production adapter/LOM. "
Stephen Hemminger52f33af2011-12-22 16:34:52 +00003885 "Please be aware there may be issues associated with "
Emil Tantilov849c4542010-06-03 16:53:41 +00003886 "your hardware. If you are experiencing problems "
3887 "please contact your Intel or hardware "
3888 "representative who provided you with this "
3889 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00003890 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003891 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00003892 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003893 }
Auke Kok9a799d72007-09-15 14:07:45 -07003894
Alexander Duyck70864002011-04-27 09:13:56 +00003895 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
3896
Auke Kok9a799d72007-09-15 14:07:45 -07003897 /* reprogram the RAR[0] in case user changed it. */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00003898 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
3899 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07003900}
3901
Auke Kok9a799d72007-09-15 14:07:45 -07003902/**
3903 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07003904 * @rx_ring: ring to free buffers from
3905 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003906static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07003907{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003908 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07003909 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003910 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003911
Alexander Duyck84418e32010-08-19 13:40:54 +00003912 /* ring already cleared, nothing to do */
3913 if (!rx_ring->rx_buffer_info)
3914 return;
Auke Kok9a799d72007-09-15 14:07:45 -07003915
Alexander Duyck84418e32010-08-19 13:40:54 +00003916 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07003917 for (i = 0; i < rx_ring->count; i++) {
3918 struct ixgbe_rx_buffer *rx_buffer_info;
3919
3920 rx_buffer_info = &rx_ring->rx_buffer_info[i];
3921 if (rx_buffer_info->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003922 dma_unmap_single(rx_ring->dev, rx_buffer_info->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00003923 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00003924 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07003925 rx_buffer_info->dma = 0;
3926 }
3927 if (rx_buffer_info->skb) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00003928 struct sk_buff *skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07003929 rx_buffer_info->skb = NULL;
Alexander Duyck4c1975d2012-01-31 02:59:23 +00003930 /* We need to clean up RSC frag lists */
3931 skb = ixgbe_merge_active_tail(skb);
3932 ixgbe_close_active_frag_list(skb);
3933 if (IXGBE_CB(skb)->delay_unmap) {
3934 dma_unmap_single(dev,
3935 IXGBE_CB(skb)->dma,
3936 rx_ring->rx_buf_len,
3937 DMA_FROM_DEVICE);
3938 IXGBE_CB(skb)->dma = 0;
3939 IXGBE_CB(skb)->delay_unmap = false;
3940 }
3941 dev_kfree_skb(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07003942 }
3943 if (!rx_buffer_info->page)
3944 continue;
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00003945 if (rx_buffer_info->page_dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003946 dma_unmap_page(dev, rx_buffer_info->page_dma,
Nick Nunley1b507732010-04-27 13:10:27 +00003947 PAGE_SIZE / 2, DMA_FROM_DEVICE);
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00003948 rx_buffer_info->page_dma = 0;
3949 }
Auke Kok9a799d72007-09-15 14:07:45 -07003950 put_page(rx_buffer_info->page);
3951 rx_buffer_info->page = NULL;
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07003952 rx_buffer_info->page_offset = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003953 }
3954
3955 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
3956 memset(rx_ring->rx_buffer_info, 0, size);
3957
3958 /* Zero out the descriptor ring */
3959 memset(rx_ring->desc, 0, rx_ring->size);
3960
3961 rx_ring->next_to_clean = 0;
3962 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003963}
3964
3965/**
3966 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07003967 * @tx_ring: ring to be cleaned
3968 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003969static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07003970{
3971 struct ixgbe_tx_buffer *tx_buffer_info;
3972 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003973 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003974
Alexander Duyck84418e32010-08-19 13:40:54 +00003975 /* ring already cleared, nothing to do */
3976 if (!tx_ring->tx_buffer_info)
3977 return;
Auke Kok9a799d72007-09-15 14:07:45 -07003978
Alexander Duyck84418e32010-08-19 13:40:54 +00003979 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07003980 for (i = 0; i < tx_ring->count; i++) {
3981 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003982 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07003983 }
3984
3985 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
3986 memset(tx_ring->tx_buffer_info, 0, size);
3987
3988 /* Zero out the descriptor ring */
3989 memset(tx_ring->desc, 0, tx_ring->size);
3990
3991 tx_ring->next_to_use = 0;
3992 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003993}
3994
3995/**
Auke Kok9a799d72007-09-15 14:07:45 -07003996 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
3997 * @adapter: board private structure
3998 **/
3999static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4000{
4001 int i;
4002
4003 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004004 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004005}
4006
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004007/**
4008 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4009 * @adapter: board private structure
4010 **/
4011static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4012{
4013 int i;
4014
4015 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004016 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004017}
4018
Alexander Duycke4911d52011-05-11 07:18:52 +00004019static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4020{
4021 struct hlist_node *node, *node2;
4022 struct ixgbe_fdir_filter *filter;
4023
4024 spin_lock(&adapter->fdir_perfect_lock);
4025
4026 hlist_for_each_entry_safe(filter, node, node2,
4027 &adapter->fdir_filter_list, fdir_node) {
4028 hlist_del(&filter->fdir_node);
4029 kfree(filter);
4030 }
4031 adapter->fdir_filter_count = 0;
4032
4033 spin_unlock(&adapter->fdir_perfect_lock);
4034}
4035
Auke Kok9a799d72007-09-15 14:07:45 -07004036void ixgbe_down(struct ixgbe_adapter *adapter)
4037{
4038 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004039 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004040 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004041 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07004042
4043 /* signal that we are down to the interrupt handler */
4044 set_bit(__IXGBE_DOWN, &adapter->state);
4045
4046 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004047 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4048 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004049
Yi Zou2d39d572011-01-06 14:29:56 +00004050 /* disable all enabled rx queues */
4051 for (i = 0; i < adapter->num_rx_queues; i++)
4052 /* this call also flushes the previous write */
4053 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4054
Don Skidmore032b4322011-03-18 09:32:53 +00004055 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004056
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004057 netif_tx_stop_all_queues(netdev);
4058
Alexander Duyck70864002011-04-27 09:13:56 +00004059 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004060 netif_carrier_off(netdev);
4061 netif_tx_disable(netdev);
4062
4063 ixgbe_irq_disable(adapter);
4064
4065 ixgbe_napi_disable_all(adapter);
4066
Alexander Duyckd034acf2011-04-27 09:25:34 +00004067 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4068 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004069 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4070
4071 del_timer_sync(&adapter->service_timer);
4072
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004073 if (adapter->num_vfs) {
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004074 /* Clear EITR Select mapping */
4075 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
4076
4077 /* Mark all the VFs as inactive */
4078 for (i = 0 ; i < adapter->num_vfs; i++)
Rusty Russell3db1cd52011-12-19 13:56:45 +00004079 adapter->vfinfo[i].clear_to_send = false;
Alexander Duyck8e34d1a2011-07-15 07:29:49 +00004080
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004081 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004082 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004083
Auke Kok9a799d72007-09-15 14:07:45 -07004084 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004085 ixgbe_disable_tx_rx(adapter);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004086 }
4087
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004088 /* disable transmits in the hardware now that interrupts are off */
4089 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004090 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004091 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004092 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004093
4094 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004095 switch (hw->mac.type) {
4096 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004097 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004098 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004099 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4100 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004101 break;
4102 default:
4103 break;
4104 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004105
Paul Larson6f4a0e42008-06-24 17:00:56 -07004106 if (!pci_channel_offline(adapter->pdev))
4107 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004108
4109 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4110 if (hw->mac.ops.disable_tx_laser &&
4111 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004112 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004113 (hw->mac.type == ixgbe_mac_82599EB))))
4114 hw->mac.ops.disable_tx_laser(hw);
4115
Auke Kok9a799d72007-09-15 14:07:45 -07004116 ixgbe_clean_all_tx_rings(adapter);
4117 ixgbe_clean_all_rx_rings(adapter);
4118
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004119#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004120 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004121 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004122#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004123}
4124
Auke Kok9a799d72007-09-15 14:07:45 -07004125/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004126 * ixgbe_poll - NAPI Rx polling callback
4127 * @napi: structure for representing this polling device
4128 * @budget: how many packets driver is allowed to clean
4129 *
4130 * This function is used for legacy and MSI, NAPI mode
Auke Kok9a799d72007-09-15 14:07:45 -07004131 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004132static int ixgbe_poll(struct napi_struct *napi, int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07004133{
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004134 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00004135 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004136 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004137 struct ixgbe_ring *ring;
4138 int per_ring_budget;
4139 bool clean_complete = true;
Auke Kok9a799d72007-09-15 14:07:45 -07004140
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004141#ifdef CONFIG_IXGBE_DCA
Alexander Duyck33cf09c2010-11-16 19:26:55 -08004142 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
4143 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08004144#endif
4145
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004146 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
4147 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
Auke Kok9a799d72007-09-15 14:07:45 -07004148
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004149 /* attempt to distribute budget to each queue fairly, but don't allow
4150 * the budget to go below 1 because we'll exit polling */
4151 if (q_vector->rx.count > 1)
4152 per_ring_budget = max(budget/q_vector->rx.count, 1);
4153 else
4154 per_ring_budget = budget;
David S. Millerd2c7ddd2008-01-15 22:43:24 -08004155
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004156 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
4157 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
4158 per_ring_budget);
4159
4160 /* If all work not completed, return budget and keep polling */
4161 if (!clean_complete)
4162 return budget;
4163
4164 /* all work done, exit the polling mode */
4165 napi_complete(napi);
4166 if (adapter->rx_itr_setting & 1)
4167 ixgbe_set_itr(q_vector);
4168 if (!test_bit(__IXGBE_DOWN, &adapter->state))
4169 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
4170
4171 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004172}
4173
4174/**
4175 * ixgbe_tx_timeout - Respond to a Tx Hang
4176 * @netdev: network interface device structure
4177 **/
4178static void ixgbe_tx_timeout(struct net_device *netdev)
4179{
4180 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4181
4182 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004183 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004184}
4185
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004186/**
4187 * ixgbe_set_rss_queues: Allocate queues for RSS
4188 * @adapter: board private structure to initialize
4189 *
4190 * This is our "base" multiqueue mode. RSS (Receive Side Scaling) will try
4191 * to allocate one Rx queue per CPU, and if available, one Tx queue per CPU.
4192 *
4193 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004194static inline bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter)
4195{
4196 bool ret = false;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004197 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_RSS];
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004198
4199 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004200 f->mask = 0xF;
4201 adapter->num_rx_queues = f->indices;
4202 adapter->num_tx_queues = f->indices;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004203 ret = true;
4204 } else {
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004205 ret = false;
4206 }
4207
4208 return ret;
4209}
4210
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004211/**
4212 * ixgbe_set_fdir_queues: Allocate queues for Flow Director
4213 * @adapter: board private structure to initialize
4214 *
4215 * Flow Director is an advanced Rx filter, attempting to get Rx flows back
4216 * to the original CPU that initiated the Tx session. This runs in addition
4217 * to RSS, so if a packet doesn't match an FDIR filter, we can still spread the
4218 * Rx load across CPUs using RSS.
4219 *
4220 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004221static inline bool ixgbe_set_fdir_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004222{
4223 bool ret = false;
4224 struct ixgbe_ring_feature *f_fdir = &adapter->ring_feature[RING_F_FDIR];
4225
4226 f_fdir->indices = min((int)num_online_cpus(), f_fdir->indices);
4227 f_fdir->mask = 0;
4228
4229 /* Flow Director must have RSS enabled */
Alexander Duyck03ecf912011-05-20 07:36:17 +00004230 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4231 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004232 adapter->num_tx_queues = f_fdir->indices;
4233 adapter->num_rx_queues = f_fdir->indices;
4234 ret = true;
4235 } else {
4236 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004237 }
4238 return ret;
4239}
4240
Yi Zou0331a832009-05-17 12:33:52 +00004241#ifdef IXGBE_FCOE
4242/**
4243 * ixgbe_set_fcoe_queues: Allocate queues for Fiber Channel over Ethernet (FCoE)
4244 * @adapter: board private structure to initialize
4245 *
4246 * FCoE RX FCRETA can use up to 8 rx queues for up to 8 different exchanges.
4247 * The ring feature mask is not used as a mask for FCoE, as it can take any 8
4248 * rx queues out of the max number of rx queues, instead, it is used as the
4249 * index of the first rx queue used by FCoE.
4250 *
4251 **/
4252static inline bool ixgbe_set_fcoe_queues(struct ixgbe_adapter *adapter)
4253{
Yi Zou0331a832009-05-17 12:33:52 +00004254 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
4255
John Fastabende5b64632011-03-08 03:44:52 +00004256 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4257 return false;
4258
John Fastabende901acd2011-04-26 07:26:08 +00004259 f->indices = min((int)num_online_cpus(), f->indices);
John Fastabende5b64632011-03-08 03:44:52 +00004260
John Fastabende901acd2011-04-26 07:26:08 +00004261 adapter->num_rx_queues = 1;
4262 adapter->num_tx_queues = 1;
John Fastabende5b64632011-03-08 03:44:52 +00004263
John Fastabende901acd2011-04-26 07:26:08 +00004264 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
4265 e_info(probe, "FCoE enabled with RSS\n");
Alexander Duyck03ecf912011-05-20 07:36:17 +00004266 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
John Fastabende901acd2011-04-26 07:26:08 +00004267 ixgbe_set_fdir_queues(adapter);
4268 else
4269 ixgbe_set_rss_queues(adapter);
Yi Zou0331a832009-05-17 12:33:52 +00004270 }
Alexander Duyck03ecf912011-05-20 07:36:17 +00004271
John Fastabende901acd2011-04-26 07:26:08 +00004272 /* adding FCoE rx rings to the end */
4273 f->mask = adapter->num_rx_queues;
4274 adapter->num_rx_queues += f->indices;
4275 adapter->num_tx_queues += f->indices;
Yi Zou0331a832009-05-17 12:33:52 +00004276
John Fastabende5b64632011-03-08 03:44:52 +00004277 return true;
4278}
4279#endif /* IXGBE_FCOE */
4280
John Fastabende901acd2011-04-26 07:26:08 +00004281/* Artificial max queue cap per traffic class in DCB mode */
4282#define DCB_QUEUE_CAP 8
4283
John Fastabende5b64632011-03-08 03:44:52 +00004284#ifdef CONFIG_IXGBE_DCB
4285static inline bool ixgbe_set_dcb_queues(struct ixgbe_adapter *adapter)
4286{
John Fastabende901acd2011-04-26 07:26:08 +00004287 int per_tc_q, q, i, offset = 0;
4288 struct net_device *dev = adapter->netdev;
4289 int tcs = netdev_get_num_tc(dev);
John Fastabende5b64632011-03-08 03:44:52 +00004290
John Fastabende901acd2011-04-26 07:26:08 +00004291 if (!tcs)
4292 return false;
John Fastabende5b64632011-03-08 03:44:52 +00004293
John Fastabende901acd2011-04-26 07:26:08 +00004294 /* Map queue offset and counts onto allocated tx queues */
4295 per_tc_q = min(dev->num_tx_queues / tcs, (unsigned int)DCB_QUEUE_CAP);
4296 q = min((int)num_online_cpus(), per_tc_q);
John Fastabend8b1c0b22011-05-03 02:26:48 +00004297
John Fastabend8b1c0b22011-05-03 02:26:48 +00004298 for (i = 0; i < tcs; i++) {
John Fastabende901acd2011-04-26 07:26:08 +00004299 netdev_set_tc_queue(dev, i, q, offset);
4300 offset += q;
John Fastabende5b64632011-03-08 03:44:52 +00004301 }
4302
John Fastabende901acd2011-04-26 07:26:08 +00004303 adapter->num_tx_queues = q * tcs;
4304 adapter->num_rx_queues = q * tcs;
John Fastabende5b64632011-03-08 03:44:52 +00004305
4306#ifdef IXGBE_FCOE
John Fastabende901acd2011-04-26 07:26:08 +00004307 /* FCoE enabled queues require special configuration indexed
4308 * by feature specific indices and mask. Here we map FCoE
4309 * indices onto the DCB queue pairs allowing FCoE to own
4310 * configuration later.
John Fastabende5b64632011-03-08 03:44:52 +00004311 */
John Fastabende901acd2011-04-26 07:26:08 +00004312 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
4313 int tc;
4314 struct ixgbe_ring_feature *f =
4315 &adapter->ring_feature[RING_F_FCOE];
4316
4317 tc = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
4318 f->indices = dev->tc_to_txq[tc].count;
4319 f->mask = dev->tc_to_txq[tc].offset;
4320 }
John Fastabende5b64632011-03-08 03:44:52 +00004321#endif
4322
John Fastabende901acd2011-04-26 07:26:08 +00004323 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004324}
John Fastabende5b64632011-03-08 03:44:52 +00004325#endif
Yi Zou0331a832009-05-17 12:33:52 +00004326
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004327/**
4328 * ixgbe_set_sriov_queues: Allocate queues for IOV use
4329 * @adapter: board private structure to initialize
4330 *
4331 * IOV doesn't actually use anything, so just NAK the
4332 * request for now and let the other queue routines
4333 * figure out what to do.
4334 */
4335static inline bool ixgbe_set_sriov_queues(struct ixgbe_adapter *adapter)
4336{
4337 return false;
4338}
4339
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004340/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004341 * ixgbe_set_num_queues: Allocate queues for device, feature dependent
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004342 * @adapter: board private structure to initialize
4343 *
4344 * This is the top level queue allocation routine. The order here is very
4345 * important, starting with the "most" number of features turned on at once,
4346 * and ending with the smallest set of features. This way large combinations
4347 * can be allocated if they're turned on, and smaller combinations are the
4348 * fallthrough conditions.
4349 *
4350 **/
Ben Hutchings847f53f2010-09-27 08:28:56 +00004351static int ixgbe_set_num_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004352{
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004353 /* Start with base case */
4354 adapter->num_rx_queues = 1;
4355 adapter->num_tx_queues = 1;
4356 adapter->num_rx_pools = adapter->num_rx_queues;
4357 adapter->num_rx_queues_per_pool = 1;
4358
4359 if (ixgbe_set_sriov_queues(adapter))
Ben Hutchings847f53f2010-09-27 08:28:56 +00004360 goto done;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004361
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004362#ifdef CONFIG_IXGBE_DCB
4363 if (ixgbe_set_dcb_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004364 goto done;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004365
4366#endif
John Fastabende5b64632011-03-08 03:44:52 +00004367#ifdef IXGBE_FCOE
4368 if (ixgbe_set_fcoe_queues(adapter))
4369 goto done;
4370
4371#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004372 if (ixgbe_set_fdir_queues(adapter))
4373 goto done;
4374
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004375 if (ixgbe_set_rss_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004376 goto done;
4377
4378 /* fallback to base case */
4379 adapter->num_rx_queues = 1;
4380 adapter->num_tx_queues = 1;
4381
4382done:
Ben Hutchings847f53f2010-09-27 08:28:56 +00004383 /* Notify the stack of the (possibly) reduced queue counts. */
John Fastabendf0796d52010-07-01 13:21:57 +00004384 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
Ben Hutchings847f53f2010-09-27 08:28:56 +00004385 return netif_set_real_num_rx_queues(adapter->netdev,
4386 adapter->num_rx_queues);
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004387}
4388
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004389static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00004390 int vectors)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004391{
4392 int err, vector_threshold;
4393
4394 /* We'll want at least 3 (vector_threshold):
4395 * 1) TxQ[0] Cleanup
4396 * 2) RxQ[0] Cleanup
4397 * 3) Other (Link Status Change, etc.)
4398 * 4) TCP Timer (optional)
4399 */
4400 vector_threshold = MIN_MSIX_COUNT;
4401
4402 /* The more we get, the more we will assign to Tx/Rx Cleanup
4403 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
4404 * Right now, we simply care about how many we'll get; we'll
4405 * set them up later while requesting irq's.
4406 */
4407 while (vectors >= vector_threshold) {
4408 err = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Joe Perchese8e9f692010-09-07 21:34:53 +00004409 vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004410 if (!err) /* Success in acquiring all requested vectors. */
4411 break;
4412 else if (err < 0)
4413 vectors = 0; /* Nasty failure, quit now */
4414 else /* err == number of vectors we should try again with */
4415 vectors = err;
4416 }
4417
4418 if (vectors < vector_threshold) {
4419 /* Can't allocate enough MSI-X interrupts? Oh well.
4420 * This just means we'll go with either a single MSI
4421 * vector or fall back to legacy interrupts.
4422 */
Emil Tantilov849c4542010-06-03 16:53:41 +00004423 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4424 "Unable to allocate MSI-X interrupts\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004425 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4426 kfree(adapter->msix_entries);
4427 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004428 } else {
4429 adapter->flags |= IXGBE_FLAG_MSIX_ENABLED; /* Woot! */
Peter P Waskiewicz Jreb7f1392009-02-01 01:18:58 -08004430 /*
4431 * Adjust for only the vectors we'll use, which is minimum
4432 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
4433 * vectors we were allocated.
4434 */
4435 adapter->num_msix_vectors = min(vectors,
Joe Perchese8e9f692010-09-07 21:34:53 +00004436 adapter->max_msix_q_vectors + NON_Q_VECTORS);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004437 }
4438}
4439
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004440/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004441 * ixgbe_cache_ring_rss - Descriptor ring to register mapping for RSS
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004442 * @adapter: board private structure to initialize
4443 *
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004444 * Cache the descriptor ring offsets for RSS to the assigned rings.
4445 *
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004446 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004447static inline bool ixgbe_cache_ring_rss(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004448{
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004449 int i;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004450
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004451 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
4452 return false;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004453
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004454 for (i = 0; i < adapter->num_rx_queues; i++)
4455 adapter->rx_ring[i]->reg_idx = i;
4456 for (i = 0; i < adapter->num_tx_queues; i++)
4457 adapter->tx_ring[i]->reg_idx = i;
4458
4459 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004460}
4461
4462#ifdef CONFIG_IXGBE_DCB
John Fastabende5b64632011-03-08 03:44:52 +00004463
4464/* ixgbe_get_first_reg_idx - Return first register index associated with ring */
John Fastabendb32c8dc2011-04-12 02:44:55 +00004465static void ixgbe_get_first_reg_idx(struct ixgbe_adapter *adapter, u8 tc,
4466 unsigned int *tx, unsigned int *rx)
John Fastabende5b64632011-03-08 03:44:52 +00004467{
4468 struct net_device *dev = adapter->netdev;
4469 struct ixgbe_hw *hw = &adapter->hw;
4470 u8 num_tcs = netdev_get_num_tc(dev);
4471
4472 *tx = 0;
4473 *rx = 0;
4474
4475 switch (hw->mac.type) {
4476 case ixgbe_mac_82598EB:
John Fastabendaba70d52011-04-26 07:26:14 +00004477 *tx = tc << 2;
4478 *rx = tc << 3;
John Fastabende5b64632011-03-08 03:44:52 +00004479 break;
4480 case ixgbe_mac_82599EB:
4481 case ixgbe_mac_X540:
John Fastabend4fa2e0e2011-07-18 22:38:25 +00004482 if (num_tcs > 4) {
John Fastabende5b64632011-03-08 03:44:52 +00004483 if (tc < 3) {
4484 *tx = tc << 5;
4485 *rx = tc << 4;
4486 } else if (tc < 5) {
4487 *tx = ((tc + 2) << 4);
4488 *rx = tc << 4;
4489 } else if (tc < num_tcs) {
4490 *tx = ((tc + 8) << 3);
4491 *rx = tc << 4;
4492 }
John Fastabend4fa2e0e2011-07-18 22:38:25 +00004493 } else {
John Fastabende5b64632011-03-08 03:44:52 +00004494 *rx = tc << 5;
4495 switch (tc) {
4496 case 0:
4497 *tx = 0;
4498 break;
4499 case 1:
4500 *tx = 64;
4501 break;
4502 case 2:
4503 *tx = 96;
4504 break;
4505 case 3:
4506 *tx = 112;
4507 break;
4508 default:
4509 break;
4510 }
4511 }
4512 break;
4513 default:
4514 break;
4515 }
4516}
4517
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004518/**
4519 * ixgbe_cache_ring_dcb - Descriptor ring to register mapping for DCB
4520 * @adapter: board private structure to initialize
4521 *
4522 * Cache the descriptor ring offsets for DCB to the assigned rings.
4523 *
4524 **/
4525static inline bool ixgbe_cache_ring_dcb(struct ixgbe_adapter *adapter)
4526{
John Fastabende5b64632011-03-08 03:44:52 +00004527 struct net_device *dev = adapter->netdev;
4528 int i, j, k;
4529 u8 num_tcs = netdev_get_num_tc(dev);
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004530
John Fastabend8b1c0b22011-05-03 02:26:48 +00004531 if (!num_tcs)
Alexander Duyckbd508172010-11-16 19:27:03 -08004532 return false;
4533
John Fastabende5b64632011-03-08 03:44:52 +00004534 for (i = 0, k = 0; i < num_tcs; i++) {
4535 unsigned int tx_s, rx_s;
4536 u16 count = dev->tc_to_txq[i].count;
4537
4538 ixgbe_get_first_reg_idx(adapter, i, &tx_s, &rx_s);
4539 for (j = 0; j < count; j++, k++) {
4540 adapter->tx_ring[k]->reg_idx = tx_s + j;
4541 adapter->rx_ring[k]->reg_idx = rx_s + j;
4542 adapter->tx_ring[k]->dcb_tc = i;
4543 adapter->rx_ring[k]->dcb_tc = i;
Alexander Duyckbd508172010-11-16 19:27:03 -08004544 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004545 }
John Fastabende5b64632011-03-08 03:44:52 +00004546
4547 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004548}
4549#endif
4550
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004551/**
4552 * ixgbe_cache_ring_fdir - Descriptor ring to register mapping for Flow Director
4553 * @adapter: board private structure to initialize
4554 *
4555 * Cache the descriptor ring offsets for Flow Director to the assigned rings.
4556 *
4557 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004558static inline bool ixgbe_cache_ring_fdir(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004559{
4560 int i;
4561 bool ret = false;
4562
Alexander Duyck03ecf912011-05-20 07:36:17 +00004563 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4564 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004565 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004566 adapter->rx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004567 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004568 adapter->tx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004569 ret = true;
4570 }
4571
4572 return ret;
4573}
4574
Yi Zou0331a832009-05-17 12:33:52 +00004575#ifdef IXGBE_FCOE
4576/**
4577 * ixgbe_cache_ring_fcoe - Descriptor ring to register mapping for the FCoE
4578 * @adapter: board private structure to initialize
4579 *
4580 * Cache the descriptor ring offsets for FCoE mode to the assigned rings.
4581 *
4582 */
4583static inline bool ixgbe_cache_ring_fcoe(struct ixgbe_adapter *adapter)
4584{
Yi Zou0331a832009-05-17 12:33:52 +00004585 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004586 int i;
4587 u8 fcoe_rx_i = 0, fcoe_tx_i = 0;
Yi Zou0331a832009-05-17 12:33:52 +00004588
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004589 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4590 return false;
4591
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004592 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Alexander Duyck03ecf912011-05-20 07:36:17 +00004593 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004594 ixgbe_cache_ring_fdir(adapter);
4595 else
4596 ixgbe_cache_ring_rss(adapter);
4597
4598 fcoe_rx_i = f->mask;
4599 fcoe_tx_i = f->mask;
4600 }
4601 for (i = 0; i < f->indices; i++, fcoe_rx_i++, fcoe_tx_i++) {
4602 adapter->rx_ring[f->mask + i]->reg_idx = fcoe_rx_i;
4603 adapter->tx_ring[f->mask + i]->reg_idx = fcoe_tx_i;
4604 }
4605 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004606}
4607
4608#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004609/**
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004610 * ixgbe_cache_ring_sriov - Descriptor ring to register mapping for sriov
4611 * @adapter: board private structure to initialize
4612 *
4613 * SR-IOV doesn't use any descriptor rings but changes the default if
4614 * no other mapping is used.
4615 *
4616 */
4617static inline bool ixgbe_cache_ring_sriov(struct ixgbe_adapter *adapter)
4618{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004619 adapter->rx_ring[0]->reg_idx = adapter->num_vfs * 2;
4620 adapter->tx_ring[0]->reg_idx = adapter->num_vfs * 2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004621 if (adapter->num_vfs)
4622 return true;
4623 else
4624 return false;
4625}
4626
4627/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004628 * ixgbe_cache_ring_register - Descriptor ring to register mapping
4629 * @adapter: board private structure to initialize
4630 *
4631 * Once we know the feature-set enabled for the device, we'll cache
4632 * the register offset the descriptor ring is assigned to.
4633 *
4634 * Note, the order the various feature calls is important. It must start with
4635 * the "most" features enabled at the same time, then trickle down to the
4636 * least amount of features turned on at once.
4637 **/
4638static void ixgbe_cache_ring_register(struct ixgbe_adapter *adapter)
4639{
4640 /* start with default case */
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004641 adapter->rx_ring[0]->reg_idx = 0;
4642 adapter->tx_ring[0]->reg_idx = 0;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004643
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004644 if (ixgbe_cache_ring_sriov(adapter))
4645 return;
4646
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004647#ifdef CONFIG_IXGBE_DCB
4648 if (ixgbe_cache_ring_dcb(adapter))
4649 return;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004650#endif
John Fastabende5b64632011-03-08 03:44:52 +00004651
4652#ifdef IXGBE_FCOE
4653 if (ixgbe_cache_ring_fcoe(adapter))
4654 return;
4655#endif /* IXGBE_FCOE */
4656
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004657 if (ixgbe_cache_ring_fdir(adapter))
4658 return;
4659
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004660 if (ixgbe_cache_ring_rss(adapter))
4661 return;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004662}
4663
Auke Kok9a799d72007-09-15 14:07:45 -07004664/**
4665 * ixgbe_alloc_queues - Allocate memory for all rings
4666 * @adapter: board private structure to initialize
4667 *
4668 * We allocate one ring per queue at run-time since we don't know the
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004669 * number of queues at compile-time. The polling_netdev array is
4670 * intended for Multiqueue, but should work fine with a single queue.
Auke Kok9a799d72007-09-15 14:07:45 -07004671 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004672static int ixgbe_alloc_queues(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004673{
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004674 int rx = 0, tx = 0, nid = adapter->node;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004675
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004676 if (nid < 0 || !node_online(nid))
4677 nid = first_online_node;
4678
4679 for (; tx < adapter->num_tx_queues; tx++) {
4680 struct ixgbe_ring *ring;
4681
4682 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004683 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004684 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004685 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004686 goto err_allocation;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004687 ring->count = adapter->tx_ring_count;
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004688 ring->queue_index = tx;
4689 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004690 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004691 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004692
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004693 adapter->tx_ring[tx] = ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004694 }
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004695
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004696 for (; rx < adapter->num_rx_queues; rx++) {
4697 struct ixgbe_ring *ring;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004698
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004699 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004700 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004701 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004702 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004703 goto err_allocation;
4704 ring->count = adapter->rx_ring_count;
4705 ring->queue_index = rx;
4706 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004707 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004708 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004709
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004710 adapter->rx_ring[rx] = ring;
Auke Kok9a799d72007-09-15 14:07:45 -07004711 }
4712
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004713 ixgbe_cache_ring_register(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004714
4715 return 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004716
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004717err_allocation:
4718 while (tx)
4719 kfree(adapter->tx_ring[--tx]);
4720
4721 while (rx)
4722 kfree(adapter->rx_ring[--rx]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004723 return -ENOMEM;
4724}
4725
4726/**
4727 * ixgbe_set_interrupt_capability - set MSI-X or MSI if supported
4728 * @adapter: board private structure to initialize
4729 *
4730 * Attempt to configure the interrupts using the best available
4731 * capabilities of the hardware and the kernel.
4732 **/
Al Virofeea6a52008-11-27 15:34:07 -08004733static int ixgbe_set_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004734{
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004735 struct ixgbe_hw *hw = &adapter->hw;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004736 int err = 0;
4737 int vector, v_budget;
4738
4739 /*
4740 * It's easy to be greedy for MSI-X vectors, but it really
4741 * doesn't do us much good if we have a lot more vectors
4742 * than CPU's. So let's be conservative and only ask for
PJ Waskiewicz342bde12009-11-12 23:50:43 +00004743 * (roughly) the same number of vectors as there are CPU's.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004744 */
4745 v_budget = min(adapter->num_rx_queues + adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00004746 (int)num_online_cpus()) + NON_Q_VECTORS;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004747
4748 /*
4749 * At the same time, hardware can only support a maximum of
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004750 * hw.mac->max_msix_vectors vectors. With features
4751 * such as RSS and VMDq, we can easily surpass the number of Rx and Tx
4752 * descriptor queues supported by our device. Thus, we cap it off in
4753 * those rare cases where the cpu count also exceeds our vector limit.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004754 */
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004755 v_budget = min(v_budget, (int)hw->mac.max_msix_vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004756
4757 /* A failure in MSI-X entry allocation isn't fatal, but it does
4758 * mean we disable MSI-X capabilities of the adapter. */
4759 adapter->msix_entries = kcalloc(v_budget,
Joe Perchese8e9f692010-09-07 21:34:53 +00004760 sizeof(struct msix_entry), GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004761 if (adapter->msix_entries) {
4762 for (vector = 0; vector < v_budget; vector++)
4763 adapter->msix_entries[vector].entry = vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004764
Alexander Duyck7a921c92009-05-06 10:43:28 +00004765 ixgbe_acquire_msix_vectors(adapter, v_budget);
4766
4767 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4768 goto out;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004769 }
David S. Miller26d27842010-05-03 15:18:22 -07004770
Alexander Duyck7a921c92009-05-06 10:43:28 +00004771 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
4772 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
Alexander Duyck03ecf912011-05-20 07:36:17 +00004773 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck45b9f502011-01-06 14:29:59 +00004774 e_err(probe,
Alexander Duyck03ecf912011-05-20 07:36:17 +00004775 "ATR is not supported while multiple "
Alexander Duyck45b9f502011-01-06 14:29:59 +00004776 "queues are disabled. Disabling Flow Director\n");
4777 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004778 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004779 adapter->atr_sample_rate = 0;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004780 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4781 ixgbe_disable_sriov(adapter);
4782
Ben Hutchings847f53f2010-09-27 08:28:56 +00004783 err = ixgbe_set_num_queues(adapter);
4784 if (err)
4785 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004786
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004787 err = pci_enable_msi(adapter->pdev);
4788 if (!err) {
4789 adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
4790 } else {
Emil Tantilov849c4542010-06-03 16:53:41 +00004791 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4792 "Unable to allocate MSI interrupt, "
4793 "falling back to legacy. Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004794 /* reset err */
4795 err = 0;
4796 }
4797
4798out:
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004799 return err;
4800}
4801
Alexander Duyck7a921c92009-05-06 10:43:28 +00004802/**
4803 * ixgbe_alloc_q_vectors - Allocate memory for interrupt vectors
4804 * @adapter: board private structure to initialize
4805 *
4806 * We allocate one q_vector per queue interrupt. If allocation fails we
4807 * return -ENOMEM.
4808 **/
4809static int ixgbe_alloc_q_vectors(struct ixgbe_adapter *adapter)
4810{
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004811 int v_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004812 struct ixgbe_q_vector *q_vector;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004813
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004814 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00004815 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004816 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00004817 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004818
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004819 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004820 q_vector = kzalloc_node(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004821 GFP_KERNEL, adapter->node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004822 if (!q_vector)
4823 q_vector = kzalloc(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004824 GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004825 if (!q_vector)
4826 goto err_out;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004827
Alexander Duyck7a921c92009-05-06 10:43:28 +00004828 q_vector->adapter = adapter;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004829 q_vector->v_idx = v_idx;
4830
Alexander Duyck207867f2011-07-15 03:05:37 +00004831 /* Allocate the affinity_hint cpumask, configure the mask */
4832 if (!alloc_cpumask_var(&q_vector->affinity_mask, GFP_KERNEL))
4833 goto err_out;
4834 cpumask_set_cpu(v_idx, q_vector->affinity_mask);
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004835 netif_napi_add(adapter->netdev, &q_vector->napi,
4836 ixgbe_poll, 64);
4837 adapter->q_vector[v_idx] = q_vector;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004838 }
4839
4840 return 0;
4841
4842err_out:
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004843 while (v_idx) {
4844 v_idx--;
4845 q_vector = adapter->q_vector[v_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00004846 netif_napi_del(&q_vector->napi);
Alexander Duyck207867f2011-07-15 03:05:37 +00004847 free_cpumask_var(q_vector->affinity_mask);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004848 kfree(q_vector);
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004849 adapter->q_vector[v_idx] = NULL;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004850 }
4851 return -ENOMEM;
4852}
4853
4854/**
4855 * ixgbe_free_q_vectors - Free memory allocated for interrupt vectors
4856 * @adapter: board private structure to initialize
4857 *
4858 * This function frees the memory allocated to the q_vectors. In addition if
4859 * NAPI is enabled it will delete any references to the NAPI struct prior
4860 * to freeing the q_vector.
4861 **/
4862static void ixgbe_free_q_vectors(struct ixgbe_adapter *adapter)
4863{
Alexander Duyck207867f2011-07-15 03:05:37 +00004864 int v_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004865
Alexander Duyck91281fd2009-06-04 16:00:27 +00004866 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00004867 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004868 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00004869 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004870
Alexander Duyck207867f2011-07-15 03:05:37 +00004871 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
4872 struct ixgbe_q_vector *q_vector = adapter->q_vector[v_idx];
4873 adapter->q_vector[v_idx] = NULL;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004874 netif_napi_del(&q_vector->napi);
Alexander Duyck207867f2011-07-15 03:05:37 +00004875 free_cpumask_var(q_vector->affinity_mask);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004876 kfree(q_vector);
4877 }
4878}
4879
Don Skidmore7b25cdb2009-08-25 04:47:32 +00004880static void ixgbe_reset_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004881{
4882 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
4883 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4884 pci_disable_msix(adapter->pdev);
4885 kfree(adapter->msix_entries);
4886 adapter->msix_entries = NULL;
4887 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
4888 adapter->flags &= ~IXGBE_FLAG_MSI_ENABLED;
4889 pci_disable_msi(adapter->pdev);
4890 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004891}
4892
4893/**
4894 * ixgbe_init_interrupt_scheme - Determine proper interrupt scheme
4895 * @adapter: board private structure to initialize
4896 *
4897 * We determine which interrupt scheme to use based on...
4898 * - Kernel support (MSI, MSI-X)
4899 * - which can be user-defined (via MODULE_PARAM)
4900 * - Hardware queue count (num_*_queues)
4901 * - defined by miscellaneous hardware support/features (RSS, etc.)
4902 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004903int ixgbe_init_interrupt_scheme(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004904{
4905 int err;
4906
4907 /* Number of supported queues */
Ben Hutchings847f53f2010-09-27 08:28:56 +00004908 err = ixgbe_set_num_queues(adapter);
4909 if (err)
4910 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004911
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004912 err = ixgbe_set_interrupt_capability(adapter);
4913 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004914 e_dev_err("Unable to setup interrupt capabilities\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004915 goto err_set_interrupt;
4916 }
4917
Alexander Duyck7a921c92009-05-06 10:43:28 +00004918 err = ixgbe_alloc_q_vectors(adapter);
4919 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004920 e_dev_err("Unable to allocate memory for queue vectors\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00004921 goto err_alloc_q_vectors;
4922 }
4923
4924 err = ixgbe_alloc_queues(adapter);
4925 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004926 e_dev_err("Unable to allocate memory for queues\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00004927 goto err_alloc_queues;
4928 }
4929
Emil Tantilov849c4542010-06-03 16:53:41 +00004930 e_dev_info("Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
Emil Tantilov396e7992010-07-01 20:05:12 +00004931 (adapter->num_rx_queues > 1) ? "Enabled" : "Disabled",
4932 adapter->num_rx_queues, adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004933
4934 set_bit(__IXGBE_DOWN, &adapter->state);
4935
4936 return 0;
4937
Alexander Duyck7a921c92009-05-06 10:43:28 +00004938err_alloc_queues:
4939 ixgbe_free_q_vectors(adapter);
4940err_alloc_q_vectors:
4941 ixgbe_reset_interrupt_capability(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004942err_set_interrupt:
Alexander Duyck7a921c92009-05-06 10:43:28 +00004943 return err;
4944}
4945
4946/**
4947 * ixgbe_clear_interrupt_scheme - Clear the current interrupt scheme settings
4948 * @adapter: board private structure to clear interrupt scheme on
4949 *
4950 * We go through and clear interrupt specific resources and reset the structure
4951 * to pre-load conditions
4952 **/
4953void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter)
4954{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004955 int i;
4956
4957 for (i = 0; i < adapter->num_tx_queues; i++) {
4958 kfree(adapter->tx_ring[i]);
4959 adapter->tx_ring[i] = NULL;
4960 }
4961 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08004962 struct ixgbe_ring *ring = adapter->rx_ring[i];
4963
4964 /* ixgbe_get_stats64() might access this ring, we must wait
4965 * a grace period before freeing it.
4966 */
Lai Jiangshanbcec8b62011-03-18 11:57:21 +08004967 kfree_rcu(ring, rcu);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004968 adapter->rx_ring[i] = NULL;
4969 }
Alexander Duyck7a921c92009-05-06 10:43:28 +00004970
Don Skidmoreb8eb3a12010-12-01 20:54:53 +00004971 adapter->num_tx_queues = 0;
4972 adapter->num_rx_queues = 0;
4973
Alexander Duyck7a921c92009-05-06 10:43:28 +00004974 ixgbe_free_q_vectors(adapter);
4975 ixgbe_reset_interrupt_capability(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004976}
4977
4978/**
4979 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4980 * @adapter: board private structure to initialize
4981 *
4982 * ixgbe_sw_init initializes the Adapter private data structure.
4983 * Fields are initialized based on PCI device information and
4984 * OS network device settings (MTU size).
4985 **/
4986static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
4987{
4988 struct ixgbe_hw *hw = &adapter->hw;
4989 struct pci_dev *pdev = adapter->pdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004990 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004991#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004992 int j;
4993 struct tc_configuration *tc;
4994#endif
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004995
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004996 /* PCI config space info */
4997
4998 hw->vendor_id = pdev->vendor;
4999 hw->device_id = pdev->device;
5000 hw->revision_id = pdev->revision;
5001 hw->subsystem_vendor_id = pdev->subsystem_vendor;
5002 hw->subsystem_device_id = pdev->subsystem_device;
5003
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005004 /* Set capability flags */
5005 rss = min(IXGBE_MAX_RSS_INDICES, (int)num_online_cpus());
5006 adapter->ring_feature[RING_F_RSS].indices = rss;
5007 adapter->flags |= IXGBE_FLAG_RSS_ENABLED;
Alexander Duyckbd508172010-11-16 19:27:03 -08005008 switch (hw->mac.type) {
5009 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00005010 if (hw->device_id == IXGBE_DEV_ID_82598AT)
5011 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005012 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08005013 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005014 case ixgbe_mac_X540:
Jacob Keller4f51bf72011-08-20 04:49:45 +00005015 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
5016 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005017 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00005018 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
5019 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07005020 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
5021 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00005022 /* Flow Director hash filters enabled */
5023 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
5024 adapter->atr_sample_rate = 20;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005025 adapter->ring_feature[RING_F_FDIR].indices =
Joe Perchese8e9f692010-09-07 21:34:53 +00005026 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00005027 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00005028#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00005029 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
5030 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5031 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou61a0f422009-12-03 11:32:22 +00005032#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00005033 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00005034 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00005035#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00005036#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005037 break;
5038 default:
5039 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00005040 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08005041
Alexander Duyck1fc5f032011-06-02 04:28:39 +00005042 /* n-tuple support exists, always init our spinlock */
5043 spin_lock_init(&adapter->fdir_perfect_lock);
5044
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005045#ifdef CONFIG_IXGBE_DCB
John Fastabend4de2a022011-09-27 03:52:01 +00005046 switch (hw->mac.type) {
5047 case ixgbe_mac_X540:
5048 adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS;
5049 adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS;
5050 break;
5051 default:
5052 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
5053 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
5054 break;
5055 }
5056
Alexander Duyck2f90b862008-11-20 20:52:10 -08005057 /* Configure DCB traffic classes */
5058 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
5059 tc = &adapter->dcb_cfg.tc_config[j];
5060 tc->path[DCB_TX_CONFIG].bwg_id = 0;
5061 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
5062 tc->path[DCB_RX_CONFIG].bwg_id = 0;
5063 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
5064 tc->dcb_pfc = pfc_disabled;
5065 }
John Fastabend4de2a022011-09-27 03:52:01 +00005066
5067 /* Initialize default user to priority mapping, UPx->TC0 */
5068 tc = &adapter->dcb_cfg.tc_config[0];
5069 tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF;
5070 tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF;
5071
Alexander Duyck2f90b862008-11-20 20:52:10 -08005072 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
5073 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005074 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005075 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00005076 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005077 ixgbe_copy_dcb_cfg(&adapter->dcb_cfg, &adapter->temp_dcb_cfg,
John Fastabende5b64632011-03-08 03:44:52 +00005078 MAX_TRAFFIC_CLASS);
Alexander Duyck2f90b862008-11-20 20:52:10 -08005079
5080#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005081
5082 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005083 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005084 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005085#ifdef CONFIG_DCB
5086 adapter->last_lfc_mode = hw->fc.current_mode;
5087#endif
John Fastabend9da712d2011-08-23 03:14:22 +00005088 ixgbe_pbthresh_setup(adapter);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005089 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5090 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00005091 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07005092
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005093 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005094 adapter->rx_itr_setting = 1;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005095 adapter->tx_itr_setting = 1;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005096
5097 /* set defaults for eitr in MegaBytes */
5098 adapter->eitr_low = 10;
5099 adapter->eitr_high = 20;
5100
5101 /* set default ring sizes */
5102 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5103 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5104
Alexander Duyckbd198052011-06-11 01:45:08 +00005105 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00005106 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00005107
Auke Kok9a799d72007-09-15 14:07:45 -07005108 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005109 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005110 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005111 return -EIO;
5112 }
5113
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005114 /* enable rx csum by default */
Auke Kok9a799d72007-09-15 14:07:45 -07005115 adapter->flags |= IXGBE_FLAG_RX_CSUM_ENABLED;
5116
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005117 /* get assigned NUMA node */
5118 adapter->node = dev_to_node(&pdev->dev);
5119
Auke Kok9a799d72007-09-15 14:07:45 -07005120 set_bit(__IXGBE_DOWN, &adapter->state);
5121
5122 return 0;
5123}
5124
5125/**
5126 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005127 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005128 *
5129 * Return 0 on success, negative on failure
5130 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005131int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005132{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005133 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07005134 int size;
5135
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005136 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005137 tx_ring->tx_buffer_info = vzalloc_node(size, tx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005138 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005139 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005140 if (!tx_ring->tx_buffer_info)
5141 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005142
5143 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005144 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005145 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005146
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005147 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005148 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005149 if (!tx_ring->desc)
5150 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005151
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005152 tx_ring->next_to_use = 0;
5153 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005154 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005155
5156err:
5157 vfree(tx_ring->tx_buffer_info);
5158 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005159 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005160 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005161}
5162
5163/**
Alexander Duyck69888672008-09-11 20:05:39 -07005164 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5165 * @adapter: board private structure
5166 *
5167 * If this function returns with an error, then it's possible one or
5168 * more of the rings is populated (while the rest are not). It is the
5169 * callers duty to clean those orphaned rings.
5170 *
5171 * Return 0 on success, negative on failure
5172 **/
5173static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5174{
5175 int i, err = 0;
5176
5177 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005178 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005179 if (!err)
5180 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005181 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005182 break;
5183 }
5184
5185 return err;
5186}
5187
5188/**
Auke Kok9a799d72007-09-15 14:07:45 -07005189 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005190 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005191 *
5192 * Returns 0 on success, negative on failure
5193 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005194int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005195{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005196 struct device *dev = rx_ring->dev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005197 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005198
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005199 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005200 rx_ring->rx_buffer_info = vzalloc_node(size, rx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005201 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005202 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005203 if (!rx_ring->rx_buffer_info)
5204 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005205
Auke Kok9a799d72007-09-15 14:07:45 -07005206 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005207 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5208 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005209
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005210 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005211 &rx_ring->dma, GFP_KERNEL);
Auke Kok9a799d72007-09-15 14:07:45 -07005212
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005213 if (!rx_ring->desc)
5214 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005215
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005216 rx_ring->next_to_clean = 0;
5217 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005218
5219 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005220err:
5221 vfree(rx_ring->rx_buffer_info);
5222 rx_ring->rx_buffer_info = NULL;
5223 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005224 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005225}
5226
5227/**
Alexander Duyck69888672008-09-11 20:05:39 -07005228 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5229 * @adapter: board private structure
5230 *
5231 * If this function returns with an error, then it's possible one or
5232 * more of the rings is populated (while the rest are not). It is the
5233 * callers duty to clean those orphaned rings.
5234 *
5235 * Return 0 on success, negative on failure
5236 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005237static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5238{
5239 int i, err = 0;
5240
5241 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005242 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005243 if (!err)
5244 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005245 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005246 break;
5247 }
5248
5249 return err;
5250}
5251
5252/**
Auke Kok9a799d72007-09-15 14:07:45 -07005253 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005254 * @tx_ring: Tx descriptor ring for a specific queue
5255 *
5256 * Free all transmit software resources
5257 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005258void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005259{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005260 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005261
5262 vfree(tx_ring->tx_buffer_info);
5263 tx_ring->tx_buffer_info = NULL;
5264
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005265 /* if not set, then don't free */
5266 if (!tx_ring->desc)
5267 return;
5268
5269 dma_free_coherent(tx_ring->dev, tx_ring->size,
5270 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005271
5272 tx_ring->desc = NULL;
5273}
5274
5275/**
5276 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5277 * @adapter: board private structure
5278 *
5279 * Free all transmit software resources
5280 **/
5281static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5282{
5283 int i;
5284
5285 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005286 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005287 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005288}
5289
5290/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005291 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005292 * @rx_ring: ring to clean the resources from
5293 *
5294 * Free all receive software resources
5295 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005296void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005297{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005298 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005299
5300 vfree(rx_ring->rx_buffer_info);
5301 rx_ring->rx_buffer_info = NULL;
5302
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005303 /* if not set, then don't free */
5304 if (!rx_ring->desc)
5305 return;
5306
5307 dma_free_coherent(rx_ring->dev, rx_ring->size,
5308 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005309
5310 rx_ring->desc = NULL;
5311}
5312
5313/**
5314 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5315 * @adapter: board private structure
5316 *
5317 * Free all receive software resources
5318 **/
5319static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5320{
5321 int i;
5322
5323 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005324 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005325 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005326}
5327
5328/**
Auke Kok9a799d72007-09-15 14:07:45 -07005329 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5330 * @netdev: network interface device structure
5331 * @new_mtu: new value for maximum frame size
5332 *
5333 * Returns 0 on success, negative on failure
5334 **/
5335static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5336{
5337 struct ixgbe_adapter *adapter = netdev_priv(netdev);
John Fastabend16b61be2010-11-16 19:26:44 -08005338 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07005339 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5340
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005341 /* MTU < 68 is an error and causes problems on some kernels */
Greg Rosee9f98072011-01-26 01:06:07 +00005342 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED &&
5343 hw->mac.type != ixgbe_mac_X540) {
5344 if ((new_mtu < 68) || (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
5345 return -EINVAL;
5346 } else {
5347 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
5348 return -EINVAL;
5349 }
Auke Kok9a799d72007-09-15 14:07:45 -07005350
Emil Tantilov396e7992010-07-01 20:05:12 +00005351 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005352 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005353 netdev->mtu = new_mtu;
5354
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005355 if (netif_running(netdev))
5356 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005357
5358 return 0;
5359}
5360
5361/**
5362 * ixgbe_open - Called when a network interface is made active
5363 * @netdev: network interface device structure
5364 *
5365 * Returns 0 on success, negative value on failure
5366 *
5367 * The open entry point is called when a network interface is made
5368 * active by the system (IFF_UP). At this point all resources needed
5369 * for transmit and receive operations are allocated, the interrupt
5370 * handler is registered with the OS, the watchdog timer is started,
5371 * and the stack is notified that the interface is ready.
5372 **/
5373static int ixgbe_open(struct net_device *netdev)
5374{
5375 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5376 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07005377
Auke Kok4bebfaa2008-02-11 09:26:01 -08005378 /* disallow open during test */
5379 if (test_bit(__IXGBE_TESTING, &adapter->state))
5380 return -EBUSY;
5381
Jesse Brandeburg54386462009-04-17 20:44:27 +00005382 netif_carrier_off(netdev);
5383
Auke Kok9a799d72007-09-15 14:07:45 -07005384 /* allocate transmit descriptors */
5385 err = ixgbe_setup_all_tx_resources(adapter);
5386 if (err)
5387 goto err_setup_tx;
5388
Auke Kok9a799d72007-09-15 14:07:45 -07005389 /* allocate receive descriptors */
5390 err = ixgbe_setup_all_rx_resources(adapter);
5391 if (err)
5392 goto err_setup_rx;
5393
5394 ixgbe_configure(adapter);
5395
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005396 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005397 if (err)
5398 goto err_req_irq;
5399
Alexander Duyckc7ccde02011-07-21 00:40:40 +00005400 ixgbe_up_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005401
5402 return 0;
5403
Auke Kok9a799d72007-09-15 14:07:45 -07005404err_req_irq:
Auke Kok9a799d72007-09-15 14:07:45 -07005405err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005406 ixgbe_free_all_rx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005407err_setup_tx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005408 ixgbe_free_all_tx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005409 ixgbe_reset(adapter);
5410
5411 return err;
5412}
5413
5414/**
5415 * ixgbe_close - Disables a network interface
5416 * @netdev: network interface device structure
5417 *
5418 * Returns 0, this is not allowed to fail
5419 *
5420 * The close entry point is called when an interface is de-activated
5421 * by the OS. The hardware is still under the drivers control, but
5422 * needs to be disabled. A global MAC reset is issued to stop the
5423 * hardware, and all transmit and receive resources are freed.
5424 **/
5425static int ixgbe_close(struct net_device *netdev)
5426{
5427 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005428
5429 ixgbe_down(adapter);
5430 ixgbe_free_irq(adapter);
5431
Alexander Duycke4911d52011-05-11 07:18:52 +00005432 ixgbe_fdir_filter_exit(adapter);
5433
Auke Kok9a799d72007-09-15 14:07:45 -07005434 ixgbe_free_all_tx_resources(adapter);
5435 ixgbe_free_all_rx_resources(adapter);
5436
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005437 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005438
5439 return 0;
5440}
5441
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005442#ifdef CONFIG_PM
5443static int ixgbe_resume(struct pci_dev *pdev)
5444{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005445 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5446 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005447 u32 err;
5448
5449 pci_set_power_state(pdev, PCI_D0);
5450 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08005451 /*
5452 * pci_restore_state clears dev->state_saved so call
5453 * pci_save_state to restore it.
5454 */
5455 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005456
5457 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005458 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005459 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005460 return err;
5461 }
5462 pci_set_master(pdev);
5463
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005464 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005465
5466 err = ixgbe_init_interrupt_scheme(adapter);
5467 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005468 e_dev_err("Cannot initialize interrupts for device\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005469 return err;
5470 }
5471
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005472 ixgbe_reset(adapter);
5473
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005474 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5475
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005476 if (netif_running(netdev)) {
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005477 err = ixgbe_open(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005478 if (err)
5479 return err;
5480 }
5481
5482 netif_device_attach(netdev);
5483
5484 return 0;
5485}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005486#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005487
5488static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005489{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005490 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5491 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005492 struct ixgbe_hw *hw = &adapter->hw;
5493 u32 ctrl, fctrl;
5494 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005495#ifdef CONFIG_PM
5496 int retval = 0;
5497#endif
5498
5499 netif_device_detach(netdev);
5500
5501 if (netif_running(netdev)) {
5502 ixgbe_down(adapter);
5503 ixgbe_free_irq(adapter);
5504 ixgbe_free_all_tx_resources(adapter);
5505 ixgbe_free_all_rx_resources(adapter);
5506 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005507
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005508 ixgbe_clear_interrupt_scheme(adapter);
John Fastabendd033d522011-02-10 14:40:01 +00005509#ifdef CONFIG_DCB
5510 kfree(adapter->ixgbe_ieee_pfc);
5511 kfree(adapter->ixgbe_ieee_ets);
5512#endif
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005513
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005514#ifdef CONFIG_PM
5515 retval = pci_save_state(pdev);
5516 if (retval)
5517 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005518
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005519#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005520 if (wufc) {
5521 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005522
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005523 /* turn on all-multi mode if wake on multicast is enabled */
5524 if (wufc & IXGBE_WUFC_MC) {
5525 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5526 fctrl |= IXGBE_FCTRL_MPE;
5527 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5528 }
5529
5530 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5531 ctrl |= IXGBE_CTRL_GIO_DIS;
5532 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5533
5534 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5535 } else {
5536 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5537 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5538 }
5539
Alexander Duyckbd508172010-11-16 19:27:03 -08005540 switch (hw->mac.type) {
5541 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005542 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005543 break;
5544 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005545 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005546 pci_wake_from_d3(pdev, !!wufc);
5547 break;
5548 default:
5549 break;
5550 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005551
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005552 *enable_wake = !!wufc;
5553
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005554 ixgbe_release_hw_control(adapter);
5555
5556 pci_disable_device(pdev);
5557
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005558 return 0;
5559}
5560
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005561#ifdef CONFIG_PM
5562static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5563{
5564 int retval;
5565 bool wake;
5566
5567 retval = __ixgbe_shutdown(pdev, &wake);
5568 if (retval)
5569 return retval;
5570
5571 if (wake) {
5572 pci_prepare_to_sleep(pdev);
5573 } else {
5574 pci_wake_from_d3(pdev, false);
5575 pci_set_power_state(pdev, PCI_D3hot);
5576 }
5577
5578 return 0;
5579}
5580#endif /* CONFIG_PM */
5581
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005582static void ixgbe_shutdown(struct pci_dev *pdev)
5583{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005584 bool wake;
5585
5586 __ixgbe_shutdown(pdev, &wake);
5587
5588 if (system_state == SYSTEM_POWER_OFF) {
5589 pci_wake_from_d3(pdev, wake);
5590 pci_set_power_state(pdev, PCI_D3hot);
5591 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005592}
5593
5594/**
Auke Kok9a799d72007-09-15 14:07:45 -07005595 * ixgbe_update_stats - Update the board statistics counters.
5596 * @adapter: board private structure
5597 **/
5598void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5599{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005600 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005601 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005602 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005603 u64 total_mpc = 0;
5604 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005605 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5606 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
5607 u64 bytes = 0, packets = 0;
Amir Hanania7b859eb2011-08-31 02:07:55 +00005608#ifdef IXGBE_FCOE
5609 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
5610 unsigned int cpu;
5611 u64 fcoe_noddp_counts_sum = 0, fcoe_noddp_ext_buff_counts_sum = 0;
5612#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -07005613
Don Skidmored08935c2010-06-11 13:20:29 +00005614 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5615 test_bit(__IXGBE_RESETTING, &adapter->state))
5616 return;
5617
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005618 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005619 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005620 u64 rsc_flush = 0;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005621 for (i = 0; i < 16; i++)
5622 adapter->hw_rx_no_dma_resources +=
Joe Perches7ca647b2010-09-07 21:35:40 +00005623 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005624 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005625 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5626 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005627 }
5628 adapter->rsc_total_count = rsc_count;
5629 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005630 }
5631
Alexander Duyck5b7da512010-11-16 19:26:50 -08005632 for (i = 0; i < adapter->num_rx_queues; i++) {
5633 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5634 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5635 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5636 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
5637 bytes += rx_ring->stats.bytes;
5638 packets += rx_ring->stats.packets;
5639 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005640 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005641 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5642 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
5643 netdev->stats.rx_bytes = bytes;
5644 netdev->stats.rx_packets = packets;
5645
5646 bytes = 0;
5647 packets = 0;
5648 /* gather some stats to the adapter struct that are per queue */
5649 for (i = 0; i < adapter->num_tx_queues; i++) {
5650 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5651 restart_queue += tx_ring->tx_stats.restart_queue;
5652 tx_busy += tx_ring->tx_stats.tx_busy;
5653 bytes += tx_ring->stats.bytes;
5654 packets += tx_ring->stats.packets;
5655 }
5656 adapter->restart_queue = restart_queue;
5657 adapter->tx_busy = tx_busy;
5658 netdev->stats.tx_bytes = bytes;
5659 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005660
Joe Perches7ca647b2010-09-07 21:35:40 +00005661 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005662
5663 /* 8 register reads */
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005664 for (i = 0; i < 8; i++) {
5665 /* for packet buffers not used, the register should read 0 */
5666 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5667 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005668 hwstats->mpc[i] += mpc;
5669 total_mpc += hwstats->mpc[i];
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005670 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5671 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005672 switch (hw->mac.type) {
5673 case ixgbe_mac_82598EB:
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005674 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5675 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5676 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Joe Perches7ca647b2010-09-07 21:35:40 +00005677 hwstats->pxonrxc[i] +=
5678 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005679 break;
5680 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005681 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005682 hwstats->pxonrxc[i] +=
5683 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005684 break;
5685 default:
5686 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005687 }
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005688 }
Emil Tantilov1a70db4b2011-07-26 07:51:41 +00005689
5690 /*16 register reads */
5691 for (i = 0; i < 16; i++) {
5692 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5693 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5694 if ((hw->mac.type == ixgbe_mac_82599EB) ||
5695 (hw->mac.type == ixgbe_mac_X540)) {
5696 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i));
5697 IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */
5698 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i));
5699 IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */
5700 }
5701 }
5702
Joe Perches7ca647b2010-09-07 21:35:40 +00005703 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005704 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005705 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005706
John Fastabendc84d3242010-11-16 19:27:12 -08005707 ixgbe_update_xoff_received(adapter);
5708
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005709 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005710 switch (hw->mac.type) {
5711 case ixgbe_mac_82598EB:
5712 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005713 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5714 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5715 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5716 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005717 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005718 /* OS2BMC stats are X540 only*/
5719 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5720 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5721 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5722 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5723 case ixgbe_mac_82599EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005724 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005725 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005726 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005727 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005728 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005729 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005730 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005731 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5732 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005733#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005734 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5735 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5736 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5737 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5738 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5739 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Amir Hanania7b859eb2011-08-31 02:07:55 +00005740 /* Add up per cpu counters for total ddp aloc fail */
5741 if (fcoe->pcpu_noddp && fcoe->pcpu_noddp_ext_buff) {
5742 for_each_possible_cpu(cpu) {
5743 fcoe_noddp_counts_sum +=
5744 *per_cpu_ptr(fcoe->pcpu_noddp, cpu);
5745 fcoe_noddp_ext_buff_counts_sum +=
5746 *per_cpu_ptr(fcoe->
5747 pcpu_noddp_ext_buff, cpu);
5748 }
5749 }
5750 hwstats->fcoe_noddp = fcoe_noddp_counts_sum;
5751 hwstats->fcoe_noddp_ext_buff = fcoe_noddp_ext_buff_counts_sum;
Yi Zou6d455222009-05-13 13:12:16 +00005752#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005753 break;
5754 default:
5755 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005756 }
Auke Kok9a799d72007-09-15 14:07:45 -07005757 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005758 hwstats->bprc += bprc;
5759 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005760 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005761 hwstats->mprc -= bprc;
5762 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5763 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5764 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5765 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5766 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5767 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5768 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5769 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005770 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005771 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005772 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005773 hwstats->lxofftxc += lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005774 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5775 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005776 /*
5777 * 82598 errata - tx of flow control packets is included in tx counters
5778 */
5779 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005780 hwstats->gptc -= xon_off_tot;
5781 hwstats->mptc -= xon_off_tot;
5782 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5783 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5784 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5785 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5786 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5787 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5788 hwstats->ptc64 -= xon_off_tot;
5789 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5790 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5791 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5792 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5793 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5794 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005795
5796 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005797 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005798
5799 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005800 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005801 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005802 netdev->stats.rx_length_errors = hwstats->rlec;
5803 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005804 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005805}
5806
5807/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005808 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
5809 * @adapter - pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005810 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005811static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005812{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005813 struct ixgbe_hw *hw = &adapter->hw;
5814 int i;
5815
Alexander Duyckd034acf2011-04-27 09:25:34 +00005816 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5817 return;
5818
5819 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5820
5821 /* if interface is down do nothing */
5822 if (test_bit(__IXGBE_DOWN, &adapter->state))
5823 return;
5824
5825 /* do nothing if we are not using signature filters */
5826 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5827 return;
5828
5829 adapter->fdir_overflow++;
5830
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005831 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5832 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005833 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005834 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005835 /* re-enable flow director interrupts */
5836 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005837 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005838 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005839 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005840 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005841}
5842
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005843/**
5844 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
5845 * @adapter - pointer to the device adapter structure
5846 *
5847 * This function serves two purposes. First it strobes the interrupt lines
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005848 * in order to make certain interrupts are occurring. Secondly it sets the
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005849 * bits needed to check for TX hangs. As a result we should immediately
Stephen Hemminger52f33af2011-12-22 16:34:52 +00005850 * determine if a hang has occurred.
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005851 */
5852static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5853{
Auke Kok9a799d72007-09-15 14:07:45 -07005854 struct ixgbe_hw *hw = &adapter->hw;
5855 u64 eics = 0;
5856 int i;
5857
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005858 /* If we're down or resetting, just bail */
5859 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5860 test_bit(__IXGBE_RESETTING, &adapter->state))
5861 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005862
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005863 /* Force detection of hung controller */
5864 if (netif_carrier_ok(adapter->netdev)) {
5865 for (i = 0; i < adapter->num_tx_queues; i++)
5866 set_check_for_tx_hang(adapter->tx_ring[i]);
5867 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005868
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005869 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005870 /*
5871 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005872 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005873 * would set *both* EIMS and EICS for any bit in EIAM
5874 */
5875 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5876 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005877 } else {
5878 /* get one bit for every active tx/rx interrupt vector */
5879 for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
5880 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00005881 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005882 eics |= ((u64)1 << i);
5883 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005884 }
5885
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005886 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005887 ixgbe_irq_rearm_queues(adapter, eics);
5888
Alexander Duyckfe49f042009-06-04 16:00:09 +00005889}
5890
5891/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005892 * ixgbe_watchdog_update_link - update the link status
5893 * @adapter - pointer to the device adapter structure
5894 * @link_speed - pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005895 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005896static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005897{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005898 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005899 u32 link_speed = adapter->link_speed;
5900 bool link_up = adapter->link_up;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005901 int i;
5902
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005903 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5904 return;
5905
5906 if (hw->mac.ops.check_link) {
5907 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005908 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005909 /* always assume link is up, if no check link function */
5910 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
5911 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005912 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005913 if (link_up) {
5914 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
5915 for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
5916 hw->mac.ops.fc_enable(hw, i);
5917 } else {
5918 hw->mac.ops.fc_enable(hw, 0);
5919 }
5920 }
5921
5922 if (link_up ||
5923 time_after(jiffies, (adapter->link_check_timeout +
5924 IXGBE_TRY_LINK_TIMEOUT))) {
5925 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5926 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
5927 IXGBE_WRITE_FLUSH(hw);
5928 }
5929
5930 adapter->link_up = link_up;
5931 adapter->link_speed = link_speed;
5932}
5933
5934/**
5935 * ixgbe_watchdog_link_is_up - update netif_carrier status and
5936 * print link up message
5937 * @adapter - pointer to the device adapter structure
5938 **/
5939static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
5940{
5941 struct net_device *netdev = adapter->netdev;
5942 struct ixgbe_hw *hw = &adapter->hw;
5943 u32 link_speed = adapter->link_speed;
5944 bool flow_rx, flow_tx;
5945
5946 /* only continue if link was previously down */
5947 if (netif_carrier_ok(netdev))
5948 return;
5949
5950 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
5951
5952 switch (hw->mac.type) {
5953 case ixgbe_mac_82598EB: {
5954 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5955 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
5956 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
5957 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
5958 }
5959 break;
5960 case ixgbe_mac_X540:
5961 case ixgbe_mac_82599EB: {
5962 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
5963 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
5964 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
5965 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
5966 }
5967 break;
5968 default:
5969 flow_tx = false;
5970 flow_rx = false;
5971 break;
5972 }
5973 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
5974 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
5975 "10 Gbps" :
5976 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
5977 "1 Gbps" :
5978 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
5979 "100 Mbps" :
5980 "unknown speed"))),
5981 ((flow_rx && flow_tx) ? "RX/TX" :
5982 (flow_rx ? "RX" :
5983 (flow_tx ? "TX" : "None"))));
5984
5985 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005986 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005987}
5988
5989/**
5990 * ixgbe_watchdog_link_is_down - update netif_carrier status and
5991 * print link down message
5992 * @adapter - pointer to the adapter structure
5993 **/
5994static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter* adapter)
5995{
5996 struct net_device *netdev = adapter->netdev;
5997 struct ixgbe_hw *hw = &adapter->hw;
5998
5999 adapter->link_up = false;
6000 adapter->link_speed = 0;
6001
6002 /* only continue if link was up previously */
6003 if (!netif_carrier_ok(netdev))
6004 return;
6005
6006 /* poll for SFP+ cable when link is down */
6007 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
6008 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
6009
6010 e_info(drv, "NIC Link is Down\n");
6011 netif_carrier_off(netdev);
6012}
6013
6014/**
6015 * ixgbe_watchdog_flush_tx - flush queues on link down
6016 * @adapter - pointer to the device adapter structure
6017 **/
6018static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
6019{
6020 int i;
6021 int some_tx_pending = 0;
6022
6023 if (!netif_carrier_ok(adapter->netdev)) {
6024 for (i = 0; i < adapter->num_tx_queues; i++) {
6025 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6026 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
6027 some_tx_pending = 1;
6028 break;
6029 }
6030 }
6031
6032 if (some_tx_pending) {
6033 /* We've lost link, so the controller stops DMA,
6034 * but we've got queued Tx work that's never going
6035 * to get done, so reset controller to flush Tx.
6036 * (Do the reset outside of interrupt context).
6037 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006038 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006039 }
6040 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006041}
6042
Greg Rosea985b6c32010-11-18 03:02:52 +00006043static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
6044{
6045 u32 ssvpc;
6046
6047 /* Do not perform spoof check for 82598 */
6048 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6049 return;
6050
6051 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
6052
6053 /*
6054 * ssvpc register is cleared on read, if zero then no
6055 * spoofed packets in the last interval.
6056 */
6057 if (!ssvpc)
6058 return;
6059
6060 e_warn(drv, "%d Spoofed packets detected\n", ssvpc);
6061}
6062
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006063/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006064 * ixgbe_watchdog_subtask - check and bring link up
6065 * @adapter - pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006066 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006067static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006068{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006069 /* if interface is down do nothing */
Emil Tantilov7edebf92011-08-27 07:18:37 +00006070 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6071 test_bit(__IXGBE_RESETTING, &adapter->state))
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006072 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006073
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006074 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00006075
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006076 if (adapter->link_up)
6077 ixgbe_watchdog_link_is_up(adapter);
6078 else
6079 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00006080
Greg Rosea985b6c32010-11-18 03:02:52 +00006081 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006082 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006083
6084 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006085}
6086
Alexander Duyck70864002011-04-27 09:13:56 +00006087/**
6088 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
6089 * @adapter - the ixgbe adapter structure
6090 **/
6091static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
6092{
6093 struct ixgbe_hw *hw = &adapter->hw;
6094 s32 err;
6095
6096 /* not searching for SFP so there is nothing to do here */
6097 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
6098 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6099 return;
6100
6101 /* someone else is in init, wait until next service event */
6102 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6103 return;
6104
6105 err = hw->phy.ops.identify_sfp(hw);
6106 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6107 goto sfp_out;
6108
6109 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
6110 /* If no cable is present, then we need to reset
6111 * the next time we find a good cable. */
6112 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
6113 }
6114
6115 /* exit on error */
6116 if (err)
6117 goto sfp_out;
6118
6119 /* exit if reset not needed */
6120 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6121 goto sfp_out;
6122
6123 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
6124
6125 /*
6126 * A module may be identified correctly, but the EEPROM may not have
6127 * support for that module. setup_sfp() will fail in that case, so
6128 * we should not allow that module to load.
6129 */
6130 if (hw->mac.type == ixgbe_mac_82598EB)
6131 err = hw->phy.ops.reset(hw);
6132 else
6133 err = hw->mac.ops.setup_sfp(hw);
6134
6135 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6136 goto sfp_out;
6137
6138 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
6139 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
6140
6141sfp_out:
6142 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6143
6144 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
6145 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
6146 e_dev_err("failed to initialize because an unsupported "
6147 "SFP+ module type was detected.\n");
6148 e_dev_err("Reload the driver after installing a "
6149 "supported module.\n");
6150 unregister_netdev(adapter->netdev);
6151 }
6152}
6153
6154/**
6155 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
6156 * @adapter - the ixgbe adapter structure
6157 **/
6158static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
6159{
6160 struct ixgbe_hw *hw = &adapter->hw;
6161 u32 autoneg;
6162 bool negotiation;
6163
6164 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
6165 return;
6166
6167 /* someone else is in init, wait until next service event */
6168 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6169 return;
6170
6171 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
6172
6173 autoneg = hw->phy.autoneg_advertised;
6174 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
6175 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Alexander Duyck70864002011-04-27 09:13:56 +00006176 if (hw->mac.ops.setup_link)
6177 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
6178
6179 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
6180 adapter->link_check_timeout = jiffies;
6181 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6182}
6183
Greg Rose83c61fa2011-09-07 05:59:35 +00006184#ifdef CONFIG_PCI_IOV
6185static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter)
6186{
6187 int vf;
6188 struct ixgbe_hw *hw = &adapter->hw;
6189 struct net_device *netdev = adapter->netdev;
6190 u32 gpc;
6191 u32 ciaa, ciad;
6192
6193 gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC);
6194 if (gpc) /* If incrementing then no need for the check below */
6195 return;
6196 /*
6197 * Check to see if a bad DMA write target from an errant or
6198 * malicious VF has caused a PCIe error. If so then we can
6199 * issue a VFLR to the offending VF(s) and then resume without
6200 * requesting a full slot reset.
6201 */
6202
6203 for (vf = 0; vf < adapter->num_vfs; vf++) {
6204 ciaa = (vf << 16) | 0x80000000;
6205 /* 32 bit read so align, we really want status at offset 6 */
6206 ciaa |= PCI_COMMAND;
6207 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6208 ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599);
6209 ciaa &= 0x7FFFFFFF;
6210 /* disable debug mode asap after reading data */
6211 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6212 /* Get the upper 16 bits which will be the PCI status reg */
6213 ciad >>= 16;
6214 if (ciad & PCI_STATUS_REC_MASTER_ABORT) {
6215 netdev_err(netdev, "VF %d Hung DMA\n", vf);
6216 /* Issue VFLR */
6217 ciaa = (vf << 16) | 0x80000000;
6218 ciaa |= 0xA8;
6219 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6220 ciad = 0x00008000; /* VFLR */
6221 IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad);
6222 ciaa &= 0x7FFFFFFF;
6223 IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa);
6224 }
6225 }
6226}
6227
6228#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006229/**
6230 * ixgbe_service_timer - Timer Call-back
6231 * @data: pointer to adapter cast into an unsigned long
6232 **/
6233static void ixgbe_service_timer(unsigned long data)
6234{
6235 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
6236 unsigned long next_event_offset;
Greg Rose83c61fa2011-09-07 05:59:35 +00006237 bool ready = true;
Alexander Duyck70864002011-04-27 09:13:56 +00006238
Greg Rose83c61fa2011-09-07 05:59:35 +00006239#ifdef CONFIG_PCI_IOV
6240 ready = false;
6241
6242 /*
6243 * don't bother with SR-IOV VF DMA hang check if there are
6244 * no VFs or the link is down
6245 */
6246 if (!adapter->num_vfs ||
6247 (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)) {
6248 ready = true;
6249 goto normal_timer_service;
6250 }
6251
6252 /* If we have VFs allocated then we must check for DMA hangs */
6253 ixgbe_check_for_bad_vf(adapter);
6254 next_event_offset = HZ / 50;
6255 adapter->timer_event_accumulator++;
6256
6257 if (adapter->timer_event_accumulator >= 100) {
6258 ready = true;
6259 adapter->timer_event_accumulator = 0;
6260 }
6261
6262 goto schedule_event;
6263
6264normal_timer_service:
6265#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006266 /* poll faster when waiting for link */
6267 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
6268 next_event_offset = HZ / 10;
6269 else
6270 next_event_offset = HZ * 2;
6271
Greg Rose83c61fa2011-09-07 05:59:35 +00006272#ifdef CONFIG_PCI_IOV
6273schedule_event:
6274#endif
Alexander Duyck70864002011-04-27 09:13:56 +00006275 /* Reset the timer */
6276 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
6277
Greg Rose83c61fa2011-09-07 05:59:35 +00006278 if (ready)
6279 ixgbe_service_event_schedule(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006280}
6281
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006282static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
6283{
6284 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
6285 return;
6286
6287 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
6288
6289 /* If we're already down or resetting, just bail */
6290 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6291 test_bit(__IXGBE_RESETTING, &adapter->state))
6292 return;
6293
6294 ixgbe_dump(adapter);
6295 netdev_err(adapter->netdev, "Reset adapter\n");
6296 adapter->tx_timeout_count++;
6297
6298 ixgbe_reinit_locked(adapter);
6299}
6300
Alexander Duyck70864002011-04-27 09:13:56 +00006301/**
6302 * ixgbe_service_task - manages and runs subtasks
6303 * @work: pointer to work_struct containing our data
6304 **/
6305static void ixgbe_service_task(struct work_struct *work)
6306{
6307 struct ixgbe_adapter *adapter = container_of(work,
6308 struct ixgbe_adapter,
6309 service_task);
6310
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006311 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006312 ixgbe_sfp_detection_subtask(adapter);
6313 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00006314 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006315 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00006316 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006317 ixgbe_check_hang_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006318
6319 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006320}
6321
Alexander Duyck897ab152011-05-27 05:31:47 +00006322void ixgbe_tx_ctxtdesc(struct ixgbe_ring *tx_ring, u32 vlan_macip_lens,
6323 u32 fcoe_sof_eof, u32 type_tucmd, u32 mss_l4len_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07006324{
6325 struct ixgbe_adv_tx_context_desc *context_desc;
Alexander Duyck897ab152011-05-27 05:31:47 +00006326 u16 i = tx_ring->next_to_use;
6327
6328 context_desc = IXGBE_TX_CTXTDESC_ADV(tx_ring, i);
6329
6330 i++;
6331 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
6332
6333 /* set bits to identify this as an advanced context descriptor */
6334 type_tucmd |= IXGBE_TXD_CMD_DEXT | IXGBE_ADVTXD_DTYP_CTXT;
6335
6336 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6337 context_desc->seqnum_seed = cpu_to_le32(fcoe_sof_eof);
6338 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd);
6339 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
6340}
6341
6342static int ixgbe_tso(struct ixgbe_ring *tx_ring, struct sk_buff *skb,
6343 u32 tx_flags, __be16 protocol, u8 *hdr_len)
6344{
Auke Kok9a799d72007-09-15 14:07:45 -07006345 int err;
Alexander Duyck897ab152011-05-27 05:31:47 +00006346 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006347 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07006348
Alexander Duyck897ab152011-05-27 05:31:47 +00006349 if (!skb_is_gso(skb))
6350 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006351
Alexander Duyck897ab152011-05-27 05:31:47 +00006352 if (skb_header_cloned(skb)) {
6353 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
6354 if (err)
6355 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00006356 }
6357
Alexander Duyck897ab152011-05-27 05:31:47 +00006358 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
6359 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
6360
6361 if (protocol == __constant_htons(ETH_P_IP)) {
6362 struct iphdr *iph = ip_hdr(skb);
6363 iph->tot_len = 0;
6364 iph->check = 0;
6365 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6366 iph->daddr, 0,
6367 IPPROTO_TCP,
6368 0);
6369 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6370 } else if (skb_is_gso_v6(skb)) {
6371 ipv6_hdr(skb)->payload_len = 0;
6372 tcp_hdr(skb)->check =
6373 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
6374 &ipv6_hdr(skb)->daddr,
6375 0, IPPROTO_TCP, 0);
6376 }
6377
6378 l4len = tcp_hdrlen(skb);
6379 *hdr_len = skb_transport_offset(skb) + l4len;
6380
6381 /* mss_l4len_id: use 1 as index for TSO */
6382 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
6383 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
6384 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
6385
6386 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
6387 vlan_macip_lens = skb_network_header_len(skb);
6388 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6389 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6390
6391 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
6392 mss_l4len_idx);
6393
6394 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00006395}
6396
Alexander Duyck897ab152011-05-27 05:31:47 +00006397static bool ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
Hao Zheng5e09a102010-11-11 13:47:59 +00006398 struct sk_buff *skb, u32 tx_flags,
6399 __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07006400{
Alexander Duyck897ab152011-05-27 05:31:47 +00006401 u32 vlan_macip_lens = 0;
6402 u32 mss_l4len_idx = 0;
6403 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006404
Alexander Duyck897ab152011-05-27 05:31:47 +00006405 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006406 if (!(tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
6407 !(tx_flags & IXGBE_TX_FLAGS_TXSW))
Alexander Duyck897ab152011-05-27 05:31:47 +00006408 return false;
6409 } else {
6410 u8 l4_hdr = 0;
6411 switch (protocol) {
6412 case __constant_htons(ETH_P_IP):
6413 vlan_macip_lens |= skb_network_header_len(skb);
6414 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6415 l4_hdr = ip_hdr(skb)->protocol;
6416 break;
6417 case __constant_htons(ETH_P_IPV6):
6418 vlan_macip_lens |= skb_network_header_len(skb);
6419 l4_hdr = ipv6_hdr(skb)->nexthdr;
6420 break;
6421 default:
6422 if (unlikely(net_ratelimit())) {
6423 dev_warn(tx_ring->dev,
6424 "partial checksum but proto=%x!\n",
6425 skb->protocol);
6426 }
6427 break;
6428 }
Auke Kok9a799d72007-09-15 14:07:45 -07006429
Alexander Duyck897ab152011-05-27 05:31:47 +00006430 switch (l4_hdr) {
6431 case IPPROTO_TCP:
6432 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6433 mss_l4len_idx = tcp_hdrlen(skb) <<
6434 IXGBE_ADVTXD_L4LEN_SHIFT;
6435 break;
6436 case IPPROTO_SCTP:
6437 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6438 mss_l4len_idx = sizeof(struct sctphdr) <<
6439 IXGBE_ADVTXD_L4LEN_SHIFT;
6440 break;
6441 case IPPROTO_UDP:
6442 mss_l4len_idx = sizeof(struct udphdr) <<
6443 IXGBE_ADVTXD_L4LEN_SHIFT;
6444 break;
6445 default:
6446 if (unlikely(net_ratelimit())) {
6447 dev_warn(tx_ring->dev,
6448 "partial checksum but l4 proto=%x!\n",
6449 skb->protocol);
6450 }
6451 break;
6452 }
Auke Kok9a799d72007-09-15 14:07:45 -07006453 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006454
Alexander Duyck897ab152011-05-27 05:31:47 +00006455 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6456 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6457
6458 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
6459 type_tucmd, mss_l4len_idx);
6460
6461 return (skb->ip_summed == CHECKSUM_PARTIAL);
Auke Kok9a799d72007-09-15 14:07:45 -07006462}
6463
Alexander Duyckd3d00232011-07-15 02:31:25 +00006464static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
6465{
6466 /* set type for advanced descriptor with frame checksum insertion */
6467 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
6468 IXGBE_ADVTXD_DCMD_IFCS |
6469 IXGBE_ADVTXD_DCMD_DEXT);
6470
6471 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006472 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006473 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
6474
6475 /* set segmentation enable bits for TSO/FSO */
6476#ifdef IXGBE_FCOE
6477 if ((tx_flags & IXGBE_TX_FLAGS_TSO) || (tx_flags & IXGBE_TX_FLAGS_FSO))
6478#else
6479 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6480#endif
6481 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
6482
6483 return cmd_type;
6484}
6485
6486static __le32 ixgbe_tx_olinfo_status(u32 tx_flags, unsigned int paylen)
6487{
6488 __le32 olinfo_status =
6489 cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
6490
6491 if (tx_flags & IXGBE_TX_FLAGS_TSO) {
6492 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM |
6493 (1 << IXGBE_ADVTXD_IDX_SHIFT));
6494 /* enble IPv4 checksum for TSO */
6495 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6496 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
6497 }
6498
6499 /* enable L4 checksum for TSO and TX checksum offload */
6500 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6501 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
6502
6503#ifdef IXGBE_FCOE
6504 /* use index 1 context for FCOE/FSO */
6505 if (tx_flags & IXGBE_TX_FLAGS_FCOE)
6506 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC |
6507 (1 << IXGBE_ADVTXD_IDX_SHIFT));
6508
6509#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006510 /*
6511 * Check Context must be set if Tx switch is enabled, which it
6512 * always is for case where virtual functions are running
6513 */
6514 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
6515 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
6516
Alexander Duyckd3d00232011-07-15 02:31:25 +00006517 return olinfo_status;
6518}
6519
6520#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6521 IXGBE_TXD_CMD_RS)
6522
6523static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
6524 struct sk_buff *skb,
6525 struct ixgbe_tx_buffer *first,
6526 u32 tx_flags,
6527 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006528{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006529 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07006530 struct ixgbe_tx_buffer *tx_buffer_info;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006531 union ixgbe_adv_tx_desc *tx_desc;
6532 dma_addr_t dma;
6533 __le32 cmd_type, olinfo_status;
6534 struct skb_frag_struct *frag;
6535 unsigned int f = 0;
6536 unsigned int data_len = skb->data_len;
6537 unsigned int size = skb_headlen(skb);
6538 u32 offset = 0;
6539 u32 paylen = skb->len - hdr_len;
6540 u16 i = tx_ring->next_to_use;
6541 u16 gso_segs;
Auke Kok9a799d72007-09-15 14:07:45 -07006542
Alexander Duyckd3d00232011-07-15 02:31:25 +00006543#ifdef IXGBE_FCOE
6544 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6545 if (data_len >= sizeof(struct fcoe_crc_eof)) {
6546 data_len -= sizeof(struct fcoe_crc_eof);
6547 } else {
6548 size -= sizeof(struct fcoe_crc_eof) - data_len;
6549 data_len = 0;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006550 }
Auke Kok9a799d72007-09-15 14:07:45 -07006551 }
6552
Alexander Duyckd3d00232011-07-15 02:31:25 +00006553#endif
6554 dma = dma_map_single(dev, skb->data, size, DMA_TO_DEVICE);
6555 if (dma_mapping_error(dev, dma))
6556 goto dma_error;
6557
6558 cmd_type = ixgbe_tx_cmd_type(tx_flags);
6559 olinfo_status = ixgbe_tx_olinfo_status(tx_flags, paylen);
6560
6561 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
6562
6563 for (;;) {
6564 while (size > IXGBE_MAX_DATA_PER_TXD) {
6565 tx_desc->read.buffer_addr = cpu_to_le64(dma + offset);
6566 tx_desc->read.cmd_type_len =
6567 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
6568 tx_desc->read.olinfo_status = olinfo_status;
6569
6570 offset += IXGBE_MAX_DATA_PER_TXD;
6571 size -= IXGBE_MAX_DATA_PER_TXD;
6572
6573 tx_desc++;
6574 i++;
6575 if (i == tx_ring->count) {
6576 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, 0);
6577 i = 0;
6578 }
6579 }
6580
6581 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6582 tx_buffer_info->length = offset + size;
6583 tx_buffer_info->tx_flags = tx_flags;
6584 tx_buffer_info->dma = dma;
6585
6586 tx_desc->read.buffer_addr = cpu_to_le64(dma + offset);
6587 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
6588 tx_desc->read.olinfo_status = olinfo_status;
6589
6590 if (!data_len)
6591 break;
Auke Kok9a799d72007-09-15 14:07:45 -07006592
6593 frag = &skb_shinfo(skb)->frags[f];
Alexander Duyckd3d00232011-07-15 02:31:25 +00006594#ifdef IXGBE_FCOE
Eric Dumazet9e903e02011-10-18 21:00:24 +00006595 size = min_t(unsigned int, data_len, skb_frag_size(frag));
Alexander Duyckd3d00232011-07-15 02:31:25 +00006596#else
Eric Dumazet9e903e02011-10-18 21:00:24 +00006597 size = skb_frag_size(frag);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006598#endif
6599 data_len -= size;
6600 f++;
Auke Kok9a799d72007-09-15 14:07:45 -07006601
Alexander Duyckd3d00232011-07-15 02:31:25 +00006602 offset = 0;
6603 tx_flags |= IXGBE_TX_FLAGS_MAPPED_AS_PAGE;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006604
Ian Campbell877749b2011-08-29 23:18:26 +00006605 dma = skb_frag_dma_map(dev, frag, 0, size, DMA_TO_DEVICE);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006606 if (dma_mapping_error(dev, dma))
6607 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006608
Alexander Duyckd3d00232011-07-15 02:31:25 +00006609 tx_desc++;
6610 i++;
6611 if (i == tx_ring->count) {
6612 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, 0);
6613 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006614 }
6615 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006616
Alexander Duyckd3d00232011-07-15 02:31:25 +00006617 tx_desc->read.cmd_type_len |= cpu_to_le32(IXGBE_TXD_CMD);
6618
6619 i++;
6620 if (i == tx_ring->count)
6621 i = 0;
6622
6623 tx_ring->next_to_use = i;
6624
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006625 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6626 gso_segs = skb_shinfo(skb)->gso_segs;
6627#ifdef IXGBE_FCOE
6628 /* adjust for FCoE Sequence Offload */
6629 else if (tx_flags & IXGBE_TX_FLAGS_FSO)
6630 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
6631 skb_shinfo(skb)->gso_size);
6632#endif /* IXGBE_FCOE */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006633 else
6634 gso_segs = 1;
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006635
6636 /* multiply data chunks by size of headers */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006637 tx_buffer_info->bytecount = paylen + (gso_segs * hdr_len);
6638 tx_buffer_info->gso_segs = gso_segs;
6639 tx_buffer_info->skb = skb;
Auke Kok9a799d72007-09-15 14:07:45 -07006640
Alexander Duyckd3d00232011-07-15 02:31:25 +00006641 /* set the timestamp */
6642 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006643
6644 /*
6645 * Force memory writes to complete before letting h/w
6646 * know there are new descriptors to fetch. (Only
6647 * applicable for weak-ordered memory model archs,
6648 * such as IA-64).
6649 */
6650 wmb();
6651
Alexander Duyckd3d00232011-07-15 02:31:25 +00006652 /* set next_to_watch value indicating a packet is present */
6653 first->next_to_watch = tx_desc;
6654
6655 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006656 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006657
6658 return;
6659dma_error:
6660 dev_err(dev, "TX DMA map failed\n");
6661
6662 /* clear dma mappings for failed tx_buffer_info map */
6663 for (;;) {
6664 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6665 ixgbe_unmap_tx_resource(tx_ring, tx_buffer_info);
6666 if (tx_buffer_info == first)
6667 break;
6668 if (i == 0)
6669 i = tx_ring->count;
6670 i--;
6671 }
6672
6673 dev_kfree_skb_any(skb);
6674
6675 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006676}
6677
Alexander Duyck69830522011-01-06 14:29:58 +00006678static void ixgbe_atr(struct ixgbe_ring *ring, struct sk_buff *skb,
6679 u32 tx_flags, __be16 protocol)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006680{
Alexander Duyck69830522011-01-06 14:29:58 +00006681 struct ixgbe_q_vector *q_vector = ring->q_vector;
6682 union ixgbe_atr_hash_dword input = { .dword = 0 };
6683 union ixgbe_atr_hash_dword common = { .dword = 0 };
6684 union {
6685 unsigned char *network;
6686 struct iphdr *ipv4;
6687 struct ipv6hdr *ipv6;
6688 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006689 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006690 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006691
Alexander Duyck69830522011-01-06 14:29:58 +00006692 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6693 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006694 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006695
Alexander Duyck69830522011-01-06 14:29:58 +00006696 /* do nothing if sampling is disabled */
6697 if (!ring->atr_sample_rate)
6698 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006699
Alexander Duyck69830522011-01-06 14:29:58 +00006700 ring->atr_count++;
6701
6702 /* snag network header to get L4 type and address */
6703 hdr.network = skb_network_header(skb);
6704
6705 /* Currently only IPv4/IPv6 with TCP is supported */
6706 if ((protocol != __constant_htons(ETH_P_IPV6) ||
6707 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
6708 (protocol != __constant_htons(ETH_P_IP) ||
6709 hdr.ipv4->protocol != IPPROTO_TCP))
6710 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006711
6712 th = tcp_hdr(skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006713
Alexander Duyck66f32a82011-06-29 05:43:22 +00006714 /* skip this packet since it is invalid or the socket is closing */
6715 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006716 return;
6717
6718 /* sample on all syn packets or once every atr sample count */
6719 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6720 return;
6721
6722 /* reset sample count */
6723 ring->atr_count = 0;
6724
6725 vlan_id = htons(tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
6726
6727 /*
6728 * src and dst are inverted, think how the receiver sees them
6729 *
6730 * The input is broken into two sections, a non-compressed section
6731 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6732 * is XORed together and stored in the compressed dword.
6733 */
6734 input.formatted.vlan_id = vlan_id;
6735
6736 /*
6737 * since src port and flex bytes occupy the same word XOR them together
6738 * and write the value to source port portion of compressed dword
6739 */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006740 if (tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006741 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6742 else
6743 common.port.src ^= th->dest ^ protocol;
6744 common.port.dst ^= th->source;
6745
6746 if (protocol == __constant_htons(ETH_P_IP)) {
6747 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6748 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6749 } else {
6750 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6751 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6752 hdr.ipv6->saddr.s6_addr32[1] ^
6753 hdr.ipv6->saddr.s6_addr32[2] ^
6754 hdr.ipv6->saddr.s6_addr32[3] ^
6755 hdr.ipv6->daddr.s6_addr32[0] ^
6756 hdr.ipv6->daddr.s6_addr32[1] ^
6757 hdr.ipv6->daddr.s6_addr32[2] ^
6758 hdr.ipv6->daddr.s6_addr32[3];
6759 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006760
6761 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006762 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6763 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006764}
6765
Alexander Duyck63544e92011-05-27 05:31:42 +00006766static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006767{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006768 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006769 /* Herbert's original patch had:
6770 * smp_mb__after_netif_stop_queue();
6771 * but since that doesn't exist yet, just open code it. */
6772 smp_mb();
6773
6774 /* We need to check again in a case another CPU has just
6775 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006776 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006777 return -EBUSY;
6778
6779 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006780 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006781 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006782 return 0;
6783}
6784
Alexander Duyck82d4e462011-06-11 01:44:58 +00006785static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006786{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006787 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006788 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006789 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006790}
6791
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006792static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6793{
6794 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006795 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6796 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006797#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006798 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006799
John Fastabende5b64632011-03-08 03:44:52 +00006800 if (((protocol == htons(ETH_P_FCOE)) ||
6801 (protocol == htons(ETH_P_FIP))) &&
6802 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
6803 txq &= (adapter->ring_feature[RING_F_FCOE].indices - 1);
6804 txq += adapter->ring_feature[RING_F_FCOE].mask;
6805 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006806 }
6807#endif
6808
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006809 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6810 while (unlikely(txq >= dev->real_num_tx_queues))
6811 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006812 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006813 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006814
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006815 return skb_tx_hash(dev, skb);
6816}
6817
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006818netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006819 struct ixgbe_adapter *adapter,
6820 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006821{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006822 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006823 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006824 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006825#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6826 unsigned short f;
6827#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006828 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006829 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006830 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006831
Alexander Duycka535c302011-05-27 05:31:52 +00006832 /*
6833 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
6834 * + 1 desc for skb_head_len/IXGBE_MAX_DATA_PER_TXD,
6835 * + 2 desc gap to keep tail from touching head,
6836 * + 1 desc for context descriptor,
6837 * otherwise try next time
6838 */
6839#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6840 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6841 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6842#else
6843 count += skb_shinfo(skb)->nr_frags;
6844#endif
6845 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6846 tx_ring->tx_stats.tx_busy++;
6847 return NETDEV_TX_BUSY;
6848 }
6849
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006850#ifdef CONFIG_PCI_IOV
6851 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6852 tx_flags |= IXGBE_TX_FLAGS_TXSW;
6853
6854#endif
Alexander Duyck66f32a82011-06-29 05:43:22 +00006855 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00006856 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006857 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6858 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6859 /* else if it is a SW VLAN check the next protocol and store the tag */
6860 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
6861 struct vlan_hdr *vhdr, _vhdr;
6862 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
6863 if (!vhdr)
6864 goto out_drop;
6865
6866 protocol = vhdr->h_vlan_encapsulated_proto;
6867 tx_flags |= ntohs(vhdr->h_vlan_TCI) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6868 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006869 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006870
John Fastabend32701dc2011-09-27 03:51:56 +00006871 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006872 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00006873 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
6874 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006875 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabend32701dc2011-09-27 03:51:56 +00006876 tx_flags |= (skb->priority & 0x7) <<
6877 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006878 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
6879 struct vlan_ethhdr *vhdr;
6880 if (skb_header_cloned(skb) &&
6881 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6882 goto out_drop;
6883 vhdr = (struct vlan_ethhdr *)skb->data;
6884 vhdr->h_vlan_TCI = htons(tx_flags >>
6885 IXGBE_TX_FLAGS_VLAN_SHIFT);
6886 } else {
6887 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6888 }
6889 }
Alexander Duycka535c302011-05-27 05:31:52 +00006890
Alexander Duycka535c302011-05-27 05:31:52 +00006891 /* record the location of the first descriptor for this packet */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006892 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
Alexander Duycka535c302011-05-27 05:31:52 +00006893
Yi Zoueacd73f2009-05-13 13:11:06 +00006894#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00006895 /* setup tx offload for FCoE */
6896 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
6897 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00006898 tso = ixgbe_fso(tx_ring, skb, tx_flags, &hdr_len);
6899 if (tso < 0)
6900 goto out_drop;
6901 else if (tso)
Alexander Duyck66f32a82011-06-29 05:43:22 +00006902 tx_flags |= IXGBE_TX_FLAGS_FSO |
6903 IXGBE_TX_FLAGS_FCOE;
6904 else
6905 tx_flags |= IXGBE_TX_FLAGS_FCOE;
Auke Kok9a799d72007-09-15 14:07:45 -07006906
Alexander Duyck66f32a82011-06-29 05:43:22 +00006907 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006908 }
Auke Kok9a799d72007-09-15 14:07:45 -07006909
Auke Kok9a799d72007-09-15 14:07:45 -07006910#endif /* IXGBE_FCOE */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006911 /* setup IPv4/IPv6 offloads */
6912 if (protocol == __constant_htons(ETH_P_IP))
6913 tx_flags |= IXGBE_TX_FLAGS_IPV4;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006914
Alexander Duyck66f32a82011-06-29 05:43:22 +00006915 tso = ixgbe_tso(tx_ring, skb, tx_flags, protocol, &hdr_len);
6916 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07006917 goto out_drop;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006918 else if (tso)
6919 tx_flags |= IXGBE_TX_FLAGS_TSO;
6920 else if (ixgbe_tx_csum(tx_ring, skb, tx_flags, protocol))
6921 tx_flags |= IXGBE_TX_FLAGS_CSUM;
6922
6923 /* add the ATR filter if ATR is on */
6924 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
6925 ixgbe_atr(tx_ring, skb, tx_flags, protocol);
6926
6927#ifdef IXGBE_FCOE
6928xmit_fcoe:
6929#endif /* IXGBE_FCOE */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006930 ixgbe_tx_map(tx_ring, skb, first, tx_flags, hdr_len);
6931
6932 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006933
6934 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006935
6936out_drop:
6937 dev_kfree_skb_any(skb);
6938 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07006939}
6940
6941static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
6942{
6943 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6944 struct ixgbe_ring *tx_ring;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006945
Auke Kok9a799d72007-09-15 14:07:45 -07006946 tx_ring = adapter->tx_ring[skb->queue_mapping];
6947 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
6948}
6949
6950/**
6951 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006952 * @netdev: network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07006953 * @p: pointer to an address structure
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006954 *
Auke Kok9a799d72007-09-15 14:07:45 -07006955 * Returns 0 on success, negative on failure
6956 **/
6957static int ixgbe_set_mac(struct net_device *netdev, void *p)
6958{
Ben Hutchings6b73e102009-04-29 08:08:58 +00006959 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6960 struct ixgbe_hw *hw = &adapter->hw;
6961 struct sockaddr *addr = p;
6962
6963 if (!is_valid_ether_addr(addr->sa_data))
6964 return -EADDRNOTAVAIL;
6965
6966 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
6967 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
6968
6969 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
6970 IXGBE_RAH_AV);
6971
6972 return 0;
6973}
6974
6975static int
6976ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6977{
6978 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6979 struct ixgbe_hw *hw = &adapter->hw;
6980 u16 value;
6981 int rc;
6982
6983 if (prtad != hw->phy.mdio.prtad)
6984 return -EINVAL;
6985 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6986 if (!rc)
6987 rc = value;
6988 return rc;
6989}
6990
6991static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6992 u16 addr, u16 value)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006993{
6994 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jiri Pirko31278e72009-06-17 01:12:19 +00006995 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006996
6997 if (prtad != hw->phy.mdio.prtad)
6998 return -EINVAL;
6999 return hw->phy.ops.write_reg(hw, addr, devad, value);
7000}
7001
7002static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
7003{
7004 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7005
7006 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
7007}
7008
7009/**
7010 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
7011 * netdev->dev_addrs
7012 * @netdev: network interface device structure
7013 *
7014 * Returns non-zero on failure
7015 **/
Jiri Pirko31278e72009-06-17 01:12:19 +00007016static int ixgbe_add_sanmac_netdev(struct net_device *dev)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007017{
7018 int err = 0;
7019 struct ixgbe_adapter *adapter = netdev_priv(dev);
7020 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7021
7022 if (is_valid_ether_addr(mac->san_addr)) {
7023 rtnl_lock();
7024 err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
7025 rtnl_unlock();
7026 }
7027 return err;
7028}
7029
7030/**
7031 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
7032 * netdev->dev_addrs
7033 * @netdev: network interface device structure
7034 *
Auke Kok9a799d72007-09-15 14:07:45 -07007035 * Returns non-zero on failure
7036 **/
7037static int ixgbe_del_sanmac_netdev(struct net_device *dev)
7038{
7039 int err = 0;
7040 struct ixgbe_adapter *adapter = netdev_priv(dev);
7041 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7042
7043 if (is_valid_ether_addr(mac->san_addr)) {
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007044 rtnl_lock();
Auke Kok9a799d72007-09-15 14:07:45 -07007045 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
Alexander Duyck1a647bd2010-01-13 01:49:13 +00007046 rtnl_unlock();
7047 }
7048 return err;
7049}
Auke Kok9a799d72007-09-15 14:07:45 -07007050
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007051#ifdef CONFIG_NET_POLL_CONTROLLER
7052/*
7053 * Polling 'interrupt' - used by things like netconsole to send skbs
7054 * without having to re-enable interrupts. It's not called while
7055 * the interrupt routine is executing.
7056 */
7057static void ixgbe_netpoll(struct net_device *netdev)
7058{
7059 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007060 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07007061
7062 /* if interface is down do nothing */
7063 if (test_bit(__IXGBE_DOWN, &adapter->state))
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007064 return;
7065
7066 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Stephen Hemminger00829822008-11-20 20:14:53 -08007067 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007068 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Chris Leeche90d4002009-03-10 16:00:24 +00007069 for (i = 0; i < num_q_vectors; i++) {
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007070 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00007071 ixgbe_msix_clean_rings(0, q_vector);
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007072 }
7073 } else {
7074 ixgbe_intr(adapter->pdev->irq, netdev);
7075 }
7076 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
7077}
7078#endif
7079
Eric Dumazetde1036b2010-10-20 23:00:04 +00007080static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
7081 struct rtnl_link_stats64 *stats)
7082{
7083 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7084 int i;
7085
Eric Dumazet1a515022010-11-16 19:26:42 -08007086 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007087 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08007088 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00007089 u64 bytes, packets;
7090 unsigned int start;
7091
Eric Dumazet1a515022010-11-16 19:26:42 -08007092 if (ring) {
7093 do {
7094 start = u64_stats_fetch_begin_bh(&ring->syncp);
7095 packets = ring->stats.packets;
7096 bytes = ring->stats.bytes;
7097 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7098 stats->rx_packets += packets;
7099 stats->rx_bytes += bytes;
7100 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00007101 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00007102
7103 for (i = 0; i < adapter->num_tx_queues; i++) {
7104 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
7105 u64 bytes, packets;
7106 unsigned int start;
7107
7108 if (ring) {
7109 do {
7110 start = u64_stats_fetch_begin_bh(&ring->syncp);
7111 packets = ring->stats.packets;
7112 bytes = ring->stats.bytes;
7113 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7114 stats->tx_packets += packets;
7115 stats->tx_bytes += bytes;
7116 }
7117 }
Eric Dumazet1a515022010-11-16 19:26:42 -08007118 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007119 /* following stats updated by ixgbe_watchdog_task() */
7120 stats->multicast = netdev->stats.multicast;
7121 stats->rx_errors = netdev->stats.rx_errors;
7122 stats->rx_length_errors = netdev->stats.rx_length_errors;
7123 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
7124 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
7125 return stats;
7126}
7127
John Fastabend8b1c0b22011-05-03 02:26:48 +00007128/* ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
7129 * #adapter: pointer to ixgbe_adapter
7130 * @tc: number of traffic classes currently enabled
7131 *
7132 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
7133 * 802.1Q priority maps to a packet buffer that exists.
7134 */
7135static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
7136{
7137 struct ixgbe_hw *hw = &adapter->hw;
7138 u32 reg, rsave;
7139 int i;
7140
7141 /* 82598 have a static priority to TC mapping that can not
7142 * be changed so no validation is needed.
7143 */
7144 if (hw->mac.type == ixgbe_mac_82598EB)
7145 return;
7146
7147 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
7148 rsave = reg;
7149
7150 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
7151 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
7152
7153 /* If up2tc is out of bounds default to zero */
7154 if (up2tc > tc)
7155 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
7156 }
7157
7158 if (reg != rsave)
7159 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
7160
7161 return;
7162}
7163
7164
7165/* ixgbe_setup_tc - routine to configure net_device for multiple traffic
7166 * classes.
7167 *
7168 * @netdev: net device to configure
7169 * @tc: number of traffic classes to enable
7170 */
7171int ixgbe_setup_tc(struct net_device *dev, u8 tc)
7172{
John Fastabend8b1c0b22011-05-03 02:26:48 +00007173 struct ixgbe_adapter *adapter = netdev_priv(dev);
7174 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00007175
John Fastabende7589ea2011-07-18 22:38:36 +00007176 /* Multiple traffic classes requires multiple queues */
7177 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
7178 e_err(drv, "Enable failed, needs MSI-X\n");
7179 return -EINVAL;
7180 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00007181
7182 /* Hardware supports up to 8 traffic classes */
John Fastabend4de2a022011-09-27 03:52:01 +00007183 if (tc > adapter->dcb_cfg.num_tcs.pg_tcs ||
John Fastabend8b1c0b22011-05-03 02:26:48 +00007184 (hw->mac.type == ixgbe_mac_82598EB && tc < MAX_TRAFFIC_CLASS))
7185 return -EINVAL;
7186
7187 /* Hardware has to reinitialize queues and interrupts to
Stephen Hemminger52f33af2011-12-22 16:34:52 +00007188 * match packet buffer alignment. Unfortunately, the
John Fastabend8b1c0b22011-05-03 02:26:48 +00007189 * hardware is not flexible enough to do this dynamically.
7190 */
7191 if (netif_running(dev))
7192 ixgbe_close(dev);
7193 ixgbe_clear_interrupt_scheme(adapter);
7194
John Fastabende7589ea2011-07-18 22:38:36 +00007195 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007196 netdev_set_num_tc(dev, tc);
John Fastabende7589ea2011-07-18 22:38:36 +00007197 adapter->last_lfc_mode = adapter->hw.fc.current_mode;
7198
7199 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
7200 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7201
7202 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
7203 adapter->hw.fc.requested_mode = ixgbe_fc_none;
7204 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00007205 netdev_reset_tc(dev);
7206
John Fastabende7589ea2011-07-18 22:38:36 +00007207 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
7208
7209 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
7210 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7211
7212 adapter->temp_dcb_cfg.pfc_mode_enable = false;
7213 adapter->dcb_cfg.pfc_mode_enable = false;
7214 }
7215
John Fastabend8b1c0b22011-05-03 02:26:48 +00007216 ixgbe_init_interrupt_scheme(adapter);
7217 ixgbe_validate_rtr(adapter, tc);
7218 if (netif_running(dev))
7219 ixgbe_open(dev);
7220
7221 return 0;
7222}
Eric Dumazetde1036b2010-10-20 23:00:04 +00007223
Don Skidmore082757a2011-07-21 05:55:00 +00007224void ixgbe_do_reset(struct net_device *netdev)
7225{
7226 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7227
7228 if (netif_running(netdev))
7229 ixgbe_reinit_locked(adapter);
7230 else
7231 ixgbe_reset(adapter);
7232}
7233
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007234static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
7235 netdev_features_t data)
Don Skidmore082757a2011-07-21 05:55:00 +00007236{
7237 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7238
7239#ifdef CONFIG_DCB
7240 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED)
7241 data &= ~NETIF_F_HW_VLAN_RX;
7242#endif
7243
7244 /* return error if RXHASH is being enabled when RSS is not supported */
7245 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
7246 data &= ~NETIF_F_RXHASH;
7247
7248 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
7249 if (!(data & NETIF_F_RXCSUM))
7250 data &= ~NETIF_F_LRO;
7251
7252 /* Turn off LRO if not RSC capable or invalid ITR settings */
7253 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)) {
7254 data &= ~NETIF_F_LRO;
7255 } else if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
7256 (adapter->rx_itr_setting != 1 &&
7257 adapter->rx_itr_setting > IXGBE_MAX_RSC_INT_RATE)) {
7258 data &= ~NETIF_F_LRO;
7259 e_info(probe, "rx-usecs set too low, not enabling RSC\n");
7260 }
7261
7262 return data;
7263}
7264
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007265static int ixgbe_set_features(struct net_device *netdev,
7266 netdev_features_t data)
Don Skidmore082757a2011-07-21 05:55:00 +00007267{
7268 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7269 bool need_reset = false;
7270
7271 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
7272 if (!(data & NETIF_F_RXCSUM))
7273 adapter->flags &= ~IXGBE_FLAG_RX_CSUM_ENABLED;
7274 else
7275 adapter->flags |= IXGBE_FLAG_RX_CSUM_ENABLED;
7276
7277 /* Make sure RSC matches LRO, reset if change */
7278 if (!!(data & NETIF_F_LRO) !=
7279 !!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
7280 adapter->flags2 ^= IXGBE_FLAG2_RSC_ENABLED;
7281 switch (adapter->hw.mac.type) {
7282 case ixgbe_mac_X540:
7283 case ixgbe_mac_82599EB:
7284 need_reset = true;
7285 break;
7286 default:
7287 break;
7288 }
7289 }
7290
7291 /*
7292 * Check if Flow Director n-tuple support was enabled or disabled. If
7293 * the state changed, we need to reset.
7294 */
7295 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
7296 /* turn off ATR, enable perfect filters and reset */
7297 if (data & NETIF_F_NTUPLE) {
7298 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7299 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7300 need_reset = true;
7301 }
7302 } else if (!(data & NETIF_F_NTUPLE)) {
7303 /* turn off Flow Director, set ATR and reset */
7304 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7305 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
7306 !(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
7307 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7308 need_reset = true;
7309 }
7310
7311 if (need_reset)
7312 ixgbe_do_reset(netdev);
7313
7314 return 0;
7315
7316}
7317
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007318static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00007319 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007320 .ndo_stop = ixgbe_close,
7321 .ndo_start_xmit = ixgbe_xmit_frame,
7322 .ndo_select_queue = ixgbe_select_queue,
7323 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007324 .ndo_validate_addr = eth_validate_addr,
7325 .ndo_set_mac_address = ixgbe_set_mac,
7326 .ndo_change_mtu = ixgbe_change_mtu,
7327 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007328 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
7329 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00007330 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00007331 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
7332 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
7333 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
Greg Rosede4c7f62011-09-29 05:57:33 +00007334 .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk,
Greg Rose7f016482010-05-04 22:12:06 +00007335 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00007336 .ndo_get_stats64 = ixgbe_get_stats64,
John Fastabend24095aa2011-02-23 05:58:03 +00007337 .ndo_setup_tc = ixgbe_setup_tc,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007338#ifdef CONFIG_NET_POLL_CONTROLLER
7339 .ndo_poll_controller = ixgbe_netpoll,
7340#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007341#ifdef IXGBE_FCOE
7342 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007343 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007344 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007345 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7346 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007347 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Neerav Parikhea818752012-01-04 20:23:40 +00007348 .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo,
Yi Zou332d4a72009-05-13 13:11:53 +00007349#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00007350 .ndo_set_features = ixgbe_set_features,
7351 .ndo_fix_features = ixgbe_fix_features,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007352};
7353
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007354static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
7355 const struct ixgbe_info *ii)
7356{
7357#ifdef CONFIG_PCI_IOV
7358 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007359
Greg Rosec6bda302011-08-24 02:37:55 +00007360 if (hw->mac.type == ixgbe_mac_82598EB)
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007361 return;
7362
7363 /* The 82599 supports up to 64 VFs per physical function
7364 * but this implementation limits allocation to 63 so that
7365 * basic networking resources are still available to the
7366 * physical function
7367 */
7368 adapter->num_vfs = (max_vfs > 63) ? 63 : max_vfs;
Greg Rosec6bda302011-08-24 02:37:55 +00007369 ixgbe_enable_sriov(adapter, ii);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007370#endif /* CONFIG_PCI_IOV */
7371}
7372
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007373/**
Auke Kok9a799d72007-09-15 14:07:45 -07007374 * ixgbe_probe - Device Initialization Routine
7375 * @pdev: PCI device information struct
7376 * @ent: entry in ixgbe_pci_tbl
7377 *
7378 * Returns 0 on success, negative on failure
7379 *
7380 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7381 * The OS initialization, configuring of the adapter private structure,
7382 * and a hardware reset occur.
7383 **/
7384static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007385 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007386{
7387 struct net_device *netdev;
7388 struct ixgbe_adapter *adapter = NULL;
7389 struct ixgbe_hw *hw;
7390 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007391 static int cards_found;
7392 int i, err, pci_using_dac;
Don Skidmore289700d2010-12-03 03:32:58 +00007393 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007394 unsigned int indices = num_possible_cpus();
Yi Zoueacd73f2009-05-13 13:11:06 +00007395#ifdef IXGBE_FCOE
7396 u16 device_caps;
7397#endif
Don Skidmore289700d2010-12-03 03:32:58 +00007398 u32 eec;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007399 u16 wol_cap;
Auke Kok9a799d72007-09-15 14:07:45 -07007400
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007401 /* Catch broken hardware that put the wrong VF device ID in
7402 * the PCIe SR-IOV capability.
7403 */
7404 if (pdev->is_virtfn) {
7405 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7406 pci_name(pdev), pdev->vendor, pdev->device);
7407 return -EINVAL;
7408 }
7409
gouji-new9ce77662009-05-06 10:44:45 +00007410 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007411 if (err)
7412 return err;
7413
Nick Nunley1b507732010-04-27 13:10:27 +00007414 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7415 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007416 pci_using_dac = 1;
7417 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007418 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007419 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007420 err = dma_set_coherent_mask(&pdev->dev,
7421 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007422 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007423 dev_err(&pdev->dev,
7424 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007425 goto err_dma;
7426 }
7427 }
7428 pci_using_dac = 0;
7429 }
7430
gouji-new9ce77662009-05-06 10:44:45 +00007431 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007432 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007433 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007434 dev_err(&pdev->dev,
7435 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007436 goto err_pci_reg;
7437 }
7438
Frans Pop19d5afd2009-10-02 10:04:12 -07007439 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007440
Auke Kok9a799d72007-09-15 14:07:45 -07007441 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007442 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007443
John Fastabende901acd2011-04-26 07:26:08 +00007444#ifdef CONFIG_IXGBE_DCB
7445 indices *= MAX_TRAFFIC_CLASS;
7446#endif
7447
John Fastabendc85a2612010-02-25 23:15:21 +00007448 if (ii->mac == ixgbe_mac_82598EB)
7449 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7450 else
7451 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7452
John Fastabende901acd2011-04-26 07:26:08 +00007453#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007454 indices += min_t(unsigned int, num_possible_cpus(),
7455 IXGBE_MAX_FCOE_INDICES);
7456#endif
John Fastabendc85a2612010-02-25 23:15:21 +00007457 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007458 if (!netdev) {
7459 err = -ENOMEM;
7460 goto err_alloc_etherdev;
7461 }
7462
Auke Kok9a799d72007-09-15 14:07:45 -07007463 SET_NETDEV_DEV(netdev, &pdev->dev);
7464
Auke Kok9a799d72007-09-15 14:07:45 -07007465 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007466 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007467
7468 adapter->netdev = netdev;
7469 adapter->pdev = pdev;
7470 hw = &adapter->hw;
7471 hw->back = adapter;
7472 adapter->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
7473
Jeff Kirsher05857982008-09-11 19:57:00 -07007474 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007475 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007476 if (!hw->hw_addr) {
7477 err = -EIO;
7478 goto err_ioremap;
7479 }
7480
7481 for (i = 1; i <= 5; i++) {
7482 if (pci_resource_len(pdev, i) == 0)
7483 continue;
7484 }
7485
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007486 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007487 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007488 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007489 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007490
Auke Kok9a799d72007-09-15 14:07:45 -07007491 adapter->bd_number = cards_found;
7492
Auke Kok9a799d72007-09-15 14:07:45 -07007493 /* Setup hw api */
7494 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007495 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007496
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007497 /* EEPROM */
7498 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7499 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7500 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7501 if (!(eec & (1 << 8)))
7502 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7503
7504 /* PHY */
7505 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007506 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007507 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7508 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7509 hw->phy.mdio.mmds = 0;
7510 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7511 hw->phy.mdio.dev = netdev;
7512 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7513 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007514
Don Skidmore8ca783a2009-05-26 20:40:47 -07007515 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007516
7517 /* setup the private structure */
7518 err = ixgbe_sw_init(adapter);
7519 if (err)
7520 goto err_sw_init;
7521
Don Skidmoree86bff02010-02-11 04:14:08 +00007522 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007523 switch (adapter->hw.mac.type) {
7524 case ixgbe_mac_82599EB:
7525 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007526 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007527 break;
7528 default:
7529 break;
7530 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007531
Don Skidmorebf069c92009-05-07 10:39:54 +00007532 /*
7533 * If there is a fan on this device and it has failed log the
7534 * failure.
7535 */
7536 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7537 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7538 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007539 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007540 }
7541
Peter P Waskiewicz Jr8ef78ad2012-02-01 09:19:21 +00007542 if (allow_unsupported_sfp)
7543 hw->allow_unsupported_sfp = allow_unsupported_sfp;
7544
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007545 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007546 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007547 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007548 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007549 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7550 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007551 err = 0;
7552 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007553 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007554 "module type was detected.\n");
7555 e_dev_err("Reload the driver after installing a supported "
7556 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007557 goto err_sw_init;
7558 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007559 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007560 goto err_sw_init;
7561 }
7562
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007563 ixgbe_probe_vf(adapter, ii);
7564
Emil Tantilov396e7992010-07-01 20:05:12 +00007565 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007566 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00007567 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00007568 NETIF_F_HW_VLAN_TX |
7569 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00007570 NETIF_F_HW_VLAN_FILTER |
7571 NETIF_F_TSO |
7572 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00007573 NETIF_F_RXHASH |
7574 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007575
Don Skidmore082757a2011-07-21 05:55:00 +00007576 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007577
Don Skidmore58be7662011-04-12 09:42:11 +00007578 switch (adapter->hw.mac.type) {
7579 case ixgbe_mac_82599EB:
7580 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007581 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00007582 netdev->hw_features |= NETIF_F_SCTP_CSUM |
7583 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00007584 break;
7585 default:
7586 break;
7587 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007588
Jeff Kirsherad31c402008-06-05 04:05:30 -07007589 netdev->vlan_features |= NETIF_F_TSO;
7590 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007591 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007592 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007593 netdev->vlan_features |= NETIF_F_SG;
7594
Jiri Pirko01789342011-08-16 06:29:00 +00007595 netdev->priv_flags |= IFF_UNICAST_FLT;
7596
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007597 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7598 adapter->flags &= ~(IXGBE_FLAG_RSS_ENABLED |
7599 IXGBE_FLAG_DCB_ENABLED);
Alexander Duyck2f90b862008-11-20 20:52:10 -08007600
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007601#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007602 netdev->dcbnl_ops = &dcbnl_ops;
7603#endif
7604
Yi Zoueacd73f2009-05-13 13:11:06 +00007605#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007606 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007607 if (hw->mac.ops.get_device_caps) {
7608 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007609 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7610 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007611 }
7612 }
Yi Zou5e09d7f2010-07-19 13:59:52 +00007613 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
7614 netdev->vlan_features |= NETIF_F_FCOE_CRC;
7615 netdev->vlan_features |= NETIF_F_FSO;
7616 netdev->vlan_features |= NETIF_F_FCOE_MTU;
7617 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007618#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007619 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007620 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007621 netdev->vlan_features |= NETIF_F_HIGHDMA;
7622 }
Auke Kok9a799d72007-09-15 14:07:45 -07007623
Don Skidmore082757a2011-07-21 05:55:00 +00007624 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
7625 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007626 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007627 netdev->features |= NETIF_F_LRO;
7628
Auke Kok9a799d72007-09-15 14:07:45 -07007629 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007630 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007631 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007632 err = -EIO;
7633 goto err_eeprom;
7634 }
7635
7636 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7637 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7638
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007639 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007640 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007641 err = -EIO;
7642 goto err_eeprom;
7643 }
7644
Alexander Duyck70864002011-04-27 09:13:56 +00007645 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
7646 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007647
Alexander Duyck70864002011-04-27 09:13:56 +00007648 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7649 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007650
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007651 err = ixgbe_init_interrupt_scheme(adapter);
7652 if (err)
7653 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007654
Don Skidmore082757a2011-07-21 05:55:00 +00007655 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
7656 netdev->hw_features &= ~NETIF_F_RXHASH;
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007657 netdev->features &= ~NETIF_F_RXHASH;
Don Skidmore082757a2011-07-21 05:55:00 +00007658 }
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007659
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007660 /* WOL not supported for all but the following */
7661 adapter->wol = 0;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007662 switch (pdev->device) {
Don Skidmore0b077fe2010-12-03 03:32:13 +00007663 case IXGBE_DEV_ID_82599_SFP:
Don Skidmore0e22d042011-12-10 06:49:43 +00007664 /* Only these subdevice supports WOL */
7665 switch (pdev->subsystem_device) {
7666 case IXGBE_SUBDEV_ID_82599_560FLR:
7667 /* only support first port */
7668 if (hw->bus.func != 0)
7669 break;
7670 case IXGBE_SUBDEV_ID_82599_SFP:
Andy Gospodarek9417c462011-07-16 07:31:33 +00007671 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0e22d042011-12-10 06:49:43 +00007672 break;
7673 }
Don Skidmore0b077fe2010-12-03 03:32:13 +00007674 break;
Alexander Duyck50d6c682010-11-16 19:27:05 -08007675 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7676 /* All except this subdevice support WOL */
Don Skidmore0b077fe2010-12-03 03:32:13 +00007677 if (pdev->subsystem_device != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
Andy Gospodarek9417c462011-07-16 07:31:33 +00007678 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0b077fe2010-12-03 03:32:13 +00007679 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007680 case IXGBE_DEV_ID_82599_KX4:
Andy Gospodarek9417c462011-07-16 07:31:33 +00007681 adapter->wol = IXGBE_WUFC_MAG;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007682 break;
Emil Tantilovc23f5b62011-08-16 07:34:18 +00007683 case IXGBE_DEV_ID_X540T:
7684 /* Check eeprom to see if it is enabled */
7685 hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
7686 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK;
7687
7688 if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) ||
7689 ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) &&
7690 (hw->bus.func == 0)))
7691 adapter->wol = IXGBE_WUFC_MAG;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007692 break;
7693 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007694 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7695
Emil Tantilov15e52092011-09-29 05:01:29 +00007696 /* save off EEPROM version number */
7697 hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh);
7698 hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl);
7699
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007700 /* pick up the PCI bus settings for reporting later */
7701 hw->mac.ops.get_bus_info(hw);
7702
Auke Kok9a799d72007-09-15 14:07:45 -07007703 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007704 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007705 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7706 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007707 "Unknown"),
7708 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7709 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7710 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7711 "Unknown"),
7712 netdev->dev_addr);
Don Skidmore289700d2010-12-03 03:32:58 +00007713
7714 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7715 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007716 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007717 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700d2010-12-03 03:32:58 +00007718 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007719 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700d2010-12-03 03:32:58 +00007720 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007721 else
Don Skidmore289700d2010-12-03 03:32:58 +00007722 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7723 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007724
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007725 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007726 e_dev_warn("PCI-Express bandwidth available for this card is "
7727 "not sufficient for optimal performance.\n");
7728 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7729 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007730 }
7731
Auke Kok9a799d72007-09-15 14:07:45 -07007732 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007733 err = hw->mac.ops.start_hw(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007734
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007735 if (err == IXGBE_ERR_EEPROM_VERSION) {
7736 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007737 e_dev_warn("This device is a pre-production adapter/LOM. "
7738 "Please be aware there may be issues associated "
7739 "with your hardware. If you are experiencing "
7740 "problems please contact your Intel or hardware "
7741 "representative who provided you with this "
7742 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007743 }
Auke Kok9a799d72007-09-15 14:07:45 -07007744 strcpy(netdev->name, "eth%d");
7745 err = register_netdev(netdev);
7746 if (err)
7747 goto err_register;
7748
Emil Tantilov93d3ce82011-10-19 07:59:55 +00007749 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7750 if (hw->mac.ops.disable_tx_laser &&
7751 ((hw->phy.multispeed_fiber) ||
7752 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
7753 (hw->mac.type == ixgbe_mac_82599EB))))
7754 hw->mac.ops.disable_tx_laser(hw);
7755
Jesse Brandeburg54386462009-04-17 20:44:27 +00007756 /* carrier off reporting is important to ethtool even BEFORE open */
7757 netif_carrier_off(netdev);
7758
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007759#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007760 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007761 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007762 ixgbe_setup_dca(adapter);
7763 }
7764#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007765 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007766 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007767 for (i = 0; i < adapter->num_vfs; i++)
7768 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7769 }
7770
Jacob Keller2466dd92011-09-08 03:50:54 +00007771 /* firmware requires driver version to be 0xFFFFFFFF
7772 * since os does not support feature
7773 */
Emil Tantilov9612de92011-05-07 07:40:20 +00007774 if (hw->mac.ops.set_fw_drv_ver)
Jacob Keller2466dd92011-09-08 03:50:54 +00007775 hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF,
7776 0xFF);
Emil Tantilov9612de92011-05-07 07:40:20 +00007777
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007778 /* add san mac addr to netdev */
7779 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007780
Neerav Parikhea818752012-01-04 20:23:40 +00007781 e_dev_info("%s\n", ixgbe_default_device_descr);
Auke Kok9a799d72007-09-15 14:07:45 -07007782 cards_found++;
7783 return 0;
7784
7785err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007786 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007787 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007788err_sw_init:
7789err_eeprom:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007790 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7791 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007792 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007793 iounmap(hw->hw_addr);
7794err_ioremap:
7795 free_netdev(netdev);
7796err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007797 pci_release_selected_regions(pdev,
7798 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007799err_pci_reg:
7800err_dma:
7801 pci_disable_device(pdev);
7802 return err;
7803}
7804
7805/**
7806 * ixgbe_remove - Device Removal Routine
7807 * @pdev: PCI device information struct
7808 *
7809 * ixgbe_remove is called by the PCI subsystem to alert the driver
7810 * that it should release a PCI device. The could be caused by a
7811 * Hot-Plug event, or because the driver is going to be removed from
7812 * memory.
7813 **/
7814static void __devexit ixgbe_remove(struct pci_dev *pdev)
7815{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007816 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7817 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007818
7819 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007820 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007821
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007822#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007823 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7824 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7825 dca_remove_requester(&pdev->dev);
7826 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7827 }
7828
7829#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007830#ifdef IXGBE_FCOE
7831 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
7832 ixgbe_cleanup_fcoe(adapter);
7833
7834#endif /* IXGBE_FCOE */
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007835
7836 /* remove the added san mac */
7837 ixgbe_del_sanmac_netdev(netdev);
7838
Donald Skidmorec4900be2008-11-20 21:11:42 -08007839 if (netdev->reg_state == NETREG_REGISTERED)
7840 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007841
Greg Rosec6bda302011-08-24 02:37:55 +00007842 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
7843 if (!(ixgbe_check_vf_assignment(adapter)))
7844 ixgbe_disable_sriov(adapter);
7845 else
7846 e_dev_warn("Unloading driver while VFs are assigned "
7847 "- VFs will not be deallocated\n");
7848 }
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007849
Alexander Duyck7a921c92009-05-06 10:43:28 +00007850 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007851
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007852 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007853
7854 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007855 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007856 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007857
Emil Tantilov849c4542010-06-03 16:53:41 +00007858 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007859
Auke Kok9a799d72007-09-15 14:07:45 -07007860 free_netdev(netdev);
7861
Frans Pop19d5afd2009-10-02 10:04:12 -07007862 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007863
Auke Kok9a799d72007-09-15 14:07:45 -07007864 pci_disable_device(pdev);
7865}
7866
7867/**
7868 * ixgbe_io_error_detected - called when PCI error is detected
7869 * @pdev: Pointer to PCI device
7870 * @state: The current pci connection state
7871 *
7872 * This function is called after a PCI bus error affecting
7873 * this device has been detected.
7874 */
7875static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007876 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007877{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007878 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7879 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007880
Greg Rose83c61fa2011-09-07 05:59:35 +00007881#ifdef CONFIG_PCI_IOV
7882 struct pci_dev *bdev, *vfdev;
7883 u32 dw0, dw1, dw2, dw3;
7884 int vf, pos;
7885 u16 req_id, pf_func;
7886
7887 if (adapter->hw.mac.type == ixgbe_mac_82598EB ||
7888 adapter->num_vfs == 0)
7889 goto skip_bad_vf_detection;
7890
7891 bdev = pdev->bus->self;
7892 while (bdev && (bdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT))
7893 bdev = bdev->bus->self;
7894
7895 if (!bdev)
7896 goto skip_bad_vf_detection;
7897
7898 pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR);
7899 if (!pos)
7900 goto skip_bad_vf_detection;
7901
7902 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0);
7903 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1);
7904 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2);
7905 pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3);
7906
7907 req_id = dw1 >> 16;
7908 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
7909 if (!(req_id & 0x0080))
7910 goto skip_bad_vf_detection;
7911
7912 pf_func = req_id & 0x01;
7913 if ((pf_func & 1) == (pdev->devfn & 1)) {
7914 unsigned int device_id;
7915
7916 vf = (req_id & 0x7F) >> 1;
7917 e_dev_err("VF %d has caused a PCIe error\n", vf);
7918 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
7919 "%8.8x\tdw3: %8.8x\n",
7920 dw0, dw1, dw2, dw3);
7921 switch (adapter->hw.mac.type) {
7922 case ixgbe_mac_82599EB:
7923 device_id = IXGBE_82599_VF_DEVICE_ID;
7924 break;
7925 case ixgbe_mac_X540:
7926 device_id = IXGBE_X540_VF_DEVICE_ID;
7927 break;
7928 default:
7929 device_id = 0;
7930 break;
7931 }
7932
7933 /* Find the pci device of the offending VF */
7934 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID, device_id, NULL);
7935 while (vfdev) {
7936 if (vfdev->devfn == (req_id & 0xFF))
7937 break;
7938 vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID,
7939 device_id, vfdev);
7940 }
7941 /*
7942 * There's a slim chance the VF could have been hot plugged,
7943 * so if it is no longer present we don't need to issue the
7944 * VFLR. Just clean up the AER in that case.
7945 */
7946 if (vfdev) {
7947 e_dev_err("Issuing VFLR to VF %d\n", vf);
7948 pci_write_config_dword(vfdev, 0xA8, 0x00008000);
7949 }
7950
7951 pci_cleanup_aer_uncorrect_error_status(pdev);
7952 }
7953
7954 /*
7955 * Even though the error may have occurred on the other port
7956 * we still need to increment the vf error reference count for
7957 * both ports because the I/O resume function will be called
7958 * for both of them.
7959 */
7960 adapter->vferr_refcount++;
7961
7962 return PCI_ERS_RESULT_RECOVERED;
7963
7964skip_bad_vf_detection:
7965#endif /* CONFIG_PCI_IOV */
Auke Kok9a799d72007-09-15 14:07:45 -07007966 netif_device_detach(netdev);
7967
Breno Leitao3044b8d2009-05-06 10:44:26 +00007968 if (state == pci_channel_io_perm_failure)
7969 return PCI_ERS_RESULT_DISCONNECT;
7970
Auke Kok9a799d72007-09-15 14:07:45 -07007971 if (netif_running(netdev))
7972 ixgbe_down(adapter);
7973 pci_disable_device(pdev);
7974
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007975 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007976 return PCI_ERS_RESULT_NEED_RESET;
7977}
7978
7979/**
7980 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7981 * @pdev: Pointer to PCI device
7982 *
7983 * Restart the card from scratch, as if from a cold-boot.
7984 */
7985static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7986{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007987 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007988 pci_ers_result_t result;
7989 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007990
gouji-new9ce77662009-05-06 10:44:45 +00007991 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007992 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007993 result = PCI_ERS_RESULT_DISCONNECT;
7994 } else {
7995 pci_set_master(pdev);
7996 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007997 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007998
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007999 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008000
8001 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00008002 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008003 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07008004 }
Auke Kok9a799d72007-09-15 14:07:45 -07008005
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008006 err = pci_cleanup_aer_uncorrect_error_status(pdev);
8007 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00008008 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
8009 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008010 /* non-fatal, continue */
8011 }
Auke Kok9a799d72007-09-15 14:07:45 -07008012
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08008013 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07008014}
8015
8016/**
8017 * ixgbe_io_resume - called when traffic can start flowing again.
8018 * @pdev: Pointer to PCI device
8019 *
8020 * This callback is called when the error recovery driver tells us that
8021 * its OK to resume normal operation.
8022 */
8023static void ixgbe_io_resume(struct pci_dev *pdev)
8024{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08008025 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
8026 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07008027
Greg Rose83c61fa2011-09-07 05:59:35 +00008028#ifdef CONFIG_PCI_IOV
8029 if (adapter->vferr_refcount) {
8030 e_info(drv, "Resuming after VF err\n");
8031 adapter->vferr_refcount--;
8032 return;
8033 }
8034
8035#endif
Alexander Duyckc7ccde02011-07-21 00:40:40 +00008036 if (netif_running(netdev))
8037 ixgbe_up(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07008038
8039 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07008040}
8041
8042static struct pci_error_handlers ixgbe_err_handler = {
8043 .error_detected = ixgbe_io_error_detected,
8044 .slot_reset = ixgbe_io_slot_reset,
8045 .resume = ixgbe_io_resume,
8046};
8047
8048static struct pci_driver ixgbe_driver = {
8049 .name = ixgbe_driver_name,
8050 .id_table = ixgbe_pci_tbl,
8051 .probe = ixgbe_probe,
8052 .remove = __devexit_p(ixgbe_remove),
8053#ifdef CONFIG_PM
8054 .suspend = ixgbe_suspend,
8055 .resume = ixgbe_resume,
8056#endif
8057 .shutdown = ixgbe_shutdown,
8058 .err_handler = &ixgbe_err_handler
8059};
8060
8061/**
8062 * ixgbe_init_module - Driver Registration Routine
8063 *
8064 * ixgbe_init_module is the first routine called when the driver is
8065 * loaded. All it does is register with the PCI subsystem.
8066 **/
8067static int __init ixgbe_init_module(void)
8068{
8069 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00008070 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00008071 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07008072
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008073#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008074 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008075#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008076
Auke Kok9a799d72007-09-15 14:07:45 -07008077 ret = pci_register_driver(&ixgbe_driver);
8078 return ret;
8079}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07008080
Auke Kok9a799d72007-09-15 14:07:45 -07008081module_init(ixgbe_init_module);
8082
8083/**
8084 * ixgbe_exit_module - Driver Exit Cleanup Routine
8085 *
8086 * ixgbe_exit_module is called just before the driver is removed
8087 * from memory.
8088 **/
8089static void __exit ixgbe_exit_module(void)
8090{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008091#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008092 dca_unregister_notify(&dca_notifier);
8093#endif
Auke Kok9a799d72007-09-15 14:07:45 -07008094 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08008095 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07008096}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008097
Jeff Garzik5dd2d332008-10-16 05:09:31 -04008098#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008099static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008100 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008101{
8102 int ret_val;
8103
8104 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00008105 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008106
8107 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
8108}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08008109
Alexander Duyckb4533682009-03-31 21:32:42 +00008110#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00008111
Auke Kok9a799d72007-09-15 14:07:45 -07008112module_exit(ixgbe_exit_module);
8113
8114/* ixgbe_main.c */